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
17 Oct, 2022
Duration parse(CharSequence) method in Java with Examples 17 Oct, 2022 The parse(CharSequence) method of Duration Class in java.time package is used to get a Duration from a string passed as the parameter. The format for the String to be parsed is “PnDTnHnMn.nS” where “nD” means ‘n’ number of Days, “nH” means ‘n’ number of Hours, “nM” means ‘n’ number of Minutes, “nS” means ‘n’ number of Seconds and “T” is a prefix that must be used before the part consisting of “nHnMn.nS”.  The formats accepted are based on the ISO-8601 duration format. Syntax: public static Duration parse(CharSequence text) Parameters: This method accepts a parameter text which is CharSequence to be parsed into Duration. Return Value: This method returns a Duration representing the time passed in the form of CharSequence as parameter. Exception: This method throws DateTimeParseException if the text cannot be parsed to a duration. Below examples illustrate the Duration.parse() method: Example 1: Java // Java code to illustrate parse() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Get the text String time = "P2DT3H4M"; // Duration using parse() method Duration duration = Duration.parse(time); System.out.println(duration.getSeconds()); } } Output: 183840 Example 2: To demonstrate DateTimeParseException Java // Java code to illustrate parse() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Get the text String time = "M"; try { // Duration using parse() method Duration duration = Duration.parse(time); } catch (Exception e) { System.out.println("Exception: " + e); } } } Output: Exception: java.time.format.DateTimeParseException: Text cannot be parsed to a Duration Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#parse-java.lang.CharSequence-
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/Duration parse(CharSequence) method in Java with Examples
https://www.geeksforgeeks.org/duration-parsecharsequence-method-in-java-with-examples/?ref=ml_lbp
Pandas
Duration parse(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, 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, Duration parse(CharSequence) method in Java with Examples, 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.00242888951, -0.00844876096, -0.00740947, 0.0169078633, -0.00755941775, -0.00328074582, -0.0229781475, 0.00912611, -0.0102015948, -0.0360701084, 0.0139606213, -0.00326523418, 0.00494309375, -0.019772375, 0.00989652891, 0.0312717892, 0.0110237198, -0.0010845334, 0.0376833342, 0.0561320372, -0.0268457569, 0.0112305442, -0.00176058942, 0.0343327858, 0.0138572091, 0.038096983, -0.00245344988, -4.60102638e-05, -0.0150464466, -0.0205893312, 0.00719747553, 0.0278591942, 0.00722849928, -0.0150774708, -0.0122956876, -0.00589965517, 0.0461631194, -0.0237227138, 0.00493016746, -0.0213235561, -0.00164037291, 0.0321197696, -0.00237976876, 0.0110030379, -0.0203928482, 0.0229367837, -0.0131023014, 0.0217578858, 0.00723367, -0.0622126646, 0.00278695347, 0.0193897504, -0.0240536332, 0.000112945301, 0.018272901, 0.0121715935, 0.017931642, -0.00421921, 0.0305685885, -0.0246741045, 0.0392345153, -0.0177661832, 0.0181074422, -0.0166596752, 0.0244466, 0.0167837683, -0.0296792462, -0.00297051, 0.00341259618, 0.00294724223, 0.0099017, -0.0140640326, 0.00297051, 0.0100516472, 0.0109823551, -0.00711991685, 0.0106928013, 0.033774361, -0.0204238705, 0.0103980768, -0.0486036427, 0.000142676246, -0.0524505712, 0.00597721385, 0.0301549416, -0.0401445404, -0.0260184612, -0.0214890148, 0.0236193016, -0.00143225631, 0.00367112621, 0.0337123126, -0.00197516941, -0.0102067655, -0.0533605963, 0.0278385114, 0.00264605461, 0.00951390434, -0.0261011906, 0.0075801, 0.0492241159, 0.0116958981, 0.0412613899, -0.0299067516, 0.0353669077, 0.028024653, -9.29900125e-05, -0.0243638679, 0.00849012565, -0.00396843581, -0.0209409315, 0.031685438, 0.0469076857, 0.020020565, -0.0290587731, 0.00200877828, -0.000321708299, -0.0398963504, 0.00737327617, 0.0307133663, -0.0020074856, -0.00777658308, -0.00719230482, 0.0378281102, 0.00443896046, 0.0114787323, 0.00878485, -0.0320577212, 0.00589965517, -0.0488932, 0.00452169, -0.0176834539, -0.038096983, -0.0146327987, 0.0508787073, 0.0248188823, -0.0483140908, -0.00401755655, 0.00652012695, 0.0192759987, 0.02618392, 0.0508373417, 0.0186968911, -0.0506718829, -0.0108686015, -0.00760595314, 0.0208788849, 0.0274041817, -0.0136607261, 0.0366078503, -0.0408891067, -0.0126576293, -0.025915049, 0.0137020908, 0.00185236754, 0.0177144762, 0.0347050689, 0.0213442389, -0.0232883841, -0.0283348896, -0.00165200676, -0.0167837683, 0.017414581, -0.0374144651, 0.0065563214, 0.0207030829, 0.00311270147, -0.0488518327, 0.0244466, 0.0139089152, -0.0218199342, 0.0256254952, 0.0188726913, 0.00873314403, -0.0156358946, -0.0261632372, 0.0181177836, 0.0325127356, -0.0302790347, 0.0502996, -0.045170363, 0.0245913751, 0.0382831246, 0.0189243965, -0.00485777901, -0.0031980162, -0.00977760553, -0.00426316, -0.0252118465, -0.0249429755, -0.0210133195, 0.0299067516, 0.00364010269, 0.00190665887, -0.0264734738, -0.0027533446, 0.0075801, -0.0228954181, -0.0158634018, -0.00158866693, -0.041778449, -0.041633673, -0.0278178304, -0.0150981527, -0.00503616454, -0.0174766295, -0.0166803561, 0.00372800278, 0.0442603379, 0.0300722122, -0.0264734738, -0.0254807193, -0.00723884, -0.0507959761, 0.0385726802, -0.00356771424, -0.0187899619, -0.0294103753, 0.0458322, -0.0532778651, 0.0320990868, -0.0385313146, 0.0311063323, 0.0115304384, -0.0379315242, -0.0248602461, -0.0359666944, 0.0309822373, -0.000920366845, 0.00144647539, 0.00654598, -0.00773004768, -0.00972589944, -0.033774361, 0.0152429296, -0.0455012843, 0.00481124362, 0.015770331, 0.0131023014, -0.00660802703, 0.0134228785, 0.00495602051, 0.0161322728, -0.035470318, 0.0119957924, -0.0147258695, 0.0143949511, 0.0158116966, 0.0153463418, -0.0109823551, 0.01360902, -0.0447980799, 0.00355995842, 0.0127920648, -0.0144880218, 0.0673419, 0.00725435233, -0.00471817283, 0.0183763131, 0.0367319435, 0.0233297478, 0.0403720476, 0.0139399385, -0.0134125371, -0.0225851815, -0.0134435613, -0.0134539017, -0.0323059112, 0.00369697926, -0.0421920978, 0.0328436531, -0.00619955, -0.0055222013, 0.0291621853, 0.0054601538, -0.00932776276, -0.0202584118, -0.0156669188, 0.061923109, 0.0437639616, -0.0238881726, 0.0322024971, -0.0261632372, -0.00678382767, -0.00489914371, -0.0169078633, -0.016556263, -0.0318715796, 0.022254264, 0.00456564, 0.024219092, -0.0517060049, 0.01360902, 0.0124301231, 0.00397619186, 0.028541714, -0.012823089, -0.0197516941, 0.00299636298, 0.0101860827, -0.0224610884, 0.00330659887, 0.0212201439, 0.0216337927, 0.0055687367, 0.000246734591, 0.00732157, 0.00154988747, 0.0205996726, 0.0208995659, 0.027362816, 0.00846944377, -0.00561527209, 0.0334641263, -0.00686138682, 0.00574453687, -0.00167139655, 0.00454237219, -0.0210133195, -0.0146845048, 0.0419645905, -0.00778692402, -0.032181818, 0.0101602292, 0.0372903682, 0.0134745846, -0.0202790946, -0.0216337927, 0.034560293, 0.0124714877, -0.0380142517, 0.0247568339, 0.0452530943, 0.000340936473, -0.00823676586, -0.00790067762, 0.0446739867, -0.0433089472, 0.016163297, -0.0201446582, -0.025790954, 0.0149844, -0.00838154275, -0.0145707522, 0.0144983632, 0.0187072325, -0.0143535864, -0.00330918422, -0.00750254095, 0.0226679109, 0.000435946247, -0.0140226679, 0.0463285781, -0.0106721194, -0.00534123, -0.0445912555, -0.0226679109, 0.00456046965, 0.00887792092, -0.000385856052, 0.00575487828, -0.00905372109, 0.00666490383, -0.0431434885, 0.050134141, -0.0716438368, -0.0266596153, 0.0113753211, -0.00664422149, -0.0325334184, 0.00950873364, 0.0354289524, 0.00726986397, 0.000999218551, 0.0181798302, 0.00708372239, 0.0266802981, -0.0249016117, 0.0310649667, 0.013484926, -0.0666387, 0.0222128984, -0.0196069162, -0.0303410832, 0.0249636583, 0.0142605156, -0.0320990868, 0.0270732641, 0.0108065549, -0.0222335812, -0.00577556062, 0.0498032235, 0.0022621376, -0.0445912555, -0.00209926371, 0.0045294459, 0.00114916591, -0.00164812885, 0.0502996, 0.0151498588, 0.0064994446, 0.0192656573, -0.0027533446, -0.0291415043, 0.0150774708, 0.0334434435, -0.0306926835, -0.00922435056, 0.0216544736, 0.00616852613, -0.0125438767, 0.0338984542, -0.0188416671, -0.0537328795, 0.0140847154, -0.0305479076, 0.00353927584, 0.0183452908, -0.0306926835, 0.0650668368, -0.0120474985, 0.0601857863, 0.00194802368, 0.0033014284, 0.0141984681, 0.0373524167, 0.0407650135, 0.00785931293, -0.00838154275, -0.00756975869, -0.027879877, 0.00875382591, 0.00480607292, 0.0371455923, 0.0224404056, -0.00913128, 0.0128644537, 0.00936395675, -0.021592427, -0.0108479196, -0.0533605963, -0.0207858142, 0.00516543, -0.0197516941, -0.00715094, 0.0556770228, -0.0249429755, -0.0040098005, -0.00616852613, 0.0119647691, -0.0429780297, 0.00984482281, -0.00677865697, 0.00253230147, 0.0328436531, -0.00472075818, -0.0352841765, 0.00243664533, -0.0146741634, 0.0289553609, 0.0173421931, 0.0258116368, 0.00783863, -0.00270939455, 0.00269129756, -0.0111684967, 0.0409304723, -0.00486553507, -0.0133298077, 0.0447980799, -0.020041246, -0.0406616, -0.014001986, -0.0241363626, -0.0113442969, 0.00189373235, 0.002929145, -0.0391931497, -0.012823089, -0.0224197228, 0.00551186, 0.0332366191, 0.0186658669, 0.00315923686, -0.0222956277, -0.0307960957, -0.0106307538, -0.0215510614, -0.0205479655, 0.0372903682, 0.0247568339, 0.034167327, -0.020217048, -0.0116855567, 0.00137408706, 0.0049224114, -0.0391311049, 0.0144156339, -0.0234952085, -0.016308073, -0.0533192307, -0.00482417, -0.00692860456, -0.0176007226, 0.00701650465, -0.0266596153, -0.0292449147, 0.0122853462, -0.0558424853, -0.0264114272, 0.00769902393, -0.0326368287, -0.0297826584, 0.049100019, -0.0247775167, 0.00550668919, 0.0059048254, 0.000167882929, -0.0229161, -0.0100464765, -0.032326594, 0.033381395, 0.00671661, 0.000632105861, -0.025522083, 0.021468332, -0.0079161888, 0.0215303805, -0.0103153475, -0.00734225241, 0.0265148394, -0.0297412928, -0.0027300769, 0.0244052336, -0.0155635066, -0.0278178304, -0.0368146747, -0.00128812576, -0.00980345812, 0.0235986207, 0.00488880277, 0.0346430205, -0.0383658558, 0.0146121169, -0.0314372517, -0.0349739417, -0.000393611961, 0.0066028568, 0.00347981392, 0.0258530024, 0.00879519153, 0.028272843, 0.0276316889, 0.0285003483, -0.0296171978, -0.00648393296, -0.0171043463, -0.00952424575, 0.0414475314, 0.0139916446, -0.0198034, 0.0150671294, 0.0125852413, 0.00225438178, 0.01825222, -0.00232935534, -0.0278591942, 0.0211994611, -0.00560493069, 0.0365664847, -0.000128133936, -0.0337329954, -0.0138882324, -0.0202997774, 0.00429418357, -0.0268664397, 0.0304031298, 0.0171353687, 0.0332573019, 0.0128127476, 0.00410804199, 0.00925020408, 0.0238674916, 0.0040201419, -0.00943634566, -0.0281694308, -0.00796272419, -0.0120578399, 0.00757492939, 0.0173318516, 0.0254807193, 0.0187796205, 0.0158323776, -0.0215717442, -0.023826126, 0.0271353107, 0.0164838731, 0.00267837103, 0.015325659, -0.00202816795, -0.00958629325, 0.0194931626, 0.0190381501, 0.0435157716, -0.00481382897, 0.0116958981, 0.00654080929, -0.00937946886, 0.00229703914, -0.022254264, -0.0190278087, 0.0146845048, 0.0156152127, 0.00787482411, 0.029451739, -0.00432003662, 0.0259564128, 0.0271766745, -0.0150154233, -0.00130880822, -0.0080816485, 0.00809716, 0.0442189723, 0.00343586388, -0.0227299593, 0.018717574, 0.02343316, 0.000388764514, -0.0169699099, -0.045170363, -0.0313338377, 0.0185314324, 0.0164011437, 0.0146327987, -0.00199972978, -0.0170422979, -0.0388622321, 0.00984999351, 0.0283348896, 0.0162977315, -0.00418301579, -0.000207955076, -0.00973107, 0.0354082696, -0.0149326939, -0.005563566, -0.017931642, 0.00800926, 0.0279419236, 0.00940532237, -0.0191105381, -0.00795755349, 0.038096983, 0.0323059112, -0.00888826232, 0.00505943224, 0.0331125259, -0.00213287259, 0.0089089442, 0.0339811854, 0.0211684369, 0.00252066762, 0.00215355493, 0.00276885647, -0.000472463609, -0.00559458975, -0.0106514366, -0.0140226679, 0.0158013552, 0.020237729, 0.000111814232, -0.0147155281, -0.0167217217, -0.0187692791, -0.0378074311, -0.0235986207, -0.0132057136, 0.0031980162, 0.00131074723, 0.0344362, 0.0213856027, -0.00147362112, 0.0155118005, 0.0137848202, 0.0250877533, -0.00126744341, 0.01800403, -0.0226058643, 0.0102274474, -0.0168561563, 0.0431021228, -0.00554805435, 0.000871892495, 0.0106514366, -0.00205660635, -0.00334537844, 0.00121444475, 0.0122956876, -0.0164735317, -0.0414475314, 0.0268043913, 0.0226679109, -0.0196896456, -0.00662871, -0.00261632376, -0.00241208496, -0.000402014179, -0.00800408889, -0.025397988, 0.0154600954, 0.0195655525, -0.0418404974, 0.00477504916, -0.0165459216, 0.017611064, 0.00684070401, 0.0118510155, 0.0253773071, 0.0112202028, 0.00021183303, 0.0118096508, -0.0123267109, -0.0194517989, 0.00142320769, -0.0139089152, 0.025522083, 0.0270112157, 0.00527918292, -0.0188933741, -0.00233323337, -0.0311476961, -0.00247154688, 0.0328436531, 0.0151602, -0.030672, -0.0165148973, -0.0175490174, 0.00859353784, -0.00505684689, 0.0230815597, -0.00812301319, -0.0221922174, -0.0349946246, -0.00886240881, 0.0103670536, -0.0079161888, 0.0227920059, 0.0017851498, -0.0117786275, 0.00586346071, -0.00761112384, -0.00120216457, 0.00840739626, -0.0114580505, -0.00393741205, -0.00432003662, -0.0134745846, 0.0099327229, -0.00226860098, 0.0141053973, 0.00242242636, 0.0370008163, -0.0455840118, -0.0114166858, 0.00824193656, -0.00729054632, 0.00557907764, 0.00977760553, 0.00640637381, 0.015325659, 0.000935878663, 0.0204445533, 0.0383865386, -0.00778175332, 0.0308995079, 0.0108065549, -0.0184900668, -0.0170009341, 0.0112719089, 0.0163804609, 0.0102533009, 0.00867626723, -0.0204238705, 0.0172181, 0.00105609512, 0.00438983971, -0.0383865386, -0.00956044, -0.0225231349, 0.0312097427, -0.0170422979, 0.0133091249, 0.0150257647, 0.00251937495, 0.0249843411, -0.0115511212, -0.0329263844, -0.024612058, -0.0167630855, -0.0186348427, -0.00717162248, -0.0090175271, 0.0528228544, -0.0269491691, 0.00933810417, -0.00712508708, 0.0341880098, -0.00821608398, 0.0143018803, -0.00916230399, -0.00405892124, 0.0238054432, -0.00670626853, -0.0330297947, 0.0289760437, 0.00656149164, 0.0127507, 0.0258116368, 0.0113442969, 0.0249016117, 0.0314165689, -0.0231436063, 0.0387588218, -0.0112305442, 0.00615301449, 0.00761629408, 0.0346637033, -0.00251420448, 0.0233711135, 0.0266389325, -0.00207858137, -0.0208478607, 0.00815920718, -0.0031747485, -0.0112098614, 0.000289553631, -0.00438983971, 0.0326781943, -0.0190691743, 0.0545188114, -0.0162150022, 0.0291208215, 0.020092953, -0.00518094143, -0.0237433966, 0.0213028733, -0.0146431401, -0.00564112514, 0.022254264, 0.0101550594, 0.0258530024, -0.0150671294, 0.0261218734, 0.0267837103, 0.00722332858, 0.0341259614, -0.00702167535, -0.0252325293, 0.0323679596, -0.00586346071, 0.0371662751, 0.000592680066, -0.0235365722, 0.00666490383, 0.0101964241, -0.0544360802, -0.0249222927, 0.0172594637, -0.00159254496, -0.0281280652, -0.00501031149, 0.0170422979, 0.0137124322, -0.00957595184, -0.00237976876, 0.0152946357, 0.016556263, -0.0135779968, 0.0055222013, -0.0117062395, 0.0287071727, -0.0121405693, -0.0193587281, 0.0170422979, -0.00442861905, 0.000653434603, -0.0221715346, -0.024074316, 0.0169802513, -0.00052804756, -0.00970004592, 0.0201239772, 0.00140640326, -0.0346223414, 0.0337329954, -0.00249093678, 0.00686138682, -0.00271198, 0.00739912922, -0.0312097427, 0.0134539017, -0.0116131688, 0.00234098919, -0.0215303805, -0.00470007583, -0.0464113094, 0.0035004965, -0.0394413397, -0.0313958861, -0.0101654, -0.0030092895, 0.0346843861, -0.00100632804, 0.00779726543, 0.0209822953, -0.0550151877, -0.0251704827, 0.0321404524, 0.0107755307, -0.00402531214, -0.0210857075, -0.0103050061, -0.0426884778, 0.00169078633, 0.0311890617, -0.0299688, -0.0101292059, -0.025790954, 0.0246741045, -0.017538676, 0.0266802981, 0.0145500693, 0.015336, -0.00785414223, 0.0108686015, 0.0142191509, -0.0341466442, 0.000850563752, -0.056545686, -0.026059825, -0.000448226405, 0.00363234663, -0.0119544277, -0.0143639278, -0.012181934, -0.018717574, -0.0262459666, 0.0467422269, 0.0110444026, -0.0157289654, 0.0168975219, 0.0039813621, 0.040434096, -0.0101757413, 0.00830915477, -0.0015757404, -0.0127093354, -0.0115304384, -0.00650978601, 0.0206513777, 0.0112615675, -0.0168458167, 0.00355737307, 0.00167268922, 0.00114270265, -0.00203850912, -0.00207082531, -0.0168044511, 0.00231125834, -0.00488880277, 0.0155014601, -0.0074353232, -0.0152015649, -0.0311890617, -0.00628745, 0.0258736834, -0.0402893163, -0.0138365263, -0.0118820397, -0.0485622771, -0.0431848541, -0.00736293476, -0.0120061338, 0.00859353784, 0.0280660186, -0.00137279439, 0.0264321081, -0.0156669188, 0.00801960099, 0.00799891911, 0.0263286959, 0.0209719557, -0.0121302288, -0.00925537478, 0.0184797253, 0.00398911815, 0.0315820277, 0.0155428248, -0.0211684369, -0.0289346799, -0.0375385582, 0.0164114852, -0.026308015, -0.0276937354, 0.058241643, -0.00996891782, -0.00155505806, -0.00341259618, -0.0170526393, -0.0150464466, -0.0200102236, -0.0171146877, 0.00409511523, -0.027879877, -0.0152429296, 0.0129058184, -0.0224610884, 0.0208995659, -0.0233090669, 0.0161426142, -0.0298033394, 0.00420111278, -0.0181177836, -0.0278178304, 0.00908474438, 0.000454366498, -0.013164348, -0.00521196518, 0.0074922, 0.0157806724, 0.0256048124, -0.0232470185, -0.00615301449, -0.0134952664, -0.00403048284, -0.00253747217, -0.00147620635, -0.00230996567, -0.0105635365, 0.00721298764, -0.00058718631, 0.0157186259, 0.00647359155, -0.0308995079, -0.0186038204, -0.00825227797, 0.0337950438, 0.0245913751, 0.0380349346, -0.0230815597, -0.00589965517, -0.00720264623, -0.0015485948, -0.0186555255, -0.00931225158, -0.00937429816, -0.0274041817, 0.0177248176, -0.00439759577, -0.00552737154, 0.0074766879, -0.0075801, 0.00599789619, -0.0181798302, -0.0121715935, 0.0206617191, -0.0301549416, -0.0166183095, 0.00316699268, 0.0254600365, -0.0373317339, -0.0480659, 0.00683553377, -0.020041246, 0.00784380082, -0.0370835438, 0.00847461354, -0.00631847372, -0.00230867299, -0.0204962604, -0.00196612068, 0.00375902653, 0.0213442389, -0.0154290712, 0.00948288105, -0.015842719, 0.00893479772, -0.018076418, -0.00137020904, -0.0107445074, -0.0128851356, -0.011127132, -0.0269284863, 0.0143846096, 0.0169802513, 0.00697514, -0.0116648739, 0.040434096, 0.00841773767, -0.00107160688, -0.0159771554, 0.0310236011, -0.00721298764, -0.0107651902, 0.0059565315, 0.0089503089, -0.00740429945, 0.00721815787, 0.0141467629, 0.0125335352, -0.00147103576, 0.00732674077, 0.0133504905, -0.00146586518, -0.00660802703, 0.0181798302, -0.00468973443, 0.0128747951, 0.00717679318, 0.01800403, 0.00838154275, 0.000459213945, -0.0302790347, 0.00543947145, -0.023702031, -0.0367939919, 0.00244827918, 0.00948288105, -0.0125438767, -0.0379108414, -0.00610130839, -0.0135469725, 0.0217785686, -0.035615094, 0.0129885478, -0.0079110181, 0.00792653, 0.0210340023, 0.0172594637, 0.00414682133, 0.0243638679, 0.0277971476, -0.0257702712, -0.0135262907, -0.0264734738, 0.00833500735, 0.00994823501, 0.0074922, -0.000772358442, -0.0254807193, 0.0232470185, 0.00301963068, 0.00672695087, -0.0102584707, -0.0178799368, -0.00475953752, -0.0165666025, 0.00945185777, 0.00486294972, 0.0477349833, 0.0255634487, -0.00960697513, 0.0247568339, -0.00234098919, 0.00368663808, 0.0195448697, -0.00124094402, -0.0226058643, 0.0365458019, -0.00194026774, -0.000840868859, 0.000229606972, 0.0403306819, -0.00819023047, 0.022254264, -0.0111581553, -0.0387174562, -0.00795755349, -0.0306099541, -0.000114884278, 0.0156669188, -0.00966902263, 0.0323886387, 0.00407443289, -0.00419594208, -0.00952941645, -0.0192036089, -0.0185624547, -0.00771453558, -0.00582726672, -0.00999477, 0.00475695217, 0.00480607292, 0.00784380082, -0.0207444485, -0.0179730076, 0.00208116672, 0.00285417144, -0.00112072763, 0.0390483737, 0.00494826445, 0.0245706923, -0.0107962135, -0.0032781607, 0.0161012486, -0.00059494219, -0.00768351229, 0.000310236, -0.000974658178, -0.0198654458, -0.00898133311, 0.0152222477, -0.0322438627, 0.00382365892, -0.026039144, 0.00756975869, 0.0268043913, -0.0249429755, -0.0222335812, 0.00409511523, 0.0282521602, -0.00838671345, -0.0110547431, -0.0245913751, 0.0305479076, 0.0117372628, -0.0112925908, -0.00944668707, 0.00960180443, 0.0167010389, -0.0188003033, 0.025397988, 0.00710440474, 0.00897099171, -0.0124921706, 0.0141053973, -0.00195836485, 0.015894426, -0.00667524524, 0.0436398685, -0.00903303921, -0.020413531, 0.0154187297, 0.0168768391, -0.0124921706, 0.0219026636, 0.00921918079, 0.00675797462, 0.0402893163, -0.00599272596, 0.0126059232, -0.00231772149, -0.010537683, 0.0317268036, -0.0296378806, -0.0453771874, -0.0175697, 0.00964834, 0.0291001387, -0.0125438767, -0.0153980479, -0.00800408889, 0.00398911815, -0.00773521792, -0.00432520732, -0.0489759259, -0.0148292817, 0.0266182497, 0.0411166139, -0.00782828871, 0.000447256927, -0.0129471831, -0.0113029322, -0.012698994, -0.0168768391, 0.0283969361, 0.00456564, -0.0295344684, 0.00422955118, -0.0216958392, -0.00565146608, 0.0231849719, 0.0265562031, -0.0148292817, -0.00935878698, 0.0174352638, 0.00304548349, 0.00806613639, 0.0227506422, 0.00823676586, 0.0207858142, 0.00285675679, -0.000677995, 0.00208375184, 0.00174507766, -0.0144466572, -0.000459537114, -0.0157289654, 0.000589125266, -0.00120604248, 0.00497153215, -0.0191001967, 0.029989481, -0.0129471831, 0.00558424834, 0.0246534217, -0.014787917, 0.0190484915, 0.0150257647, -0.00231125834, 0.00686138682, -0.0139295971, -0.000165459205, 0.0304651763, -0.0216544736, -0.0114580505, -0.0118303336, 0.00984999351, 0.000362911524, -0.00518611213, 0.00611682, -0.0422334634, -0.0161736384, 0.0165666025, -0.000646001892, 0.00049411552, -0.00891928561, -0.00920883939, 0.0170629807, 0.0331952535, -0.0102067655, 0.0151291769, 0.0103308596, -0.00160547136, -0.00920366868, 0.000102523307, -0.00772487698, -0.00130040594, 0.0247982, 0.0137744788, -0.0119234044, -0.00186787941, -0.000168852421, 0.0205583069, 0.00367371156, -0.00882104412, -0.0128024062, -0.0035237642, -0.0106307538, 0.00755424704, -6.52788294e-05, -0.0191312209, -0.0134021956, 0.0133815138, 0.0245500095, 0.0303410832, 0.00965868123, 0.0360907912, -0.00025303624, -0.0256461781, -0.0049741175, 0.0098913582, -0.00841773767, -0.00937429816, -0.0105687073, -0.0135159492, -0.00898650382, 0.0119337458, 0.0456253774, 0.0206720605, -0.0199274942, 0.0291415043, -0.02264723, 0.0211063903, 0.0030273865, -0.00736293476, -0.000597527483, -0.0247154702, -0.0198034, 0.00133789284, -0.00879002083, -0.0363596603, -0.0305685885, -0.0144880218, 0.0319543108, 0.0186038204, -0.0115924859, 0.00707338145, 0.00907957461, 0.017859254, -0.00921918079, -0.013805503, 0.0252532121, -0.00114270265, 0.0211787783, -0.0226265471, -0.000109875255, -0.0203514826, 0.00853666104, -0.0228747353, -0.00144259748, -0.0162046608, 0.00422955118, 0.0253152587, -0.00964834, -0.015770331, -0.0192656573, -0.00477763452, -0.00520162378, 0.00828847196, 0.00112137396, -0.00811784249, -0.00175800407, -0.00629779138, 0.00193509716, 0.00423472188, 0.00736810546, -0.00044144, 0.0222956277, 0.00586863142, -0.0343121029, -0.0122853462, -0.00678382767, -0.0151705416, -0.00222335802, 0.00592033751, 0.00898650382, 0.0170940049, -0.00835569, -0.0132677602, 0.0358426, -0.0314165689, 0.0277971476, -0.0157289654, 0.00683036307, 0.0103877364, -0.0244672801, -0.0330091119, -0.000292946817, -0.000155279587, 0.0191519037, -0.00400204444, -0.0152222477, -0.019627599, 0.00715611083, -0.00154730212, 0.0286864899, 0.0234124791, 0.00678382767, 0.038738139, 0.00464319903, 0.0219026636, 0.0158220362, 0.0069854809, -0.00800926, -0.0144880218, 0.0247361511, 0.0273421351, 0.0134332199, -0.00439501042, 0.0236193016, 0.00767317088, -0.0174766295, -0.0243225042, 0.0135986786, 0.00710957544, 0.0350773521, -0.0126576293, -0.0266596153, -0.0203204583, -0.000133870068, -0.0149740586, 0.0300308466, 0.0130816186, 0.0118716983, -0.0241984092, -0.0178695954, -0.00384434126, -0.0208685435, -0.00416491879, -0.0223990399, -0.0124714877, 0.015449754, 0.00435364526, 0.0147051876, -0.00769385323, 0.0370835438, 0.0300515294, 0.0261011906, 0.0168354753, 0.0433089472, -0.0108168963, -0.00412355363, 0.0160598848, -0.0132057136, 0.0173318516, -0.0355944112, 0.0185314324, 0.00390638877, 0.0106204133, -0.00597204315, 0.00645808, 0.0310442839, -0.00607028464, -0.0197620336, 0.0239709038, -0.00819540117, -0.0408063792, -0.00613233214, -0.0291208215, -0.0426471122, 0.027362816, -0.0134228785, 0.0143535864, -0.00285158609, -0.0066028568, -0.0065563214, 0.0120474985, -0.0368353575, -0.00973624084, 0.00763697689, -0.0248188823, 0.0198034, 0.00244310871, -0.0216958392, 0.00545498356, -0.0134952664, -0.00118600647, 0.01825222, -0.0232056547, -0.00691309245, 0.00367888203, -0.0118716983, 0.01360902, 0.0141260801, -0.00140898861, -0.00337640196, 0.0140123265, 0.0217992514, -0.00691826316, -0.0159771554, 0.000452104374, 0.00351083768, 0.0113753211, 0.0278385114, -0.00982931163, 0.0090175271, 0.00942600425, 0.0139192557, 0.0349325761, -0.0204962604, -0.00326781929, 0.00856768433, 0.0105583658, -0.00320060155, 0.0165872853, -0.0127093354, 0.018055737, 0.00825744867, -0.00312304264, -0.00483968202, 0.0222128984, -0.00608579675, 0.0011220203, -0.0175593589, -0.0145397279, -0.00931225158, -0.00290846266, -0.0199792, 0.0224610884, 0.0150154233, 3.17507183e-05, -0.000451458036, 0.0210857075, -0.0105687073, -0.0180247128, -0.00432520732, -0.00465095509, -0.0176420882, 0.0132677602, 0.0273421351, -0.00457598129, 0.0449635386, 0.0304444954, 0.00886240881, -0.027879877, 0.0155324833, -0.00410028594, -8.17601176e-05, 0.0164942145, 0.000425605045, 0.0231229253, -0.0137020908, 0.0032264546, -0.0103722243, 0.00623574387, 0.00571868382, 0.0106307538, -0.00114399532, -0.0109926965, -0.0122853462, 0.0185624547, 0.0237847622, 0.00138959882, 0.00845393166, 0.00501289684, 0.00304806884, 0.00251420448, -0.00639086217, 0.0267837103, 0.0291208215, 0.00895548, -0.00214192108, 0.00117308, -0.00407701824, -0.0100361351, -0.0164218266, 0.000533541315, -0.0144880218, 0.0195448697, -0.00120733515, -0.0079782363, -0.0169078633, 0.0309408717, -0.0002509357, -0.0202273875, 0.020092953, -0.00882104412, 0.0131953722, -0.00512406509, 0.00337123149, 0.00115692185, 0.0193690695, -0.00599272596, 0.000176931484, 0.0249636583, 0.00124482205, -0.0131229833, 0.00107225322, -0.0210960489, -0.0103825657, -0.00197646208, 0.0112098614, -0.00525850058, -0.00601857901, -0.0274248645, -0.0180971, 0.00514474744, 0.00819023047, -0.000143726531, 0.0179730076, -0.00212511676, 0.00690275151, -0.0206410363, 0.00656666234, -0.0169699099, -0.00764214713, 0.00696479855, 0.00919849798, -0.00945702754, 0.00513957674, 0.00012352888, 0.0322231799, 0.0121922754, -0.0255634487, -0.0106928013, -0.00434071897, 0.00482417, -0.00405375054, 0.0156358946, 0.00949839316, 0.0123991, -0.00815920718, -0.00865041465, 0.0116752153, -0.018128125, -0.00110909378, 0.0040382389, -0.00634949701, 0.0254807193, 0.0119957924, 0.0123267109, 0.0117062395, 0.0191932693, 0.0160081778, -0.00238364679, -0.0109203076, 0.00730605843, 0.0011149107, -0.0276523698, 0.00633398537, -0.0142605156, -0.00934844557, -0.0363389775, 0.00773521792, -0.00103024207, -0.0138365263, -0.00366854086, -0.0287071727, 0.00571868382, 0.0191725865, -0.0147775756, -0.0171767343, 4.0294326e-05, 0.00949322246, 0.00219104183, -0.00490172906, 0.0178799368, -0.0196379405, -0.00193380448, -0.0234952085, -0.0147465523, 0.00756975869, -0.0251911655, -0.0121302288, -0.0065511507, 0.0278178304, -0.00774555933, -0.0210133195, 0.00638052076, 0.0168561563, 0.00268095615, 0.00872797333, -0.00163908035, 0.00810750108, 0.0179626662, -0.0203514826, -0.0258116368, 0.00859870855, -0.00406926265, -0.0123887584, -0.0125542171, -0.0133711724, -0.00815403648, 0.0210753661, -0.000898391823, -0.0251084343, -0.0217165221, 0.00350308162, 0.00395292416, -0.00178256445, 0.00972589944, -0.0221508518, -0.0166803561, 0.00604960229, 0.00741981156, -0.0183039252, -0.00616335543, -0.00160805671, -0.0177041348, -0.0168664977, 0.0138158444, -0.0210857075, -0.0217785686, 0.00981897, -0.0146741634, 0.0210029781, 0.0065511507, 0.0128127476, 0.0184487011, 0.018076418, -0.00140252535, 0.0107134841, -0.0124301231, -0.0332573019, 0.00555322459, -0.0257289074, -0.0201963652, 0.0104911476, 0.00294724223, -0.00579107227, -0.00207470334, 0.0142088095, 0.0492241159, 0.00688206917, -0.0133401491, -0.00816437788, 0.0207651313, -0.0186038204, -0.00518869748, -0.0163184144, -0.0417164043, 0.000798857771, 0.000693506794, -0.00955526903, -0.00234098919, -0.00689241, 0.0135056078, 0.0122439815, 0.00476987893, -0.004581152, -0.0103515415, -0.0236193016, 0.020155, 0.00352634932, -0.00881070271, -0.0167113803, 0.00668558618, -0.0147982584, -0.00549117755, -0.00286192726, 0.00975692272, -0.0158323776, 0.00930191, 0.00930191, 0.000822125468, 0.00169207901, 0.00265510334, -0.0113339555, 0.000246088253, 0.00126615074, -0.0155221419, -0.00613233214, 0.0159564726, 0.0175697, -0.0199585166, -0.00470266119, 0.00528693898, 0.0290174093, 0.020289436, 0.00123706611, -0.00389346201, -0.0090744039, 0.0010644974, -0.00864524394, -0.0165459216, 0.00308167771, 0.000544205657, -0.00798857771, 0.00627193833, 0.0091209393, -8.9122168e-06, 0.00209150789, -0.0212821905, 0.0149016697, -7.05706188e-05, -0.00806613639, -0.00327040465, 0.00794204231, 0.00760078244, 0.0129988892, -0.007037187, -0.00510596763, 0.000621441519, -0.037704017, -0.00821608398, 0.0154911187, 0.00374351465, -0.00236167177, -0.0229161, -0.00846427307, -0.004563055, 0.00570317218, 0.00227894215, -0.0168044511, 0.00230996567, -0.0221094862, -0.0177455, -0.00259176339, -0.0153463418, -0.00471558748, 0.00883655623, -0.0169388875, -0.00263183564, -0.00978277624, -0.000308781775, -0.026700981, 0.0050309943, 0.00715094, 0.00700616324, -0.000846039504, 0.00130169862, 0.0089089442, 0.00881587341, -0.0102946656, -0.0130299125, -0.0130299125, -0.0079213595, -0.00756975869, 0.0133504905, -0.0012493463, -0.0279626064, -0.0190278087, 0.00866592582, -0.0104187597, 0.005563566, 0.0254186708, -0.0175697, 0.00409511523, 0.0264321081, 0.00763697689, 0.0363183, 0.00114916591, 0.00935361627, -0.000838283566, -0.00768868253, -0.0263493787, -0.0153566832, -0.00108388707, -0.0153773651, -0.022254264, 0.0238468088, 0.0310236011, 0.0123163704, 0.0046095904, 0.00990687, -0.00764214713, -0.00860905, 0.0113132736, -0.00720781693, -0.0339605026, 0.0309822373, -0.0163908023, 0.00373834395, -0.00302480115, 0.017611064, -0.0023280629, -0.00446222816, -0.00846427307, 0.0147775756, 0.0381590314, 0.0127920648, -0.0171250291, 0.000720652402, -0.00326264882, -0.00608579675, -0.00859870855, -0.00987067632, -0.0206513777, -0.00142320769, 0.00335571961, -0.00441569276, -0.00591516681, 0.00581692532, -0.00469232, 0.00222077291, -0.00468714908, 0.0106410952, 0.00499997055, -0.000768480473, -0.00777658308, 0.00146069459, 0.00453720195, -0.00389863271, -0.000831174, 0.00499997055, -0.00362717616, 0.0011149107, 0.00487846136, -0.00485002296, 0.0168664977, -0.00181358808, 0.0199998822, 0.00749737024, 0.00210443442, -0.0311063323, -0.0106100719, 0.0174352638, -0.00926571619, -0.0107031427, 0.0130402539, 0.0151188355, -0.0074870293, -0.0201756824, 0.0014787917, -0.00938981, -0.0135159492, -0.0103205182, 0.0191208795, 0.00783863, 0.0183556303, 0.0132367369, 0.00256591034, 0.0129161598, 0.0178902764, -0.00509304134, -0.00345654623, 0.00506718829, 0.0113753211, 0.0189037155, -0.00363751734, 0.0175800417, 0.00569283077, -0.00181875867, 0.0365251191, 0.0300928932, 0.00113688572, 0.0165355802, 0.00782828871, -0.00171534671, 0.000435946247, -0.0172387809, 0.000804028357, -0.00336606079, -0.0101188645, 0.00123383454, 0.0088986028, 0.0079782363, -0.00224145525, -0.0002827672, 0.000140414122, 0.00601857901, 0.0266389325, -0.00463285809, 5.5503162e-05, -0.0226885937, 0.0148396231, -0.0393792912, 0.000477311056, 0.0108479196, 0.000484097458, 0.0201239772, 0.00553254224, -0.0121612521, -0.0137020908, 0.00259305607, 0.00956561, -0.00609096698, 0.00185236754, 0.00730088772, -0.0291828681, -0.014270857, 0.0114477091, -0.0054653245, -0.00982931163, 0.0160702262, 0.00846944377, 0.00430193963, 0.00107483857, -0.0064477385, 0.00445964281, 0.00525074452, -0.0179523248, 9.28082318e-06, -0.0088468967, -0.00220267568, 0.00389604736, -0.0040149712, -0.0264321081, 0.0140536921, 0.0257289074, 0.00486553507, -4.66969832e-05, 0.00442086346, -0.0198137406, 0.00564629538, -0.0205272827, -0.00203333865, -0.00366595574, -0.000493146, -0.0325747803, 0.0276730526, -0.00415974809, -0.010573878, 0.00966902263, 0.00294465688, 0.0121922754, -0.0046095904, -0.0307754129, 0.0069441162, 0.0261425544, 0.0153566832, -0.00953975786, 0.00773004768, 0.0104084183, -0.0156048713, 0.00782828871, -0.00922435056, 0.0126783121, -0.0183039252, 0.0170216169, 0.0297619756, 0.0110857673, -0.010341201, 0.00432003662, 0.0334641263, 0.0249222927, -0.010537683, -0.00714576943, 0.0125231938, -0.00984482281, -0.0127300182, -0.0113339555, 0.00598755525, -0.0139192557, 0.00717162248, 0.00684070401, 0.00128941843, -0.0233711135, 0.0015899596, -0.0107858721, -0.0212821905, -0.0239088554, 0.00658217398, -0.00739395851, 0.00719747553, -0.00538776536, 0.0215303805, -0.00392707111, 0.00341259618, -0.00654598, 0.00411579804, -0.00441569276, 0.00161710521, 0.0119544277, 0.0283142067, -0.00804028381, 0.0068872394, -0.00568249, -0.00137537974, 0.0136607261, -0.0101292059, -0.0338984542, -0.0158116966, 0.00881587341, 0.00286709797, 0.00357805542, -0.0109203076, 0.00175800407, 0.00881070271, -0.00156410655, -0.00319026038, -0.00500772661, 0.00809199, -0.0187796205, 0.00678382767, -0.0189657621, -0.0152119063, 0.00328333117, 0.0114580505, 0.0225024521, -0.00726469327, 0.00385985314, -0.000377130666, 0.0155841894, 0.00364785851, 0.0114890737, -0.0151602, 0.0118716983, 0.0209305901, 0.00863490254, -0.0115614627, 0.0112202028, -0.00763180619, -0.00695962785, -0.00517577073, -0.0140950568, 0.0127920648, 0.0166803561, 0.00120798149, 0.0151291769, 0.0117993103, 0.0099896, 0.00754907634, 0.000716128154, 0.018717574, 0.00741981156, -0.0198654458, -0.0286037605, 0.0204445533, 0.0250877533, 0.0165666025, -0.00914162118, -0.036111474, -0.00502323825, -0.0362148844, 0.00346171693, 0.0123680755, 0.00664939219, -0.00792653, 0.00550151896, 0.0105842184, -0.0116131688, -0.0103360303, -0.00872280262, 0.00150981534, 0.0163908023, 0.0223369934, -0.00441310741, 0.0282935258, -0.00570834288, -0.00966385193, -0.0117889689, 0.0118820397, -0.011396003, 0.000897745485, -0.00291621848, -0.00060625287, -0.012823089, 0.00545498356, -0.012037158, -0.00533088902, 0.0143329045, -0.00514474744, 0.00301963068, 0.0233090669, -0.00963799935, 0.00382107357, -0.0120164752, -0.00667524524, -0.0180660784, -0.0348498449, 0.00689241, -0.00440535136, -0.00308426307, 0.00256073987, -0.00785414223, 0.0182935838, 0.0123370523, 0.025790954, -0.030237671, -0.000882233668, 0.00518869748, 0.0126472889, 0.00627710856, -0.0141053973, 0.0152429296, 0.0128644537, -0.0135779968, -0.0015020594, -0.00167139655, 0.00391931506, -0.0118613569, -0.0247568339, 0.00944151636, -0.00843324885, -0.0226679109, 0.0281694308, -0.007037187, 0.0179109592, 0.00637535, 0.000567150244, -0.0174249224, -0.0162873901, 0.013681408, 0.00438208366, 0.035615094, -0.00857802574, 0.00867109653, 0.00413648039, 0.00631847372, 0.0167941097, -0.0120578399, -0.015180883, -0.00747151766, 0.000834405655, 0.00770419464, -0.0133194663, 0.0080299424, -0.0163908023, -0.0139813032, 0.00726986397, -0.037704017, -0.0382417589, -0.0231436063, 0.000134758768, 0.00539810676, -0.00798857771, 0.00583243696, -0.0128334304, 0.0069441162, -0.0392345153, 0.016432168, -0.0141467629, -0.0284589846, 0.0213649198, -1.78749269e-05, -0.000438208372, -0.00108130183, 0.000340613304, 0.000975304458, -0.00326523418, -0.0173628759, -0.00506201759, -0.0223576762, 0.0217785686, 0.0186968911, 0.00938981, -0.00149171823, -0.00713025779, -0.00570834288, 0.0098810168, 0.0182315372, -0.00762663549, -0.0102791535, -0.00449842215, -0.00615301449, 0.0103825657, 0.00742498226, 0.0181694888, 0.0107858721, 0.00516284443, -0.0234124791, 0.0329677463, 0.0149637172, 0.00468714908, -0.00823676586, -0.0232263375, -0.00857802574, -0.0122543229, 0.00257883687, -0.0069906516, 0.00819540117, -0.0173111707, 0.0161736384, 0.0199171528, -0.0253152587, -0.0333193503, 0.00723367, -0.00788516551, 0.0289553609, 0.00426574517, -0.00329884305, -0.000266447489, 0.0213235561, -0.00184719695, 0.00271715038, -0.0124404645, 0.0207651313, 0.0388208665, -0.0127610415, 0.00432520732, 0.00571351359, -0.0068872394, -0.0091157686, -4.73837063e-05, 0.0124508059, -0.019772375, 0.0218819808, -0.0150671294, 0.012306029, 0.0147568937, 0.0264321081, 0.0132263955, 0.00219104183, 0.0187072325, -0.0165252388, 0.0135056078, 0.00494826445, 0.0032264546, 0.0101757413, 0.00893479772, -0.0164528508, -0.00488621742, -0.020413531, -0.00164295826, -0.0170112755, 0.0105790487, 0.00964317, -0.00513182068, -0.0221922174, 0.0157910138, -0.00359615241, 0.0241570454, 0.00213675061, 0.00884172693, 0.00359615241, -0.0142191509, 0.0140640326, 0.00726986397, -0.0089037735, 0.0191105381, 0.0173008293, -0.000738749513, 0.0130609367, 0.024074316, -0.00233581872, 0.00931225158, 0.00407184754, 0.00443637511, -0.0176420882, -0.0141984681, 0.00876416732, -0.000984999351, -0.0204755776, 0.00338932849, 0.00314113963, -0.0289553609, 0.0177661832, -0.026059825, -0.00612716144, -0.00323421042, 0.0123473937, 0.0127920648, -0.0128127476, -0.0108065549, -0.0223163106, 0.003764197, 0.0404961407, 0.00423730677, -0.0216337927, 0.0198137406, -0.00672178064, 0.0265975688, -0.00963282865, -0.00472592888, -0.00135599, 0.00413648039, -0.0162253436, 0.0114890737, -0.00883138552, 0.0100568179, -0.00668558618, 0.00870729052, 0.00762663549, 0.0142294923, 0.00335830497, -0.00341259618, -0.0174249224, -0.00624608528, 0.0346843861, -0.021861298, 0.000738103176, 0.0304031298, 0.0193587281, -0.00881587341, 0.00286968309, 0.0294103753, -0.00149430346, -0.00430969521, -0.00445705745, -0.007668, 0.0180867594, 0.0152636124, 0.00622540293, -0.0289760437, 0.012378417, 0.0187485963, 0.00339191384, 0.0238674916, -0.00810233, 0.0107445074, 0.00233711139, 0.00860387925, 0.00899684429, -0.00155764329, -0.00719747553, 0.0233090669, 0.0222335812, 0.00673212158, -0.025522083, -0.0147568937, 0.0102481302, -0.00334279309, 0.0269491691, 0.0114787323, 0.0189761035, -0.00333245192, 0.00461217528, -0.0156358946, -0.00691309245, -0.000556809, -0.0135883372, -0.0107858721, -0.00874348544, 0.00525333, -0.00927088596, -0.0160702262, -0.0259977784, 0.01360902, 0.00370214973, -0.0157186259, -0.00160934939, 0.0122956876, -0.0149223525, 0.00318767503, 0.00263183564, 0.010930649, -0.0136710675, 0.00427350122, 0.0305272248, 0.00978794601, 0.0166079681, -0.0131850308, -0.0196586233, 0.00881587341, 0.0103050061, -0.0070423577, 0.00163778767, -0.0408063792, 0.00355478772, -0.0162460264, -0.0069958223, 0.00163132441, 0.0164735317, -0.0347050689, -0.00467422279, 0.0128437709, -0.0137744788, -0.00604443159, -0.00373834395, -0.00276110065, 0.000994694186, -0.00104381493, -0.0131229833, -0.0125335352, 0.00195448683, 0.0244259164, 0.00679416861, -0.00377453817, -0.0197413526, 0.0186348427, -0.0177248176, 0.00726986397, -0.0137124322, -0.00106966798, 0.00847978424, -0.00828330126, 0.0149637172, -0.00316957803, 0.0299688, -0.00981897, 0.0162046608, 0.0159254484, 0.0195345283, -0.00997408759, 0.00390897365, 0.00126162649, 0.00955009833, 0.00577039, -0.00481382897, -0.00240691449, -0.0170836635, 0.0168354753, 0.00302480115, -0.0167837683, -0.00539810676, 0.00411579804, 0.0162460264, 0.0145604108, -0.00493016746, -0.00350566697, 0.00842807814, 0.00877967943, 0.015842719, 4.7504891e-05, 0.0204548948, -0.000707079598, 0.007668, 0.00256073987, 0.00220267568, 0.00423989212, 0.00168173772, -0.0103567122, 0.0217165221, 0.00186787941, -0.0115821445, -0.0170009341, -0.0207547899, -0.0299274344, 0.00533605972, -0.0126162646, -0.0116958981, -0.000716774492, 0.00376678235, 0.00916747469, 0.0216958392, 0.0119027216, -0.0272594057, 0.00313079846, -0.00285417144, 0.00314372499, 0.00908474438, -0.00671143923, -0.0124301231, 0.000300056388, -0.0244259164, 0.00909508578, -0.00543947145, 0.00426057447, -0.0155428248, 0.00211477559, 0.00934844557, 0.010734166, 0.00147749903, 0.000339966966, -0.0157186259, 0.00077365106, 0.00204367982, 0.0113029322, -0.0011220203, -0.0102015948, -0.0075801, 0.00539293606, 0.00230608764, -0.00183814846, 0.00178385712, 0.0235779379, -0.000619502563, 0.010144718, 0.00607545534, 0.000356448261, -0.0117993103, 0.015336, 0.0172801465, -0.0060134083, -0.00964834, -0.00189373235, 0.0109823551, 0.0138985738, 0.000203915552, -0.00574453687, -0.0124611463, -0.00527142687, 0.00146069459, -0.0121509107, 0.0113649797, -0.00750254095, 0.0090588918, -0.0157082845, -0.016432168, 0.0241570454, 0.0154187297, 0.00668558618, -0.0200515874, -0.000621441519, -0.0131333247, -0.0220474396, 0.0143329045, 0.0164011437, -0.0176007226, -0.0133401491, 0.00323679578, -0.00296533923, -0.00939498097, 0.00483451132, 0.0139709618, -0.00767317088, 0.00686138682, -0.00695962785, 0.0122129582, 0.0182211958, -0.00380814704, -0.00747151766, 0.0137331141, -0.0115614627, 0.0316440724, -0.0189140551, -0.030672, -0.00464319903, -0.0136917494, -0.0243845508, -0.00653563859, -0.00583760766, 0.00850563776, 0.000357740908, -0.00991721172, -0.00315148081, -0.00515250303, -0.00265251799, -0.00486553507, 0.0351187177, 0.023557255, -0.00407960359, -0.0126369474, -0.00277144182, -0.0257702712, 0.0124714877, -0.0223369934, 0.0174973123, -0.00361683499, 0.00114658067, 0.00045727496, 0.00689758081, -0.00459924899, -0.00725952303, 0.00293173036, 0.00736810546, -0.00706304, -0.018272901, -0.0226058643, -0.00367371156, -0.0116028273, -0.0182211958, 0.00503616454, -0.00175541884, 0.0132987844, -0.0300101638, 0.0133298077, 0.00126615074, -0.00762146479, -0.00705269864, 0.0108479196, -0.0309408717, -0.0090640625, 0.00423730677, -0.00841256697, -0.0369801335, -0.00565146608, -1.49260686e-05, -0.019824082, -0.0209202487, 0.0117372628, 0.0176731125, 0.00291621848, -0.00416491879, -0.00283348886, -0.00946219824, 0.0188003033, -0.002527131, -0.00582209602, -0.0104394425, 0.00598755525, 0.000421727076, -0.00658734469, 0.00120604248, -0.0151602, 0.0079110181, 0.00237589073, -0.00969487522, 0.0129161598, -0.00664422149, 0.00765248854, -0.00385726779, -0.00984482281, -0.00892445631, 0.000466323516, -0.0161426142, 0.00944151636, 8.4749372e-05, 0.0267216619, -0.00540327746, 0.0129161598, -0.0248809289, -0.00321611343, 0.00678899838, 0.0176214054, -0.0149016697, 0.0110237198, 0.0106410952, 0.0187796205, -0.00592033751, 0.0011885917, 0.0212821905, 0.000619179395, -0.0206100121, 0.00436398666, -0.00207728869, -0.00973107, 0.00562044233, -0.0035702996, -0.020682402, -0.000948158849, -0.00148913288, 0.00948805176, 0.00144389016, -0.000510273618, -0.0019984371, -0.007668, -0.00433554826, 0.0222335812, 0.015336, -0.0171457101, 0.00415457739, 0.0161839798, 0.00402531214, 0.0231022425, 0.00780760637, -0.00697514, -0.0304031298, -0.0247154702, -0.0133194663, 0.00714059919, -0.00095203676, 0.0039632651, 0.0123473937, 0.0018963177, 0.00917781517, 0.00487587601, -0.00884172693, 0.00787999481, -0.00132755167, 0.0244052336, 0.00246766908, -0.0141881276, -0.00150852266, -0.00190665887, 0.00950356293, -0.0177868642, -0.0174456052, 0.0198551044, -0.00898133311, -0.0471972413, 0.00832983758, 0.0105635365, 0.000864136557, -0.00933810417, -0.0112719089, 0.0337329954, 0.021592427, 0.0154704358, -0.00407443289, 0.00876416732, 0.00542396, -0.00341776689, -0.0174766295, -0.0164735317, -0.0166493338, -0.0435157716, 0.0261011906, -0.00706821075, 0.0185004082, 0.00639086217, -0.00873831473, -0.0113649797, 0.000915842596, 0.0135779968, -0.000376807497, -0.0204342119, 0.00613750238, 0.0156255551, -0.0040149712, -0.0037461, -0.00323421042, 0.0233504307, 0.0153980479, 0.00339708431, -0.00123771245, -0.0168147925, -0.00490948511, 0.00818506069, 0.000933939707, 0.000376807497, 0.00372283231, -0.0011957013, -0.00836603157, -0.00218199333, 0.00473368447, -0.00585829, -0.0117786275, -0.00761112384, 0.0101860827, 0.014860305, -0.0111684967, 0.00805062428, -0.00485002296, 0.0203825068, 0.0165252388, -0.00609613769, 0.000186626348, -0.020041246, 0.0246327408, -0.013484926, -0.010108524, -0.00372283231, -0.00384692661, 0.0146017754, -0.00511372369, -0.0151395174, 0.0117062395, 0.000652142, -0.00607545534, -0.0208685435, 0.00525074452, 0.0372903682, -0.0226265471, 0.00368405273, 0.00366337039, 0.00980862882, -0.00156539923, -0.0178695954, 0.0029756804, 0.00566180749, 0.0268457569, 0.00326264882, 0.00276885647, -0.0236813501, -0.00950356293, 0.0162150022, 0.00104575395, -0.0117372628, -0.0379108414, -0.00446739886, -0.00860387925, 0.000735517882, -0.00431228057, -0.0177868642, -0.0159357898, 0.00185366021, 0.00431745127, -0.003420352, -0.0183763131, -0.00574453687, -0.0144776804, -0.00615301449, 0.0340018682, -0.0169078633, -0.0238674916, -0.0225024521, 0.0181074422, 0.00281539187, 0.0155014601, -0.00347981392, -0.0184797253, 0.00201524142, 0.00390380318, 0.00464061368, 0.00450876355, -0.00587897236, 0.00169207901, -0.00687689846, 0.00130880822, 0.0194414575, -0.00539293606, -0.00479831733, -0.00691826316, -0.00965351053, -0.0265975688, 0.00543430075, -0.00441569276, 0.0238468088, 0.0121405693, -0.0184383616, -0.00189373235, 0.0213442389, 0.0186968911, -0.00849529635, -0.00789550692, 0.0158220362, -0.0173939, 0.0191208795, 0.00677865697, -0.000198583366, -0.0031747485, -0.0256048124, -0.0100619886, -0.0151498588, 0.0101550594, -0.000461152929, -0.00395292416, -0.00584277837, 0.00027533446, -0.00579624297, -0.00415199203, -0.0124404645, 0.00313855428, 0.00431228057, -0.0156048713, 0.0368767232, 0.001917, -0.00788516551, -0.0075801, -0.0127300182, -0.0187072325, -0.0207030829, 0.00745083485, 0.0111788381, -0.0125542171, -0.0209616143, -0.0089037735, 0.0119647691, -0.0125749, 0.0103618829, 0.00578590157, -0.0157806724, -0.0246947873, 0.0222128984, -0.00769902393, -0.0239088554, 0.0266182497, -0.0078644827, -0.0251911655, -0.0129265012, -0.00468456373, 0.0105118304, 0.0243225042, 0.00479573198, -0.015056788, -0.00570317218, -0.0114270272, 0.00821608398, -0.00877450872, 0.00201265607, 0.000703201629, -0.0157599896, 0.0226265471, -0.00243276753, 0.00850563776, 0.00479314663, -0.00421145419, -0.0150671294, -0.00534123, -0.00356512889, -0.00842807814, 0.002781783, 0.0132574197, 0.00938464, 0.00275075948, 0.0172181, -0.0258323196, 0.0135469725, -0.0100826705, 0.0099430643, -0.0231022425, -0.00858319644, 0.0409097895, -0.0177041348, -0.0141157387, -0.0208582021, 0.00448032515, -0.00521455053, -0.043970786, 0.015056788, 0.0180247128, -2.08237852e-05, -0.0380349346, -0.0142294923, -0.010501489, 0.038096983, 0.038489949, 0.0318715796, 0.00103799801, -0.000457921298, 0.00874348544, -3.85775274e-05, 0.0305479076, 0.000705140643, -0.012109546, -0.0280453358, -0.00795755349, -0.000944927218, 0.0129988892, 0.00476470822, -0.0205272827, 0.00254135, 0.00130363763, -0.0431848541, 0.0197310112, -0.0099999411, -0.00432779267, -0.00490172906, 0.0170319583, 0.00497928821, 0.00197646208, 0.00160805671, 0.00263829879, 0.00967419334, -0.000447256927, 0.00436657201, -0.00676831603, -0.0163390972, -0.00749737024, 0.00370473508, 0.00478022, 0.00339966966, -0.00520938, 0.00617886754, 0.0132057136, 0.0110444026, 0.00585312, -0.0108375782, -0.0191725865, -0.000194543842, -0.0217165221, 0.00977243483, 0.00613750238, -0.021985393, 0.00759561174, -0.00134177075, -0.0195965748, -0.00958629325, -0.00851597916, 0.00444154581, 0.00363493199, -0.0102015948, -0.0252738949, 0.00517318584, -0.0016869083, 0.00138572091, 0.00176058942, -0.0151395174, -0.0228333715]
26 Nov, 2018
Duration toNanosPart() method in Java with Examples 26 Nov, 2018 The toNanosPart() method of Duration Class in java.time package is used get the nanoseconds part within seconds of the duration. Syntax: public long toNanosPart() Parameters: This method do not accepts any parameter. Return Value: This method returns a long value which is the nanoseconds part within seconds of the duration. Below examples illustrate the Duration.toNanosPart() method: Example 1: // Java code to illustrate toNanosPart() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Duration using parse() method Duration duration = Duration.parse("P2DT3H4M"); System.out.println("Duration: " + duration); // Get the number of nano-seconds // using toNanosPart() method System.out.println(duration.toNanosPart()); } } Output: Duration: PT51H4M 0 Example 2: // Java code to illustrate toNanosPart() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Duration using ofNanos() method Duration duration = Duration.ofNanos(10); System.out.println("Duration: " + duration); // Get the number of nano-seconds // using toNanosPart() method System.out.println(duration.toNanosPart()); } } Output: Duration: PT0.00000001S 10 Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#toNanosPart–
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples
https://www.geeksforgeeks.org/duration-tonanospart-method-in-java-with-examples/?ref=ml_lbp
Pandas
Duration toNanosPart() 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++, Duration toDays() method in Java with Examples, 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, Duration toNanosPart() method in Java with Examples, 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, Duration parse(CharSequence) method in Java with Examples, 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.00240593893, 0.00387948263, -0.0126158139, 0.0106730741, 0.0460741036, 0.00633189129, -0.0319952406, 0.0295248423, 0.0114585645, 0.0138390204, 0.0160216037, 0.00307900202, 0.012939604, -0.0272463206, 0.00876031537, 0.0112786815, -0.010966884, 0.0232768953, 0.0566032715, 0.0243202187, -0.00371159171, 0.0411093235, 0.000629966205, 0.0130115571, 0.0216219705, 0.0229890831, -0.0240324065, 0.02032681, -0.0323550068, -0.0175925847, -0.0067875958, 0.0180842653, 0.00769300805, -0.0143426936, -0.0157457832, -0.014402654, 0.0484245792, -0.038638927, 0.0081667006, -0.044922851, 1.37137577e-05, 0.0177005138, -0.0187198538, 0.0198231377, -0.0231689662, 0.0108469613, -0.0334343053, 0.0164293386, 0.00399340875, -0.0456184, 0.0169330128, 0.0365522839, -0.0441793315, 0.00784291048, 0.0372958, -0.0170289502, 0.0421166718, 0.01659723, 0.0151581643, -0.0272463206, 0.0515185706, 0.0104991877, 0.0102293622, 0.00787289161, 0.0219937284, 0.0234208032, -0.00767502, 0.00141733035, 0.0161775034, -0.0240923669, -0.0113386428, 0.0213941187, 0.0208784528, 0.00574127445, 0.03319446, -0.0194154, 0.0206266157, 0.0124479225, -0.0124119464, -0.00400540093, -0.0498396605, -0.00227102637, -0.062071722, 0.00236246712, -0.0209264215, -0.0130595258, 0.0109548913, -0.0114105958, -0.0203747787, 0.0192714948, -0.00944387168, 0.0196552463, 0.000626593421, 0.00302803516, -0.00429321406, 0.0482327044, 0.0231329892, 0.00945586432, -0.000423100457, -0.0104032494, 0.0270544458, 0.0103133079, 0.0525738858, -0.035784781, 0.0419487804, 0.0082326578, 0.0228691604, -0.0209024362, 0.0121541135, -0.00330985221, 0.0115724904, 0.00326488144, 0.000439964526, -0.00535152759, -0.00759707065, 0.0275101494, -0.01907962, -0.0392145552, -0.0196072776, 0.0114105958, 0.0175686, 0.0524779484, 0.0290691387, 0.0424284674, -0.0039874129, 0.00103882595, -0.021310173, -0.0230970122, -0.0168850441, -0.0285894498, 0.032163132, -0.00927598123, 0.00123594806, -0.0211782586, -0.00475191651, 0.0106910625, -0.00665568141, -0.0253035817, -0.0207585301, 0.0554040484, -0.000646080764, 0.017508639, 0.0193794258, -0.0548763908, 0.0109728798, 0.00149527972, -0.00944387168, 0.0630311, -0.00440414203, 0.0346575119, -0.0666767359, 0.000190844919, -0.0151581643, -0.0263349116, -0.00849648658, 0.0226533, 0.0530056059, 0.0348973572, -0.0185519625, -0.0302203912, 0.00859842077, -0.00650577853, -8.09943231e-05, -0.00917404704, 0.0326907896, 0.0128676509, 0.0202068891, -0.0235167406, 0.0324509442, 0.0101274289, 0.00452706264, -0.0153020704, 0.0222335737, 0.0169569962, -0.00131239847, -0.0245840475, 0.0116744246, 0.0264548343, -0.00429021614, -0.00830461178, -0.0281817131, 0.0168850441, 0.0048358622, 0.0357607976, -0.0321391448, 0.0106670782, 0.0226173233, -0.0148583585, -0.00503673172, -0.00880228821, -0.044850897, -0.0139709348, 0.0329786, 0.0162614491, -0.00296357693, -0.00624794606, -0.00510268891, 0.00801080186, -0.00299805473, 0.0272942893, -0.0824105293, -0.017580593, -0.00720732333, -0.0261430368, -0.00163094176, -0.0176525451, -0.0180003196, -0.016669184, 0.00748314429, 0.0257592853, 0.00436516758, 0.00173437456, -0.0240923669, -0.0382551774, 0.0194993466, 0.0401979163, -0.0381112695, -0.011038837, 0.0126038212, -0.0318513326, -0.0219457597, -0.0161894951, 0.0399820581, 0.0109249111, -0.0555479564, 0.00746515626, -0.0149423042, 0.0270304605, -0.00503972964, -0.0291171074, -0.00230700313, 0.0295488257, -0.0263109282, -0.0165372696, -0.0041013388, -0.0194513779, 0.031395629, 0.0226772856, 0.0313476585, 0.0240443982, 0.018791806, 0.0444431603, 0.0289012473, -0.038782835, -0.0262869429, -0.0486644246, -0.0107270395, 0.0318753161, 0.0240923669, -0.000585370173, -0.00868236646, -0.0413251854, 0.00192774914, 0.0227612313, -0.0549723282, 0.00829261914, 0.00265327841, 0.0354729816, 0.00381652359, -0.000560636225, -0.0116024716, 0.0632229745, 0.0035856734, -0.0119022774, -0.018168211, 0.0383990854, -0.00944986846, -0.0145705454, -0.00569630368, 0.00573827652, 0.000646080764, -0.0132633941, 0.00936592277, 0.0200150125, 0.00173887168, -0.00183181139, -0.0475371554, -0.0119262617, 0.0809234902, 0.0397422127, 0.000457952847, -0.00256183767, -0.0423085466, -0.0263828803, -0.00497377245, -0.0360965766, 0.0295967963, -0.0152780861, -0.00402638735, 0.00692550605, 0.0114105958, -0.0568910837, 0.0330265686, -0.00455704285, 0.00745316362, 0.00661370857, -0.0290451534, 0.00938990712, 0.0097376816, 0.00961176306, -0.00300854794, -0.00452106632, -0.00281667244, -0.0208784528, 0.0330985226, 0.00294558867, 0.0384470522, -0.0215620082, 0.00880828407, 0.0149303125, 0.0256633479, 0.0123519851, 0.00869435817, 0.00783691462, 0.00596013246, 0.000435842201, -0.00178983866, 0.0125318682, -0.00963574741, -0.0305082034, 0.0260471, -0.0127597209, -0.049312003, 0.0113626271, 0.0201229434, 0.0399340875, -0.0344416499, 0.0166571923, -0.0246320162, -0.0343936831, -0.0189596973, -0.00801679771, 0.00471893791, 0.0061190296, -0.0239844378, -0.00497976877, 0.0409414358, -0.0569390543, 0.0162014868, -0.015685821, 0.00718333898, -0.0142707396, 0.016081566, 0.00849648658, -0.00465897704, -0.0020506694, -0.0048028836, 0.0027687035, -0.0177125074, 0.0456423834, 0.000690302055, -0.0134312846, 0.0234567802, -0.00484485645, 0.00350472587, 0.00154249906, -0.0125438608, 0.0247039702, -0.0039694244, 0.0038105275, 0.0137430821, 0.0435077697, 0.00709939329, -0.00194873556, -0.00750712864, -0.0684036165, -0.00935393, -0.0173527393, 0.0207465384, 0.00213161693, -0.000595113845, 0.025807254, 0.0234567802, 0.0304362513, 0.0308679696, 0.0134192929, 0.00536352, 0.0147384368, -0.00675761513, 0.0167531297, -0.0162734408, 0.0203148182, -0.0106311021, -0.0250877216, 0.0330265686, 0.0168370754, 0.00475491444, 0.0217538849, -0.000199370639, 0.0188277829, -0.0186598916, 0.00987559184, 0.0166811757, -0.0355929062, 0.0305321887, 0.027414212, -0.0137550747, -0.00130040618, 0.032786727, 0.00431719888, -0.0310118776, 0.0195593089, -0.0060200938, -0.0409894027, -0.00989957619, 0.0220656823, -0.0569390543, 0.0335302427, -0.0020176908, 0.018276142, -0.0150622269, 0.0348973572, -0.0388787724, -0.0601529665, -0.0140668722, -0.0605367199, 0.0187798142, 0.0159256663, -0.0384470522, 0.0151461717, 0.0286853872, 0.0368400961, -0.00449408405, 0.00772298872, 0.00127792079, 0.00897617545, 0.0211542733, 0.00241493294, 0.0404377617, -0.00332184462, -0.0370319709, 0.0222215801, 0.022149628, 0.0271983519, 0.0181082506, -0.0330505557, 0.00991756469, 0.0208784528, -0.029860625, -0.00997153, -0.0391186178, -0.0101694018, 0.0200989582, -0.0129875727, -0.0128436657, -0.018971689, -0.0314196125, -0.0293809362, -0.0335542262, -0.0283496045, -0.0675401762, 0.00591816, 0.0465537906, 0.0147384368, 0.0478729382, 0.0128196813, -0.014330701, 0.0108589539, 0.0128916353, 0.0307480488, -0.0109908683, 0.016669184, -0.00207915087, -0.019631261, 0.028325621, 0.0139709348, 0.0322111, -0.0200509895, -0.000910659088, 0.0562195219, -0.00203118194, 0.00997153, -0.0167291444, -0.0240443982, 0.007705, -0.0147744128, -0.0061999769, -0.0514706038, -0.0222095884, -0.024236273, 0.0257353019, 0.0380633026, 0.03940643, 0.0200150125, -0.0271983519, 0.00224404386, -0.021202242, 0.00930596143, -0.0205186866, 0.010601121, 0.0131074945, -0.0350652486, -0.0481847338, 0.0115245217, 0.0169929732, -0.00409834087, -0.025255613, 0.0437716, 0.00261880062, -0.0340818837, -0.0279418696, -0.0326188356, -0.00415830174, 0.0165372696, -0.00124269363, -0.0440594107, -0.0371998623, 0.00315994956, -0.0444191769, -0.0318033621, -0.0265987404, -0.0400060415, -0.0173287559, 0.0218738075, -0.0115604987, 0.00422425894, 0.00967772, 0.0207345467, 0.00786689576, -0.00156348548, -6.92363246e-05, 0.0239844378, -0.0231929515, 0.0228331834, -0.0103552807, 0.0231929515, -0.014402654, 0.0211902503, 0.00340579, 0.0106910625, 0.0149423042, 0.000694049639, -0.00168940378, 0.0198351294, -0.0298366398, -0.0266227257, -0.0323070362, 0.0216219705, 0.010637098, 0.0112187201, 0.0239604525, 0.0193674322, -0.0224014651, -0.00519263046, -0.0292130448, -0.00213611382, -0.00142032839, -0.00319592631, 0.00503073586, 0.000907661044, 0.0192235261, 0.0363604054, 0.00688353367, 0.0289971847, -0.0125798369, -0.0400779955, -0.0112906741, 0.0014420643, 0.0582821816, 0.0410613567, 0.0132873785, 0.00646380568, 0.00287813251, -0.0350412615, 0.0107030552, 0.00989957619, -0.0150022656, 0.0350412615, 0.007705, 0.00810674, 0.0332184471, -0.0240803752, -0.00380153325, 0.00351671805, 0.00380153325, -0.0131074945, 0.00234297966, 0.012939604, 0.023396818, 0.00208064984, -0.00419128034, -0.0119802263, 0.018755829, -0.00679359166, -0.0433878452, -0.0169689897, -0.0263109282, -0.0341538377, -0.0206745844, 0.00922201574, 0.0247519389, -0.0123399924, 0.00709339743, 0.00231749634, -0.00977965444, 0.0325468816, 0.00781892613, -0.0115185259, 0.012939604, 0.00113626267, -0.0459781662, 0.0365043133, -0.0158417206, 0.00303852838, 0.00688353367, 0.011260693, 0.00213911198, 0.00949184131, -0.0301724225, -0.0378474407, -0.0138510121, 0.000245090952, 0.0255913939, -0.00654775137, -0.0103372922, -0.00625394192, 0.0154339848, 0.0208664611, -0.0185519625, -0.00793884881, 0.0299325772, 0.00165942323, 0.0254714731, 0.0224494338, -0.0231090058, 0.00264878129, 0.017544616, 0.00416729599, -0.0145585537, -0.0405816659, -0.0125798369, -0.0162614491, 0.00327387569, 0.0239724442, 0.0140428878, -0.0126637826, -0.00626593409, -0.00524059962, -0.00563334487, 0.0209743902, 0.00908410549, -0.00463799061, -0.0146544911, 0.0496477857, -0.0158896893, 0.0112546971, -0.00422425894, 0.00357667916, 0.0161415264, 0.0287333559, -0.00211662659, -0.00865838211, -0.00306101376, 0.0256393626, -0.00623595342, 0.0120461835, 0.0331464931, -0.0156138688, -0.00752511714, 0.0510388836, 0.000994604663, -0.022773223, -0.0102413548, 0.0213341564, -0.0354250148, -0.0242242813, -0.0152900787, -0.0231929515, 0.00625993824, 0.0172927789, -0.0106191095, -0.0377275199, 0.0174966473, 0.00340878824, -0.0191036034, -0.00643382547, -0.00873033516, 0.00801679771, -0.00719533116, 0.0211542733, -0.00320791849, 0.0052346033, -0.0231449809, 0.021310173, -0.00768101588, 0.0186359081, 0.0127237439, -0.0108409654, 0.0299325772, -0.00683556451, 0.022773223, 0.0103792651, 0.0131194871, 0.0113866115, -0.00740519492, 0.0121301292, 0.000496927532, 0.0174606703, -0.0110688182, -0.0163693782, 0.0323789902, 0.000338405429, -0.0241643209, -0.00661970442, 0.00359166949, -0.0178204365, -0.0101334248, 0.038638927, 0.0215620082, 0.0215740018, 0.0112307128, 0.0225333795, 0.0124958921, -0.00520162471, -0.0260710828, 0.0185039937, 0.0131914401, 0.00451207208, -0.00581622589, 0.012795697, 0.0204947013, 0.00889822654, -0.0217418931, 0.00601409748, -0.0136231603, -0.00478789303, 0.029644765, -0.00967772, -0.0195593089, -0.00572628435, 0.0224374402, 0.0255913939, 0.0287333559, -0.000447459664, -0.00898816809, -0.0152780861, -0.0113746189, -0.0136471447, -0.00936592277, 0.0274621807, -0.019667238, -0.00605007447, -0.00214960519, 0.035568919, 0.00550143048, -0.0256393626, 0.0135272229, -0.0104991877, -0.0360486098, 0.0141508179, 0.0130595258, 0.0254954565, -0.00245390763, -0.00814271625, 0.0185999312, -0.032570865, 0.0106071169, 0.0110688182, 0.0356648564, 0.0166212153, -0.00593315, 0.01513418, -0.031035861, -0.0154339848, -7.76215093e-05, -0.0184200481, -0.000153369227, -0.0225213859, 0.0100614717, 0.0143426936, -0.016921021, 0.000141189637, 0.0260231141, -0.00545346132, 0.0306281261, 0.0422605798, -0.00727927685, -0.00651177485, 0.000581622589, 0.011734386, -0.00670964643, 0.00422126101, -0.0261910055, 0.0240324065, -0.0106670782, -0.000476315938, -0.0440114439, 0.0111767473, -0.00949783716, 0.0278219469, -0.00412232522, 0.00303103332, -0.00161595142, 0.0119802263, 0.00781892613, 0.0125318682, -0.014330701, -0.0254714731, -0.0228931457, -0.0287813246, 0.0350652486, 0.0107210437, 0.000534403254, 0.0184440315, 0.0401979163, 0.016705161, -0.00584620656, 2.10332273e-05, -0.0178923905, -0.00178534153, -0.00015205759, 0.00854445528, -0.00918604, -0.0287573393, 0.0261430368, 0.0123639777, 0.00540849054, 0.00464098854, -0.0153020704, -0.00277619855, 0.0378954113, 0.00479388935, 0.0382072069, -0.00248838542, 0.0315635204, 0.00531555107, 0.0397661962, -0.00566032715, 0.0301484372, 0.0242482666, 0.00398441451, -0.0118003432, -0.0201469269, -0.0292849969, -0.018456025, 0.00655374723, -0.00450008, 0.0077529694, -0.00462000212, 0.025183659, -0.0152900787, 0.0170529354, 0.00689552585, -0.0186958686, 0.0052675819, 0.0338660255, -0.0129515957, -0.0123280007, 0.00340579, 0.0215380248, -0.00842453353, 0.0139949191, 0.0124838995, 0.0116084674, 0.0112007326, 0.0256153792, -0.0099475449, -0.0153020704, 0.0517104454, -0.00335782114, 0.03048422, -0.00840654504, -0.00837056898, -0.0127117513, 0.00735123, -0.0201709121, -0.0490002036, -0.0196432546, -0.00530355843, -0.0416609682, 0.00485684862, 0.0014967788, 0.00608904893, -0.0450427718, 0.0153980087, 0.0164893, 0.0286134332, -0.0199310668, 0.038710881, -0.0352571234, 0.0297167171, 0.0130235497, -0.00618198887, 0.00415830174, -0.00158297282, 0.00645781, -0.0196912233, -0.0107989926, 0.00206266157, -0.00865838211, 0.0126038212, 0.00395743223, -0.0212502107, -0.0375356451, 0.0232049432, -0.0199070834, -0.00493479799, -0.026574757, 0.0312996916, -0.0312996916, 0.00865838211, 0.00481487578, 0.0334103219, -0.03319446, -0.0202308726, -0.0522860736, 0.00110328407, -0.0172448102, -0.0354250148, 0.00515965186, 0.0059871152, 0.00627792627, -0.00145330699, -0.011698409, 0.00979764294, -0.029500857, -0.0236966237, 0.0205546618, -0.0202068891, -0.0132034328, 0.00248838542, -0.0151821487, -0.028949216, -0.00934793428, 0.0194393862, -0.0275341347, -0.00592715386, 0.00636786828, 0.0288292933, -0.0288532786, -0.00949184131, -0.00119322573, 0.0204947013, -0.022149628, -0.00445510913, 0.0234807637, -0.0211182963, -0.0013049033, -0.0476091094, 0.00529156625, -0.00548344199, 0.0226892773, 0.00919203553, 0.026430849, -0.00202368689, 0.00420327252, -0.0181562193, 0.0245600641, 0.0116804205, 0.000512292609, 0.0333143845, 0.0490721576, -0.0135871833, -0.0406056531, -0.00763904303, -0.0166451987, -0.0264068656, 0.0117463777, 0.00464098854, 0.0158776976, 0.0109488955, -0.0079748258, 0.0277739782, -0.0131554641, 0.0044671013, 0.0170769189, 0.0256873313, -0.0137550747, -0.0217658766, -0.00844252203, -0.0200270042, -0.031107815, -0.0262629595, -0.0144985924, 0.0134552689, 0.00910809, -0.0184680168, -0.00932994578, 0.0160575807, -0.0219337679, 0.0186718851, 0.00847849809, -0.00637386413, 0.00782492291, 0.00822666194, 0.0129276114, -0.00992955733, -0.00305801583, -0.00591816, 0.00614601187, 0.0329546183, -0.0180842653, 0.015098203, -0.0281337444, -0.00509069674, -0.000253523, 0.00398441451, -0.00229800888, -0.0110448329, -0.0445630848, -0.0263109282, 0.0183960628, -0.0444191769, -0.00346874911, 0.0375596285, -0.0165132843, 0.00944387168, -0.00347774336, -0.0458822288, -0.00170889113, -0.0362165, -0.0117104016, 0.0132394088, -0.0162494555, -0.0375116579, 0.0293809362, -0.00622995757, -0.00256483583, -0.00155898836, 0.0209743902, -0.00415530382, -0.0406536199, -0.011698409, -0.00807675906, -0.0038435061, 0.0192595031, -0.00751312496, -0.000571878918, 0.0189477056, 0.0204347409, 0.00387348654, -0.0118902847, 0.016669184, 0.0076690237, 0.0130595258, -0.0194513779, -0.000709039916, -0.0246080328, -0.00847849809, 0.0360486098, -0.00732124923, -0.00444311695, 0.00444611488, -0.00450008, -0.029644765, -0.0370559543, 0.0306760948, -0.00304152654, 0.0316594578, 0.0328826644, -0.0229051374, -0.0214900561, 0.0105651449, 0.0119922189, 0.0116204601, -0.00596013246, 0.00671564229, 0.0305561721, 0.0238405298, 0.0199910291, -0.00213761302, -0.0114465728, 0.0349453241, -0.0148703512, -0.0019847122, 0.00629591476, -0.0255194418, 0.00131689548, -0.0200389978, 0.0277020242, -0.038638927, -0.0378714278, -0.0193194635, 0.00285864505, 0.000895668811, -0.0408934653, 0.0115365144, 0.00846051052, -0.0265267882, -0.0281817131, 0.000380003417, -0.00553740701, 0.0448988676, 0.0210703276, 0.0212981794, -0.00160545821, 0.00703343609, -0.0379433781, 0.00071203796, -0.00292909937, -0.0110508297, -0.00330985221, -0.0323070362, 0.0318993032, 0.0126637826, -0.0151101956, -0.00386149436, 0.0312517211, -0.00461700419, -0.0129755801, -0.00187078607, 0.0155179305, -0.0422365926, -0.0103732692, -0.002576828, 0.00456903549, -0.00479988568, 0.00229351176, -0.00289162365, 0.0116324518, 0.0108109852, -0.0201589186, -8.84426117e-05, -0.00368161104, -0.0240324065, 0.0262149889, -0.0080887517, 0.0234687719, -0.0094019, -0.00628392259, 0.0178803988, 0.0151461717, -0.0391665846, 0.0160216037, -0.0141987866, -0.00568730943, 0.0149183199, 0.0219337679, 0.0185039937, -0.0331464931, 0.00633788761, -0.00479089143, 0.0370079875, -0.010966884, 0.00745916, -0.00559137203, 0.00169839791, 0.0117104016, 0.00644581765, 0.0372958, 0.00855045207, -0.00551941851, -0.0111947358, -0.023432795, -0.0385429896, -0.0121601094, -0.0235047489, -0.0158776976, 0.00412832107, -0.0104212379, -0.00497677084, -0.0147983981, 0.0101514133, -0.0270784292, -0.0212981794, 0.0102533465, -0.00370859355, -0.0028676393, -0.000807226228, 0.0209623985, 0.0190316513, -0.00795084052, 0.030412266, -0.0344656371, -0.00471893791, 0.0115485061, 0.0230130665, -0.00705142459, 0.0343697, 0.0117104016, 0.0128436657, 0.00645781, 0.0161055494, 0.00489282515, 0.0197152067, 0.00473692641, -0.0260231141, 0.000509294507, -0.0213221647, -0.00225453707, 0.00853246357, 0.00677560363, 0.0218858, -0.0170769189, 0.00977365766, 0.00709939329, -0.0271743666, -0.0121960863, 0.0140189035, -0.0158417206, 0.009833619, 0.00834658369, 0.00373257813, -0.00168040965, -0.00616999622, -0.0171488728, 0.0176405534, 0.00964174327, -0.0203627869, 0.0199310668, 0.00265028025, 0.0317074247, 0.00517464243, 0.00210463442, 0.00598411728, -0.00914406683, -0.00718333898, 0.00687753735, -0.0390946306, -0.0107270395, -0.0207585301, 0.0235287324, -0.0126397982, 0.00891021825, 0.00849648658, 0.00882027671, -0.00244191545, 0.0110088568, -0.00135062367, -0.0115485061, 0.0256393626, -0.00524359755, -0.000365950051, -0.0342977457, 0.0246080328, -0.00891621411, 0.00262779486, -0.0164173469, 0.015098203, 0.0277020242, -0.0317074247, -0.0157457832, -0.0035856734, 0.00654175505, -0.00363963842, 0.0211063046, -0.0178564135, 0.0189477056, 0.00801679771, 0.0147384368, -0.0300045311, -0.00497677084, 0.000219420122, 0.0103432881, -0.0241763126, 0.0148463668, 0.0377035365, 0.0104752025, 0.0276780408, -0.000391620881, 9.53287672e-05, 0.000816969899, -0.0209144298, 0.023432795, -0.00639784848, -0.036192514, 0.00262479694, 0.0170289502, 0.019775169, 0.00827463064, -0.0376076, 0.00672163861, -0.0123639777, -0.0152181257, -0.0175686, -0.00124644127, 0.00621796539, 0.0245600641, 0.0312996916, -0.0106670782, 0.0030760041, 0.00552541483, -0.0194393862, 0.00115649961, -0.0289012473, 0.0338900089, -0.0123160081, -0.0442752726, 0.0156498458, -0.00528856833, -0.018791806, 0.0202188808, 0.0309878923, -0.00655974355, -0.0247039702, 0.0208424758, -0.0052525918, -0.0077529694, 0.00849648658, 0.00933594257, 0.0098156305, -0.0383031443, 0.0393584631, -0.0280138217, -0.0124359308, 0.00636187196, 0.0203987639, 0.0301004685, -0.00864039361, -0.0225693546, -0.0247519389, -0.0257832706, -0.00590017159, -0.00435017748, -0.00494679, 0.0217059162, -0.00763304718, -0.00119472481, 0.0138749965, 0.00200719759, 0.00150277489, -0.00233998173, 0.00518363668, 0.0142467553, 0.00834658369, -0.0312757045, 0.0150022656, 0.0189357139, 0.0167651214, -0.00405636802, 0.00602309173, -0.024344204, -0.0190196577, 0.0059871152, -0.00359166949, 0.0180602819, -0.00813672, -0.00625993824, 0.0259271767, 0.0370319709, -0.00429021614, 0.00134162942, -0.0103672734, -0.0178084448, -0.0291410908, -0.00328886602, 0.0119322576, -0.0271263979, -0.0116564361, 0.00142107788, -0.00580723165, -0.0228331834, -0.000207802659, 0.0191635657, 0.0107690124, -0.0153980087, -0.0390946306, 0.0324749276, -0.00972568896, 0.00616400037, -0.0279178843, -0.0178564135, -0.0250157677, -0.000822966, 0.0147864055, 0.0154459774, 0.0132394088, 0.0135751916, 0.0116504403, 0.00345076085, -0.00331884646, 0.011842316, -0.00321091642, -0.0101933861, 0.0111347754, 0.00640984066, -0.00432319473, 0.00729126902, 0.0366961882, 0.00182131818, -0.00192625, 0.022113651, -0.025255613, 0.0469135605, 0.0317793787, -0.00548044406, 4.3214146e-05, -0.0096897129, -0.0257592853, -0.0262869429, 0.0133233545, -0.0205066931, -0.00995354168, 0.00901215244, 0.0103253005, 0.00985760335, -0.018791806, 0.00993555319, 0.00238195434, 0.00943787582, 0.00813672, -0.0120461835, 0.0291410908, 0.0236126781, 0.00612802384, -0.0135751916, 0.0099475449, -0.0132154245, 0.0367201716, -0.00943787582, -0.0180123132, -0.019115597, 0.00601409748, -0.0101034446, -0.0373677537, -0.0191755574, -0.00549243623, -0.0049318, 0.0183840711, 0.0270544458, -0.00363963842, -0.011806339, -0.0368400961, 0.00801080186, -0.00079973106, 0.0113386428, -0.026574757, -0.019631261, -0.00102683366, 0.00765703153, -0.0488563, -0.0141867949, -0.00787289161, -0.0195353236, -0.00746515626, -0.00823865458, 0.0171009041, -0.0101214321, 0.0141388252, 0.00210763235, 0.0167531297, -0.00433218898, 0.030340312, -0.00907211378, -0.00747115212, -0.0149063272, -0.00944986846, 0.00935393, 0.0137790591, -0.00880228821, 0.00305201951, 0.00931195728, 0.0150742186, 0.010307312, 0.0284215584, -0.011074814, 0.0177005138, 0.026430849, 0.00473392848, 0.0153260557, 0.00117598695, -0.0088862339, 0.0147024598, 0.00215859944, 0.00789088, 0.000521661481, 0.0221736114, 0.0169569962, 0.0140548805, 0.0135751916, -0.00580723165, 0.0130715184, -0.00254534837, -0.0156378523, 0.0127117513, 0.0276300721, 0.00839455333, -0.0186718851, 0.0117763588, -0.00992955733, 0.0261670202, 0.0102893235, 0.000674187555, 0.0297886711, 0.0192834865, -0.021274196, -0.00831660349, 0.00874232687, -0.00159496511, 0.0174127016, -0.0215979852, -0.0206386074, 0.0123759694, -0.00122845289, -0.0124479225, -0.0131314797, 0.0300525, 0.0163214095, 0.0209863819, -0.0060530724, 0.0480408259, -0.0162134804, -9.55629948e-05, 0.00235946896, -0.00339979399, -0.00347774336, -0.000436966453, 0.0426683128, -0.0141148409, 0.0145225767, 0.00732724555, 0.0146424985, 0.00786089897, -0.00633788761, -0.0286374185, 0.0021436091, -0.0206985697, 0.000846200914, -0.00177934545, -0.0275341347, -0.0277499929, 0.0180722736, -0.0155419149, 0.0351851694, 0.0247279555, -0.016741138, -0.0192595031, 0.00926398858, -0.0160216037, -0.0031089827, 0.00954580586, -0.0283496045, -0.0147864055, -0.000712412759, -0.00694949087, 0.0229650978, -0.00667966576, 0.0343697, 0.0359526724, 0.00961176306, -0.00921602, 0.00169090286, -0.00390946306, 0.00504572596, 0.00959377456, -0.0368400961, -0.00798082165, 0.0119322576, 0.0216219705, 0.00934193842, -0.00133338477, -0.0109249111, -0.000526158605, 0.0174846537, 0.00461100787, -0.00440714043, -0.000818468921, -0.00227402453, 0.0275581181, 0.0273662433, -0.00388547871, -0.00279868394, -0.0224614255, 0.0157098062, -0.00170889113, 0.0030100469, -0.0104752025, 0.00652376702, 0.00175835902, 0.0132993702, 0.00842453353, 0.0180362966, -0.019115597, 0.0122560477, -0.0225693546, -0.0164173469, 0.0166931674, 0.0053665177, 0.0060530724, 0.0223295111, 0.0160335954, 0.00405936595, -0.000141939148, 0.00253635412, -0.00938990712, 0.00270124734, -0.00362165, 0.00171188917, -0.0136231603, 0.0190556347, 0.00157098065, -0.00242242822, 0.0422845632, 0.00703343609, 0.0187798142, -0.0294528883, 5.47144955e-05, -0.0048028836, 0.0136831217, -0.00303403125, 0.0293329675, 0.0149782812, 0.00120671699, 0.0135751916, 0.00286614033, 0.00531255268, 0.00927598123, 0.0101753976, 0.015901681, -0.0371279083, 0.0247519389, 0.0159616433, 0.0178564135, -0.0133953085, -0.000215859938, -0.00837656483, 0.00622396125, -0.00425423961, -0.0147504285, 0.0401739329, 0.0187198538, 0.0129276114, 0.00386449252, 0.00633788761, -0.00880228821, -0.00515065808, 0.00996553339, 0.0159496516, -0.0271263979, 0.0161415264, 0.00392145524, -0.0242122896, -0.000427597552, 0.00691951, 0.0014420643, -0.0155179305, 0.0110628214, 0.00532154692, -0.00907211378, 0.00187228515, 0.0303882826, -0.00153050688, 0.0122080781, -0.0266467091, 0.00802879, 0.015098203, -0.00296807406, -0.0219577514, -0.00166841736, -0.0257592853, -0.00944986846, -0.000259519118, 0.00597212464, -0.00875431951, -0.00927598123, -0.0394544, -0.0134792533, 0.015206133, -0.00648779, -0.012831674, 0.00785490312, -0.019775169, -6.60508931e-06, -0.0127717126, 0.00229051383, -0.0210583359, 0.0195353236, 0.0268146, 0.0183840711, 0.00280468, 0.00691951, 0.0151221873, 0.0167291444, 0.00323190284, -0.0167651214, -0.00910209399, 0.0154339848, 0.0157337915, -0.00299205864, 0.0174846537, 0.0149782812, 0.0246560015, -0.0122620435, 0.0090181483, 0.0224374402, 0.0114705572, 0.00974367745, 0.00281067612, 0.00721931551, 0.0167531297, 0.0101214321, 0.00861640926, 0.0164533239, 0.024236273, 0.0161775034, -0.0195832923, -0.00565732922, 0.0108709466, -0.00609804317, 0.00296207797, 0.0016174505, -0.0299805459, -0.00194273936, -0.0390946306, -0.00127642171, 0.000370259746, -0.0104752025, -0.0177964531, -0.0216339622, 0.00511767948, 0.00657173572, 0.0104452223, -0.00709339743, 0.00783691462, 0.0237565842, -0.0253515504, 0.0100135021, 0.0371039249, -0.00450008, 0.00705142459, -0.00679359166, -0.0183600858, 0.0153740244, -0.0108889341, -0.0124719068, -0.00291261, 0.0349932946, 0.0102953194, -0.0110088568, -0.0051866346, 0.0321151614, -0.00651177485, 0.00995953754, -0.0307960175, -0.0126757752, 0.0163214095, -0.026574757, -0.0195353236, 0.00381952152, -0.00408934662, -0.00682357233, -0.00236396608, -0.0166811757, 0.00171188917, 0.0100554749, -0.0126038212, -0.0276060868, 0.00625394192, 0.0321151614, 0.00908410549, 0.00419427827, 0.013563199, -0.0235407259, -0.0103312964, 2.78725383e-05, -0.0143906623, -0.00357967732, 0.00850847922, -0.00862240512, 0.00232798932, -0.01151253, -5.8555753e-07, -0.0192834865, -0.00148478651, 0.00745316362, -0.0229770914, 0.0214061104, 0.0294289049, -0.00858642813, 0.0279418696, -0.00463499269, 0.00736921839, 0.000480438262, 0.00843652617, -0.00210913154, 0.00424224744, -0.0306281261, -0.00735123, -0.0167531297, -0.00424524536, 0.00107630156, -0.0109728798, 0.00149752828, 0.0514226332, 0.00358267524, -0.00761505868, 0.00838855654, 0.0106071169, 0.00228751567, -0.00642183283, 0.00140234, -0.0209504049, 0.0109429, 0.01535004, -0.0178084448, -0.00369360321, -0.00876031537, 0.0040173931, 0.00048680912, -0.0140668722, -0.0106430938, -0.00580723165, -0.00561835431, 0.00778894592, -0.00304902159, -0.0228571687, -0.0087843, 0.00679359166, 1.54470072e-05, -0.00947984867, 0.00179433567, 0.0266227257, -0.0180602819, 0.0186359081, -0.0139109734, -0.0102773309, 0.00910209399, 0.010745028, 0.0196912233, -0.0120821605, -0.00693749823, -0.0181921963, -0.0104512181, 0.00732124923, 0.0161415264, -0.00130790134, -0.0128916353, 0.00431719888, 0.0124359308, 0.0129635883, -0.00335482322, -0.00405636802, -0.00967772, -0.004386154, -0.0283496045, -0.0302443746, 0.00562734855, 0.00467396714, -0.00763904303, 0.0163334012, -0.0330265686, -1.25426423e-05, 0.0170649271, -0.0215979852, 0.0135272229, -0.00367861311, 0.000579374086, -0.0179523509, -0.0124239381, 0.00422725687, 0.0101574091, -0.0140548805, -0.0204587243, 0.0126517909, -0.0219817366, 0.00475191651, 0.0133113628, 0.00349573162, -0.0013213926, 0.00721331965, -0.00662570074, 0.0169330128, 0.00450907415, -0.0117823547, -0.0107690124, 0.00798681751, -0.00789088, -0.0212142337, -0.0186598916, 0.0082326578, -0.029860625, 0.0180243049, -0.018276142, 0.0137550747, 0.0145465611, -0.0144506237, -0.0128796427, 0.00318693207, -0.00345076085, 0.0225213859, 0.0121421209, -0.0125798369, 0.0150742186, -0.00345375901, 0.000723655452, 0.000101278034, -0.0072852727, -0.0102833277, 0.00366961886, 0.0176165681, -0.000502548937, -0.0308679696, -0.0245120954, 0.0183600858, 0.00281367428, 0.00454205275, 0.00947385281, -0.0115964757, -0.010235359, 0.0293329675, -0.0138749965, 0.041924797, -0.0127117513, 0.00130190526, -0.00106580846, -0.0018797802, -0.0334343053, 0.00741119124, 0.00783091877, -2.85986298e-05, -0.00928797293, 0.00438315608, 0.0126038212, 0.0165372696, -0.00162644463, -0.014402654, -0.0234088097, -0.00900016, 0.00477290293, -0.0102893235, -0.0139949191, 0.021166265, 0.0121601094, -0.0163573865, -0.0139829265, 0.0107390312, 0.0109728798, 0.00932395, 0.000992356101, -0.00407735445, 0.0259991307, -0.0241883043, -0.0200030208, -0.0104152421, -0.0128436657, -0.0118722962, -0.00196372578, -0.000720657408, -0.00984561164, 0.0158896893, 0.00186778803, -0.00224854099, 0.00429921038, -0.0107929967, -0.0192714948, 0.0113326469, -0.0121541135, -0.0153020704, 0.0252795964, 0.014402654, -0.0180722736, 0.0158417206, 0.00469795149, -0.00372658181, -0.0116564361, -0.00279868394, 0.00176135707, -0.0260710828, -0.0030760041, 0.00279718498, 0.0197991524, 0.00583121646, 0.013671129, 0.000195435685, -0.0215500165, -0.00347774336, -0.0112007326, -0.00360066351, 0.000198058988, 0.0122020822, -0.0228571687, 0.0165492613, -0.0131194871, -0.0351372, -0.00630191062, -0.00778894592, -0.00408035237, 0.00101034436, 0.0226173233, -0.00710538961, -0.0132154245, 0.00446410337, 0.00732724555, -0.00473392848, 0.00664368924, -0.0181082506, 0.0221016593, 0.00667966576, -4.48537066e-05, -0.00497677084, -0.00959377456, 0.0195233319, -0.0181202423, -0.00924000423, 0.0208184905, 0.017544616, -0.00889822654, 0.00808275491, 0.0153260557, 0.000883676577, 0.000691426336, -0.000231974482, 0.0135272229, 0.0138510121, 0.000532529433, -0.00364263635, -0.00979764294, 0.00509069674, 0.0254235025, 0.0363124385, -0.0111467671, 0.0158297289, 0.0278699156, -0.0108289737, -0.0113326469, 0.000895668811, 0.0173407476, -0.0459062122, 0.0125318682, 0.0105891293, 0.00621196907, 0.00422725687, 0.0103492849, -0.015937658, -0.00309699052, 0.00602309173, -0.00522560906, 0.00028706374, -0.000831960177, 0.0102593433, -0.00615800405, 0.000735272886, -0.00305052055, -0.00413131947, -0.0239844378, 0.0154939461, -0.0121541135, 0.0105711408, 0.00289911893, -0.0248718616, 0.00997752603, -0.00115649961, -0.0106910625, 0.00928797293, -0.029860625, 0.0105651449, -0.0164773092, -0.0108769424, -0.0122080781, 0.00841853768, -0.0252316277, -0.00226353132, -0.0133593315, -0.000990107539, -0.0254714731, -0.00254834653, -0.0069674789, -0.0186239146, -0.0162494555, 0.00139934197, -0.0256633479, -0.00392445363, 0.00776496157, -0.00128391688, 0.00721331965, 0.00147429341, 0.00183181139, 0.00865838211, -0.0112726856, 0.0106670782, 0.000704917591, 0.0125198765, -0.0162254721, -0.0113026658, -0.0185399707, -0.006853553, 0.00102383562, -0.012280032, 0.00359166949, -0.0116924131, -0.00125093828, 0.0152541017, 0.00679958798, -0.00902414415, 0.0192714948, 0.0187318455, 0.0171248876, -0.0188637599, -0.0162734408, 0.00285714609, -0.0247039702, -0.00831060763, -0.00043509269, 0.0143426936, -0.0143426936, 0.00324689317, -0.00907811, 0.00464998279, 0.0126757752, 0.0317793787, 0.000937641598, -0.0280617923, -0.0326668024, 0.00666767359, -0.0212622043, 0.00873033516, 0.00690751802, -0.0131434714, 0.0110268453, 0.00862240512, -0.006853553, 0.00422725687, 0.0147504285, -0.0110808099, 0.00402638735, 0.00307900202, -0.00532754324, -0.00272822962, -0.0100914519, -0.000159271658, -0.00208964408, 0.00547444774, -0.0380393155, -0.000103058126, -0.012939604, -0.0079748258, 0.0104092453, -0.0238405298, -0.00560636213, 0.0189237203, 0.00153950101, -0.0104092453, -0.00122695381, 0.00311797671, -0.00156348548, -0.00633788761, -0.022845177, -0.0161055494, 0.00822066609, 0.0101873893, -0.00440414203, -0.0206625927, 0.000933144533, 0.00132888777, 0.0331464931, -0.0183241107, 0.019043643, -0.0341058709, -0.000231974482, 0.0255674105, 0.0118363202, -0.010966884, 0.00476091076, 0.00102983182, -0.00204917043, 0.0154339848, -0.00943188, -0.000868686358, 0.00106880651, -0.00108079868, 0.0170529354, -0.00213161693, 0.0168370754, 0.0064038448, -0.00732124923, 0.0153140631, -0.00100359879, -0.0315635204, 0.00101858901, 0.0187678225, 0.0117823547, 0.0032678796, -0.0113446387, -0.00702144392, -0.00711138546, 0.00411932729, 0.0183840711, 0.0168850441, -0.00196072762, -0.00786089897, 0.0102053778, 0.0105591482, -0.00604407815, 0.00921602, 0.004002403, -0.0109069226, 0.0260231141, 0.0169330128, 0.013047534, 0.0153620318, -0.000420477154, -0.00960576721, 0.00333683472, -0.00516564818, -0.0115784872, -0.0106071169, -0.00367861311, -0.011734386, -0.00187078607, 0.000264203554, -0.000481187773, -0.0158896893, 0.0251596738, -0.00374157215, -0.0019682229, 0.0186958686, 0.0138989817, 0.000248276396, 0.00794484466, -0.0176165681, -0.0174246933, -0.0269345231, -0.0116144633, -0.0124239381, 0.0126517909, -0.0223774798, 0.00846650638, 0.00731525337, 0.0361205637, 0.0324269608, -0.00414630957, 0.00423625112, -0.000418228621, -0.0052855704, 0.00593914604, -0.0289252307, 0.00814271625, -0.0128076896, -0.00961775891, -0.00465298072, -0.0137310904, -0.00459302, -0.014474608, -0.035161186, 0.00990557298, 0.00502773747, -0.0142947249, 0.0141508179, 0.000972119218, 0.0156258605, -0.00699146325, 0.00413131947, -0.0121541135, -0.00697347522, 0.00828662328, 0.0108649498, 0.0138270278, 0.00507270824, 0.0193914175, 0.000459451869, 0.00787888747, 0.00445510913, -0.0249917842, -0.0226413086, -0.00412832107, -0.0147624211, -0.00537551194, -0.0144985924, -0.0157937519, -0.0215740018, 0.00580123579, -0.0224494338, -0.0110808099, -0.0172448102, -0.02054267, 0.00753710931, 0.00925799273, 0.0176285617, -0.00395743223, 0.0179403592, 0.0105051836, -0.0419008099, 0.00697347522, -0.0237685777, -0.0239364691, 0.0188397747, -1.8351373e-05, 0.00524359755, 0.00257832697, 0.00947385281, -0.00778295, -0.0185039937, -0.00247189612, -0.00102608418, -0.0105171753, -0.00765103521, 0.0133353472, 0.00511168316, 0.0122020822, -0.0202068891, -0.00705742044, 0.02032681, 0.00400839886, -0.00407435605, 0.000447459664, 0.00626593409, 0.00712337764, 0.0117163975, -0.0183121171, 0.00953381415, 0.00591516169, 0.000637086632, -0.0281817131, 0.0278459322, 0.00796882901, -0.00948584452, -0.00358267524, -0.0571789, -0.0148103898, 0.0175326243, 0.00258132513, -0.0168250818, 0.0179163739, -0.01524211, 0.0180362966, 0.00232199323, -0.0174966473, -0.0267186631, 0.00555539504, -0.0272463206, 0.0160575807, -0.00413731532, -0.00853246357, 0.00193674327, 0.00606506458, -0.00675161881, 0.0155419149, -0.0123160081, 0.0132873785, 0.0268865544, -0.00046919554, 0.0040173931, -0.014438631, -0.0020176908, 5.07795521e-05, 0.00593914604, -0.0144866, -0.0180362966, 0.00278819073, -0.0187198538, 0.0224254485, -0.00452706264, 0.0176045764, 0.0150622269, 0.0103492849, 0.0239604525, 0.000552766316, 0.00477590086, -0.00455704285, 0.00354969664, 0.0129515957, 0.00640984066, -0.0243322123, -0.00699146325, -0.00301454403, -0.00218408275, -0.0271503832, 0.011842316, -0.00240294077, -0.0304362513, 0.00379853533, 0.010235359, -0.00834058784, 0.00473093, 0.00265777553, 0.0102533465, -0.00897018, -0.0145465611, -0.0253755338, -0.00652376702, 0.00233698357, 0.0118663, 0.00691951, 0.0103193037, 0.0114405761, 0.0177125074, -0.00176135707, -0.00788488332, 0.00849049073, 0.00915605854, -0.00615200819, -0.0111227827, 0.00986959599, -0.0130595258, -0.0170409419, 0.00725529203, 0.0130835101, -0.0161894951, 0.016705161, 0.0013543712, -0.00706941262, -0.00076412916, 0.0213461481, -0.0077349809, -0.0170649271, -0.0159496516, -0.0191395804, 0.00855045207, 0.0212262273, 0.0118363202, -0.00898816809, 0.0048838309, -0.0193314571, 0.0287333559, 0.00420327252, 0.00198621117, -0.00554340286, -0.00754310563, -0.0126877669, -0.0097077, 0.00299505657, 0.00985760335, -0.0333143845, 0.00771099655, 0.0171248876, -0.00155748939, 0.00886225, 0.00457503134, 0.000388997578, 0.0104392264, 0.00731525337, -0.0321391448, 0.0122920237, 0.00501274737, 0.00497677084, -0.0109488955, -0.0132394088, -0.00318093598, -0.00110028603, -0.00291560823, -0.00250187656, -0.0174246933, 0.0124838995, 8.31491707e-05, 0.0185039937, -0.0151581643, 0.00535752345, 0.0105351638, 0.00988758449, 0.0293809362, 0.00232798932, -0.0113026658, 0.0507031, -0.00244941073, -0.000860441709, 0.00733324187, -0.0328826644, 0.0338900089, 8.42265945e-05, 0.018276142, -0.0230490435, -0.0205546618, 0.0104632108, -0.015170156, 0.0350652486, -0.0088562537, 0.0104512181, -0.00284815184, -0.0067875958, -0.0170409419, 0.0140308961, -0.00259031914, -0.0208304841, -0.0213461481, -0.0188038, 0.0454265252, -0.0110808099, 0.000798981579, 0.000783241761, 0.00356468698, 0.00704542827, 0.00600510323, 0.00369360321, -0.0145465611, -0.0204347409, -0.00100135023, 0.0428122208, 0.00387048861, 0.00566632347, 0.0112427045, 0.0127117513, 0.0106191095, -0.000411857764, -0.0161894951, -0.0172568019, -0.0206625927, 0.00569630368, -0.0159976203, 0.0166092236, -0.0106490897, 0.0185519625, -0.0126397982, 0.000875431928, -0.0171848498, 0.0100194989, -0.0297167171, -0.0208304841, 0.0067875958, -0.0135751916, -0.00505472, 0.00576525927, 0.0278939, 0.00259631523, -0.00324989134, 0.00584320864, -0.0213941187, 0.00393944373, 0.0259511601, 0.0124719068, -0.00489282515, -0.0160575807, 0.0293329675, -0.0161295347, -0.00706341676, -0.0111947358, -0.000397991767, 0.0081667006, -0.0159616433, -0.00900615659, -0.000882177555, 0.0304362513, 0.012064172, -0.00739320274, 0.016561253, 0.0174007099, -0.0256393626, -0.00679958798, 0.0224734172, 0.00152675936, 0.0120821605, -0.0119502461, -0.0186239146, -0.0175925847, 0.00825064629, 0.0217658766, -0.00510868523, -0.00273422594, 0.00847250223, 0.00690751802, 0.0171488728, -0.0210583359, -0.0126757752, -0.00565433083, 0.00810674, -0.00328287, 0.00199970254, -0.00450907415, 0.0188997369, -0.00481787371, 0.0121661061, 0.00322590675, 0.00228002062, -0.0206266157, -0.0132993702, 0.00472193584, 0.00389747112, -0.00283016358, 0.0216939226, -0.0112487013, -0.0212861877, -0.00867637, -0.00654175505, 0.00155449135, -0.0101154363, 0.000316856895, 0.00943188, -0.00267276564, 0.013815036, -0.025879208, -0.00726128835, 0.00417928817, 0.0148703512, 0.00407735445, 0.00518963253, -0.00964774, 0.00951582566, -0.0216699392, -0.00221256423, 0.0141628105, -0.00294259074, -0.00396043, -0.00347174727, 0.00853246357, 0.00661970442, 0.0201709121, -0.0287093706, -0.0107750082, 0.00364863244, 0.00239244755, -0.00315994956, -0.0152541017, -0.00744117144, -0.00403837953, 0.00586419506, 0.00425124168, -0.0113806156, 0.00388547871, 0.0102053778, 0.000517539156, -0.007621055, 0.0217658766, -0.00983961578, -0.00199220725, 0.0164773092, 0.0113746189, 0.00204017619, -0.00268475781, 0.000925649365, 0.00246440084, -0.00254085124, 0.00302054, 0.0247759242, -0.00529756257, -0.0141268335, -0.00155299227, 0.0188397747, 0.00199220725, 0.000418228621, -0.00415830174, -0.00321091642, -0.0149063272, -0.00132064312, 0.00402638735, 0.00208964408, -0.0260231141, -0.00231299922, -0.00897617545, 0.00537851, 0.00122245681, 0.008040783, 0.00715335831, -0.00278969, -0.00130940031, -0.00907211378, 0.000683556485, -0.000472193613, -0.0034267765, 0.00656574, 0.00354370056, -0.021274196, 0.000731525302, 0.00758507801, -0.00591816, -0.00834058784, 0.00979164615, -0.00909609813, 0.00661970442, -0.00118273252, -0.0330505557, 0.00536352, 8.46482e-05, -0.00909010135, -0.0154699618, 0.00457203342, -0.00563334487, -0.00576226087, 0.000732274842, 0.00063184, 0.000568131334, 0.00361565384, -0.0117763588, 0.0198591147, 0.0206865761, 0.00338180573, -0.00323190284, -0.00118573057, -0.00965373591, -0.00415830174, 0.0030430255, 0.0154939461, 0.00213011773, 0.0245600641, -0.000992356101, -0.0144985924, 0.0104452223, -0.00174486777, 0.0192954801, 0.00619398104, -0.0079748258, -0.0200389978, -0.0245240871, -0.020650601, 0.00317793782, -0.010163405, 0.00545645924, 0.000158709518, 0.0124239381, -0.0334103219, -0.000603733235, 0.0104512181, -0.000514541112, 0.0118123349, 0.00506671239, -0.0231809579, 0.00148703507, 0.00504272804, -0.00205516652, -0.0183720794, 0.0171488728, 0.0147024598, 0.00419427827, -0.0127237439, -0.00871234667, 0.0202308726, 0.0123399924, 0.0231929515, -0.00654175505, -0.0037775489, -0.0152780861, 0.00119322573, 0.0195473153, -0.0167531297, 0.0153740244, 0.00963574741, -0.0207825154, 0.0276060868, 0.00819068495, 0.0124359308, 0.0125198765, 0.00709339743, 0.0111287786, 0.00737521425, 0.0148463668, -0.0128676509, -0.0114165917, -0.0137670673, 0.014402654, -0.00447309762, 0.00657173572, 0.0231809579, 0.00689552585, -0.0229291227, -0.0112906741, -0.00589417526, -0.00827463064, 0.00486584287, 0.0186838768, -0.0165252779, -0.016921021, -0.000734148605, 0.0206985697, 0.00980363879, 0.0135871833, -0.00246290187, 0.0101334248, 0.0152181257, 0.0162494555, -0.0139829265, 0.00394544, 0.0148343742, 0.00961775891, -0.00727328053, -0.00348373945, -0.00458402559, -0.00292760041, -0.0125918295, 0.00916805118, 0.0122680394, 0.011770363, -0.0114585645, 0.0195233319, 0.00997153, -0.00928797293, 0.0120102065, 0.00830461178, 0.0171728563, 0.00959977135, -0.00489582308, -0.00123070145, -0.00428122189, -0.021825837, -0.0194154, 0.00399041083, 0.0153140631, -0.000879179512, -0.00470095, 0.00615800405, 0.0108349696, -0.0177604761, 0.00468296139, 0.00662570074, 0.0188757516, 0.0391426, -7.25154459e-05, -0.0116804205, -0.0124958921, -0.02032681, 0.0182161797, 0.00799881, -0.0194034092, 0.00486584287, -0.00557338353, -0.0355449356, 0.00223504985, -0.00540249469, 0.00316294772, -0.019667238, -0.00478489511, 0.0174246933, 0.021825837, 0.00285864505, 0.00203567906, -0.0162374638, -0.0102593433, -0.00625394192, -0.0236366633, -0.00237146113, -0.0185639542, -0.0370559543, 0.013047534, -0.00182881334, 0.0100314906, 0.0107210437, -0.0158776976, -0.00689552585, 0.0140428878, 0.00361265591, 0.00923400838, 0.0115185259, 0.0146424985, 0.0322111, 0.0133593315, -0.0275581181, -0.00469195563, 0.031467583, -0.0072852727, 0.0128556583, 0.0167651214, -0.0210463442, 0.0128916353, 0.0162254721, -0.00110553263, 0.00584620656, 0.00548943784, 0.0114465728, -0.0133113628, -0.00113776175, 0.00660771225, 0.0116744246, 0.00214810623, -0.00282566645, -0.00519562885, 0.0192954801, -0.000257270556, 0.00751912082, -0.0156978145, 0.0126397982, 0.0141748022, -0.00880228821, 0.0178564135, -0.0209863819, 0.0115604987, -0.0218018536, -0.000332409312, 0.00503673172, 0.0256153792, 0.0223295111, -0.000344776287, -0.0124599151, -0.00964174327, 0.0089521911, -0.00900016, -0.0169450045, -0.00935992692, 0.0236246698, -0.0109189153, 0.00428122189, 0.0095577985, 0.00049430423, -0.00772298872, -0.00611603167, 0.00512667326, 0.003618652, -0.00201169471, 0.00644581765, -0.0164053552, -0.0215740018, 0.00209564017, 0.028037807, -0.0102053778, -0.00656574, -0.013563199, -0.0242242813, -0.00435017748, -0.00879629236, -0.00798681751, -0.0285894498, -0.0114825489, -0.00286913826, 0.00128016935, 0.0152181257, -0.0211422816, 0.00810074341, -0.00721931551, -0.00795084052, 0.0273182746, -0.0134073, -0.0290451534, -0.0330265686, 0.0203867722, 0.0283975732, -0.00937791448, -0.00396342808, -0.000710164197, -0.00871834252, -0.00912607834, -0.0148223825, 0.0230010748, 0.00144056522, 0.00119772286, -0.0151581643, -0.00941988733, 0.00582522, -0.023360841, 0.00377155282, 0.0073032612, -0.0119622378, -0.0146424985, 0.0132274171, -0.00552541483, -0.0151821487, 0.00156198652, 0.00150127581, -0.00425423961, 0.00964774, 0.00681158, 0.00328586786, 0.0142587479, -0.0112546971, -0.00305651664, 0.000953381357, 0.0165732466, 0.0106610823, 0.00626593409, -0.0189956743, 0.0150502343, 0.0019292481, 0.0183480941, 0.020614624, 0.00127342367, -0.0125318682, -0.00202668505, -0.00361565384, -0.00381652359, -0.0122320633, 0.0163453948, 0.00620597322, -0.013599176, 0.0545885786, -0.00715335831, -0.0102173705, -0.0160695724, -0.00617599254, 0.00180183083, -0.000141751778, 0.00472493423, 0.0077349809, -0.00469195563, -0.00750113279, 0.00952781737, 0.0256633479, 0.00305052055, 0.00173287559, 0.0131794484, -0.00792086, -0.0100374874, 0.00649378635, 0.0136471447, -0.0259511601, 0.0342257917, -0.0101813935, 0.0103193037, -0.0181921963, -0.0126997596, 0.00127642171, 0.00252436195, -0.00374157215, -0.0102653392, -0.0124599151, -0.0184680168, 0.00875431951, 0.00172088342, 0.00636187196, -0.00856244378, -0.0152900787, 0.0211182963, -0.00621796539, 0.00215410232, -0.000222792936, -0.00601109955, 0.0145465611, -0.0107929967, -0.00505172228, -0.00186628907, 0.0081187319, 0.00799881, 0.0119742304, -0.0113266502, 0.0114046, 0.00519862678, 0.0198830981, -0.00807675906, -0.0153380474, -0.0134312846, -0.0176645387, 0.0178324282, -0.000621346815, -0.00625394192, -0.0116684288, -0.0038525, -0.0108049894, -0.00613701763, 0.0150382416, 0.0340579, -0.00379253901, -0.0269105379, -0.0263349116, 0.00931795407, -0.00150052633, 0.0453545712, 0.0218138453, -0.00709939329, -0.0103552807, -0.0016009612, 0.00670964643, 0.0277739782, -0.0128196813, -0.00941389147, -0.00380752934, -0.0238045547, -0.00471893791, 0.00615200819, -0.00315395347, -0.015901681, 0.0166811757, 0.00609504525, -0.0326907896, 0.0185279772, -0.0178084448, 0.0172328185, 0.0108349696, 0.0185519625, 0.00858043227, 0.0064518135, -0.00735123, 0.0125198765, -0.00506971031, -0.0185279772, 0.0114825489, -0.0116264559, -0.0183480941, 7.07353538e-05, 0.00722531183, -0.0185159855, -0.00177784637, -0.00547744567, 0.0211902503, -0.00541148847, 0.0174127016, -0.00492880167, -0.00625993824, 0.00189327146, -0.0118543077, -0.0289732, 0.00449408405, 0.00867037382, -0.0113506345, 0.0027087424, -0.00949783716, -0.0219097827, -0.00517764036, 0.00473992433, -0.00240593893, 0.0183960628, 0.0199670438, -0.00112801802, 0.00629591476, -0.00827463064, 0.0191395804, 0.00184979977, 0.0116684288, 0.0048688408]
26 Nov, 2018
Duration ofNanos(long) method in Java with Examples 26 Nov, 2018 The ofNanos(long) method of Duration Class in java.time package is used to get a duration in a 1 nanoSecond format. Syntax: public static Duration ofNanos(long nanoSeconds) Parameters: This method accepts a parameter nanoSeconds which is the number of nanoSeconds. It can be positive or negative. Return Value: This method returns a Duration representing the time in 1 nanoSecond format. Exception: This method throws ArithmeticException if the input nanoSeconds exceeds the capacity of Duration. Below examples illustrate the Duration.ofNanos() method: Example 1: // Java code to illustrate ofNanos() method import java.time.Duration; public class GFG { public static void main(String[] args) { // input number of Nanos long noOfNanos = 1000000; // Duration using ofNanos() method Duration duration = Duration.ofNanos(noOfNanos); System.out.println(duration.getSeconds()); } } Output: 0 Example 2: // Java code to illustrate ofNanos() method import java.time.Duration; public class GFG { public static void main(String[] args) { // input number of Nanos long noOfNanos = -1000000; // Duration using ofNanos() method Duration duration = Duration.ofNanos(noOfNanos); System.out.println(duration.getSeconds()); } } Output: -1 Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#ofNanos-long-
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples
https://www.geeksforgeeks.org/duration-ofnanoslong-method-in-java-with-examples/?ref=ml_lbp
Pandas
Duration ofNanos(long) 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++, Duration toDays() method in Java with Examples, 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, Duration toNanosPart() method in Java with Examples, 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, Duration ofNanos(long) method in Java with Examples, Sort given Array based on the fractional values, Duration parse(CharSequence) method in Java with Examples, 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.0169852767, 0.00312135066, -0.0148519175, 0.0112263709, 0.0320120603, -0.00677312724, -0.0204709321, 0.0148635749, -0.00884819869, -0.0129633686, 0.0292375255, 0.00391407451, 0.0125903217, -0.0213336013, 0.0253438521, 0.0328980461, -0.0222545601, 0.00855092704, 0.0650033653, 0.0456982069, -0.00884237, 0.0254837442, 0.0154581182, 0.00821285322, 0.0287945326, 0.0524596758, -0.0136628309, 0.0171601437, -0.0474934913, -0.0219747759, 0.00276287622, 0.0124737453, -0.0125436913, 0.0304266121, -0.020739058, -0.00766494172, 0.06173921, -0.0324317366, 0.00721611967, -0.0223827958, -0.00467474, 0.0320120603, -0.0188271943, 0.0081137633, -0.00639425172, -0.0231522042, -0.0399859324, 0.027092509, -0.00762996823, -0.0495219342, 0.0411283858, 0.0173233505, -0.0507809669, 0.011570273, 0.0229190495, 0.0127068991, 0.0420376882, 0.015761219, 0.0190836638, -0.0593144074, 0.0420843177, 0.0436930805, -0.0123105375, 0.00589005603, 0.01641405, 0.0314524919, -0.00807879, 0.0214501787, 0.00571810454, 0.00336324819, -0.026299784, 0.0204592738, 0.0182792824, -0.00695382152, 0.0275821313, -0.00778151862, 0.0185240936, 0.0155863529, -0.00647002645, -0.00220330642, -0.030006934, 0.0037479524, -0.0696664527, 0.0104161603, -0.0066915229, -0.0400791913, -0.0115294708, -0.0246910211, -0.0239216127, 0.0110631632, -0.017509874, 0.0251106974, 0.0191769265, -0.0156679563, -0.0132314963, 0.0273956079, 0.0198414158, 0.0111389374, 0.0010120346, -0.0102121504, 0.0266495161, 0.013184865, 0.0417112708, -0.0207740311, 0.00845183618, 0.0180344712, 0.0226159487, -0.0153298834, -0.0137560926, 0.00888900086, 0.00301060244, -0.0129750269, -0.0231871773, -0.00510316063, -0.0073268679, 0.0360456258, -0.0101130595, -0.026882669, -0.0213102866, 0.0264863074, 0.0100722574, 0.0532057695, 0.0387735292, 0.0586149432, 0.00164082204, 0.00121895887, -0.00877242349, -0.0135695692, -0.00620189961, -0.0388201587, 0.0330379382, -0.0267660916, 0.00924456, -0.0445790663, 0.0175565053, -0.00804964546, -0.0213918891, -0.0341570787, 0.00214356068, 0.0430635661, -0.005665645, 0.00210567308, -0.0143273203, -0.0567497127, -0.0147586558, -0.00521390885, -0.029493995, 0.0252272747, -0.00548203615, 0.0412915945, -0.0662157685, -0.00273664645, 0.00715783145, -0.0202494357, -0.0214851517, 0.0183025971, 0.035742525, 0.000629516086, -0.0111214509, -0.0428304113, 0.0167054925, -0.0231172312, -0.00478548836, -0.0201328583, 0.00415014336, 0.00696547935, 0.00802633073, -0.017614793, 0.0253671668, 0.0236185119, 0.0186056979, -0.00357308681, 0.00291734096, 0.00200366811, 0.0167054925, 0.00358183, 0.0055111805, 0.0253205374, -0.00619607046, 0.00455524866, -0.0207740311, 0.0215084665, -0.00869082, 0.0540451221, -0.0313359126, 0.0167054925, 0.0135229388, -0.00458147842, -0.00232716952, -0.0110398475, -0.0273256619, -0.0247376524, -0.00300768809, 0.0140591934, 0.00749007612, 0.0198997036, 0.0216600168, 0.012019095, -0.0132314963, 0.021834882, -0.0671483874, -0.0272557158, -0.00956514757, -0.0323151611, -0.042503994, -0.0194800254, -0.00160876336, 0.00323209888, 0.00947188586, 0.0152133061, 0.00371297938, 0.0173350088, -0.0402890295, -0.0300535653, 0.0244811829, 0.0408019684, -0.0154697755, -0.0301235113, -0.0016874529, -0.032245215, -0.0140242204, -0.000442628516, 0.0325483158, 0.0193517916, -0.0326182619, -0.00260695443, -0.0116343899, 0.0227675, 0.00673232507, -0.0373746045, 0.00568021694, 0.0288877953, -0.0168220699, -0.0177546851, -0.0104802772, -0.00964092277, 0.0269059855, -0.00598040316, 0.0454417355, 0.0210538171, 0.0140591934, 0.0464443, 0.0215434395, -0.0633712858, -0.0381906442, -0.0431335121, -0.00505653, 0.0324317366, 0.0240615048, -0.00149801513, -0.00958263408, -0.0606667, -0.00168891007, 0.0353694782, -0.0462111458, 0.0334343, 0.0189787447, 0.0505944416, -0.00848098099, 0.00281970762, -0.00869664829, 0.0729772374, 0.00593085773, -0.0081137633, -0.0477499627, 0.0325716287, -0.0109932162, -0.0300302505, 0.00801467244, 0.0144672124, -0.00455524866, -0.00115848449, 0.0122522488, 0.0339472406, 0.00553449569, -0.0157379024, -0.0208672937, -0.0015563037, 0.0657028258, 0.0352295861, 0.0084984675, 0.00676146941, -0.0267427769, -0.0320353769, -0.0010178634, -0.0113138035, 0.042410735, -0.0102296369, -0.00684307329, 0.00553158158, 0.0103112403, -0.0320820063, 0.0223011915, -0.0157029293, -0.00819536671, -0.000555926817, -0.0383305363, -0.00175157026, -0.00884237, -0.00112351135, 0.00015328062, -0.0123804836, 0.0146887088, -0.0210071858, 0.0228607617, -0.0260666292, 0.0167987533, -0.0272324011, 0.0142457159, 0.0124504296, 0.00156358979, 0.0182443094, 0.0233387277, -0.00911049731, 0.0172300898, -0.00586965494, -0.00640590908, -0.0071112006, 0.00258218171, -0.0139892465, 0.0242946595, -0.0155397216, -0.0273256619, 0.0292142108, 0.0176497661, 0.0327348374, -0.0448588505, -0.0259500537, -0.0273489784, -0.0322918445, -0.0236651432, -0.00867333263, -0.0137444353, 0.00519642234, -0.00839937665, 0.00844017882, 0.0192119, -0.0314758047, 0.00316798151, 0.00750756264, -0.00569187477, -0.0560968816, 0.00240585906, -0.0021406461, -0.00384121411, -0.00211878796, -0.00302517461, 0.00418511638, -0.0138260387, 0.0385403745, 0.000656838878, 0.00578805106, 0.019573288, -0.0278152861, 0.00799135771, -0.0253438521, -0.0119841211, 0.0249708053, 0.00984493271, 0.0393330976, -0.00509733194, 0.0497084558, 0.0165772568, -0.0191186368, -0.0310561284, -0.0574491732, -0.00234757038, -0.00271916, -0.00542957662, -0.00690136198, 0.00630099, 0.0288178492, 0.0161925536, 0.0174166132, 0.0144322393, 0.0176847391, 0.00382664194, 0.0261832066, -0.0119258333, 0.017544847, -0.0280484408, 0.0411050692, -0.00297562941, -0.00307180546, 0.0510141216, 0.00317089586, -0.0211820509, 0.0260899458, 0.0110281892, 0.01514336, -0.00586091168, 0.0170785394, 0.0185240936, -0.0224993713, 0.0183958597, 0.0183492284, 0.00768242823, -0.0140708508, 0.05040792, 0.0147819705, -0.0259733684, 0.0158777945, 0.0038470428, -0.022627607, -0.00833526, 0.0403356627, -0.0432967208, 0.00520808, 0.020634139, 0.0196782071, -0.0416180082, 0.0429003574, -0.02636973, -0.0612729, -0.0363720432, -0.0418977961, 0.0163091309, 0.00775820296, -0.0337374, 0.0249941219, 0.0066682077, 0.0134413345, -0.0134763075, 0.0174282696, -0.0220330637, 0.00472719967, 0.0102121504, 0.00925038941, 0.0280484408, 0.00099964824, -0.0184658058, 0.0337374, 0.0192935038, 0.0279318634, 0.00496035395, -0.0182676241, 0.0333643556, 0.0302634034, -0.0546046942, -0.0071112006, -0.0442060195, 0.0242946595, 0.00220767804, -0.0145837897, -0.00312426523, -0.0251106974, -0.0502213947, -0.013219838, -0.0287479032, -0.0551176332, -0.0594076701, -0.00892397389, 0.0280484408, 0.00490498, 0.0595941916, 0.0106842872, -0.00442992803, -0.00874910783, -0.00489915069, 0.0323851071, 0.00392864691, 0.024551129, 0.00994985178, -0.0242946595, 0.0400325619, 0.024621075, 0.0154697755, -0.0265329387, -0.0180461276, 0.0465375595, -0.00298145832, 0.0128234765, -0.0373979211, -0.0241780821, 0.00846932363, -0.0388434753, 0.000118489646, -0.0318488516, -0.0105443951, -0.0212636553, 0.0295872577, 0.0407320224, 0.0349498, 0.0210538171, -0.0407786556, -0.00366634852, -0.0326182619, 0.00258218171, -0.036255464, 0.0141524551, -0.00617858395, -0.00814873632, -0.0385636911, -0.00486126309, 0.010573539, 0.00125247473, -0.0352762192, 0.0410584398, -0.0173116922, -0.0401025079, -0.0278852321, -0.0289344247, 0.000706019811, 0.0230822582, -0.00411225576, -0.0384238, -0.0188621674, -0.00567147369, -0.0551642627, -0.0310328119, -0.010573539, -0.0426672027, -0.0199929662, 0.0446490124, -0.0190486908, -0.00953017455, 0.00800301507, -0.0172300898, 0.02520396, 0.0134063615, -0.00199346757, 0.0249474905, -0.0120307524, 0.0146420784, 0.0100897439, 0.0240148734, -0.00498658372, 0.0312659666, -0.0146420784, 0.0177430287, -0.00442701392, -0.013149892, -0.00507984543, 0.0354627408, -0.0355326869, -0.0360689424, -0.0286313258, 0.0203660112, 0.0240848195, 0.00590171339, 0.0373512879, 0.0226392653, -0.0283748563, 0.00177488569, -0.0252972208, -0.0249708053, 0.0170085933, 0.00690719066, -0.0256236363, 0.0066915229, 0.00515562, 0.0384004824, 0.00357891573, 0.00697130803, -0.0403123461, 0.00382955628, -0.0183142554, -0.0205292199, 0.0541850179, 0.0415946953, -0.00678478461, 0.000229511075, 0.0119841211, -0.0179295521, 0.00883654132, -0.0102412943, -0.0169736203, 0.0343902335, 0.00734435441, 0.00878408086, -0.000763579737, -0.0166705195, 0.0066682077, -0.0117801121, -0.00795638375, -0.00481463224, 0.00206487114, 0.00435123872, 0.0324550532, -0.00627184566, 0.0151899904, -0.0115994168, 0.0304965582, -0.00802633073, -0.0340871327, -0.0301934574, -0.0235718805, -0.0355093703, -0.00680810027, 0.0109057836, -0.000738442817, -0.000783980708, 0.00421134615, 0.0325949453, -0.0148868905, 0.0316390134, 0.0118092559, -0.00229802518, 0.0100489426, -0.0050536152, -0.0310794432, 0.0154114868, -0.0278386, 0.0173699819, 0.0205408782, 0.0143040046, 0.00278182, 0.00826531369, -0.0236185119, -0.0198880453, 0.00527511165, 0.00493120961, 0.0119841211, -0.0126136374, -0.00598040316, -0.0123455105, 0.00119782926, 0.0200162809, -0.0203660112, 0.00883654132, 0.0195849463, 0.0210421588, 0.0273722932, 0.0375144966, -0.0332011469, 0.00265649962, 0.0218232255, 0.0204359572, -0.0285147484, -0.0201212, -0.0134529928, -0.0202727504, 0.00359931658, 0.0331778303, -0.000768679951, -0.0234553032, 0.00562484283, -0.0075949952, -0.00972835533, -0.00190166326, 0.00353228487, 0.00191040651, -0.0085859, 0.0431335121, -0.0145021863, -0.00101349177, 0.00180111558, 0.00664489204, 0.0099964831, 0.0373746045, 0.0009399025, -0.0100664292, -0.0176497661, 0.00788060948, -0.0037479524, 0.000332608906, 0.0595475622, -0.015108387, -0.0225226879, 0.0490556248, -0.00870247744, -0.0146887088, -0.00270750211, 0.0173116922, -0.0230822582, -0.0236185119, -0.013802724, -0.000589807052, 0.0165073108, 0.0301934574, -0.0168687, -0.033923924, 0.0141874282, -0.0223711375, -0.0060561779, -0.0100722574, 0.0123571679, -0.00516436342, -0.0105793681, 0.0328980461, -0.00698296586, 0.00278910599, -0.0081137633, 0.0109757297, -0.00776986079, 0.00457856385, 0.0121939601, -0.0118500581, 0.0296338871, -0.0185940415, 0.012462087, 0.01387267, 0.00405979622, 0.000216031855, -0.00149655796, 0.00617275527, 0.00172971212, -0.00354977138, -0.016169237, -0.0252505913, 0.0207623746, 0.0176730826, -0.0102179786, -0.0158777945, -0.00748424698, -0.0107367467, -0.00599206053, 0.032175269, 0.021531783, 0.0295173116, 0.00447364477, 0.00698296586, 0.00447364477, 0.0133131, -0.0191069804, 0.00507693086, 0.0124854026, 0.00775237428, 0.00982744619, 0.00361680309, 0.0230006538, -0.00709954277, -0.00453776214, 0.0158078484, -0.00249329186, -0.00723360619, 0.0411517024, -0.00736184139, -0.00906969514, -0.00424340507, 0.0101538617, 0.0217183065, 0.0229190495, 0.00721029099, -0.0219980907, -0.00775237428, -0.015003467, -0.0145721324, -0.00943691283, 0.0216017291, -0.0259733684, -0.01895543, 0.00174428418, 0.0239915587, 0.0124037992, -0.0214501787, 0.00477091596, -0.0170785394, -0.0359989963, -0.00462810928, 0.00173116929, 0.0290743187, -0.000664124906, 0.00379166869, 0.00653997296, -0.023863323, 0.00634762086, 0.0073035527, 0.0181860216, 0.0215900708, -0.00206924276, 0.0210421588, -0.0279784929, -0.0310561284, 0.0244578663, -0.0172650628, -0.0047388575, -0.026882669, -0.000639352307, -0.00400733622, -0.00117524248, 0.017509874, 0.00750756264, 0.00786312297, 0.0263230987, 0.0342270248, -0.0220913514, -0.0051818504, 0.00382955628, 0.0114536956, -0.0014878147, 0.0124154566, -0.0283981711, 0.0296105724, -0.00721611967, -0.015108387, -0.0500815026, 0.00592502905, -0.0125436913, 0.0234553032, -0.00429586461, 0.00850429665, 0.00421426073, 0.00897060428, 0.0254837442, 0.0144438976, -0.0237467457, -0.0191069804, -0.0154930912, -0.0363953561, 0.0219747759, -0.00133116427, -0.0120424097, 0.0168453846, 0.0289344247, 0.025716899, 5.32338199e-05, 0.00592211448, -0.0258101597, 0.00670318073, -0.0107542332, 0.0314758047, 0.00855675619, -0.0138143813, 0.0259034224, 0.0205175616, -0.0044940454, 0.00823034067, -0.00790975336, 0.00706456974, 0.0290043727, -0.00867333263, 0.0288877953, -0.0274189245, 0.0167987533, 0.0204942469, 0.027675394, 0.0168220699, 0.018092759, 0.0405455, -0.0212986283, -0.00265358528, -0.0168220699, -0.0152366217, -0.00954183191, 0.0199463349, -0.00250057783, 0.0105269086, -0.0139892465, -0.00204884168, -0.0146187628, 0.0108533241, 0.00954766106, -0.0163907334, 0.0157728754, 0.0507809669, -0.0124504296, -0.0224294253, -0.00885985605, 0.00533340033, -0.00870830659, 0.0123338522, 0.00115046988, 0.0342503376, 0.00895311777, 0.0243646055, -0.0123455105, -0.01376775, 0.0238749813, 0.00197160942, 0.0171484854, -0.00951268803, 0.00643505342, 0.00303683244, 0.020634139, -0.0223245062, -0.0556772, -0.0183842015, -0.0113079743, -0.0169503037, -0.000971961243, 0.0147353401, 0.0185823832, -0.0383538529, -0.00863253139, 0.0250640679, 0.0198647305, 0.00373046589, 0.0293074716, -0.02602, 0.0305198729, 0.0214734934, -0.0284681171, 0.00924456, 0.0110048745, 0.0250174366, -0.0333177224, -0.0186523292, 0.00370423589, -0.016449023, 0.00514687691, 0.0114886686, -0.0207623746, -0.0370248742, 0.0290276874, -0.00918627251, -0.00748424698, -0.0284448024, 0.0338772945, -0.0264863074, 0.00845183618, 0.00630099, 0.0178129748, -0.026952615, -0.0141757699, -0.0460479371, 0.00887151435, -0.0317322761, -0.0450220592, 0.0111272801, 0.00457564928, 0.0101014022, 0.0249708053, -0.0209838711, -0.00107833778, -0.0207740311, -0.0327115208, 0.0349498, 0.00270313048, 0.0023796293, 0.00628350349, -0.0118850311, -0.0240148734, 0.00247434806, 0.0160759762, -0.0111913979, -0.00278619165, -0.00867916178, 0.0233154111, 0.000293628458, -0.00635344954, 0.0022543089, 0.0211004466, -0.0210305, -0.00177780015, 0.0109815588, -0.0137444353, -0.00538294576, -0.0587548353, 0.015108387, 0.00167579518, 0.0318721682, 0.0307063963, 0.0086500179, -0.0115178134, 0.00158981967, -0.0104453042, 0.0183842015, 0.00326998648, 0.000768679951, 0.0266028848, 0.0619723648, 0.00727440836, -0.0184891205, -0.00486417767, -0.0169036724, -0.0245044976, 0.0100664292, 0.0125087183, 0.018407518, 0.0171251688, -0.00359640224, 0.0221263263, 0.00628933217, -0.0016437365, 0.0193401333, 0.0399393, -0.0243879203, -0.0242480282, -0.00602120487, -0.0260666292, -0.0207623746, -0.000344448781, -0.00482920464, -0.00323501322, 0.0128001608, 0.00115484151, -0.0160293449, -0.0060328627, -0.0273956079, 0.00307180546, 0.0107542332, -0.01895543, 0.0162741579, 0.00617858395, 0.0294706803, -0.00267690071, -0.0197831262, -0.00365177635, -0.00467182556, 0.0215434395, -0.0117101651, 0.0220680367, -0.0306364503, -0.00990322139, 0.0104394751, 0.0149335209, 0.00465142448, 0.000907115231, -0.0402424, -0.023175519, 0.0145488167, -0.0321053229, -0.0273023471, 0.01757982, -0.0016437365, 0.00200221105, 0.0011949148, -0.0284214858, -0.0109990453, -0.0234319884, -0.0110515049, 0.017031908, -0.00781649165, -0.0210421588, 0.022697553, 0.00344776642, 0.0117334807, -0.00563358609, 0.0140825082, 0.0140475351, -0.0519933663, -0.0272324011, -0.0182443094, 0.0067439829, 0.0162858143, -0.0247609671, 0.0117218234, 0.0133131, 0.0195849463, 0.0187922213, 0.00361388875, -0.00394613342, 0.01301, 0.00765328389, 0.00148052862, -0.006883875, -0.0147120245, -0.0233970154, 0.0273722932, -0.00913964119, -0.00175739918, 0.00226305216, -0.0084984675, -0.0290043727, -0.0482629, -0.000961760699, -0.00750756264, 0.0420376882, 0.0339006074, -0.012532034, -0.0133597311, 0.00248163403, -0.00367509178, 0.00546746375, -0.00541500421, -0.00788060948, 0.0265795682, 0.0317089595, 0.00677895593, -0.00584633928, -0.0113079743, 0.0214385204, -0.02774534, -0.00569187477, 0.0149218636, -0.02774534, 0.0107950354, -0.0201095417, 0.021321943, -0.0311960205, -0.0232920963, -0.0119374907, 0.00731521053, 0.0098915631, -0.0341803916, -0.0111331092, -0.000569406082, -0.0398227237, -0.0246443897, 0.0122755645, -0.0134063615, 0.0274888705, 0.0101538617, 0.0142340586, -0.00323209888, -0.0045086178, -0.0187339336, -0.000663032, -5.69679287e-05, -0.0071520023, 0.00424631918, -0.0162625, 0.0416180082, 0.022044722, -0.0229889955, -0.0185357518, 0.0348099098, -0.000958117715, -0.0202377774, 0.00435123872, 0.0134996232, -0.0152482791, -0.00201678299, -0.000950103044, 0.00208381494, 0.0148985479, -0.00198763888, 0.0173583236, 0.00637093605, 0.00388784497, -0.0322918445, -0.00512647629, 0.0116343899, -0.0202960651, 0.0230939146, -1.69287196e-05, 0.00282699359, 0.00538586, 0.00489332201, 0.0194217376, 0.00571519043, -0.0224410836, 0.0223128479, -0.00405688165, -0.025786845, 0.0047242851, 0.0292142108, 0.0167054925, -0.0397994071, -0.00243937504, -0.000713305897, 0.0202261191, -0.00404813839, -0.00197598105, 0.00779900514, 0.00669735204, 0.00414431421, 0.00691301934, 0.0213336013, 0.014385609, -0.00284593739, -0.00663906336, -0.0124154566, -0.02266258, -0.012636953, -0.0152949095, -0.0229773372, 0.00541791879, -0.018197678, -0.00644088257, -0.0105269086, -0.000271223806, -0.0150850713, -0.0253205374, 0.0152715947, -0.00806713197, 0.000549369375, 0.00161750661, 0.0198181, 0.0133713884, 0.00133772171, 0.023210492, -0.0315224379, -0.0169736203, -0.00103389274, 0.0277220234, -0.0137211196, 0.0273023471, 0.00878991, 0.0126486104, -0.00333118951, 0.0185940415, -0.0113138035, 0.00891231559, 0.00724526402, -0.0347632803, 0.00429586461, -0.0259267371, 0.00959429145, -0.0147936288, 0.00680810027, 0.01514336, 0.00234465604, 0.00813707896, 0.00158690521, -0.0456748903, -0.0159011111, 0.00658077467, -0.0100081405, 0.0178129748, 0.00375669566, -0.0058405106, 0.012636953, -0.0115178134, -0.0128701068, 0.0140941665, -0.0104394751, -0.0177197121, 0.022009749, 0.0101655191, 0.0309628658, 0.00188563392, 0.0071869758, 0.0184658058, -0.00765911257, -0.00449113129, -0.00890648738, -0.0246910211, 0.00336324819, -0.00287071, 0.0208556354, -0.0194217376, 0.017614793, 0.0155397216, 0.0158078484, -0.00564232934, 0.0112030553, -0.0167521238, -0.0194916837, 0.0205292199, -0.015178333, -0.00181714492, -0.0418744795, 0.0119200042, -0.0101014022, -0.0139193, -0.0299369879, 0.01757982, 0.0202144608, -0.011879202, -0.00297417212, 0.0191885829, 0.0101538617, 0.0044561578, 0.0105677098, -0.00779900514, 0.0121240141, 0.000385797204, 0.0160176884, -0.0306364503, 0.00420551747, 0.0166122299, -0.00148490025, -0.0394030437, 0.00509733194, 0.0494753048, 0.00837606192, 0.0257402137, -0.001974524, -9.12579781e-05, -0.0036051455, -0.0195966028, 0.0297271498, -0.020634139, -0.0536254458, 4.00733625e-05, -0.00663906336, 0.0214385204, 0.00948354322, -0.0438096598, -0.0124504296, -0.0117509672, -0.0333876684, -0.00522556668, -0.00285322359, -0.00143025478, 0.0154697755, 0.0337607153, -0.0045086178, 0.00165393704, 0.00700045237, -0.0118966885, 0.00665072119, -0.021426864, 0.0231288876, -0.00842269231, -0.0474235453, 0.0143739516, 0.00228345301, -0.0355093703, 0.0128584495, 0.0349264853, -0.0145021863, -0.00169182452, 0.0113079743, 0.000240440175, -0.0121240141, -0.00642922474, 0.0160176884, -0.00339530688, -0.030216774, 0.0394030437, -0.0326648913, -0.0102121504, -0.00679644244, 0.0269293, 0.0303333495, -0.00893563125, -0.00954766106, -0.0230822582, -0.0247376524, 0.010509422, -0.00948354322, 0.0073268679, 0.00158544793, -0.010608512, -0.00554323895, -0.00587839819, -0.00559861306, -0.00324667105, -0.00310677849, -0.00709371408, 0.0138610117, 0.0025719814, -0.0319654308, 0.0167288072, 0.019573288, 0.0152482791, -0.0103986738, 0.0293541029, -0.0221263263, -0.0143739516, 0.0160060301, 0.0045086178, 0.0207740311, -0.0170085933, 0.0114303809, 0.0110107027, 0.049335409, -0.000455743429, -0.00134573644, -0.015796192, 0.00643505342, -0.0393097848, -0.0122522488, 0.0159943718, -0.0261365771, -0.0109116128, -0.0109290993, -0.0218465403, -0.0108474949, -0.00016657768, 0.0066682077, 0.00802633073, -0.00942525547, -0.0182559676, 0.0229540225, -0.0131382346, 0.00721029099, -0.0242480282, -0.00875493698, -0.0281417016, -0.00545289181, 0.0104686199, 0.0227791574, 0.0195616297, 0.0185823832, 0.00447947346, -0.00753087783, -0.00609698, 0.0319654308, -0.00744927395, -0.0199813079, 0.0213102866, 0.010643485, 0.00530134188, 0.00913381204, 0.0275588166, 0.00929702073, 0.0114653539, 0.00426963484, -0.0256702676, 0.0394496769, 0.000979975914, -0.00804964546, -0.00437746849, -0.0315690674, -0.0364186727, -0.0194217376, 0.0210887901, -0.00885402784, -0.0127418721, -0.0174982157, 0.00998482481, 0.01387267, -6.484599e-05, 0.0106318276, -0.0091571277, 0.00653414428, 0.00732103921, -0.0339472406, 0.0242713429, 0.0133713884, 0.00698296586, -0.0200629123, 0.0233503841, -0.0268360376, 0.0427138321, -0.0100431135, -0.0126835834, -0.0276987087, -0.0119025176, 0.000620772829, -0.00939611066, -0.011879202, 0.00192060706, 0.00302226027, 0.018885484, 0.0373746045, -0.0116577055, -0.00337782013, -0.0220330637, -0.00885985605, 0.02520396, 0.00607366487, -0.0276054479, -0.00584342517, -0.0148052862, 0.020948898, -0.0498483479, -0.00510898931, -0.00181568763, -0.0132664694, -0.00834691711, -0.00174136984, 0.0205641929, -0.0178479478, 0.0103287268, -0.00862670224, 0.0182326511, 0.00221204967, 0.016449023, -0.00451736106, -0.00348565402, -0.00335741928, -0.0173233505, 0.021531783, 0.00579387974, -0.00919793, 0.00234902767, 0.000167124133, -0.00524013862, 0.00407728273, 0.0195616297, -0.0282116476, 0.0072277775, 0.00750756264, 0.00355268572, 0.00725109316, -0.00117305666, 0.00235485658, -0.00323501322, 0.0021974775, 0.022697553, 0.00797969941, 0.00388784497, 0.00878991, 0.00395487668, 0.0174282696, 0.0114128944, 0.0320353769, -0.0206108242, -0.0317789055, 0.0149102053, 0.0195266567, -0.0118034268, -0.00944274198, 0.00707622757, 0.000928244845, 0.0342270248, -0.00758916652, 0.0092329029, 0.0291675795, 0.017509874, -0.0300302505, 0.000765036966, -0.0100139696, -0.0085742427, 0.0152949095, -0.0200162809, -0.00308346306, 0.00661574816, -0.00296834321, 0.0115819303, 0.00383247086, 0.0262531526, 0.00157233304, 0.0205758512, 0.00256906683, 0.0361388884, 0.0146304211, -0.0132314963, 0.00725109316, 0.00478840247, -0.00329038734, 0.0102179786, 0.0309861824, -0.0280018095, 0.0223711375, -0.00329038734, 0.0253904834, 0.0221962724, -0.00409768336, -0.0264396761, 0.00330787408, -0.0100897439, 0.00574724888, -0.0107892063, -0.0176614244, -0.0335275605, 0.0133131, -0.0160992909, 0.0160992909, 0.022009749, -0.0160293449, -0.0215201247, 0.001974524, -0.00846349448, 0.00490498, 0.0295173116, -0.0361622, 0.000927516201, -0.00532757165, 0.00704708323, 0.0118209133, -0.018710617, 0.02403819, 0.022592634, -0.00194392249, 0.00863836, -0.000589078467, 0.00165539421, 0.00268710125, 0.0148402592, -0.0381440148, -0.0190603491, 0.00586382579, 0.0110456757, 0.000644088257, 0.00583176734, -0.0144089246, 0.00965258, -0.00606200704, 0.0123571679, -0.00366634852, -0.00322044129, 0.00368092069, 0.0378642268, 0.0346700177, 0.0117451381, -0.0166938342, -0.0174865592, 0.0112438574, -0.0116577055, 0.0157145876, -0.00979247317, 0.0140825082, -0.00401316537, -0.00198035268, -0.00302226027, 0.0192585289, -0.0305198729, 0.0128934225, -0.0226509217, -0.0185474101, 0.0131732076, -0.00066813227, 0.00173262646, 0.0141058238, 0.0152832521, 0.0129517112, -0.00747258915, 0.00674981158, -0.00907552429, -0.00824782718, -0.00593085773, 0.00510898931, -0.00440661283, 0.0304732434, -0.000509296, -0.00363428984, 0.0531591363, -0.0110456757, 0.0193634499, -0.0319654308, 0.0179178938, -0.00656911731, 0.00920375902, 0.000675418298, 0.0250640679, 0.0040277373, 0.00354394247, 0.00433958089, 0.00961177796, 0.00246851915, -0.00291296933, 0.0121006984, 0.0206224807, -0.0249008592, 0.0248075984, 0.0232571233, 0.020051254, -0.000912944088, 0.0181860216, -0.00473011425, 0.00599788968, 0.00170202507, -0.0183492284, 0.019573288, 0.0164257064, 0.0218232255, 0.016449023, 0.00617275527, -0.00120511535, 0.0009493744, 0.015866138, 0.0219864324, -0.0198414158, 0.00370132155, -0.00382955628, -0.00639425172, 0.0098915631, 0.0147353401, 0.00785729382, -0.0328047834, 0.0192119, 0.0107658915, 0.00457273517, 0.000312390097, 0.022009749, -0.00292316964, -0.00392864691, -0.0187339336, 0.00270458777, 0.0168920159, 0.000702376768, -0.0238050353, 0.00871996395, -0.0161575805, -0.00507693086, -0.0058405106, 0.0199346766, -0.0129750269, -0.000997462426, -0.0427138321, -0.010474449, 0.0202261191, -0.0071112006, -0.0139892465, 0.00263755582, -0.02891111, 0.00389658823, -0.0199113619, 0.00402482273, -0.0196898654, 0.0121356715, 0.0257635303, 0.00493412372, 0.0132314963, 0.00550826592, -0.00349148293, 0.0259034224, -0.00170056778, -0.0229307078, 0.00126923271, 0.0128001608, 0.0167987533, -0.000618951337, -0.0020240692, 0.014385609, 0.0229423642, -0.0146770515, 0.00933199376, 0.0167987533, 0.0157029293, 0.0123221949, -0.00319421128, 0.0047767451, 0.0013639516, -0.00586965494, 0.0122639062, 0.0130449729, 0.0295639411, 0.0033923923, -0.0202494357, 0.021321943, 0.00701793889, -0.00954183191, 0.00456107734, -0.0109465858, -0.0291209482, -0.00733269705, -0.0381673276, 0.0047388575, -0.0149568366, -0.00691301934, -0.00802050158, -0.0168453846, 0.00150967285, 0.0110864779, 0.0143040046, -0.00568604609, 0.0182792824, 0.0174632426, -0.0191536099, 0.00359931658, 0.0321286358, -0.0129050799, 0.0155630372, -0.0145721324, -0.0162741579, 0.0118325716, -0.00802050158, -0.0111913979, -0.0041414, 0.013732777, 0.00286196684, -0.011366263, -0.00423466181, 0.0313825421, -0.0109349275, 0.0124970609, -0.0212403405, 0.00517602125, 0.0369549282, -0.00213918905, -0.0167637803, 0.00246997643, 0.00534214359, 0.00530717056, -0.00947188586, -0.010334556, 0.0118150851, -0.00606200704, -0.0182909407, -0.0311260745, -0.0124387722, 0.0380041189, 0.0246910211, 0.000755565066, 0.00841103494, -0.0106376568, -0.0204592738, -0.0035177127, -0.0202028044, -0.00275996188, -0.000336980564, 0.00813125, 0.00653997296, -0.0035060551, 0.011261344, -0.0140708508, -0.0132081807, 0.00368383504, -0.0249474905, 0.0230939146, 0.0197248384, -0.010474449, 0.00929702073, 0.00735601224, -0.00396944862, 0.0166122299, 0.0128934225, 0.0155746946, 0.015866138, -0.0333876684, -0.0123688262, 0.0109990453, 0.00642339606, -0.00435998198, 2.68673684e-05, 0.00596291665, 0.0460712537, 0.00774071645, -0.0050681876, -0.0110281892, 0.0259034224, -0.00236651418, -0.00950103, -0.0111972261, -0.0187922213, 0.0203543548, 0.0119025176, -0.00883071218, -0.00285030901, -0.0128234765, 0.00845183618, -0.00192643586, -0.00153007393, -0.0180694442, -0.00957097672, -0.00326415757, 0.00862670224, -0.00852761138, -0.0138843274, -0.0122289332, 0.000160202384, 0.000331151707, -0.00308054872, 0.00455816276, 0.0261598919, 0.0035060551, 0.0198763888, -0.0153648565, 0.0112380283, 0.00322627, 0.00666237902, 0.02403819, -0.0135462545, -0.00404230924, -0.0315224379, -0.00237380038, -0.00395779125, 0.00248163403, 0.00789226685, -0.0135112805, 0.00627184566, 0.0140242204, 0.00506235892, 0.00557238329, -0.00737349875, -0.00198763888, 0.00674981158, -0.0146770515, -0.0290276874, 0.00587548362, 0.00554323895, 0.00508275954, 0.0114711821, -0.0384704284, -1.4230598e-05, 0.019573288, -0.0101480326, -0.00520808, 0.000522046641, -0.0129866842, -0.0217532795, -0.00876659434, -0.00159710564, 0.0175331887, -0.0209022667, -0.00559861306, 0.0129517112, -0.0264863074, 0.00217561936, 0.0102937538, 8.12396393e-05, -0.00145575602, -0.0137794083, -0.00905220862, 0.0123804836, 0.00667986553, -0.0170202497, -0.0149102053, 0.00287799607, -0.022592634, -0.0224061105, -0.00525179645, 0.0182093363, -0.019538315, 0.00227762433, -0.00774071645, -0.00697130803, -0.00263755582, -0.0136395153, -0.00676729809, 0.00561609957, -0.0109116128, 0.0231405459, 0.00760665303, 0.000330787414, 0.00199346757, -0.00343319424, -0.0061844131, 0.000265394949, -0.0116343899, -0.00199638214, 0.0105618816, 0.0261598919, -0.00313009392, -0.0391465761, -0.0172650628, 0.00494869612, -0.00447364477, 0.00841686316, 0.0208323207, 0.00267544342, -0.00447947346, 0.0157262459, -0.0155630372, 0.0508275963, 0.00380624086, -0.022114668, -0.00463102339, -0.00163062161, -0.03749118, -0.000712577254, -0.0133364154, 0.0111855688, 0.0115003269, 0.000342080806, 0.00646419777, -0.000702012447, 0.00634179171, -0.00923873205, -0.00961760711, -0.0131265763, 0.00705874059, -0.000861941604, -0.0248309132, -0.00281533599, 0.0124854026, -0.00472137099, -0.0012043867, 0.0134646501, 0.00400442211, -5.98368169e-05, -0.00607949356, 0.00743761612, 0.0335042477, -0.0197947845, -0.0117393099, 0.0057647354, -0.0101072304, -0.00239857286, 0.0123455105, 0.00154464599, -0.015073413, 0.0129750269, -0.0191652682, -0.0189087987, 0.00556364, -0.0201678313, -0.0189087987, 0.0171368271, -0.0269059855, -0.0183842015, 0.0207623746, 0.00608532224, -0.021869855, 0.00534214359, -0.00980996, 0.00538877444, -0.0083585754, -0.00656911731, 0.000585799688, -0.0174865592, -0.00328747299, -0.00157961913, 0.0127535304, 0.00563358609, 0.0227908138, 0.00823034067, -0.0234669615, -0.00382664194, -0.00191040651, 0.00404522382, 0.00582593866, -0.000351917, -0.0183842015, 0.00831777323, -0.00884819869, -0.0174749, -0.00971669797, -0.0228141304, -0.00173991255, 0.030006934, 0.00887734257, -0.00798552856, -0.0238982961, -0.00695382152, 0.0192002412, 0.00619024178, 0.00229073921, -0.0112088844, 0.0125903217, 0.00976915751, 0.00561901415, 0.00240003015, -0.00503612868, 0.0205292199, -0.0171834584, 0.0049924124, 0.0285147484, 0.00498949783, -0.0126602687, 0.00232134061, 0.00768242823, 0.00545580639, 0.00322627, 0.00294794235, 0.0109990453, 0.00344485207, 0.000759936695, -0.00397527777, -0.000574142032, 0.0117043369, 0.0171601437, 0.0380740687, -0.0122755645, 0.0118966885, 0.0246677045, 0.00609115139, -0.00553741027, 0.0127651878, 0.00737349875, -0.0249008592, -0.00111331092, 0.00848098099, 0.00099964824, -0.00920958724, -0.00237525743, -0.0159943718, -0.000381789869, 0.0149102053, 0.00572393369, 0.00760082435, 0.00715783145, -0.000436071045, -0.0142806899, -0.0137444353, 0.0137094622, -0.00284448, -0.0158544797, 0.0287245866, -0.00171368278, 0.0129633686, -0.00259529683, -0.0174282696, 0.00560444221, 0.00783397816, -0.0137560926, 0.000782523479, -0.0285380632, 0.00969921146, -0.00552575244, -0.00784563553, -0.015108387, 0.0124154566, -0.0160876345, -0.0031126074, -0.00740847178, -0.00150092959, -0.0290743187, 0.00181277329, -0.00354394247, -0.00216979044, -0.00797969941, -0.0131382346, -0.0291209482, 0.00165102258, 0.00517019257, -0.00875493698, -0.0178479478, -0.00215084665, 0.00292754127, 0.00421134615, -0.00349439727, 0.00817788, -0.00672066724, 0.011675192, -0.0141874282, -0.0105560524, -0.0076707704, -0.00108198076, -0.0102820965, -0.0185707249, -0.0129983416, -0.00473011425, 0.00230239681, 0.0158078484, 0.00797969941, -0.0190020595, 0.0131265763, 0.0182909407, 0.00817205198, -0.0210305, -0.00749590481, 0.0165656, -0.0164606813, -0.00559278438, -0.00932616461, 0.0238400083, -0.0358824171, -0.00503904326, -0.0116227325, 0.00748424698, 0.0132314963, 0.0348332264, 0.0042404905, -0.0335741937, -0.0141407968, 0.0127768451, -0.0183608867, -0.000900557789, 0.000103826438, 0.0138843274, 0.0159011111, 0.013837697, -0.00132533547, 0.00590171339, -0.0032525, -0.00510024605, -0.000379239733, 0.0193051603, -0.00226305216, -0.00792141072, -0.00763579737, 0.00643505342, -0.00465142448, 0.0106026838, -0.0290743187, -0.00073552836, 0.000152278779, 0.000415670074, 0.00678478461, -0.0262298379, 0.0198297575, 0.0194217376, 0.00445032911, -0.0151550174, 0.0130333146, 0.000530425634, -0.000794909836, -0.0134180188, -0.016344104, -0.0112380283, 0.00233737, -0.011844229, -0.00308637763, -0.0153881712, 0.00653414428, 0.018162705, 0.0263930466, -0.00375378132, 0.0171018541, -0.0335508771, 0.0145721324, 0.0110748205, 0.0153881712, -0.0143273203, 0.0166938342, 0.00896477606, 0.0112205418, 0.0136861466, -0.0049516107, -0.00318255369, 0.0129050799, 0.00157961913, 0.0192701872, 0.0102587808, 0.0156912711, 0.00489040744, -0.0220214054, 0.0176264513, -0.0139426161, -0.0206108242, -0.0026215266, 0.0146187628, 0.0162625, 0.0113954069, -0.00614943961, -0.0107717197, -0.013837697, -0.00613778224, 0.015003467, 0.0118850311, 0.0141291395, -0.00623687264, 0.013184865, 0.00512647629, -0.00522265211, 0.00325541431, 0.00498075457, -0.00931450725, 0.0125553487, 0.0173466653, 0.0135928849, 0.0257635303, 0.000795638422, 0.00146595645, -0.00334284711, -0.000175594192, -0.00572101912, 0.00299020158, -0.0109524149, -0.00193955074, 0.00199492485, 0.000950831629, -0.00942525547, -0.0196315758, 0.0211237632, -0.000888171431, -0.0071112006, -0.000904200773, 0.00870830659, -0.00507984543, 0.0114944978, -0.0158777945, -0.0231988337, -0.0359057337, 0.000158107636, -0.00912798382, 0.0237001162, 0.00167870964, -0.00797969941, 0.011844229, 0.0323617905, 0.0213918891, 0.00377126783, 0.00891814474, 0.00145648466, -0.0076707704, -0.00353519921, -0.0283515397, -0.000673232484, -0.0110398475, -0.0127885034, -0.00252389326, 0.00207507168, 0.0006287875, -0.023280438, -0.0256702676, 0.00795055553, 0.00110238185, -0.00567730283, 0.0155164059, -0.0057035326, 0.00223682239, 0.0115644438, 0.0141524551, -0.00398984971, -0.00763579737, 0.0134646501, 0.0160643179, 0.0122289332, 0.0096001206, 0.0160992909, -0.00260841171, 0.00719863316, 0.00878991, -0.00157087587, -0.0162508413, -0.0213336013, -0.0006382594, 0.00743761612, -0.00018306241, -0.00845766533, -0.0279085469, 0.0126252957, -0.0159244258, -0.00150092959, -0.0176497661, -0.0144322393, 0.0109290993, 0.00549660809, 0.0099964831, 0.00390533148, 0.01260198, 0.0314291753, -0.0478898548, 0.0208556354, -0.0209838711, -0.0244578663, 0.0151666747, -1.74865581e-05, -0.000339712831, -0.0041647153, -0.00474760076, -0.0192235559, -0.0102296369, -0.0128584495, -0.00499824155, -0.00626018783, -0.00145284156, 0.0140475351, -0.000681247155, 0.00346233859, -0.0209605545, 0.000512939063, 0.0135345962, 0.000182242729, -0.00266087125, -0.000149455431, 0.00310386415, -0.00267981505, -0.0038732728, -0.0303799808, 0.0183608867, 0.00683724461, 0.0134879658, -0.0165656, 0.024411235, 0.00532465708, -0.0146187628, 0.0101188887, -0.0258801058, -0.000120037941, 0.0222195871, 0.00524013862, -0.0252739061, 0.004584393, -0.018885484, 0.0186056979, -0.00295522832, -0.0198064428, -0.0193751063, 0.0141641125, -0.0192002412, 0.0206924286, -0.0138843274, -0.00648168428, 0.00638259389, 0.0177663434, 0.00155193207, 0.0202960651, -0.0119957794, 0.0172184315, 0.0192468725, -0.00536837336, -0.00434541, -0.0234902762, 0.000105556879, -0.00154027436, 0.0185940415, 0.00162625, -0.015656298, 0.00294065615, -0.0077465456, 0.0317789055, -0.0163557604, 0.0156213259, -0.000670318084, 0.00779317645, 0.0259966832, 0.00306306221, 0.0206574537, -0.00275850459, 0.0138610117, 0.00493995287, 0.013114919, -0.0198647305, -0.00885402784, -0.00779317645, 0.0025268076, -0.010643485, 0.00652831513, -0.0147703132, -0.0212986283, 0.00826531369, 0.016169237, 0.00336033362, -0.00434249546, -0.00980413053, 0.0102587808, -0.000543176255, -0.0158195067, -0.0227092113, 0.00352354161, 0.00962343626, 0.00266961451, 0.00842269231, -0.00700628106, -0.000750464795, 0.00706456974, 0.00792141072, -0.011022361, -0.0017063967, 0.00830028672, -0.0170785394, -0.00357308681, 0.000713670161, 4.11207366e-05, -0.0140941665, 0.0248542279, 0.00474760076, -0.00944857, 0.0105910255, -0.00969338231, -0.00725692185, 0.00656911731, 0.0224410836, 0.00493703829, -0.0157845337, -0.0195499733, -0.0234553032, 0.00704125408, 0.0127185574, 0.0148752322, -0.00652248645, 0.00949520152, -0.0157728754, 0.0201212, 0.00302517461, 0.0055111805, 0.000130784887, -0.004394955, -0.0266262, -0.00154901762, -0.0235718805, 0.0172184315, -0.0282116476, 0.000173135151, 0.0190253761, 0.0050681876, 0.0141990855, 0.00506235892, 0.00013124026, 0.012054068, 0.00318255369, -0.0487758406, 0.00474468619, 0.00422300398, 0.00151987339, 0.00606200704, -0.0157145876, 0.00932033546, -0.00655745948, -0.00979830138, -0.00421717484, -0.0241547655, 0.0137211196, -0.0182792824, 0.0217066482, -0.0149102053, -0.00645254, 0.0122172758, 0.00947771501, 0.0152715947, -0.0177430287, -0.0249474905, 0.0375611261, -0.00682558678, -0.00392281776, 0.0065924325, -0.0394963063, 0.0192818455, -0.00052022509, 0.00534214359, -0.0208556354, -0.0175681617, 0.00652831513, -0.011949148, 0.0247609671, -0.00983910356, 0.00754253566, 0.000505653, 0.00292899855, -0.00558112655, 0.0021785337, -0.000824054063, -0.0136162005, -0.0190836638, -0.023863323, 0.0377942808, -0.00624853047, 0.000745728845, -0.000483066193, 0.00633596303, 0.021799909, 0.0116343899, -0.00310094981, -0.0188155379, -0.00726275053, 0.0133713884, 0.0283515397, 0.00828862842, 0.00820119586, -0.00322918454, 0.0185590666, 0.00236797146, 0.0145604741, -0.0064000804, -0.0167054925, -0.0224294253, 0.00508275954, -0.011092307, 0.00931450725, -0.0158195067, 0.0145138437, 0.000258473185, -0.011570273, -0.0349731185, 0.0111680822, -0.02266258, -0.00418511638, 0.0204359572, -0.0227558408, 0.000569770345, 0.00403648056, 0.0221613, -0.00169036735, 0.0121006984, 0.00304557569, -0.015178333, -0.00719280448, 0.0252972208, 0.00802050158, -0.00215667556, -0.0202727504, 0.0283748563, -0.00405105297, 0.00215230393, -0.014385609, 0.00271478831, 0.00621938612, -0.0106901163, -0.0117276516, -0.0151899904, 0.0342969708, 0.0142224012, 0.00174574147, 0.0157495607, 0.0123221949, -0.0298437271, -0.000925330387, 0.0160759762, -0.0071520023, 0.0189787447, -0.00365177635, 0.000586892595, -0.0336441398, 0.00170348224, 0.0146770515, 0.00230822572, -0.0104919355, 3.46088132e-06, 0.0127651878, 0.00897643343, -0.0236768, -0.016344104, -0.0119316615, 0.019538315, -0.00526928296, 0.00274976133, 0.00626601698, 0.0204476155, 0.00341570773, 0.00110821065, -0.00156358979, -0.00065392442, -0.0013012914, -0.0108474949, 0.0128584495, 0.00322044129, 0.00463393796, 0.0245744437, -0.0214035474, -0.0171834584, -0.00366343395, 0.00635927869, 0.0106959445, 0.00195266574, -5.31427431e-05, -0.00596291665, 0.000349184731, 0.0113837495, -0.0313825421, -0.00375961, 0.00808461849, 0.00159127684, -0.00950103, 0.0203660112, -0.0252972208, 0.00426380569, -0.0215550978, 0.00099964824, 0.00400150754, 0.00972252619, -0.00391990365, 0.00689553283, 0.00740847178, 0.0138493543, 0.0251806434, -0.0328047834, -0.00994402263, -0.00466308231, 0.005665645, -0.000264484202, -0.0077465456, -0.00595417339, 0.00607366487, -0.0131382346, 0.0134296771, -0.00306889112, 0.00599788968, 0.00733269705, 0.00207507168, 0.00312135066, 0.0152482791, -0.000824782706, 0.00438912632, 0.00377126783, 0.0215201247, 0.00932616461, -0.00750756264, 0.0053217425, -0.00382081303, -0.0016626803, 0.00671483856, 0.0180694442, 0.000323501328, -0.0201212, -0.0141990855, 0.00381789869, 0.00788060948, 0.000257926731, -0.00833526, -0.0134763075, -0.012054068, 0.00902306382, -0.000527511176, -0.00126631826, -0.0245278124, 0.00426380569, -0.00418220181, 0.0123338522, -0.00780483382, 0.0203660112, -0.00112132553, 0.0130682886, -0.0116810212, -0.0200629123, 0.00256760977, -0.00288673933, 0.0153298834, 0.0111622531, 0.0164606813, -0.0333876684, 0.0158428214, -0.000343902328, 0.000292535551, 0.00398110645, -0.00769991474, -0.00930284895, 0.00841103494, -0.00409768336, -0.0150967287, 0.0041268277, -0.00305140438, -0.00835274626, -0.0141174812, -0.0029319129, 0.000643723935, -0.00881322566, 0.00840520579, 0.00160439173, 0.000431699416, -0.00680227112, 0.000806567492, 0.0243179742, 0.0114886686, -0.0116518773, -0.00545580639, 0.00918627251, -0.0116926786, -0.00922124553, -0.01376775, 0.0205641929, 0.00169911061, 0.00995568093, -0.00079709565, -0.0147586558, 0.0208672937, -0.00150967285, 0.000644816842, 0.00352062704, -0.00831777323, -0.0125087183, -0.0160410032, -0.024551129, -0.00712868711, -0.00182734535, 7.06293e-05, -0.0224294253, 0.00584633928, -0.035742525, -0.00408894, 0.0103870155, 0.00655745948, 0.0315690674, 0.00326415757, -0.00669735204, -0.000250822835, -0.00109436712, -0.00184337469, -0.0202261191, 0.00285322359, 0.0012765188, 0.00626018783, -0.00882488303, -0.000720227603, 0.0272557158, 0.0203426965, 0.00761248171, 0.00301934569, 0.00114318379, -0.0212403405, -0.00252535054, 0.0196315758, -0.023758404, 0.0249708053, -0.015003467, -0.018407518, 0.0230822582, 0.000288528216, 0.00287362444, 0.0208906084, -0.0172417462, 0.0102471234, 0.00165685138, 0.0067439829, -0.0131382346, 0.000462300901, -0.0142224012, 0.00704708323, -0.00754836434, -0.00831194408, 0.023758404, 0.00616109744, -0.00826531369, -0.0122755645, -0.00875493698, 0.00239711581, -0.00181423046, 0.0133713884, -0.0318721682, -0.0103578717, -0.00135375105, 0.0161459222, 0.0184774641, 0.0288644787, -0.000497638306, 0.0161226075, 0.00639425172, 0.0165422838, -0.00552866701, -8.36076069e-05, -0.00373046589, 0.0174282696, -0.00823616888, -0.00768242823, -0.00447364477, -0.0146420784, -0.0225110296, -0.00424923375, 0.0081137633, 0.000866313232, -0.00948354322, 0.0172534045, 0.00612612441, -0.00666237902, 0.00015328062, 0.012636953, 0.0134879658, -0.00194975128, -0.0255303755, -0.00719863316, -0.00331661734, -0.00933199376, -0.0225110296, 0.00569478935, 0.0107542332, -2.36114083e-05, 0.00969921146, -0.0014936435, 0.00831194408, -0.00255449465, 0.00040874831, 0.0034798251, 0.0180344712, 0.0381673276, -0.0112438574, -0.0145021863, -0.0117043369, -0.0318022221, 0.00286633847, 0.00679644244, -0.00491955178, 0.00356434355, -0.00670318073, -0.0358591042, 0.00831194408, 0.00698879454, 0.00838771928, -0.0114012361, 0.00175302755, 0.0065516308, 0.0295639411, 0.00370423589, -0.000719863339, -0.0029581429, -0.0112438574, 0.00330787408, -0.0108649815, 0.00863253139, -0.0197248384, -0.0280950703, 0.00606200704, 0.0120074367, 0.0118966885, 0.0102879256, -0.000299821608, -0.0115353, 0.0158078484, 0.0124504296, 0.0144672124, 0.0264863074, 0.0106143411, 0.0347865932, 0.0135462545, -0.0134996232, -0.00687221764, 0.0227791574, -0.00429003593, 0.0157145876, 0.0156912711, -0.0280251242, 0.00880156737, 0.0198064428, -0.00870830659, -0.006936335, 0.0010178634, 0.00483503332, -0.0126952417, 0.00156796142, 0.00572101912, 0.0036721772, 0.0006411738, 0.00929119159, -0.0162158683, 0.0086500179, -0.0157029293, 0.00454941951, -0.016169237, 0.0126486104, 0.0196082611, -0.00801467244, 0.00812542066, -0.0184191745, 0.00467765424, -0.0245744437, -0.0077465456, 0.0101713482, 0.0226742383, 0.0102238078, -0.000213299587, -0.0114362091, -0.0249708053, 0.0121123558, 0.00028452088, -0.00836440362, -0.00905803777, 0.0250174366, -0.0157379024, 0.00337490579, 0.00924456, 0.0153298834, 0.00299020158, -0.00461936602, 0.00612029573, 0.00289402553, -0.00414722878, 0.00156067533, -0.00545289181, -0.00695965, 0.00572101912, 0.0254371148, -0.00815456547, -0.00471554184, -0.00396070536, -0.0369316116, -0.00563650066, -0.00500115566, -0.00165685138, -0.0247376524, -0.0327115208, -0.00980996, 0.00381498411, 0.0262065232, -0.0117451381, 0.0015373599, -0.0122405915, -0.0010178634, 0.0185124371, -0.01641405, -0.0113079743, -0.02891111, 0.015866138, 0.0316156968, -0.0040277373, -0.0117218234, 0.00844600797, -0.0113720922, -0.0175331887, -0.0105210794, 0.0110515049, -0.0178479478, -0.000170767176, -0.0102646099, -0.00681975763, -0.00273081753, -0.0096758958, 0.00801467244, -0.00467474, -0.0247609671, -0.0323384739, 0.0135345962, -0.00773488777, -0.0115761021, 0.00883654132, -0.000407655403, 0.00590462796, 0.00846932363, 0.0058405106, -0.00762996823, 0.0130916033, -0.010509422, -0.00208672928, 0.0173699819, 0.00408311142, 0.0269059855, 0.00119782926, -0.0278619174, 0.00247289077, -0.0012328024, 0.0227441844, 0.0160176884, 0.0174865592, -0.0111389374, 0.00658077467, -0.0128351338, 0.000434613845, -0.00623104349, 0.0232687797, 0.00421134615, -0.0200745687, 0.0494753048, -0.0048379479, -0.00445032911, -0.0135229388, -0.00829445757, -0.00311552174, -0.00313592283, 0.0159593988, 0.00431043655, -0.00354977138, -0.00701211, 0.0105677098, 0.0101888347, 0.0094602285, 0.0028517663, 0.0241780821, -0.00725109316, -0.0186173562, 0.00270895939, 0.00535380142, -0.0349031724, 0.0442293361, 0.00238108635, -0.00196578074, -0.00876659434, -0.00762996823, -0.00287216716, 0.00373338023, -0.004394955, -0.00077013718, -0.0179412086, -0.0284681171, -0.0101771774, 0.0171368271, -0.00736767, -0.0218931716, -0.0147586558, 0.00898226257, 0.0189787447, -0.00825948454, 0.00413557095, -0.000991633628, -0.000991633628, -0.00219019153, 0.00965840928, -0.0103811873, 0.00284156576, 0.00927953329, 0.0100139696, 0.0128118182, -5.22775226e-05, -0.00121531577, 0.00358474441, -0.00982744619, -0.0150617557, -0.0150151253, 0.000693997776, 0.0247609671, -0.0104977638, -0.00574433431, -0.0144788707, -0.0157262459, -0.00540917553, -0.0134763075, 0.0138959857, 0.0342503376, -0.00623104349, -0.02266258, -0.0257635303, 0.000739535724, 0.0124854026, 0.0597340837, 0.0280484408, -0.0165306274, -0.00768242823, -0.0024772624, -0.00258072466, 0.02266258, 0.00329621625, -0.0134529928, -0.00963509362, -0.0202494357, -0.0138610117, 0.00581136625, -0.00583759602, -0.0219631176, 0.0226858947, 0.00932033546, -0.026882669, 0.00955349, -0.0215900708, 0.0120657254, 0.0194916837, 0.0101655191, 0.018710617, 0.0118733728, -0.0118092559, 0.0206457973, 0.00805547461, -0.00790392421, 0.000453557615, 0.00313009392, -0.0139775891, -0.0178712625, 0.0155746946, -0.00482629, -0.00390533148, 0.00010728732, 0.0237001162, -0.00747841829, 0.0130449729, 0.000283245812, -0.00440369826, 0.000742814445, -0.00957097672, -0.0266028848, 0.00799718592, 0.0176031347, -0.00962343626, 0.000967589556, -0.000420770317, -0.0160410032, 0.00137998094, 0.00341279339, 0.00320586911, 0.0105793681, 0.0229423642, 0.0012823476, 0.00667403638, -0.0135345962, 0.00719280448, -0.0115119843, 0.0241081361, -0.000955931842]
27 Aug, 2021
Duration minusDays(long) method in Java with Examples 27 Aug, 2021 The minusDays(long) method of Duration Class in java.time package is used to get an immutable copy of this duration with the specified number of days subtracted, passed as the parameter. Syntax: public Duration minusDays(long numberOfDays) Parameters: This method accepts a parameter numberOfDays which is the number of days to be subtracted. It can be positive or negative but not null.Return Value: This method returns a Duration which is an immutable copy of the existing duration with the parameter amount of days subtracted to it.Exception: This method throws ArithmeticException if numeric overflow occurs.Below examples illustrate the Duration.minusDays() method:Example 1: Java // Java code to illustrate minusDays() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Duration 1 using parse() method Duration duration1 = Duration.parse("P2DT3H4M"); // Get the duration subtracted // using minusDays() method System.out.println(duration1.minusDays(2)); } } Output: PT3H4M Example 2: Java // Java code to illustrate minusDays() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Duration 1 using parse() method Duration duration1 = Duration.parse("P0DT0H4M"); // Get the duration subtracted // using minusDays() method System.out.println(duration1.minusDays(5)); } } Output: PT-119H-56M Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#minusDays-long-
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples
https://www.geeksforgeeks.org/duration-minusdayslong-method-in-java-with-examples/?ref=ml_lbp
Pandas
Duration minusDays(long) 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++, Duration toDays() method in Java with Examples, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, Duration toNanosPart() method in Java with Examples, 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, Duration ofNanos(long) method in Java with Examples, Sort given Array based on the fractional values, Duration parse(CharSequence) method in Java with Examples, 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.0316495337, -0.013983042, -0.00748421205, 0.00642257975, 0.0147807319, -0.0260657035, 0.00274645933, 0.0131266974, 0.00815286394, 0.00551931281, 0.0206343718, -0.0190037973, 0.00331393396, -0.0103582432, 0.00145241222, 0.0578090847, -0.00283737271, 0.0231799409, 0.0271214694, 0.0286464654, -0.024658015, 0.0228632111, 0.0122117, 0.0491752587, 0.0268399324, 0.033854913, -0.00239747, 0.0090444, -0.0490344912, -0.0248926301, 0.00941391848, -0.0111031448, 0.0145343859, 0.0359429866, -0.027966084, 0.011179395, 0.0512398705, -0.0130563127, 0.0115019903, 0.0130328517, -0.0110855484, 0.0156253446, 0.0139595801, 0.00441075815, -0.00533162104, 0.00510873692, -0.0243764762, 0.0120943924, -0.0318841487, -0.0455387309, -0.00211446569, 0.00459551718, -0.0263003185, 0.0283649284, 0.0229687877, 0.0273326226, 0.00945497584, -0.00746075, 0.00679796375, -0.0365764461, 0.0480491109, 0.0121178543, -0.00368051953, -0.0107101649, -0.00238427287, 0.00130211213, -0.00520551577, 0.0209041778, -0.0127630448, 0.00516445795, -0.0123876613, -0.0151326545, -0.00939632207, -0.00404710509, -0.0172089953, -0.0492221825, -0.000539247412, 0.0169978421, -0.00442542136, 0.00877459347, -0.0426060446, -0.0247518606, -0.0624544583, -0.0136193885, -0.00935526472, -0.0576683171, 0.00307931914, -0.0289749261, -0.0024429264, 0.00266874325, 0.0155901527, 0.0230860952, 0.0355206802, -0.0092555536, -0.0398610532, 0.0377495214, 0.00564835127, 0.0233089793, -0.0236139782, 0.00117893936, 0.0115254512, 0.00368051953, 0.0144405402, -0.0319779962, 0.0507706404, -0.00111735298, 0.00361013506, -0.0184289925, -0.007754019, 0.0204349477, -0.00158511614, 0.0214085989, 0.000602300162, 0.0137015041, 0.0190507211, 0.0314618424, 0.00918516889, -0.041972585, 0.00702084741, 0.00446061371, 0.0256199352, 0.0306641534, 0.0436618142, 0.0485183373, -0.0012581218, 0.0063287341, 0.00232122, 0.00240920065, -0.00277138711, -0.0230626334, 0.0214203298, -0.00811767206, -0.0183234159, -0.0433568135, 0.00980689842, 0.00176107732, -0.0256433971, -0.000840947381, -0.00686834799, 0.0181357227, 0.0238837861, -0.00819978677, -0.00540787075, -0.0361541398, -0.030453, -0.0257607047, -0.0102526667, 0.0456560366, 0.0100532435, 0.0125401607, -0.0532575585, -0.00921449624, -0.000997846, -0.00941978395, 0.0217487905, 0.0562606268, 0.0173263028, 0.00354268332, -0.0191211049, -0.0490814149, 0.0190389901, -0.0272622388, 0.0106045883, 0.0147220781, 0.00524950586, 0.0320718437, -0.00697979, -0.0332214534, 0.0384299, 0.0215845611, 0.00700325146, -0.0091323806, -0.0171268806, 0.0278722364, -0.00431104656, -0.00117380708, 0.0110327601, 0.0067627714, -0.0256433971, 0.00230802293, -0.0221828278, 0.0337376073, -0.0230860952, 0.0391102843, 0.00797103718, -0.0374445207, 0.00693286723, -0.0228045583, -0.0190507211, -0.011830451, -0.0404006653, 0.0226872507, 0.0159186143, 0.0617036894, -0.0182530303, 0.00803555641, 0.0234497488, -0.00467469962, 0.0056336876, -0.000356871082, -0.0722144321, -0.0489875674, 0.00118187198, -0.0202941801, -0.0308987685, -0.00355441403, 0.0184524525, -0.000416441268, 0.0457264222, 0.0106163193, -0.013971311, 0.01729111, -0.045515269, -0.0337141454, 0.0136311194, 0.0283649284, -0.0165051501, -0.0111266067, -0.0146751553, -0.0450460389, -0.0211387929, -0.0241418611, 0.020071296, -0.00836988259, -0.0553690903, 0.00812940206, -0.0356614478, 0.0374210589, -0.000384181709, -0.0283414666, 0.0226520579, 0.00573926419, -0.0169274565, -0.0397202857, 0.0167280342, 0.0195551421, 0.0149097703, 0.0217136, 0.0026262193, -0.019332258, 0.0156957302, 0.0314383805, -0.00797690265, -0.0490344912, -0.0142763099, -0.0424418151, 0.0196489897, -0.000402511, 0.0203645639, -0.0309456903, 0.0298899245, -0.0138305416, -0.0128803523, 0.00348696229, -0.0320718437, 0.0025118445, -0.00156898645, 0.0410106666, -0.0214437917, 0.00654575275, 0.0164230354, 0.0217370596, 0.010305455, 0.0133613124, -0.017818993, 0.00145754439, 0.0093904566, 0.00113055, 0.00318196299, 0.0242122468, -0.0054284, -0.0326349176, -0.0195551421, 0.0133965043, -0.0219716746, -0.0335029922, -0.0282006972, -0.0119067, 0.0816459507, 0.0190037973, 0.00747248111, 0.0244468618, -0.0232620575, -0.0267460868, -0.00519378483, -0.0208924469, -0.00917930342, 0.0103817042, -0.0346995294, 0.0136076575, 0.00963093713, -0.0393449, 0.0158130378, -0.0189216826, 0.0225112885, -0.00289749261, -0.0255964734, -0.0201768726, -0.0105400691, 0.0065105604, -0.0329868384, -0.00658681, 0.0456560366, -0.00675104046, 0.0350279883, -0.00271566631, -0.00937286112, -0.0274264682, -0.0088215163, -0.00203821599, 0.00649296446, 0.00149127026, -0.0191445667, -0.0202589873, 0.00786546059, -0.0102878585, 0.0226755198, -0.0352626033, -0.00131970819, 0.00284763705, -0.0120064123, -0.00497383345, -0.0223235972, 0.0125166988, 0.00296641071, 0.00205581216, -0.0552283227, -0.00155285664, -0.00633459957, -0.0284587741, -0.0216901377, -0.0173497647, 0.0336906835, 0.00343710673, 0.014733809, -0.00782440323, 0.0275203157, -0.0390399024, 0.0113729518, 0.0123759303, -0.0171855334, -0.00794171076, -0.00682142517, 0.0414798968, 0.00675690593, 0.0116486242, 0.00417614309, -0.017818993, 0.00334912608, 0.0454448834, 0.000605232839, -0.0253149364, 0.0361306779, -0.0169626493, -0.0114550674, -0.0161063056, -0.0228397492, 0.0129976599, 0.0121882381, 0.0303826146, 0.00378609612, 0.0344179906, 0.0211270619, -0.0236960948, 0.00859276671, -0.0625483, -0.0265818555, -0.0430987366, -0.0202237945, 0.00117380708, 0.0212912932, 0.0356849097, 0.00628767628, 0.0317668431, 0.038922593, -0.00104256952, 0.0202237945, -0.0128686214, -0.00785959512, 0.0188982207, -0.0214203298, 0.017818993, -0.0319779962, -0.0150270769, 0.0485652611, 0.00245319097, -0.0329164565, 0.0404945128, 0.02951454, -0.00412628753, -0.0210566781, 0.0417145081, 0.00905613136, -0.0252680127, 0.00187398563, 0.0201651417, -0.00440489268, 0.0229335967, 0.0196020659, -0.012962467, 0.0105811274, 0.0369987525, 0.0044518155, -0.030523384, -0.0285056978, 0.0488468, -0.0365764461, 0.010059109, 0.0416206643, 0.0094432449, 0.0056248894, 0.0445533507, -0.0459141135, -0.0197076425, -0.00279338239, -0.0407760516, -0.00608238857, 0.00734930811, -0.0243764762, 0.0594044663, 0.0101177627, 0.0308049228, -0.0192853361, 0.00949603412, 0.0216666758, 0.0197662953, 0.0183820687, -0.00668065622, 0.0130445827, 0.0162236132, -0.0287872348, 0.0310864598, 0.0224760976, 0.030523384, 0.0121413153, 0.004636575, 0.0395325907, 0.0362714455, -0.0453745, -0.00906199589, -0.0441075824, -0.0187691841, 0.0170095731, 0.018053608, -0.00048865861, 0.0104814162, -0.061281383, 0.00968959089, -0.0301714614, -0.0194964893, -0.0432395078, -0.0114433365, 0.0615629219, 0.00917930342, 0.0406822041, -0.00849305559, -0.00215845602, -0.00816459488, 0.00307931914, 0.0169861112, -0.00399138406, 0.0191211049, 0.0181709155, 0.00587123493, 0.0145226559, -0.0158013068, 0.0296318475, -0.0138188116, -0.0171855334, 0.0354502946, -0.0315556899, 0.00934939925, -0.046266038, -0.0319779962, 0.028716851, -0.00519671757, -0.0241184011, -0.0211974457, -0.045515269, -0.0276141614, 0.0152851539, 0.0381014422, 0.0147103472, -0.0137836188, -0.0150974616, -0.00639911834, 0.00209393702, -0.0192032214, -0.0517091, 0.0285760816, -0.00687421346, -0.0012903813, -0.008387479, 4.27072227e-05, 0.00287696393, 0.0133847734, -0.020094756, 0.0319076106, -0.0159538053, -0.00914411154, -0.0327756852, 0.000416074676, 0.00195756718, 0.0163761117, -0.00486532412, -0.0398375914, -0.0533514023, -0.0049474393, -0.0352156796, -0.0377729796, -0.0232972484, -0.0264880098, -0.0222062897, 0.0316026136, -0.0460548848, 0.00636392599, 0.0167984199, -0.00346643361, 0.0123407384, 0.0153789995, -0.00516739069, 0.0392979793, 0.0163409207, 0.000712275854, 0.00227576355, 0.0188630298, -0.0215728302, 0.0308518447, 0.0101412246, 0.0326818414, 0.0232737865, -0.0219599437, 0.0121647771, 0.0232972484, -0.0340191461, -0.0558383204, -0.0340191461, 0.0159303434, 0.00351628917, 0.0254087821, 0.0106163193, 0.0269337781, -0.00111735298, 0.0407056659, -0.00800623, -0.0128099676, 0.00780094182, 0.00926141907, -0.0141238105, 0.0125870835, 0.0202120636, 0.021866098, 0.00120313396, 0.00156605372, -0.027989544, -0.00246052258, 0.00367465406, -0.000176785907, 0.0133613124, 0.0211739857, 0.00851651654, -0.0135372737, 0.0012581218, -0.000736470509, -0.004765613, 0.00983622484, -0.007501808, 0.0231682099, 0.0163409207, 0.0243764762, -0.00682729064, -0.022886673, -0.00543426489, -0.0143936174, 0.00564541854, 0.00215698965, -0.0267695468, 0.0359429866, 0.00340484711, -0.00699738599, 0.00729652, -0.0117014125, 0.00844613276, 0.00537267886, -0.0331276096, -0.050113719, -0.0047568148, -0.0143584255, -0.0103817042, 0.0265349336, 0.0116251633, 0.0160241909, 0.0164582282, 0.0213968698, -0.0108333379, 0.0296787713, -0.0393449, -0.0161649585, 0.0311568435, -0.0117600663, -0.0194847584, -0.00806488376, 0.00854584388, 0.0201886036, 0.0153203458, 0.00200449023, 0.0131266974, -0.00608238857, 0.00881565083, -0.0443421938, 0.0066395984, -0.00608825404, 0.00934939925, 0.00165110163, -0.00624075346, -0.0153086148, -0.011302568, 0.00483599724, 0.00509114098, -0.0193909127, -0.00685075205, 0.0184641834, 0.0412922, 0.0404945128, -0.0250333976, -0.00451926747, 0.025666859, 0.0236139782, -0.0233793631, -0.0530698672, -0.0318606868, -0.0159186143, 0.000432204426, 0.0259014722, -0.000607065798, 0.00354561605, -0.0181709155, 0.00266727689, -0.00575392786, 0.00779507635, -0.0156957302, 0.00412922027, 0.00708536664, 0.0350279883, -0.0111500677, -0.00303532882, -0.0128803523, 0.017044764, 0.00451046927, 0.00838161353, -0.0149801541, -0.0165872648, 0.0286464654, 0.0272857, -0.00520551577, -0.00421720091, 0.038124904, -0.00877459347, -0.00870420877, 0.0463598818, -0.0191562977, -0.0133847734, 0.020094756, -0.000146267659, 0.0188630298, -0.000264858099, -0.0179011077, -0.0116075668, 0.0227224417, 0.00619383063, -0.0194261055, -0.0227341726, 0.000958254794, 0.00267314236, 0.00100737729, -0.00106456457, -0.00686248252, 0.0190389901, -0.00142235216, -0.00361893326, -0.00987728313, -0.00522897718, 0.020857254, 0.0283180047, 0.0075780577, 0.000160381198, 0.0231447499, -0.00251037837, 0.00189891341, -0.0222062897, 0.0245641693, -0.00577152381, 0.00852824748, -0.0242122468, -0.0120240077, 0.0192501433, -0.019590335, 0.0155432299, -0.0196489897, -0.0457264222, 0.0411983579, 0.0102292048, -0.0186401457, 0.0120064123, -0.00347229885, -0.0172207262, 0.00608238857, 0.022124175, 0.00990074407, 0.0371629819, 0.00730825076, 0.00387407676, -0.00544013036, -0.0107101649, -0.0310864598, 0.0260187797, -0.00940805301, -0.0229687877, 0.0317668431, -0.019343989, 0.00907372683, -0.025666859, 0.00095238944, -0.00773642259, -0.00339898188, 0.0163291898, 0.043497581, -0.00061256456, 0.0209393706, 0.000954588933, -0.0259718578, 0.0317433812, 0.0178776477, -0.00466590188, -0.0393214375, -0.0281303134, -0.0227107126, -0.0134316972, 0.033854913, -0.0219716746, 0.0035074912, 0.00142015261, -0.02695724, 0.000769829785, -0.0133847734, -0.0178893786, 0.01982495, -0.0110855484, -0.0178659167, 0.0164464973, -0.0141941952, -0.00128378277, 0.00777161494, 0.0101294937, -0.0249864757, -0.0258310884, 0.0123055456, -0.0203176402, 0.0188630298, 0.00201328821, -0.00633459957, -0.00209247065, -0.0363887548, -0.0170799568, 0.0125988144, 0.0199657194, -0.0126574682, -0.0168453418, 0.013466889, -0.004636575, -0.00511460239, -0.0104110315, 0.00180506753, 0.00500609307, 0.0455621928, 0.0122468919, -0.00817046, -0.0144288093, -0.000458598603, 0.0040705665, -0.0153907305, -0.0154141914, 0.000923062558, 0.00927315, -0.00600613886, -0.0392510556, -0.0314149223, 0.0030118674, -0.00321422261, 0.0181474537, -0.0295849256, 0.0258076265, -0.023121288, -0.0214907154, 0.0105518, 0.011326029, -0.0207164865, -0.050348334, 0.00174641388, -0.0347464494, 0.0137836188, 0.0163526516, 0.0031262422, 0.00446061371, 0.00888017, 0.0157895759, 0.0212678313, -0.00143774878, -0.00331393396, -0.00509993918, 0.00345177017, 0.0184993763, -0.0230509024, -0.0144288093, 0.0128920823, 0.0275907, 0.00121046568, 0.0138422726, -0.0176078398, -0.000751500484, 0.0238368623, -0.0281068515, 0.0320014581, -0.00143188343, 0.00214086, 0.0086279586, 0.00135563361, 0.00382128847, -0.0240714774, 0.007842, 0.0228632111, -0.0128686214, -0.0264410861, -0.00671584858, 0.00525830407, -0.00722613558, 0.0155549608, 0.0173145719, -0.042957969, 0.00343710673, -0.00947843771, -0.00385941332, 0.00666892529, -0.0158834215, 0.00687421346, 0.0179245695, -0.0293972325, 0.00293561746, -0.0226755198, 0.00891536195, 0.0204936024, 0.010428627, 0.0125518916, 0.0366468318, 0.0146516934, 0.00302066538, 0.0183468759, -0.0266522411, 0.0311099216, 0.00628181081, 0.00853997841, 0.0086279586, -0.0197662953, -0.0144522712, 0.0257372428, -0.0288341586, -0.0124815069, -0.0166693814, 0.00284323795, -0.0463364199, 0.0108509343, 0.0598736964, 0.0285526197, -0.00478027621, 0.00016578834, 0.00389460544, 0.0171620715, -0.00296494435, 0.0608121529, -0.0433098897, 0.0577621609, -0.0346291438, -0.0201768726, 0.0176782254, 3.57879217e-05, 0.0171151496, -0.0228514802, -0.0494567975, 0.0267930087, 0.00218191766, 0.0186636075, 0.0224643666, 0.00109389145, -0.0480021872, 0.0351452939, -0.0135020809, 0.00984795578, -0.0309456903, 0.0228984039, -0.0351452939, 0.00591522548, 0.00781853776, 0.00373037509, 0.00641671475, 0.00661613699, 0.000564908434, 0.00905613136, -0.0238251314, -0.0138657345, 0.0290453117, -0.0184289925, 0.010416897, 0.00493864156, -0.00204408146, 0.0242122468, -0.0349106826, -0.028482236, 0.0258310884, 0.000931860646, -0.00638738787, -0.00164963526, -0.0125636216, -0.0262768567, 0.0106632421, 0.00111368706, -0.0238603242, -0.0152030382, -0.00637565693, 0.0216549449, 0.0119829504, -0.0129390061, 0.00167163042, 0.0307814609, 0.0038887402, -0.0175257251, -0.00830536336, -0.0123407384, 0.0237430166, -0.0505829491, -0.0185111072, 0.0161180366, 0.0165520739, 0.0198132191, 0.0051234006, -0.0295849256, -0.00376556744, -0.0169039965, 0.0383595191, -0.0210449472, -0.0230860952, 0.0199422576, 0.047791034, 0.00370691367, -0.00211006682, -0.0179832242, -0.0344179906, -0.0233910941, 0.00192677393, 0.0263941642, 0.0375618264, 0.00324061676, -0.0244703218, 0.0195082203, 0.0102350703, 0.0011202856, 0.00338431844, 0.00771296117, -0.0133261206, -0.0100767054, -0.00176547631, -0.0115430476, -0.020094756, 0.0245641693, -0.0574337021, 0.00396499, 0.00761325, -0.008141133, -0.028716851, -0.0304060765, -0.0166459195, -0.00414681621, 0.00957228336, -0.0211036, 0.0116779516, 0.0177016854, 0.00522311172, 0.0196841806, -0.0159889981, 0.0245876294, 0.00529936142, 0.00289895898, -0.0187926441, -0.00422013365, -0.0454683453, -0.019320529, -0.00501782401, 0.0244937837, 0.0196489897, -0.01729111, -0.00521138124, -0.0361776, 0.0194964893, -0.0424887389, -0.0453745, 0.0313445367, -0.000121523131, -0.0019077115, 0.0243999381, -0.0194730274, 0.000446501275, -0.000577372324, -0.0508175641, -0.0058771004, -0.012469776, -0.0255964734, -0.00337258773, -0.0244234, -0.0173263028, -0.00766603835, 0.0139243882, 0.00672171358, -0.0375149064, -0.0169509184, -0.0165755358, 0.00152352976, 0.00529056368, -0.00475974753, 0.00880392, 0.00610585, 0.0135959275, 0.00575392786, -0.0161532275, 0.0168688037, 0.00144434732, -0.0010997568, -0.0168218799, -0.0225112885, -0.0129272752, -0.00285056978, -0.00333153014, -0.0140534258, 0.0162353441, 0.0142880408, -0.0120826615, -0.0273091625, -0.0292564649, 0.0238134, 0.00705603976, 0.0244468618, 0.00930247642, -0.00940805301, -0.010798146, 0.00897401571, -0.011707278, 0.0141003486, -0.00308518461, -0.0134082353, 0.0153320767, 0.0203762949, 0.00283297361, -0.00585657172, -0.0254087821, 0.00994180143, -0.0120592006, 0.0014656093, 0.0263472404, -0.0140416948, -0.00445474824, -0.000967786, 0.00119873497, -0.0286230054, -0.0381014422, -0.0144522712, -0.000279154949, -0.00939632207, -0.0193909127, -0.0102174738, 0.0101118973, -0.0100121861, -0.00664546387, 0.0267695468, -0.0126574682, 0.0275203157, -0.0206226408, 0.00106676412, -0.00398845132, -0.00439022947, -0.0215376373, -0.0091969, -0.00582137937, -0.0167984199, -0.00772469211, -0.00741969282, 0.0378433652, 0.0130680436, -0.0333856866, -0.0105224736, 0.0119067, -0.0116427587, -0.0100884363, 0.0209745616, 0.0106515111, -0.0332918391, -0.013466889, 0.00566594722, -0.00595041784, 0.00599440793, 0.00192970666, -0.00863969, 0.0180418771, 0.00560729345, -0.00926141907, -0.0321891494, 0.0304764621, -0.012727852, 0.0115254512, -0.020833794, 0.0148511166, 0.00636979146, 0.00836988259, 0.0140768876, 0.0236609019, -0.00529936142, 0.0152147692, 0.0147220781, -0.014499194, 0.00432864297, 0.0192853361, -0.00645777211, -0.0307345372, -0.0265583936, -0.0116544897, 0.0176195707, -0.00683902111, 0.00352801988, 0.00225816737, -0.0164934192, 0.0220537912, 0.0256199352, 0.0114667984, 0.00678623281, 0.0114843938, -0.0437087342, -0.00192090857, -0.0115254512, 0.00895055383, -0.0176782254, -0.0239659, 0.0147690009, -0.017807262, 0.00219364837, -0.00594161963, -0.00487705506, -0.0155901527, -0.00855170935, -0.0192032214, -0.00705603976, 0.000237364176, -0.0123759303, 0.0120826615, -0.00108875928, -0.00355734676, 0.0260891654, -0.000672318, -0.020857254, 0.0154963071, 0.0124111222, -0.0142880408, 0.0318372287, 0.00553397648, 0.00571287, -0.00253530615, 0.00324061676, -0.00617036922, 0.000170737243, -0.011695547, -0.042723354, -0.00499436259, -0.0214789845, -0.0131853512, 0.0123524684, -0.000706410501, 0.0194730274, 0.00597094651, -0.0196372587, -0.0161649585, -0.0147103472, -0.0208103321, 0.00169362547, -0.0369987525, 0.00108216074, 0.00610585, -0.0137484269, 0.0104638198, 0.00261742133, -0.00183586078, 0.00558089931, 0.0118128546, -0.0107453577, 0.0299133863, 0.00500609307, 0.0232151337, -0.0109154535, 0.0169039965, 0.0170095731, -0.00890363101, 0.0147220781, 0.011965354, -0.00668065622, -0.0186987985, -0.00469816104, 0.0129976599, -0.0169743802, 0.0008299498, -0.00804142188, 0.0108861262, 0.00899161212, -0.0115489131, -0.0251976289, -0.0176782254, -0.0101529555, -0.0111383377, -0.00848719, -0.0405883603, 0.00408523, 0.00209100428, -0.0110738184, -0.0442718118, 0.00716161635, 0.0166107267, -0.0389695168, 0.0183703378, 0.018581491, -0.00130284531, -0.00412042206, -0.0149332313, 0.00709123211, 0.00686834799, 0.00926141907, 0.0186518766, -0.0285056978, -0.0230860952, 0.0182413, -0.00733171217, -0.0229805186, -0.00739623141, 0.0100767054, 0.0100943018, 0.00296054548, -0.0122351609, 0.00667479075, 0.0135724656, -0.022112444, 0.0453510396, 0.00372744258, -0.0443656556, -1.51331124e-05, -0.0165755358, -0.0051996503, 0.000644824118, -0.037890289, -0.0136780422, -0.0183820687, -0.0162236132, -0.0257137809, -0.0223470591, -0.000934793323, 0.0140299648, 0.00896815, -0.0148628466, 0.00550171686, 0.0158716906, 0.00737277, -0.013736696, -0.0145813096, 0.0103113204, 0.028740311, -0.0468760356, 0.00374797126, -0.00286523323, -0.0229218658, 0.00170828891, 0.027708007, -0.000563808659, -0.0254791658, 0.00317903049, -0.0121413153, -0.00509407371, 0.0117307398, 0.003879942, -0.003815423, 0.000263575057, 0.00747834658, -0.00206900924, 0.00112395152, -0.0012295281, 0.0165520739, -0.000310864591, -0.00909718871, -0.00736690452, 0.00282417564, -0.0177720711, 0.0142880408, -0.0177955311, 0.0140534258, 0.0128451595, -0.0161766894, 0.0174436104, 0.00105869921, 0.0297022332, -0.00758392317, -0.0266053174, 0.0016804284, 0.0226168651, -0.0224174429, -0.0341364518, 0.00743728876, 0.011572375, 0.00285496865, 0.00095752161, -0.0055721011, -0.0267226249, -0.0225347504, -0.00500316033, 0.000564541842, 0.0237195548, -0.00140328973, -0.00669825217, 0.0142059252, 0.053163711, -0.0168336108, -0.0142059252, 0.00604133075, 0.00137396285, -0.0233441722, -0.00670998311, -0.0113436254, -0.0108568, -0.0155432299, 0.00209247065, -0.0236257091, 0.018053608, -0.0002192182, 0.00603546528, 0.014487463, -0.017537456, -0.0201416798, -0.00472455518, -0.0184993763, 0.00375676923, -0.0284118503, -0.00676863687, -0.0230391733, 0.00673931, 0.00895055383, 0.0264176261, 0.00315556885, 0.0247049369, -0.000134995149, -0.0150270769, 0.00789478794, -0.00333446264, 0.00682729064, -0.007759884, 0.0107512232, 0.00541080348, -0.0123290075, -0.00205141306, 0.0212561, 0.0300776158, -0.0135138119, 0.0029429493, -0.0201299489, 0.0299368482, 0.00723786652, 0.00785373058, 0.00536681339, -0.0278487764, -0.0183234159, -0.00447234465, 0.0100180516, -0.0190272592, -0.00483599724, -0.011191126, 0.02949108, 0.0168453418, -0.0099476669, -0.00139302528, 0.00105869921, 0.00619969564, -0.00793584529, -0.0283883903, 0.0341599137, 0.00343124126, 0.00934939925, -0.0259014722, 0.011560644, -0.0284353122, 0.0275203157, 0.00348109705, 0.0124228531, -0.0114902593, 0.00749007706, 0.00543426489, -0.0117659317, 0.0127630448, -0.014487463, 0.0140651567, -0.0156488065, -0.00256756553, -0.00652815634, -0.0156370755, -0.0306641534, -0.00585070625, -0.00959574524, 0.0149097703, -0.00997112878, 0.000890069874, -0.0152734229, 0.0103817042, -0.0457968079, -0.0203645639, 0.020587448, -0.0266522411, 0.00473921886, 0.00101397582, 0.00910305418, 0.00150153472, 0.0278956983, -0.0103641087, 0.0593575425, 0.00853997841, 0.0331979915, -0.0138188116, -0.00210420135, -0.00436383532, -0.0283414666, -0.0092027653, 0.00511753513, -0.0128686214, 0.00156605372, -0.00643431069, -0.014229387, -0.0240245555, 0.0083170943, -0.0101236282, 0.0136780422, 0.013220543, 0.0146986162, 0.0151561154, 0.0130093899, 0.00043660347, 0.00916170795, -0.0063815224, 0.0139478492, 0.00242533046, 0.0149918851, 0.00257196464, 0.0157426521, 0.000318196311, 0.00667479075, 0.012716122, -0.0173145719, -0.0154141914, 0.00813526753, 0.0132791968, 0.0211387929, -0.0105928574, -0.00788892247, 0.00190037978, 0.0384299, 0.0145695787, -0.00448407512, 0.00954882242, 0.00560142798, -0.0175139941, -0.0232385956, -0.0123759303, 0.0200126413, 0.0189686064, -0.022886673, -0.0205170643, -0.0140768876, -0.0120240077, 0.0162470751, 0.0140065029, 0.0382187478, 0.0383595191, 0.0297726169, -0.00727892388, 0.0583252385, 0.00120313396, -0.0190859139, -0.034840297, 0.0158013068, -0.00173468306, 0.00399724953, 0.0347933732, -0.0288810804, 0.00338431844, -0.00313210743, 0.000531549158, 0.027708007, 0.00117454026, -0.00926728453, 0.00940805301, -0.0155901527, 0.0107277613, -0.0140299648, -0.029233003, -0.0377495214, 0.00873940066, -0.0201416798, 0.0128803523, 0.0140065029, -0.0165989958, -0.0151913073, 0.0098948786, -0.0222180206, -0.00902093854, 0.0338314511, -0.0302183852, 0.0281303134, -0.0100121861, -0.0063815224, 0.0102819931, 0.000390047091, 0.0114843938, 0.0151326545, -0.00346350088, -0.00780680729, -0.00352801988, -0.0257372428, 0.0116779516, 0.0321422257, -0.0204818714, -0.00189451443, 0.0135255428, 0.00330220326, -0.0192736052, 0.0107746841, 0.0133495815, 0.00382128847, 0.01475727, 0.0242122468, -0.0175843779, -0.00423479686, 0.00178893784, 0.0388991311, 0.0424183533, -0.00309984782, 0.00683902111, -0.0012463911, 0.0133847734, -0.0202589873, 0.00115401146, -0.0349810645, 0.0110327601, 0.0190976448, -0.0113436254, -0.00457205577, 0.0178659167, -0.0213030223, 0.0123876613, -0.00597387925, -0.0191211049, 0.0175961088, -0.0120122777, -0.0119360276, 0.019836681, 0.017056495, -0.00259689242, -0.0179363, 0.00845199823, -0.0145930396, -0.0191211049, -0.00721440464, -0.00465710368, 0.0147807319, 0.0324472263, 0.00220684544, -0.00767190382, 0.0325410701, 0.0092555536, 0.0193674508, -0.0276376233, 0.0160359219, -0.0104051661, -0.022370521, -0.0127395829, 0.0079534417, 0.000829216675, -0.00986555219, 0.0164230354, -0.00110635534, -0.0173614938, -0.011584105, -0.00275379117, 0.0102995895, -0.026464548, 0.00566888, 0.0276610833, 0.0348168351, -0.00648709899, 0.0144288093, -0.0116017014, 0.00583017757, -0.0122234309, -0.00479200715, 0.00245612371, 0.0315087661, 0.0224643666, -0.000475461537, 0.0154024614, 0.000847545918, -0.0112673752, 0.0104931463, 0.0237195548, -0.01856976, 0.00123979256, 0.00101984118, -0.0175961088, 0.0050618141, 0.00466296915, 0.00544599583, -0.023133019, 0.0188747607, -0.00560436072, 0.00990074407, -0.00649296446, 0.00652229134, -0.0157074612, 0.027473392, -0.0105166081, -0.0265349336, 0.0123172766, -0.00740796188, -0.0141472723, -0.0175491869, -0.0105459346, -0.00944911, 0.000361270126, 0.00686834799, -0.00200302387, 0.00289162737, -0.018065339, -0.0208103321, 0.0282945447, -0.000573706464, -0.00215698965, 0.0117952591, -0.0249630138, -0.00624075346, -0.0145461168, 0.00185932219, -0.011326029, -0.00965439901, 0.0146634243, 0.0116134323, -0.00535508245, -0.0123290075, 0.00247518602, 0.0292095412, 0.0181709155, -0.0257841647, 0.00535801519, -0.0020660765, 0.0141941952, -0.00848719, 0.00634046458, 0.0123172766, 0.0126105454, 0.0144640021, -0.00579498522, 0.0236022472, 0.008768728, 0.00323181879, 0.00908545777, 0.0123876613, 0.0210449472, 0.0224409048, 0.0226168651, 0.0304295383, 0.0289280042, 0.0185580291, -0.0116544897, -0.0050618141, -0.000363652915, -0.0026834067, -0.00546945725, -0.00413508574, -0.00933180377, -0.00678623281, -0.023367634, 0.00464244, -0.0166107267, -0.0163643826, -0.0121530462, -0.0150622698, -0.00687421346, -0.0171503406, -0.00987728313, -0.0151209235, 0.011314298, 0.0077012307, -0.0240949392, 0.00592402369, 0.0262768567, -0.020341102, 0.0125636216, -0.0360133722, -0.00973651372, -0.000898867904, -0.0122703537, 0.000431471271, -0.00665132934, 0.0242591687, 0.00356321223, -0.00890949648, 0.000238463937, 0.016774958, -0.0140651567, 0.0132557359, -0.010035648, -0.00492397789, 0.0353329889, -0.00163057283, -0.0227928273, 0.0209511016, 0.0118245855, -0.00672171358, -0.0183820687, -0.00671584858, 0.0115313167, -0.0288341586, -0.0229218658, -0.0376087502, -0.0166459195, 0.0158364978, -0.00495623751, 0.00387407676, 0.018827837, -0.0152030382, -0.0183351468, 0.0206226408, -0.00523484265, -0.00558676478, 0.00441662362, -0.000977317221, 0.013983042, -0.0123759303, 0.00463070953, -0.0113729518, 0.000886404, 0.00805315282, -0.0225230195, 0.00249278219, 0.002825642, -0.00211446569, 0.0200478341, 0.0231095571, 0.0157426521, 0.0207751393, -0.0154963071, -0.00873353519, 0.0062524844, -0.0173849557, -0.0171738025, 0.000916464, -0.0169509184, 0.00447820965, 0.0148159238, 0.0201416798, 0.0439668112, 0.00118040561, 0.00858690124, -0.0131032364, 0.0237078238, -0.00817632582, -0.011449202, 0.00924968813, -0.0211387929, 0.00447234465, -0.00422306638, -0.00578618748, -0.0106632421, 0.00221564341, -0.0019605, -0.0217722524, 0.0117248744, -0.0244937837, -0.000267424213, -0.0110738184, 0.0183703378, -0.00474801706, -0.0132440049, -0.00902093854, -0.0175139941, -0.015003616, -0.00272006518, -0.00997112878, 0.0324706882, -0.00582137937, 0.0160359219, 0.00220977818, -0.00373917329, -0.0200243723, 0.00364239467, 0.00467469962, 0.00456325756, -0.00472162245, -0.00501489127, 0.00592402369, 0.00237987377, 0.0105987228, -0.000403610757, -0.023895517, 0.00592988869, 0.00717921276, -0.0119712194, 0.024165323, -0.00913824607, -0.00939632207, 0.00700911693, -0.00504715089, 0.000500755967, 0.00814699847, 0.00824671, 0.00291215605, 0.0176078398, -0.00421133544, -9.66869538e-06, 0.0140534258, -0.0178541858, 0.000276405539, 0.00151619804, 0.00354854879, -0.0303591546, -0.0173263028, 0.00760738458, 0.00557503384, 0.00249424856, 0.00459258445, 0.00774228806, -0.0339018367, 0.0015953806, 0.00492691062, -0.00537854386, -0.00550758233, -0.00402657641, 0.00528469821, 0.0146634243, -0.00724959699, 0.00226843171, -0.0165168811, 0.0010103099, -0.0232385956, -0.0182764921, -0.00824084412, 0.0121061234, -0.0100532435, 0.00968372542, -0.0126809292, 0.000147184124, 0.000516885717, -0.0256433971, -0.0258310884, -0.000292718614, -0.00226549897, 0.0189451445, 0.00211739843, -0.0233441722, 0.022112444, -0.00944911, -0.00774228806, -0.0138070807, -0.0106163193, -0.00366292335, -0.00100224512, -0.00280218036, 0.00181973097, -0.0381014422, -0.00619383063, 0.00442248862, -0.013983042, 0.0122703537, 0.0110503566, -0.0308518447, 0.0212091766, 0.023649171, -0.0214437917, 0.0437087342, 0.00253970502, -0.000653622148, -0.00434623891, 0.00324354949, -0.0251272433, -0.0186987985, -0.0195316821, 0.00867488235, 0.0139243882, 0.01181872, 0.0175491869, -0.00792411435, 0.0215376373, -0.00524950586, -0.0206930246, -0.00743728876, 0.0031291747, -0.00769536523, -0.0218309071, 0.0174318794, -0.00842853636, -0.0110327601, 0.00609411905, 0.00568354316, 0.0356614478, 0.0231095571, -0.000233148443, 0.00623488799, 0.0129038133, -0.00413801847, -0.00970132183, -0.0119125657, -0.0105342045, -0.0110503566, 0.00534041924, -0.000190807812, -0.0272387769, 0.0120357387, 0.0235905182, -0.0188043751, 0.00526710227, -0.0126222754, 0.000177335794, 0.00956055243, -0.0131736202, -0.0302887689, 0.0313210748, 0.00879218895, -0.00877459347, 0.0133965043, 0.018816106, 0.014475733, 0.00598267699, 0.00173028407, -0.00027127334, -0.00418200856, -0.00293268496, -0.0148863085, 0.0178307239, 0.0256433971, 0.0144405402, 0.013208813, -0.00391806709, 0.0025690319, 0.00460724812, 0.0267226249, -0.00917930342, 0.0141120795, 0.013971311, -0.00601200387, -0.00978930201, -0.00825844053, -0.00991247501, 0.00192677393, -0.0368345231, 0.0111969905, 0.00555450516, -0.0097071873, 0.0239307079, 0.0121178543, 0.0267695468, 0.00333446264, -0.00564835127, -0.00641084928, -0.00650469493, 0.0208924469, -0.00946670678, 0.0116720861, 0.00439902721, 0.0262299329, -0.0148511166, 0.00662786793, 0.0244937837, 0.0238368623, -0.0069445977, 0.00773055758, 0.0219012909, 0.00106529775, -0.00363946194, -0.0129272752, 0.0210684091, 0.00909718871, -0.0144522712, 0.00861622859, 0.00440782541, 0.00968959089, -0.00953122601, 0.0259249341, -0.00471282471, 0.011941893, 0.0209980235, -0.00443128683, -0.0184759144, -0.0164816882, 0.0220185984, -0.0140065029, 0.00234614802, 0.0227224417, -0.0187457222, -0.00331393396, -0.00398845132, 0.00277871895, -0.00399724953, 0.0121530462, 0.00162617373, 0.0163057279, 0.00779507635, 0.0243060924, -0.0174788013, -0.0146634243, 0.0104931463, 0.0070149824, -0.00676863687, 0.0277314689, 0.0176547635, 0.00177427439, 0.00348402956, -0.004132153, -0.00830536336, -0.0100884363, -0.0117659317, 0.0179714933, -0.000586537, -0.000621729181, -0.0115137212, -0.034347605, -0.0173497647, -0.000137103023, 0.00619383063, -0.00824084412, -0.00903853495, 0.0065809451, -0.0246345531, 0.00448700786, -0.00937872659, -0.0163995735, -0.00425239326, 0.00802382547, -0.0273091625, -0.00673344452, -0.0106573766, -0.0119242966, 4.74270128e-05, -0.00223910483, 0.0123290075, 0.00290775718, -0.0374210589, -0.00117454026, 0.00577152381, 0.00966612902, -0.00273912773, -0.0127513139, -0.0093904566, -0.00648123352, 0.0111969905, -0.0123407384, -0.000213902706, -0.0130797746, 0.011953624, -0.00822324865, 0.00477734348, -0.0172676481, 0.0160007291, 0.0352626033, 0.013232274, -0.0313914604, -0.0213734079, 0.0118715083, -0.0167397652, -0.0207399484, -0.00266581052, 0.0174436104, -0.0239189789, -2.68982185e-05, -0.0120709306, -0.00272886339, -0.00409989338, 0.0270745475, 0.00668652169, -0.0423714295, -0.0259953197, 0.0160359219, -0.0201768726, 0.0212443694, -0.00494157383, 0.004513402, 0.0014164868, -0.0122468919, 0.0102643967, 0.0192853361, 0.00495037204, -0.00656921417, 0.00649296446, 0.0135959275, -0.00655748323, 0.00365412538, 0.00139742438, 0.0225347504, -0.00777161494, 0.00383595191, -0.0259249341, -0.00200302387, -0.00921449624, -0.00130284531, 0.00800623, 0.00218924927, 0.00768949976, 0.00264088274, 0.0167514961, 0.0148511166, 0.00648123352, -0.00147880637, -0.0224995576, -0.00934939925, -0.0203880258, -0.0164347664, 0.0108568, 0.0145930396, -0.000865142036, -0.019320529, 0.0204232167, 0.0143349636, 0.00784786511, 0.00888017, 0.0383125953, -0.0271683931, 0.00667479075, 0.0111617986, 0.00566888, -0.00827017147, -0.00924382266, 0.00229775859, -0.0100121861, 0.0138070807, -0.0183351468, 0.0175961088, 0.0181474537, -0.00119067007, 0.00415561441, 0.00818219129, 0.0203880258, 0.0108861262, -0.00965439901, 0.0202824492, -0.0199539885, -0.0344649144, -0.0053814766, 0.0263472404, 0.0131032364, -0.000342757558, -0.0115665095, -0.0299368482, 0.00144947949, -0.019590335, 0.00853997841, -0.00314383814, 0.0184524525, -0.0162470751, 0.0285995435, -0.0162001513, -0.00107776164, 0.00751353847, -0.00170388992, -0.00102424016, 0.0070677707, 0.0160007291, 0.0139243882, 0.0220655203, -0.00592695596, -0.00753113488, 0.0133495815, -0.00268927193, -0.00604133075, -0.00147734, -0.0104462234, -0.00928488, -0.01856976, -0.000996379647, -0.0285056978, -0.00201915344, 0.00998872519, -0.00309984782, -6.96970892e-05, 0.0173145719, -0.000574073056, -0.00112908368, 0.00318489573, -0.00137322966, -0.0142763099, 0.00415268168, -0.00236227759, -0.000324061693, 0.00990074407, 0.00791238341, -0.00774815353, -0.0107746841, 0.00761911552, 0.0247518606, -0.0176899545, -6.85056875e-05, 0.0118949702, 0.0184759144, -0.00611171545, -0.0246110912, 0.00713815494, 0.00980103295, -0.0248691682, 0.00100517774, 0.00699152099, 0.00963093713, -0.00457205577, -0.0226872507, 0.0222532135, 0.0243295543, 0.00072217366, 0.02235879, -0.00209393702, 0.0117248744, 0.00717921276, 0.00743728876, 0.0159772672, 0.00867488235, 0.00524657313, 0.0173263028, 0.0410341285, 0.00484186271, 0.0068155597, -0.00486532412, 0.00431104656, 0.00830536336, -0.0178307239, -0.00289162737, -0.0205287933, 0.00469816104, -0.00182559632, 0.00680382876, -0.00137836195, -0.0309222303, 0.0126691991, -0.00289455988, -0.0305468459, -0.0242122468, -0.00827017147, 0.0129155442, -0.000299867039, 0.010182282, 0.00969545636, 0.00340484711, 0.0249160901, -0.0222414825, 0.0034459047, 0.0054284, -0.00880392, 0.0119770849, -1.64161611e-05, 0.00484479545, 0.00552517828, 0.0206578318, -0.00581844663, -0.0188043751, 0.00622315751, -0.0134551581, -0.0134551581, -0.00201768731, 0.011695547, 0.0187222604, 0.0138188116, 0.00545772677, -0.0143701555, 0.0095840143, -0.00749007706, 0.00596214831, -0.0151913073, 0.000513219857, 0.00364239467, 0.0107512232, -0.00521138124, 0.00780680729, 0.0327522233, 0.00743142329, -0.0138422726, 0.0199539885, 0.00714988587, -0.0165051501, 0.01729111, -0.0408933572, -0.000504055235, 0.00247225328, 0.0161180366, -0.00906786136, -0.00349576049, -0.0126105454, 0.000602300162, 0.0131032364, -0.0272857, -0.0216197539, 0.00186078856, -0.0155549608, 0.0150270769, 0.00781267229, -0.0155314989, -0.0105928574, 0.0144405402, 0.0125401607, 0.00631113769, 0.00327874161, 0.0154141914, 0.0334795304, 0.00303826155, -0.011056222, 0.0173263028, 1.05221525e-05, -0.0186753366, 0.0118656429, 0.00419080677, -2.58041905e-06, 0.00536388066, 0.0116134323, 0.00805901829, 0.00569820683, -0.00542546716, 0.012458045, 0.0211857148, 0.0241887849, 0.00802969094, 0.0197076425, -0.00621729204, 0.0163995735, 0.00478320895, 0.00707363617, -0.000726206112, 0.00737277, -0.0120826615, -0.00479200715, -0.00206021103, -0.00868074689, 0.000216102213, -0.004636575, 0.000835082, 0.00818805583, -0.0187105294, -0.00565128401, -0.008387479, 0.0331510715, 0.000749667583, -0.0150740007, -0.00283004087, -0.00850478653, 0.0053286883, 0.0319545344, 0.0155666918, -0.0169509184, 0.0139478492, 0.0176664945, -0.0013439029, 0.0103406468, -0.0030001367, 0.00539907301, 0.00688594393, -0.00286376686, 0.000271456636, 0.0125988144, -0.0163174588, 0.0115313167, 0.00946084131, -0.0230860952, -0.0115019903, -0.00255143596, -0.00512633333, 0.0104990117, 0.00723200105, 0.0166224577, -0.0109799718, -0.0165051501, -0.0114843938, 0.00605892716, 0.0359429866, 0.00741969282, -0.0027142, 0.0139595801, -0.013994772, 0.0211974457, -0.0120357387, -0.0019971584, -0.0140768876, 0.010674973, -0.0097599756, 0.0186636075, -0.0137718879, 0.0149215, -0.0209276397, 0.00516739069, 0.0141707333, -0.0120005468, 0.00300600193, 0.000843880058, -0.00340777985, 0.0123876613, 0.0210566781, -0.0229687877, 0.00990661, -0.00483013224, 0.00307052117, 0.00259249355, -0.0151795773, 0.0221710969, -0.00990074407, -0.0206812937, 0.00536681339, -0.0123759303, 0.00797690265, 0.00636979146, 0.0207516775, -0.0189334136, -0.00404417235, 0.0117190089, 0.00429931609, -0.0060765231, 0.00286083412, 0.0020660765, 0.0189451445, -0.00263355114, 0.00302359811, 0.00347523158, -0.0128216986, 0.0164113045, -0.020833794, 0.00247225328, -0.0290218499, -0.031039536, 0.0168922655, 0.00985968672, 0.0321656875, 0.0219834056, 0.00219804724, 0.00266874325, -0.0108274724, 0.000841680565, -0.0118069891, -0.00295614637, -0.0247753225, -0.0157191902, -0.0275907, 0.0396733619, -0.00560142798, 0.0083346907, -0.00305585773, 0.00521431351, 0.0088215163, -0.000719241, -0.0161532275, 0.00938459206, -0.0101588201, 0.0227810964, 0.0019605, 0.015238231, -0.00929661095, 0.0113905482, 0.00892709289, -0.00645777211, -0.00119067007, -0.0210214853, -0.0251507051, -0.0159186143, 0.00655161822, 0.00471575744, 0.00522897718, -0.0217487905, 0.0258545503, 0.000664619729, 0.00486825686, -0.00579498522, 0.0111324722, -0.017044764, -0.00133803743, 0.0220772512, -0.0266522411, 0.00918516889, -0.015766114, 0.00618209969, -0.00279191602, -0.00645190664, -0.00161737576, -0.00915584248, 0.0217253305, 0.0305937696, 0.00301773264, -0.00665719481, -0.012458045, 0.0337141454, -0.00186518754, -0.00673931, -0.0090444, -0.00112321833, -0.00400604773, -0.00845199823, -0.019062452, -0.014733809, 0.0434037372, -0.0144405402, 0.0152030382, 0.0126809292, 0.012974198, -0.0232855175, -0.00221124431, 0.0289045423, -0.00608825404, 0.0163526516, -0.00906786136, -0.0290922336, -0.00943738, -0.0108509343, 0.0170799568, -0.00860449765, -0.0179245695, 0.000860009866, 0.00298254052, 0.0327756852, -0.0177603401, 0.00155725563, 0.00201915344, 0.0107277613, -0.0227459036, 0.0108450688, -0.00315263635, 0.00657507963, 0.00514392927, 0.00537267886, -0.0063287341, -0.000243779432, -0.0231682099, 0.000590202806, 0.0194847584, -0.00748421205, -0.00483306451, 0.00812940206, -0.0243764762, -0.0272857, 0.00331100123, -0.00340484711, 0.00114667974, -0.00143408286, 0.00897988118, 0.0192384124, 0.0216432139, -0.00830536336, -0.0300541539, 0.00220831181, 0.000896668411, 0.0154259223, -0.00560729345, 0.0166811123, -0.0278722364, -0.00812940206, -0.0285526197, 0.0102702621, -0.00801796094, 0.00227576355, -0.00600320613, -0.00485945866, 0.0122468919, 0.0083170943, 0.0141472723, -0.0107746841, 0.0190859139, -0.00357787567, 0.00827603694, -0.00365119264, 0.00558969751, -0.0198953338, 0.0125518916, 0.00544892857, 0.0161180366, 0.00365119264, -0.00917343795, 0.0224291738, 0.000340558036, 0.0146751553, 0.00886257365, 0.0175257251, -0.00583604304, 0.0195434112, 0.0259014722, 0.00276112277, 0.00929074548, -0.00495917024, 0.00523191, 0.0112497788, -0.00378316361, 0.0169743802, -0.00235347962, -0.00537267886, 0.0048799878, 0.0126691991, -0.0036893175, 0.00225376827, -0.0167163033, -0.0103171859, -0.00262328656, 0.0224878285, 0.00773642259, 0.00489465101, -0.0139595801, -0.00554277422, -0.0146751553, 0.0133495815, 0.0160711128, 0.00869247783, -0.00204994669, 0.000551344769, 0.00622902252, -0.0162001513, -0.0081939213, -0.0104872808, -0.00331100123, 0.00592109095, 0.00299867033, -0.0227107126, 0.00658681, -0.0140651567, 0.000528983, -0.00151766441, -0.00807074923, -0.00817632582, 0.011560644, -0.0251272433, -0.0281537753, 0.00594455237, 0.0210801382, 0.0155901527, -0.0174318794, -0.0339253, 0.00629940722, -0.00873353519, -0.00631113769, 0.00543719763, -0.0109565109, 0.00563075487, 0.00291508879, 0.028224159, 0.0224760976, -0.0188630298, -0.0118715083, -0.00324941496, -0.0124932379, -0.0052524386, -0.0302183852, 0.0224174429, 0.00587416766, 0.00660440652, 0.0128099676, -0.0229101349, 0.000103010556, -0.0173028409, 0.00457205577, 0.0120709306, -0.00791824888, -0.0192501433, -0.0143701555, -0.0111266067, -0.00845199823, 0.00044906736, -0.000674884126, 0.0161649585, 0.000569307478, -0.0306876153, -0.00299133849, 0.00906199589, -0.00578911975, 0.0222062897, -0.0107805496, -0.00541373622, 0.0161766894, 0.0212912932, -0.0157543831, -0.00858690124, -0.00263941637, -0.0111266067, 0.000787425903, -0.0130328517, -0.0066395984, 0.0137015041, 0.00793584529, 0.00964266807, -0.008510652, 0.000609998475, -0.00620556111, -0.0230626334, 0.00684488658, -0.0195082203, 0.0232268646, -0.00291068968, -0.0071440204, -0.00783613417, -0.00369225023, 0.00156898645, 0.00596801378, -0.000942858169, -2.13192452e-05, 0.0242122468, 0.0122820847, -0.0100943018, -0.00419960497, 0.0109799718, -0.00187105301, -0.000687348, -0.00345177017, -0.00450753653, 0.0196255278, 0.000284470443, -0.00261155586, -0.0235201325, -0.0047568148, -0.0128451595, 0.0199539885, -0.0229922496, 0.0184289925, 0.0119888159, 0.0215611, 0.021608023, -0.00237987377, 0.011067953, 0.00343710673, -0.00466590188, 0.00444888277, 0.00173175044, -0.00686248252, -0.00695632864, -0.00301773264, -0.0166224577, -0.00402364368, -0.00127425161, -0.00127791741, -0.00115107885, 0.00980103295, 0.00265701255, 0.0174905322, -0.0250568595, 0.0169274565, 0.00814699847, -0.0123524684, -0.000917930389, 0.0194730274, 0.0092555536, 0.00940218754, 0.00224350393, -0.0101118973, -0.00371571165, -0.0131266974, -0.00828190241, 2.63941638e-05, -0.00879218895, 0.0141355414, 0.00955468696, 0.00680382876, 0.00747248111, -0.00943738, 0.000848279102, 0.0195082203, 0.00592402369, 0.0343710668, -0.0204466786, -0.0200126413, 0.00369518297, -0.0124932379, 0.0169743802, -0.0136545813, -0.0331510715, 0.00793584529, -0.0105928574, -0.0306406915, 0.00615277281, 0.00475388207, -0.010821607, 0.00264088274, -0.00857517, 0.00298840599, 0.0232385956, 0.0249160901, -0.00303532882, 0.00451633474, -0.00787132606, -0.00508527551, -0.00961334072, -0.00383301917, -0.00788892247, -0.0336906835, 0.0255964734, 0.00957228336, 0.0209159087, 0.00592109095, 0.00327580911, -0.00898574665, 0.0119888159, 0.0141941952, 0.01982495, 0.0112849716, 0.0161649585, 0.0247753225, -0.00419667223, 0.0010997568, -0.00722613558, 0.0239776317, -0.00126252079, 0.019332258, 0.00364239467, -0.0255260896, -0.00319662644, 0.0186401457, -0.0142528489, -0.00686248252, -0.000717408, 0.0117190089, -0.0263941642, 0.00986555219, -0.0153672686, -0.00455739209, -0.00400898047, -0.00588003313, -0.0188864898, -0.00263941637, -0.0258310884, 0.00187398563, -0.00358667364, 0.0178307239, 0.0124815069, -0.00632286863, 0.00466883415, -0.0362010635, 0.00941978395, -0.00607065763, -0.0104755508, -0.00170975528, 0.0179128386, 0.0159772672, 0.0319545344, -0.0171268806, 0.00257636374, 0.00836988259, 0.00120973249, -0.00562782213, 0.0209511016, 0.0286230054, -0.0263472404, -0.0219599437, -0.0028813628, 0.0132440049, 0.00362186576, -0.014499194, 0.00263795, 0.014241118, -0.0070149824, 0.004513402, -0.0116720861, -0.0133495815, -0.00356321223, 0.0224995576, -0.0169391874, -0.0149918851, -0.0182061084, -0.00575099513, -0.000571507, -0.0109975683, 0.0184172615, -0.0369283669, -0.0343006812, -0.0109858373, 0.0168218799, 0.00406176876, -0.00192237494, -0.00263208477, -0.0116486242, 0.00127718423, 0.0308753066, -0.0278018527, -0.0182882231, -0.0335264541, 0.0131501593, 0.0277783908, 0.0105869928, 0.00749594253, 0.00059826771, -0.0252914745, -0.0109565109, -0.00418200856, -0.0160359219, -0.0136897732, 0.000742702454, 0.0172207262, -0.00149713561, 0.00595628284, 0.00953122601, -0.00374210603, 0.0010880261, -0.0133730434, -0.00703257835, 0.0147220781, -0.0173614938, 0.00201035547, 0.0195434112, -0.00482133403, -0.000552811078, 0.0148159238, 0.0472044945, -0.0189920682, 0.0144288093, -0.00234028255, -0.00113788177, 0.0166341886, -0.00512926606, 0.0194143746, 0.00921449624, -0.0258310884, -0.013232274, -0.00203821599, 0.00869247783, 0.00520551577, -0.0145461168, -0.00888017, 0.00342244329, -0.0159303434, -0.00206754287, -0.00661027152, 0.0214789845, 0.00862209313, -0.0176313017, 0.0527414046, -0.00148320536, -0.00458378671, -0.0217957143, 0.0133495815, -0.011202856, -0.00954295695, -0.00265554618, 0.00764844241, -0.0129038133, -0.00507354503, 0.00143115025, 0.0369518287, -0.00856930483, -0.00348109705, 0.0204466786, -0.00656921417, -0.0149215, -0.00296201184, -0.00754873082, -0.0123759303, 0.0267930087, 0.0261126254, -0.00465123821, -0.0133261206, -0.00323475152, -0.00509114098, 0.00762498053, -0.00201328821, -0.0131501593, -0.00740796188, -0.0180066861, -0.00982449483, 0.00586830266, -0.000263758353, -0.0038242212, -0.0166459195, 0.00764257694, -0.00659267558, 3.39779035e-05, 0.0192384124, -0.0150153469, 0.0165168811, 0.00699738599, 0.00234761415, -0.0310864598, 0.0108919917, 0.0148628466, 0.0031262422, -0.00573633146, 0.00208513904, -0.00185345684, -0.00633459957, 0.00113788177, -0.0133261206, -0.0175961088, 0.0103641087, 0.0244937837, -0.00460138265, -0.0138891954, -0.0126574682, -0.0143466946, -0.00858690124, -0.0174318794, 0.00670998311, 0.033549916, -0.00977170561, -0.020352833, -0.0129390061, 0.00523484265, 0.0196372587, 0.0211505238, 0.0192384124, -0.0112497788, -0.0146399634, 0.0222766753, 0.0192618743, 0.0197662953, 0.0123407384, -0.0159772672, -0.0123407384, -0.00284910342, -0.00411749, 0.0135138119, -0.0126222754, -0.014487463, -0.00756046176, 0.0086279586, -0.011302568, 0.028740311, -0.0188043751, -0.00792411435, 0.00300893467, 0.00684488658, 0.0252914745, 0.00252064271, -0.0046277768, -0.0109799718, -0.00525537133, -0.0188982207, 0.00276405551, 0.00346350088, -0.00740796188, -0.026699163, 0.0035602795, -0.00654575275, -0.00200449023, -0.0068155597, -0.00708536664, 8.6972439e-05, -0.00767190382, -0.00248691672, -0.0251507051, 0.00734344311, -0.00405883603, -0.0414095111, 0.00269220467, 0.00175961095, -0.0382891335, 0.0146047706, 0.000841680565, -0.034042608, -0.00583017757, 0.000106676416, 0.0161532275, -0.00167016406, 0.0214789845, -0.019332258, -0.00627594581, 0.00578032201, 0.000272556412, -0.00889776554, 0.00752526941, 0.00794757623]
26 Nov, 2018
Duration plusMinutes(long) method in Java with Examples 26 Nov, 2018 The plusMinutes(long) method of Duration Class in java.time package is used to get an immutable copy of this duration with the specified number of minutes added, passed as the parameter. Syntax: public Duration plusMinutes(long numberOfMinutes) Parameters: This method accepts a parameter numberOfMinutes which is the number of minutes to be added. It can be positive or negative but not null. Return Value: This method returns a Duration which is an immutable copy of the existing duration with the parameter amount of minutes added to it. Exception: This method throws ArithmeticException if numeric overflow occurs. Below examples illustrate the Duration.plusMinutes() method: Example 1: // Java code to illustrate plusMinutes() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Duration 1 using parse() method Duration duration1 = Duration.parse("P2DT3H4M"); // Get the duration added // using plusMinutes() method System.out.println(duration1.plusMinutes(2)); } } Output: PT51H6M Example 2: // Java code to illustrate plusMinutes() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Duration 1 using parse() method Duration duration1 = Duration.parse("P0DT0H4M"); // Get the duration added // using plusMinutes() method System.out.println(duration1.plusMinutes(5)); } } Output: PT9M Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#plusMinutes-long-
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples
https://www.geeksforgeeks.org/duration-plusminuteslong-method-in-java-with-examples/?ref=ml_lbp
Pandas
Duration plusMinutes(long) 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++, Duration toDays() method in Java with Examples, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, Duration toNanosPart() method in Java with Examples, 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++, Duration plusMinutes(long) method in Java with Examples, 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, Duration ofNanos(long) method in Java with Examples, Sort given Array based on the fractional values, Duration parse(CharSequence) method in Java with Examples, 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.0110007105, 0.025285216, -0.012150039, 0.0201484226, 0.0255197715, 0.0116574699, -0.0300936289, 0.0299294386, -0.0141672269, -0.00607501948, 0.0439559296, 0.002871854, -0.00283520436, -0.0281702634, -0.00479082111, 0.0431584381, -0.0104377745, 0.0337058, 0.0345502049, 0.046582967, -0.0310553107, 0.0206761751, -0.0130882654, 0.0640339851, 0.0302343629, 0.0162665099, 0.00528339, 0.01962067, -0.0165010653, -0.0207934547, -0.000978541328, 0.000386285625, 0.026880201, 0.0270443913, 0.00866687112, 0.0187762659, 0.0680214539, -0.0401795693, 0.00433929963, 0.0111238528, -0.021649586, 0.00671418617, 0.00776382769, -0.00684905658, -0.0132759111, 0.00740026496, -0.00251708692, 0.0123142283, -0.0301405396, -0.0293430462, 0.000688277418, 0.00152901665, -0.0262234416, 0.0175448433, 0.0185182542, 0.0404844917, 0.0227050912, -0.00650308514, 0.000914038275, -0.042947337, 0.0512741022, 0.0167356227, -0.0269974805, 0.00100492896, 0.0107192425, 0.00774037186, 0.0181664191, -0.000338824524, 0.00738853682, 0.00869619101, -0.00195268483, -0.000572098535, -0.0029055716, 0.00217404775, 0.0121031273, -0.0562936142, 0.0267863777, 0.00651481329, -0.00825639721, -0.0201953351, -0.0263641756, -0.0161140468, -0.0479199402, 0.011909618, 0.00542998826, -0.0529629104, -0.00391416531, -0.0265518222, -0.0203595236, 0.0106899226, 0.00124021876, -0.00323688285, 0.0398981, 0.0303281844, -0.0237019584, 0.034573663, 0.00752340723, 0.0170640014, -0.0397808217, 0.00276923529, 0.00707774935, 0.0289677568, 0.0264345426, -0.00707188528, 0.0459731184, 0.000456652633, 0.0282406304, -0.0199138671, 0.00159645174, -0.0155628389, -0.0249568354, 0.00546517177, -0.00426013675, 0.00931190234, 0.0128771644, 0.0324391946, 0.0109713906, 0.00158912188, 0.0170288179, 0.00875483, 0.00952300336, 0.0470755361, 0.0372710638, 0.042595502, -0.011487416, -0.00234410143, -0.0151758203, -0.00693115126, 0.0297417939, -0.0716805384, 0.031219501, -0.0254728608, -0.0319466256, -0.0395931751, 0.01697018, -0.00629784819, -0.0253321268, 0.00532150595, -0.0151054533, 0.0305627417, 0.024581546, -0.0018002229, 0.00269886828, -0.020945916, -0.0228106417, -0.0181195065, -0.0111179892, 0.0381623805, 0.00121529703, 0.0129709868, -0.0551208332, -0.0307738427, 0.00966960099, -0.00194242294, 0.0061864336, 0.0494914688, 0.0169349965, 0.012290773, -0.0153517378, -0.0378809124, -0.00107383006, -0.010472958, 0.0053390977, 0.0195385758, 0.0206058081, 0.0201718789, -0.0178849511, -0.0572318435, 0.0314540565, 0.0170053635, -0.00333363749, -0.0285924654, -0.00211101049, -0.000943357823, -0.0100507559, -0.00615125, -0.00258452189, 0.0218255036, -0.00451521715, 0.00283373846, -0.0163486041, 0.015011631, -0.0129944431, 0.0303516407, 0.0223884396, -0.0360748246, 0.00204650755, -0.0400153771, -0.00797492918, -0.00978688, -0.039522808, 0.00740026496, -0.00913012, 0.0281233527, 0.0016741486, 0.0144838784, 0.0282640867, -0.000274321414, -0.0103908628, 0.0118216593, -0.0561528802, -0.0435571857, 0.00262850127, -0.0495383814, -0.0411412492, -0.00416338211, 0.00783419516, -0.0123142283, 0.0355588, 0.0258246958, 0.00789869763, 0.00942918099, -0.0202774294, -0.00342452829, 0.0264345426, 0.0176386666, -0.00501365028, 0.00166095479, -0.000613512471, -0.0613600388, -0.00812739, -0.00763482135, 0.037716724, 0.0175565705, -0.0523061492, -0.00115592487, -0.0463015, 0.0301405396, 0.0201953351, -0.0228106417, 0.00698392652, 0.0320873596, -0.0287801102, -0.00230305386, 0.0249099247, 0.00162283937, 0.0125487847, 0.0186355319, 0.00881933328, 0.0184713416, 0.012501874, 0.038138926, 0.0116457418, -0.0301170833, -0.0343156494, 0.0053742812, 0.0118216593, 0.0284048207, 0.0307503864, -0.0306331087, 0.0209107324, -0.0065558604, -0.0188466329, -0.00814498216, -0.0402499363, 0.0313836895, -0.0142493211, 0.0151758203, -0.0289208442, -0.00473218225, 0.0322750062, 0.0232211165, 0.00505762966, -0.0131469043, -0.0206761751, -0.00710706878, 0.00222535687, 0.00543585233, -0.00196881057, 0.0520246811, 0.00751167908, -0.0432991721, -0.000479741808, -0.0133814616, 0.00652067689, -0.0210514665, -0.0394055322, -0.0279357061, 0.0584984496, 0.0338230804, -0.0032192911, 0.013404917, 0.0112704504, -0.0157973953, -0.013616018, -0.0227989145, -0.0194916651, -0.0113525456, -0.0207230877, -0.00876655802, 0.0144956056, -0.019761404, 0.0093060378, 0.00160231569, 0.0446830578, 0.00510160904, -0.0379043669, -0.0198669545, 0.00848509, 0.0248395577, -0.0173102859, 0.00703083817, 0.0198083166, -0.0212156568, 0.0213563908, 0.0114522325, 0.0042132251, -0.0197496768, -0.00507522142, 0.00320756319, -0.00819189381, 0.017462749, -0.0144017832, 0.00274138176, 0.0130296266, -0.00951714, 0.0163955148, -0.0156332068, -0.00992175, -0.0230334718, 0.00884865224, 0.00368254073, -0.0532443784, 0.0155980224, 0.0226699077, 0.0100800758, -0.0378809124, 0.00674350606, 0.00625680061, -0.0352069661, -0.03757599, -0.0171695519, 0.00315185613, -0.00664381916, 0.000737021212, -0.0033101819, 0.0391944312, -0.0351366, -0.0239951536, 0.00734748971, -0.0172985587, -0.0143314162, -0.00827398896, 0.021227384, 0.00874310173, 0.0207230877, 0.0158794913, 0.00263436534, 0.0295306928, 0.0405783132, 0.000613145938, 0.0148591688, 0.0298825279, 0.0027794973, -0.0120093049, -0.0225291736, -0.0129358033, 0.00121089909, 0.00612193067, 0.0202305187, 0.0235964078, 0.0214736685, 0.0254024938, -0.0309614874, -0.00494914688, -0.0631426722, -0.0354180671, -0.00991002191, -0.0272554923, -0.017732488, 0.0110007105, 0.037505623, 0.0450348929, 0.0451052599, 0.0259185191, -0.00302578183, 0.00978688, -0.0106488755, -0.0101504428, 0.0130178984, -0.0193040185, 0.0187058989, -0.0139443977, -0.00672005024, 0.0480841286, 0.0237254128, -0.0295072366, 0.0106019638, 0.0160202254, -0.00137288985, -0.00403437577, 0.0288504772, 0.00866687112, -0.0141085871, 0.0123494118, 0.0327206627, -0.015011631, -0.0251679365, 0.039170973, 0.00315772, 0.0228106417, 0.0424313135, -0.000312620134, -0.0257074181, 0.000517857261, 0.049585294, -0.0319935381, 0.0202891566, 0.0263876319, 0.00571438856, -0.000238038425, 0.0379512794, -0.0605156347, -0.0443312228, -0.0165479779, -0.0220483318, -0.00300232624, 0.0127364304, -0.042525135, 0.0396400876, 0.0104260463, 0.0445423238, -0.0243939, -0.012431507, -0.00969892088, 0.017732488, 0.00463249534, -0.0080570234, 0.0239834264, 0.0132524548, -0.0293430462, 0.0339169, 0.0385611281, 0.0283813644, 0.0153048262, -0.00913598482, 0.0429707915, 0.0331194103, -0.0565281734, -0.0074295844, -0.0350427739, 0.0115695111, 0.0203712527, -0.00163016922, -0.0198786836, 0.0130882654, -0.0471693575, -0.00985138305, -0.0301405396, -0.00262703537, -0.045949664, -0.00166095479, 0.0518370382, -0.00769932475, 0.0432288051, 0.000140917284, -0.0208990052, 0.00767586892, -0.000966813532, 0.0191163737, -0.0148826241, 0.0234908573, -0.0134166451, 0.0139795812, 0.0127950693, -0.0223415289, 0.0369895957, -0.00728298631, -0.00128639711, 0.0326737538, -0.0151640922, 0.0138036637, -0.0436979197, -0.0352304205, -0.0120093049, -0.0176855773, 0.000941158854, -0.0206644479, -0.02472228, -0.00693115126, 0.0265283659, 0.0483186878, 0.037505623, 0.00360630965, -0.0320404507, 0.0216026753, 0.0321811847, -0.0163251478, -0.0461138524, 0.0443312228, -0.00653240504, -0.00499605853, -0.0134635558, 0.00911839306, 0.0127247022, -0.0102325371, -0.00842058659, 0.0208755489, 0.00282347668, -0.0148357134, -0.0404610373, -0.00730644213, -0.0205471702, 0.00302871387, 0.00744717615, -0.0311256777, -0.0263876319, -0.0599057898, -0.0647845715, -0.0244877227, -0.0353477, 0.0258950628, -0.01745102, 0.0633303151, -0.0372241512, -0.0104495026, 0.0192219242, -0.0039083017, 0.0160436798, 0.00708947703, -0.0182602406, 0.0284282751, -0.00529218605, 0.00093163, 0.00803356804, 0.00740026496, -0.00956991501, 0.0367550403, 0.0135221956, -0.00144692184, 0.00094922178, -0.00786351413, -0.0064033987, 0.0225526299, -0.0206175372, -0.058029335, -0.0150937252, -0.00319876731, 0.00217697956, 0.0110124387, 0.0011082805, 0.025144482, -0.0200076886, 0.0195620321, -0.000961682585, -0.0193743855, 0.00842058659, -0.00213446631, -0.00782246701, 0.00681387307, 0.00219750335, 0.0186707154, 0.00618057, -0.00239834259, -0.0417276435, -0.0184361581, -0.000190027597, 0.000922101142, 0.0157973953, 0.0323922858, 0.0112235397, -0.0297183376, -0.0093353577, 0.00649135746, -0.0044653737, 0.017943589, -0.00512799667, 0.0124666905, -0.00110534858, 0.0168763567, 0.00108482491, -0.0069076959, 0.00502537796, -0.00191310328, 0.000406076346, -0.00211394252, -0.00325154257, 0.0182367861, 0.0148122571, 0.0143900551, 0.0212039277, -0.0199607778, 0.0105667803, 0.00496673863, -0.0277715176, -0.0481310412, -0.0382562019, -0.0215323083, -0.0189052727, 0.0151992757, 0.0345502049, -0.00092649908, 0.0218489598, 0.00367667666, -0.017533116, 0.0208051819, -0.000418537151, -0.00462076766, 0.00664968323, -0.0147301629, -0.0581231564, 0.0093998611, -0.00886038, 0.0159029458, -0.00438621081, 0.00251855282, 0.0200076886, -0.0127364304, 0.00344505208, -0.0552615672, -0.00538894068, -0.00151435693, 0.0336823463, 0.00976928789, 0.00440380257, -0.00956405047, -0.0190929174, 0.00809807144, -0.00997452531, -0.0159850419, 0.0110534858, 0.0101211229, 0.0247691907, 0.0408832394, -0.0368488617, 0.0174744762, 0.0260592531, 0.0141437706, -0.0135808345, -0.0548393652, -0.0278184284, -0.0449410677, 0.0261999872, 0.024792647, 0.00685492065, 0.00111194549, -0.0178497676, -0.00826812442, 0.0147536183, 0.0439090207, -0.0238075089, 0.00593721727, 0.0190811902, 0.0442843102, -0.00951714, -0.00317824376, -0.00819189381, 0.0137332967, 0.00710706878, 0.0220835153, 0.00713052461, -0.00961682573, 0.017521387, 0.0221890658, -0.0315009691, -0.0185065251, 0.0348316729, -0.0366143063, -0.0158794913, 0.0308911204, -0.0116574699, 0.000630371214, -0.00551794702, 0.0136277461, -0.00257279421, 0.000939692894, -0.000933096, -0.0233383942, 0.0365673937, -0.00414579036, -0.00287625194, -0.0129827149, -0.00502830977, 0.00730057806, -0.0072771227, -0.00817430206, -0.00537134893, -0.0153165543, 0.00518370373, -0.0138740307, -0.00546810357, -0.00944677275, 0.0267160106, 0.0042454768, -0.0190811902, 0.00122775789, 0.0157739408, -0.030515831, 0.00167561462, 0.000201388946, 0.0212860238, -0.00523647899, 0.0181781463, 0.0035887179, -0.00582580268, -0.00226054038, -0.0202774294, 0.0201249681, -0.00842645, -0.0552146547, 0.0186003484, 0.0109537989, -0.0242531653, -0.000827545475, -0.00562642934, -0.00625680061, -0.00880760513, 0.0350427739, 7.53605127e-05, 0.00542119239, 0.0124666905, -7.15123169e-05, 0.0164424274, -0.00329552195, -0.0240420643, 0.0031254685, -0.00103058363, -0.0347378515, 0.0446126908, -0.0215909462, 0.00784005877, -0.00256986218, -0.0149647193, -0.00657345215, 0.0167942625, 0.0136629296, 0.0519308597, -0.00249216519, 0.0325564742, -0.007681733, -0.0113760009, 0.00954645872, 0.0137802083, 0.00435395911, -0.0477322936, -0.00931190234, 0.00483186869, 0.0198435, 0.00960509852, -0.0111355809, -0.0172868315, 0.0129592596, -0.00520422729, 0.013545651, 0.0025258828, -0.0168059897, 0.012642608, -0.0280295294, -0.0139795812, -0.00244818581, 0.00519836368, 0.0172399189, 0.00936467759, 0.0146715231, -0.0274665933, -0.0411881618, 0.0389833301, -0.0042454768, 0.00504883379, -0.0020640993, 0.00141173834, 0.00306976121, -0.0126895187, -0.0235612243, -0.00265049096, -0.00995693356, -0.0118451146, -0.0128302528, 0.00159791776, -0.00437448313, 0.00559124583, -0.0152110038, -0.00657345215, 0.0137215685, 0.0249099247, -0.0145542454, 0.00245258375, 0.0130882654, 0.00867273472, 0.00993934181, 0.00300819, -0.01333455, -0.0110945329, 0.0180608686, -0.010613692, -0.0327910297, -0.0254728608, -0.0112176752, 0.00472925, 0.00353301084, -0.0240655206, 0.0329552218, -0.0185886212, -0.0222477056, 0.0249568354, 0.0187997222, 0.00696047116, -0.0321811847, 0.0311960448, -0.0402733907, 0.00197320851, -0.00284986431, 0.0101035312, 0.012642608, 0.0277949721, 0.0200897846, 0.0539011359, 0.0185768921, -0.00146378065, 0.00634475937, 0.00398746459, 0.00932363, -0.0265518222, -0.0258481521, 0.00736508146, 0.00659690797, 0.00966960099, 0.0132407276, -0.00606329134, 0.0109479353, 0.012572241, -0.0159498584, 0.0258012395, 0.0266691, 0.0349020399, 0.0186707154, 0.00304044154, -0.00679628132, -0.00557365408, -0.00480254926, 0.00785765052, -0.0370599627, -0.021157017, -0.01089516, -0.00314012822, 0.0116633335, 0.00271206209, 0.018084323, -0.0350427739, 0.0131117208, -0.0341983698, -0.00830917247, 0.00521009136, -0.00379395508, -0.0130999936, 0.0378105454, -0.0126777915, -0.0105902366, -0.0157739408, -0.00700738234, 0.013616018, 0.00560297398, -1.39840704e-05, 0.0421029329, 0.0406017713, 0.0142024104, -0.012642608, -0.0262703542, 0.0331663229, 0.00890729204, 0.0164189711, -0.0204650741, -0.0280529857, 0.00474684173, 0.0335181579, -0.0337761678, -0.0193040185, -0.0213329345, 0.0226699077, -0.0482248627, 0.00149163418, 0.0569034629, 0.0365673937, 0.00356233027, 0.000747649581, -0.00793388113, 0.0252383035, 0.0145542454, 0.0345267504, -0.0471224487, 0.0515086576, -0.0105140051, 0.0177794, 0.00910080131, -0.0197379496, 0.0366612151, -0.0277715176, -0.0337761678, 0.0208638217, -0.00641512638, -0.00370306429, 0.000911839306, 0.00984551851, -0.0556837693, 0.035957545, -0.00256399834, 0.00784005877, -0.0219779648, 0.0236315913, -0.0348551311, 0.0103087686, -0.00897765905, -0.0100155724, 0.00359751377, 0.00231478177, -0.0130178984, 0.0235964078, -0.0203712527, -0.027513504, -0.000772571249, -0.0182250571, 0.0199607778, -0.0120210322, 0.00700738234, 0.0420325659, -0.0219779648, -0.0294603258, 0.0187997222, 0.00791628938, -0.0154924719, -0.0110476222, 0.0118861627, -0.0019394909, -0.00657931622, 0.0130882654, -0.0166418, -0.00494914688, 0.00156713219, 0.0167356227, -0.00127393624, -0.0172751024, 0.0151289087, 0.00538014481, 0.00209781667, -0.0113408174, -0.00352128292, -0.0134518286, 0.0222477056, -0.0466767885, -0.0207934547, 0.0251679365, -0.000341206731, 0.00922980718, -0.00125781051, -0.0208638217, -0.0103791356, -0.0296245143, 0.04921, -0.0253321268, -0.00642685452, 0.0253321268, 0.0417745523, 0.0281702634, -0.0154221049, -0.00120650115, 0.0132172713, -0.0207230877, 0.0170522742, 0.0145894289, 0.0217434093, 0.00745890383, -0.0317355245, 0.0182485133, 0.00691942358, -0.00772278, 0.0359810032, 0.00464129122, -0.0209811, -0.0254963171, -0.000247200805, -0.000278169609, -0.015363466, -0.0455978289, -0.0277011506, 0.0105198696, 0.00847336184, -0.0123845953, -0.0290850345, -0.00447416957, -0.0256605055, 0.00607501948, -0.00744717615, -0.0169936344, 0.0117806122, 0.00819189381, -0.00128859608, 0.0265987329, -0.0213094782, 0.0194212981, 0.0135925626, 0.00555313053, -0.0207934547, -0.00472338637, -0.0469582565, -0.0123728672, -0.00558538223, -0.0044624419, 0.0142727774, 0.00151435693, -0.0217903201, -0.031078767, -0.00718916394, -0.0240889769, -0.0358402692, 0.0292257685, -0.0108423848, -0.0102266734, 0.00930017419, -0.0352773331, -0.00312253647, -0.0237723254, -0.0553553887, 0.0121265827, 0.000558538188, -0.0253555831, 0.00516904378, 0.00406955928, -0.00451521715, 0.023115566, 0.00485532451, 0.00480548106, -0.0456681959, 0.00304630562, -0.00760550192, 0.00298913242, 0.0112587232, -0.0168177169, 0.0132055441, -0.0098748384, 0.019902138, 0.0141437706, -0.0119565297, 0.019198468, 0.00364442519, 0.000253431208, -0.0193978418, -0.00437741494, -0.00777555536, -0.00799252093, -0.00582580268, 0.00296274479, 0.0146246124, -0.00963441748, -0.0224236231, -0.0148357134, -0.0277480613, 0.0285220984, 0.00168587652, 0.0195854865, -0.0063682152, -0.00915944, -0.00577009562, 0.0132172713, -0.000169778752, 0.0125839682, -0.0035300788, -0.00645617396, 0.0121383108, 0.0144721502, 0.00745890383, 0.00757618248, -0.0269974805, 0.00944677275, -0.0192922913, 0.00725366687, 0.0100507559, -0.0227754582, -0.00550621934, 0.011839251, 0.0227989145, -0.0164893381, -0.0300232619, -0.00228839414, -0.00520715956, 0.0100097088, -0.0222125221, 0.00280295289, 0.00755859073, -0.0314775147, -0.000273954938, 0.00822707731, 0.00344798388, 0.0265987329, 0.00469406648, 0.00480841286, -0.0207230877, -0.00930017419, -0.0182367861, -0.0201601516, 0.0147067066, -0.0110886693, 0.0196558535, -0.0244173557, 0.0406721383, 0.0139913093, -0.00447710138, -0.0131351771, 0.00853200071, -0.00837367494, -0.0142727774, 0.0202070624, 0.0174862035, -0.0298590716, 0.00313133234, -0.00119110837, -0.0144956056, 0.0185651649, 0.00798079278, -0.0185182542, 0.018928729, 0.00745304, -0.0223767124, -0.0221186988, 0.0368488617, -0.0379043669, -0.0014879693, -0.0135221956, 0.0121265827, 0.0107602896, 0.00584925851, 0.0160084963, 0.0301405396, -0.0323453732, 0.0151992757, -0.00481427694, 0.00952886697, -0.00650894921, 0.00235582911, 0.0122555895, -0.0277246051, -0.00427479623, -0.00900697801, 0.0145542454, -0.0174275655, 0.00503417384, -0.00186326, 0.015574567, 0.0282171741, 0.0153517378, 0.024933381, 0.00478495751, 0.0121031273, -0.0263641756, -0.0119154816, -0.00275457557, 0.00692528766, -0.0258716065, -0.01403822, 0.0202891566, -0.00430118386, 0.00336588896, -0.00753513491, -0.00381154683, -0.021579219, -0.0132876383, -9.21734681e-05, -0.000782833085, 0.00834435597, -0.00611606659, 0.0393586196, 0.00717743579, -0.0100800758, 0.0235964078, -0.00652067689, -0.0326737538, 0.00472925, 0.00466181478, -0.0258950628, 0.0265283659, 0.0133580053, 0.00223561889, 0.0100742113, 0.0187762659, 0.00418976974, -0.0115225995, -0.00362683344, -0.0512271896, 0.0135104675, -0.0109537989, -0.0111649, 0.00760550192, -0.000238221677, 0.0266691, 0.005743708, -0.00333070545, -0.0130765373, -0.0280764401, -0.0368957743, -0.00680214539, -0.017591754, 0.00393468933, -0.000576862949, -0.00905389, 0.000823880488, 0.0163955148, -0.0254494045, -0.0120679438, 0.0150350863, -0.0126895187, 0.0256135948, 0.0117278369, 0.0140851317, -0.037505623, 0.0137450248, 0.0247457344, -0.0188349057, 0.00389364175, -0.00240127463, -0.0135573791, -0.0182954241, -0.00377343129, 0.0322280936, -0.00495501095, 0.0165127944, -0.00741199264, 0.00552087883, 0.011768884, 0.0012512136, -0.0220717881, -0.0159029458, 0.00790456217, 0.0186824445, -0.0212625675, -0.0277949721, 0.00166535273, 0.00360924168, -0.00532443775, -0.0263172649, 0.0203126129, 0.00181488274, -0.0162195973, 0.00596067309, 0.00986311, 0.0011368671, 0.0135104675, 0.00214912603, -0.0119272098, 0.0175448433, -0.00650894921, 0.0225526299, -0.00460024364, -0.0120913992, 0.00587564614, 0.00806288794, -0.00413992628, 0.00140514143, 0.0409770608, 0.00626852876, 0.0148708969, 0.00792215392, 0.00148577034, 0.0192219242, -0.0249568354, 0.0368488617, -0.0089014275, -0.0280764401, 0.00914771203, -0.0151640922, 0.00884278864, -0.0172868315, -0.0304220077, -0.0244877227, -0.00279562292, -0.024511179, -0.0326033868, -0.0329083093, 0.0089014275, 0.0171930082, 0.0173454694, -0.0085261371, -0.00634475937, 0.0153517378, 0.00408715103, 0.00181488274, -0.00231184973, 0.0120034404, 0.00540946471, -0.0352304205, 0.00527752656, -0.0236785021, -0.0283813644, 0.0137332967, 0.0147418901, -0.0100859394, -0.0198669545, -0.000591889257, -0.0179084055, -0.00141686923, 0.00753513491, 0.0247457344, 0.00417217799, -0.0262703542, 0.0112704504, 0.00978688, -0.0109479353, -0.00745890383, 0.00580527913, 0.00944677275, -0.0162430536, -0.0226699077, 0.00154954044, -0.0023778188, 0.00149456621, -0.0132289995, 0.0145777008, -0.00320169935, -0.021579219, -0.000388118089, 0.0127364304, 0.00609847484, 0.0130061703, -0.00614538649, 0.000333510339, 0.0161492303, -0.00248043751, -0.00203917758, 0.0259419736, -0.00822707731, 0.0209928267, -0.00182367861, -0.00476736575, -0.0315478817, -0.0187762659, -0.00906561781, 0.0242297109, 0.0110065741, 0.00954059511, 0.0019028415, 0.0437917411, 0.0570911095, 0.00164922699, 0.00975756, 0.00541826058, 0.00696633477, -0.0242531653, -0.0107778814, -0.00222975481, -0.0244642664, -0.00434516324, -0.00667313905, -0.0127716139, 0.0219896939, -0.000211284307, -0.00693701534, -0.00488757575, -0.0203360692, -0.0123963235, 0.00318997144, -0.00456212834, 0.00720675569, -0.0178497676, -0.00782246701, -0.019268835, -0.00789283402, 0.0165831614, 0.0377401784, 0.0177090336, 0.0113935927, 0.00626852876, -0.0109596634, 0.0178380385, -0.00170200225, -0.0104143191, 0.00572025217, 0.000608748, 0.0235846788, -0.0285924654, 0.00269447034, 0.0351131409, 0.0259419736, -0.0126777915, 0.0184830707, -0.0324391946, 0.0164893381, 0.00644444628, 0.0169115402, -0.0022488127, -0.0201953351, -0.00803356804, 0.0053420295, 0.00629784819, -0.0129709868, 0.0144604221, -0.0114287771, 0.0239365138, 0.0132993665, -0.00648549339, -0.00450348901, -0.00312253647, 0.0267629232, -0.0046500871, -0.0362390131, 0.0271147583, -0.00100199704, 0.0170874577, -0.0185534377, 0.00835608318, -0.0142375939, 0.0280295294, -0.00550328707, -0.0113114985, -0.0117454287, -0.0125253294, -0.00359458197, -0.0292023122, 0.0134870121, -0.00229865592, -0.00760550192, 0.00195121882, 0.0183775201, -0.025285216, -0.00292609516, -0.0450348929, 0.0032192911, 0.00160964555, 0.000458118622, -0.00119550631, -0.00572904805, -0.00969892088, 0.0129240761, -0.0610316619, -0.00825639721, 0.000658591336, -0.0215674918, 0.00270033441, 0.0127598858, 0.0138623025, -0.0212625675, -0.00243792403, -0.0113114985, 0.0313367806, 0.0127481585, 0.0317824371, -0.018917, 0.0118157957, -0.0174275655, -0.0385611281, -0.0226816349, -0.00200399407, -0.00528632244, -0.010824793, 0.00854959246, -0.000929431058, -0.00136336102, 0.00813325495, -0.0120210322, 0.00857304875, 0.024511179, 0.027091302, -0.00133990531, 0.00214619399, 0.00852027349, 0.00826226082, 0.00608674716, 0.0123845953, -0.0219896939, -0.000922834151, 0.0242766216, 0.0055941781, 0.00704256585, -0.00288211578, 0.0139561258, -0.01815469, -0.027161669, 0.0329552218, 0.0148357134, 0.0337292589, -0.00236462499, 0.00897179451, -0.00257719215, 0.0157387573, -0.00689010415, 0.00740612857, 0.00689010415, 0.0224236231, -0.013264183, -0.0157387573, -0.00450935308, 0.0124784177, 0.00928844605, -0.0253790375, -0.0156332068, -0.00797492918, -0.0118509792, 0.00172692398, 0.0103146322, 0.061735332, 0.0319935381, 0.0277246051, -0.0103967274, 0.0546517186, 0.00164776098, -0.00147037755, -0.0232914835, 0.00913012, -0.00908321, -0.00898352265, 0.0255901385, -0.0121734943, 0.00339227682, -0.00128273212, 0.00486412039, 0.0294134133, -0.01162815, -0.0128888926, 0.0136512015, -0.00405489933, -0.00779901119, -0.0164776109, -0.0180374123, -0.0552615672, 0.0291084908, -0.0182367861, 0.00545930769, 0.0178497676, -0.0193743855, -0.0170874577, -0.00381447887, -0.022974832, -0.0111590363, 0.00370013248, -0.0337058, 0.0199373215, 0.00176650542, -0.0287332, 0.00574957207, -0.0129240761, 0.021438485, 0.0422905795, -0.0178380385, -0.0139443977, 0.01962067, -0.0195737593, 0.0149060804, 0.0228927378, -0.0163134206, -0.00112660532, -0.00671418617, 0.007681733, -0.017591754, 0.00828571618, 0.000594454701, -0.0121852225, 0.00810393505, 0.0218137763, -0.0183306076, 0.0034040045, -0.0108306566, 0.0308911204, 0.0421733, -0.0229982883, -0.0108599765, -0.0214502122, 0.00961096212, -0.00183100847, 0.00876069348, -0.0255666841, 0.0163368769, 0.0197848603, -0.00660863565, 0.00321049523, 0.0136746578, -0.0338934474, 0.00477029756, -0.0115343276, -0.00812739, -0.00169320637, -0.0186941717, -0.0186941717, -0.00121309806, -0.00175184559, 0.00972824078, -0.0080863433, 0.017040547, -0.00560004171, -0.0265518222, -0.0148943523, 0.0220952444, -0.00455919653, 0.0296245143, -0.00316651585, 0.0130648101, 0.0421733, 0.0203243401, 0.0161492303, -0.0291319452, 0.0251913927, -0.000854666112, -0.00319290347, 0.0109479353, 0.0125370575, 0.00894247554, -0.0118685709, 0.0182016026, -0.0116867889, -0.00994520541, -0.00388484588, -0.00253321277, -0.000313169876, -0.0295072366, 0.010613692, 0.0256839618, 0.0342687368, -0.00660863565, 0.000358065503, -0.0103498157, 0.010613692, 0.0101387147, 0.00527752656, 0.0234791283, 0.0233618505, 0.0105961, 0.0149178077, 0.00669659441, 0.00836781133, -0.00526873069, 0.0131234489, 0.0338230804, -0.0220717881, 0.0112294033, 0.0166183449, -0.013404917, 0.00531564187, 0.00673764199, 0.00588737382, -0.0101211229, 0.0167825334, 0.0103556793, 0.00681387307, 0.00236609112, 0.0194916651, -0.00145571772, 0.0178849511, -0.0153400097, -0.000786498, 0.0293430462, -0.0173102859, -0.00378515921, 0.000374008028, -0.00995693356, 0.00622748118, -0.00620402535, 0.00205383729, -0.00214619399, 0.00523647899, -0.0150702698, -0.0241593439, 0.012150039, -0.0177676715, -0.0143196881, 0.00918876, -0.0228106417, -0.000179765746, -0.0190342795, 0.00628612051, -0.0154221049, 0.0187528115, 0.0098748384, 0.00685492065, -0.0124432342, -0.00195121882, -0.000933829, 0.0336588919, 0.00653240504, -0.0243235324, 0.00160378159, 0.00758791, 0.024651913, -0.00761136599, 0.00982206315, 0.0146597959, 0.0146011561, -0.00429238798, 0.00508108502, -0.00133624033, 0.00620402535, 0.00743544847, 0.00979274325, 0.00839126669, 0.0202657022, 0.0269271117, 0.0143548716, 0.0284986421, 0.0265518222, 0.00369133661, -0.015222732, 0.00538307708, -0.00126220845, 0.00357699022, -0.00952886697, -0.0162430536, -0.00361217372, -0.00549742347, -0.0201484226, -7.94835796e-05, -0.00851440895, -0.022904465, 0.00426013675, -0.0147653464, -0.00778141944, 0.00173132191, 0.00244965195, 0.00255080452, 0.0312898681, 0.0236081351, -0.0136277461, 0.00234556734, 0.0263876319, -0.00263436534, 0.013827119, -0.0218489598, -0.0189756397, 0.0134635558, -0.0105785085, -0.00596946897, -0.00676109781, 0.0176386666, 0.000445657788, 0.0154572884, 0.00628025644, 0.0158325788, -0.0115636466, 0.00914771203, -0.0122438613, 0.0016741486, 0.0210397393, 0.00112587225, -0.031078767, 0.0173337422, 0.00832676422, -0.0170522742, -0.0265283659, 0.0134635558, 0.0150702698, 0.00376170361, -0.00721848337, -0.0235846788, -0.0146832513, 0.000206336626, -0.00118597748, 0.00276630349, 0.0195620321, -0.00436861906, -0.0100273006, 0.0202070624, -0.0104788216, -0.0328848548, -9.79228571e-06, 0.0038408665, 0.00737094507, -0.00366494898, 0.0147418901, -0.0214267578, -0.000958750607, 0.00562349753, -0.0240655206, 0.0142375939, 0.00589323789, -0.00413699448, 0.0182367861, 0.0159264021, 0.0243000779, 0.00911839306, -0.00523354718, -0.00861409586, 0.00372945191, -0.0368019491, -0.0159029458, 0.00991002191, 0.00408715103, -0.00259331777, 0.0201953351, 0.0248864684, 0.0331663229, -0.00107529596, -0.00603397191, -0.013616018, 0.010965527, -0.00207875902, -0.00629198411, 0.00248630135, -0.0214150287, 0.00231038383, -0.000531784084, 0.00646203803, -0.00192922913, -0.00369720045, -0.00752340723, -0.015644934, 0.00465888297, -0.0149178077, 0.0046500871, -0.00867859926, 0.0268567447, 0.00389364175, -0.0100742113, -0.00415751804, 0.00295541482, 0.00146378065, -0.0204533469, 0.0051221326, 0.0392882526, -0.0124432342, 0.00873137452, -0.0204885304, 0.00259331777, 0.0016726827, 0.00880760513, 0.0136512015, 0.00203477964, 0.00536255306, -0.00942918099, 0.00886038, -0.00546517177, -0.00703083817, 0.00231478177, -0.00588737382, 0.0163486041, 0.00915944, 0.00584632671, 0.00363856135, -0.00106356817, -0.0119448015, -0.00466474704, -0.00500192214, -0.00820948556, 0.00219603744, 0.0191163737, -0.0142493211, 0.0181195065, 0.00377343129, -1.2621168e-05, 0.0207817256, -0.0254024938, 0.0119506652, 0.000428066036, 0.00438621081, -0.0157504845, -0.00494621508, 0.00184273627, 0.0203829799, 0.00871964637, -0.00596946897, -0.0066203638, -0.0298590716, 0.00697806291, 0.0120210322, -0.000573198, -0.025214849, -0.0221186988, 0.00720089162, 0.0229631048, -0.0117923394, 0.00654999679, -0.0268567447, 0.00804529618, 0.000757911417, -0.000742518634, 0.0132289995, 0.0114463689, -0.0100566195, 0.00593721727, 0.00222828891, 0.00336002512, 0.0242766216, -0.0113408174, -0.0172281917, 0.00327206636, 0.00132011459, 0.0151758203, 0.0089952508, 0.00377929537, 0.0164658818, 0.00817430206, -0.00470872642, 0.00412526634, 0.00352128292, 0.000355500029, -0.00867859926, -0.0165362488, 0.00458558416, -0.038138926, -0.0111062611, 0.0165831614, -0.0123494118, 0.0144721502, 0.0125605129, -0.0198552273, 0.0122790448, 0.0418214649, -0.0109889824, 0.00672005024, 0.0148943523, 0.00480548106, -0.00628612051, -0.00315772, -0.0289208442, -0.00363269728, -0.0128419809, 0.0123025, 0.00260357978, 0.00797492918, 0.0204416197, 0.0122321332, 0.0162547808, 0.00466474704, -0.0231390223, -0.00344212, -0.00843231473, -0.0038086148, -0.0317120701, 0.00579355145, -0.00475563761, -0.0193743855, 0.00887210853, 0.00392589346, 0.0166418, -0.0020318476, 0.0117747476, -0.00247603958, 0.0103087686, -0.0132524548, 0.00115812384, -0.00437155087, -0.00883692503, -0.00767586892, 0.00433929963, -0.000808487704, -0.0117571559, 0.0170170907, 0.0210280102, -0.0177559443, 0.000517490786, -0.000433563459, -0.0249099247, 0.0104670944, -0.0181195065, -0.0320404507, 0.0352069661, 0.00237928494, -0.0168763567, 0.00353301084, 0.013404917, 0.00391709758, 0.00637994288, 0.00522768311, -0.000900111452, 0.00713052461, -0.0133697335, -0.0109010236, 0.0246284567, -0.00394934881, 0.0146246124, 0.0273493156, -0.0182367861, -0.00337761687, 0.00317531172, 0.0216026753, -0.00540066883, 0.00142273318, 0.00320169935, -0.00959923398, 0.00371186016, -0.0208638217, -0.0109596634, -0.00105477229, -0.0311960448, 0.00314892409, 0.025285216, -0.0188935455, 0.0189873669, 0.0166300721, 0.0187997222, -0.000996866147, 0.0130178984, -0.000175276175, 0.00536255306, 0.0234204903, -0.00518370373, 0.00325447461, -0.00693701534, 0.0354884341, -0.00871378276, 0.00941158924, 0.0160905924, 0.0213329345, 0.010613692, -0.00557658635, 0.0188231785, 0.00370892836, -0.0100800758, 0.0106723309, 0.0140147647, 0.00318997144, 0.00346850767, -0.00472925, 0.0112587232, 0.0034010727, 0.0189521834, 0.0402499363, -0.0139913093, 0.00858477596, 0.0165597051, 0.00163603318, -0.0272085816, -0.00402264809, 0.0195268486, -0.0115753748, 0.0121265827, 0.0132407276, -0.00336588896, -0.0136277461, 0.00713052461, -0.00478788931, 0.0068431925, 0.00121236511, 0.015363466, 0.00485239225, 0.00842058659, 0.018917, -0.00800424814, -0.0181077793, 0.011698517, 0.0117161088, -0.0226112679, 0.0294603258, 0.0112469951, -0.00342452829, -0.000610580493, -0.0126308799, 0.00686664833, 0.00682560075, -0.0126308799, 0.0267160106, -0.00349782733, 0.00954059511, -0.00842645, -0.0183423366, -0.0117395641, 0.00938226935, -0.0151875485, 0.00644444628, -0.0152579155, 0.0115225995, -0.0281233527, 0.00333363749, -0.00887210853, -0.011557783, -0.0118275229, -0.00428945618, -0.0178497676, -0.0106899226, -0.00825053267, 0.0106078284, 0.00623334525, 0.000609847484, 0.0127598858, 0.0166652557, -0.0156097505, -0.00418976974, 0.00115225988, 0.00566747691, -0.0166183449, 0.0189873669, 0.00332484161, 0.000435395923, -0.00132451253, -0.00552087883, 0.0115871029, -0.003439188, -0.00850268174, -0.00257572602, 0.0153048262, -0.0156097505, 0.0105198696, 0.03924134, 0.0356526226, -0.0295776036, -0.00757031841, -0.000138351825, -0.0103380876, -0.0204885304, -0.0185299814, 0.01815469, -0.00991002191, -0.00364442519, 0.0024701755, -0.00637407927, 0.00217991159, 0.0402264781, -0.000573198, -0.023185933, -0.017873222, -0.000322515494, 0.0029085034, 0.0151875485, -0.0138505753, 0.00430411613, -0.00564108929, 0.0144017832, -0.00509574497, 0.012642608, -0.0030345777, -0.0149295358, -0.00615125, 0.00945263635, -0.0146832513, 0.00919462368, -0.0158208515, 0.00816257391, -0.0130296266, 0.00526579842, -0.0183306076, 0.00231478177, 0.00620988943, 0.00813911855, 0.00756445434, -0.0145659726, -0.00428945618, 0.012501874, 0.00314892409, -0.000707701605, 0.0185534377, 0.0129006198, -0.0251210257, -0.00601638, -0.0213094782, -0.00485239225, 0.0173689257, 0.00157739397, 0.00833849143, -0.0148122571, 0.0211101063, 0.017732488, 0.00340693654, -0.00397280464, 0.0204416197, -0.0265987329, -0.00690183183, 0.0119682569, 0.0119623933, 0.00221216306, 0.00611020299, 0.012783342, -0.0156801175, 0.00057612994, -0.00857304875, 0.0130530819, -0.010021436, 0.0158560351, 0.00788110588, 0.0113760009, 0.0161961429, 0.00718916394, -0.00754099898, 0.0182602406, -0.0236198623, -0.019902138, -0.0159146748, 0.0205119867, 0.0148357134, 0.00601638, -0.00846749824, -0.0295306928, -0.0136042908, -0.00908907317, 0.00394641701, 0.0276073273, -0.00230598589, -0.0130765373, 0.0101328511, -0.0165831614, 0.00375583954, -0.00696633477, -0.0103029041, 0.00863168761, 0.0214853957, 0.0118216593, 0.0109537989, 0.0197496768, 0.00477616163, -0.0102090817, 0.011698517, -0.00952886697, -0.00914184842, 0.00996279716, -0.0233032107, -0.00487291627, -0.0146246124, -0.00824466906, -0.00988656655, -0.00608088309, 0.00653240504, -0.00793974567, 0.0148357134, 0.0210280102, 0.00646790164, 0.000178849514, -0.00109215477, -0.00776969176, -0.00290117366, -0.00947609171, 0.00710120518, 0.00364442519, 0.0148122571, -0.00459731184, 0.00372065604, 0.00572318444, 0.00835022, 0.0224470794, -0.0329786763, 0.0181195065, 0.0102384016, 0.0123845953, -0.0123728672, -0.00798665639, 0.0182954241, 0.0100742113, -0.0222359784, -0.00150702696, 0.00907148141, 0.0127481585, -0.0138388472, -0.0349724069, 0.0129827149, 0.00333363749, -0.0177794, 0.00846749824, 0.000360081234, 0.00956405047, 0.00540946471, 0.00418390566, -0.0104964133, 0.00913598482, 0.0156683903, 0.0173806529, 0.0138623025, 0.00785178691, 0.0110124387, 0.00726539455, -0.00857891236, -0.00144105789, -0.00829158071, -0.00903629791, -0.0185299814, -0.004869984, -0.00586685026, -0.0104319109, 0.00402264809, -0.0190225504, 0.00334829721, -0.00444485, -0.0308207534, -0.024863014, -0.0190342795, 0.0225643571, -0.00147184345, 0.0233618505, 0.0158912186, -0.00995693356, 0.0136512015, -0.0423844, 0.0165479779, -0.0214033015, -0.00614538649, 0.00972824078, -1.81185915e-05, -0.00772864418, -0.00245111785, 0.00966373738, -0.00849095359, -0.0013552981, 0.000477542839, -0.00747649558, -0.00324567873, -0.0157387573, 0.0185065251, 0.0185065251, 0.00455333246, 0.000576496474, 0.000876655802, 0.00196148059, -0.00284839817, 0.0100624841, -0.00086053, 0.00244085607, 0.00819775742, 0.0029993942, -0.0279826187, 0.0166183449, 0.0318997167, 0.0035887179, -0.0113349538, 0.0223298, 0.000147422572, -0.0144369667, -0.00967546552, -0.0340341814, -0.0112411315, 0.00627439236, 0.0172164645, -0.00218870747, 0.00857891236, -0.0119858487, 0.00216085394, 0.0167121664, -0.0169584509, -0.0335416123, 0.00220336718, -0.017322015, 0.00311080855, 0.0123845953, -0.00831503607, 0.00118597748, 0.0148708969, 0.0144369667, -0.00712466054, 0.00450935308, 0.00242473022, 0.0214033015, -0.0163955148, -0.0135221956, 0.0100097088, -0.0112704504, -0.0130999936, -0.00525700254, -0.00942918099, -0.0157973953, 0.00615711417, 0.0101973535, 0.0144017832, -0.00560590578, -0.0221186988, 0.0120562157, 0.035816811, 0.023185933, 0.00489930389, 0.0265518222, -0.0105550531, 0.0199255943, 0.0106078284, 0.0135339238, -0.00804529618, 0.0097751515, -0.0223532561, -0.0223415289, -0.013475284, 0.00634475937, -0.0146363396, -0.00762309367, -0.00188524975, 0.024581546, -0.0224118959, -0.00826812442, -0.00958750676, -0.00159645174, 0.00416338211, -0.00853786524, 0.00105917023, -0.0283109974, 0.00282494258, 0.0146949794, 0.0228458252, -0.0151875485, 0.0142258657, 0.0159029458, 0.00815671, 0.00551208295, 0.00323395082, 0.0142141376, -0.0147653464, -0.0128654363, 0.00300086, 0.00150702696, -0.0240655206, 0.0322750062, 0.0166183449, -0.0423844, 0.00774623593, 0.00348316738, -0.0129123479, 0.0066203638, 0.00984551851, 0.00780487526, -0.0132289995, -0.0107954731, -0.013264183, 0.00908321, 0.0300467163, 0.0143431444, -0.0172868315, 0.0195151195, -0.0183306076, 0.0191867407, 0.000199006725, -0.000218247704, -0.0132876383, -0.0190929174, -0.0014711105, 0.00352421496, -0.0117337005, 0.0161140468, -0.011909618, 0.0148122571, 0.00941158924, 0.00148870226, -0.00501365028, -0.00238954672, -0.00695460709, 0.0243469886, 0.022904465, -0.018858362, 0.0126660634, -0.00819189381, 0.0130296266, -0.0012695383, -0.00951714, 0.0121852225, -0.0242062546, -0.0142258657, -0.0103967274, -0.0166183449, 0.0112645868, -0.00931776594, 0.0242297109, -0.0119799851, 0.00104744243, 0.0144838784, 0.00372358807, -0.00182514451, 0.00872551, 0.00291729928, 0.0116750617, 0.0124080507, 0.00150262902, 0.00492862333, 0.00817430206, 0.0225174464, -0.0216261297, 0.00594308134, -0.0303750969, -0.0346674845, -0.00152168679, -0.0123963235, 0.0293430462, 0.00898938626, 0.00433636736, 0.00547689945, -0.00427186443, -0.0192219242, -0.00187498785, -0.0120913992, -0.0112118116, -0.0258716065, -0.0243000779, 0.0404375792, -0.0208755489, 0.0154221049, -0.0033101819, -0.00123801979, 0.00273405178, 0.00473218225, -0.00982206315, 0.00212713634, -0.00975756, 0.0121734943, 0.00356819434, 0.0112176752, -0.0108834319, -0.00187058991, 0.0190929174, -0.00880760513, -0.00214033015, -0.0206292644, -0.0134870121, -0.0165010653, 0.00525407074, 0.00835022, -0.00497553451, -0.00842645, 0.0118920263, 0.0162547808, -0.013897486, 0.00793388113, 0.00226787035, -0.0324391946, -0.0151875485, 0.0163720604, -0.0294134133, -0.00464129122, -0.00528045837, 0.0219662376, 0.0032192911, -0.00591082964, 0.0120444885, -0.0040578316, 0.00287918397, 0.0225760844, 0.00747649558, -0.0199607778, -0.00344212, 0.0184127036, -0.000276886887, -0.0133228218, -0.019972505, 0.000455919653, -0.00747063197, -0.00129592593, -0.012853709, -0.00652067689, 0.0485063307, -0.00823294092, 0.00911839306, 0.0165948886, 0.0156214787, -0.015574567, 0.00183980435, 0.0222711619, -0.0188935455, 0.024511179, 0.00090597535, -0.0206761751, -0.0129240761, 0.0053390977, 0.00889556389, 0.00010142746, -0.00547983171, -0.0113701373, 0.00706602167, 0.00663209148, -0.0218255036, -0.0145425173, 0.0124784177, 0.00889556389, -0.00555019872, 0.0137450248, -0.0074647679, 0.0135691073, 0.00961096212, 0.00385259418, 0.00235289731, -0.00113466813, -0.0102032181, 0.0185299814, 0.0200663283, -0.00635648752, 0.0121969497, 0.00544464821, -0.0161023196, -0.030515831, -0.0148591688, 0.00116985175, -0.00638580695, 0.00191310328, 0.00544758, 0.0329786763, 0.0138857588, 0.000998332, -0.046582967, 0.00250535901, -0.0102442652, 0.00168001256, -0.00331897778, 0.00967546552, -0.0121383108, -0.00129079504, -0.0168646295, -0.00861995947, -0.00945263635, -0.00255520246, 0.00592255732, -0.00788110588, 0.00923567079, 0.0114287771, 0.0162665099, -0.0244408119, 0.01815469, -0.0269036572, 0.0204181634, -0.00437741494, -0.00124974758, -0.00360630965, 0.0108717047, 0.00834435597, 0.0239951536, -0.00888383575, -0.0150702698, 0.0100038443, 0.00279562292, 0.00705429353, 0.0131234489, 0.00227813213, -0.0149295358, 0.0293665025, 0.0168529, -0.0145073337, 0.0287332, -0.0093705412, 0.00232211151, 0.010021436, 0.00451814895, 0.00142859714, -0.0159381293, -0.00825639721, 0.00552381109, -0.00753513491, -0.00595187722, -0.00264169509, -0.00785178691, -0.00209635077, -0.00816257391, 0.0116750617, 0.00552087883, -0.00134723517, -0.0115108714, -0.00781073933, -0.0178497676, 4.0062474e-05, -0.0114991441, 0.0128185255, -0.0202657022, 0.00445950963, 0.00243792403, -0.0112528587, -0.00325154257, -0.0097751515, -0.0139561258, 0.0163955148, 0.0137450248, -0.0235494953, 0.00296127866, 0.00198200438, 0.00507228915, 0.00972237624, -0.00843231473, -0.0204768032, 0.0110593494, -0.021438485, -0.0223180726, 0.0107837459, 0.0024320602, 0.0121383108, -0.0213915743, -0.0195737593, -0.0109831188, -0.00730644213, -0.00589030609, 0.00776382769, -0.000984405284, 0.00657345215, 0.0026548889, 0.0297183376, 0.019761404, 0.00554140285, -0.0122438613, -0.00576716382, -0.0176269375, 0.00166388683, -0.0296245143, 0.00491982745, -0.0118627064, 0.00755272666, 0.0089952508, -0.0166887119, 0.0132993665, -0.0134635558, 0.00664968323, 0.0107896095, -0.00467354292, -0.016899813, -0.00978101604, -0.0245580897, -0.0112118116, -0.00544464821, -0.00179435895, 0.00915357657, 0.00132231356, -0.0228223708, -0.00437741494, 0.0122086778, -0.00122336, 0.00998625252, 0.00157006411, -0.000727125851, -0.00248776725, 0.0284986421, -0.00426306855, -0.0200663283, 0.00029796036, 0.00529218605, 0.0182954241, -0.00250389311, 0.000779901107, 0.00883692503, -0.0126191517, 0.00820362195, 0.0139326695, 0.00243645813, -0.0111179892, -0.0322984606, 0.0123376837, -0.024863014, 0.0224588066, -0.0166887119, -0.0081215268, 0.00829158071, -0.00748822372, -0.0102032181, 0.00440380257, 0.00864341576, 0.0276307836, 0.0148357134, 0.0073123062, -0.00597240077, 0.00692528766, -0.00535668945, -0.00214326219, -0.0148591688, 0.00230305386, -0.0013149837, 0.0129358033, -0.0231976602, 0.0174158365, -0.0221538823, -7.95981123e-06, -0.00241593434, 0.0205119867, -0.0162313264, 0.00149529916, 0.019409569, 0.0248161014, -0.00703083817, 0.00416631391, 0.0167708062, 0.00297740451, -0.0106430119, -0.0014022094, 0.0105902366, -0.0170874577, -0.0130999936, 0.00636235112, -0.0153282825, -0.00092503312, -0.00133917236, -0.00369720045, 0.000591156248, 0.00917116832, 0.00707774935, 0.0146949794, -0.0123845953, 0.0163368769, -0.00564108929, -0.0221304279, 0.00988070201, 0.0129006198, 0.00993347727, -0.00243939, -0.00146964449, -0.0104788216, -0.0169232674, -0.0175565705, -0.0183306076, 0.00814498216, -0.00776382769, 0.0134635558, 0.0267863777, 0.0122555895, -0.00668486673, -0.00824466906, -0.00226933626, 0.0219310541, 0.0128888926, 0.0429004245, -0.0131117208, -0.0136629296, -0.0181195065, -0.00149016827, 0.018928729, -0.018858362, -0.0471224487, -0.00216525188, -0.0184478872, -0.0335416123, 0.0139913093, 0.0261061639, 0.00438327901, -0.00772864418, -0.000147880695, 0.0165010653, 0.0292492248, 0.0363328382, 0.00473804586, -0.000243902352, 0.00369720045, -0.00354180671, -0.0254259501, -0.00292609516, -0.0142962327, -0.0306800194, 0.0126895187, 0.00703670178, 0.0327441208, 0.0084616337, 0.00268274266, -0.00679041725, 0.000514192332, 0.0158325788, 0.0268567447, 0.00564402109, -0.00485239225, 0.012290773, -0.00739440089, -0.0152110038, 0.00085906405, 0.0293195918, -0.00157299603, -0.00575250387, 0.00754099898, -0.0207934547, 0.00545344409, 0.0326502956, -0.0184244309, 4.90645034e-05, 0.000793094921, 0.0232797563, -0.017251648, -0.00535962125, 0.00131425064, -0.00484652864, -0.000807021745, -0.00676696189, -0.00843817834, -0.0093060378, -0.0146363396, 0.0094585, 0.00725953095, 0.00961682573, 0.00129959092, -0.0117219724, 0.00755859073, -0.0214033015, 0.013616018, 0.00101958879, -0.00681387307, 0.00333950133, -0.01236114, 0.011205948, 0.0265518222, -0.017533116, 0.0051573161, 0.0112704504, -0.0140147647, -0.0126191517, 0.0154690165, 0.0178849511, -0.0199842341, -0.00588737382, -0.00354767055, 0.0143079609, 0.00310201268, -0.0255197715, 0.0042132251, 0.00299353036, 0.0185182542, -0.00119843835, -0.00910666492, -0.0202070624, -0.00528045837, 0.0216026753, -0.00728298631, -0.00204797345, -0.0207465421, -0.0012695383, -0.00389950559, -0.00710120518, 0.00985138305, -0.0375290774, -0.00642685452, -0.00642685452, 0.0113056339, -0.0123259565, -0.00304337358, 0.00518663554, 0.00200252817, 0.0103204958, 0.0279122517, -0.0188466329, -0.0283109974, -0.0193157475, 0.0224118959, 0.0223180726, 0.00866687112, 0.0145190619, 0.00630371226, -0.00419270154, -0.00719502755, -0.00217697956, -0.00110608153, -0.0049696709, 0.000275054423, 0.0156097505, 0.00569093274, 0.0172399189, -0.0034010727, -0.00219310541, 0.00791042577, -0.0140147647, -0.0114463689, 0.0261061639, -0.00975169614, 0.0219545104, 0.0168529, -0.00223708479, 0.00374117983, 0.0102325371, 0.0286159217, -0.024651913, 0.0134401005, -0.0099041583, -0.00390243763, -0.00193509297, 0.00769932475, 0.00816843845, 0.0167121664, -0.0230100155, -0.0171930082, -0.0170288179, 0.00506349327, 0.00418683747, -0.0179787725, -0.000136885836, -0.00738267321, -0.0190342795, -0.00799252093, -0.0170874577, 0.0118509792, -0.0065558604, -0.0120562157, 0.0329317637, -0.0112235397, -0.0168177169, -0.0141789541, -0.00304044154, -0.00236755703, -0.00594308134, 0.00263729715, 0.0187997222, -0.0207230877, 0.00176210748, 0.00745890383, 0.0372241512, -0.00522181904, -0.0130296266, 0.0166652557, 0.00896006729, -0.0196675826, -0.019761404, 0.00175037957, -0.0403672121, 0.0173689257, 0.0165010653, 0.0180022288, -0.0126777915, -0.0224001668, -0.00408421922, 0.0137215685, -0.00320756319, 0.00134870119, -0.0265283659, -0.00546517177, 0.00392002938, -0.00372358807, -0.000535815547, -0.00280735083, -0.00333950133, 0.00956991501, 0.0089952508, -0.000995400129, 0.0114815524, -0.0148474406, 0.00499019446, 0.00109728565, -0.00698979059, -0.0249802917, 0.0221538823, 0.00870205462, -0.0014256651, 0.00385259418, -0.00859650411, -0.0139795812, 0.00647963, -0.0218137763, -0.0155628389, -0.0164541546, 0.0138153918, 0.012150039, 0.0139092142, -0.00944090821, -0.0237723254, -0.00419563334, 0.00563522521, -0.017462749, 0.0186707154, 0.0258481521, 0.0122555895, -0.00679041725, -0.00390536967, -0.00921807904, 0.0186003484, 0.035746444, 0.0197496768, 0.000961682585, 0.00545344409, -0.0125605129, 0.0148826241, 0.026950568, 0.0207699984, -0.00698392652, -0.0145659726, -0.000487438199, -0.0130061703, 0.00908907317, -0.0101211229, 0.00394348521, 0.0112587232, 0.01333455, -0.037787091, 0.0170991849, -0.00505469739, -0.00232504355, 0.00340693654, 0.00477322936, 0.0254024938, 0.00390536967, 0.00770518836, -0.0170170907, -0.00534789357, -0.00435689138, 0.0130296266, 0.00871378276, -0.00144838786, -0.0260357969, 0.000859797, -0.0105961, -0.00115885679, -0.0136512015, 0.00355646643, 0.0035300788, -0.00472925, 0.00192629709, -0.00750581548, -0.00426306855, -0.000233090745, -0.030726932, 0.0129475314, 0.0116574699, -0.0405783132, -0.000722361438, -0.00844990648, -0.0281702634, -0.00767000485, 0.0112469951, -0.00398160052, -0.00851440895, 0.00994520541, -0.013616018, 0.00645617396, 0.00346850767, 0.00703670178, -0.0103674075, 0.0184478872, 0.0114756878]
26 Nov, 2018
Duration plusHours(long) method in Java with Examples 26 Nov, 2018 The plusHours(long) method of Duration Class in java.time package is used to get an immutable copy of this duration with the specified number of hours added, passed as the parameter. Syntax: public Duration plusHours(long numberOfHours) Parameters: This method accepts a parameter numberOfHours which is the number of hours to be added. It can be positive or negative but not null. Return Value: This method returns a Duration which is an immutable copy of the existing duration with the parameter amount of hours added to it. Exception: This method throws ArithmeticException if numeric overflow occurs. Below examples illustrate the Duration.plusHours() method: Example 1: // Java code to illustrate plusHours() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Duration 1 using parse() method Duration duration1 = Duration.parse("P2DT3H4M"); // Get the duration added // using plusHours() method System.out.println(duration1.plusHours(2)); } } Output: PT53H4M Example 2: // Java code to illustrate plusHours() method import java.time.Duration; public class GFG { public static void main(String[] args) { // Duration 1 using parse() method Duration duration1 = Duration.parse("P0DT0H4M"); // Get the duration added // using plusHours() method System.out.println(duration1.plusHours(5)); } } Output: PT5H4M Reference: https://docs.oracle.com/javase/9/docs/api/java/time/Duration.html#plusHours-long-
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples
https://www.geeksforgeeks.org/duration-plushourslong-method-in-java-with-examples/?ref=ml_lbp
Pandas
Duration plusHours(long) 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++, Duration toDays() method in Java with Examples, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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(), Duration plusHours(long) method in Java with Examples, 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, Duration toNanosPart() method in Java with Examples, 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++, Duration plusMinutes(long) method in Java with Examples, 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, Duration ofNanos(long) method in Java with Examples, Sort given Array based on the fractional values, Duration parse(CharSequence) method in Java with Examples, 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.012108922, 0.00785380229, -0.0082816584, 0.0384953506, 0.0152504425, -0.0103154415, -0.0217093155, 0.0278282482, -0.0163405966, 0.00146013312, 0.0398316719, 0.015754493, 0.00137514796, -0.0238661803, -0.011364569, 0.0335486308, -0.00948317256, 0.03036022, 0.0118979244, 0.0409101024, -0.0247570593, 0.029469341, -0.00846921187, 0.0600171126, 0.0444267318, 0.0266560391, 0.00464194873, 0.0123785296, -0.015953768, -0.0225298628, -0.00984655786, 0.0111711547, 0.00604859972, 0.0303836633, 0.011247348, 0.0112942364, 0.0626897514, -0.0280392449, 0.0172431991, 0.000875493803, -0.00297594629, 0.00599878095, 0.0117924251, -0.0020689494, -0.0128005249, -0.0105264392, 0.0194938406, 0.0260699335, -0.0198689476, -0.0258823801, -0.00260670041, -0.00178615388, -0.0381436907, -0.000714681344, 0.0256479383, 0.0399957784, 0.0405818857, 0.00340526784, 0.0116400383, -0.0421292, 0.0463491529, 0.0150746107, -0.00583174126, 0.0104619674, 0.0066171214, 0.0109777395, 0.0212990418, 0.00146819209, 0.012683304, 6.9943344e-06, 0.0094069792, 0.002962759, 0.0225181393, 0.00931906328, 0.00736147398, -0.0502174459, -0.00258911727, 0.020173721, -0.00828751922, -0.0116283158, -0.0185560733, -0.00450128363, -0.0547656156, 0.0115404, -0.0229049698, -0.0535934083, -0.00980553, -0.0257886034, -0.0310635455, 0.017794136, 0.0115872882, 0.0120620336, 0.033454854, -0.00607204391, -0.0369714797, 0.0601108894, 0.0100048063, 0.0163523201, -0.0346036181, -0.00329976901, 0.0137851806, 0.0140782334, 0.0224478077, -0.00149822992, 0.0457864925, 0.000109986198, 0.0219320357, -0.0212755986, 0.00348732248, -0.0103447465, -0.0158013813, -0.0120737553, -0.00945972838, 0.0116986483, -0.00163816242, 0.0335486308, 0.00299206423, 0.00218910072, 0.0179816894, 0.0260230452, 0.0143830078, 0.0432545207, 0.0401833318, 0.0451300554, 0.00343750371, -0.0109015461, 0.000242134469, -0.00947145093, 0.0328921936, -0.0698167831, 0.0214279853, -0.0225767512, -0.0092663141, -0.0555627197, 0.011048072, -0.0101571931, -0.0124371406, 0.00268435921, -0.0260699335, 0.0280158017, 0.0255072732, 0.00415255129, 0.000985388411, -0.0306181051, -0.0021334209, -0.0113587081, -0.0231980216, 0.037909247, 0.00397965033, 0.000448736362, -0.0632055253, -0.0244757291, 0.00982897449, 0.000158065086, -0.0134100737, 0.0375341401, 0.0292349, 0.0150160007, -0.039433118, -0.0257886034, -0.00261256145, -0.0226353612, -0.00217151758, 0.0222602542, 0.0175245292, 0.0219203141, -0.00989930704, -0.0393862315, 0.0412383229, 0.0107784644, -0.00955350511, -0.00556506356, 0.0292817876, -0.00127257966, -0.0229753014, 0.00450714445, -0.00228287745, 0.0188608468, -0.0146877822, 0.00231511332, -0.00399137242, 0.0121792546, -0.0125309173, 0.0255776066, 0.034978725, -0.0354007185, 0.00807066076, -0.0130232451, -0.0150042782, -0.00930148084, -0.0364791527, 0.00518702576, -0.0112532089, 0.0216975939, -0.0277110264, 0.00564125692, 0.0328687467, 0.0028382116, 0.00030440808, 0.0181223545, -0.042926304, -0.039315898, -0.00588742085, -0.0476385839, -0.0250149462, -0.0144650619, 0.0303133316, -5.57257299e-05, 0.0329625234, 0.0263747089, 0.0132107986, 0.0216975939, -0.0174424741, -0.0148284473, 0.0237137936, 0.0186615717, -0.012741915, 0.00469176751, 0.0109953228, -0.0641901791, -0.0015590383, -0.0200330559, 0.0336424075, 0.00496137561, -0.0364088193, 0.00358696026, -0.0466304831, 0.0341112912, 0.0353538319, -0.0233621299, 0.0216155387, 0.0136679597, -0.014664338, -0.007748303, 0.0143830078, -0.011880341, 0.00374227809, 0.0187201817, 0.0192711204, -0.00237665419, 0.00501119439, 0.0293286759, 0.0168329254, -0.039198678, -0.0469821468, 0.00714461552, 0.0274531413, 0.0334079638, 0.0560316034, -0.0381671339, 0.0333141871, 0.00102495053, -0.0187319033, -0.000405511149, -0.0236200169, 0.0376044735, -0.0133866295, 0.0146408938, -0.0233152416, -0.00555627188, 0.0199978892, 0.0150863333, 0.0107198535, -0.0145588387, -0.0263278205, -0.00128796487, 0.0130115226, -0.00644129, -0.00826993678, 0.0287425704, 0.024733616, -0.0300320014, 0.00419650925, 0.0102333864, 0.00258911727, -0.00241914694, -0.0391752347, -0.0238310136, 0.0683163553, 0.0662063807, -0.0273828078, 0.0111828763, 0.0094069792, -0.00835199095, -0.0248039477, -0.0185795166, -0.0151214991, 0.00941870175, -0.00200301269, -0.0225415844, 0.0140079008, -0.036385376, 0.0111359879, 0.00397378951, 0.0371355899, -0.00526615, -0.0297741145, -0.0183216315, 0.00161764876, 0.0144181736, -0.00354300253, 0.0028235591, 0.0123316413, -0.0165633168, 0.027148366, 0.0106084943, 0.00882673543, -0.0270545892, -0.0101689156, 0.00954178348, 0.0183333531, 0.0251321662, -0.000504782598, -0.0095242, 0.00797688402, -0.00356351607, 0.0251556113, -0.00302429986, -0.0218499806, -0.0184857398, 0.00148504262, -0.00212169881, -0.052514974, 0.0339002907, 0.0468883701, 0.016211655, -0.0276875831, -0.00713875424, -0.000503683696, -0.0306181051, -0.0269139241, -0.0112590697, 0.010702271, -0.00970589276, 0.0143712852, 0.00549180061, 0.039315898, -0.0222133659, -0.022811193, 0.00986414123, 0.00126378809, 0.0120151453, 0.00317082601, 0.0130466893, 0.0199275576, 0.0181809664, 0.0239599571, 0.00162497512, 0.0143126752, 0.0659719408, 0.000625300396, -0.00255102036, 0.0288129039, 0.0122730313, -0.0296100061, -0.0265388172, -0.0246867277, 0.00292173168, 0.0128943017, 0.00917839818, 0.0245929509, 0.00894981809, 0.0179465245, -0.0245929509, -0.00941284, -0.0424105301, -0.0343222879, -0.0152035542, -0.0163405966, -0.0150746107, 0.00353128044, 0.0364322625, 0.0391049, 0.0244288407, 0.0178761911, -0.00762522127, -0.00640026247, 0.00642370665, -0.00150921941, 0.0113762906, -0.0127301924, 0.0332438536, -0.0174659174, -0.0313917622, 0.0380968, 0.00780105265, -0.0478026941, -0.00295103691, 0.0149573898, 0.0101220272, 0.000871098, 0.0268435925, 0.0269842576, -0.00989344623, 0.0308291037, 0.0384953506, -0.0195524506, -0.0263278205, 0.0407459922, 0.0120268669, 0.0119858393, 0.0248273928, -0.00489983475, -0.0327749699, -0.00702153333, 0.0493265651, -0.0283440202, 0.0248273928, 0.025225943, 0.0173135307, -0.0140079008, 0.0464898199, -0.0625490844, -0.0462553762, -0.0141133992, -0.0199861676, -0.0231980216, 0.0157896597, -0.0259292684, 0.0351193883, 0.007748303, 0.0472869202, -0.029469341, -0.0177706927, 0.00124180922, 0.0204081628, 0.0276172496, -0.0121323662, 0.0153793851, 0.0182747431, -0.019540729, 0.0291411225, 0.046114713, 0.0479902476, 0.00899670646, -0.00169530767, 0.0404177755, 0.0368073694, -0.0440516248, -0.00878570881, -0.0384015739, 0.00629476365, -0.0102099422, -0.019024957, -0.00439871522, 0.00307411887, -0.0686914623, -0.0148518914, -0.0189311802, -0.0167157035, -0.0523274206, -0.00892051216, 0.0531245247, -0.00778933056, 0.0368542597, -0.0102509698, -0.0231042448, 0.00926045328, -0.00462729624, 0.015953768, -0.00804135576, 0.0196813941, 0.0073087248, 0.00448077, 0.0304539967, -0.0175948609, 0.053687185, -0.0107257152, -0.00388001255, 0.0297037829, -0.0396675617, 0.0166219268, -0.0415665396, -0.0388939045, -0.0245226175, -0.0134569621, -0.00690431241, -0.00764280418, -0.040488109, -0.0334782973, 0.0314855427, 0.0375106968, 0.0454348326, -0.00642956793, -0.0311573222, 0.0165047068, 0.0382609107, 0.00102275261, -0.0306649935, 0.0480136909, -0.00126598601, -0.00291880104, -0.00392104, 0.0312276538, 0.0192711204, -0.0169853121, -0.0112414872, 0.0206777714, 0.00333200488, -0.00637681829, -0.0476151407, -0.00120224711, 0.00317668705, -0.00223159348, 0.0112825138, -0.0242881756, -0.0348146148, -0.0463491529, -0.0580946915, -0.0226588044, -0.0221782, 0.0153559409, -0.0122495871, 0.0652217269, -0.0285784621, -0.0125778057, 0.00627131946, -4.07296939e-05, 0.0129763568, 0.000355875411, -0.0184740182, 0.027546918, -0.00613065436, 0.0044075069, -0.00104619679, 0.00968244858, -0.00860401616, 0.0411211, 0.00573796453, -0.0101220272, -0.00808824413, -0.0234324634, -0.00431373, 0.0159420464, -0.0119448127, -0.0564535968, -0.0165047068, 0.0119037852, 0.000500020513, 0.0102802748, -0.007748303, 0.0246867277, -0.00609548809, 0.0233621299, 0.00442509, -0.00572038116, 0.00933664665, 0.00722667, -0.00430200808, 0.0177472476, -0.00947731175, 0.0128474133, 0.00450128363, 0.0134804063, -0.022987023, -0.0133983521, -0.0144416178, 0.00751386117, 0.0240302905, 0.0295631178, 0.00624201447, -0.0231042448, 0.00204404, -0.00322943646, 0.0166453719, 0.00934250746, 0.00351076666, 0.0203729961, -0.00454524159, 0.018309908, -0.000985388411, -0.00432838267, 0.00568228448, 0.00921942573, 0.00114510197, 0.0198455025, -0.00490569556, 0.0127770808, 0.00490569556, -0.00190630532, 0.00526615, -0.0263043754, 0.00363091822, 0.0162937082, -0.036244709, -0.0413555428, -0.0302898865, -0.0297037829, -0.0169501454, 0.0155200502, 0.0165984835, -0.00189018738, 0.0129646342, 0.0146408938, -0.0196110606, 0.0255307183, -0.0175362509, -0.00984069705, 0.00441336771, -0.0195290055, -0.0503112227, -0.00113411248, -0.00332907424, 0.0215920955, 0.00745525071, 0.00860987697, 0.0245929509, -0.0240302905, 0.00447783945, -0.0326343067, 0.0201385543, 0.0101278881, 0.027546918, 0.00493793143, 0.00572038116, -0.0139961783, -0.0263981521, 0.00917839818, -0.00256860349, -0.00681639696, 0.0268435925, 0.00610134937, 0.0296100061, 0.0569224805, -0.0385187976, 0.0249211695, 0.0186146833, 0.0067577865, -0.00599585054, -0.0451066121, -0.0282736868, -0.0346739516, 0.0177238043, 0.00937181339, 0.012366808, 0.019142177, -0.0263747089, -0.00542732887, 0.0180168562, 0.0301726665, -0.0230573565, 0.0251790546, 0.00743766781, 0.0403708853, -0.0104092183, -0.00173780019, -0.000149731422, -0.0101161655, 0.006054461, 0.00756074954, 0.0137148481, -0.0257886034, 0.01882568, 0.0175831392, -0.0181223545, -0.0130349668, 0.0343926214, -0.0181809664, -0.0338768475, 0.0198572241, -0.0152269984, -0.00346680894, 0.00921356492, 0.0111828763, -0.000174457702, -0.00487932097, -0.00340526784, -0.0335486308, 0.0409101024, -0.000564858317, -0.00621857028, -0.0239951238, -0.00936595164, 0.0199744459, 0.00400309451, -0.0197048374, -0.0042814943, -0.00783621892, -0.00552403601, 0.00591672631, -0.00801205076, 0.00280451076, 0.017618306, -0.00158980885, -0.0235379618, 0.000647279317, 0.022096144, -0.0185209066, 0.00346680894, -0.0173135307, 0.0198103357, 0.00600757264, -0.0092077041, 0.0117455367, -0.0139492899, -0.0029012179, -0.00694534, 0.0359868258, -0.0182278547, -0.0343222879, 0.00736733526, 0.0123785296, -0.0134804063, 0.00114143873, -0.00545956474, -0.0196696706, -0.000833001221, 0.0279454682, -0.012366808, 0.00162057928, 0.0104033574, 0.0096296994, 0.0149105014, -0.00279718428, -0.0179582462, -0.00668159267, 0.00245284778, -0.0269139241, 0.0497485623, -0.00419064797, 0.021838259, -0.0145002287, -0.0136796823, -0.0179113578, 0.026773259, 0.0169970337, 0.0536402948, -0.00175245281, 0.0182630196, -0.00477382215, -0.000977329444, 0.0172783639, 0.0185326282, -0.00274296966, -0.0425511971, -0.0299851131, 0.00836371351, 0.00890879054, 2.62144458e-05, -0.00756661082, -0.0198923908, -0.000852049619, -0.0128122475, -0.00728528062, 0.0123902522, -0.0258823801, 0.00904359482, -0.0179348011, -0.0133397412, -0.0055181752, 0.00530131627, 0.0257182717, 0.0148987798, 0.0175245292, -0.0270780344, -0.024217844, 0.0243819524, -0.0169735905, 0.0106202159, -0.00903773308, 0.0063533741, 0.00366608449, -0.0104854116, -0.00582001917, 0.00224917661, -0.00188579166, -0.0264919288, -0.00841646269, 0.00496137561, -0.00798274484, 0.0238427371, -0.00711531, -0.00985827949, 0.00547128683, 0.0263981521, -0.00625373656, -0.00785380229, 0.01864985, 0.0235731285, -0.00226529432, 0.0142775085, -0.0195758939, -0.0115345391, 0.0126012499, 0.000567056239, -0.0320482031, -0.0244288407, -0.0211583767, 0.00735561317, -0.0167743154, -0.00665228767, 0.0371824764, -0.00709772715, -0.0234559067, -0.00441922899, 0.00893223472, 0.0177472476, -0.023326965, 0.0241240673, -0.0373465866, 0.00110114412, 0.00210851151, 0.0101103047, 0.0164343733, 0.0254134964, 0.0133514637, 0.0519992039, 0.00121983024, 0.00279425387, -0.005236845, -0.0171845872, 0.00356351607, -0.0229635797, -0.028437797, 0.00139712694, -0.0103916349, 0.0115521224, 0.0121206436, 0.000267410243, 0.00393569283, 0.002553951, -0.0231863, 0.0214983188, 0.00840474, 0.0253666081, 0.0238075703, 0.0109542953, -0.0065057613, 0.000409540604, 0.0166453719, 0.00617168192, -0.0445205085, -0.0121323662, -0.0243585091, 0.00561488234, -0.00377451372, -0.0105791884, 0.0301961098, -0.0239716787, 0.0104033574, -0.0361274891, -0.0178175811, 0.00967072602, -0.024850836, -0.0175948609, 0.0422464237, -0.0269842576, -0.0149573898, -0.0246632826, -0.000460458454, 0.0238310136, 0.000560462533, 0.0085629886, 0.048435688, 0.0375341401, 0.0209591016, -0.0312979855, -0.0154028293, 0.0271014776, -0.00139785954, 0.0275703613, -0.0110832388, -0.0206074379, 0.0153324967, 0.0268904809, -0.0192593988, -0.0141485659, -0.00825821422, 0.0206543263, -0.0383546874, 0.0125660831, 0.0556096062, 0.0461616, -0.0221313108, 0.00486466847, 0.00371004222, 0.0156138269, -0.00184916006, 0.0145588387, -0.0409101024, 0.0388470143, 0.00237079314, 0.0188374035, 0.0284143519, 0.00258618663, 0.0332438536, -0.0185326282, -0.0189546235, 0.0285784621, -0.00824063085, 0.00501412526, 0.000626399298, -0.000341589097, -0.0604391098, 0.044708062, -0.00299939048, 0.0190718453, -0.00987586286, 0.0300788898, -0.0309463236, 0.00993447378, -0.0107198535, -0.0104971342, 0.00913737155, -0.000788310717, -0.00758419372, 0.0243819524, -0.0342050679, -0.0253900532, 0.00209678942, -0.0153090525, 0.0334079638, -0.0186615717, 0.00334079633, 0.0249680579, -0.0348146148, -0.0346739516, 0.0248742811, 0.000665228756, -0.0382843539, -0.0131287435, -0.00385070732, -0.0137617365, -0.00116488291, 0.0129294684, -0.0259527136, -0.0250383895, -0.00298766838, 0.0234793518, -0.000630428782, -0.0140665108, 0.01882568, 0.00643542875, -0.00729700271, -0.00480605802, 0.00114510197, -0.0337596275, 0.0148987798, -0.0524211973, -0.025624495, 0.0156021053, -0.00183890329, -0.00224771118, -0.0184857398, -0.0401833318, 0.00157369091, -0.0268904809, 0.0450128354, -0.0164460968, -0.00386829046, 0.0304539967, 0.0364791527, 0.0309697688, -0.014289231, -0.0119917011, 0.0123902522, -0.0182747431, 0.00630062493, 0.00520460913, 0.0227408595, 0.0275234729, -0.0208418798, 0.0304539967, 0.0114876507, -0.00799446739, 0.0209356565, 0.00112751883, -0.0269608125, -0.0229049698, 0.00011667145, -0.011851036, -0.0114407623, -0.0269373693, -0.0314620957, 0.0339002907, 0.0190132335, -0.00853954442, -0.0226822495, -0.0220844224, -0.039433118, 0.0167743154, -0.00384484627, -0.0235262401, 0.00916667655, 0.0107198535, -0.00749627827, 0.0338534042, -0.0177120827, 0.00590207381, 0.00917839818, 0.0133866295, -0.0168680921, 0.014922224, -0.0466773733, -0.0165281501, 0.0152269984, 0.00184476434, 0.0142423427, -0.000823477, -0.016844647, -0.0197400041, 0.000729333959, -0.0293755643, -0.0331266336, 0.0254603848, 0.00402653869, -0.014722948, 0.0214983188, -0.0491859019, -0.0041261767, -0.0131639102, -0.0664408207, 0.00877398625, -0.0125660831, -0.0346036181, 0.0157779362, 0.00489104306, -0.00733803, 0.0248977244, 0.0120385895, -0.00803549495, -0.0240771789, 0.0104502458, -0.00363091822, 0.000108612512, 0.00499068107, -0.00840474, 0.0055181752, -0.00741422363, 0.00880329125, 0.00305946614, 0.00269901194, 0.022096144, 0.00847507268, 0.00165134983, -0.0172197539, -0.0162233766, -0.0120385895, -0.0134569621, 0.0120151453, 0.000488298421, 0.0133631853, 0.00974692, -0.0451066121, -0.0101278881, -0.0321419798, 0.0292583425, 0.00890879054, 0.0243585091, 0.000360271195, -0.0131170219, -0.00904945564, 0.00846921187, 0.00826407503, 0.00894395635, 0.000784647593, -0.0102040814, 0.0130466893, 0.0208887681, 0.00983483531, 0.00532476045, -0.0225533061, 0.00941870175, -0.024733616, 0.00288803061, 0.0267498158, -0.0224829745, 0.00156489934, 0.00170263392, 0.0186264049, -0.0299382247, -0.0286956821, -0.00570865907, 0.0121558104, 0.00486173807, -0.0225884728, 0.0178527478, 0.00763694337, -0.0301023331, -0.0108429361, 0.00646473421, -0.00624201447, 0.028555017, 0.00404998288, 0.00600171136, -0.00111652934, 0.0155083286, -0.0280158017, -0.019024957, 0.0192828421, -0.00850437861, 0.0081409933, -0.0198103357, 0.0513427667, 0.0310166571, -0.0249915011, -0.0133866295, 0.0167391486, -0.00831682514, -0.0118920626, 0.0144298961, 0.0222602542, -0.0406991057, 0.0129529126, 0.00634165201, -0.0173369758, 0.0203495529, 0.00174073072, -0.0218265373, 0.0337830707, 0.00601343345, -0.022354031, -0.0291411225, 0.0302429982, -0.0447783954, 0.0135272946, -0.0230808, 0.0122026987, 0.00907876063, 0.0237841252, 0.0184974615, 0.0370418131, -0.0254134964, 0.021779649, -0.00553868897, 0.00225357222, -0.0161764883, 0.016012378, 0.00773658091, -0.0345332846, -0.0069160345, -0.0191538986, 0.0211349335, -0.0177472476, 0.00304481364, -0.00773658091, 0.02806269, 0.0269139241, 0.0224243626, 0.0187787917, -0.00576726953, 0.0129177459, -0.0327280834, -0.00763108209, -0.000923114771, -0.00298180734, -0.0275234729, -0.019951, 0.0155552169, -0.000826407515, 0.00489104306, -0.01882568, -0.0108839627, -0.0120620336, -0.0138086248, 0.00232390477, -0.00580829708, 0.00764280418, -0.0161296, 0.0306884386, 0.00949489512, -0.0088443188, 0.0143712852, -0.00866262615, -0.0184740182, -0.000894542201, 0.0117924251, -0.0214279853, 0.0354944952, 0.0231511332, 0.00224917661, -6.01673019e-05, 0.0263043754, 0.0150277223, -0.0216272604, 0.0068867295, -0.0500298925, 0.0115345391, -0.0175245292, -0.012167532, 0.0202440545, -0.00417892588, 0.0290473457, -0.00337596261, -0.00307411887, -0.00188286114, -0.0301023331, -0.032165423, 0.00676950859, -0.0110011837, 0.00569986738, 0.016211655, -0.00198689476, 0.00154145516, 0.00132752699, -0.0260699335, -0.0154614402, 0.0120854778, -0.0047034896, 0.0291880108, 0.0112004597, 0.00907876063, -0.0229635797, 0.0194938406, 0.0280158017, -0.0224009193, -0.00182278536, -0.00528373336, -0.0213693753, -0.0149691124, 0.00795930065, 0.0211232118, -0.0138906799, -0.0111184046, -0.002962759, -0.000101377787, 0.010245109, -0.00337596261, -0.0250383895, -0.00995205622, 0.00478261383, 0.0193766188, -0.0181692429, -0.0380968, 0.00624787528, -0.00105425576, -0.00843990687, -0.0226822495, 0.0112004597, -0.00230192603, -0.0239716787, 0.015437996, 0.0158717129, -0.0053628576, 0.0255541615, -0.00246310467, 1.26722234e-05, 0.00613651564, -0.0164460968, 0.0222133659, -0.00370711181, -0.000472913176, 0.0114524849, 0.000568155199, -0.00791827403, -0.00955936685, 0.0308994353, 0.000678416109, 0.00886190217, 0.00495258393, -0.00331442175, 0.00704497751, -0.0348380581, 0.0369480364, 3.6608646e-05, -0.0191538986, 0.000655704585, -0.00985827949, 0.0109660178, -0.0150042782, -0.0224829745, -0.0265388172, -0.00901428889, -0.0254603848, -0.0286722388, -0.0302664433, -0.0184857398, 0.0173955858, 0.0231042448, -0.00693947868, -0.00922528654, 0.00627718074, 0.00501412526, 0.00338475429, -0.0131990761, 0.0135624614, 0.0128239691, -0.0496547855, 0.0067577865, -0.0185326282, -0.0166805387, 0.00196931162, 0.0175362509, -0.00542732887, -0.0185912382, 0.0132107986, -0.0146995038, -0.0023385575, 0.0047621, 0.0175479725, -6.96571624e-06, -0.0314386524, 0.0174307525, -0.00109381776, -0.00361333508, 0.00314152078, 0.0125309173, -0.00259351288, 0.00456575491, -0.0223891977, 0.0128122475, -0.00391224818, 0.00717392052, -0.0100516947, 0.0111770155, -0.00854540523, -0.0163054317, 0.0066347043, 0.0112532089, -0.00123594818, 0.0112297647, -0.00189897895, -0.00659953803, 0.00259790872, -0.00860401616, -0.00807652157, 0.00510790199, 0.0157662146, 0.0117689809, -0.00182571588, 0.00996964, -0.0205957163, -0.0172431991, 0.00832854677, 0.00899670646, -0.000471814215, 0.00239863317, -0.00655264966, 0.0261168219, 0.0546718389, 0.0069160345, -0.00539802387, 0.00256274245, 0.00879157, -0.0172197539, -0.0109836012, -0.00262281834, -0.0317903161, -0.0141837317, 0.0068867295, -0.0176065825, 0.00639440166, -0.000200557683, 0.0034492258, 0.000357340672, -0.00942456257, -0.0023517448, -0.00113484508, -0.0088443188, -0.00563832652, -0.0162468199, -0.00684570195, -0.0222719759, -0.00409687124, 0.0191304553, 0.0347677283, 0.0114935115, 0.0130466893, 0.00875640288, -0.00755488873, 0.0154262735, -0.00507566612, -0.0180989113, 0.00417013466, -0.013574183, 0.0254134964, -0.0115110949, 0.00904359482, 0.0331735238, 0.023385575, -0.0226588044, 0.0144767845, -0.0323764198, 0.0107960477, 0.027922025, 0.00447197817, -0.00248947949, -0.0262340438, -0.0105909109, -0.00109674828, 0.0106671043, 0.00557385525, 0.00584346335, -0.0112883756, 0.017102534, 0.0175831392, -0.0129060242, -0.0141368434, 0.00953006092, 0.0070566996, -0.00787138566, -0.0229987465, 0.0371824764, 0.00115242822, 0.0076076379, -0.015754493, 0.00829338096, -0.0125074731, 0.0310869887, -0.00295543252, 0.00224771118, -0.0137265706, -0.00200008205, 0.00993447378, -0.0194352288, 0.0147112263, 0.00311221555, -0.0171963107, 0.0111008221, 0.0140547892, -0.0200096127, -0.00868607, -0.0388470143, -0.00403826078, 0.0127888033, 0.00268875505, 0.000633359305, -0.00612479355, -0.00292319688, 0.0189429019, -0.0483419113, -0.0109191295, 0.00790069066, -0.0222602542, 0.000597094069, 0.0170322, 0.00114803249, -0.0272421427, -0.000558997272, -0.000475477369, 0.0286722388, 0.00774244219, 0.0192007869, -0.0139141241, 0.00852196105, -0.0015077542, -0.0342753977, -0.0070273946, -0.0190952886, -0.00596068427, -0.00307118823, 0.00797102321, -0.000462656346, 0.00298473774, 0.00135316909, 0.00118759449, -0.000576214108, 0.0161178783, 0.0259527136, -0.00168505078, 0.00672262, 0.0121792546, 0.00995205622, 0.00606618309, 0.0108487969, -0.0216624271, -0.00143009529, 0.0468649268, 0.000387195381, 0.00753144454, 0.00785966311, 0.00637681829, -0.0137617365, -0.0171845872, 0.0205253847, 0.0230573565, 0.0357523821, 0.0114466231, 0.0135272946, -0.0172314756, 0.0203378312, -0.00101103052, 0.00234588375, 0.00218030927, 0.0202792194, -0.0100048063, -0.0250383895, -0.0157779362, 0.00166893296, 0.00995791797, -0.0322357565, -0.00992275123, 0.00585811585, -0.0159068797, 0.0124019738, 0.0119799785, 0.055328276, 0.0171142556, 0.0273828078, -0.0160006564, 0.0562660433, 0.00165574555, -0.00223305868, -0.0106612435, 0.0081058275, -0.00585225457, 0.00503463857, 0.0290239, -0.0205371063, 0.00480019674, 0.000649843481, 0.0137031265, 0.0316965394, -0.00159566989, -0.0159420464, 0.0238544587, 0.000699662429, -0.000495624729, -0.00424046721, -0.0237489603, -0.0437937379, 0.0160592664, -0.0150160007, 0.00825235341, 0.0110891, -0.00217884406, -0.0238310136, -0.00178175804, -0.0318137594, -0.00706256088, 0.01165176, -0.0194586739, 0.0153324967, -0.00839887932, -0.0126012499, 0.0074786949, -0.00868607, 0.0232917983, 0.0425277539, -0.00188432634, -0.0188960135, 0.0236434601, -0.0249915011, 0.0144767845, 0.0282971319, -0.0160006564, 0.00350490562, 0.00244552153, 0.0162233766, -0.0133983521, -0.00321478397, -0.00733216899, -0.0132459644, 0.00447197817, 0.0233386867, -0.00973519776, -0.00286751683, -0.0030272305, 0.0205488279, 0.0288832355, -0.0143361194, 0.00327339442, -0.00339647639, 0.0156489927, -0.00804135576, 0.0057848529, -0.0271014776, 0.0214279853, 0.00782449637, 0.0025554162, 0.0037188339, 0.00603101682, -0.0361978225, 0.00523098372, -0.0120268669, 0.0012388787, 0.00864504371, -0.0169970337, -0.0137031265, -0.00446025608, 0.00431079976, 0.0100985831, -0.00734389108, 0.00458919909, -0.00553868897, -0.0229987465, -0.000342504907, 0.0203847196, 0.000118777767, 0.0146174496, 0.000554601487, -0.000390125904, 0.0364322625, 0.0247805044, 0.0100692771, -0.019341452, 0.0303836633, 0.00332028279, -0.00229899539, 0.00212462922, 0.00795344, 0.00195465889, -0.0100399721, 0.0216507055, -0.0121558104, -0.0179465245, 0.00383019377, -0.00400895579, 0.0123550855, -0.0194586739, 0.00457454659, 0.0244522858, 0.0383312441, 0.00279132323, -0.0010359399, -0.00466832332, 0.0163405966, 0.00999894459, 0.000919451646, 0.0248977244, 0.0212287102, 0.00866848789, 0.0059137959, 0.00847507268, -0.00820546504, -0.010274414, 0.00902601145, 0.0270077, -0.0227056928, 0.000885750633, 0.00725597516, -0.00609548809, 0.00220814929, -0.00409980211, -0.000937034783, -0.0102333864, 0.00871537626, -0.000782449672, 0.00613651564, -0.000357340672, 0.00750800036, -0.00535406591, 0.026773259, -0.0107843252, -0.00620098691, 0.0218265373, -0.0169149805, -0.00613065436, 0.000668891938, -0.0220492557, -0.00596654508, -0.0161061548, 0.00452765822, -0.00417013466, 0.0144181736, -0.0346505046, -0.020232331, 0.0063357912, 0.00253197202, -0.00686914613, 0.00847507268, -0.0153090525, 0.00448370026, -0.00825821422, 0.00505515235, -0.0257651601, 0.0141602876, 0.0263278205, 0.00767797045, 0.00707428297, -0.00548593933, 3.76389071e-05, 0.0364322625, 0.00691017369, -0.017676916, 0.00188139582, 0.0170790888, 0.0139024016, 3.55325938e-05, 0.00192388846, 0.0134335179, 0.0119272294, -0.0123081971, 0.00564125692, 0.00614237646, 0.0107139926, 0.00988758542, 0.00441043731, 0.0145119503, 0.00598412845, 0.0182395764, 0.00370711181, 0.0379561372, 0.0308994353, 0.00710944925, -0.0105088558, -0.00903773308, 0.00156489934, 0.00334665738, -0.0152152758, -0.00875054207, -0.0109718787, -0.0147698363, -0.0280861333, -0.000871098, -0.0154614402, -0.0265622623, -0.00922528654, -0.020173721, 9.07546419e-05, 0.00557678565, 0.00258765183, 0.00234148791, 0.023819292, 0.0132342428, -0.0204784963, -0.000754609704, 0.0244522858, -0.013574183, 0.0108312136, -0.00976450276, -0.00805307738, 0.0197517257, -0.00803549495, -0.0106319385, 0.0034638783, 0.0290004574, -0.00159860041, 0.019951, 0.014347841, 0.0115052341, -0.010081, 0.0043928544, -0.0210528784, 0.0013033502, 0.0147815589, 0.00188432634, -0.03047744, 0.00615409855, 0.00406170497, -0.0188842919, -0.0297975596, 0.00186381268, 0.0130349668, -0.00292026624, -0.0105791884, -0.0311807655, -0.0248273928, -0.00864504371, -0.00314152078, 0.00139932486, 0.014664338, -0.00168944662, -0.00377158332, 0.00814685412, -0.0145471171, -0.020162, 0.00149969524, 0.0112297647, 0.00512255449, -0.00569693698, 0.0176534709, -0.0203847196, 0.00164695398, 0.0136445155, -0.023760682, 0.0097996695, 0.0134335179, -0.0053804405, 0.0122261429, 0.0181458, 0.0119623952, -0.00173047394, -0.0118334526, -0.019024957, -0.000783914933, -0.0338768475, -0.00981139112, 0.0114935115, -0.00290561374, -0.00449835323, 0.00077072758, 0.0278985798, 0.0359164923, 0.00344629516, -0.00118319876, -0.0218617022, 0.000458993192, 0.00992861204, -0.0144650619, -0.00465367083, -0.0366901495, 0.016211655, 0.00154145516, -0.0134569621, 0.000819813868, -0.0177120827, -0.00756074954, -0.0192593988, 0.0148401689, -0.0111301271, -0.00687500741, -0.0127770808, 0.0154731618, -0.00698050624, -0.0165515952, -0.0120503111, -0.0102040814, 0.00107550202, -0.00990516786, 0.00450128363, 0.0342285112, -0.00583467167, 0.0282502435, -0.0238544587, -3.10223368e-05, -0.00562074361, 0.0183919631, 0.0134100737, -0.00294224522, 0.00079124124, -0.014289231, 0.00427270262, -0.00752558326, 0.0113176806, 4.70715277e-05, -0.00254076347, 0.0117045091, 0.0166102052, -0.00108282827, 0.0087036537, 0.000512108905, -0.00777174719, -0.00553868897, -0.00143449113, -0.00437820144, 0.00331442175, 0.00634751329, -0.00925459247, 0.0201502778, -0.0161178783, -1.28553811e-05, 0.0199392792, -0.0296803378, 9.8355682e-05, 0.0081409933, 0.00133778388, -0.021521762, -0.00433424395, 0.0206660498, 0.0128005249, 0.00563539611, -0.0042521893, -0.0051137628, -0.0341816209, -0.00554748, 0.00865090452, 0.00448370026, -0.0188374035, -0.0147581147, 0.0112825138, 0.0152152758, -0.00983483531, 0.00180520222, -0.0385891274, -0.000376938551, -0.00970003195, -0.00712703215, 0.00628890283, 0.00978208613, -0.0165984835, -0.00112165778, -0.000876226404, -0.0094069792, 0.0245226175, -0.0109660178, -0.0149339456, -0.00508152694, -0.00815271586, 0.0258589368, 0.00743766781, 0.00193268, 0.0127067482, -0.00264626252, -0.010045833, 0.018134078, -0.0142775085, -0.0123550855, -0.0014183732, -0.0155200502, 0.00662884349, -0.0367604829, -0.0161296, 0.00965314358, -0.0134335179, 0.00481778, 0.0137969032, -0.0257886034, 0.0192125104, 0.0353538319, -0.0063533741, 0.00701567251, 0.00108136307, 0.0124605848, -0.0167039819, 0.00885018, -0.0229635797, -0.00390931778, -0.00756074954, 0.0175128058, -0.000967072614, 0.00456868578, 0.0188960135, 0.0094069792, 0.0151332216, 0.00690431241, -0.0137031265, -0.000671456102, -0.00777174719, -0.00860987697, -0.0419182032, -0.00253197202, 0.0070273946, -0.0193062872, 0.0194352288, -0.00918426, 0.0088736238, 0.0131990761, 0.00417013466, 0.00751972245, 0.0200330559, -0.010760881, -0.00676364731, -0.00143522373, 0.00616582064, -0.0142306201, 0.00498482, 0.0116165942, -0.0161882099, 0.0189311802, 0.00954178348, -0.0207949914, -0.00331149111, -0.00134584273, -0.0230573565, 0.0256010499, 0.000514673127, -0.0292583425, 0.0275234729, 0.00191509689, -0.0241709556, 0.0179699678, 0.0147815589, -0.00286458642, 0.0148401689, -0.00149969524, 0.00166600244, 0.00678709149, -0.0165867619, -0.00617168192, 0.0188139584, 0.00250852783, 0.0166102052, 0.00675192522, -0.01523872, -0.00194440212, 0.00247336156, 0.0113997348, 0.00450128363, 0.00455403281, 0.00291880104, -0.00367780658, -0.00544491224, -0.0275938064, -0.0104502458, 0.00722080888, -0.0303367749, -0.00162790564, 0.0278048031, -0.0284612402, 0.00970589276, 0.00839301851, 0.0144885061, 0.00631234702, 0.0024294036, 0.00485880719, 0.00192828418, 0.0186146833, -0.000478407892, 0.000174824017, -0.0118275918, 0.0347911716, -0.018134078, 0.0068867295, 0.0197048374, 0.0229518581, 0.0160827115, -0.00634751329, 0.00737905735, 0.0122144204, -0.010274414, 0.0055181752, 0.0214162637, -0.00614823774, 0.0084223235, 0.00341992057, 0.000244881841, -0.00581122749, 0.0196813941, 0.0440047346, -0.0144650619, 0.00950661674, 0.0150980549, -0.00103960314, -0.0268435925, -0.013257687, 0.0132811312, -0.000328035443, 0.0119682569, 0.0152152758, -0.0168798137, -0.011335264, 0.00800618902, -0.00444853399, -0.000126104074, 0.00489983475, 0.00350490562, -0.00956522767, 0.00892637391, 0.0148167247, -0.0216858722, -0.0131990761, 0.0125191947, 0.00390638737, -0.0145940054, 0.0301023331, 0.0110773779, -0.0175245292, -0.00535113551, -0.0222836975, 0.00359575194, 0.00371590327, -0.00878570881, 0.029586561, -0.0069160345, 0.00753730536, -0.0070391167, -0.0101689156, -0.0195524506, 0.00840474, -0.00353714149, 0.00791241229, -0.00342578162, 0.0055035227, -0.0125660831, 0.00335837947, -0.00624201447, -0.0150980549, -0.0122261429, 0.000247629214, -0.0229635797, -0.00614823774, -0.00470642, 0.00125939236, -0.00431373, -0.00153852464, 0.00569400657, 0.0213342085, -0.0158599913, 0.000400016404, -0.00499068107, 0.0108487969, -0.0200682227, 0.00964728184, -0.00533355214, 0.00321185333, 0.00354593294, -0.0040001641, 0.000996377901, -0.0066171214, 0.00319720083, -0.0132459644, 0.00836371351, -0.0133397412, 0.0198923908, 0.0298678912, 0.0277110264, -0.0253666081, -0.00678123068, 0.00623029238, -0.0142775085, -0.0226822495, -0.0155200502, 0.021838259, -0.0126129715, -0.00762522127, 0.00167479401, -0.00524856709, -0.00318840914, 0.0409804359, -0.0161530431, -0.0223423094, -0.022471251, -0.00114803249, -0.0025422289, 0.01864985, -0.00947145093, -0.00226236391, -0.00433424395, 0.01876707, -0.00044653847, 0.0177472476, -0.0278048031, 0.000155409303, 0.000937034783, 0.0254838299, -0.00688086823, 0.0185209066, -0.0188374035, 0.00739077944, -0.00562367402, 0.00720322598, -0.0216272604, 0.00407635793, 0.0122964755, -4.58123177e-05, 0.0071973647, -0.0155083286, -0.00265944982, 0.00514892908, -0.0092370091, -0.0013165375, 0.00452765822, 0.00611893227, -0.0226588044, -0.0118100084, -0.0166805387, -0.00498775, 0.0164460968, -0.00426977221, 0.000542513095, -0.0253197197, 0.0244288407, 0.024217844, 0.0125660831, 0.00226822495, 0.0180168562, -0.0291880108, -0.0177706927, 0.00284407265, 0.0210177116, -0.00870951451, 0.017301809, 0.0207715482, -0.0287425704, 0.00809410494, -0.0208301581, 0.0135859055, -0.000472913176, 0.00524856709, 0.0192828421, 0.0169501454, 0.00750213908, 0.0180285778, -0.0178879127, 0.0156255495, -0.0239599571, -0.0171494223, -0.0316262059, 0.0217562038, 0.0186146833, -0.00235760584, -0.00846335106, -0.0320950896, -0.0059137959, -0.00808238331, 0.00314445142, 0.0194703955, -0.00384484627, -0.00743180653, 0.0088150138, -0.0201971661, 0.00418185676, -0.0222719759, -0.0142423427, 0.0104912734, 0.023502795, 0.017618306, 0.00853368361, 0.0234910734, 0.00465660123, -0.0199861676, 0.0141485659, 0.00457161618, -0.0178879127, 0.00804135576, -0.0132811312, -0.00658781594, -0.0189429019, -0.0163757633, -0.011048072, -0.0019297495, 0.00212169881, -0.0151332216, 0.0199158359, 0.0175596941, -0.00479433592, 0.00658781594, -0.000708087638, -0.0138672357, -0.000283528119, 0.00158101728, 0.0108663803, -0.0130818551, 0.0232683532, 0.00286019058, -0.0058024358, 0.00411152421, 0.000216126078, 0.032282643, -0.0310635455, 0.0134686846, 0.00571745075, 0.0087036537, -0.00541853718, -0.0126012499, 0.00765452627, 0.0115990108, -0.0157779362, 0.00132093334, -0.00278839283, 0.00985241868, -0.00229606498, -0.0307587702, 0.0067753694, -0.000682445592, -0.010731576, 0.0110246278, -0.00105791888, 0.0214983188, 0.00552696688, 0.00598705886, -0.00933664665, 0.014980834, 0.0150980549, 0.0237724036, -0.000128301966, 0.0133983521, 0.00969417, -0.000790508639, -0.00317375665, 0.00655264966, -0.00938939583, -0.00400895579, -0.0200330559, -0.00420237, -0.0130935777, -0.00921942573, 0.00317668705, -0.0152152758, -0.0135390172, 0.00484122429, -0.0244053975, -0.0145002287, -0.0205839947, 0.016844647, 0.0131170219, 0.0125778057, 0.0151683874, -0.0108487969, 0.0147932805, -0.055328276, 0.0210177116, -0.0197868925, -0.0132107986, 0.0182161313, -1.78693226e-05, -0.000784647593, -0.00376279163, 0.0263278205, -0.0087329587, -0.00328218588, 0.00674606441, -0.00764280418, -0.0201033894, -0.00965314358, 0.0117865643, 0.0155083286, 0.00426977221, -0.01047369, -0.00298473774, 0.0140430667, -0.00657023303, 0.00928975828, 0.00780691346, -0.00384191587, 0.0128474133, 0.0102509698, -0.0209825467, 0.0192125104, 0.0218148138, 0.010245109, -0.0101220272, 0.0155200502, 0.00646473421, -0.00527494168, -0.00392397027, -0.0228346363, -0.0192711204, 0.00329976901, 0.025624495, -0.0124136964, 0.00672262, -0.00218617031, 0.0108194919, 0.0160827115, -0.0189194568, -0.0359164923, -0.00897912309, -0.00754316663, 0.00329097756, 0.011218043, -0.0169735905, 0.0095242, 0.00787724648, 0.0117807034, 0.0030272305, 0.00849265605, 0.00047657633, 0.0212404318, -0.00798274484, -0.00253783306, 0.0127653591, -0.00666987058, -0.00621270901, 0.0132342428, -0.001865278, -0.013832069, 0.00893223472, 0.0146995038, 0.0178879127, -0.0143830078, -0.025225943, 0.000443241617, 0.0271952543, 0.0221782, 0.00408221874, 0.0247101709, -0.00554455, 0.0246867277, 0.0140782334, 0.0147581147, -0.0109015461, 0.0135507388, -0.0204081628, -0.0125660831, -0.0170556456, 0.0141133992, 0.00154731621, -0.00191070104, -0.00784208, 0.0255307183, -0.0173955858, -0.0108605186, -0.0114466231, -0.00305653573, 0.000850584358, -0.000857910665, -0.00734975189, -0.0153090525, -0.000351113296, 0.0139610125, 0.0183567964, -0.0162937082, 0.00982311368, 0.00880329125, 0.0175362509, -0.00061870669, -0.00236053648, 0.0127770808, -0.00642956793, -0.0030272305, -0.00125792704, 0.00438992353, -0.022928413, 0.0350021683, 0.0109015461, -0.0242881756, 0.00943042338, -0.00424046721, -0.0141251218, -0.00601929473, 0.00567056239, 0.00659367722, -0.00544198137, -0.0134921288, -0.0155786611, -0.00129895436, 0.0242647324, 0.00739664026, -0.0109718787, 0.00621857028, -0.0204550512, 0.020490218, -0.000224185016, -0.00664056558, -0.00916081574, -0.00772485882, -0.00880915299, -0.00358696026, -0.0065057613, 0.0193648972, -0.017102534, 0.0172783639, -0.00167918974, 0.00171142549, -0.00807652157, 0.0108839627, -0.0153676635, 0.0216507055, 0.0275703613, -0.0150746107, 0.010760881, -0.0103154415, 0.00574089494, -0.012108922, -0.019142177, 0.00685742404, -0.0109015461, -0.0127888033, -0.0111418488, -0.0267029274, 0.00604859972, -0.00368659804, 0.019951, -0.0150160007, -0.0101396097, 0.00975278113, -0.00625373656, -0.00777174719, 0.00938353501, 0.00362798758, 0.0213342085, 0.00540388469, 0.0084516285, -0.00356058567, -0.00734389108, 0.0310635455, -0.0208067149, 0.0016997034, -0.0337361842, -0.0278985798, -0.0142071759, -1.70222193e-05, 0.0176065825, 0.0208184365, 0.0158482697, 0.0100692771, -0.0142775085, -0.00905531645, -0.0070391167, -0.014347841, -0.0162233766, -0.0288832355, -0.03242331, 0.0383546874, -0.0124488622, 0.0111066829, -0.00421995344, 0.00988172367, -0.0055357581, -0.00160739198, -0.00506980484, 0.00590207381, -0.0140430667, 0.0108898245, -0.00165721087, 0.0172080323, -0.00197810307, 0.00571452035, 0.0135859055, -0.00439871522, -0.00189458323, -0.0103623299, -0.0041378988, -0.0213576537, 0.00177882751, -0.00129748916, -0.00533062173, -0.0190952886, 0.0258120485, 0.0132107986, -0.0184271298, -0.00291000959, 0.00596068427, -0.0376982503, -0.010274414, 0.0138789574, -0.0231042448, -0.00724425307, -0.00401774747, 0.0214748736, 0.0128122475, 0.00826993678, 0.0133397412, -0.00217884406, 0.00425511971, 0.019142177, -0.00265358877, -0.025108723, -0.00036539961, 0.0181458, -0.0033876847, -0.0108781019, -0.0155200502, 0.0121440878, 0.00478554424, 0.00877398625, 0.003859499, -0.0119975619, 0.0532651879, -0.0163405966, 0.00138320692, 0.0132459644, 0.0101806372, -0.00514599867, 0.0116634825, 0.0279923566, -0.0128005249, 0.018192688, -0.0024792226, -0.0119330902, -0.0147698363, -0.00351076666, 0.00226236391, -0.00454524159, -0.0104092183, -0.0100399721, 0.00999308378, -0.00324995024, -0.00715633761, -0.0122261429, 0.00722667, 0.014980834, -0.00453058863, 0.00667573186, 0.00355472462, 0.00947145093, 0.0173838641, -0.000726403436, -7.88722809e-06, 0.00432252185, -0.0112883756, 0.00754902745, 0.0103271632, -0.0106846876, 0.0128708575, 0.000461923715, -0.0172900874, -0.0372997, -0.00543905096, 0.000331149116, -0.00712703215, 0.00896740053, -0.000598559331, 0.0306415502, 0.00179787597, 0.00722667, -0.0319075361, 0.0127184708, -0.00777174719, -0.00201180414, 0.0064940392, 0.00495844521, -0.0158013813, -0.0131756319, -0.0153090525, -0.00102202, -0.00820546504, -0.00921942573, -7.47283411e-05, -0.00930734165, 0.0173252523, 0.0173486974, 0.0299382247, -0.0152504425, 0.00402067788, -0.0205371063, 0.0210646, 0.00319427019, -0.00335544907, -0.00389759568, 0.00315910392, 0.0156138269, 0.026257487, -0.0122261429, -0.0137851806, 0.00893809553, -0.00618340401, 0.0151918316, -0.00383019377, 0.00585225457, 0.00548007851, 0.0266560391, 0.0109425737, -0.000117037765, 0.0207012147, -0.0015077542, -0.00300378632, 0.00756074954, -0.00492620934, 0.00125499652, -0.0111770155, -0.00955350511, -0.0104209399, -0.0131404661, -0.0164929852, 0.00219496177, 0.00797688402, -0.00773072, -0.0129646342, 0.00225503766, 0.00177882751, -0.000498555251, -0.0216624271, -0.00407049665, -0.00950075593, -0.00242061215, -0.00773072, -0.00603101682, -0.0245929509, -0.00260816561, 7.64225479e-05, -0.0115697058, 0.00740250153, -0.0174776409, -0.0100927213, 0.0117865643, 0.0104326624, -0.0241475105, -0.000900403247, -0.000579510932, 0.00955350511, 0.0166336503, -0.00872709788, -0.015437996, 0.00886776298, -0.0167508703, -0.0171963107, 0.00955350511, -0.000965607353, -0.00027418707, -0.0291176774, -0.0260230452, 0.00621857028, 0.0056617707, -0.0027459003, 0.00776588637, -0.0118217301, -0.00435768813, 0.00446904777, 0.0267498158, 0.0121323662, -0.000792706502, -0.0118451742, 0.00274296966, -0.0126012499, 0.00091285794, -0.029961668, 0.0203143861, -0.0138203474, 0.012624694, -0.00543905096, -0.0192007869, 0.00680467486, -0.00102348521, 0.0134921288, 0.0138437916, -0.00716219842, -0.0185091849, -0.00921942573, -0.0250852779, -0.0145353945, -0.00968830939, -0.00132752699, 0.00238105, 0.0076076379, -0.0264919288, 0.00587569876, 0.00957108848, -0.00700981123, 0.0180051345, -0.00943628419, 0.00406463584, -0.00142569956, 0.0237137936, 0.000297264953, -0.0141368434, 0.00627718074, 0.00206308835, 0.00751972245, -0.00114656717, -0.00943628419, 0.00523391413, -0.013574183, 0.00396792823, 0.01518011, -0.00378623581, -0.012999801, -0.0287191272, 0.00511669321, -0.0150277223, 0.00974692, -0.0167039819, -0.0147698363, 0.0165047068, -0.0176300276, -0.0187319033, 0.0111008221, 0.0181458, 0.0118100084, 0.0227525812, 0.0159889348, -0.0032323671, 0.0055035227, 0.000842525391, -0.00203524833, -0.0155434944, 0.00101615896, 0.00668745395, 0.016328875, -0.0260464903, 0.00963556, -0.0247101709, -0.00781863555, 0.00478554424, 0.0236903485, -0.00669917604, 0.00326753338, 0.0105440225, 0.0139610125, -0.00338182366, 0.00402946956, 0.0146760596, 0.0110246278, -0.0194586739, -0.00238398067, 0.00303309155, -0.00967072602, -0.000879889587, 0.00882087462, -0.00537751, -0.00106744305, -0.00257153413, 0.00160006562, 0.000220338712, 0.0105264392, 0.00570279825, 0.00579364412, -0.0123433638, -0.00428735558, 0.00160299614, -0.019142177, -0.00156929519, 0.00671089813, 0.0103271632, -0.00909048319, -0.0071973647, -0.0170556456, -0.0123081971, -0.029469341, -0.0194117855, 0.00821718667, -0.00631820783, 0.0118217301, 0.0110949604, 0.0163523201, 0.00651748339, 0.000830070698, 0.00334079633, 0.013316297, 0.0140665108, 0.0344629511, -0.0146174496, -0.0104443841, -0.0204081628, -0.00327339442, 0.0194938406, -0.0187787917, -0.040464662, 0.00306532718, -0.0137851806, -0.0317434259, 0.0234676301, 0.0231511332, -0.014722948, -0.000367231172, -0.0044368119, 0.0208887681, 0.027031146, 0.0383312441, -0.00872709788, 0.00153999, -0.00642956793, 0.00533648254, -0.0277110264, -0.00541267637, -0.0153793851, -0.032399863, 0.0187201817, 0.0102509698, 0.0267263707, 0.00978208613, 0.00164255826, -0.0146174496, 0.0102509698, 0.0146877822, 0.0194703955, -0.0015590383, 0.00249680574, 0.0167977586, 0.0109367128, -0.00110920297, -0.000942163169, 0.025108723, -0.0129294684, 0.0119272294, 0.0127536366, -0.0207129382, 0.00558557734, 0.0323060863, -0.0108898245, 0.00637095748, -0.00695120078, 0.0110832388, -0.00431079976, 0.00355765503, 0.0190601218, -0.0052514975, -0.00729700271, 0.0128356917, -0.0069160345, -0.00805893913, -0.0255307183, 0.0136210714, -0.00588156, 0.0147463921, 0.00717392052, -0.00531889964, 0.00979380868, -0.0137617365, 0.0213342085, -0.00502291648, -0.000124364073, -0.00918426, 0.00717978179, 0.00356058567, 0.0121323662, -0.0184857398, -0.0125191947, 0.0109249903, 0.00216712197, -0.0116986483, 0.00356351607, 0.0213342085, -0.0249915011, -0.00720908679, -0.00838715769, 0.00400895579, -0.000663030893, -0.0266794823, 0.00409394084, 0.0124019738, 0.0219203141, -0.000772192841, -0.00879743, -0.0106026325, 0.0024792226, 0.0228932463, -0.00037455748, -0.00354007189, -0.0273593646, -0.00054800784, -0.0087036537, -0.00826407503, 0.00231071748, -0.0223071426, 0.00408514915, -0.0142657869, 0.0141720101, -0.0149105014, -0.00690431241, 0.00109235256, -0.00665814849, 0.000697464508, 0.032282643, -0.0154028293, -0.0246867277, -0.01882568, 0.0235731285, 0.0114583457, 0.00850437861, 0.0102861365, 0.00461557414, -0.00725597516, -0.0179113578, 0.00583174126, -0.0141720101, 0.00499068107, 0.0119741177, 0.0165398736, 0.0102275256, 0.0171963107, -0.00758419372, -0.0149573898, 0.0118744802, -0.0154028293, -0.0137969032, 0.00858057197, -0.00183450745, 0.0158131029, 0.00738491816, -0.0193766188, -0.000505515258, 0.00679881359, 0.025624495, -0.0259292684, 0.0264919288, -0.00713289343, -0.000772925501, 0.000432618486, 0.00971761439, 0.00730286352, 0.00852196105, -0.0269139241, -0.0115990108, -0.0169735905, 0.00951247849, 0.00483829388, -0.00574968662, 0.00358109921, 0.00226382911, -0.0159420464, -0.0139024016, -0.00681639696, 0.00782449637, -0.0100927213, -0.0152738867, 0.036502596, -0.0129646342, -0.00752558326, -0.0163640417, 0.0120854778, -0.00840474, -0.00507566612, 0.00839301851, 0.00321185333, -0.0218617022, 0.00271512964, 0.00500533357, 0.0387063511, -0.00853368361, -0.00165134983, 0.00909048319, -0.00361333508, -0.0206191614, -0.00801791158, 0.00147185521, -0.0268435925, 0.0225298628, 0.00676950859, 0.0190952886, -0.0178058594, -0.0192593988, 0.0012769755, 0.0265622623, -0.00698050624, 0.00203671353, -0.020748103, -0.00878570881, -0.00317668705, -0.0108077694, -0.00674020313, 0.00491155684, -0.00110187673, 0.00534527423, 0.0141016776, 0.00410273252, -0.00240009837, -0.00688086823, 0.00505222194, 0.00678123068, 0.00582001917, -0.0319075361, 0.016211655, 0.0232331883, -0.000987586332, -0.00292466208, -0.00144694583, -0.0234559067, -0.00642956793, -0.0191070102, -0.0172666423, -0.0216624271, 0.00924873073, 0.0110246278, 0.00964728184, -0.00451593613, -0.0253900532, -0.00444267318, -0.00281037181, -0.0213928185, 0.0199744459, 0.0231159665, 0.00644715084, -0.0217562038, 0.00876812544, -0.00882087462, 0.0180637445, 0.032399863, 0.0234910734, 0.0110832388, -0.00264333189, -0.0103447465, 0.0158365481, 0.0184622966, 0.020490218, -0.0178058594, -0.011305958, 0.0015209415, -0.0088443188, 0.0116400383, -0.01165176, -0.00256420765, 0.00872123707, 0.00542439846, -0.038940791, 0.0165633168, -0.00817616, 0.00649990048, -0.0106084943, 0.0219906457, 0.0231745765, -0.00232537021, 0.00611893227, -0.0111242663, -0.00999308378, -0.00739077944, 0.00369832013, 0.00376572227, -0.0102626923, -0.0200213343, 0.00700395042, -0.00441629859, -0.00651748339, -0.0141016776, 0.00204404, -0.0068984516, 0.00327925547, 0.00254662451, -0.00807652157, 0.00729700271, -0.00706256088, -0.0320247561, 0.00723839225, 0.00763694337, -0.0230925232, -0.00416720379, -0.00967072602, -0.0416134298, -0.0200096127, 0.000325471221, -0.00574675575, -0.0138789574, 0.00983483531, -0.019540729, -0.00308877137, 0.00713289343, 0.00373934745, -0.00224331557, 0.0256948266, 0.0068867295]
12 Sep, 2022
How to count unique values in a Pandas Groupby object? 12 Sep, 2022 Here, we can count the unique values in Pandas groupby object using different methods. This article depicts how the count of unique values of some attribute in a data frame can be retrieved using Pandas. Method 1: Count unique values using nunique() The Pandas dataframe.nunique() function returns a series with the specified axis’s total number of unique observations. The total number of distinct observations over the index axis is discovered if we set the value of the axis to 0. Python3 # import pandas import pandas as pd # create dataframe df = pd.DataFrame({'Col_1': ['a', 'b', 'c', 'b', 'a', 'd'], 'Col_2': [1, 2, 3, 3, 2, 1]}) # call groupby method. df = df.groupby('Col_1')['Col_2'].nunique() display(df) Output: Col_1 a 2 b 2 c 1 d 1 Name: Col_2, dtype: int64 Method 2: Count unique values using agg() Functions Used: The groupby() function is used to split the data into groups based on some criteria. Pandas’ objects can be split on any of their axes. The agg() is used to pass a function or list of functions to be applied on a series or even each element of a series separately. In the case of the list of functions, multiple results are returned by agg() method. Pandas reset_index() is a method to reset the index of a df.reset-index() method sets a list of integers ranging from 0 to the length of data as an index. Example 1: In the output, you will find that the elements present in col_1 counted the unique element present in that column, i.e, a is present 2 times. Python # import pandas import pandas as pd # create dataframe df = pd.DataFrame({'Col_1': ['a', 'b', 'c', 'b', 'a', 'd'], 'Col_2': [1, 2, 3, 3, 2, 1]}) # print original dataframe print("original dataframe:") display(df) # call groupby method. df = df.groupby("Col_1") # call agg method df = df.agg({"Col_2": "nunique"}).reset_index() # print dataframe print("final dataframe:") display(df) Output: Example 2: In the output, you will find that the elements present in col_2 counted the unique element present in that column, i.e,3 is present 2 times. Python # import pandas import pandas as pd # create dataframe df = pd.DataFrame({'Col_1': ['a', 'b', 'c', 'b', 'a', 'd'], 'Col_2': [1, 2, 3, 3, 2, 1]}) # print original dataframe print("original dataframe:") display(df) # call groupby method. df = df.groupby("Col_2") # call agg method df = df.agg({"Col_1": "nunique"}).reset_index() # print dataframe print("final data frame:") display(df) 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 !!/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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?
https://www.geeksforgeeks.org/how-to-count-unique-values-in-a-pandas-groupby-object/?ref=next_article
Pandas
How to count unique values in a Pandas Groupby object?
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, 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 !!, Best Practices For SQL Query Optimizations, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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.0059139058, -0.00748310937, -0.0217541773, -0.00832138117, 0.0274994057, 0.036781732, -0.0134327952, -0.00157687115, 0.0143324034, -0.0144346319, -0.0176548231, -0.0309547205, -0.00826004427, 0.000391023146, -0.0113473386, -0.0175014809, -0.0151297841, 0.00236658449, 0.010422172, 0.00122418359, 0.0345940478, -0.0347985029, 0.00622059032, 0.0294621885, 0.0162542947, 0.0310160574, 0.0168063287, -0.00358821242, -0.0119811539, -0.0196380503, 0.00283427886, -0.00702819368, -0.0522590913, -0.010488621, -0.024861915, -0.00792269129, 0.0244325567, 0.0012503796, 0.0365772769, -0.0230218079, -0.00341186859, 0.0394601151, -0.00508585665, 0.00317163207, -0.00143630721, -0.0424860716, -0.0442852862, -0.0391534269, -0.0151604526, 0.0213452633, 0.00932833, -0.024453003, -0.00850539189, 0.0232058186, 0.00425269594, 0.00473061344, -0.0101205986, 0.018462427, 0.00183627533, -0.0706601813, 0.0219790787, 0.00842872076, 0.00457982672, 0.00953278691, -0.0212430358, 0.0114802355, -0.0161725134, 0.0149355503, 0.0391943194, -0.0139132682, 0.0159169417, 0.0253730565, 0.033714883, 0.0477201566, -0.0149457734, -0.0125127407, 0.0166734308, -0.00472550187, -0.0372519828, 0.0389489718, 0.0144346319, -0.015467138, -0.0182784144, -0.0066346149, 0.0205172151, 0.0136474743, 0.0214066, -0.0280514378, -0.00335308746, 0.0216519479, 0.00105678476, 0.0102688298, 0.0366999507, 0.00229374692, -0.0259864274, 0.0239214152, 0.0258433074, 0.00781024, 0.0250254814, 0.0185442083, -0.00252120476, 0.00255315122, 0.0315885358, -0.00497596106, 0.0150991157, 0.0195767134, 0.0202514213, 0.0207012258, 0.0107544139, 0.00469738897, 0.0212430358, 0.0180126224, -0.0462071784, 0.0188611168, 0.00292628421, 0.0161111765, 0.0122265015, -0.0316294283, 0.0196073819, 0.00559699815, 0.059537746, 0.0345940478, 0.0505825505, 0.0244121123, -0.0174708124, 0.02220398, -0.0304026883, 0.0360661335, 0.0204865467, -0.00472039031, -0.0180944037, -0.007697789, -0.0124207353, -0.028951047, -0.00404823944, -0.0174810346, 0.0287261438, 0.0363728181, -0.00215446088, -0.00469738897, -0.00729398709, -0.00480984, -0.0148231, -0.00732465554, -0.0196891651, -0.0161725134, 0.0254752859, 0.0539765283, 0.00501685264, -0.00896030851, -0.00357032241, -0.00906253606, 0.0079840282, 0.0228582416, -0.0227355678, 0.0318952203, -0.0107953055, -0.045920942, 0.0151093388, -0.0226946771, 0.00733487867, 0.0289714932, 0.0220813062, -0.00776423747, 0.012737643, -0.00132257829, 0.0124411806, -0.0104426183, -0.033858005, 0.00806069933, 0.0226946771, -0.0187588874, 0.00182349677, 0.0653443113, -0.00709464215, -0.00385911739, 0.0578612, -0.0483744182, 0.00972702, 0.0300960038, -0.0369861908, -0.038560506, 0.00260426523, 0.00501429662, 0.0129114306, -0.00195639348, 0.0105908494, 0.00537209585, 0.00310262805, 0.0484153107, -0.00776934857, -0.00214168243, 0.030443579, 0.0368226245, 0.00698730256, -0.00836227275, -0.0383969396, -0.00342464703, 0.0114086755, 0.0213248171, -0.058515463, -0.0283172317, -0.0136985881, 0.022408437, 0.00864340086, -0.0226537846, -0.0268860366, 0.00209951308, 0.0208136756, 0.0308116022, -0.0154773602, 0.00522386469, -0.00978835672, 0.00593946269, -0.0228582416, 0.0262522213, -0.0307298191, 0.0112246647, 0.0418113619, -0.0434265696, -0.0259046443, -0.00723265, 0.0193006974, -0.0155591434, 0.00693107676, 0.0155386971, 0.0167449918, -0.01757304, -0.0275198519, -0.0137292575, -0.00502963085, 0.0157124847, -0.0248005781, -0.0276220795, 0.0114700124, -0.0207421165, -0.0494375937, 0.000741155, -0.0116131315, -0.00567878038, 0.00305151404, 0.0219995249, -0.012604746, -0.0380902551, -0.00680329138, 0.0227969047, -0.0067777345, 0.00526475627, 0.0253526121, 0.0403188318, 0.00269627059, -0.0398690253, 0.0322632417, -0.00949700642, -0.0137394797, 0.00192061369, -0.00240492, 0.0402370468, -0.0121038277, -0.0243916661, -0.0151502304, 0.0280309916, -0.0170210078, 0.0212839264, 0.021733731, -0.019750502, 0.00609280495, -0.026906481, 0.0588017032, 0.0127171967, -0.00281894463, -0.00679818029, -0.0581065491, 0.0200060736, -0.0277856439, 0.0291759484, 0.00353709818, -0.0214066, 0.0207932312, 0.0191371329, 0.00301317824, -0.0455529168, 0.00322019053, 0.0150377788, -0.0082753785, -0.0147617627, 0.00264004525, -0.0148333227, -0.0177570507, -0.017705936, 0.0030182898, -0.0342055783, 0.0313636325, -0.009195433, -0.0242689922, -0.013483909, -0.0356163308, -0.0199038442, 0.0251890458, 0.00625637034, 0.00151425635, -0.032426808, -0.0121549414, 0.00876607466, -0.00571456039, -0.0144959688, 0.0250050351, -0.00565833505, -0.0323859155, -0.00233336026, 0.0120015992, -0.0021148473, -0.0237578508, -0.00290328288, -0.0171539038, 0.0362910368, 0.0166018717, 0.0143835181, -0.0104119498, -0.00981902517, -0.0192904752, -0.0094867833, -0.0350847431, 0.0293804053, 0.00222090934, 0.0438354835, -0.0443261787, 0.00715597905, 0.0310978405, -0.0334899835, -0.0240236446, -0.0236351769, -0.0101870475, 0.00627170457, -0.0274176225, 0.00893475115, -0.0106215179, -0.0181148499, -0.00657327799, -0.0414637886, 0.05491703, -0.00501940819, -0.0125740776, 0.0067777345, 0.0253526121, 0.0303822421, -0.0277652, 0.0223879926, 0.0322427973, 0.0140972789, 0.000453318498, -0.0166734308, 0.00142736221, -0.00049452926, -0.00317163207, -0.0131670013, 0.00123057282, -0.035493657, -0.00271671638, -0.0197402798, 0.00592412846, 0.012809203, -0.0237169601, 0.0176650453, -0.0253526121, -0.00222218712, 0.0121140508, 0.00458238227, 0.0201287474, -0.0228377953, -0.0383560471, 0.00745244091, -0.019617606, -0.0050551882, -0.0139541589, 0.0173481386, -0.000484306453, 0.00658350065, -0.0146697573, -0.016008947, -0.0136576975, -0.0328561664, 0.0124820722, -0.00143375155, -0.00459516095, 0.020568328, -0.00323552475, 0.026702024, 0.00168421085, 0.00547943544, -0.0291350577, 0.0133407898, 0.0377835706, 0.00490951259, 0.0276425257, 0.0257206336, -0.0341851339, -0.0100899301, -0.00422713906, 0.0142403981, 0.00714064483, -0.00129510439, -0.0581474416, -0.0162236262, -0.0273971763, -0.0115722409, 0.0059803538, -0.00266049081, 0.0369657427, 0.0263748951, 0.0114495661, 0.0116233546, -0.0116846915, 0.00909831654, 0.00326874899, -0.03909209, 0.00250203698, 0.00826004427, 0.0236760676, 0.00874562841, 0.032426808, 0.027458515, -0.0177366044, -0.00987014, -0.0117358053, -0.0327948295, 0.0131567791, 0.00284450175, 0.00997236837, 0.0285012424, -0.0480472893, -0.00435748, 0.018053513, -0.0135043552, -0.0176446, -0.022960471, -0.0445715263, 0.0180330668, 0.0259046443, -0.050541658, -0.00828560162, -0.0114495661, -0.0423633978, -0.0310569499, -0.0530360267, 0.00179155043, -0.034123797, 0.00716620171, -0.0113371154, 0.0283172317, -0.0313636325, -0.0103761693, -0.0364954919, -0.0223062094, 0.0349211767, 0.0251072645, -0.00315629784, 0.0191882476, 0.0227355678, 0.00795847084, -0.00153853546, 0.0275811888, -0.0103812814, -0.00639949, -0.000422330544, 0.00849005766, -0.021590611, -0.0239827521, -0.0140870558, 0.0155898118, -0.0164791979, 0.0046590534, -0.0294417422, -0.0194744859, -0.0107748602, -0.00486606592, 0.00694641098, 0.026436232, 0.018390866, -0.0271722749, 0.0362910368, -0.00657838956, -0.0216315016, -0.0191473551, -0.026436232, -0.0128296483, 0.00998770259, -0.00668061757, -0.00217618444, -0.0139541589, 0.0203638729, 0.0212225895, 0.0144244097, -0.00628192723, 0.0453075692, 0.0257410798, -0.0276834164, -0.000625509245, 0.0299937744, -0.0107544139, 0.0716824681, -0.0140461642, -0.0220813062, 0.0442852862, 0.0056890035, -0.0173379146, -0.0218768511, 0.0329379477, -0.0293599591, 0.00183499744, -0.0347576141, 0.0199345127, -0.0255570691, 0.0206194427, 0.00785624236, 0.00226563402, -0.0265589058, 0.0527088977, 0.00401757099, -0.0212021433, -9.88739048e-05, 0.0176037084, 0.0181148499, 0.00148231, 0.0124207353, -0.0330606252, -0.0198220629, 0.00322785764, -0.00188738946, -0.0107135233, -0.0034297586, 0.00554077234, 0.00481495168, -0.0134736868, 0.00740643824, -0.0592924, -0.00792780239, -0.00769267743, 0.0143937413, -0.0171641279, 0.00349620683, 0.0115313493, -0.0177468285, 0.0034910955, -0.0111326585, -0.00507307798, 0.00529542472, -0.00278316461, 0.000190400155, -0.000322817708, 0.0125434091, 0.00238064094, 0.00111492712, 0.00362910377, -0.000537017884, 0.00846961234, 0.0033479759, 0.00507563353, 0.0112144416, -0.00941011216, -0.01171536, 0.0229809154, 0.0163667463, 0.0192393605, 0.00363932643, 0.0337762199, -0.0195869375, 0.0620730072, -0.0453484617, 0.0407481901, 0.0216928404, 0.0306889284, 0.00754955783, 0.00681862561, 0.0148946596, -0.0382129289, 0.00265026791, 0.00599568803, -0.0442035049, 0.0335717648, -0.0148026543, -0.0102381613, 0.0115313493, -7.27977094e-05, 0.010289276, -0.0529133528, -0.0182477459, 0.00315118651, -0.0496420488, 0.0112757785, 0.0149253281, 0.0292986222, 0.0368226245, -0.000980113517, -0.0398281366, 0.0188917853, -0.00541809853, 0.00685951719, 0.0211816989, -0.0277038626, -0.0155489203, -0.0129727675, 0.0297893193, -0.0132794529, -0.00715086749, 0.0169596709, 0.0079789171, -0.00933344103, 0.0361683629, -0.0253117196, -0.0364137106, -0.0267633609, 0.0714371204, -0.0454711355, 0.021120362, 0.04440796, 0.00822426472, 0.0037671118, -0.0363114811, 0.0327743851, 0.0169903394, 0.00361376954, -0.00209440175, 0.0137292575, 0.0227969047, -0.0124616269, 0.0051701949, -0.00935388729, 0.0213657096, -0.00331219612, -0.00414535636, -0.0115211261, 0.00478172768, 0.0148639912, 0.0326312631, -0.0141177243, -0.00609280495, 0.00415046792, -0.00202411972, -4.89577578e-05, 0.028951047, -0.00683396, -0.0125945229, 0.0360456891, -0.0120629361, 0.0262113288, -0.0204967689, 0.00719175907, 0.00549988123, -0.0289919376, -0.0721731633, -0.038560506, 0.0146084204, 0.0142097296, -0.000822937582, -0.00212123664, -0.0254548397, -0.00519319624, 0.0204149857, 0.0295848623, -0.0471885726, -0.0380084701, 0.0134021267, -0.0221221987, 0.00250203698, -0.0104579525, 0.00576056307, -0.0312000681, 0.0230831448, 0.000808242301, 0.0071253106, 0.00453126803, 0.016213404, -0.00444693, 0.0102534955, -0.00463605206, 0.02220398, -0.0173174702, 0.0415660143, 0.00656816643, -0.0332241878, -0.00896030851, -0.0143221812, 0.0151808988, -0.0881616622, -0.00576567464, 0.00205478817, 0.0369861908, -0.0211612526, -0.0550397038, -0.00983947143, -0.0239214152, 0.027315395, 0.0089705307, 0.032835722, 0.0054078754, -0.0178490561, 0.0172868017, 0.00203434261, -0.0184828714, -0.0170823447, -0.000453637971, 0.0200060736, -0.0399303623, -0.0216723941, 0.0386218429, -0.0219586324, 0.0507870056, -0.0237987414, 0.058924377, 0.00554588391, 0.0186157692, -0.0343282558, 0.0161827356, -0.0207727849, 0.0263135582, -0.0151808988, 0.0136883659, -0.0112655554, -0.0172459092, -0.0187997799, 0.0192700289, 0.024044089, -0.0189940128, -0.0180841815, 0.00547943544, -0.0159373879, 0.00678795716, -0.00932833, -0.0125945229, -0.00601102225, -0.00243942207, 0.0232876, -0.000727737497, -0.035841234, -0.0149968872, -0.0178286117, 0.00276527484, -0.0274789594, -0.00645571528, -0.0137497028, 0.00390767585, 0.0468205474, 0.0186055452, 0.024861915, -0.0166632086, 0.0140870558, 0.00916476455, 0.0156511478, 0.00121076615, -0.0186362136, 0.0173072461, 0.0789611191, 0.0338988937, 0.01117355, -0.0103403898, -0.0103659471, 0.0461253971, -0.00666017178, 0.0545081161, 0.00272438349, 0.0223471, -0.0274176225, -0.00344509282, 0.0171436816, -0.00993147679, -0.00159987248, -0.00349365128, -0.00213273731, 0.0139337135, -0.0117664738, -0.00108361966, 0.0202105287, -0.0178081654, -0.0197096113, -0.000148550462, 0.0214883834, -0.0376200043, -0.021590611, 0.000802491966, 0.00187205523, -0.00903698, -0.00338631147, 0.00565322349, 0.0389898643, -0.00641993573, 0.0173072461, -0.0216110572, 0.00357798953, 0.0108770886, -0.012124273, 0.00150275556, 0.00267326925, 0.0251277089, 0.0215497203, -0.00807092246, 0.00044085944, -0.0064046015, -0.0185339861, -0.0204456542, 0.027110938, 0.00364443799, -0.013483909, -0.00530053582, -0.0124309575, -0.0161213987, 0.00999281369, -0.0152933495, 0.0287261438, 0.0400939286, -0.0288283732, -0.0217541773, -0.0138519313, -0.0159271657, 0.0253117196, 0.0395623408, 0.0113268923, -0.0168574415, -6.76064301e-05, 0.00639437838, -0.0260682087, -0.0266202427, -0.00290839444, -0.00238319673, -0.010693077, 0.000417858071, 0.00147464289, 0.000483667507, 0.0430176556, 0.0135145774, 0.00170976785, -0.00314096361, -0.0114597892, 0.00824471, 0.00511908066, 0.0158044901, 0.0151297841, -0.00036195197, 0.045430243, 0.00777957169, 0.00403801678, 0.0316907652, -0.00656305533, -0.0225106664, 0.0317112096, -0.00422202749, -0.00104464521, 0.0281741116, -0.0149559965, 0.0205581058, -0.0409935378, 0.0130647728, -0.00138391519, -0.0235533938, -0.0137905944, -0.0116744684, 0.00426291907, 0.0041683577, -0.0125638545, -0.00393834431, 0.00741666136, 0.00504240952, -0.00972702, 0.0280718841, 0.0363319293, 0.0214066, 0.00107850833, 0.00738599291, 0.00589857157, 0.0161520671, 0.0202105287, -0.00654260954, 0.0347780585, -0.00911365077, 0.0195051543, -0.0188611168, -0.0253526121, -0.00273205061, -0.014444855, -0.0405641794, -0.00774379168, -0.0097730225, -0.0136576975, -0.0237578508, -0.0329379477, 0.0145675289, 0.0336944386, -0.0233284924, 0.0156204803, -0.0339397863, 0.0240645353, -0.0065528322, 0.0168676656, -0.0204967689, -0.0115926862, 0.00443670712, 0.0439990498, 0.0192189161, 0.0390307531, 0.00472805742, 0.0148742134, 0.0159680564, 0.0263135582, -0.0289919376, -0.01688811, 0.00469994498, 0.00753422361, -0.0298097637, -0.00141841732, 0.00692596566, -0.0511959195, -0.0186975505, 0.00711508794, 0.00516252778, 0.0247801337, 0.00879163109, -0.00881207734, 0.0169801153, 0.0355754383, 0.0176957138, -0.0146084204, 0.00525964471, -0.0204047635, 0.00314096361, -0.00518041756, 0.0185339861, -0.0180637352, -0.0190860182, -0.0235942863, 0.0341033526, 0.00013784843, 0.0102688298, -0.0177774969, -0.00390512, 0.00152959058, 0.026088655, -0.0275811888, -0.00800958555, -0.0274380688, -0.00118776469, 0.0457573757, 0.0129216537, -0.000450762804, 0.024453003, -0.0325290374, -0.0337557755, 0.0139746051, 0.0174912568, 0.00495807128, 0.0116233546, 0.00094497262, 0.021733731, 0.0127887568, 0.0220608618, -0.0171232354, -0.0103301667, -0.0066346149, 0.0131567791, 0.0170618985, 0.0272745024, 0.00275505194, -0.0417704731, -0.0283172317, 0.0195051543, -0.00117626402, 0.000772462401, -0.0150480019, -0.0137088113, -0.000935388671, -0.0267429166, -0.00664483756, -0.0268042535, 0.00354476529, -0.0253321659, 0.00575034041, 0.0218564048, -0.0150888935, -0.0349825136, -0.0107953055, -0.000891941658, -0.0216315016, 0.0265793502, 0.0324472524, -0.0193824805, -0.0208239, 0.0161520671, -0.00484562, -0.0039409, -0.0224902201, -0.00617458764, -0.00725820754, 0.00566855771, -0.00645060418, -0.00901142228, -0.00981902517, 0.0139746051, 0.0317521021, 0.0139848273, -0.0152626811, 0.00164843095, 0.033714883, -0.0386831798, -0.0195153765, -0.0105295125, -0.0168369971, -0.0456755906, 0.00898586493, 0.0202923119, 0.0182477459, 0.00420158217, -0.0273358393, -0.0306480359, -0.00966568291, 0.0155284749, 0.00995703414, 0.0116540231, 0.0176139306, -0.02874659, -0.0167245455, -0.00305151404, -0.0239827521, 0.0121856099, -0.0292577315, 0.0010797861, -0.00241769874, 0.0170005616, -0.0182068553, -0.0216519479, 0.0235533938, 0.00674706604, -0.0216723941, -0.0013928602, -0.0124105122, 0.0129932137, 0.0389694162, 0.0104477294, -0.00802492, -0.0525862239, 0.0193415899, 0.0141995074, -1.5149551e-06, -0.00593946269, 0.0269678179, -0.00228096824, -0.0216315016, -0.00309496094, 0.00454915827, -0.0176957138, 0.0230831448, 0.0570024848, -0.0183601975, 0.0265589058, -0.0206398889, 0.0396032333, 0.0240031984, 0.00718153594, -0.0185339861, 0.0434265696, -0.000586534734, -0.00174554775, -0.00157687115, 0.0195971597, 0.0257001873, -0.0125434091, -0.0274994057, -0.0100592617, 0.00259532034, 0.0348802879, 0.00122610037, 0.00375688914, -0.00537209585, 0.00599057693, 0.00162798527, 0.01703123, 0.0409526452, -0.0298506562, 0.0161622893, -0.00280616619, -0.0116233546, -0.0286443625, 0.015876051, 0.00845938921, 0.00504496507, 0.0109077571, 0.00138519309, -0.0344509296, 0.0178490561, 0.0204967689, -0.0323041342, 0.0140768336, -0.0128909852, -0.0129318768, -0.0167041, 0.0029901769, 0.0109179793, -0.0170516763, -0.0108464202, 0.0252094921, 0.00288028154, 0.00869451463, 0.0181046277, 0.0198629536, 0.00766712055, 0.00300295558, 0.0154466918, -0.00475361478, 0.0257001873, -0.0202207528, 0.0248414706, -0.00694641098, 0.0201900844, 0.0151093388, -0.0294826347, -0.0022247429, -0.00423480617, -0.00961456914, -0.00661416911, -0.0210590251, -0.00255954033, -0.00854117237, -0.00125932449, -0.0076160063, 0.0196482744, -0.00901653338, -0.00215701666, 0.0163565241, -0.000851050369, -0.0325494818, -0.000376327836, -0.00638926728, -0.000637968304, 0.00217874, 0.00436259154, -0.000275057944, -0.0101819364, -0.0356367752, 0.00759556051, 0.00556121813, -0.015600034, 0.0306889284, 0.00939477794, 0.00624614768, 0.0338375568, -0.0201798603, 0.0194233712, -0.00286750309, -0.0365363844, -0.00202923128, -0.0140768336, -0.0317725465, -0.0187997799, 0.0109486477, 0.0294826347, 0.0255366229, 0.0141790612, -0.0252094921, -0.026088655, -0.00594457425, -0.02860347, 0.00950211752, -0.00831627, -0.0127887568, 0.0206910018, -0.0188406706, 0.00866895728, 0.0305458084, 0.0220199693, 0.00324319187, -0.0105806263, 0.0129932137, 0.00754955783, 0.0101614902, -0.00292628421, -0.000736043556, -0.0160191711, 0.0089705307, -0.0253935028, -0.0114291208, -0.012604746, -0.0196073819, 0.0102023818, -0.0118482569, -0.00816803891, 0.0133407898, -0.022960471, -0.0168472193, -0.00160370604, -0.00836738385, 0.0290328301, -0.0299528837, -0.00988547411, -0.0120833814, 0.00197811704, -0.00735532446, 0.00404823944, 0.00494273705, 0.0136065828, 0.00419135904, -0.00135580252, 0.0231240354, 0.0139234904, -0.0156613719, -0.00851050392, 0.00461049518, -0.00394856697, -0.011582463, -0.0166325402, -0.0222244263, -0.00355498819, -0.0155591434, 0.0369453, 0.015324018, -0.0094765611, -0.0207421165, -0.0279901, -0.0120424908, -0.00487884413, -0.0189633444, 0.0159373879, 0.00743199559, 0.035493657, -0.000822937582, -0.0251686014, -0.0293395147, -0.00121332181, -0.0185237639, -0.0208852366, 0.00646082684, 0.00575034041, -0.00503474241, -0.0112655554, 0.0121549414, -0.0145879742, -0.00679306872, 0.0226333402, -0.00810159091, 0.0142710665, 0.00382844871, 0.00838783, 0.0107748602, 0.0136883659, -0.00160242815, 0.00535676163, 0.0141279474, 0.0163258556, 0.0192904752, -0.0145061919, -0.0165814254, -0.0127274198, 0.00883252267, 0.00479961745, -0.010488621, 0.00402268255, -0.00398690253, 0.0197402798, 0.00702308211, -0.0230831448, -0.0304231346, 0.0245143399, -0.0112860017, -0.00226691202, -0.0242894385, -0.000748822116, -0.0115313493, 0.027110938, -0.00915965345, 0.0112655554, -0.0118278116, -0.00210079108, -0.0183601975, 0.0105806263, 0.0128296483, 0.0312000681, -0.0181148499, 0.014168839, -0.000457790971, 0.0107953055, -0.00936922152, 0.0121447193, -0.00481750723, 0.0108157508, 0.014373295, 0.0144039635, 0.0284194592, 0.0163871925, -0.0188815612, 0.00544876698, 0.0281741116, -0.00489929, -0.0267633609, 0.0487424396, -0.004802173, 0.00415557949, -0.0222448725, -0.00561744347, -0.00123632315, 0.0154569149, -0.00108234189, 0.00602635648, -0.00910342764, -0.00851050392, 0.00665506069, -0.00124335138, 0.0145061919, -0.00813737, 0.0259455349, -0.0094765611, -0.00684418296, 0.0341442414, -0.00135196885, -0.00584745733, 0.0139848273, 0.00559188658, -0.00125165738, 0.00853094924, -0.0059139058, 0.0158862732, 0.0016880444, -0.0156102572, 0.00406868523, -0.0201389696, 0.00471527921, 0.00992636569, 0.00651194109, -0.0027422735, -0.0245552305, -0.00487117702, 0.0421998315, -9.71168556e-05, 0.0264566764, 0.0157942679, 0.012604746, 0.0212634802, 0.0253935028, -0.0300960038, -0.0136474743, 0.000286558614, -0.0231035892, -0.00493762549, -0.0135861374, -0.00464627519, -0.0360456891, -0.000134973263, 0.01688811, 0.0191064645, 0.00716109062, 0.0309547205, 0.0062052561, -0.00461305073, -0.00248542498, -0.0230218079, 0.00277294195, 0.0235125031, 0.0117766969, 0.0277652, 0.00168932218, 0.00139158231, -0.00121204392, 0.00778468279, 0.0204047635, -3.67382854e-05, -0.0293599591, -0.00671128603, -0.0364750475, 0.0059190169, 4.03122831e-05, 0.00119990436, -0.00471016765, 0.012809203, -0.024453003, 0.0148231, 0.0266611334, 0.0017046564, 0.00564811192, 0.0363523737, 0.0455938093, 0.00219790777, -0.00225029979, 3.15869402e-05, -0.0142199527, 0.035411872, -0.0360661335, -0.0403801687, -0.00791758, 0.0458800495, 0.00137241452, -0.0261908844, 0.0181250721, 0.0125843007, -0.0207932312, 0.00266304659, 0.0124922954, 0.0165405348, -0.00157431536, 0.00408657501, -0.0154466918, -0.014035942, 0.00885296799, -0.0100694848, -0.00899608806, 0.0119811539, 0.0135861374, -0.0147515396, 0.00885296799, 0.0110713216, 0.0412593298, -0.000199664602, -0.000925804779, 0.00593946269, -0.00709464215, 0.0103915036, -0.022960471, -0.0265793502, 0.0142506212, -0.0169698931, 0.0271927211, -0.0143630719, -0.021733731, 0.00807603355, 0.0282150041, -0.00968612917, -0.0229809154, -0.0239418615, -0.0335717648, -0.030443579, 0.00249564764, 0.017705936, -0.00772334589, -0.00345531572, 0.0248005781, 0.0321405679, 0.0100899301, 0.00681862561, 0.00453382405, 0.00512163667, -0.00792780239, 0.0100490395, 0.0137292575, 0.00867918, -0.00790224504, -0.0146084204, 0.0237374045, 0.0426905267, 0.026702024, -0.00455171382, 0.000411149347, 0.0180637352, 0.010560181, -0.0217132848, -0.0352483094, 0.0180023983, -0.00816292781, -0.00310773938, -0.0032150792, -0.0151706757, -0.00297484268, -0.00393323274, -0.00504240952, 0.00893475115, 0.00916987564, -0.0133101214, -0.00424758485, -0.0172152407, -0.0115517946, -0.000733487832, 0.0254548397, 0.019556269, -0.00944078062, 0.00647616107, -0.00167398795, 0.0292781778, -0.0020432875, 0.00785113126, 0.00161520671, -0.0219790787, 0.00496062683, -0.0279083177, -0.0259864274, 0.0265180133, -0.0235329475, -0.0140768336, -0.0226946771, -0.0116233546, -0.0112962238, -0.00417602481, 0.00895008538, 0.0124105122, 0.00785624236, 0.00486351, 0.0348393954, 0.00343231438, 0.054221876, 0.025270829, -0.0245347861, 0.00764667476, -0.0198629536, -0.00584745733, -0.00511396956, 0.00876607466, 0.0148946596, -0.00112003856, -0.00341186859, -0.0294212978, -0.00104783976, -0.0435492434, -0.00961456914, -0.00503474241, -0.0108055286, 0.0280718841, -0.000818465138, -0.0165098663, -0.0109895393, 0.010560181, 0.0232876, 0.0383356027, -0.0275402963, -0.0201798603, 0.0112246647, -0.0239827521, 0.0117562516, 0.00300806691, 0.0344509296, -0.020435432, 0.00604680227, 0.00110789889, 0.00425780751, -0.0384378321, 0.0214679372, 0.0257819705, -0.00232569315, 0.0134736868, 0.00599057693, 0.0109997625, -0.0116131315, 0.0162440725, 0.00504240952, -0.0149355503, 0.0224493295, 0.00153086835, 0.0180126224, 0.00415302347, 0.00749333249, -0.0128705399, 0.00979858, -0.008040254, -0.00639437838, -0.0220608618, -0.00246497919, 0.0223675463, 0.0124616269, -0.0134327952, 0.00242281, -0.0131874476, 0.0164383054, 0.00336842169, -0.0141995074, 0.0100285932, 0.00146825355, -0.00687485142, 0.0113473386, -0.00375944469, 0.000110534318, 0.00171360141, -0.0135656921, -0.0117358053, -0.00844916701, 0.00350898551, -0.0208239, 0.000352368079, -0.0254343934, 0.0145061919, 0.00245220074, 0.00860250928, 0.0179410614, 0.0116846915, -0.00676751183, 0.0082651563, -0.0159169417, -0.00789202284, 0.0190144591, 0.000567366893, -0.0147617627, 0.039848581, -0.00542321, 0.0201287474, 0.00181327399, 0.0351869725, 0.0262113288, 0.00915454142, -0.012195833, 0.0283785686, 0.0102074929, 0.00817826204, 0.0146493111, -0.0102228271, 0.00742177246, -0.0171743501, 0.0191984698, 0.0107544139, 0.00643015839, -0.01171536, -0.00262471102, -0.0229809154, 0.0154875834, -0.00814248156, -0.00744733, 0.000640843471, -0.00329941744, -0.0171947964, -0.00958390068, 0.00291350577, 0.00484562, -0.0279696546, -0.00227330113, 0.00245347852, 0.0166529864, 0.00773356901, 0.0247392412, -0.0224493295, 0.0139746051, -0.00634326413, 0.0296666455, -0.0161111765, -0.00509352377, 0.00584234577, -0.00486606592, -0.032161016, 0.00299273268, -0.0223062094, 0.00533631584, 0.00993147679, 0.010013259, -0.0173481386, 0.0149662187, 0.0116540231, 0.0017238243, -0.0159987248, -0.0241258722, -0.00680840295, -0.012604746, -0.0138723766, 0.0181659646, -0.00934366416, -0.00648127263, 0.000226818986, 0.0145061919, -4.30077525e-05, -0.00750355516, -0.00313585228, -0.0141892843, 0.0101768244, 0.0121549414, -0.00588834845, -0.0164485294, 0.0113268923, -0.0231035892, 0.0138519313, 0.0299324375, -0.0022247429, 0.0333059728, -0.00370321912, 0.0262726657, -0.00552543812, -0.00180688477, 0.0148639912, 0.00374666625, -0.0077591259, 0.0110815447, 0.0129625453, -0.00581678888, -0.000835716142, 0.00368277356, -0.00485839881, 0.00565322349, 0.00350387394, 0.018595323, -0.0288692638, 0.00195000425, -0.000579826, -0.00730932131, 0.0249436982, -0.00501429662, 0.00514208199, 0.00199217349, 0.000208290105, 0.00249692565, -0.000542768219, 0.0201389696, 0.0243507754, 0.0290737208, -0.0106521863, -0.016417861, 0.00108681433, -0.017368583, 0.0267224703, 0.00240619807, -0.0229400247, -0.0219790787, -0.0114802355, 0.00112387212, -0.00945100375, -0.0134532405, -0.02357384, 0.0170618985, 0.00310773938, -0.0195869375, -0.00881718844, 0.00589857157, -0.0329788402, 0.0128807621, 0.00733487867, 0.0174912568, 0.0205376595, -0.0105908494, 0.0033760888, 0.00110853778, 0.0311591774, 0.00246370141, 0.0182375237, -0.00670106336, 0.0140563874, 0.0107441917, 0.0242076553, 0.0208136756, -0.00475105876, 0.00707419636, -0.0119095938, -0.0153853549, 0.00958390068, -0.00194233714, 0.0263748951, -0.00021627669, 0.0218359586, -0.00530053582, 0.00606724806, 0.0128603168, 0.0238396339, -0.0161725134, 0.00376455626, 0.00721220486, -0.0053465385, 0.00412491104, 0.001098315, -0.0148844365, -0.000894497382, -0.0164280832, -0.0142608443, -0.0203740951, 0.00342464703, -0.00766712055, -0.000907275942, 0.00353454263, -0.0245552305, 0.0190655738, 0.00739110401, -0.0172765777, 0.0172050186, 0.00547432387, 0.00483539747, 0.0387036242, 0.0129318768, 0.0122367246, -0.00314863073, 0.0156204803, 0.0142506212, -0.000124031649, -0.00734510133, 0.0106521863, -0.0244734492, -0.0231035892, 0.0125536323, -0.014915105, 0.0246779043, 0.000620717299, 0.0128909852, 0.00633304147, -0.0163156316, -0.00917498767, -0.0089091938, 0.0143426266, 0.0114700124, 0.00726843, -0.00595990848, 0.0106112948, 0.00575034041, -0.0103608351, -0.00060921663, -0.0196278282, 0.00553054968, -0.00260426523, 0.00586790266, -0.00769267743, -0.0325699262, -0.00738088135, 0.017368583, -0.00624614768, 0.0274380688, -0.0240849815, 0.00790735707, 0.020568328, 0.0126558598, 0.003304529, 0.00841338653, 0.000247424381, 0.0043728142, -0.00648638373, 0.0232876, 0.0171130132, -0.00104656199, 0.0127785346, -0.00575034041, -0.0201798603, -0.00881207734, 0.00270138215, 0.00357287819, -0.0165609811, -0.0155284749, -0.0221630894, 0.00935899839, -0.0103403898, 0.0117460284, -0.0260273181, -0.0356981121, -0.00454660226, -0.00249181408, 0.0331219621, 0.00051976688, -0.00657838956, -0.00211995887, 0.0128603168, 0.00676751183, -6.03985382e-06, -0.011582463, 0.00233719382, -0.0346349403, 0.0104630636, 0.00777446, 0.00477661612, -0.0385400578, 0.0112144416, -0.00196917215, -0.00410190923, 0.010084819, 0.00770290056, -0.00723776175, -0.0108259739, 0.00392812118, 0.000441817829, 0.00379266893, -0.0230831448, -0.00292884, 0.0184113123, 0.0140666105, -0.00260426523, -0.0110713216, 0.0234102737, 0.0145061919, -0.00772334589, -0.0095430091, -0.020578552, -0.00745244091, 0.0307502653, 0.0129727675, 0.0191064645, 0.00933855306, -0.0124820722, -0.0105192894, 0.00216851733, -0.000663844869, -0.00757000363, -0.0037492218, 0.00914943, -0.0138417082, -0.00449037692, 0.0153035726, -0.0205478836, -0.000174906192, 0.0144039635, -0.00631770724, -0.0115722409, 0.0152320126, -0.0308933835, -0.0378244594, -0.000295503589, 0.0141279474, 0.00803003088, 0.0268860366, -0.0170721207, 0.0295848623, -0.00954812113, -0.0066346149, 0.0367203951, -0.0107850824, 0.0113473386, 0.00255315122, 0.0342260264, -0.00657838956, -0.0133407898, -0.00873540621, -0.00813225936, -0.0157124847, 0.00401246, 0.0189326759, 0.00160881749, 0.00700774789, -0.00460282806, 0.0120118223, -0.0132078929, 0.0162951872, -0.0012772145, -0.00867918, -0.0189428981, -0.00390000851, 0.0230013616, -0.0113882292, 0.00356776663, -0.00481750723, -0.0177468285, -0.00514208199, 0.00271160505, 0.0385400578, -0.00496062683, -0.0267838072, -0.00210590241, -0.00399712566, 0.00137624808, -0.00450059958, -0.0057707862, -0.0194949321, 0.0115620177, -0.022551557, -0.0057707862, 0.00522130914, 0.0168574415, 0.012052713, -0.00566344615, 0.0148435449, -0.0366999507, 0.000375688891, -0.00365721644, -0.00259787589, 0.00183883111, 0.0030182898, -0.0246779043, -0.00915454142, 0.0194029268, -0.000145515558, -0.00866384618, 0.0180637352, -0.0147617627, -0.0223062094, 0.0125434091, 0.0164383054, -0.0147924311, -0.00186438812, 0.0160191711, -0.00799425133, 0.00107659155, 0.00266049081, 0.00211612531, -0.024861915, 0.0135452459, -0.0246983506, -0.0141381705, 0.0182477459, -0.0180841815, 0.0143937413, 0.000658733421, 0.0166325402, -0.000470888976, -0.0179512855, 0.0137803713, 0.00183627533, -0.0135043552, -0.00221963134, -0.025413949, -0.0137497028, 0.0179001708, 0.00511396956, -0.0078818, -0.0114393439, 0.000149109517, 0.0174605884, 0.0068390714, 0.0201083012, -0.000981391408, -0.0280309916, -0.017910393, 0.0109486477, -0.0059752427, -0.00316652074, 0.0171130132, -0.018595323, 0.0221221987, -0.0225106664, -0.0124309575, -0.00396134565, 0.0116744684, 0.00364954933, 0.00524431048, -0.00707419636, 0.014782208, 0.00942544639, -0.00687485142, -0.0140563874, -0.0138723766, -0.00159220537, -0.0223266557, 0.00334030879, 0.0106112948, 2.20829043e-05, -0.0245756768, -0.0169903394, 0.0142097296, 0.0110406531, -0.010969094, 0.00571456039, -0.0032764161, -0.0114802355, -0.00274994061, 0.000773101288, 0.0015717597, -0.00173149141, 0.00767223211, 0.0089705307, -0.0135963606, 0.00497085, -0.0292781778, 0.0244121123, -0.0160600618, 0.000973085349, 0.0127683114, 0.00341442437, 0.00800958555, -0.0324677, 0.00397923542, 0.00403801678, -0.00652727531, 0.013146556, -0.00348342839, 0.0133407898, 0.019075796, -0.00776423747, 0.0062614819, -0.0019461707, -0.00118073658, -0.00351154106, -0.00735532446, -0.00635859836, 0.0151502304, 0.000166120939, -0.00989058521, 0.00166248728, 0.0121651646, 0.0176854916, -0.00939477794, 0.00813737, 0.00625637034, -0.0039102314, 0.0298506562, 0.00329686189, 0.0106010716, -0.0313022956, 0.0110917678, -0.012533186, -0.0186975505, 0.0278674271, -0.0111633278, 0.00533120427, 0.0056941146, -0.0120629361, -0.0247801337, 0.00429358752, 0.00699241366, -0.00236914027, 0.0166325402, 0.0162338503, -0.0056941146, -0.0134736868, 0.0187179968, -0.0165200885, 0.00115965202, 0.00102228276, 0.00426547462, -0.00236019515, -0.00213273731, 0.0361888073, 0.0128807621, -0.00912387297, 0.0207625628, -0.0159067195, -0.0161213987, 0.00481750723, 0.0150888935, 0.00263237813, 0.0230422523, 0.000523600436, 0.00387445162, 0.0407277457, -0.00171871285, -0.0109793162, 0.00693618832, 0.0126660829, -0.000485903758, -0.00884785689, -0.00654260954, 0.00422202749, -0.0165814254, 0.0162645187, 0.00791758, 0.000417538598, -0.0160498396, -0.0041964706, 0.0235942863, -0.00151170057, 0.00953278691, 0.0202003065, 0.0111633278, 0.00674195448, -0.0244734492, 0.00345531572, -0.027254058, -0.00916987564, 0.0107850824, -0.00150786701, -0.0154160233, -0.00879674312, 0.00691574253, -0.00394601142, 0.0228582416, 0.0153137948, -0.002180018, -0.00365721644, 0.00996214524, -0.0189531222, -0.0127683114, 0.0228173509, -0.00451849, 0.0053414274, 0.0131976698, -0.0154978065, -0.00737577, 0.0124922954, 0.0266406871, 0.027724307, 6.9682942e-06, -0.0116233546, 0.00322785764, -0.00293650711, -0.00995703414, 0.00153342413, 0.00271160505, 0.0269473735, 0.0163054094, 0.00859228615, 0.0215701647, 0.00205606618, -0.0108259739, -0.00937944371, 0.00547943544, 0.00193467, -0.00464627519, 0.00558166392, 0.00371855334, 0.000158853145, -0.0128296483, 0.0254752859, 0.00239597517, 0.00700774789, -0.0132998982, 0.0129727675, -0.00874051731, -0.0139030451, -0.0116438, -0.00439837156, -0.0107135233, 0.013759926, 0.00393834431, 0.0161622893, 0.0246574599, 0.00843383279, -0.0211408064, -0.00772334589, 0.0172765777, -0.0100950422, 0.00179027265, 0.0147515396, -0.00113345601, -0.016080508, -0.000299496896, -0.0161316209, 0.00483028591, -0.0117051369, 0.0060621365, -0.004020127, 0.0460027233, 0.00493251439, 0.0308524929, 0.0132283382, 0.00516252778, 0.00145675289, 0.0256388504, 0.00949700642, 0.00417091371, 0.00610302808, -0.00109064789, -0.00828560162, -0.0140154958, 0.0119504854, 0.0110917678, 0.0126354145, -0.00523408735, 0.00565833505, 0.00135196885, 0.00702819368, -0.0146595342, -0.0012944655, 0.00865362305, -0.0232671555, -0.00161137315, -0.00670617493, -0.00609280495, -0.0171130132, -0.0164076369, -0.00254292833, 0.0241463184, 0.00949189533, 0.00709975371, -0.0054896581, -0.0191882476, 0.00399456965, -0.00630237302, 0.00199856283, 0.0157022625, -0.00219407422, -0.0188611168, 0.00774379168, 0.00162415172, -0.00803514197, -0.00223241, 0.00237297383, -0.00460027205, 0.00427058619, -0.00337864435, 0.000792908, 0.0180841815, -0.00284450175, -0.00322019053, -0.00771823479, -0.0260477643, -0.0355549939, -0.0271313842, 0.0329379477, -0.0230831448, 0.015191121, 0.0118687022, 0.00631770724, -0.0141177243, 0.009195433, 0.0269678179, -0.00803003088, -0.0107135233, -0.00318185496, -0.0224697739, 0.0106726317, -0.0192904752, -1.47651972e-05, -0.0186055452, -0.0014018052, -0.00681351451, 0.00858206395, -0.00025045927, -0.00675217761, -0.0154978065, -0.00311285094, -0.00731443288, 0.0138314851, -0.0156920403, 0.0139030451, 0.0215701647, 0.0177570507, -0.0192189161, -0.020026518, -0.0079891393, 0.0312818512, -0.000596118625, -0.0210385788, 0.0247392412, 0.00200495194, 0.00969124, -0.0116029093, -0.0110508762, 0.00855139457, 0.00267838081, 0.0171130132, -0.0020432875, -0.0275607426, -0.0170721207, -0.00196278282, 0.00383356027, -0.000167239064, -0.0142301759, 0.00518041756, 0.0045644925, -0.0228377953, -0.0166632086, 0.0105295125, 0.0068390714, 0.00487117702, -0.0159271657, 0.00286750309, -0.00656305533, 0.000436386938, 0.0189531222, -0.00390512, 0.0194335952, 0.0118789254, -0.0303822421, -0.0186975505, -0.0181966331, -0.0113268923, -0.00278060907, 0.00292372867, 0.00454149116, 0.0143324034, -0.00937433261, -0.0252094921, -0.00558166392, -0.0278469808, 0.00184649823, 0.0276016332, -0.00581678888, -0.00625637034, 0.019617606, 0.0154058011, 0.00751377828, -0.0178388339, -0.0214679372, 0.00411468791, 0.00209056819, -0.00796869397, -0.00676240027, -0.01757304, 0.022756014, -0.0159373879, 0.00484306458, 0.0378653519, 0.000960306847, -0.00987525098, -0.0113575608, -0.0125025176, 0.0208647903, 0.0109282024, 0.0105806263, -0.0268655904, 0.0170414522, -0.0303413514, 0.00303106825, -0.0293395147, 0.00441626133, -0.0279696546, 0.0250050351, 0.0166632086, -0.00256081834, 0.012604746, -0.0154262464, -0.0102279391, -0.0110508762, -0.0234511662, -0.00354732107, 0.024596123, -0.00713042216, 0.0137292575, -0.00280616619, -0.00328408321, 0.00523919892, -0.017235687, 0.00449548848, 0.00723265, -0.00497340551, -0.00766712055, 0.00247520208, 0.000229214958, 0.015600034, -0.00334286457, 0.0083264932, -0.0069413, 0.00967590604, 0.00821915269, -0.00571456039, -0.0041070208, 0.00570944883, -0.0320383422, 0.00803003088, -0.0112144416, 0.015324018, 0.0104477294, 0.0239418615, -0.00298762135, -0.0138110397, -0.00720709329, 0.00500407396, -0.00253398321, 0.00997747947, 0.00739621557, -0.0290123839, 0.0148128765, 0.0160396155, 0.0175525937, 0.0167449918, -0.0113984523, -0.000713681104, -0.020098079, 0.020230975, 0.000821659749, 0.0121447193, -0.00752400095, 0.0115722409, 0.0205581058, -0.00510885799, -0.00937433261, -0.0115006808, -0.00668572914, -0.0173890293, -0.00117754191, -0.00582701154, -0.000500279595, -0.0066346149, 0.0015359798, 0.0174503662, -0.013892822, -0.00235380605, 0.00786646549, 0.020026518, -0.000172829677, -0.001822219, -0.00622059032, 0.00710486481, -0.013555469, 0.00929766148, -0.0125229638, 0.00910342764, 0.0169187784, -0.0119300392, -0.00556121813, 0.0183193069, 0.021590611, 0.006982191, -0.00733998977, 0.00392812118, -0.00359332375, 0.00237808516, 0.000371855334, -0.016622318, 0.0265589058, -0.019556269, 0.0134941321, 0.0155080287, -0.00113026134, -0.0107135233, 0.0024828692, -0.0109588709, -0.0160907302, -0.0135248005, -0.0279083177, 0.0278060902, -0.00799425133, 0.0034195357, 0.0112757785, -0.0178183876, -0.00232185959, 0.0120015992, 0.0134430183, 0.00785113126, -0.00880696531, -0.0134327952, 0.00481750723, 0.0164485294, 0.0158964973, -0.00785624236, -0.0323450267, -0.0207318943, 0.00182477466, 0.0110508762, 0.0128909852, -0.00810159091, -0.0152217895, 0.00334286457, -0.0115211261, -0.00754444674, 0.00478683878, 0.0141892843, -0.00518041756, 0.0140052736, -0.0268655904, -0.0250459276, 0.00257487455, -0.0197402798, -0.0110202078, 0.0105192894, 0.0272131655, -0.0128705399, 0.0204865467, -0.00424758485, 0.0123185068, -0.000194553184, 0.00334286457, -0.00961456914, -0.0118891485, -0.0130852191, 0.014915105, -0.0166836549, 0.0059139058, -0.00308473804, -0.0140154958, -0.00524431048, 0.0112246647, 0.000592923956, -0.0171539038, 0.0278265364, 0.00633815303, -0.00288028154, -0.0135861374, 0.001822219, -0.0206092205, -0.0380084701, 0.0153649095, 0.0176957138, -0.0041683577, -0.00770290056, -0.0256592967, -0.00248670275, -0.0129114306, 0.0118584801, -0.0159987248, 0.0224493295, 0.00903186761, 0.00327130477, -0.012195833, -0.0229195785, -0.0115109039, -0.00817826204, -0.00428592041, 6.68477078e-05, 0.0264566764, 0.0466978736, -0.0140563874, 8.82517488e-05, -0.0170210078, -0.00882741157, -0.00852072611, -0.00265282369, 0.0267838072, 0.0356572233, 0.00758022629, 0.0114188977, -0.00450315559, -0.0122776153, -0.0257615242, 0.0260682087, 0.00692596566, 0.0216110572, 0.0138417082, 0.00370321912, 0.00199089572, 0.000622634077, 0.00292628421, -0.0136781428, 0.00790735707, -0.00823959894, 0.0251072645, -0.00709464215, -0.0166734308, 0.00601613382, 0.0107544139, 0.0151706757, -0.00142225088, 0.00202795328, 0.0203843173, -0.00193850358, -0.00770290056, -0.0417295806, -0.0139132682, -0.00914431922, -0.00899097696, -0.00886830222, -0.0122367246, -0.00478172768, -0.0101972707, 0.00454149116, -0.0137190344, -0.0321814604, 0.0175628178, 0.00978835672, 0.000517530658, -0.00448526535, -0.0188406706, 0.0041351337, 0.0305662528, 0.0059752427, -0.00479706191, 0.0136781428, 0.000320741208, -0.000129222928, 0.00107211899, -0.00592412846, -0.0360456891, -0.0111837732, 0.00542832119, -0.0402574949, -0.0104988441, 0.0183499753, -0.0184010882, -0.0378857963, 0.0288692638, 0.00433959, -0.0029901769, -0.0161111765, -0.0111531047, -0.00408657501, 0.00164204161, -0.0119504854, -0.0462480709, -0.027315395, 0.00152703479, 0.00242919941, 0.0106419632, 0.00449293246, 0.00648638373, -0.0148231, 0.0195153765, 0.00139030453, -0.0274380688, -0.00300806691, -0.013759926, 0.00625637034, 0.010013259, -0.0118073653, -0.0114495661, 0.0111939963, 0.0128398715, 0.00476639345, 0.0111939963, -0.00114751235, 0.000405398983, -0.00858717505, 0.00489417836, -0.0162440725, -0.000479514507, 0.00685951719, -0.026702024, -0.00867918, -0.00117626402, -0.00111684389, 0.00252248254, -0.0188304484, -0.0102943871, 0.00735532446, 0.00201517483, -0.00187972235, 0.0287057, -0.00179410621, -0.00279849907, -0.0200469643, 0.0124616269, 0.00293139578, -0.0103710582, 8.01453716e-05, 0.00965546072, 0.00648127263, -0.0243712198, 0.0098292483, 0.0290532745, 0.00420158217, 6.14567616e-05, 0.0170005616, -0.0022681898, 0.00924654771, 0.0165814254, -0.0287670363, -0.0351665244, 0.0136781428, 0.00744221825, 0.00010342626, -0.0207012258, 0.00360099087, -0.01757304, -0.00829071272, 0.00346809416, -0.0202003065, -0.00519575179, 0.00622570189, 0.000153502144, 0.00472039031, 0.00650171796, 0.0112246647, -0.00237041805, -0.00118520902, -0.0170618985, -0.00999792479, -0.0199242905, 0.0209976882, 0.00256720744, -0.0160907302, -0.0147413174, 0.00911365077, 0.00151936768, -0.000681095873, 0.027315395, -0.00270138215, -0.000295343867, 0.00151936768, 0.00843894389, 0.00842361, 0.0197709482, 0.000320741208, -0.00977813452, -0.0138417082, 0.0234716106, 0.00263748947, 0.0128398715, -0.00593435112, -0.00190527947, 0.00946122687, -0.00971168559, 0.00787668861, -0.00814248156, 0.00261959946, 0.0101512671, 0.0210999157, 0.0160293933, 0.00746266404, -0.027254058, 0.0037671118, 0.0310365036, 0.0120424908, 0.0245756768, 0.00536698429, 0.01171536, 0.0181966331, 0.006982191, -0.00161904027, 0.0111837732, 0.00715086749, 0.00520597491, -0.00338375592, -0.00245986786, -0.000109895394, -0.000987141742, 0.00889386, -0.026702024, 0.0134532405, -0.0040252381, -0.0514412671, -0.00632281881, 0.00236147316, 0.00443670712, 0.00466416497, 0.00873029418, -0.0207523387, 0.000551393721, 0.00966568291, 0.00731443288, -0.00390767585, -0.0280718841, -0.00605191384, -0.0115415724, -0.00212379242, -0.0248414706, 0.00492995838, -0.0206705574, 0.0332241878, 0.0154160233, 0.0158862732, -0.00641993573, 0.0106215179, -0.0116642462, 0.00988036301, -0.000107499422, -0.00928232726, -0.0132794529, 0.00771312322, -0.0231649261, -0.0229195785, -0.0113575608, -0.00190655724, 0.020568328, -0.0236556232, 0.00333264167, 0.00864340086, 0.00557655236, -0.0234511662, 0.00471016765, 0.00100950419, -0.00649660686, 0.00163054094, -0.00719687063, -0.0199958496, -0.0145061919, -0.0089705307, 0.0119402623, -0.0193927027, -0.0126456376, -0.0304640252, 0.0150071103, -0.0169392247, -0.0199242905, -0.00325597054, -0.0165405348, 0.00761089474, 0.0342669189, 0.0212225895, 0.010488621, -0.00328408321, -0.00121268292, 0.0015359798, 0.0143324034, 0.00773356901, 0.00647104951, 0.00289561576, -0.0161418449, 0.00503218686, 0.0112757785, -0.0169494469, 0.00894497428, -0.00618992187, -0.038560506, 0.0196789429, 0.00670617493, -0.00669084024, -0.0280514378, 0.00506541086, 0.00508074509, 0.00189889013, -0.0092516588, -0.00685951719, 0.00380289182, 0.00492740283, -0.0114291208, 0.00885296799, -0.00484306458, 0.010693077, -0.0058321231, -0.00749333249, 0.000919415557, 0.00630237302, -0.00178516121, -0.0127785346, -0.0098343594, -0.0116131315, 0.00608769385, 0.00375688914, 0.00868940353, 0.015600034, -0.00235508382, -0.0210181326, -0.0175628178, -0.0143119581, -0.0234511662, -0.0115109039, -0.0205887742, 0.00562255504, 0.00602124538, 0.00333519746, -0.013146556, 0.00412235502, -0.0095430091, 0.0086229546, 0.022960471, 0.0137803713, 0.00452104537, -0.00552543812, -0.0241872091, 0.00170721218, 0.0182477459, -0.0298915468, 0.0190246813, -0.0189326759, -0.00102292164, 0.0332650803, -0.0127171967, -0.0312409606, 0.00986502878, -0.004020127, -0.00795847084, -0.0111224363, 0.0180739593, 0.0244325567, 0.00566855771, -0.00891941693, 0.00711508794, 0.000733487832, 0.0137394797, -0.0154569149, -0.0279901, -0.0168369971, 0.0115620177, 0.01825797, 0.0161929578, 0.00348598417, 0.00169698929, 0.00960945804, 0.0230013616, 0.00438303733, -0.00226946757, -0.000838910753, 0.0069413, 0.0102534955, -0.00217362866, -0.00350387394, 0.00605191384, -0.0262317751, 0.0212634802, 0.00610302808, 0.0168472193, -0.0203638729, 0.0262522213, -0.00530053582, -0.00721220486, 0.0117971431, 0.00726331864, 0.00486606592, -0.00191294658, 0.0263544489, 0.013759926, 0.013555469, -0.0208954588, 0.0066346149, 0.00466672052, -0.00863828883, 0.0104426183, 0.00492484681, -0.000964140403, 0.00983947143, -0.00180560688, 0.00416580215, -0.00177366054, 0.00285216887, 0.00616947608, 0.00710997637, -0.00394345541, -0.00730421, 0.0248414706, -0.0110099846, -0.021733731, -0.0203229804, -0.0133407898, -0.00160242815, -0.00527497893, 0.0183601975, 0.0384787209, -0.00112451101, 0.00720709329, -0.0111531047, 0.0256388504, -0.0085565066, 0.00544365542, -0.015395578, -0.030791156, 0.0206807796, 0.0171845723, 0.0364137106, 0.00466927653, 0.0011788198, -0.00199856283, -0.0199345127, 0.00904209074, 0.0182477459, 0.00179793977, 0.024248546, 0.0132078929, -0.0134941321, 0.00582701154, -0.0350847431, 0.0384787209, 0.0155693656, 0.0223879926, 0.00101717131, -0.0105499579, -0.0127171967, 0.00703330524, 0.000669595203, -0.00585768, -0.0156204803, -0.0149253281, 0.00306429248, -0.00587301422, 0.018595323, 0.0128500937, -0.016550757, 0.00967590604, 0.0187077746, -0.029564416, 0.0310365036, -0.00311029516, 0.0352483094, 0.00625637034, 0.0105704032, 0.0143324034, 0.00417346926, 0.0186975505, 0.0128398715, 0.0100694848, -0.00527497893, 0.0157431532, -0.0204456542, 0.00905231386, 0.000593882345, -0.00239597517, 0.0195767134, 0.0127785346, -0.0135145774, -0.0233284924, -0.00664994912, -0.0259864274, -0.00118904258, 0.0165098663, 0.00821915269, 0.020905681, 0.0273358393, -0.0128705399, -0.0095430091, 0.00427569728, -0.00281638885, 0.00450571114, -0.00559699815, -0.00942033529, -0.0138826, 0.00364699354, 0.00877629686, 0.00755978096, 0.0200162958, 0.0278878734, 0.0164791979, -0.0108464202, 0.00048079234, -0.00208545686, 0.0240645353, -0.0129114306, -0.0263544489, -0.0289919376, 0.00304384693, 0.007697789, 0.0162338503, -0.00302340114, 0.0194029268, 0.0047408361, 0.0143426266, -0.00183883111, -0.00540276431, 0.0136372512, 0.0119913761, 0.00125357416, -0.0252299383, 0.0145573057, -0.00872518308, -7.6321794e-06, 0.034471374, 0.0128705399, -0.0058321231, -0.000930916227, 0.00200623, -0.00931810681, 0.00700774789, 0.00439837156, 0.00622059032, 0.00460027205, 0.0196073819, 0.00177366054, 0.0049938513, 0.0185442083, 0.00380800315]
05 Sep, 2020
How to Add Group-Level Summary Statistic as a New Column in Pandas? 05 Sep, 2020 In this article, we will learn how to Add Group-Level Summary Statistic as a New Column in DataFrame Pandas. This can be done by using the concept of Statistic mean, mode, etc. This requires the following steps : Select a dataframe Form a statistical data from a column or a group of columns Store data as a series Add the series in dataframe as a column. Here, we take a dataframe, The Dataframe consists of student id, name, marks and grades. Let’s create the dataframe Python3 # importing packages import pandas as pd # dictionary of data dct = {'ID': {0: 23, 1: 43, 2: 12, 3: 13, 4: 67, 5: 89, 6: 90, 7: 56, 8: 34}, 'Name': {0: 'Ram', 1: 'Deep', 2: 'Yash', 3: 'Aman', 4: 'Arjun', 5: 'Aditya', 6: 'Divya', 7: 'Chalsea', 8: 'Akash'}, 'Marks': {0: 89, 1: 97, 2: 45, 3: 78, 4: 56, 5: 76, 6: 100, 7: 87, 8: 81}, 'Grade': {0: 'B', 1: 'A', 2: 'F', 3: 'C', 4: 'E', 5: 'C', 6: 'A', 7: 'B', 8: 'B'} } # create dataframe df = pd.DataFrame(dct) # view dataframe df Output: Now, we will find the group level statistics summary using the above approach. Python3 # make a series new_column = df.groupby('Grade').Marks.transform('mean') # view new series print(new_column) # add column in dataframe df["Marks Mean"] = df.groupby('Grade').Marks.transform('mean') # view modified dataframe print(df) 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 !!/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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?
https://www.geeksforgeeks.org/how-to-add-group-level-summary-statistic-as-a-new-column-in-pandas/?ref=next_article
Pandas
How to Add Group-Level Summary Statistic as a New Column in Pandas?
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, 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 !!, Best Practices For SQL Query Optimizations, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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.0140459742, -0.00108938362, -0.0209388, 0.0317137949, 0.00748137711, -0.0260772966, -0.00239947345, 0.0258509312, -0.0247643758, -0.00923005, 0.0177470483, -0.041198507, 0.00712485146, 0.00788883492, -0.0124274613, 0.0252397433, -0.0278655831, 0.0254887454, 0.0183356, -0.0266205724, -0.0015223074, -0.0234740935, 0.0098186, 0.0305819679, 0.0130386483, 0.0054384293, -0.00205992535, 0.0194900632, 0.0108655402, 0.036580652, 0.0261678416, 0.00408872543, -0.00558839645, -0.0414701439, -0.0206332076, 0.0182676893, 0.00518659782, 0.00529129151, -0.0135026975, 0.00603263825, -0.0214481223, 0.0205200259, 0.00842645299, -0.00102784042, 0.0133216046, 0.00318609318, -0.0569535382, 0.000598099898, -0.0169208143, 0.00533373514, -0.0281598587, -0.0630654, 0.0226478595, 0.0229194984, -0.0552331619, 0.0319401585, 0.0211651661, 0.0141138835, -0.00365863112, -0.0568629913, -0.0146911154, 0.00879995525, 0.0143628856, 0.0108994944, -0.00856793113, -0.0180526413, 0.0122916419, 0.00370390411, 0.0317364298, 0.0035001752, 0.0146911154, 0.034316998, 0.0458842702, -0.0097450316, -0.0163209457, -0.0159361251, 0.0245606471, -0.0214820784, -0.0627937689, 0.0328003503, -0.0215952601, -0.00522904098, -0.0386858508, 0.00532807596, 0.0415380523, -0.0178941861, -0.0183129627, -0.031351611, -0.00865281839, 0.00619675312, 0.044344984, -0.0144760683, 0.0359468274, 0.0351092778, -0.00934889168, 0.0221272204, 0.0152343921, 0.0264168438, -0.0449109, -0.0181658249, -0.0134687424, 0.0560028031, 0.0231005903, -0.0284994058, 0.0623410344, 0.0066155293, 0.0200899299, 0.00298802345, -0.0281824935, -0.000423020363, -0.00817745086, -0.00372371101, -0.0544635206, 0.0404062271, -0.016117217, 0.00542711094, -0.0200899299, -0.0255113821, 0.0209614374, 0.0176338665, 0.0293822307, 0.00164680835, -0.0101355119, 0.0450693555, -0.00177555368, 0.0525620505, -0.014894844, -0.0422624238, 0.0235420037, -0.0131631494, -0.00466029812, -0.00609488878, -0.00664948393, 0.00874902308, -0.0238362793, -0.0103335809, 0.0170226786, -0.00134828896, -0.012416143, -0.0112560205, -0.0201125666, -0.00633257255, 0.0152683472, -0.0202936605, -0.0346791819, -0.0148722082, 0.0151891196, 0.0284994058, -0.0160606261, -0.0211991221, 0.00340397, -0.0155286677, 0.00933757331, 0.00509605138, 0.0010561361, 0.015109892, -0.0222404022, -0.0440507084, -0.0187091, -0.0464501828, 0.0167849958, 0.0098186, -0.000124766244, 0.0198296104, 0.0228629075, 0.00206416962, 0.0304461494, -0.014498705, -0.0625674, 0.0179960504, 0.0324381627, -0.0317590684, -0.00900934357, 0.0379162058, -0.0301292371, 0.00965448469, -0.0155513044, 0.00913950335, -0.0111994287, 0.0174754094, 0.00800201762, -0.0454994477, 0.0181545056, 0.000795815897, 0.0155739402, -0.0151325278, 0.0382104814, 0.0106504932, 0.0207124352, -0.00136738864, 0.01354797, -0.0103731956, 0.0249681063, 0.00526016625, 0.00346339098, 0.0375313871, -0.0355167352, -0.0244021919, -0.0296085961, -0.00876600109, -0.0233156383, -0.0519282259, -0.0159361251, -0.000502601964, 0.0517018624, -0.0220253542, -0.025443472, -0.00823404174, -0.00275316928, 0.00969975814, -0.0211538486, 0.0357204638, -0.0127896462, 0.028567316, 0.0180186871, 0.0100676017, 0.0305819679, -0.0170905888, 0.0234061833, -0.0271185767, -0.00278570945, 0.00817179121, 0.0145100234, -0.0129707381, -0.0178602319, 0.0428057, -0.021380214, -0.00424435176, -0.0312837, -0.0116917733, 0.007905812, 0.0112503609, -0.0140346559, -0.00994310062, 0.018290326, -0.0292690489, -0.0353582799, 0.0167510416, 0.00966014434, -0.00680794, 0.00580061367, 0.0100789201, 0.0013291894, -0.0414248705, 0.004366023, 0.045725815, 0.0094450973, 0.0115616135, 0.0360826477, 0.0341132693, 0.0265979357, -0.0182450525, 0.00406042952, -0.0122124143, -0.00203021476, -0.00700035039, 0.0288389549, -0.0153815299, 0.00259612827, 0.0342264511, -0.00391612155, 0.0010561361, -0.0267111193, -0.00938284677, 0.0033445491, -0.0398629494, 0.045997452, -0.00971107651, 0.00745874038, 0.0172943175, -0.0318948887, -0.0234967303, -0.0347470902, 0.0180979148, 0.00438865973, 0.00119761459, 0.0214028507, -0.0198409297, -0.0043462161, 0.0304235127, 0.00342094735, -0.0132310586, 0.0220027193, 0.0223422665, 0.0110353138, -0.00454711542, -0.0306725148, -0.0383689366, -0.00559971435, -0.00995441899, 0.00731726224, 0.0128009645, 0.0216065794, 0.00344641344, 0.00772472, -0.00640048226, -0.0450240821, 0.0114937043, -0.00898670685, 0.0117936386, 0.000694658898, -0.0218895357, 0.00788317528, 0.0111541562, 0.0137743354, -0.00785488, 0.0220366735, 0.00790015329, -0.0162077639, 0.00787751656, 0.0104014911, -0.0160153527, -0.029359594, -0.0180979148, -0.0158568975, 0.0447977148, 0.0402477719, -0.0406325907, -0.0138309272, 0.00101652218, -0.00476499181, -0.0251944717, -0.00889050215, 0.0183242802, -0.012721736, -1.18930266e-05, -0.05034367, 0.0203162953, 0.0579042733, 0.00242069527, -0.00215188623, -0.00324834371, 0.00848304387, 0.00852265768, -0.0396818593, 0.02709594, -0.0262583885, -0.0592624657, -0.0344980881, 0.0212217569, 0.0204860698, -0.0031181837, -0.0495287515, -0.0453409925, 0.0383236669, 0.0136158802, -0.0147137521, 0.0104411049, 0.0418776, 0.00248153089, 0.000509322213, 0.00641745934, 0.0186072364, 0.0144760683, 0.0231798179, -0.0201012492, 0.00438865973, -0.0324608, 0.00239522918, -0.00756060472, 0.0132536953, -0.0104807187, 0.0276618544, 0.00234429678, -0.0434168875, 0.0188901946, -0.0185732823, -0.00416512368, 0.0369428359, -0.0330267139, -0.0323023461, 0.0269601215, 0.0343849063, -0.0347244553, 0.0196937919, 0.0112107471, -0.008318929, 0.00689848606, -0.0169094969, 0.0184714179, -0.00164822314, -0.00662684767, -0.0331851691, 0.0162077639, -0.0195240173, -0.0080925636, 0.0127896462, 0.0306725148, -0.00135889987, 0.0511133112, -0.00338982209, -0.00717578363, 0.00996007863, -0.0320307054, 0.0284994058, 0.0159248076, -0.00110353145, -0.00924702734, 0.0531053282, 0.0044395919, -0.0114144757, -0.0093715284, -0.0258282945, -0.00641745934, -0.0448656268, -0.00575251132, -0.00302763749, 0.00932059623, 0.0425567, 0.000632408366, 0.0157550331, 0.0280693118, -0.032053344, -0.0268016662, 0.0232024547, 0.0133442413, -0.0591719188, -0.000796523294, -0.00771340169, 0.0384368487, 0.0395686738, -0.000697134761, 0.00894709304, 0.0195240173, -0.00250699697, 0.0100562833, -0.0281372219, -0.00072083238, 0.00862452202, -0.0140233375, -0.0233609118, -0.015811624, -0.0126651451, -0.00918477681, 0.00775867468, -0.00747005874, -0.0152343921, 0.0273223054, -0.0297896881, -0.0424435139, -0.0321891606, -0.0290200468, -0.0162756741, -0.0202257503, -0.0249454696, -0.0141591569, -0.00315213832, 0.0173735451, -0.0192750152, 0.024130553, -0.0554142557, 0.023032682, -0.0109164724, -0.0144421132, 0.0289974101, 0.0144534316, 0.0382557549, 0.0180526413, 0.0480347425, 0.0111824516, -0.00392461056, -0.0123029603, -0.0151778013, -0.00394724682, 0.0266658459, -0.0159474444, -0.0221951287, 0.000359885657, -0.0177017748, 0.0198635645, -0.0390706696, -0.0279334933, -0.0532864183, -0.0174414553, -0.0221611746, 0.0219687633, 0.0332530811, -0.0121784592, 0.0177130941, 0.00810954068, 0.0535127856, -0.00788883492, 0.00127047591, -0.00513283582, -0.0402025, -0.00274609542, 0.00428679492, 0.0319175236, -0.0157889873, -0.00842079334, 0.00483856071, 0.0217310805, 0.00197079382, 0.0103958314, 0.0561386235, 0.058719188, 0.0140346559, 0.0105373105, 0.0286125895, -0.0147929797, 0.0422850586, 0.00088141032, -0.0352450944, 0.0320307054, 0.0102543533, 0.00399817899, -0.0171019081, -0.0219008531, -0.0219121724, 0.0636992306, -0.00135253335, 0.041809693, -0.00972239487, 0.0227157697, -0.0134121506, -0.010061943, 0.00524035934, 0.0212896671, 0.00352281169, -0.0223196298, 0.00427547703, 0.0121558225, -0.0128801921, 0.0451599024, 0.000119902928, -0.00548087247, -0.000660350372, -0.000599514635, -0.00479328772, 0.0304687843, 0.0276392177, 0.0180300046, -0.0185280088, 0.0164001752, 0.00432075, -0.0423982441, 0.00814349577, -0.00337001518, 0.0444808044, -0.0105939014, -0.0131971035, 0.00558839645, -0.041379597, -0.00962618925, 0.00109575014, 0.00550350919, 0.000204082564, 0.00548653165, -0.00498286868, -0.0063891639, -0.00838683825, -0.0256472025, 0.0022028184, -0.00885654707, 0.0151778013, -0.00105472142, 0.0158908516, -0.00784922112, -0.00313516101, -0.00477065099, 0.0225233585, 0.0094847111, 0.0210293476, 0.0297217797, -0.0113126114, 0.00601566117, -0.00380859803, 0.0288389549, -0.012325597, 0.0379841179, 0.0338416286, 0.00349451602, 0.0266432092, -0.00713051064, 0.00306442194, -0.0125180073, 0.0101355119, -0.0357657373, -0.0306498781, 0.0333662629, -0.0020938802, -0.00969975814, 0.00456126314, -0.0345433615, 0.0254208371, -0.0163775384, -0.0255566556, -0.0109730633, -0.0466312766, 0.0273449421, 0.00504794857, 0.0416059643, 0.0271185767, 0.014283658, -0.0253302902, 0.0129594197, 0.00679662172, -0.00552897528, 0.00280834595, -0.0318496153, -0.00865847711, 0.0223083124, 0.0214368049, 0.00706260093, 0.0118389111, 0.00132635981, 0.0141478386, -0.0258962028, -0.00836986117, -0.0215952601, -0.00276873191, -0.0446392596, 0.0629295856, -0.0260772966, 0.00977332704, 0.0183016434, 0.0256472025, -0.00319741154, -0.0105090141, -0.0112616792, 0.0058628642, 0.00491778878, -0.000477843249, 0.0335926265, 0.00723237498, 0.0181545056, -0.0093715284, -0.00633257255, 0.00722105661, -0.00578080676, -0.00618543522, -0.0112560205, 0.0171471797, -0.014498705, 0.0210067108, -0.0135366516, -0.0325966217, -0.00111838663, 0.00521489326, -0.0181884617, 0.0102996267, 0.0259188395, 0.0123029603, 0.0569082648, -0.00667778, -0.00643443689, 0.00546672475, -0.0158682149, 0.01354797, 0.0185619649, 6.62295715e-05, -0.00723803416, -0.00111131277, 0.0220593102, -0.0113918399, -0.0366259255, 0.00245889439, 0.0232930016, 0.0144421132, -0.00193400949, 0.00551199773, 0.00700035039, 0.0157776698, 0.0170792714, -0.00288615911, 0.00357374409, -0.0268922113, -0.00804163143, 0.0226365421, -0.0024985082, -0.00546955457, -0.009971397, -0.00595907, 0.0156644862, 0.0139780641, -0.0156305321, -0.0262583885, -0.0125632808, -0.00774735631, -0.00499135721, -0.053829696, 0.012020004, -0.0165359937, 0.0369654708, -0.0429867916, -0.00818311, -0.0268922113, -0.00471405964, 0.00547521329, -0.0245832838, -0.0246059205, -0.0258735679, -0.00417078286, 0.000359531958, 0.00385953044, -0.0130952392, -0.0174980462, 0.0318948887, -0.00760587817, 0.0230100453, 0.00807558652, -0.00553463446, -0.0155286677, 0.00781526603, -0.0118841846, 0.0359015539, -0.00923005, 0.0231458638, -0.0292916857, -0.00481026527, 0.0271185767, 0.0129481014, -0.00128886814, 0.0178941861, -0.0363316499, 0.0231232271, -0.0186072364, 0.0162756741, -0.0517018624, 0.019603245, -0.0179734137, 0.0136498343, 0.000717295392, 0.0153588932, 0.0179734137, 0.0127104186, 0.00408306625, -0.00780394766, -0.0187091, -0.00806426816, 0.010780653, 0.0074530812, 0.0305819679, 0.0090715941, -0.0129254656, 0.00900368486, -0.0130386483, 0.0120313223, -0.043462161, -0.00437168218, -0.012936784, 0.0314195193, -0.0140120191, 0.00863018166, 0.00550633855, 0.0167510416, 0.00518659782, 0.0275939442, 0.0149174808, -0.000454145629, -0.00476782164, -0.0112107471, 0.062295761, 0.045725815, -0.0294954143, -0.0243569184, -0.0305593312, 0.00660987, -0.0152570289, 0.0421266034, -0.00322287763, 0.00594209228, -0.00192127645, 0.00168783718, 0.0274581257, -0.0265753, -0.0114767263, -0.0176565032, -0.00335586723, 0.0209840741, 0.0195126981, 0.0218329448, 0.00281541981, -0.029699143, -0.0136271985, -0.00107240619, 0.0510680377, -0.00859622657, 0.0192863327, -0.00381425722, 0.0144194774, -0.00556293, 0.000831892889, 0.01767914, 0.00958091673, -0.00805295, 0.0291558653, -0.0328456238, 0.00636652717, -0.0161738098, 0.0183921903, 0.0178715494, -0.0281824935, 0.0165925846, 0.0493929349, 0.00152089261, -0.00332191261, -0.021866899, 0.00270365202, -0.0164001752, 0.0192184243, -0.00179819029, 0.00431792, 0.00355393696, 0.0234740935, -0.0301292371, 0.0196258817, -0.0134008331, 0.0095978938, 0.0278882198, 0.00942811929, 0.0240626447, -0.0296085961, -0.00976200867, 0.0324381627, -0.00181233813, 0.0164794028, -0.0193316061, -0.00911686756, -0.0172943175, -0.00506209675, -0.0287031345, 0.0055233161, 0.00901500229, -0.00355393696, 0.0282730404, -0.00561386254, -0.00107665046, 0.0734329447, 0.0142949764, 0.00861320365, 0.0146118877, -0.0301292371, 0.00270648161, -0.0184374638, 0.00129311241, 0.0128009645, 0.00556575973, -0.00136738864, 0.0107919713, -0.0140572926, 0.023519367, 0.000766105484, 0.0255566556, 0.0203276146, -0.0263715703, 0.0171698164, 0.00416229432, 0.0334568098, 0.0180186871, 0.000144484802, 0.00460087694, -0.0214481223, 0.0138875181, -0.00560254417, 0.0162077639, 0.00548653165, -0.0289068632, 0.0260772966, 0.0140120191, -0.0233609118, 0.000605881214, -0.0194108337, 0.0135253333, 0.0344301797, 0.0351319127, 0.0063891639, 0.00346339098, -0.0269827582, -0.0572251789, 0.0206671618, 0.0117710019, 0.0429188833, -0.010061943, -0.000956393895, -0.0150306635, -0.00446788734, 0.0157550331, -0.0121671408, -0.0375992954, 0.00383689371, 0.00385387125, 0.00934889168, -0.0215386692, 0.00141761347, 0.0132536953, -0.0126198716, 0.00462351367, 0.013763017, -0.0185053721, 0.0373955667, -0.0213236231, 0.0331851691, -0.0639708638, -0.0195240173, 0.0355167352, 0.0207916629, 0.0238589142, 0.00341528817, 0.019603245, 0.0068418947, 0.00116295228, 0.0194108337, -0.0184487812, -0.0315327, 0.0342264511, 0.0613450296, -0.00426132884, -0.0219800826, 0.0281145852, -0.0358789191, -0.0177017748, -0.00727764796, -0.000276236562, 0.0121784592, 0.00222686981, 0.0294727776, -0.00757758226, 0.0119068213, -0.0195466541, -0.0397950411, 0.000433631241, 0.0219914, 0.0184940547, 0.0166944489, 0.00606659334, -0.0145552959, 0.033275716, -0.0104241278, 0.00449618325, -0.0324608, 0.00688150851, -0.00155767705, 0.00504794857, 0.0243569184, -0.0430547036, -0.044412896, 0.0217084438, -0.0361279212, 0.0151778013, 0.0299934186, 0.00970541686, -0.00439714827, 0.0235646404, -0.0182676893, -0.0376898423, -0.0168868601, 0.0122124143, 0.0234740935, 0.0120313223, -0.00311252452, -0.00489515206, -0.00396705372, 0.020248387, 0.00713617, -0.00573553378, -0.00751533173, 0.0197164286, 0.00662684767, 0.013672471, 0.0232024547, 0.00763417361, -0.00595907, 0.00320590031, -0.0148382531, -0.00203304435, -0.0242437366, -0.0146232061, 0.00563083962, -0.0211878028, -0.00271497015, -0.0204521157, -0.0219914, -0.0117936386, -0.0376898423, 0.0219574459, -0.000437875598, -0.00560820336, -0.0179168228, -0.0319401585, 0.0049856985, 0.00881127361, 0.021685807, 0.00739649, -0.00395856518, -0.00582325039, 0.00132070074, -0.0174075011, -0.0199767482, -0.00924136769, -0.0283183139, 0.0161624905, -0.0060892296, 0.00732292142, -0.0357204638, -0.0204747524, 0.0344075449, 0.00892445631, -0.0102996267, 0.0049856985, 0.00196937914, -0.0545993373, -0.0147816613, -0.0340000838, -0.0142383846, -0.0164794028, -0.00277439109, -0.0138875181, -0.00654196041, 0.0258735679, -0.0608470254, -0.028567316, 0.00689282687, 0.00705128256, -0.0260320231, 0.00328795775, 0.0247417409, 0.00808124524, 0.0181545056, -0.00701732794, 0.0068418947, -0.0268922113, -0.00887352414, 0.0316006131, -0.00518942717, -0.00841513462, -0.0216631703, -0.0135819251, -0.011086246, -0.00250982656, -0.00176847982, 0.00640614145, 0.00779828848, 0.00350300479, 0.0120652765, 0.0230553169, -0.016943451, -0.0389122143, 0.0277071279, 0.0084321117, -0.0163549017, 0.010169466, 0.0133329229, -0.00481875381, -0.0173056368, 0.000277651328, -0.0108089484, -0.00565347634, -0.0103562176, 0.0336379, -0.0275939442, 0.0383236669, -0.00214339746, 0.0159248076, -0.0116238641, -0.000698195829, -0.0285446793, 0.0416512378, -0.00946207438, 0.014068611, -0.0185393281, 0.0143855223, -0.00045096234, -0.0199314747, -0.0260320231, 0.0375540219, -0.00438017072, 0.034316998, 0.00685887225, 0.00705128256, 0.0217537172, -0.0110749276, -0.00841513462, 0.0245380104, 0.00943943765, -0.00514132436, -0.0169208143, 0.0124048246, -0.0185280088, -0.0235420037, 0.0374408402, 0.0114257941, 0.03266453, 0.00882825162, -0.0142383846, -0.0300613269, 0.04110796, 0.0028847442, -0.015721079, 0.00939982384, -0.0188336018, 0.0164341293, 0.00975069, -0.00687019061, 0.0030248079, 0.00735121686, -0.017249044, 0.0389801264, 0.0152570289, -0.00876600109, -0.00881693326, 0.00505926693, -0.0235646404, 0.0221498553, 0.0265300274, 0.021255713, 0.00640048226, -0.0158229433, 0.0130612841, -0.0164907202, 0.0284088589, 0.0046659573, -0.0068418947, 0.0100336475, 0.0184261445, 0.0044395919, -0.00265979371, -0.000879288185, 0.00522621162, 0.00679662172, 0.00910554919, -0.00198777136, 0.0287257712, -0.0020288, 0.0197390635, -0.0128575554, 0.00435753446, -0.0261225682, -0.00135041121, -0.00148410827, 0.015290984, 0.00989216845, 0.0453183576, 0.0112786572, 0.0134008331, -0.0447524413, 0.0152683472, -0.00255934405, -0.00333889, 0.00401232718, 0.00591379637, -0.00882825162, 0.0361279212, -0.0265073907, 0.00253387797, -0.00139356207, -0.0152683472, -0.0257603843, 0.00311535411, -0.00305310357, -0.0172037724, -0.0017274511, 0.0340453573, -0.0166491773, -0.0038199164, -0.0101468302, -0.0233609118, 0.019727746, -0.00606093416, 0.0372371115, 0.0011961998, -0.00207265839, 0.0118955029, 0.00492061814, 0.00553463446, 0.0150872553, 0.028567316, -0.0134347873, 0.0131631494, 0.00636652717, 0.0189807396, 0.015324939, -0.00737951277, -0.026303662, -0.0149514358, -0.00245040562, -0.0270053949, 0.00947339274, 0.0192636978, -0.018109234, -0.0149061624, -0.0115616135, 0.008732046, -0.00458107, -0.0217876714, 0.0106108785, -0.0298123248, -0.00925268605, 0.00975069, -0.00624202657, -0.0145326601, 0.00915648136, -0.0504794866, 0.00721539743, 0.0122916419, -0.0136611527, -0.00687584933, 0.0233609118, -0.00706826, -0.0168981776, 0.00989216845, 0.0031577975, -0.0151212094, -0.0020698288, 0.00558273727, 0.00406325934, -0.00141266163, -0.0334341712, -0.0251039248, 0.00877166, 0.0109108128, 0.0243342817, 0.00992612354, -0.0114371125, -0.00467161648, -0.0174754094, 0.00873770472, -0.0217763539, 0.00991480518, 0.0125293257, 0.0265300274, -0.00825102, -0.0264168438, 0.0031181837, -0.0173509084, -0.0163888559, 0.0199880656, -0.00496306177, 0.0307177864, 0.00121176243, -0.00717578363, 0.0193202887, -0.0192297418, -0.0231232271, 0.0295180511, -0.000780960661, 0.00658157468, 0.00952432491, -0.00687584933, -0.0275486708, 0.0367843807, 0.00786053948, 0.0154720759, 0.00845474843, 0.00986387301, -0.00223394367, 0.00448486488, -0.00526016625, 0.0123142786, 0.0282730404, -0.00301066, 0.0143628856, -0.0110975644, 0.00736253522, 0.00216744887, -0.00461219531, -0.00324551412, -0.01354797, 0.0124953706, -0.00806426816, 0.0173622277, 0.00496872095, 0.021561306, -0.00548936147, 0.02238754, -0.00451881951, -0.00164822314, -0.0156644862, 0.0256698374, -0.0026116909, -0.00498852786, 0.000104251885, 0.00915648136, -0.0165586304, 0.00358506222, -0.00136172946, 0.0231458638, -0.0239041876, 0.00675700791, -0.00130018638, -0.0157889873, 0.00748703629, 0.0208143, 0.00932625495, -0.00267960061, 0.00525733689, 0.00703430548, 0.0245832838, -0.0260320231, -0.00460087694, 0.0299255084, 0.00554029364, 0.0175772738, -0.0317137949, -0.0241531897, -0.00470274175, -0.0128236013, -0.0214481223, -0.0121784592, -0.021346258, 0.0256019291, 0.02526238, 0.00545257702, -0.00404345244, 0.0222517196, 0.020735072, -0.0130499667, -0.0167397223, 0.019082604, 0.00818311, 0.0335247181, -0.0101241935, 0.0263715703, 0.00290313642, 0.0197956562, -0.0001618159, 0.0122237327, 0.0104637416, -0.0346339084, 0.0266884826, -0.018777011, 0.0113295894, -0.0345433615, -0.0131971035, 0.0216518529, -0.0059760469, -0.00506209675, 0.00777565222, -0.00310686533, 0.0486232899, 0.00105401396, 0.0352224596, 0.0013277746, 0.0258056577, 0.00252821879, 0.0184714179, 0.026303662, 0.0140572926, 0.0128575554, -0.000874336401, 0.00385670085, -0.0078661982, -0.000118222873, -0.00333606033, -0.0237457324, -0.0055318051, 0.0309441518, -0.000699610624, -0.00815481413, -0.0233835466, -0.0035709145, 0.000890606432, 0.0262357518, 0.00515547255, 0.0160493087, -0.0150193451, 0.012846237, -0.0317817032, 0.0226704963, 0.0153362574, -0.0205426607, 0.000104075036, 0.00794542581, -0.0135592883, -0.00870375056, -0.0196258817, 0.0157889873, -0.0351545475, -0.00516396109, -0.00235278555, 0.0234967303, -0.000543277, 0.00967712142, -0.00214905664, 0.0194447897, 0.0171698164, 0.00681359926, -0.0101468302, -0.0155852586, 0.0312384274, 0.0128009645, -0.0446392596, 0.00690980442, 0.00945641566, 0.00882825162, -0.0158342607, -0.0281824935, 0.0316006131, 0.0162190814, 0.0125632808, -0.0190373324, -0.031012062, 0.0084321117, -0.00759456, 0.0199767482, 0.0172716808, -0.0018420486, -0.0132650137, -0.0243569184, -0.00540730404, -0.0201691594, 0.00689848606, -0.037191838, 0.0115502952, 0.00961487088, 0.0317817032, 0.00223960285, 0.0281824935, -0.0166491773, 0.017464092, 0.00932059623, -0.0105599463, 0.00926966406, 0.0408589579, -0.00235702982, 0.0416965112, -0.000587842718, -0.0377124771, -0.00909423083, 0.0375087485, -0.0230892729, -0.0384368487, -0.0250812881, 0.00598736526, -0.00704562338, 0.0158568975, 0.0116238641, -0.0215952601, 0.0140799293, -0.0152457105, 0.0139327915, 0.0056364988, 0.030491421, 0.014894844, 0.00615148, -0.00558556663, 0.0131065575, -0.00951300655, 0.0392517634, -0.0100166695, 0.0125745991, 0.018810967, 0.0461559072, 0.0159021709, 0.00756060472, -0.0109221311, 0.0118841846, -0.00594209228, -0.00499418704, -0.00297670532, -0.0131744668, 0.00201465213, 0.00400666799, 0.015506031, 0.0192636978, -0.00972805358, 0.0109391091, -0.00540447421, -0.00562801026, 0.0144307949, -0.0117596835, -0.0180639606, 0.0198409297, -0.0149061624, 0.000341847161, 0.0133102862, 0.0305366945, -0.0115050226, -0.000414885377, -0.00883391, -0.00331059424, -0.0096714627, -0.0023160011, 0.0117030917, -0.0161059, -0.00912252627, 0.00302197831, -0.0334794447, -0.0264847539, -0.00838117953, -0.0153815299, -0.0335699916, -0.00569026079, -0.0338189937, 0.0120539581, 0.0228063166, -0.0154720759, -0.00127754977, -0.00821140595, 0.0455673598, 0.00833590608, 0.00834156573, -0.00629861793, -0.0113805216, 0.0190712865, -0.00263998657, -0.00493476586, 0.00870375056, 0.00284796, -0.00152513699, -0.00111555704, -0.00817179121, 0.000921731698, 0.00624768529, -0.0353582799, 0.00947905146, -0.0159474444, 0.0106618116, 0.0314195193, 0.00728896633, -0.020214431, 0.00237400737, -0.00958657544, -0.00441978499, 0.00389348506, -0.00636652717, -0.0201465227, 0.0227157697, -0.0191731509, 0.0296538696, -0.00317194546, 0.00911686756, -0.00967712142, 0.012144505, 0.00462634303, 0.0167963132, -0.0322118, -0.00825667847, 0.00822838303, 0.00957525708, 0.0163775384, -0.00330493506, -0.0118728662, -0.0203276146, 0.0219461266, -0.00273336237, 0.000224243238, 0.00746439956, -0.00783224311, -0.00456126314, 0.00471971883, -0.0118502295, 0.00266969716, 0.000804304611, -0.00253104838, -0.00642311852, 0.00586852338, -0.00703996466, 0.00885088742, -0.00053089764, -0.00846040715, 0.00676266663, -0.0199314747, 0.00204719231, -0.0156531688, 0.0105033554, 9.09882874e-05, -0.00493476586, -0.0219348092, 0.00586852338, 2.00169816e-05, 0.00289323297, -0.00128816068, -0.00171047368, -0.00414531678, 0.0158229433, 0.00159304659, -0.012846237, -0.00485270843, -0.017249044, 0.0135253333, -0.012416143, 0.0096714627, 0.00495740259, -0.0086415, -0.0119520938, 0.00698337331, -0.00217735232, 0.00640048226, 0.00557424827, 0.0141704753, 0.00311535411, 0.0347923636, -0.00188166252, 0.00723237498, -0.00643443689, 0.0271864869, 0.0163209457, 0.010458082, -0.0204068422, -0.000525238516, -0.0342943594, -0.0212783497, 0.0154947126, 0.0211425293, -0.00505077839, -0.00484704971, -0.00673437119, 0.00660987, 0.0167170856, -0.0140233375, 0.0113522252, 0.00977898575, 0.0135366516, 0.00134828896, 0.00178545725, 0.00462634303, 0.0142270662, -0.00829063356, 0.0156531688, 0.0232477281, 0.00992046483, 0.00085452944, -0.0107523575, -0.0021632046, -0.00728896633, 0.00781526603, 0.0106391748, -0.0313742459, 0.00840947498, 0.0042924541, -0.00123722851, -0.0215726234, 0.000407811458, 0.0154720759, 0.0177810043, -0.0175546389, -0.000979737844, 0.000511444348, -0.0075662639, 0.0089584114, 0.00800201762, 0.0123935062, 0.0129028289, -0.00416795304, -0.0076681287, -0.0042924541, -0.0216971245, 0.0201238859, 0.0193429254, 0.0038199164, 0.000216461936, -0.00694941822, 0.00595341064, 0.0133895148, 0.0163209457, -0.00493193651, 0.00792279, -0.0191618335, -0.0214481223, 0.00290879561, 0.00215754542, 0.00726067089, 0.00658157468, 0.0218442623, -0.0213009864, 0.00827365555, -0.00351149356, -0.0187883303, 0.000437168201, -0.00380293909, 0.0118841846, -0.0185053721, 0.00934889168, 0.0146345245, 0.0013093825, 0.000897680351, 0.00634389091, -0.00228770543, 0.0224554501, 0.00629295874, -0.0103562176, -0.00591379637, -0.00921307225, 0.0238815509, 0.0239268243, -0.0415154174, 0.000678742537, 0.0326871648, 0.00538466731, -0.00321721844, -0.00902066194, 0.00865847711, -0.00542428112, -0.0247870125, -0.0130386483, 0.0169321336, -0.022908181, 0.0156758055, 0.0164907202, -0.0281598587, -0.00917345844, 0.00392461056, -0.000952856906, -0.00269091898, -0.00663816603, -0.0338189937, -0.00202738517, 0.00354827801, -0.010871199, 0.00503663067, -0.016852906, -0.0227723606, -0.00206841389, 0.0170226786, -0.016977407, 0.0187430568, 0.00195240171, -0.0381878465, 0.0017500876, -0.00368975638, -0.00745874038, -0.00951300655, -0.0156758055, -0.00587418256, 0.00979030412, 0.0161964465, 0.0068022809, 0.0168076325, 0.0239947345, -0.0169321336, 0.00303329667, 0.0166604947, 0.00681925798, -0.00154635881, -0.00678530335, -0.0117710019, -0.0102883084, 0.00679662172, -0.0176338665, 0.00956393871, -0.0134121506, 0.0228855442, 0.00856793113, -0.0154494401, 0.00450750114, 0.00174442853, 0.00941680092, 0.00566479471, -0.0122124143, -0.00838683825, 0.00823404174, 0.00434904546, -0.0098582143, -0.00586852338, -0.00391612155, -0.0158795342, -0.0247870125, 0.0207690261, 0.000698903226, 0.00413399842, 0.00318609318, -0.0117030917, 0.0140799293, -0.00619109394, 0.0112503609, 0.0139893824, -0.00542145176, 0.0203162953, 0.011301293, 0.010871199, -0.00524601853, -0.000588550058, -0.00536486041, 0.0141478386, -0.0232024547, -0.00792279, -0.0117030917, -0.0081152, 0.0360373743, -0.00250416738, -0.00134899642, 0.00806426816, 0.034928184, -0.00421888568, -0.00644575525, -0.0057496815, -0.0123142786, 0.00177838327, 0.00946207438, 0.0100676017, 0.00240654731, -0.00655893795, -0.00330776465, 0.0251039248, -0.0125745991, -0.0291558653, -0.0103505589, -0.00305593316, 0.0077926293, 0.0120992316, -0.00861320365, -0.0217310805, 0.0139554283, 0.0202031136, -0.0190373324, 0.0140572926, -0.0210633017, 0.000281188288, 0.00459804758, 0.017769685, -0.0123142786, -0.00632125419, -0.00913950335, 0.00297670532, -0.0187204201, 0.0145552959, 0.012020004, -0.00632691337, 0.0118049569, -0.0175546389, -0.0318722501, -0.0169547703, -0.00580061367, -0.000649739464, -0.00784922112, -0.00718144281, -0.00860754494, 0.000406750361, -0.0324155279, 0.0232477281, -0.00721539743, -0.0205200259, 0.00851699896, -0.00810954068, 0.00685887225, 0.000325400295, 0.00612318469, 0.0156758055, -0.00941114221, 0.0213915315, -1.7231625e-05, 0.0138535639, 0.0181318708, -0.00184063381, 0.00260461704, 0.0173961818, -0.00927532278, 0.00244050217, 0.00599868363, 0.0117710019, -0.0121784592, -0.00843777135, -0.00829629228, -0.000181092328, 0.0040576, -0.0138535639, 0.00396705372, -0.00729462551, -0.0246059205, -0.00298236427, 0.0153362574, 0.0250812881, -0.0172264073, 0.00698903203, 0.00460370677, 0.00825667847, -0.0175433196, -0.00659855176, 0.0012280324, -0.00426415866, 0.020859573, 0.0165246762, -0.00322004803, 0.00890182, 0.00775867468, 0.000213986059, -0.00433489773, -0.00915082172, -0.00126552419, -0.00378879113, 0.00979596376, -0.0190146957, 0.0124727348, 0.0101128751, -0.0141138835, 0.011301293, 0.00639482308, -0.0196824726, -0.00513566518, 0.0206332076, -0.0255566556, -0.0231685, -0.018075278, 0.000839674205, -0.0114654079, 0.00204577739, -0.0316685215, 0.0504342131, -0.00348319788, -0.00343509531, -0.0100393062, 0.014283658, -0.000452730834, 0.0127670094, 0.0140459742, -0.00522621162, -0.0290653203, -0.0122803235, 0.00545823621, -0.0238136426, 0.0129933748, 0.0358110107, 0.0201578401, -0.0322570726, 0.00475367391, -0.0035709145, 0.00229477952, 0.00533939432, -0.0091678, -0.00507058529, 0.00492910715, 0.0103335809, 0.00711353309, -0.000302233209, 0.0209048465, 0.0033841629, 0.000233439336, -0.00537051959, 0.0180979148, 0.0297896881, -0.00154352922, -0.000970541732, 0.0189581029, 0.0193316061, -9.6470576e-05, -0.00894709304, 0.00112829008, -0.00990348682, -0.00580061367, -0.00717012445, -0.00438300055, 0.0427151546, 0.00559122581, -0.00719842035, -0.00380293909, 0.0108429035, -0.0112107471, 0.0116691375, -0.0121897776, 0.00328229857, 0.0052347, -0.00601566117, -0.0169321336, -0.00938850548, -0.00545540638, -0.00180526415, 0.00765115116, 0.000377747288, -0.00282815285, 0.00309271761, 0.00844908878, 0.00868677255, -0.00654196041, 0.00150815956, 0.00915082172, 0.00656459713, 0.00131999329, -0.00808124524, -0.00530826906, -0.0150646186, 0.00111980143, -0.00531958742, -0.0369654708, -0.00057440222, 0.0047593331, -0.0193316061, -0.0145326601, 0.0167057682, -0.0135932434, 0.000342024, 0.00868111383, -0.00813217741, -0.0153362574, 0.00807558652, -0.0171132255, -0.0382783934, -0.00238249591, -0.0157097597, -0.0153023023, -0.0152343921, 0.0155513044, -0.00262159458, 0.00603263825, 0.0210519843, -0.0101355119, -0.00192552083, 0.0253302902, -0.00533373514, 0.00458107, -0.00569309, -0.00584588666, 0.00167934841, 0.0208369363, -0.00403779326, 0.00124288758, 0.0147590255, -0.0146232061, -0.00795108546, 0.0188901946, -0.00573270395, 0.00348602748, 0.0103392405, -0.044412896, -0.000200545604, -0.0105203325, 0.00214339746, -0.013763017, 0.00199060095, 0.00432075, -0.0195013806, 0.0177357309, -0.00530543923, 0.0144307949, 0.0151212094, 0.0104241278, -0.0066155293, 0.0110919056, -0.00975634903, 0.0170339979, 0.00249992311, -0.0133329229, 0.00674568955, -0.0108429035, -0.00926966406, 0.0053252466, -0.00787185691, -0.0156871229, 0.019207105, -0.00524035934, 0.0194787439, -0.00169491104, -0.000741346739, 0.00904329866, -0.000157925242, 0.0136158802, 0.0104241278, -0.0140233375, -0.00885088742, 0.00280976063, 0.0135253333, -0.0161738098, 0.000611540338, 0.00823970139, -0.0112164067, -0.0108825173, 0.00356525532, 0.0162077639, 0.000468647166, 0.00273760664, -0.00510454, -0.0262810253, -0.0148835266, 0.00996573735, 0.000346268353, 0.0191505142, -0.00116648932, 0.00195240171, 0.0134347873, 0.0266658459, -0.00134545949, -0.022206448, -0.00749835465, 0.0208935272, -0.00203021476, -0.012846237, 0.0246964674, 0.00653064204, 0.0220479909, 0.0026583788, -0.022172492, -0.0072267158, 0.00527431443, -0.00382840517, -0.00940548349, -0.00769076496, 0.0119294571, -0.0174527727, 0.0105486289, 0.00644575525, 0.00344358385, 0.0116125457, -0.00358506222, 0.00426981784, 0.0236778222, -0.00408589561, -0.0105599463, -0.00518376799, -0.00738517195, 0.0147816613, -0.0172377266, -0.0297444165, -0.011499363, -0.000131309629, 0.0196598358, 0.0436885245, -0.00238391082, 0.0100789201, 0.019727746, -0.00420473749, -0.00634389091, 0.0334341712, 0.0232477281, -0.0255340189, -0.0121784592, -0.00150674477, -0.00760021899, 0.0143968407, 0.00632691337, 0.00223818817, -0.00771906087, -0.0196598358, -0.0120539581, 0.0213236231, 0.00327380979, 0.0209274832, 0.0171471797, 0.0023160011, 0.0110975644, -0.0109277908, -0.0273675788, -0.00485270843, 0.0140799293, 0.0302876923, -0.026914848, -0.0190146957, 0.0139780641, 0.000893436, -0.0137516987, 0.0150759369, -0.00486968597, 0.00388499652, -0.00816047285, 0.0173622277, 0.0106052198, -0.00491495896, 0.0347244553, 0.000971956528, 0.0130499667, -0.0137969721, -0.00306725129, -0.0166039038, 0.024470102, 0.0128801921, 0.00746439956, 0.000903339474, 0.00517810881, -0.00293709128, -0.00770774251, -0.00410570297, 0.0128688738, 0.003180434, 0.0442997105, 0.0182110984, 0.00770774251, 0.0310799722, 0.00421605585, -0.0191618335, 0.00204011821, -0.00723803416, 0.0107014254, 0.0105259921, -0.000308069197, -0.0334341712, -0.026914848, 0.00179253111, -0.00328795775, 0.0184374638, 0.00641745934, -2.73893311e-05, -0.0211878028, 0.00699469121, -6.49474241e-05, 0.0144534316, 0.00328795775, 0.0112560205, -0.00292294333, 0.0162643548, 0.00887918379, -0.014193112, 0.00273336237, -0.00246313866, -0.00414248696, 0.0140120191, 0.00831327, 0.0256019291, 0.00246596825, 0.0116804559, -0.0128688738, -0.00996007863, -0.0109787229, 0.00292011397, -0.00475084409, -0.00516396109, 0.000556363724, 0.0322118, 0.00386236, -0.0105033554, -0.00381425722, -0.013242377, 0.0120652765, 0.0144534316, 0.0175206829, 0.00322853681, -0.00481875381, -0.00980728213, 0.00135394814, 0.00339831086, 0.0106391748, 0.0102260578, -0.00580061367, 0.00824536, -0.00670041656, 0.00340962899, 0.000491991057, 0.00121812895, -0.0093715284, 0.0055233161, -0.0429867916, 0.00689282687, 0.0202257503, 0.0138082905, -0.0164907202, -0.00210944284, -0.00383123476, 0.00163407531, -0.00349734561, -0.0110013597, 0.0015025005, -0.0159474444, 0.026394207, -0.0325739831, 0.001976453, -0.00417361222, -0.00522904098, -0.0110805873, 0.0276392177, 0.00270365202, -0.000603759, -0.000473598891, -0.00590813719, -0.00641180063, 0.00133626338, -0.00325683248, 0.00198777136, 0.00517810881, -0.0102260578, 0.0166944489, 0.011086246, -0.00753796846, -0.016977407, -0.00435187528, 0.0155513044, -0.0216178969, 0.00387367816, 0.0290879551, 0.0174867287, 0.00665514311, 0.00832458865, 0.017769685, 0.0123821879, -0.0139327915, 0.0132084219, -0.00919043552, 0.00370107451, 0.00296821655, -1.09922075e-05, -0.0255792923, 0.01027699, -0.0270280316, 0.0262583885, 0.00466029812, -0.0163888559, -0.0101072155, 0.0121218683, -0.0276618544, 0.0112786572, 0.00819442794, 0.0149740726, -0.0153023023, 0.0222743563, -0.0191618335, 0.00261876499, 0.00791147165, 0.0223422665, -0.0115559548, 0.00444808044, 0.0297217797, -0.0256472025, 0.0111428378, 0.00261027622, 0.00214622705, 0.0191618335, -0.0140799293, 0.0054497472, 0.0193655621, -0.015324939, -0.00134545949, -0.0215047151, -0.00454428559, -0.00594775146, -0.00104623265, -0.00247162743, 0.0035907214, -0.0176565032, 0.00168925198, -0.0098582143, 0.00764549198, 0.00175857637, -0.00662684767, 0.00684755389, 0.0224667676, 0.0364674702, 0.0106221968, -0.00998271443, 0.0344075449, 0.00270082243, -0.00384255289, -0.0242437366, 0.00334171951, -0.007554946, -0.0101468302, -0.015506031, -0.00305593316, 0.0249907412, 0.006728712, 0.00617411686, 0.00703996466, -0.021074621, -0.000673790812, 0.00342094735, -0.00278005027, -0.0188675579, 0.00459521776, 0.0285220426, -0.0259867497, -0.0251039248, -0.0132310586, -0.00246030907, 0.00951866619, 0.0049093, 0.0106391748, 0.00867545418, -0.00568743097, -0.0380520262, -0.015109892, 0.00615713932, 0.0199314747, -0.0197390635, -0.0141025651, -0.0117823202, 0.00804729, 0.0116578192, 0.0271864869, 0.00709655602, 0.019422153, -0.00128320896, -0.00212642015, 0.00852265768, 0.0152796656, -0.00939416513, -0.000534434628, -0.0020698288, -0.00877731945, 0.0131857852, 0.00637218636, 0.00162134226, 0.0152457105, -0.00553746382, 0.0152796656, -0.00444808044, -0.00750967255, -0.0102317166, 0.00966014434, 0.00744742202, 0.0211425293, 0.0113126114, 0.0187430568, 0.0290426835, 0.00898670685, -0.0154947126, -0.00753796846, 0.00299651222, -0.0137743354, 0.0159134883, 0.00559122581, -0.00814349577, 0.00715880608, 0.0134687424, -0.00322287763, -0.0139214732, 0.017283, -0.0318496153, -0.00245889439, -0.0148269348, -0.00712485146, -0.00675700791, 0.00408872543, -0.00174725801, -0.0219574459, -0.0063891639, -0.0100562833, -0.00380576868, 0.0251265615, -9.18725273e-05, -0.0127104186, -0.00695507741, 0.00255085528, 0.0162983108, 0.0260093864, -0.00810388196, 0.0241531897, -0.00122237322, 0.0057298746, 0.000970541732, 0.0203276146, 0.00574119296, 0.000572633755, 0.00436319318, 0.0089187976, -0.00621939, -0.011408817, -0.00280127209, 0.0142270662, 0.00387933734, -0.00601566117, -0.0178941861, -0.0074417633, 0.00184063381, 0.00599302445, -0.00379162072, -0.00679662172, -0.000885654707, -0.00416795304, 0.0166831315, -0.00169915543, 0.000998837408, -0.0165020395, -0.0268695746, 0.0119520938, -0.0195806082, 0.0102996267, -0.000246702926, -0.00311252452, 0.0130726025, 0.0138762, -0.0143515673, -0.00589681929, -0.0190260131, -0.0106957657, -0.0164228119, 0.00804163143, -0.00853963569, -0.0146232061, 0.00899236649, -0.00697205495, 0.00847172551, -0.0210293476, 0.01119377, -0.00611186633, 0.0211538486, 0.00303612626, -0.0258056577, -0.0187204201, -0.0118955029, 0.0224554501, 0.00958657544, 0.0145213418, -0.011103224, -0.00931493659, 0.0100958971, 0.0164680835, -0.00100308179, 0.00538183795, 0.0135592883, -0.0233835466, 0.00219291495, 0.0378030241, 0.000771764608, -0.0127783278, -0.0194108337, -0.00760587817, -0.0123369154, 0.0215839427, 0.00389348506, -0.00107735791, -0.00822272338, -0.00770208333, -0.0126538267, 0.0117483651, 0.0231685, -0.00571289705, -0.0397724025, 0.00503097149, -0.00535071269, 0.000119107113, 0.0080189947, -0.0112107471, 0.00295123924, 0.0180186871, 0.0213123038, -0.0113861803, -0.0015675805, -0.0103958314, 0.0137290629, 0.0148495715, -0.0162756741, -0.00379162072, -0.00917911809, 0.0209274832, 0.0509774908, -0.00690980442, 0.0154607575, -0.0195240173, -0.0134687424, -0.0284314957, 0.0183582362, -0.021866899, 0.00133060419, 0.00758890063, 0.00805860851, 0.00535920123, 0.00284937466, -0.00719276117, 0.00540164486, -0.0074530812, 0.0105486289, -0.00942246057, -0.0148722082, -0.0128688738, -0.0210972577, -0.0136045618, -0.012144505, -0.00322004803, -0.00379445031, 0.034316998, 0.0120086856, -0.0030021714, -0.0126198716, -0.00655327877, -0.00856793113, -0.0153362574, -0.00575251132, 0.00211510179, -0.00396705372, 0.00199767482, 0.0129594197, -0.0136498343, -0.00325966207, -0.0354940966, 0.00535920123, 0.00441695517, 0.00278146495, 0.0290653203, -0.0239041876, 0.0253982, -0.0139780641, 0.00679096254, -0.0288615897, -0.0011615376, 0.00935455, -0.00582325039, 0.0128688738, -0.00173735456, 0.0181997791, -0.00476782164, 0.0102260578, 0.0096714627, 0.00368126761, -0.00291445479, 0.0231685, -0.0136498343, -0.0263262987, -0.0240626447, 0.0143062947, 0.00223818817, -0.0115842503, -0.00492061814, 0.0124614164, -0.00504511921, 0.00662684767, -0.015596577, -0.00996007863, 0.0182450525, 0.00110989797, -0.0107240612, -0.0297217797, -0.012235051, 0.00953564327, -0.00539881503, -0.0143289305, -0.0258056577, 0.0209953915, 0.00913950335, 0.00834156573, -0.0144081591, 0.00913950335, 0.00480743544, 0.00228204625, 0.018075278, 0.0066890982, 0.0131291943, 0.0115502952, -0.0235646404, 0.018075278, -0.00887352414, -0.00625900365, -0.0151551645, 0.0147703439, -0.0450240821, -0.0144194774, -0.0112673389, 0.000135200287, -0.00678530335, 0.0178262759, 0.0110070184, -0.025171835, -0.012936784, 0.00732292142, 0.00314930896, -0.0134234689, -0.01263119, -0.00787185691, -0.034588635, -0.0200672951, -0.0101581477, 0.00719276117, -0.00647971, 0.0208369363, -0.0314874277, -0.0262131151, 0.0241984632, -0.0137969721, 0.0207577087, 0.0129707381, -0.0178715494, -0.00954696164, -0.0122690052, -0.0183469169, 0.0326192565, -0.00281400513, 0.00909989, 0.00069076824, -0.00036713641, -0.0155399861, -0.00395573583, 0.00221696636, 0.00174159894, -0.00227355771, 0.015200438, 0.0133895148, -0.00662118848, -0.0129933748, 0.0268016662, -0.00928664114, 0.00818876922, 0.00893011596, 0.020033339, 0.0177244116, 0.000209564852, 0.00945641566, 0.0216971245, -0.00888484251, 0.0137516987, -0.00812085904, -0.0142270662, -0.0138762, -0.0204068422, 0.0124048246, 0.00183780422, -0.00779828848, 0.00633257255, 0.00313516101, -0.0143062947, 0.026303662, 0.0239947345, -0.0190939233, 0.0156418495, -0.0142270662, -0.0440507084, -0.0117596835, -0.0153475748, 0.0111145424, 0.00200616359, -0.00761153735, 0.0234061833, -0.00954696164, -0.00902632065, 0.013672471, -0.0137290629, 0.0113692032, -0.0144194774, 0.0185166914, 0.00618543522, -0.0437564366, -0.00972239487, 0.0225686319, 0.00989216845, -0.00730028469, 0.0105090141, 0.00830195192, -0.00354261883, -0.0151891196, -0.0098978281, -0.0108372439, -0.00730594387, 0.00816047285, -0.00398403127, 0.00171754765, 0.00379728, 0.0107070841, -0.0149514358, 0.00931493659, 0.00211085752, 0.0175772738, 0.016117217, -0.0169660877, -0.00158738752, 0.0265073907, -0.00791713, 0.00684755389, -0.00973371323, 0.0106391748, 0.00651366496, -0.00605527498, 0.0078661982, -0.00331625342, -0.00109787227, 0.000896265556, 0.0072267158, 0.0068022809, -0.00486119743, -0.0287031345, 0.0227270871, 0.0333662629, 0.0072267158, 0.0197730195, 0.0375766605, -0.00321438885, -0.00702298712, 0.0145439776, 0.00602132, 0.00800767634, -0.0165925846, 0.00247162743, 4.12055815e-05, 0.00825667847, -0.00350583438, 0.0175093655, 0.00299368263, -0.00244050217, -0.034566, -0.00865281839, -0.0411532335, -0.013242377, -0.0321665257, 0.0236551855, -0.00192976522, -0.00187600334, -0.0027291181, -0.0329814404, -0.0125632808, 0.0408136845, -0.00432640919, -0.00162841624, 0.00587984174, -0.0122124143, -0.00547521329, -0.00808690488, -0.0158795342, -0.0077813114, 0.0409268662, 0.0226818155, -0.0068022809, -0.0124953706, -0.00709655602, -0.0106787886, -0.00679096254, -0.00174301374, -0.0171132255, -0.0205313433, 0.00254378142, -0.0440280735, -0.0261904784, 0.0159813985, 0.0160832629, 0.0117710019, -0.0223422665, 0.00727198878, 0.0333436243, -0.000235207815, -0.00687584933, 0.010169466, 0.0142610213, -0.00760021899, -0.019727746, 0.00305876276, -0.0084321117, -0.0178262759, 0.00961487088, 0.00348885707, -0.0219348092, -0.00160719443, -0.0349508189, 0.000116631243, -0.0140459742, 0.0126085533, 0.00683623552, -0.00463200221, -0.0232703649, 0.0196258817, 0.00154211442, -0.0289068632, -0.0045527746, -0.0158682149, -0.00889616087, 0.00422737421, -0.0123482337, -0.00955828, 0.0219121724, -0.0111824516, 0.00840947498, -0.0250360146, 0.00988651, 0.0066155293, -0.0042330334, -0.0153928483, 0.0175772738, -0.0221159011, -0.00666080229, 0.0125972359, -0.00420756731, 0.0263715703, -0.0142497029, -0.00853963569, 0.00214622705, -0.00320590031, 0.00533373514, -0.016943451, 0.00740214903, 0.0114427721, 0.0123935062, 0.00182082679, -0.00943943765, -0.0144081591, -0.00237400737, -0.0110636102, 0.0100562833, -0.00363882398, -0.02526238, 0.00193542428, -0.00688150851, -0.0140346559, -0.00362467626, 0.0158342607, -0.00368126761, -0.00847738516, -0.00330776465, -0.0342943594, 0.00923005, -0.00530261, 0.00398686109, -0.0122010959, 0.00982991792, -0.0431226119, -0.00308422884, -0.0073681944, 0.0136951078, 0.0253302902, 0.000962053, -0.00525167771, -0.00855095405, -0.0221838113, -0.00185478164, 0.012235051, -0.0241531897, 0.00152089261, -0.00343226572, -0.0187204201, 0.00761719607, 0.00715880608, -0.00439997762, -0.00433489773, 0.00134899642, 0.0064627328, 0.0195919275, 0.0023386376, -0.0231345464, 0.0165133569, -0.010871199, 0.00786053948, -0.00448486488, 0.0202370677, 0.0112220654, 0.0122803235, -0.0189128313, 0.00808124524, 0.00966014434, 0.0147703439, 0.00971107651, 0.0126198716, 0.00211368711, 0.00340679963, -0.0282956772, 0.0153928483, 0.0109391091, 0.0166831315, -0.00119973673, -0.029178502, -0.000848162919, -0.00438300055, -0.0174867287, -0.0103448993, -0.0235420037, 0.00852831732, -0.00688716769, 0.0123821879, 0.0108202668, -0.0178828686, 0.0158342607, -0.00363316503, 0.00855095405, 0.0195240173, 0.0248775594, 0.0198635645, -0.00744742202, -0.0177470483, 0.00388499652, -0.0146118877, -0.0198975205, 0.029699143, 0.0126877818, -0.00119761459, 0.0126991, 0.0119747305, -0.0060892296, -0.0117030917, -0.0187317375, -0.00475650327, 0.0108429035, -0.00145722739, 0.00157748396, 0.0207237545, 0.0177583676, -0.0314874277, -0.00410570297, -0.00497720949, -0.00199060095, -0.024651194, -0.0126425084, 0.0124274613, -0.00384538248, 0.0127443727, 0.0110805873, 0.0164794028, 0.000354403368, -0.00424435176, -0.00902632065, -0.020214431, 0.0245153755, 0.0261678416, 0.0444581695, -0.00746439956, 0.0082793152, -0.0057496815, -0.0168302692, 0.0140799293, -0.0125293257, -0.00255509955, 0.0107636759, 0.00271072588, -0.0239041876, -0.0139101548, 0.00769642415, 0.00950734783, 0.0129707381, 0.0023188307, 0.00451316033, -0.00441412581, 0.00670041656, -0.0227723606, 0.0215273518, -0.00320307072, -0.0320759788, 0.00357374409, -0.01171441, 0.00195806078, -0.000137145616, -0.00776999304, 0.00375200668, 0.0183016434, -0.00185619644, -0.0419907831, 0.0127556911, 0.00462068385, 0.0126651451, 0.0100279879, -0.00847172551, 0.0197164286, -0.00598170608, 0.0139893824, 0.0198409297, 0.00328512816, 0.00716446526, 0.0227384064, -0.0126764635, 0.0211538486, 0.00513849501, -0.00527148461, 0.0106787886, 0.0207803454, -0.0154947126, 0.0129254656, 0.00634955, -0.0095978938, -0.00176847982, 0.0048725158, -0.0146005694, 0.00749269547, -0.00419341912, -0.00636086799, -0.015506031, 0.00855661277, 0.00402364507, -0.0116691375, 0.00376049546, -0.0177130941, 0.00408023642, 0.00859622657, 0.0200446583, 0.0238589142, 0.00183497462, -0.00605527498, 0.021866899, 0.025783021, 0.0143968407, -0.0122690052, -0.000103279221, -0.0178036392, 0.00658723339, -0.03266453, -0.000906169065, 0.0146684786, -0.0115446365, 0.0020698288, 0.0150533, -0.00307574, 0.0107466979, -0.0111145424, -0.00464332057, 0.0525167771, 0.0296765063, -0.0148156164, -0.01354797, -0.0166039038, 0.0297444165, -0.00398686109, 0.0349055454, 0.0288615897, 0.0118615478, -0.00329927588, -0.00366711966, 0.00603263825, -0.00878297817, -0.0109164724, 0.0117257284, -0.00977898575, 0.0206332076, 0.0105542876, 0.000208326921, 0.0288615897, 0.00962618925]
05 Sep, 2020
Find the profit and loss in the given Excel sheet using Pandas 05 Sep, 2020 In these articles, we will discuss how to extract data from the Excel file and find the profit and loss at the given data. Suppose our Excel file looks like then we have to extract the Selling Price and Cost Price from the column and find the profit and loss and store it into a new DataFrame column. To get the excel file used click here. So, Let’s discuss the approach: Step 1: Import the required module and read data from excel. Python3 # importing module import pandas as pd; # Creating df # Reading data from Excel data = pd.read_excel("excel_work/book_sample.xlsx"); print("Original DataFrame") data Output : Step 2: Create a new column in DataFrame for store Profit and Loss Python3 # Create column for profit and loss data['Profit']= None data['Loss']= None data Output : Step 3: Set Index for Selling price, Cost price, Profit, and loss for accessing the DataFrame columns Python3 # set index index_selling = data.columns.get_loc('Selling Price') index_cost = data.columns.get_loc('Cost price') index_profit = data.columns.get_loc('Profit') index_loss = data.columns.get_loc('Loss') print(index_selling, index_cost, index_profit, index_loss) Output : 2 3 4 5 Step 4: Compute profit and loss according to there each column index. Profit = Selling price - Cost price Loss = Cost price - Selling price Python3 # Loop for accessing every index in DataFrame # and compute Profit and loss # and store into new column in DataFrame for row in range(0, len(data)): if data.iat[row, index_selling] > data.iat[row, index_cost]: data.iat[row, index_profit] = data.iat[row, index_selling] - data.iat[row, index_cost] else: data.iat[row, index_loss] = data.iat[row, index_cost]-data.iat[row, index_selling] data 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 !!/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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas
https://www.geeksforgeeks.org/find-the-profit-and-loss-in-the-given-excel-sheet-using-pandas/?ref=next_article
Pandas
Find the profit and loss in the given Excel sheet using Pandas
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, 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 !!, Best Practices For SQL Query Optimizations, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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.0558972768, 0.0207540561, -0.0110467058, 0.0276404694, 0.00161344721, -0.0145195434, -0.0108452095, -0.00167122902, -0.0391849875, 0.0122793848, 0.0304139983, -0.0425037406, -0.0120601105, -0.0181820244, -0.0201969799, -0.00787611119, 0.0197228733, 0.0469366461, 0.00872357842, 0.0113726547, -0.017992381, -0.0202799495, -0.00514702965, 0.00342542678, 0.0141995205, 0.00549964746, 0.000464106823, 0.00556483725, 0.0385212377, 0.000584115274, 0.0255069844, -0.00386693957, 0.00516184559, -0.00160752086, -0.0305799358, 0.013440948, 0.0043943841, 0.0153492307, 0.0256492179, -0.0110348528, -0.00718865544, 0.0413658805, -0.00186531676, 0.00156899961, -0.00690419087, -0.00976068899, -0.0196873154, 0.00877098925, -0.0362929292, -0.0196399037, -0.0328793563, -0.0148158604, 0.00677973777, -0.062866658, 0.00214237347, 0.0128720189, 0.0012734232, 0.0544749536, -0.026265556, -0.0480508, 0.0163922682, 0.00830873474, 0.0437127128, -0.00384619739, -0.00627007196, 0.0176012423, -0.00650712568, 0.00453957962, 0.0336379297, 0.0103236912, 0.0191302393, -0.00209940737, 0.0462728962, -0.0102644283, -0.0253647529, 0.00415436737, -0.00562706357, -0.0122201219, 0.00508184, 0.0458936095, 0.0022134895, -0.0194147024, 0.0275219418, -0.00755016226, 0.0249143504, 0.0193791445, -0.00649527321, -0.0573196, 0.00531593058, -0.0131446309, 0.0133698322, 0.0206947941, 0.0138202347, -0.0270004235, 0.0220815577, 0.0168545227, -0.0104540708, 0.00411880901, -0.0321919024, 0.00895470567, 0.0162500348, 0.040536195, -0.0104540708, -0.0254832786, 0.0328082405, -0.0125401439, -0.0189998597, -0.00218682108, -0.0326660089, 0.0184783414, -0.00098155078, -0.0177434739, -0.0130972201, -0.00824947096, 0.0482404418, 0.0101873856, 0.00295576407, -0.0330452956, 0.0631511211, 0.00676788483, 0.0435467772, 0.018004233, 0.0240491051, -0.0029572458, 0.0089961905, 0.0585522801, 0.0217852406, -0.0105607454, 0.0240372512, -0.00404176675, -0.022555666, -0.0584574565, -0.0185968671, 0.00640045153, -0.0082909558, 0.0363166369, 0.00397065049, -0.00936955, 0.0194976721, 0.0141521096, 0.013749118, -0.0343727954, 0.00368322292, 0.00299724843, -0.00118675036, -0.000423363206, 0.0313385092, 0.0238239039, -0.00540778879, -0.00249202759, -0.0455143228, -0.0147328917, 0.0223541707, -0.00462847482, 0.044874277, 0.00594412303, -0.015266262, 0.00797093287, -0.000855615945, -0.00625229301, 0.0263603777, 0.0102347964, 0.00777536351, -0.00119712146, 0.0148869762, -0.00965401437, 0.0386634693, -0.0212044585, -0.0749564, 0.014649923, 0.017707916, -0.0505398624, -0.0242980104, 0.00611598697, -0.00429956242, -0.0162737407, 0.0090732323, 0.0276641734, -0.014969945, 0.00145862147, 0.0338986889, -0.0361981094, 0.0185494572, 0.00849837717, -0.0325474814, -0.0323815458, 0.0548542403, -0.0325237773, 0.0207540561, -0.00783462729, 0.00648342026, 0.00830280781, 0.0266448427, 0.000903026666, -0.0267159585, 0.00162826304, -0.0210859329, -0.0168782286, 0.000619302969, 0.00516184559, 0.0205644146, -0.026550021, 0.000204458876, 0.0216785669, 0.00816650223, -0.00820206, 0.013725413, -0.0383790024, -0.00431141537, -0.0243928321, 0.00335431076, 0.0409391858, -0.0406784266, 0.0578411184, -0.0258388594, 0.0267396644, 0.0148040075, 0.0352973044, -0.00945844501, -0.0250565819, -0.0203392133, 0.0094821509, 0.0392798074, -0.0129312826, -0.00821983907, -0.0154084945, -0.0542379022, 0.028067166, -0.016167067, -0.0337090455, 0.0120838154, -0.0274982359, 0.016475236, -0.0294420775, 0.0194028504, -0.0158114862, 0.00901989546, -0.0027913081, -0.0350128412, -0.0381182432, 0.0282331035, -0.0441157036, 0.00971920416, -0.0461069569, -0.0242506, 0.0311725698, -0.0301769432, 0.0342068598, 0.0289442651, 0.0324526615, 0.00627599843, -0.0338512771, 0.00103562861, 0.0558498651, -0.0194147024, -0.0206829403, 0.0756201521, -0.0058315224, -0.033282347, 0.00413066195, -0.024084663, -0.00653675757, -0.0142469313, 0.0178382955, 0.0224489905, -0.0141521096, 0.00455439556, -0.0130498093, 0.0288968533, 0.0230416264, 0.0143299, -0.000791166909, 0.0113667278, -0.00695752772, -0.0251277, -0.00572781172, -0.0330215879, -0.00587300677, -0.00406547217, 0.0378811918, -0.0156336948, 0.013725413, 0.0451113321, 0.00466699572, 0.0491649508, -0.0229230989, 0.00221941574, -0.037810076, -0.00277204742, -0.00817835517, 0.0242980104, -0.0163211524, 0.00756201521, 0.0266448427, 0.0171508398, -0.00454254262, -0.0286123883, -0.00462551136, -0.0279486384, 0.0184783414, 0.00830873474, 0.0102288695, -0.0216074511, 0.014033583, 0.0200547483, -0.00489219697, 0.00769832078, -0.00443586847, -0.0146262171, 0.00363284885, 0.0374070853, 0.0132157477, -0.0160722453, -0.0328082405, -0.0387819968, 0.0321681947, 0.0659483597, -0.0264552, 0.00657824194, 0.015882602, 0.00807168055, -0.00778721599, -0.0426696762, 0.013417243, 0.0147210388, -0.00883025303, -0.00707605481, 0.006406378, 0.0352261886, -0.0207777619, -0.0233497955, -0.000234646184, -0.0141046988, 0.0267633703, 0.00803612266, 0.0164989419, -0.0477426276, -0.0249854662, -0.0454195, -0.0119475098, 0.0356765911, -0.0199599266, -0.0281382818, -0.0005948568, 0.0175301265, 0.00392323965, -0.0127416393, 0.0334482864, -0.0096954992, -0.000941547914, 0.000529667, -0.00822576601, 0.0267633703, 0.00805982761, -0.0193554405, 0.00261499942, -0.0199125167, 0.00945844501, -0.0419111066, 0.019545082, -0.0156811066, 0.0036595175, -0.015266262, -0.00340764783, 0.00427882047, 0.024724707, -0.00354099064, -0.00526555674, 0.0181583185, 0.00362099614, -0.0161315091, 0.0434756614, 0.0255543962, -0.0134528009, -0.0139032034, 0.00961253047, 0.0438786522, 0.0166174695, -0.0579359382, 0.0251277, -0.0192961767, 0.0163922682, -0.0151003245, 0.0209674053, 0.00680344319, -0.0165700577, -0.0451350361, -0.0229705088, 0.00198236201, 0.0563239753, 0.0146973329, -0.0171863977, -0.0242980104, -0.0262892619, 0.0213822499, -0.0319548473, 0.0376204327, 0.01953323, 0.0271189511, -0.00584633835, -0.0458699, -0.00615747133, 0.00555298431, -0.0198532529, -0.0186679829, -0.000806723605, 0.0266922545, 0.0215244815, 0.0295131933, 0.0291102026, 0.0264314953, 0.0569877252, -0.0342068598, 0.00663750526, 0.0195095241, -0.00478256, -0.00892507378, 0.0275693517, -0.0123267956, 0.0421718657, 0.0020119939, -0.0104540708, 0.0335431062, -0.00774573162, -0.0269767176, 0.00998588931, 0.00199865946, 0.00981995184, 0.0184427835, 0.00761535205, -0.0276404694, 0.00822576601, -0.0247721188, -0.00862875674, -0.016463384, -0.00672640046, 0.0329267681, 0.0148632713, 0.0269293077, -0.0162381828, -0.0165819116, -0.0187628046, -0.0031261465, 0.0113311699, -0.0205525607, -0.031457033, -0.000210014812, 0.0153610837, -0.00552038942, 0.0195095241, -0.039967265, 0.000127971987, -0.035060253, 0.00135120645, 0.0404887833, 0.00648934674, -0.0429541431, -0.0134646539, 0.0448505729, 0.00871765241, 0.0128720189, 0.0332112312, 0.0290390868, -0.00759164663, -0.00462551136, 0.0223541707, 0.00896063261, 0.013749118, -0.00446550036, 0.0102703543, -0.0258388594, -0.0472211093, -0.00434993673, 0.00752053084, -0.013737266, 0.0406073108, 0.0018919853, 0.0399435572, 0.0447794572, -0.016451532, 0.0753356889, -0.011301538, -0.0273797102, -0.0193672925, -0.00795315392, -0.00105637079, 0.0220104419, 0.0327371247, -0.0152307041, -0.0170441661, 0.0102170175, 0.00372470729, -0.000995625858, -0.0196043458, 0.00307280943, 0.00746719353, -0.0301295333, -0.0132868635, 0.0153018208, 0.00322096795, 0.0590263866, -0.013725413, -0.0153255258, 0.0442105271, 0.0129786935, -0.018905038, 0.0015349231, -0.0270241294, -0.000954882184, -0.0283042192, 0.0157877803, -0.0378811918, 0.0295843091, -0.00547594205, -0.0202918015, 0.000580411346, 0.0189998597, 0.0509191491, 0.0167359952, -0.00263129687, 0.00889544282, -0.0163804144, 0.00175864261, 0.017696064, -0.00319726253, -0.00627599843, 0.00834429264, -0.0122438269, 0.0447083414, 0.0215718932, 0.0235275868, 0.0231483, -0.00358840125, 0.000276130595, 0.0220934115, -0.0471499935, 0.0226741917, 0.00896655861, 0.0166530274, -0.00404472975, -0.02319571, 0.0153255258, 0.00804204866, -0.0163092986, 0.00797685888, -0.0145076904, 0.00984365772, -0.0282568093, 0.0176605061, 0.0117874984, 0.00114230276, 0.0285649784, 0.019829547, 0.0025809228, -0.00864061, 0.00647156779, -0.00971920416, -0.0284227468, 0.00494257081, -0.00416325685, -0.0150766196, -0.043072667, 0.00956512, 0.00633526174, 0.00987921562, -0.0130498093, -0.00469959062, 0.0206710882, -0.0437364206, 0.0133105684, 0.0235987026, 0.0118586142, 0.0057100323, 0.0161433611, -0.0307932831, 0.0342305638, 0.00224756589, -0.0190235637, -0.0226504877, 0.0217141248, -0.0434045456, 0.0324763656, -0.00293502188, -0.00753238332, -0.0201969799, -0.0453246795, 0.0199006628, -0.0145195434, -0.0156929586, 0.0217259768, -0.0282331035, 0.0658061281, 0.0245587695, 0.0304851141, -0.0168663748, -0.000567447452, 0.0229112469, -0.0148869762, 0.0422429815, 0.0194858201, -0.0128483139, -0.00421066768, 0.01188232, -0.000590412, 0.0407969542, -0.027782701, -0.000948215078, -0.0353447162, 0.0170204602, -0.0242387466, -0.0185613092, -0.00996218435, 0.000865246227, -0.0386160575, 0.0184072237, 0.00666121067, 0.0196280517, 0.0313859172, -0.014341753, -0.0249143504, -0.0183242559, 0.0238950197, 0.0136305913, 0.00503146602, 0.0412947647, 0.0058255964, -0.00232164538, 0.0254595745, 0.000256499567, -0.0343965, 0.0242980104, -0.0247958228, 0.00245054322, 0.00949993, 0.0246298853, 0.00797093287, -0.00424029911, 0.0119949207, 0.00474403845, -0.0127179343, 0.0586945117, 0.0124690281, 0.00613969238, 0.0931147188, -0.00429659942, -0.0174234509, -0.0265974328, 0.0027468605, 0.0356054753, -0.0226386338, -0.0232075639, -0.0135120647, 0.0220697057, -0.00888359, 0.00675010588, -0.0284701567, -0.00394694507, 0.00443586847, -0.0115622971, 0.00891322177, 0.0160603933, -0.0148988292, -0.00103562861, -0.00598857086, 0.00170975027, -0.000932658382, -0.00511443475, 0.00482700719, 0.039042756, -0.000174364148, -0.0261233244, 0.0269767176, 0.0122438269, 0.034183152, 0.011283759, -0.0106200082, 0.0173523352, 0.00757386768, 0.0324052498, 0.00198977, -0.0307458732, -0.0299635958, 0.00589967566, -0.0103177652, -0.028991675, -0.00410103, -0.0215007756, 0.00974291, -0.02989248, -0.0174115989, -0.00756794121, -0.00183420349, 0.00778129, 0.00171863975, 0.0308644, -0.0235512909, -0.0012341612, 0.0233735014, -0.0307458732, -0.0024253563, 0.0108629884, 0.00606857613, 0.00851023, 0.0254358687, -0.00953548774, 0.0080835335, -0.0100095952, -0.00181494292, -0.00817835517, 0.0102585014, 0.0156574, -0.0127771981, -0.0267633703, -0.00765091041, 0.00189939328, 0.00944659207, 0.0124808801, 0.0315518565, -0.0102999862, 0.0168308169, 0.00310836756, 0.000150380976, 0.0194028504, 0.0126112597, -0.019248765, 0.033614222, -0.000355951051, -0.0181464646, -0.0130972201, -0.0181346126, 0.0038165655, 0.0199480746, -0.00826132391, 0.00108303933, 0.00520333, -0.00836207159, 0.0115504442, -0.00791166909, -0.0273085926, 0.0199836325, 0.0394457467, 0.00368322292, -0.0229705088, 0.0185850151, -0.0025809228, 0.0301058274, 0.0185494572, 0.000718569208, 0.0171271339, -0.00624636654, 0.0163567103, 0.0165463518, 0.0486434326, 0.00374248624, 0.0013793566, -0.00187568786, -0.0496864691, -0.00954734068, -0.00169937918, 0.0140809938, -0.0239424296, 0.00683900109, 0.0126349656, -0.0421244539, 0.0044803163, -0.0215363335, 0.01587075, 0.0191776492, 0.00444772141, 0.0192132071, 0.000859319873, 0.0289205592, 0.0305799358, -0.00846874528, -0.0297028366, -0.0490701273, 0.0402280241, 0.016451532, 0.0119652888, 0.00651305215, 0.0188576262, 0.00351728522, 0.0162618887, 0.0136068864, 0.00480330177, 0.0162500348, 0.0141165517, -0.0133579792, 0.00897841156, 0.0247484129, -0.00114156201, 0.0403939597, -0.0126231126, 0.0153373787, -0.0109578101, 0.00378693384, 0.00243572751, -0.0050077606, -0.00672640046, -0.00682122214, 0.036340341, -0.000401509809, 0.00580189098, 0.00600042334, 0.0525785238, 0.00296909828, 0.0014563991, 0.0208251737, -0.014341753, -0.00178975589, -0.000921546482, 0.00195124873, -0.0384027101, 0.0136068864, 0.0294657834, 0.029916184, -0.00143121206, 0.0177553259, -0.0159892756, 0.0208251737, 0.0212281644, -0.0338275731, 0.0144010158, 0.00885395799, -0.000714494847, -0.0139743192, 0.0208607316, -0.00353506417, 0.0474581644, 0.0287546217, 0.0253173411, 0.0317177922, -0.00415733038, 0.0218800623, -0.0072656977, -0.00359729095, 0.038141951, 0.0090376744, 0.0257914495, -0.0152188512, 0.000983032282, -0.00720050791, 0.00222682371, -0.0133224213, 0.00248610135, 0.00242980104, -0.00305206724, -0.00097117963, 0.0218207985, 0.0112422751, 0.00140009879, 0.0154559053, -0.00192902505, -0.00514110364, -0.0670862123, 0.00856949389, -0.014353605, 0.0243928321, 0.0264552, 0.0450876243, 0.00891914777, 0.0227927193, -0.0118349092, -0.0145313954, 0.0211926065, 0.000677825592, 0.0095236348, 0.0383553, -0.0420059264, -0.0395642743, 0.0131683368, 0.019248765, 0.0104718497, -0.0143061941, -0.00227275304, -0.0397302099, -0.0299398899, 0.0142113734, 0.00280760555, -0.03050882, -0.00864061, -0.00246239593, -0.0112067163, 0.0308881048, 0.000842281675, 0.00394398207, -0.0306984615, -0.00667898962, -0.0232431218, -0.022283053, 0.0195569359, 0.00251721474, 0.00647749426, -0.0368618593, 0.0063174828, -0.0115385922, -0.0221289694, -0.0163211524, 0.0112244952, -0.00950585585, 0.0061989557, 0.0233497955, -0.0150766196, -0.0321207866, -0.0029913222, -0.0268581919, 0.0313859172, -0.0346098505, -0.0292287283, 0.0260996185, 0.0417688712, -0.00656046299, -0.00741978269, -0.0251988154, 0.0321444906, -0.045443207, 0.00277501065, -0.00225349236, 0.0236579664, -0.00615154533, -6.06987269e-05, -0.0418399908, -0.00824354496, 0.0146973329, -0.0123267956, 0.00448920578, -0.00938732922, -0.0177316219, -0.0388294049, -0.00148232677, -0.016795259, 0.0125638498, 0.0330452956, 0.0118882461, 0.0200903062, 0.00691011734, -0.0639096946, -0.00421659369, -0.0272848886, -0.00803612266, 0.0200547483, -0.00271130237, -0.00559446868, -0.026881896, -0.0297739524, -0.021050375, 0.0196399037, 0.012208269, -0.0294657834, 0.00604487117, 0.0253173411, 0.0139743192, -0.0033069, -0.00122675323, 0.0068627065, 0.00572188525, -0.0143773109, -0.0251039937, -0.021370396, 0.0119771417, 0.0135239167, -0.00482404418, -0.00156307325, -0.00855764095, -0.0225793701, -0.0148158604, -0.0251039937, -0.0176486522, -0.0256492179, -0.0237764921, 0.0223067589, 0.0148040075, -0.0142706363, 0.00182086916, -0.0289442651, -0.0153373787, 0.00922731776, -0.0209437, -0.00895470567, 0.00935769733, 0.0268344861, 0.0030372513, 0.0101696067, -0.0110052209, 0.00385212363, -0.0409391858, -0.0223067589, 0.0203273594, -0.025909977, 0.0121312262, -0.0240254, -0.0177790318, 0.00187420635, -0.052199237, -0.0232312679, -0.0184072237, 0.0102525754, -0.0382130668, -0.00909101218, -0.0156455487, 0.0203984771, -0.0389479324, 0.0120482575, 0.00769239478, -0.00585226482, 0.00411584601, 0.0304851141, -0.0195924938, -0.0159181599, 0.00914434902, -0.0424563289, -0.0282568093, -0.00524777779, 0.0113845067, -0.0225082543, 0.0199243687, 0.0208251737, -0.00943474, -0.008539862, 0.00581670692, 0.0150647666, -0.0252462253, -0.0304851141, 0.00448920578, 0.00182827713, -0.021346692, -0.021974884, -0.00880654715, 0.0429541431, 0.003203189, -0.0122556798, 0.022271201, 0.0247721188, -0.0490227193, 0.027166361, -0.00462847482, -0.0087472843, -0.0319548473, -0.0196399037, -0.00967179332, -0.0159655716, 0.00629970385, 0.00891914777, 0.0168663748, 0.0203273594, -0.031457033, -0.0154796103, -0.0205288567, -0.00157492596, 0.0324289538, 0.00165196846, -0.0146143641, -0.0011911951, 0.0305799358, -0.00277352892, 0.0205051508, -0.0211689, 0.0413421765, -0.00485663908, -0.00600635, -0.00939918123, -0.0106674191, 0.0117519405, 0.000123434642, 0.00356765906, 0.0252225194, -0.000332616066, 0.0224252865, -0.0286360942, 0.000901545107, 0.00196606456, -0.0139624663, -0.00286094262, 0.0289205592, -0.00479144929, -0.0077220262, 0.00167715538, 0.0336853415, -0.0192606188, -0.0161196552, 0.0124808801, -0.0161907729, 0.0217496827, -0.00963030942, -0.00275871321, 0.0070167915, 0.0343253836, 0.0100925639, 0.0319548473, 0.0124927331, -0.0169137865, 0.0265026111, -0.0353684202, -0.00807168055, -0.00883617904, 0.021370396, 0.00099710736, 0.0434282497, -0.00592634408, -0.0127534922, -0.000384471583, 0.0107681667, 0.00278093689, 0.0136068864, 0.0247958228, 3.82897379e-05, 0.0220697057, 0.00392916612, 0.0131564839, 0.0166411735, 0.0325474814, -0.00826132391, -0.0333297588, -0.00974883605, -0.00244906172, 0.0205407087, -0.0184072237, 0.0401094966, 0.000243535702, -0.0214059539, 0.0188813321, -0.00779314246, 0.0294657834, -0.010080711, 0.0151832933, -0.0366722159, 0.0131920418, -0.0183479618, -0.0364114568, 0.0404176675, -0.0126942294, 0.0175775364, 0.0362929292, 0.00794722699, -0.0140928458, -0.014958092, 0.0119475098, -0.0415318199, 0.00688048545, -0.00807760656, -0.000799315632, -0.00433215732, -0.00611006096, -0.0353447162, -0.00477070687, -0.00417510932, 0.0240609571, -0.0200784542, -0.0102644283, -0.0187035426, -0.00974291, -0.00644786237, 0.0057070693, 0.0282568093, 0.0055826162, -0.0189524479, 0.000903026666, 0.0124571752, -0.00305503048, -0.0178382955, -0.0174234509, -0.00998588931, 0.0217615347, 0.00757979415, 0.00867616758, -0.012208269, 0.016463384, 0.0299398899, 0.000757090456, 0.00126527448, 0.00778129, -0.00300910114, 0.0106496401, -0.00383730768, -0.00877691526, 0.00134379847, -0.0155033162, 0.0134883588, 0.00459884293, -0.027782701, -0.0116630448, -0.0234683231, -0.0138439396, -0.00873543136, -0.0245824754, 0.0166885853, -0.0378337801, 0.00670862151, -0.0220341478, -0.0272374768, 0.0107622407, 0.00625821948, -0.0273085926, 0.0186442789, 0.00518555101, -0.00464329077, -0.029608015, 0.00842726137, -0.0101518277, -0.0060745026, 0.017696064, 0.0143061941, -0.0178738534, 0.00648342026, 0.00351432199, 0.0200547483, -0.0109459572, -0.00264018634, -0.00520036696, -0.00592930708, 0.000345024338, 0.0107740937, -0.0296554249, 0.00698123313, -0.00553520536, -0.00971920416, -0.00444772141, -0.00939325523, 0.000230757025, -0.00698715961, 0.0111178216, 0.00422844663, -0.0176130943, 0.0347994938, -0.0014734373, 0.0118112033, 0.017376041, -0.0145906592, 0.00379286031, -0.013737266, -0.00510554528, 0.00144306477, -0.0144958375, -0.0290627908, 0.00789389, -0.00152010727, 0.000295020815, -0.0136424443, -0.010975589, -0.000690789486, 0.0323104262, -0.0199243687, 0.0547120087, -0.0137846759, 0.0140217301, 0.0307695791, 0.000644119515, -0.0276641734, 0.0018238324, 0.0319074355, 0.0109341051, -0.0118408352, -0.0205407087, 0.0154914632, -0.0258388594, 0.00556483725, 0.00586411729, -0.021062227, 0.00497516571, 0.0163211524, 0.0256729219, 0.00438845763, 0.00401509833, 0.00633526174, 0.00261055445, 0.0151121775, -0.00600635, -0.0223186109, 0.0143299, 0.0106259352, 0.00535741495, -0.000877839688, 0.00685678, 0.0118763931, 0.0214178078, 0.022271201, 0.0125638498, -0.0279012285, -0.00249350932, 0.0112126432, 0.0253647529, 0.0146262171, 0.0101873856, 0.00907915924, 0.00481811771, -0.0101755327, 0.000891174, -0.00645971484, -0.00645971484, 0.00501368707, 0.05798335, -0.00925102271, 0.00467884867, -0.00330393692, -0.013120926, -0.000972661248, 0.0365773961, 0.00157492596, 0.00420770422, -0.00768646831, 0.00480033876, -0.00545223663, -0.0411762372, -0.0174471568, 0.0117460135, -0.00741385622, -0.010655567, -0.0163685624, -0.0149936508, -0.0224489905, 0.0173878931, 0.0257440377, 0.00749682542, -0.0188694801, -0.0176723581, 0.0102288695, 0.00175864261, -0.00144158315, -0.0080894595, 0.00466403272, -0.0261707362, 0.00913249608, -0.00816057622, 0.0325237773, 0.00151047693, 0.0235038809, 0.0102999862, -0.042693384, -0.00321207847, 0.0458936095, -0.0137965288, -0.0146143641, -0.010987442, 0.0201969799, -0.000824502611, 0.000476700312, 0.0328793563, 0.00565076899, 0.0117578665, -0.0135120647, -0.00606857613, 0.0224845503, -0.000162233671, 0.0142943421, 0.00243572751, -0.0209911112, 0.015266262, -0.0225319602, 0.00110452238, -0.0405124873, -0.0102585014, 0.0228638351, 0.0191657972, -0.0303902924, -0.0043973471, 0.0135594755, 0.00588189671, -0.0173997469, -0.00464625377, 0.018004233, -0.00811909139, -0.0384027101, 0.016463384, -0.0225675181, 0.00070375338, 0.0183005501, -0.0134883588, -0.0465099476, 0.0211096369, 0.000159363102, 0.0166056156, 0.00299576693, 0.00548186805, -0.0242980104, -0.0185020454, 0.00984365772, -0.00252314098, -0.00675010588, -0.00218682108, -0.0117400875, 0.0239898413, -0.0203036554, 0.0067738113, -0.000750052917, 0.0129431356, 0.00260610972, -0.0239661355, 0.0374544933, 0.0226267818, -0.0209911112, -0.0125401439, -0.000596708793, 0.0206473824, -0.0352261886, -0.0125638498, -0.0247484129, 0.0290390868, -0.0174234509, -0.0176012423, -0.0136661492, 0.00474996492, 0.00930436049, -0.00463440083, -0.0254121628, 0.0151714412, 0.0220578518, 0.0146262171, 0.0234564692, -0.0123979114, 0.00214681821, -0.000185846453, -0.0132038947, 0.00565373246, 0.00271130237, -0.00373063353, 0.0145195434, -0.00884210505, -0.00634118821, -0.00781684741, 0.0169137865, -0.0137609709, -0.0184427835, -0.0236461125, -0.0197465792, -0.0148040075, -0.0316466764, 0.0102347964, -0.010679272, -0.00174530828, 0.0224608444, 0.023172006, -0.0153610837, 0.0112600541, 0.000669306493, 0.0120838154, -0.00680344319, -0.00618117675, -0.0120719625, 0.0113133909, 0.00444772141, 0.00867024157, 0.029916184, 0.0285175685, 0.009766615, 0.0107800197, 0.000726347556, -0.00666121067, 0.00801834371, -0.0181701705, -0.0355817713, -0.000797093264, -0.0175064206, -0.00312910974, 0.00959475059, 0.0119238039, 0.00745534105, 0.00918583293, -0.00863468368, -0.0260285027, 0.00629970385, -0.00918583293, -0.00218830258, 0.0184664875, -0.0371700302, -0.0108511364, 0.016178919, -0.0152899679, -0.0248906445, -0.0145788062, 0.00182975875, 0.00227127131, -0.00522703538, 0.0159181599, 0.0043943841, 0.0162737407, -0.0344439112, -0.0133816851, -0.00562113756, -0.0190117117, 0.0156574, 0.00888951588, -0.0356054753, -0.0246061813, -0.0175538305, -0.00880062114, 0.0115208132, -0.00947622396, -0.00971920416, -0.00880062114, 0.035060253, -0.00756201521, -0.000855615945, 0.00554409483, -0.0185731631, 0.00737829832, 0.0101340488, -0.00774573162, -0.016783407, -0.00859912485, 0.00584633835, -0.00303428806, -0.0117697194, 0.0230297726, 0.018928742, -0.0109578101, -0.0329267681, -0.0106377872, -0.0259810928, 0.0199125167, -0.032002259, -0.00293354038, 0.00034002398, -0.0188220683, 0.0139032034, 0.0134883588, -0.0266685486, -0.0124927331, 0.0150410617, 0.00960067753, 0.018928742, 0.0300110057, 0.0118526882, 0.00119934382, -0.00586411729, 0.0161552131, 0.00380174979, -0.00207422045, 0.032002259, 0.0348469019, -0.00953548774, 0.0180279389, 0.0188694801, 0.0307932831, -0.0216193032, -0.0175182726, -0.00837985054, -0.00196458306, 0.0130735151, 0.00178531115, -0.036885567, 0.0017023423, -0.000100840451, 0.0172101036, 0.0102170175, -0.00215274445, -0.00555594778, 0.00191124598, -0.00245646969, 0.00940510817, 0.00385508686, 0.0184072237, 0.0010067377, 2.60203542e-05, 0.0372885577, 0.00967179332, -0.00485367561, 0.0108333565, -0.0088184, -0.00848652516, -0.0238831658, -0.00490997592, 0.0106496401, 0.00608042907, -0.00160307612, -0.00477959635, -0.00305799348, -0.00647156779, -0.0131683368, -0.00702864397, -0.00891914777, 0.0120364046, 0.00149714272, -0.0270004235, 0.00410991954, -0.00711161271, -0.0175893884, 0.010365176, 0.00121638214, 0.0223423168, -0.000247610064, 0.017707916, -0.00369803864, 0.0556128137, -0.00329801044, -0.000580781722, -0.0191895012, 0.0215363335, 0.0044803163, 0.00637081964, -0.0109341051, 0.00286390586, -0.0180634968, -0.0129905464, -0.0124808801, -0.00246387743, -0.00349950627, -0.0211689, 0.00656046299, 0.00602412876, -0.0127771981, 0.0209792573, 0.0111652324, 0.0147565966, 0.0119771417, 0.00912064314, -0.0161907729, -0.00859912485, 0.00358543824, -0.0215718932, 0.00093414, 0.0194028504, 0.0124334702, -0.0131801888, 0.0110407788, 0.000768202357, -0.0179212652, 0.0333297588, 0.0275456477, -0.017364189, 0.0143299, -0.0235394388, 0.00322393118, -0.0414132923, 0.00454550609, -0.0118467622, -0.0269056018, -0.00848652516, -0.00550261047, 0.0178382955, -0.00257351482, -0.00627599843, -0.0135831805, 0.0281619877, 0.0249380562, -0.00639452506, 0.00179716386, 0.003739523, -0.0145076904, 0.0260285027, -0.00671454798, 0.0085813459, -0.00294983783, -0.00830280781, 0.00329504721, -0.0255543962, 0.000499664864, -0.010969663, -0.00591152813, -0.00749682542, -0.0172693674, -0.000851171149, 0.00617525028, 0.00646564132, 0.023183858, 0.0024683224, -0.0272611827, 0.016807111, 0.0145906592, 0.00105266692, 0.0137728238, 0.00718272896, 0.00681529567, 0.0184309296, -0.00432326784, -0.0105311135, 0.0154203475, 0.000774128712, -0.0163567103, -0.000502257666, 0.00269648666, 0.00890136883, -0.00648934674, 0.00989699457, 0.0140572879, 0.00931028649, -0.00279427134, -0.00645971484, -0.000128342392, -0.00389657123, 0.00645378884, -0.0121371523, -0.0078820372, 0.00149714272, -0.00564187951, -0.0275456477, -0.0159300137, 0.0066493582, -0.0114022857, 0.0208962895, 0.0112659801, 0.00378693384, -0.00715309707, -0.00514110364, -0.00769832078, -0.00648342026, -0.0124690281, -0.0282331035, -0.00198088051, 0.0046047694, -0.00743756164, -0.00404176675, -0.00545519963, -0.00990884751, 0.0176723581, 0.00452180067, -0.0270478334, -0.032334134, 0.0142232254, -0.0143180471, -0.00334542128, -0.0148158604, -0.0242624525, -0.0116748977, -0.00399139291, -0.0104718497, -0.0250565819, 0.0096954992, 0.0140217301, -0.0010734091, 0.00833244, -0.011586003, 0.00657231547, 0.0347046703, 0.0302006491, -0.0099740373, -0.00779906893, -0.00861690473, -0.0221645273, 0.0102585014, -0.0101696067, 0.0090317484, -0.00963623542, 0.0136305913, -0.0147684496, -0.00374248624, 0.00310244109, -0.0111000426, -0.00445068441, -0.0190472696, 0.017364189, -0.00621673511, -0.00224608439, -0.0151832933, -0.0175301265, 0.0132276, 0.00585226482, -0.00334838429, 0.0125875548, 0.0192724708, 0.0224489905, 0.0284227468, 0.00520036696, -0.019545082, 0.0202562436, 0.0172101036, -0.00849245116, 0.0245824754, -0.000697086216, -0.00247128541, -0.0181346126, 0.00866431464, -0.0173997469, 0.000541519665, 0.00478256, -0.0125875548, 0.0162737407, -0.0112185692, -0.0164278261, -0.00732496148, -0.00626414549, 0.00135565118, -0.0149817979, 0.00228756876, 0.00519740395, 0.00195865682, 0.00941103417, 0.0267159585, -0.0246298853, -0.00076523918, 0.00842133537, 0.0276641734, 0.00253499369, 0.0251039937, 0.00523888832, 0.00198236201, -0.0185257513, -0.0184783414, -0.0121845631, 0.00549964746, -0.0137017071, 0.00733088749, -0.0158351921, -0.0158114862, -0.0123386486, 0.0147803025, -0.00363877532, -0.0156218428, -0.0216074511, 0.0331638232, 0.000713754038, 0.0313859172, 0.00641230447, -0.00912657, 0.0127890501, -0.0119415829, -0.0333060548, 0.000228905046, 0.0196399037, -0.0121015944, 0.0245350637, -0.0097310571, 0.0138794975, 0.000265203911, -0.00182975875, 0.00323874713, -0.00683307461, 0.00316170463, -0.00156455487, 0.0139980251, -0.0094821509, 0.0230890363, 0.00604783418, 0.0105725974, 0.00111785659, -0.021370396, -0.0103948079, 0.00377804437, -0.000251499237, -0.0106259352, -0.0153610837, -0.003203189, -2.01287348e-05, 0.0288257375, -0.0271900669, 0.0289442651, 0.0166648794, 0.0092806546, -0.0233735014, -0.00947622396, -0.0013178708, 0.0269056018, 0.00530704111, 0.0163922682, 0.00326245232, 0.0012682376, 0.000633748423, 0.0161907729, 0.00875913631, 0.0139506143, -0.0214415137, 0.0121075213, 0.0103296181, 0.0183005501, 0.00230831094, 0.0276404694, 0.0258388594, 0.0153136728, 0.0101162689, -0.00378693384, 0.00044262383, 0.0147328917, 0.0263366736, 0.00394398207, -0.000276686187, -0.00951178186, 0.0233735014, 0.00410695653, -0.000259647961, -0.00429067295, -0.00957104564, 0.0121490052, 0.00514999311, -0.0151951462, -0.00428474694, -0.00357951177, -0.00507295039, 0.00165641319, -0.0163448565, -0.0328319445, -0.00568632735, 0.00698123313, -0.0178501476, 0.00370989135, 0.00630563, -0.00122527161, -0.0151714412, -0.0130972201, -0.013132778, 0.0192724708, 0.00498405518, -0.00046781078, 0.0165345, 0.0282093976, -0.0105607454, 0.00623451406, 0.0208607316, -0.0123267956, -0.0136898551, -0.0273560043, 0.00658416841, -0.00992662646, 0.0162974466, -0.0047262595, -0.00422844663, 0.00226090034, 0.00762720499, 0.0207777619, 0.0033246791, 0.00540482579, 0.000319466984, -0.0167241432, 0.00355876959, -0.00872950442, -0.0333297588, -0.0244639479, 0.0049692397, 0.01953323, -0.0111415265, 0.00477959635, -0.0112600541, 0.0090317484, 7.51441912e-05, -0.00868209451, -0.00244609849, 0.012196416, 0.0115445182, -0.00577225909, -0.010673346, -0.0164989419, -0.0162855927, -0.00337801618, 0.0141521096, 0.0146262171, 0.00313799921, -0.0125401439, -0.00942288712, -0.00524481433, -0.0104659237, 0.0261470303, -0.0156099899, -0.00314096245, 0.00769832078, 0.00163270778, -0.0095236348, -0.00603005523, 0.00963623542, 0.00494849728, 0.0232312679, -0.00573373772, 0.00126675609, -0.0114437705, 0.00601523928, -0.00544631, -0.028067166, -0.0116274869, -0.0173997469, 0.0269056018, -0.00764498394, -0.0368618593, 0.0230416264, -0.0148632713, -0.00634711469, 0.00113859889, -0.00868209451, 0.00232164538, -0.000321318978, -0.0194858201, 0.0105607454, -0.00334838429, -0.0133461272, -0.00298687746, 0.0133816851, -0.0251514036, 0.00740200374, -0.00198088051, -0.0108452095, -0.0105429664, -0.0078464793, -0.0180990547, 0.0121490052, -0.0106318612, 0.013440948, 0.0182057284, -0.0104540708, 0.0120067727, 0.0082968818, 0.0150766196, 0.022603076, 0.0108689154, 0.010377028, 0.000399657816, 0.000528555829, -0.00957697164, 0.00753831, 0.00987921562, -0.00332171586, -0.0182175823, 0.00786425825, 0.0041514039, 0.0149343871, -0.0302480608, -0.00744941458, 0.0178857055, -0.010673346, 0.00699901255, -0.0171982497, 0.0150292087, -0.0145195434, -0.00949993, 0.0140928458, -0.0156929586, -0.0131801888, 0.00433215732, 0.0219274722, 0.0173167773, 0.00604487117, -0.0154440524, 0.0136542963, 0.0362218134, -0.00185642729, 0.000956363801, 0.0100214481, -0.00551742641, 0.00429067295, -0.000834873703, -0.00753238332, 0.00236757449, -0.00481515471, 0.026881896, -0.00333949481, 0.0245587695, -0.00153344148, 0.0022564556, 0.00884803198, 0.0250328779, -0.00590560166, 0.00102970225, -0.00123267958, -0.0131683368, -0.0163567103, 0.00992662646, -0.0144839846, 0.0251039937, 0.00891914777, -0.00582263293, 0.0256966278, 0.00305206724, 0.0197821371, 0.0145551013, -0.00049225695, 0.00877098925, -0.0130853681, -0.0227453094, 0.0237527862, 0.00672640046, 0.0097310571, 0.000430030341, 0.0173878931, 0.0100155212, -0.0100984899, 0.0077161, 0.0025023988, -0.0219156202, 0.018608721, -0.00831466075, 0.0105133345, 0.0176249463, -0.00113193167, 0.00674417941, 0.0037721179, 0.00573373772, -0.022271201, 0.0041454779, -0.0273560043, 0.00375730218, 0.00269204169, 0.0066493582, -0.010377028, 0.00711161271, -0.00728940312, -0.0108511364, 0.0175775364, 0.0329267681, 0.00520333, 0.00506998738, 0.0103059122, 0.00536334142, 0.00422844663, 0.0125401439, 0.00743163563, -0.00501072407, -0.0475292802, -0.014353605, -0.0123030907, 0.000704123755, 0.0269293077, 0.0180516448, -0.00740200374, 0.0247010011, -0.0187628046, 0.0165819116, 0.0115148863, -0.010365176, -0.00184901932, 0.00835614558, -0.00949993, -0.015882602, 0.0372174419, 0.00473218551, -0.00856949389, 0.00849837717, -0.00374841271, 0.00771017373, 0.00102451677, 0.00213348377, 0.00203718082, 0.0214059539, -0.00989106856, -0.0194858201, -0.00649527321, 0.00529518863, -0.00631155632, 0.00247128541, -0.00320022576, -0.0238357559, -0.000206496057, -0.00724199228, -0.036008466, -0.0119238039, 0.0201021582, -0.0200310424, 0.0071412446, -0.0107503878, 0.0301532391, 0.00736644585, -0.00324171013, 0.0199125167, -0.000826725, 0.0181464646, 0.00596190197, -0.0155388741, -0.0252225194, 0.0141046988, 0.00676195836, 0.00116600818, 0.0154203475, -0.0190591216, 0.0128009031, 0.0212518703, -0.00582263293, -0.00268018921, -0.00458402699, 0.0108274305, 0.00351728522, 0.0140928458, 0.0319785513, 0.00429659942, -0.027450826, -0.0128720189, -0.010993368, 0.00426696753, 0.00768646831, -0.0035706223, -0.0218326524, 0.00933991838, -0.00343135325, -0.0188576262, -0.00165937631, 0.0263366736, -0.0104837026, 0.0188576262, 0.000282427325, 0.00427882047, -0.0200903062, -0.00496034976, -0.00135935517, -0.00285057141, 0.0174827147, 0.00212903903, 0.00362395938, -0.0269056018, 0.0014786229, -0.0232312679, 0.0190709755, 0.00578114856, 0.0150173558, 0.00321207847, 0.00826132391, 0.0129905464, -0.000200199313, 0.00551446294, -0.0193554405, -0.0090732323, -0.0095295608, -0.0300347116, 0.0163685624, 0.00227275304, 0.00727162417, 0.0293235499, 0.0114082126, 0.00677973777, 0.0218563564, -0.00391731365, -0.00896063261, 0.0028802033, 0.0197821371, -0.0103296181, 0.0110289259, -0.01556258, 0.00692789629, 0.00282242126, 0.0125994077, -0.026241852, 0.0190354176, -0.00169937918, -0.0171034299, -0.0120304786, -0.00402991381, -0.0177434739, 0.0149106821, -0.00799463782, 0.0096954992, -0.0212400164, -0.0148395654, -0.017364189, 0.00556780025, 0.0235868488, 0.00169197121, -0.000219459922, -0.0211926065, 0.0104362918, 0.00810723845, -0.00753238332, -0.00143047131, 0.0109578101, 0.00680344319, -0.000224830685, -0.0107977986, -0.00329208421, 0.00711753918, 0.00741978269, -0.00400620839, -0.0133816851, -0.0236698184, -0.00153047836, 0.0226860456, -0.00511147175, 0.0100155212, 0.0172456615, -0.00642415695, -0.0251514036, -0.0270715393, -0.00622266112, -0.0093162125, -0.013737266, 0.00871765241, 0.00840948243, -0.0157640744, -0.000590412, 0.0107148299, 0.00711753918, 0.00467588566, 0.0105251875, -0.000474477914, 0.0171508398, 0.0256492179, -1.05736626e-05, -0.0132987164, -0.00566262193, 0.0143773109, 0.00479441229, -0.00407436164, -0.000842281675, -0.00754423579, 0.0189880058, -0.00944066606, 0.00413955143, 0.000315948215, 0.00409806706, -0.00737237185, 0.00150825456, -0.0134883588, -0.020161422, 0.0187272467, -0.0136661492, -0.00243276427, 0.00497812917, 0.0135120647, -0.0306273457, -0.0119771417, -0.00126157049, -0.0102585014, -0.0093162125, -0.00257055182, -0.0080835335, 0.0246061813, -0.0375967249, -0.0154084945, -0.0114259915, 0.00696345419, 0.0144602796, -0.00304317777, -0.00420474121, 0.0154322, 0.0118112033, -0.00355876959, -0.00327726826, -0.00585226482, -0.00610413449, 0.00611598697, 0.003203189, -0.00482108071, 0.00977846794, 0.0118289832, 0.00277204742, 0.00105711166, -0.000619302969, 0.0144010158, 0.00771017373, -0.000518184737, -0.00601523928, 0.0173997469, -0.00330393692, -0.019545082, 0.0197584312, 0.012208269, 0.0197347254, 0.016167067, -0.0231127422, 0.00324467337, 0.00474107545, 0.000683751947, -0.00757386768, 0.00388471852, 0.0258151554, -0.0132513056, -0.0162026249, -0.00572781172, 0.00625821948, 0.00516184559, -0.00228016078, -0.0193317346, 0.0156099899, -0.00705827586, -0.00461662188, -0.0102051646, -0.00756794121, -0.0139624663, -0.00106970512, -0.0172219556, -0.00326541555, 0.00263129687, 0.017091576, 0.0110407788, 0.00186679838, 0.00361210667, -0.0143773109, -0.00434697326, -0.0129549885, -0.0199006628, -0.00271871034, -0.00855171494, -0.000965994084, -0.00843318738, -0.0072656977, -0.00605376065, -0.00986143667, 0.00152158889, -0.00873543136, 0.0135594755, 0.00795315392, 0.0213111341, -0.00928658154, 0.0196636096, -0.0167359952, 0.0102288695, 0.00849837717, 0.00736644585, 0.00681529567, -0.0132038947, -0.0196636096, -8.1996528e-05, 1.00990919e-05, -1.20031618e-05, 0.00282982923, 0.0290153809, -0.0090732323, 0.0191302393, -0.0105963033, -0.0188694801, -0.0256492179, 0.00724199228, -0.0290153809, 0.0338512771, -0.0185257513, -0.000903767475, 0.0141165517, 0.00371878082, -0.0138320867, -0.00817242824, -0.0254358687, -0.00926287565, 0.0110822637, -0.00309058838, 0.00732496148, 0.00360321719, -0.00368025969, -0.00194087764, 0.00316763087, -0.00258981227, 0.0174234509, -0.00144454639, -0.00295428257, 0.0174353048, -0.0108452095, 0.0159892756, -0.00290390849, 0.0153136728, 0.02927614, 0.00452180067, 0.000782277435, -0.0144247217, 0.00334245805, -0.00385212363, -0.0154440524, -0.0240135454, 0.00943474, -0.00486552855, -0.00135491043, 0.00945251901, 0.013417243, -0.00964808837, 0.0124453222, -0.00792944804, 0.00493071834, -0.00239572464, 0.00600635, -0.00575744314, 0.00210977858, 0.0197584312, -0.00573373772, 0.00189791166, -0.0108866943, 0.00121934526, 0.00510258228, 0.0294183716, 0.000808946, 0.0149936508, -0.0202918015, 0.00220904476, -0.0512984358, 0.0173404831, 0.0193672925, 0.00391731365, 0.00211274158, -0.00471144356, -0.00200162269, -0.00495738676, -0.00881247316, 0.00762720499, 0.0133698322, -0.00466699572, -0.00154381257, -0.0239661355, -0.00367433322, -0.00576633262, -0.0166530274, 0.00599449687, 0.00431437837, -0.00961253047, 0.000595968, -0.00650119921, 0.00717087649, 0.0102466485, 0.00149417948, -0.0147565966, -0.00988514163, 0.0164870899, 0.0148869762, -0.00865246262, 0.0130142514, -0.00210681534, -0.0020919994, 0.0299398899, -0.0157522224, 0.00231571891, -0.0396116823, -0.0122675318, -0.0197939891, -0.0135357697, 0.0099799633, 0.0132038947, -0.022283053, -0.00555594778, 0.00792352203, -0.0202325378, 0.0335194021, -0.0182649922, 0.00826132391, 0.00456921104, -0.00580485398, 0.00929250754, 0.000575966551, -0.00391731365, 0.0235394388, 0.0174827147, 0.00330393692, 0.00840948243, -0.0188102163, 0.00669084257, 0.0273085926, 0.00309947785, -0.0135120647, -0.00288316631, -0.00137120788, -0.0290390868, 0.0238713138, 0.00785833225, -0.0108452095, -0.00251721474, 0.00703457044, -0.00442697899, 0.0239305776, -0.00552927889, -0.0297739524, -0.0210385211, 0.0115445182, -0.00867616758, 0.00289057428, 0.00606857613, 0.000742645, -0.0054640891, 0.000307429087, 0.0181820244, 0.00525666727, 0.000406695355, -0.00277797389, 0.00761535205, -0.0160722453, 0.00294539309, -0.0122556798, -0.0130853681, 0.00388471852, -0.0102525754, -0.00580485398, 0.00813094433, -0.00214089174, -0.00249647233, 0.00843911432, -0.0119356569, 0.0115622971, 0.00268611545, 0.00842133537, 0.0376441367, -0.0279723443, 0.0188339222, 0.0062819249, 0.00126453361, -0.0238239039, 0.0212874282, 0.0153966416, -0.0018905038, 0.0160959512, 0.00252610422, -0.00354691688, -0.00921546482, 0.016475236, -0.0167004373, -0.0162500348, -0.0316229723, 0.0297502466, 0.00484182313, -0.0228401292, -0.0043943841, -0.0160603933, -0.00788796414, -0.0106674191, -0.00397361349, 0.0186442789, -0.0225438122, 0.00614561886, 0.0048507126, -0.0175893884, 0.0148751233, 0.0260522086, -0.0279249325, -0.0202325378, -0.00990292057, -0.00663750526, 0.00363284885, -0.0129905464, -0.0194976721, 0.0206592362, -0.00269204169, 0.00187865109, -0.0029928037, 0.00293798512, 0.00892507378, -0.000113063536, 0.0170204602, 0.0128601668, 0.0185257513, 0.00971327815, 0.00552335288, 0.0087887682, -0.0131446309, -0.0317415, 0.00581670692, -0.0136305913, -0.0502079874, 0.00176308735, 0.0236816704, 0.00352913793, 0.00758572062, 0.0124097643, 0.00460773241, -0.0144721325, 0.00841540843, 0.0185850151, -0.0112185692, 0.00483589666, -0.0178738534, -0.0237053763, -0.0191302393, -0.00634118821, -0.000325948931, -0.00826132391, -0.00397361349, 0.00835021865, -0.0107385358, 0.00562410057, -0.00588485971, -0.00912064314, -0.00945251901, 0.019817695, -0.00407139817, -0.0135120647, 0.0132394526, -0.00770424725, 0.0118289832, 0.000743756187, 0.0277589951, 0.00711753918, -0.00156899961, 0.0059500495, 0.0180872027, 0.016795259, -0.00984365772, -0.00585226482, -0.00144158315, 0.0167122912, 0.0094821509, -0.0100392271, 0.0108866943, 0.00823169202, 0.00884803198, -0.0215126295, 0.0142824892, 0.00484182313, 0.00561817409, 0.0073545929, 0.000216681961, 0.0090376744, -0.00553520536, -0.0120304786, -0.0130735151, -0.0135831805, 0.00282686623, 0.00760942558, 0.00597968139, -0.0124808801, 0.00954141375, -0.0147803025, -0.0184190776, 0.0113785807, 0.00565373246, -0.0160959512, 0.0115682241, -0.000353173062, -0.0112126432, -0.00926880166, 0.0113845067, -0.00462847482, 0.0037721179, 0.0107503878, -0.00753831, -0.00943474, -0.00936955, 0.000251869613, -0.0103592491, -0.017091576, -0.013109073, 0.0364588685, 0.0165345, -0.027166361, 0.0047618174, 0.00670269504, 0.0102347964, -0.0178620014, 0.00678566378, -0.00112230144, -0.000410769717, -0.0190591216, 0.0161433611, -0.0336853415, -0.0116393398, 0.0196991675, -0.010702977, -0.00616932428, -0.00459884293, 0.0080479756, 0.00702864397, 0.0318363197, 0.00645971484, 0.0111118956, 0.00809538644, -0.0173878931, -0.00704049692, 0.0153136728, 0.000276686187, -0.00605376065, -0.0234801751, -0.00828502886, -0.0119949207, -0.020457739, -0.00212311279, 0.0011674898, -0.00177494, 0.026241852, -0.0161078032, 0.0219037682, -0.0127060814, -0.0153018208, 0.0105192605, 0.013737266, -0.00446846336, 0.0101873856, 0.0190946814, -0.0167715531, 0.000638933969, 0.0106911249, 0.0167715531, -0.00575448, -0.0238831658, 1.35773471e-05, -0.0022046, -0.00214237347, -0.00253203046, -0.00345802167, 0.0145076904, -0.0102229435, -0.00265203905, -0.00807760656, -0.0142587842, 0.00748497248, -0.0083383657, 0.0127890501, 0.00248758285, 0.00915620197, 0.0236105546, 0.000514110376, -0.0188694801, -0.0115682241, -0.00384916039, -0.0258625653, -0.014353605, -0.0248906445, -0.00676195836, -0.00805982761, 0.00177642168, -0.00753831, 0.0178738534, 0.0220934115, -0.00872950442, -0.0160840973, 0.00549372099, -0.00589078618, 0.00253795693, -0.00577522209, 0.0120601105, 0.0066138, 0.00884210505, -0.00730125606, 0.00165048684, 0.00161641033, 0.00090969383, -0.0232431218, -0.00166974741, -0.00174530828, 0.0312910974, -0.00722421333, -0.000814872328, -0.00609820802, 0.0055115, -0.00266685477, -0.0169019327, -0.0110822637, -0.00346691138, -0.027166361, 0.0174234509, 0.0167122912, -0.0178264435, 0.00737829832, -0.00990292057, 0.00297650625, -0.0148988292, -0.000119082477, -0.0163211524, 0.00737237185, -0.0208014678, 0.0223304648, -0.0190946814, -0.000903767475, -0.0180516448, -0.00217793137, 0.0140217301, 0.00255425437, -0.0112244952, -0.00961253047, -0.0114141386, 0.00992662646, 0.00265352055, 0.00101562717, -0.0155033162, -0.012836461, 0.0021808946, -0.0158470441, -0.00163270778, -0.0118763931, -0.0165819116, 0.00936362334, 0.00925695, -0.00587597024, -0.00691011734, -0.0322156064, -0.0046373643, 0.00156159163, 0.00400620839, 0.00280612381, -0.00424622558, 0.0167478491, 0.00867024157, 0.00446846336, -0.0217970926, -0.00275130523, 0.00687455898, -0.00498405518, -0.0136898551, -0.0111237476, -0.00941103417, 0.00495442376, -0.0153847896, -0.023172006, 0.00498109218, 0.0306747574, -0.0312673897, 0.00703457044, 0.00788796414, -0.0375493169, 0.00310244109, 0.00344024273, 0.00108155783, 0.00456032157, -2.69463453e-05, -0.00778721599, -0.0150766196, -0.0167478491, -0.00151714403, 0.0339698046, 0.0227334555, -0.00906138, -0.00625821948, -0.00832651369, -0.00586708076, 0.00399731891, -0.0101221958, -0.000311503449, -0.0144958375, -0.0205644146, 0.0227097496, 0.0223897286, -0.00629377738, -0.00531593058, -0.00581670692, -0.00147714128, -0.0058255964, 0.0104777766, -0.00109118805, 0.0183005501, 0.00725384522, 0.0116986036, -0.0033276421, -0.000627822068, 0.00660194736, -0.000171308377, -0.0407258347, 0.00970142521, -0.0122675318, 0.0162855927, 0.00830280781, -0.0080479756, 0.0180990547, 0.00198828848, -0.00520036696, 0.021643009, 0.021370396, -0.00543149421, 0.0138676455, -0.0203747712, 0.0068093692, -0.0075975731, 0.0164159723, -0.0055115, -0.00755016226, -0.00708790729, -0.0278775226, 0.00922731776, -0.00266092853, -0.00137046701, 0.013417243, -0.0120482575, 0.00861097779, -0.00520036696, 0.00485663908, 0.0218207985, 0.0153966416, -0.00450994773, 0.0105785243, -0.0144247217, -0.0218445044, 0.0236935243, 0.0260047968, -0.0188220683, -0.00154233107, -0.0120778894, 0.0321919024, 0.0078820372, -0.0322156064, 0.0145788062, -0.00741385622, 0.00579596451, -0.000820798625, 0.0109281782, -0.0052537038, -0.0191302393, 0.00642415695, 0.00912657, 0.0117756454, 0.011591929, 0.0087828422, 0.0253173411, -0.0123623535, 0.00172752934, 0.0257677436, 0.0172219556, -0.00282093976, -0.00536037842, 0.00603301823, -0.0296317209, 0.0253173411, 0.0245587695, 0.0325237773, 0.000464847602, 0.00995033141, 0.00928658154, -0.00316170463, 0.00401509833, -0.00658416841, -0.0141995205, 0.0160722453, 0.00723606627, -0.0187272467, 0.00317355734, 0.00318837306, 0.00323578389, 0.0154084945, -0.00343727949, 0.00820206, -0.0043943841, -0.00100970082, 0.00422844663, 0.010365176, 0.00670862151, -0.028067166, -0.0251751095, 0.00304317777, 0.032334134, -0.00343135325, -0.00281649502, -0.00799463782, 0.0411051214, -0.0150529137, -0.0181109067, 0.00946437102, 0.0217496827, 0.0155033162, 0.0147684496, -0.00871172547, 0.0149106821, -0.00435289973, -0.00292465091, -0.0172101036, 0.00449513178, 0.0270715393, -0.00559743214, -0.00260314671, 0.00602412876, -0.00705827586, -0.0146143641, 0.033069, 0.000585596892, -0.0141876675, -0.0130972201, -0.00188161421, -0.00397954, 0.00984958373, -0.00260610972, -0.0232075639, -0.00161641033, 0.0200666, 0.00755608873, -0.00598560739, 0.0105785243, -0.00477367034, -0.0170441661, 0.0154322, -0.0193435866, 0.0294894874, -1.71655629e-05, -0.0103592491, 0.0199480746, -0.00884210505, 0.0118526882, 0.0187272467, 0.0123030907, -0.00530704111, -0.0334482864, -0.00657231547, -0.014353605, 0.0137846759, -0.0288731474, -0.00957104564, -0.0166174695, -0.0140217301, 0.00299428543, 0.0080835335, -0.0265026111, 0.0102407224, -0.00892507378, 0.0134883588, 0.0282093976, 0.0164278261, -0.0215126295, -0.0298213642, 0.0135002118, -0.00506702438, 0.00826725, 0.0294183716, -0.0149936508, 0.0135476226, -0.0020905179, 0.0172693674, -0.0151832933, 0.0157640744, -0.0048862705, -0.0110822637, -0.00919768587, 0.00797685888, 0.0210148152, 0.0101755327, 0.00856356695, -0.012812756]
31 Jul, 2023
Prevent duplicated columns when joining two Pandas DataFrames 31 Jul, 2023 Column duplication usually occurs when the two data frames have columns with the same name and when the columns are not used in the JOIN statement. In this article, let us discuss the three different methods in which we can prevent duplication of columns when joining two data frames. Syntax: pandas.merge(left, right, how=’inner’, on=None, left_on=None, right_on=None) Explanation: left – Dataframe which has to be joined from left right – Dataframe which has to be joined from the right how – specifies the type of join. left, right, outer, inner, cross on – Column names to join the two dataframes. left_on – Column names to join on in the left DataFrame. right_on – Column names to join on in the right DataFrame. Normally merge When we join a dataset using pd.merge() function with type ‘inner’, the output will have prefix and suffix attached to the identical columns on two data frames, as shown in the output. Python3 # import python pandas package import pandas as pd # import the numpy package import numpy as np # Create sample dataframe data1 and data2 data1 = pd.DataFrame(np.random.randint(1000, size=(1000, 3)), columns=['EMI', 'Salary', 'Debt']) data2 = pd.DataFrame(np.random.randint(1000, size=(1000, 3)), columns=['Salary', 'Debt', 'Bonus']) # Merge the DataFrames merged = pd.merge(data1, data2, how='inner', left_index=True, right_index=True) print(merged) Output: Use the columns that have the same names in the join statement In this approach to prevent duplicated columns from joining the two data frames, the user needs simply needs to use the pd.merge() function and pass its parameters as they join it using the inner join and the column names that are to be joined on from left and right data frames in python. Example: In this example, we first create a sample dataframe data1 and data2 using the pd.DataFrame function as shown and then using the pd.merge() function to join the two data frames by inner join and explicitly mention the column names that are to be joined on from left and right data frames. Python3 # import python pandas package import pandas as pd # import the numpy package import numpy as np # Create sample dataframe data1 and data2 data1 = pd.DataFrame(np.random.randint(100, size=(1000, 3)), columns=['EMI', 'Salary', 'Debt']) data2 = pd.DataFrame(np.random.randint(100, size=(1000, 3)), columns=['Salary', 'Debt', 'Bonus']) # Merge the DataFrames merged = pd.merge(data1, data2, how='inner', left_on=['Salary', 'Debt'], right_on=['Salary', 'Debt']) print(merged) Output: Preventing duplicates by mentioning explicit suffix names for columns In this method to prevent the duplicated while joining the columns of the two different data frames, the user needs to use the pd.merge() function which is responsible to join the columns together of the data frame, and then the user needs to call the drop() function with the required condition passed as the parameter as shown below to remove all the duplicates from the final data frame. drop() function: This function is used to drop specified labels from rows or columns.. Syntax: DataFrame.drop(self, labels=None, axis=0, index=None, columns=None, level=None, inplace=False, errors=’raise’) Parameters: labels: Index or column labels to drop. axis: Whether to drop labels from the index (0 or ‘index’) or columns (1 or ‘columns’).  {0 or ‘index’, 1 or ‘columns’} index: Alternative to specifying axis (labels, axis=0 is equivalent to index=labels). columns: Alternative to specifying axis (labels, axis=1 is equivalent to columns=labels). level:  For MultiIndex, the level from which the labels will be removed. in place: If True, do operation inplace and return None. errors: If ‘ignore’, suppress error and only existing labels are dropped. Example: In this example, we are using the pd.merge() function to join the two data frames by inner join. Now, add a suffix called ‘remove’ for newly joined columns that have the same name in both data frames. Use the drop() function to remove the columns with the suffix ‘remove’. This will ensure that identical columns don’t exist in the new dataframe. Python3 # import python pandas package import pandas as pd # import the numpy package import numpy as np # Create sample dataframe data1 and data2 data1 = pd.DataFrame(np.random.randint(100, size=(1000, 3)), columns=['EMI', 'Salary', 'Debt']) data2 = pd.DataFrame(np.random.randint(100, size=(1000, 3)), columns=['Salary', 'Debt', 'Bonus']) # Merge the DataFrames df_merged = pd.merge(data1, data2, how='inner', left_index=True, right_index=True, suffixes=('', '_remove')) # remove the duplicate columns df_merged.drop([i for i in df_merged.columns if 'remove' in i], axis=1, inplace=True) print(merged) Output: Remove the duplicate columns before merging two columns In this method, the user needs to call the merge() function which will be simply joining the columns of the data frame and then further the user needs to call the difference() function to remove the identical columns from both data frames and retain the unique ones in the python language. Difference function: This function returns a set that contains the difference between two sets. Syntax: set.difference(set) Parameters: set :The set to check for differences in Example: In this example. we are using the difference function to remove the identical columns from given data frames and further store the dataframe with the unique column as a new dataframe. Now, use pd.merge() function to join the left dataframe with the unique column dataframe using ‘inner’ join. This will ensure that no columns are duplicated in the merged dataset. Python3 # import python pandas package import pandas as pd # import the numpy package import numpy as np # Create sample dataframe data1 and data2 data1 = pd.DataFrame(np.random.randint(100, size=(1000, 3)), columns=['EMI', 'Salary', 'Debt']) data2 = pd.DataFrame(np.random.randint(100, size=(1000, 3)), columns=['Salary', 'Debt', 'Bonus']) # Find the columns that aren't in the first DataFrame different_cols = data2.columns.difference(data1.columns) # Filter out the columns that are different. # You could pass in the df2[diff_cols] # directly into the merge as well. data3 = data2[different_cols] # Merge the DataFrames df_merged = pd.merge(data1, data3, left_index=True, right_index=True, how='inner') 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 !!/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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames
https://www.geeksforgeeks.org/prevent-duplicated-columns-when-joining-two-pandas-dataframes/?ref=next_article
Pandas
Prevent duplicated columns when joining two Pandas DataFrames
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, 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 !!, Best Practices For SQL Query Optimizations, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[0.00261610444, -0.0113675967, -0.0219503623, 0.0523220897, 0.00632536691, 0.0262607057, -0.0207544286, -0.0121212844, -0.0126071321, 0.0102962395, 0.00621947693, -0.0508271717, 0.0162198469, -0.0243173148, -0.00676449854, 0.0266095195, -0.0130431494, 0.0361520723, 0.0307205413, 0.00677695638, 0.0181383248, -0.0295993537, -0.00135788275, -0.00376843615, 0.0158087462, 0.0346322395, -0.00832170341, 0.00862068683, -0.0414839424, 0.0145006934, 0.0239435844, -0.00643437123, 0.0027827255, -0.0231462959, -0.0130057763, 0.0117475549, 0.0207170565, -0.00958615448, 0.000756412337, 0.0263603665, 1.96475485e-05, 0.035678681, -0.0066710664, -0.021016039, -0.0285778269, 0.0167555269, -0.0462178476, 0.0240058731, -0.0246661287, 0.0202062931, -0.00829678867, 0.00886361115, 0.02418028, -0.0195211228, -0.00874526333, 0.0297986753, -0.0301225744, 0.00328881713, -0.00588623527, 0.013491625, 0.00462489901, 0.013703404, 0.0492076799, -0.0240681618, 0.00522286585, -0.00873903465, -0.0194962081, -0.0251146033, -0.00973564573, -0.0273320638, 0.00173472636, 0.0363264792, 0.0442495383, 0.00266437791, -0.0339346118, -0.0538170077, -0.0263852831, 0.0265347734, -0.0179639179, 0.047538355, 0.0210658703, -0.0319164731, 0.000434849499, 0.0293502, 0.0344080031, 0.0050609163, -0.00136411167, -0.00876395, 0.050528191, -0.0161949322, -0.0139276423, -0.0144633204, 0.0596970133, -0.0487342887, -0.0353797, 0.0110997576, 0.00958615448, 0.000310273113, -0.0329629183, -0.00860822946, -0.0398395322, 0.039166823, 0.0104893334, 0.0225607865, 0.0287771486, 0.0111059863, 0.033585798, 0.0165312886, 0.0154225584, 0.00494879764, -0.0176773909, 0.0288020652, -0.058899723, 0.0112928506, -0.0120776827, -0.00902556069, 0.018674003, 0.00248997076, 0.0363264792, -0.0225483291, 0.0300976597, 0.0535678528, 0.00658386294, 0.052122768, -0.0180760361, 0.0182006117, 0.0155097619, 0.010152977, 0.0477625914, 0.0396402106, 0.0166558661, -0.055311922, -0.0203807, 0.0528702252, -0.00829678867, -0.01420171, 0.0270330794, 0.0101280613, -0.0130182346, 0.0168178137, -0.0200692583, -0.0235698558, -0.0148619646, -0.00355665642, -0.00542218797, -0.00730017712, -0.0285778269, 0.0456198789, -0.0145754395, -0.0338100344, -0.0290013868, -0.0414590277, 0.0203184113, 0.0720051602, 0.0442246236, -0.00272822333, 0.00380269461, -0.0130929798, 0.0167056955, -0.00757424533, -0.00125666452, -0.0230217185, 0.013952557, 0.0169299338, 0.00493634, -0.00502042891, 0.0258869771, -0.0297986753, -0.0388678387, 0.033087492, -0.046043437, -0.0396402106, -0.016082814, 0.0264351126, -0.0100969179, -0.0256378241, -0.00134776102, -0.0417330936, -0.00453769555, 0.00378089375, -0.00588312047, -0.0440003872, 0.0108568333, 0.0196083263, 0.0370241068, 0.0296990145, -0.0181632396, 0.00812238175, 0.0122583183, -0.00801649131, 0.000197570393, -0.0182753578, 0.049631238, 0.0375971571, -0.00304122153, -0.00619144738, -0.0266095195, -0.0240307879, 0.0246162973, 0.0397897027, 0.013030692, -0.0473141186, -0.0177396797, 0.0277805384, 0.0354046151, 0.00842759386, 0.0111931898, -0.0135165397, 0.0118534444, -0.0150862029, -0.0342335962, 0.0286774877, 0.0124451825, -0.0171167981, 1.56207134e-05, 0.00921242498, -0.00396464393, 0.0336854607, -0.0178393405, 0.000721764518, -0.0294996928, -0.0285030808, -0.00209911237, 0.00515746325, -0.0148619646, 0.000900064537, -0.034682069, 0.0221496839, -0.0263354518, -0.0212278198, 0.0126133608, -0.00405184738, -0.0323649496, -0.0130057763, 0.00573362876, -0.0143761169, -0.0204056147, 0.00667729508, 0.00558102271, -0.00911276415, 0.0436266549, -0.0138404388, -0.013915184, 0.00199166522, 0.00408610608, 0.0267839264, -0.00146221556, 0.0216887519, 0.0299232528, 0.0384193622, 0.0235823132, -0.0175777301, -0.0417330936, 0.00784208439, -0.0232584141, 0.00314399693, -0.0280546062, 0.0160952713, -0.0240557045, -0.0310942698, 0.0146377273, 0.0217884127, 0.00305835065, 0.00443803426, 0.0333864763, -0.0160703566, 0.0050142, -0.0159831531, 0.0442993678, 0.0374725834, 0.00184528797, -0.0105329351, -0.0134168789, -0.0279798601, -0.0128438268, 0.0209911242, 0.0294747762, -0.0154723898, 0.0310693551, 0.0195834115, 0.021589091, 0.0174905267, -0.00184217351, 0.00751818577, 0.00950518, -0.0194090046, -0.0262108762, -0.000968581531, -0.0084649669, -0.0137656927, -0.00251332903, -0.00588000612, 0.0332619, 0.00438820384, 0.0089508146, 0.0174406972, -0.0115544619, -0.0119219618, -0.0522722602, 0.017253831, -0.0244169757, -0.0227601081, 0.0135539128, -0.0166558661, -0.00145832251, -0.0152232368, 0.0435269959, -0.00381826679, -0.00264257705, 0.00556856534, 0.00431968691, -0.0149367107, -0.0299979988, -0.00835284777, -0.062487524, 0.022722736, 0.0298235919, -0.0115980636, -0.00999102741, -0.00311752455, -0.000598745362, -0.0121835722, -0.0369742773, -5.19717178e-05, 0.0413344502, -0.0193716306, -0.0429041125, 0.0220500231, 0.0159582365, -0.0370490216, -0.0447478443, -0.027905114, -0.0157090854, 0.00140148459, -0.0300727431, 0.00891344156, 0.0277556218, -0.00147389458, -0.00564954, -0.0161326434, -0.0173659511, -0.0222493466, 0.0238439236, -0.00532875583, 0.00978547614, -0.00298983371, 0.0110873, 0.00386809744, 0.0290263016, -0.029649185, 0.00104955619, -0.0198948514, -0.030496303, 0.0379459709, 0.00306302239, 0.0158212036, -0.0349312238, -0.0394907184, -0.0210783277, 0.0140148457, -0.0192968845, -0.0333864763, 0.0101965787, -0.00313621107, -0.032589186, 0.00439443253, -0.00688284636, -0.0201813765, 0.01209014, -0.0292754546, -0.0415337719, -0.0187238343, 0.0133919632, -0.00625373563, -0.0180137474, 0.0329629183, 0.0718556717, 0.0339346118, -0.000947559252, -0.0178642571, -0.0445734374, -0.00322341453, -0.0130929798, 0.00174562691, -0.00789814442, -0.0240806192, 0.00124809984, 0.0471646264, -0.00233425037, 0.013915184, -0.0226729047, 0.00307703717, 0.0271825716, -0.0104644177, 0.0304464735, 0.00891967, -0.0117288688, 0.000615096, 0.0241304487, 0.0251395181, -0.00887606852, -0.000638454047, 0.00279829744, 0.00895704329, 0.0278054532, -0.0016412941, -0.0193716306, 0.027655961, -0.0101654343, 0.0429539457, 0.0129310302, 0.028652573, -0.0327885076, 0.0106761977, 0.01800129, 0.01658112, 0.00795420352, 0.0503039509, -0.0364759713, 0.00123797799, 0.0432030968, -0.0257374849, 0.0359776653, 0.000921086757, 0.00212869933, -0.0486346297, 0.0072254315, 0.0372483432, -0.0111059863, 0.0295993537, 0.0119032757, 0.00557167968, 0.00601392612, -0.00313621107, -0.00466850074, -0.0313434228, 0.0259866379, -0.0101654343, 0.0117911566, -0.0410354659, 0.0199446827, -0.0119904792, 0.0101467483, -0.0217012092, -0.0169548485, -0.0595475212, -0.0298235919, -0.0140148457, 0.00816598348, 0.0163817964, -0.0252391789, 0.00345699512, -0.0494319163, -0.0251395181, 0.0179514606, -0.00321718561, -0.035579022, -0.0136037432, 0.044947166, 0.0117413262, 0.00127846538, 0.00128858723, 0.0150737446, -0.00410790695, 0.015833661, 0.0047214455, -0.0218880735, 0.0204056147, -0.0231213812, -0.0066959816, -0.0113364523, -0.00678941421, 0.00298671937, -0.0219254475, 0.00579903182, 0.0331871547, 0.00634405343, -0.00809746608, 0.00265659182, 0.00806009304, 0.0769882202, 0.0330127478, 0.0126881069, -0.0354295298, -0.0125386147, 0.0494319163, 0.0505780205, 0.0188982412, -0.0342834257, -0.0271576568, 0.043352589, 0.00351305469, 2.69591128e-05, -0.0225234143, -0.0121648861, 0.00852725469, -0.0266842656, 0.0217136666, 0.0310444403, 0.00547201838, 0.052222427, 0.00214115693, -0.0480864905, 0.0447229296, 0.0316922367, -0.0315925777, -0.027655961, 0.00727526192, -0.0193218011, -0.0192719698, 0.0110810716, 0.0387930907, -0.00687661767, 0.0292007085, 0.0176773909, -0.0193218011, -0.000176937421, 0.0466414057, -0.0267340969, -0.0105640786, 0.0172787476, 0.0123579791, 0.0131178955, 0.00967335794, 0.0147996768, 0.0155222202, 0.00136021862, -0.0126507338, 0.00650288817, -0.0190352742, -0.0102837821, 0.0140023874, -0.0158461183, -0.0139774727, 0.00689530373, -0.0621885397, 0.00854594167, 0.00678318506, 0.00743098231, 0.00237162318, -0.0247533321, 0.0204056147, -0.00365631748, 0.0133919632, 0.0308202021, 0.00904424675, 0.0168053564, -0.0174282398, 0.0119281905, 0.0131428102, 0.0205052756, 0.026310537, -0.014488236, -0.0105827656, -0.0172289163, -0.043850895, 0.00240743905, 0.00606375653, 0.0266593508, -0.00966090057, -0.0124763269, -0.0114485715, 0.021339938, 0.022722736, -0.0115357749, -0.00570871355, 0.0207046, 0.0204554461, -0.0530695468, 0.015908407, -0.000135282186, -0.013491625, -0.00110327976, -0.0268088412, -0.0225981604, -0.0148993377, -0.00849611, 0.0113302236, 0.0104270447, 0.0389674976, -0.0181134082, 0.0212029032, -0.000386576139, 0.00265347748, 0.0364510566, 0.000361466227, -0.00277961092, -0.0286276583, -0.0207793433, 0.0255879927, -0.0208665468, 0.0290512182, 0.0308451168, -0.0366005488, 0.0125759877, 0.0300727431, -0.00209288369, -0.00309105194, 0.0143761169, -0.00480242027, -0.0217385832, 0.00535989972, 0.0354793593, -0.011573148, 0.0050142, -0.0211779885, -0.0349810533, -0.0184123926, 0.0207046, -0.0505780205, -0.0283037592, 0.0078109405, 0.0253762137, -0.0293003693, 0.0254509598, 0.00704479543, 0.00824073, -0.00118269725, -0.0208540894, 0.0299481675, 0.0120963687, 0.0171915442, 0.0266344342, 0.00338847819, 0.0103523, 0.00266126334, -0.00278116832, 0.0255381633, -0.000252461876, 0.00308638043, 0.000280296896, -0.0140273031, 0.00691399025, 0.00511074718, 0.0399391949, -0.00855217, -0.00812861, 0.014450863, 0.0243671443, -0.0184746813, 0.0143138291, 0.0317669846, 0.028901726, 0.0777356774, -0.0120029366, 0.00369991921, -0.0282788444, -0.00759293186, 0.0206921399, 0.00893212855, -0.0430785194, -0.0247657895, 0.00170513953, -0.000433681591, -0.000298594066, -0.041259706, -0.0223490074, 0.0064406, -0.0151360333, 0.0303468127, 0.00574920094, -0.0264101978, 0.00263011921, 0.0192595124, 0.0313434228, -0.00629422301, 0.0134417936, 0.00892589893, 0.0289764721, -0.00148479501, 0.0178268831, -0.0340342745, -0.00290418742, 0.00937437452, -0.00693267677, -0.0131054381, -0.00301786349, 0.00674581248, 0.0228846855, -0.0432778411, -0.0344827473, -0.0207793433, -0.000156985727, 0.0069762785, -0.0504036136, -0.00663369335, 0.00495814066, -0.0339844413, -0.03024715, -0.0120340809, -0.00875149202, -0.0106201386, 0.0212776493, 0.00585820526, 0.0155720506, -0.0213897694, 0.000842447917, 0.0122520896, -0.0132923024, -0.00806009304, 0.0370988548, -0.00730640627, 0.0258371457, -0.0110561559, -0.0364261419, 0.0116541227, -0.0292256251, 0.0148619646, 0.0310444403, 0.0147498464, 0.0106450533, 0.00368123269, -0.00127145788, -0.0189480707, 0.0118472157, 0.056208875, 0.00351616903, 0.00133452471, 0.00103554141, -0.0234826524, -0.0123268347, 0.0261112135, 0.0551126, -0.0379459709, -0.0213897694, 0.00215672888, 0.00677695638, -0.0059858961, -0.00412659347, -0.00991628133, 0.00984776486, -0.0179016292, 0.00119204051, -0.00236695167, -0.00764899142, -0.0147373881, 0.00953632407, -0.00371549116, 0.0125199286, -0.0139650153, 0.00355977076, -0.0118098427, -0.0186366308, -0.00560593838, 0.0240307879, 0.0359029211, 0.0210035816, 0.0147249307, -0.0166807808, -0.00364697422, -0.000174698944, 0.0123579791, 0.0639326125, 0.00447229296, 0.000371782691, -0.00969827268, -0.0154973045, -0.019421462, 0.0189480707, 0.0292256251, -0.00029684222, -0.00230933516, -0.0135912858, -0.0349312238, 0.00824695826, 0.00367188943, -0.0283037592, 0.0122894626, 0.0066710664, -0.0107447151, 0.0223614648, -0.0102837821, 0.0500049703, -0.0367251225, -0.0171043407, 0.0124140382, 0.00875149202, -0.0292754546, -0.0034725673, -0.0140646761, -0.0130182346, -0.0136909466, -0.0109502655, -0.0327137634, 0.0301724058, 0.00557479402, 0.00101685489, -0.00951763708, 0.00274223811, 0.0130805224, 0.00141705654, 0.0260862987, -0.000231439597, 0.00667729508, 0.0168178137, -0.0199695975, -0.0148495072, -0.0389425829, -0.0434771664, -0.0348315611, -0.0133172171, -0.0300229136, 0.00817844085, -0.00621636258, -0.0259866379, -0.0481114089, 0.0163195096, -0.0226853639, -0.0101592056, 0.0358780026, 0.00309883803, -0.0047557042, -0.00886984, 0.00911899284, 0.0250398573, 0.0165562034, -0.0159457792, 0.0109564951, -0.0103211552, -0.00510140369, 0.00508583151, -0.0285529122, 0.0193591733, -0.009692044, -0.0325144418, -0.0378961414, -0.0265098587, 0.00817844085, 0.0604943, 0.00584574789, 0.025102146, -0.00124031387, -0.0192844272, 0.0432529263, -0.0105640786, 0.0101778926, 0.000872813456, -0.00987268, -0.00773619488, -0.0066710664, 0.0192719698, 0.00763653358, -0.0230092611, -0.0201564617, 0.0376469903, 0.04444886, -0.0211655311, 0.0177023076, 0.0212153625, 0.0352800377, 0.0275812149, -0.000789892278, -0.0264351126, -0.00142328546, -0.0133545902, 0.0135165397, 0.00890098419, -0.013030692, 0.00642814254, 0.00132128852, 0.064979054, 0.0236944314, -0.0107011134, -0.00948026404, 0.0130057763, 0.0148495072, -0.0127939964, -0.0145380665, 0.0230466351, -0.0134044206, 0.00179078581, 0.0284781661, 0.00885738246, 0.0288768113, 0.0151111176, -0.0519234464, 0.00244169752, -0.031468, -0.0063907695, -0.031243762, 0.00354108424, 0.0279798601, -0.0133670485, -0.00557167968, 0.00922488235, 2.77681283e-06, 0.0136162005, -0.0231338385, 0.00203682412, -0.0149989994, 0.0125822164, -0.0126631912, -0.0111994185, -0.0125386147, -0.0119717922, 0.00174251245, 0.014488236, -0.0232708715, 0.0276310463, -0.0204305295, 0.00129092298, -0.00386809744, -0.0252516363, -0.00650911732, -0.00290263025, -0.0274317246, 0.0234826524, -0.00634716777, -0.0204928182, 0.0193093419, -0.00777356746, 0.00989136659, -0.00640945602, 0.0250398573, 0.0489336103, 0.0221247692, -0.0252391789, 0.0178144258, 0.00628487952, -0.00148635218, -0.00706348196, 0.0112118768, -0.0236695167, 0.0292505398, -0.0293751154, -0.0020975552, -0.0160579, 0.00684547331, -0.0236446019, 0.0358780026, 0.00498617068, 0.0197329018, -0.00480242027, -0.00140148459, 0.0134791667, -0.00378089375, -0.0353547819, 0.0415337719, -0.00694513461, -0.00569937052, -0.0018888897, 0.0664241388, -0.012339293, 0.0249651112, 0.0160329826, -0.0312935933, -0.000816754065, 0.00167866703, -0.0145380665, 0.0204429887, -0.000649354479, -0.0072254315, 0.0130431494, -0.0148245925, -0.00388366939, -0.0355291888, -0.0154723898, -0.0352800377, 0.00738738058, 0.0140273031, -0.00135710416, -0.0294747762, 0.00840890687, -0.00126289332, -0.0295495223, 0.00817221217, 0.0363015644, -0.00144742208, -0.00103709858, -0.00123797799, 0.00437263167, -0.00886361115, 0.00524155237, -0.0465915762, -0.00496437, -0.000429399282, 0.00859577209, -0.0146875577, -0.0190228168, 0.00340093579, 0.0320659652, 0.0134417936, 0.000690620451, -0.0136411162, 0.0287522338, 0.000958459685, -0.0103273839, -0.0193965454, 0.000313776807, 0.00734377885, -0.0251768921, 0.020766886, 0.00172694039, -0.0283785053, -0.0225981604, -0.0243671443, 0.0270579942, 0.00143807882, -0.0083964495, 0.0191847663, -0.00375597854, 0.0153104402, -0.000607699272, 0.0299232528, -0.0285529122, 0.00448786514, 0.00330750342, 0.016469, 0.0028278844, -0.0133670485, -0.0107135708, -0.015372728, -0.0264351126, -0.00531629799, 0.0209537502, 3.49397887e-05, -0.0154848471, -0.0192470551, 0.0370739363, -0.0267091803, 0.0327386782, -0.000118444907, -0.00959861185, 0.00617898954, 0.0268337578, 0.0155346775, -0.00880755205, -0.00190446177, -0.0101156039, -0.00444737775, -0.0392913967, -0.00184840243, 0.00890721288, -0.00758047402, 0.0322403722, 0.00819712691, -0.0123143774, -0.0269832499, 0.0233705342, 0.001153889, -0.00365320314, -0.00943043362, 0.0113177663, 0.0100657735, 0.0105204768, -0.0179016292, 0.00524155237, -0.0110312402, 0.0223240908, -0.00512320455, 0.00535055669, 0.00953009445, 0.00507337414, 0.0250398573, -0.00716314325, -0.00787945744, -0.0166309495, 0.0173036624, -0.00370614813, 0.0249028224, -0.0283037592, -0.00844628, 0.028901726, 0.00374663528, -0.0069762785, 0.015584508, -0.00739360973, 0.0274815541, 0.0130556067, 0.010900435, 7.76656e-05, -0.0141518796, -0.0167306103, 0.0109627238, -0.00403316086, -0.00916882325, 0.0267091803, -0.0131054381, -0.0137532353, -0.0304464735, 0.020343326, -0.00361894444, 0.0571058244, 0.00183438754, -0.00874526333, -0.026310537, 0.0281791817, -0.0116229784, -0.00711954152, -0.00510140369, 0.00224704691, 0.00455638207, -0.00789191481, 0.0169174764, 0.0099972561, 0.0061416165, 0.00826564431, 0.0725034699, -0.0117226392, 0.00824695826, 0.00295246067, 0.0440253019, -0.00921865366, -0.00394907221, 0.0326888487, -0.0120963687, -0.0122520896, 0.0218008701, 0.00546267536, 0.0179763753, 0.0150363715, -0.0151734063, -0.0141020492, -0.020879006, 0.00863937382, 0.00173784082, -0.0219628196, -0.0172413737, 0.00329504581, -0.00290885894, 0.00142094959, 0.0242799409, 0.0239560418, 0.0114423428, -0.00847742427, 0.00118581159, 0.0219254475, -0.0130929798, -0.00356599945, 0.0202062931, 0.0182255283, -0.0179390013, 0.0358032584, -0.0233456176, -0.00554365, -0.0323649496, 0.00975433271, -0.0109378081, -0.037671905, -0.00616030302, 0.023719348, -0.00799780525, 0.0417081788, -0.023681974, -0.00446294947, 0.0123330643, -0.00406741956, -0.00898195896, -0.0412098728, -0.00791060179, -0.0141020492, -0.00301942066, -0.00297270436, 0.00698873634, -0.00857085641, -0.0149865411, -0.0183874778, 0.00240276731, -0.0246536694, 0.00018092776, -0.012320606, 0.0243671443, 0.00459375512, 0.0184622239, 0.00436640298, 0.018923156, 0.0122271739, -0.00801649131, -0.00540350145, 0.020094173, 0.00943043362, -0.00835284777, 0.012818912, -0.00930585712, -0.031243762, -0.00548136188, -0.0198699366, -0.0057149427, 0.0252142642, 0.00693267677, -0.0166309495, 0.00101140467, -0.0211904459, -0.00501108589, -0.0245166365, -0.00666483771, -0.0216140058, 0.00130493788, 0.00311285281, -0.016331967, 0.00352551229, 0.015410101, -0.0338598676, 0.0207419712, 0.0116354357, 0.00835284777, 0.00471833115, 0.0149865411, 0.0103585282, -0.0116416654, 0.039166823, -0.0289515555, 0.00127457234, 0.0228971429, 0.0182629, -0.0294996928, 0.00765522, 0.0120403096, 0.00410167826, 0.000666094478, 0.00207886868, 0.00917505194, -0.0271078255, -0.0123517504, -0.00948026404, -0.00328258821, -0.013242472, -0.037671905, 0.00535367103, 0.0117413262, -0.00300073414, 0.0126694199, -0.000678552082, 0.00775488093, 0.0272324011, -0.0228597708, -0.00239653862, 0.00668352423, -0.000921865401, -0.0127067929, -0.00670221029, -0.00102619815, -0.0305710491, -0.0105578499, -0.00724411802, -0.0273569785, 0.00387744047, -0.0141394222, -0.000291197357, -0.0129684033, -0.0119531062, 0.00197765045, 0.0170918833, 0.0171666276, 0.0142889135, -0.00807255134, -0.0136909466, -0.00615096, 0.00490519591, 0.031243762, 0.022012651, 0.0014528723, 0.0128438268, -0.022473583, 0.00366566074, 0.0268835872, -0.00760538923, -0.00358468597, 0.0185618848, 0.0179514606, 0.00932454411, -0.0268337578, 0.0181134082, -0.0323649496, -0.00391481351, -0.0216015484, -0.00902556069, -0.00383383874, -0.00576788746, 7.31764703e-06, -0.0234577376, 0.025563078, -0.00405496173, 0.00974810403, 0.00757424533, 0.00169735355, 0.012339293, -0.0104332734, -0.00398955913, -0.0205551069, 0.0427546203, -0.0130929798, 0.00583951874, 0.0283037592, 0.00778602529, 0.0176524762, -0.00744966883, -0.00271109398, -0.00815352518, 0.0086456025, 0.0557604, -0.000638064754, 0.010863062, 0.0166434068, -0.0159831531, -0.00827810168, 0.0286027417, -0.0097605614, 0.0113862837, 0.0112056471, 0.00173939799, 0.00493011111, -0.0225607865, -0.00195740676, -0.0289266407, 0.0108070029, -0.0234826524, -0.0143387439, -0.0106014516, -0.00523532322, -0.0250024851, 0.0289515555, -0.00235605123, -0.00560905272, 0.0192844272, -0.0108381473, -0.00394907221, 0.0228846855, 0.0104893334, 0.0316922367, -0.011149588, 0.00364697422, -0.0172164589, 0.00120294094, 0.00268773595, 0.0273320638, -0.00389301265, 0.0168925598, 0.0137781501, 0.0237940922, -0.0151111176, 0.0190103594, 0.0159582365, 0.02655969, -0.00677695638, 0.00108459336, 0.000522442278, -0.0463175066, -0.0072254315, -0.0258869771, 0.0111745037, -0.0381203778, -2.1350741e-05, 0.00597655308, -0.0287771486, -0.000326039793, 0.0371486843, -0.0210284963, -0.00213648542, -0.015410101, -0.0112492489, -0.0139650153, 0.0163942538, -0.00459375512, 0.0198948514, 0.00182348711, -0.0164814591, -0.0295993537, 0.00259897532, 0.0283785053, -0.00954878144, -0.0242301114, 0.0103211552, -0.0234079063, -0.0175777301, 0.00816598348, 0.00686416, -0.00178611418, 0.00848365296, -0.00804140698, -0.00975433271, 0.00440377602, -0.0085895434, -0.0262607057, -0.00793551654, 0.00535055669, -0.00977924746, -0.0398146175, 0.0140273031, 0.0171541702, 0.0225607865, 0.00754310144, -0.00921242498, 0.00851479732, 0.0196083263, 0.0189356133, -0.0135289971, 0.00177209929, 0.00312531064, 0.00855839904, -0.00926225539, -0.0140273031, 0.00967958663, -0.0199446827, -0.00196207827, -0.0215766337, -0.00842136517, 0.0140148457, -0.00556856534, -0.00787322875, 0.00474013202, 0.0208291747, 0.00879509374, 0.0119344192, 0.0126818782, 0.0156094236, -0.0152606098, 0.00805386435, -0.0257624, 0.00247751316, 0.0228971429, 0.00113520247, 0.00370926247, 0.0143262865, 0.0146003542, 0.0242425688, 0.0127690816, -0.0126071321, -0.00324832974, -0.00465915771, 0.00573985791, 0.0132923024, -0.0110374689, -0.0148121342, 0.0182629, -0.00131272385, -0.00242924, 0.0173908658, 0.00642191339, -0.0209039208, 0.0199073087, 0.00984153617, 0.0227601081, -0.0233705342, 0.0340342745, 0.012588446, -0.000365943182, -0.0292256251, 0.0227601081, -0.00818467, -0.007686364, 0.0335110538, -0.00274068094, 0.0143885743, 0.0339595266, -0.00889475551, 0.00365008856, 0.0244418904, -0.00283878483, -0.0282290131, 0.0118534444, 0.00492388243, 0.00474013202, 0.00933077279, 0.0326888487, 0.00127535092, 0.0107634012, 0.0298983362, 0.022722736, 0.0133795058, -0.0156343393, 0.00613538781, -0.00401447481, -0.010383443, 0.012781539, 0.000868920411, -0.0211904459, 0.00413905084, -0.0179514606, 0.00870789, 0.0331871547, -0.00654026121, -0.00754310144, -0.0136660319, -0.0151983211, -0.0121524278, -0.0326390192, -0.00706348196, -0.014239083, -0.00853348337, -0.0214645136, -0.0140397605, 0.0168551877, -0.0179016292, -0.00328258821, 0.0143885743, -0.0126569625, 0.0234203637, -0.016543746, 0.0246536694, 0.00660877815, 0.00173316919, 0.0176275615, -0.0432030968, 0.0250024851, -0.015621881, -0.00209911237, 0.0251519755, -0.0284532513, -0.00701365154, 0.00555922184, 0.00602949783, -0.0144010326, -0.00418888172, -0.0117226392, 0.0261361301, -0.0182379857, 0.00978547614, -0.00547824753, -0.0414092, -0.0129310302, 0.00172538322, -0.00277805375, 0.00972941704, 0.0201689191, 0.00461244117, -0.00859577209, 0.0253886711, 0.00896327198, 0.00646551512, 0.0173908658, -0.00918751, -0.0109253507, 0.00494879764, 0.000928872789, 0.015410101, -0.0246785861, 0.00310506695, 0.00327947387, -0.0253886711, 0.0107571725, 0.0182753578, 0.0370739363, -0.00784208439, 0.0137283197, 0.0181881543, -0.0025927464, 0.0104519604, -0.0032203, -0.00748704188, 0.00606064219, -0.00683301594, -0.0123268347, 0.00635962561, -0.00675204117, -0.0190228168, -0.015160948, 0.0011663466, 0.0116541227, -0.0109689524, 0.0131677259, 0.0117039531, 0.0100346291, 0.0254011285, -0.0114610288, -0.0127939964, -0.0148619646, -0.00463424204, 0.00303187827, -0.0202062931, -0.00576165877, -0.00014949168, -0.010383443, -0.00946780667, 0.000563318899, 0.00782962702, -0.0107073421, -0.0110561559, -0.0283785053, -0.0300976597, 0.000315139361, -0.0172662903, -0.00565888314, 0.000642347091, -0.0105453925, 0.00291041634, -0.0141394222, 0.00362517335, 0.0204180721, 0.00339470711, 0.014239083, 0.00412659347, 0.0405371636, 0.0237691775, 0.0127005642, 0.0140895909, 0.0389674976, 0.00751818577, 0.00212714216, -0.00594540872, 0.0155595932, -0.00503288675, -0.00394907221, 0.00584886223, -0.0209537502, -0.0152979828, -0.00845873822, 0.0141394222, -0.000628721551, 0.0178144258, 0.00758047402, 0.00392727135, 0.0160952713, 0.0230466351, 0.0295246076, -0.000432903, -0.00754933, 0.0060201548, -0.0135788284, -0.0213274807, 0.00555299316, 0.00926848408, -0.00691399025, -0.00637519732, -0.00377777941, -0.0110623846, -0.00997234136, 0.0166683234, 0.0250274, 0.0118970461, 0.00499551371, 0.0343581736, -0.0010425488, -0.00675204117, 0.00766767748, 0.0151983211, -0.0267091803, -0.0151111176, 0.014911796, 0.00153774, 0.008770179, -0.0121648861, 0.00171136833, 0.00250554294, -0.0162323061, -0.00677695638, -0.00493011111, -0.0140023874, 0.0249152798, 0.00647797296, 0.0089508146, 0.0017129255, -0.00356599945, -0.00563085359, 0.00745589798, 0.0270081647, -0.00837153476, -0.00809746608, -0.0107945455, -0.00570871355, -0.0108007742, 0.00497371284, -0.0112305628, -0.0145380665, 0.00374974986, -0.0317669846, -0.0130057763, 0.0149865411, -0.00573674357, 0.0161700174, 0.0139276423, 0.0103024682, -0.0162198469, 0.00876395, 0.0167056955, 0.0138778109, -0.0172413737, 0.00141549937, 0.028154267, -0.0103149265, 0.00650911732, -0.00220500235, -0.00255070184, 0.00612293044, 0.0111994185, -0.00541595928, -0.0240930766, 0.0273818932, -0.0101218326, -0.00702610938, 0.00704479543, -0.0143013708, 0.0150862029, 0.00197920762, -0.00436017429, 0.00361583, -0.00799157657, 0.00965467095, -0.00284812809, 0.0102339517, 0.00393038569, 0.00339470711, 0.00300852023, -0.0188608672, 0.00597343873, 0.00649665948, -0.0148370499, 0.0171790868, -0.00554676447, 0.0113800541, 0.00941797625, -0.000209638732, -0.0281293523, 0.0088262381, 0.0213773102, -0.0178144258, -0.0116728088, -0.00450655119, -0.0140148457, 0.00184528797, -0.000238252367, -0.0120340809, 0.0261112135, -0.00194339186, -0.0103149265, -0.000143846817, -0.0111433594, 0.00584886223, -0.000981039135, -0.000303460343, -0.00881378073, 0.0192719698, 0.0236446019, -0.00566199748, 0.00339159253, 0.002605204, -0.0356039368, -0.00701988, -0.00745589798, -0.00204616738, 0.0133296754, -0.000395724725, 0.000963909901, -0.0152855245, 0.00550316274, 0.00416085171, 0.00548136188, -0.0240183305, -0.00283411308, 0.00675827, 0.000172655113, -0.00465292856, -0.00223926082, -0.00447229296, 0.00888852682, -0.00414528, -0.0318666436, 0.00754933, 0.0178393405, -0.00983530749, 0.00395841524, 0.000433681591, -0.0183874778, 0.0107820882, 0.0145006934, -0.0012052767, -0.000174698944, -0.00694513461, -0.0194962081, 0.0163942538, 0.0192096811, -0.0127005642, -0.0144010326, 0.0239062123, 0.00662123598, -0.00715068541, 0.00105812086, -0.0058052605, -0.00142484263, -0.00792305917, 0.00469964463, -0.00934323, 0.0100906882, 0.0208167173, 0.00690776156, 0.00766144879, 0.00910030585, 0.00484913634, 0.00953632407, 9.58654346e-05, 0.025102146, -0.00174406962, -0.00489273807, 0.0105640786, 0.00705102459, -0.00503911544, 0.00127145788, -0.00775488093, -0.00111885183, -0.00936191715, -0.00431968691, -0.00868920423, -0.0206049364, -0.00396464393, 0.0199073087, 0.013030692, -0.0103149265, 0.00853971206, 0.00391792785, -0.0251519755, 0.024429433, 0.00939928927, -0.015659254, 0.00615096, -0.00412347913, -0.0132923024, 0.0304713883, 0.00713822804, -0.021265192, 0.00862068683, -0.0245415512, 0.0182255283, -0.0246536694, 0.00409544911, 0.0162323061, 0.00170981116, 0.000172265805, 0.00205083913, -0.00031046776, 0.0127067929, -0.00400513131, -0.0188110378, 0.00105889945, -0.017291205, -0.0262856204, 0.0146377273, -0.0228099395, -0.0294747762, 0.00964844227, -0.0132175563, 0.00197453611, -8.85052123e-06, -0.00221590279, 0.000389495923, 0.00598901045, 0.0162073895, 0.00585820526, 0.0134293362, -0.00471210247, 0.00532252667, 0.0103959013, 0.0197079871, 0.00885115378, 0.0179763753, -0.0103211552, 0.00816598348, 0.0100782309, -0.0116416654, 0.0124202678, -0.011074842, -0.0188110378, 0.0107073421, 0.00105889945, -0.00199633697, 0.0063907695, 0.0098166205, 0.0268835872, -0.0262108762, 0.011398741, 0.00269707921, -0.00550316274, 0.0235200245, 0.00339159253, 0.014164337, 0.00771127921, -0.0010752501, -0.000938994635, 0.00593606569, -0.0149242533, 0.00637831166, 0.0126195895, -0.00730640627, -0.00303343544, 0.00237940927, -0.0145006934, 0.00932454411, 0.0156966262, 0.00851479732, -0.0218756162, -0.0103273839, 0.0119406478, -0.0110810716, 0.0100533161, 0.0111745037, -0.00841513649, 0.000790281571, -0.0216264632, -0.0245415512, 0.0482608974, 0.000851012534, -0.0149491681, 0.0086456025, 0.010152977, 0.00195896393, -0.00266126334, -0.00806009304, -0.000188227161, -0.0121461991, -0.00863314513, -0.00581148919, -0.0039210422, 0.0211157, -0.0186490882, -0.0149740838, 0.00578034529, 0.00153228978, 0.00359714357, 0.0208167173, 0.01842485, -0.0171915442, -0.00625996431, -0.00492699677, 0.00145520817, -0.00305056479, -0.016543746, -0.00165998063, 0.000215478241, -0.00981039181, -0.017789511, 0.00385252526, 0.00916259456, 0.00792928785, -0.0273071472, 0.00086113438, 0.0337851197, 0.000699963653, -0.0105267065, -0.0146003542, -0.0222119726, -0.0279300306, -0.0223614648, -0.00476816203, 0.00496437, 0.0057710018, 0.0095799258, 0.0207918026, -0.0059609809, -0.00894458592, -0.0046903016, -0.010171663, -0.0160703566, -0.00407364825, -0.0017066967, 0.00110094401, -0.0226729047, 0.00012954, 0.00271265116, 0.00805386435, -0.0051605776, -0.00954255275, -0.00840890687, -0.00904424675, -0.00156966271, -0.0186117142, 0.0142141674, -0.0117662409, -0.0146377273, -0.00961729791, -0.0239560418, -0.00443803426, -0.0201813765, -0.0130929798, 0.0117413262, -0.0336356275, 0.00917505194, -0.00560593838, -0.00611670129, 0.0170171373, -0.00131739548, 0.0357285142, 0.010651283, -0.000515434891, 0.00195896393, -0.00716937194, -0.00262389053, -0.0241553653, -0.0168801025, 0.00921242498, -0.0209537502, 0.00124498538, -0.0128687425, -0.000713978487, 0.0104145873, -0.00533187, 0.0192221384, -0.0270081647, -0.00626930734, -0.00549381925, 0.0317919, 0.00162105041, -0.00132518145, 0.0112866219, -0.00581460353, 0.00494256895, 0.0225234143, -0.0191598516, -0.0152356941, 0.00991628133, -0.00485536549, 0.0202934965, 0.000854127, -0.00804140698, 0.0241179913, -0.00789814442, 0.0114859445, 0.00207731151, 0.00477439072, -0.00903178938, 0.033087492, -0.00558413751, -0.021975277, -0.00163195084, 0.00483356463, -0.0064406, 0.00865806, 0.000544632494, -0.0118160723, 0.000443803438, -0.0107011134, -0.0120839113, 0.0104519604, 0.00568691269, 0.0102650961, 0.0096359849, -0.00569937052, 0.00362205901, 0.00904424675, 0.00433837343, 0.0181632396, 0.0268835872, 0.00306146522, 0.00238875253, 0.0010036187, 0.0142266257, 0.0108007742, 0.0143636595, -0.0370241068, -0.0311441012, -0.0112243341, 0.000399033801, 0.0310942698, -0.00491765374, -0.00984776486, 0.00533187, 0.00301319174, 0.00070852827, -0.00631290907, -0.00553119229, 0.00678941421, 0.0173784085, 0.00176119886, 0.00197142153, -0.036176987, 0.0402132645, 0.000744733319, -0.00383695331, 0.00561528141, 0.0167555269, 0.0121025974, 0.0174531545, 0.0218631588, -0.0082843313, -0.00016204665, 0.0267091803, -0.0232708715, -0.00516369194, 0.0138778109, -0.0283286739, -0.00170202507, -0.0118845887, -0.00441623339, -0.00195740676, -0.0245166365, -0.0150986603, 0.00314866868, -0.00418576738, -0.00511074718, 0.00597966742, 0.0124015808, 0.00410167826, -0.0131178955, 0.0184622239, 0.015123575, 0.0291010477, -0.000222096365, -0.00865183119, -0.0173410345, -0.00829056, -0.0135663701, 0.0306707099, -0.00544710318, -0.0304464735, 0.00372483442, 0.00366566074, -0.00230933516, 0.0173161197, 0.0153104402, -0.00283878483, 0.019633241, 0.00550316274, 0.0238439236, 0.00616030302, -0.00916259456, -0.0269583333, 0.00634716777, -0.00719428714, 0.00170825399, 0.0162198469, 0.00425428431, 0.0109502655, -8.76414488e-05, -0.014700016, 0.0170918833, 0.0106575117, 0.00129948766, 0.00109549379, 0.023931127, 0.00240121013, 0.0172787476, -0.00924356934, 0.0211281572, -0.022510957, -0.0020383813, -0.000155720511, -0.00365943182, 0.0121461991, 0.00782339834, -0.0155969653, -0.0014326286, 0.0178019684, -0.0101156039, 0.00711331284, -0.0207544286, 0.0353049524, -0.00206485391, 0.00977301877, 0.0270829108, -0.00572428573, 0.00233892188, 0.00926848408, -0.0035504275, -0.0266344342, 0.0350308865, 0.0125199286, 0.0131552685, 0.0212402772, 0.0159457792, 0.0134293362, 0.00187954644, -0.0149989994, 0.0032452154, -0.0138404388, 0.00478684809, 0.00944912061, 0.000808968034, 0.0211904459, -0.00221434562, 0.00703856675, -0.00220033084, -0.00808500871, 0.00455326773, 0.00176275615, -0.000557090098, -0.0099972561, -0.0269085038, -0.00256783119, -0.00959861185, 0.0286276583, -0.010632596, -0.00610735826, -0.00208354043, -0.0148993377, -0.00374974986, -0.0101093752, -0.0214645136, 0.0185743421, 0.00116401073, 0.0182255283, -0.00626930734, 0.00757424533, 0.00248374208, 0.0188608672, 0.0135788284, -0.0003974766, -0.00550627708, -0.00817844085, 0.00322652888, -0.0123828948, -0.0370490216, -0.00825318694, -0.00898195896, 0.0107883168, 0.00129403744, 0.00706348196, -0.00173316919, 0.0373729207, 0.0062101339, 0.0140771335, 0.000176937421, 0.00495191198, 0.0197079871, 0.0179016292, -0.0165935773, 0.00640945602, 0.00450655119, 0.0246910434, 0.0208291747, 0.00224237517, 0.00794797484, -0.00296647567, 0.00905047543, 0.0151484907, 0.0120340809, 0.0165935773, -0.0063907695, -0.0297239292, -0.00323587214, 0.0100346291, -0.0166434068, -0.00286837178, 0.00279051135, -0.00532252667, -0.00929962844, -0.0181383248, -0.0303717274, -0.0099972561, 0.0255381633, 0.00674581248, -0.0133795058, -0.000327402347, 0.00480242027, -0.00367188943, 0.018250443, -0.012993319, -0.0203184113, 0.0105516212, 0.010171663, -0.0122645469, 0.00381826679, 0.0216140058, -0.00545333186, 0.0016412941, 0.000437574607, -0.0178642571, 0.011074842, 0.00924979802, -0.00403627567, 0.01658112, 0.00966090057, -0.0208914634, -0.0187736638, 0.00355665642, 0.0298235919, 0.000341222563, 0.00419511041, 0.00325144408, -0.00491765374, 0.0180760361, 0.0110499272, 0.00918751, -0.000841669331, 0.00395218655, -6.9538939e-05, 0.00290263025, 0.0177272223, 0.00788568612, -1.71657521e-05, -0.033486139, 0.00850856863, -0.00228441972, 0.000894614321, -0.0107883168, 0.0181383248, 0.00598901045, -0.00561839575, -0.000165258389, 0.0147872195, -0.00040487331, 0.0347319022, -0.00702610938, 0.00755555881, 0.00916259456, -0.0275563, -0.0148619646, -0.00545333186, -0.000653636816, -0.00320161367, 0.0347817317, -0.0110810716, 0.0040456187, 0.0254758745, 0.0102962395, -0.00893212855, 0.0126258181, -0.00234203646, -0.00177677092, -0.0500049703, 0.00453769555, -0.00819712691, 0.00934323, -0.00850856863, 0.0214022268, 0.0352052934, 0.0109689524, -0.00976679, 0.0205551069, -0.0294498615, -0.00633471, -0.00288082939, -0.00576477312, 0.00460932683, 0.00736869406, 0.0285030808, -0.00625685, -0.0107447151, 0.0180262048, -5.02685252e-05, 0.0024354686, -0.00654649, 0.00159068499, -0.00885115378, -0.000258301385, 0.00502042891, -0.0195460375, 0.010651283, -2.99518651e-05, 0.0156717114, 0.0102464091, -0.0209412929, 0.00279206876, 0.000286136434, 0.018038664, 0.00232957886, -0.00285902852, 0.0209786668, 0.00207575434, 0.00329193147, -0.0251270607, 0.00590803614, -0.0106450533, -0.00907539111, 0.00700742286, 0.0189605281, -0.0150612872, -0.0283535887, 0.0114984019, -0.00292910263, -0.00890098419, 0.0037528642, -0.0120216226, 0.00832170341, -0.00688907504, 0.007867, 0.0207419712, -0.0112741645, -0.0021177989, -0.0156841688, 0.00855839904, -0.00834661908, -0.00794797484, 0.0179390013, 0.0183002744, -0.00915636588, 0.00767390663, 0.0100284, -0.00494879764, -0.0347319022, -0.00460309815, -0.0183002744, 0.0128064547, 0.00662123598, 0.0205551069, -0.00485848, -0.0168427303, 0.00544087449, 0.0272074863, 0.000903957523, 0.0227476507, 0.00911276415, -0.00115933921, -0.0245166365, 0.0161700174, -0.010152977, -0.000612370903, 0.000672712573, 0.0126631912, 0.0020523963, 0.00886984, 0.0143761169, 0.000947559252, 0.0120776827, 0.0159582365, -0.0312188473, 0.0132300137, 0.0153478133, 0.00642814254, 0.0133670485, 0.0053754719, 0.000953009469, -0.0189480707, 0.00543464581, -0.0227725673, -0.00613538781, -0.0159333218, 0.0205426496, -0.0250772294, -0.00412347913, -0.00623816345, 0.017502984, 0.000505313044, -0.0105578499, 0.00391481351, -0.0101093752, 0.0326888487, -0.00672712596, 0.0124078095, 0.00483045029, -0.0235698558, -0.00787322875, -0.00334487646, 0.00677695638, -0.000826097268, 0.0157090854, -0.0030552363, -0.00829056, 0.00758047402, 0.00556233665, -0.0108443759, 0.0222119726, -0.0158212036, 0.00961106922, 0.00510763237, -0.00266593508, -0.00193093426, -0.0162572209, 0.00990382396, -0.00527892495, -0.00956123881, -0.0240681618, 0.00983530749, -0.00582083268, -0.00494256895, 0.0158087462, -0.00924356934, -0.000376065029, 0.00731886365, 0.00986022223, 0.00714445673, -0.0245540086, -0.0115669193, -0.00235449406, -0.0135663701, 0.00317202671, 0.00247907033, -0.0112679359, -0.00511074718, 0.00725657539, 0.0200194288, -0.00133763917, -0.00534744235, 0.00916259456, 0.00135710416, -0.00279985461, -0.0136909466, 0.0015891277, -0.000590180687, -0.0128313694, 0.0138902692, 0.0159457792, -0.00801649131, -0.000644293614, 0.0112741645, 0.00363451662, 0.00736246537, -0.0212278198, -0.000356989243, 0.00761161838, 0.0136660319, 0.0290013868, 0.000228130535, 0.00216918672, -0.0207295138, 0.027406808, 0.00287148613, -0.00431034341, -0.0180511214, -0.0248903651, -0.0118347583, -0.0678193942, -0.00518237846, 0.0213897694, 0.0318915583, -0.0186366308, -0.00537858624, 0.018674003, -0.00631602388, 0.017926544, 0.0136784893, -0.000489741, -0.00908162, 0.0206423104, -0.00850234, 0.000649354479, -0.0373480059, 0.00840890687, 0.0173285771, -0.0126071321, 0.00613538781, 0.00998479873, -0.0337103754, 0.0215018876, -0.00659009162, 0.0278552845, 0.00847742427, 0.0180262048, -0.0159457792, 0.00789814442, -0.00913767889, -0.0138155231, 0.00267994986, -0.000833104714, -0.00391481351, 0.0123517504, -0.0231961273, -0.0153104402, -0.0213773102, 0.00878263637, 0.0146377273, -0.0169922207, 0.00609490043, -0.0269085038, -0.00554987881, -0.000217424749, 0.00436951732, 0.0161700174, 0.0181383248, -0.0197827332, -0.00569937052, -0.00976679, 0.000762641197, -0.0231712107, -0.007867, 0.0111807324, -0.0117849279, 0.0217136666, 0.0116292071, 0.00774865225, -0.00577411614, -0.0183999352, -0.0110561559, 2.52315876e-05, 0.00133608188, 0.00835284777, 0.0282040983, -0.0189979021, 0.0280795209, 0.00371549116, 0.0136411162, -0.0211904459, 0.0119095044, 0.013952557, 0.0194463767, -0.00407676259, 0.000472222426, 0.00310506695, -0.01441349, 0.0150239142, 0.00405184738, 0.00523843756, -0.0253637563, 0.0264849439, -0.0049705985, -0.000374702475, 0.00302253501, -0.0185618848, 0.0066710664, -0.00777356746, 0.0237567201, 0.00973564573, 0.00457195379, -0.00379023701, -0.0164565425, -0.00619456172, 0.0183750205, -0.00390858483, -0.00582083268, -0.00813483912, 0.00409856346, 0.0130057763, 0.0129434885, -0.0128438268, -0.0203807, 0.019882394, -0.00367188943, 0.00796666089, 0.00276559615, -0.00671466812, 0.0019153622, 0.00942420494, 0.00471210247, 0.00532875583, -0.0105204768, -0.00171448279, -0.012781539, 0.00510451803, 9.55734577e-05, -0.0281791817, -0.0242674835, 0.0109689524, -0.0313434228, -0.0107197994, 0.0101156039, 0.000847898133, 7.71303094e-05, -0.00408922043, -0.00127457234, 0.00537235755, -0.0213773102, -0.0018951185, 0.0047899629, 0.00172694039, -0.0159208644, -0.0135539128, -0.00831547473, -0.0171666276, -0.0250772294, -0.0164067131, -0.00772996573, 0.00933077279, -0.0192595124, 0.00917505194, -0.00452835206, -0.011130902, 0.0132923024, 0.00105656357, -0.0279549453, 0.0240307879, 0.00350682577, 0.000464825716, 0.00308015151, 0.035080716, 0.00869543292, -0.00532564148, -0.00464981422, -0.00113053084, -0.00654026121, -0.0097045023, 0.00801026262, -0.00219877344, -0.00716314325, -0.00557167968, 0.0102900108, -0.0151983211, 0.00416708086, 0.00620701909, 0.00693890546, -0.0177396797, -0.0022205743, -0.0139401, -0.00307236565, 0.0102339517, 0.00754310144, 0.00436951732, -0.00299606239, 0.0130556067, -0.0141145065, 0.0253014676, 0.0109066637, 0.0114548, -0.00369991921, -0.0253637563, 0.00716937194, -0.0117973853, -0.00654026121, 0.010171663, 0.00705725327, 0.00194494915, 0.0225234143, 0.00265814899, -0.0123517504, -0.00292131677, 0.00499551371, -0.013242472, 0.0308949482, 0.000550472, -0.0100159431, -0.00232957886, -0.00499862805, -0.0100595448, 0.0050048572, -0.0075617875, -0.00198543654, 0.0178019684, -0.00263946247, -0.0414341129, 0.0106263673, -0.0109253507, -0.00172849756, -0.0313683376, 0.00259430357, 0.00547201838, 0.0149491681, -0.0219005309, -0.027655961, -0.0443741158, -0.00769259315, 0.0199322253, -0.00330750342, 0.0119157331, 0.0047557042, 0.010651283, -0.00247128448, 0.0135539128, 0.00613850215, 0.0256876536, -0.00673958333, -0.0102152647, -0.00306769391, 0.0131303528, 0.0116042923, 0.00847119559, -0.0149367107, -0.0284283347, 0.0114734871, 0.00114143128, 0.0241304487, 0.0140397605, -0.00328570255, 0.0403378382, 0.0142515404, 0.0104270447, -0.00603572698, -0.00777356746, 0.0124700982, 0.0230840072, 0.00537858624, -0.00557167968, 0.0173285771, 0.0272074863, 0.00867674686, 0.00958615448, 0.0262357909, 0.00698250765, -0.0125635304, -0.00545021752, 0.0138279805, -0.0162572209, 0.0120403096, -0.00393972872, -0.00401136, 0.00780471181, -0.0105329351, -0.0227102786, -0.0400886871, 0.00868920423, 0.00395841524, 0.0146252699, -0.00326078734, 0.0221746, -0.0138528962, -0.00677695638, 0.0150737446, 0.00307703717, -0.0152232368, -0.0136286588, 0.00115233171, 0.00252578664, 0.0185618848, -0.0136909466, -0.0126320478, -0.00862691551, 0.00820958521, 0.0117413262, -0.00573362876, -0.0172040015, 0.0119655635, -0.00626930734, 0.02222443, 0.0123268347, -0.00894458592, 0.00706971111, 0.0129185729, -0.0383944474, -0.0101778926, -0.0098851379, 0.0110312402, 0.0212278198, 0.00070852827, 0.00851479732, -0.0127317086, 0.00310506695, -0.0126881069, -0.020629853, 0.00328258821, -0.00264413422, 0.00357534271, 0.0120776827, -0.0109814098, -0.0150737446, -0.00833416171, 0.00314243976, -0.0274815541, 0.00850856863, -0.00233736471, -0.0114672575, -0.00141160632, -0.00201190892, -0.00753687229, 0.0304464735, -0.0168178137, 0.0107945455, 0.00563085359, 0.0235200245, -0.00312219607, -0.00555299316, 0.00144119328, 0.00944912061, -0.00219098758, 0.00141627796, -0.0155222202, -0.002605204, -0.0436764881, 0.0125012426, -0.00808500871, -0.0161949322, -0.00325455866, -0.0206672251, -0.0238190088, -0.0107011134, -0.0285778269, -0.0174780693, 0.00271109398, 0.0116728088, -0.00318915583, -0.0302969813, -0.0159582365, -0.00923734065, 0.00717560109, -0.0146252699, -0.0134044206, 0.0128313694, 0.00122084876, 0.0175528154, -0.0127005642, 0.0180884935, -0.0174406972, 0.00987890922, 0.00481176376, 0.00351928337, -0.0132175563, 0.008770179, 0.0067956429, -0.0226355325, -0.00401447481, -0.00747458404, -0.00665860856, -0.0179016292, 0.00911276415, -0.0187113751, -6.72152964e-06, -0.00697005, 0.0704604164, 0.00328258821, -0.00815352518, -0.0175528154, -0.0135289971, -0.000558258034, 0.00342896557, 0.0344827473, 4.15092472e-05, 0.008271873, -0.0134044206, -0.0233207028, -0.0192844272, 0.0122022592, -0.00635339646, -0.015372728, 0.0161575601, -0.0121648861, 0.00385875418, 0.0092934, -0.00308949477, -0.0199945122, -0.00649665948, 0.00961729791, -0.0013680046, 0.0107758585, -0.00339159253, 0.00811615307, -0.0103211552, 0.00531629799, -0.00209288369, -0.00868297555, 0.00403627567, 0.00426674169, -0.0254135858, 0.0084649669, -0.00724411802, 0.0148993377, 0.00908162, 0.0203931574, 0.0220873971, 0.02655969, -0.00462489901, 0.00418888172, 0.0145505238, 0.01604544, 0.0120963687, -0.0168053564, 0.000655583339, -0.0153602706, -0.0113489106, -0.0142141674, 0.0104831047, -0.00776111, -0.0227351934, -0.00847119559, 0.0174157806, -0.020592479, 0.0183251891, 0.0130057763, -0.0003225361, -0.011074842, 0.00769882184, 0.0159333218, 0.0258620605, -0.0113862837, 0.00496125547, -0.00065714051, -0.00681432942, 0.0140646761, 0.00962352753, -0.00365631748, 0.0249401964, 0.000457039685, 0.00855839904, 0.00749327056, -0.0237940922, 3.78108853e-05, -0.00576788746, -0.00190601894, -0.000717482239, 0.0306208804, -0.0301973205, -0.0260862987, 0.00694513461, 0.00553430663, 0.00718805846, -0.0204180721, -0.00109705096, 0.0303218961, -0.00109627238, 0.00547824753, -0.0225981604, -0.000671155402, -0.0107758585, -0.00177832821, 0.00313465367, 0.00174095528, 0.0252391789, 0.0343581736, 0.0332120694, 0.00366566074, 0.00128858723, -0.0181881543, -0.00695759198, 0.0157713722, -0.0119655635, 0.0121648861, 0.0137656927, 0.00177832821, -0.0118845887, -0.0143885743, 0.00538792927, 0.0360274948, 0.0123143774, 0.0120403096, 0.0166184921, 0.00325455866, -0.00524155237, -0.0147623038, 0.0110623846, -0.00226884778, -0.0262856204, 0.00178922864, 0.00155798369, -0.00423559779, 0.00202592369, -0.00545333186, 0.0191847663, 0.0348564796, 0.00833416171, -0.0267590117, 0.0131428102, 0.0097045023, -0.00362205901, 0.0164565425, -0.0125012426, 0.0155346775, 0.00735623669, 0.0168178137, 0.00582394702, 0.00283411308, 0.00358468597, 0.022261804, -0.0211779885, 0.00763653358, -0.00748704188, -0.0225483291, 0.0105329351, 0.018923156, -0.00915636588, 0.0155595932, 0.00603572698, 0.00481799245, 0.0110187829, 0.00298049045, -0.0158834923, -0.00888852682, 0.00291664503, -0.00781717, -0.00999102741, -0.00182815874, -0.00444426341, -0.0213274807, 0.01398993, -0.0232459567, 0.00909407716, -0.0169548485, -0.00742475362, 0.00519172149, 0.0179888327, 0.00836530514, 0.0211406164, -0.00434148777, -0.00106123521, -0.00701988, -0.0188608672, -0.00299139088, -0.0118347583, -0.0294249468, -0.0238937549, 0.0174656119, -0.012588446, 0.0227351934, 0.00717560109, 0.00422936911, 0.00794174615, -0.00587377744, 7.71789782e-05, 0.0333615616, 0.0264101978, 0.018923156, -0.0193342585, 0.0104706464, 0.00656517642, -0.0118098427, 0.0308949482, -0.0155720506, 0.0210534129, 0.00525400974, 0.00357534271, -0.00180635788, -0.0163568817, 0.0206672251, 0.006515346, 0.0107945455, 0.00544398883, -0.00610424392, -0.00638454081, -0.00789191481, -0.0221621431]
12 Nov, 2024
How to Merge DataFrames of different length in Pandas ? 12 Nov, 2024 Merging DataFrames of different lengths in Pandas can be done using the merge(), and concat(). These functions allow you to combine data based on shared columns or indices, even if the DataFrames have unequal lengths. By using the appropriate merge method (like a left join, right join, or outer join), you can decide how to handle rows that don’t have matching values in both DataFrames. In this article, we will discuss how to merge the two dataframes with different lengths in Pandas using the merge() method. Merge DataFrames of different length in PandasMerging on Indices The merge() function allows you to combine two DataFrames based on common columns or indices. By default, it performs an inner join, which only keeps rows with matching values in both DataFrames. However, if you’re dealing with DataFrames of different lengths, it’s common to use a left join or outer join to keep all rows from one or both DataFrames. Left Join: Keeps all rows from the left DataFrame and matches rows from the right DataFrame where possible. Missing values are filled with NaN.Outer Join: Keeps all rows from both DataFrames, filling missing values with NaN where no match is found.Below are some examples that depict how to merge data frames of different lengths using the above method: Example 1: Below is a program to merge two student data frames of different lengths. Python import pandas as pd # Creating two DataFrames of different lengths df1 = pd.DataFrame({'ID': [1, 2, 3], 'Name': ['Alice', 'Bob', 'Charlie']}) df2 = pd.DataFrame({'ID': [1, 2], 'Age': [25, 30]}) print("DataFrame df1:") print(df1) print("\nDataFrame df2:") print(df2) # Merging with a left join result = df1.merge(df2, how='left', on='ID') print("\nResult of left join:") print(result) Output: DataFrame df1: ID Name0 1 Alice1 2 Bob2 3 CharlieDataFrame df2: ID Age0 1 251 2 30Merged DataFrame: Result of left join: ID Name Age0 1 Alice 25.01 2 Bob 30.02 3 Charlie NaNMerging DataFrames of different lengths Using concat()The concat() function is useful when you want to stack DataFrames either vertically (row-wise) or horizontally (column-wise). When concatenating along columns (axis=1), it will automatically fill missing values with NaN for rows that don’t exist in both DataFrames. Example 2: Here is the program using concat method. Note that dataframe stills remains the same as used in above. Python # Concatenating along columns (axis=1) result = pd.concat([df1, df2], axis=1) print("\nResult after concat:") print(result) Output: DataFrame df1: ID Name0 1 Alice1 2 Bob2 3 CharlieDataFrame df2: ID Age0 1 251 2 30Merged Dataframe: Result after concat: ID Name ID Age0 1 Alice 1.0 25.01 2 Bob 2.0 30.02 3 Charlie NaN NaNThe join() function is similar to merge(), but it works by joining on indices rather than columns by default. This can be useful when your DataFrames share an index but have different lengths. Key Takeaways: Merging DataFrames with different lengths is possible and is done using pd.merge() or pd.concat().pd.merge() allows you to specify how to handle mismatched rows with join options like inner, outer, left, and right.pd.concat() is used to concatenate DataFrames along a particular axis and handles missing values when DataFrames have different column structures.Outer joins in merge() and concat() can be useful when you want to keep all data, even when some rows do not match between DataFrames.Merging DataFrames of different length in Pandas – FAQsHow to combine two dataframes with different number of rows?Use pd.merge() with options like how='left', how='right', or how='outer' to include all rows from one or both DataFrames, filling mismatches with NaN. How will you combine different Pandas data frames?Use pd.concat() to stack DataFrames along rows or columns, or pd.merge()/pd.join() to align data based on shared keys. Each method offers flexibility for handling different structures.
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames/How to Merge DataFrames of different length in Pandas ?
https://www.geeksforgeeks.org/how-to-merge-dataframes-of-different-length-in-pandas/?ref=next_article
Pandas
How to Merge DataFrames of different length in Pandas ?
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, 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 !!, Best Practices For SQL Query Optimizations, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, How to Merge DataFrames of different length in Pandas ?, Floating Point Operations & Associativity in C, C++ and Java, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[-0.0199771076, 0.0116313044, -0.0140927881, 0.0418557934, 0.0335099883, 0.000869574666, -0.0231569652, -0.00178668881, -0.039700672, 0.0330874175, 0.0146632614, -0.0274249464, -0.00905361306, -0.022523107, -0.0453842729, -0.0105114877, 0.00861519389, 0.0482155085, 0.0286715347, 0.0101100439, -0.00995686091, -0.024192268, -0.00131129485, 0.0088845836, 0.0219526347, 0.036932826, 0.00466678338, -0.00300554582, -0.0367849246, 0.00939167105, 0.0168923307, -0.00275464356, 0.0033462448, -0.0163958073, -0.0352214053, -0.00786512811, 0.0362355784, -0.00953428913, 0.0117369471, 0.0014974908, -0.00502332905, 0.0494832247, 0.00842503645, -0.0360242948, -0.00921736, 0.00775420293, -0.0484690517, 0.0122968554, -0.00206664298, 0.0200827513, 0.00465357816, -0.0173571594, -0.00384012633, -0.0154133271, 0.0202200878, 0.0549344085, 0.0261149723, -0.0172620807, 0.0290518496, -0.0239598528, 0.0118531547, -0.00937582459, 0.0236429237, -0.0208433811, -0.00923848804, 0.00367109734, -0.032939516, -0.0345664211, 0.0211708751, -0.0165014509, 0.0283334777, 0.0234950241, 0.0680341497, 0.00476714456, -0.0267277025, -0.0366370231, -0.016121136, -0.00474337488, -0.0216040127, 0.0533708893, 0.00254731905, -0.0334254727, -0.00659212889, 0.0308266543, -0.00202438561, -0.00918038469, -0.00481732516, -0.0222061779, 0.0221216623, -0.0105960025, 0.0332353152, -0.0115045328, 0.0258403, -0.0157408211, -0.0112509895, 0.0276784897, -0.00887930207, 0.0205475818, -0.0488493666, -0.0491029099, 0.0189840626, 0.0546386056, 0.0179698896, -0.000134034664, 0.0245725829, -0.00872611906, 0.0203785524, 0.00872083753, -0.0165225789, -0.0133215934, -0.00447662594, -0.00868914463, -0.0180227105, 0.0176952183, -0.0471590757, -0.0167233013, 0.0121489558, -0.0284179915, 0.00310062477, -0.0167021733, 0.0599630177, 0.0671044886, 0.00259617902, 0.0578924119, -0.000230599064, 0.0340170749, -0.0200616233, -0.00406197691, 0.0429967381, 0.00378730474, 0.0405246913, -0.0372286253, -0.0126771713, 0.0125504, 0.0097086, -0.00400651433, -0.00497843046, 0.0115045328, 0.00553569803, 0.0205581449, -0.00721542304, -0.0241500102, -0.0350523777, -0.00956598204, -0.00110529084, 0.0131420009, -0.00957654603, 0.0351157635, -0.000802887487, -0.0156351775, -0.0409261324, -0.0668509454, 0.0455955565, 0.0489338785, 0.0169240236, -0.010775595, 0.00517915236, -0.0100466581, 0.00925961696, 0.00723655149, 0.0262417439, -0.00216964493, 0.0312914848, 0.0317774415, -0.012106698, -0.0122440346, 0.0136385234, -0.0161105711, -0.0477084182, 0.0175050609, -0.015149219, -0.0276573617, -0.0298124794, 0.0213821623, 0.000819394249, -0.00866273325, 0.0264952872, -0.0219737627, -0.0166070946, 0.0412008055, -0.0207694322, -0.0572585538, 0.0088423267, 0.0319887288, 0.0333620869, 0.0176952183, 0.00435513631, -0.0144097172, 0.0214349832, -0.0279954188, -0.01681838, -0.00764855975, 0.0118214618, 0.0268122163, -0.00853067916, 0.00574698392, -0.0217202194, -0.0204208102, 0.00193194801, 0.0444968715, -0.0350523777, -0.0414966047, -0.0553147234, -0.00392992282, 0.00881063379, -0.0114517109, -0.0157513842, -0.0360031649, 0.0151703479, -0.0110397032, -0.0256501418, 0.00863104, 0.0162796, -0.0127088642, -0.0158992857, -0.0074267094, -0.00119904906, 0.0243190397, -0.00732106622, -0.00429967372, -0.051089, -0.0200404935, -0.0102156866, -0.0110185742, -0.0408204906, 0.00837749708, -0.0247627404, 0.0301082805, -0.0263473876, 0.0113988891, 0.00328814122, -0.00242054742, -0.0269812457, -0.0142089957, -0.00856237207, 0.00679813279, 0.00426533958, -0.0212659538, -0.0058156522, 0.00386389601, 0.0310590696, -0.00559380185, 0.00986706465, -0.0351580195, 0.0146949543, 0.00556210894, -0.0115573546, 0.0469477884, 0.0157091282, 0.00386389601, 0.0131525649, -0.0107491845, -5.22850751e-05, 0.0176318325, -0.0384752154, 0.0033937844, -0.0101311728, 0.00059952453, -0.0372708812, 0.000973237, 0.0203151666, 0.00875781197, -0.00817677565, 0.011758076, 0.0146104395, 0.00848314, -0.0146738254, -0.00981952529, 0.0452152416, 0.00213266979, 0.0115256608, -0.0340170749, 0.0106963627, 0.0265164152, -0.00667664316, 0.00915397424, 0.0296857078, 0.0165542718, 0.0348622203, 0.035305921, 0.0267910883, 0.0187833421, 0.0210546684, -0.00901135523, -0.014103353, -0.0155823557, -0.0292631369, -0.0285658911, -0.00624350645, -0.0173254665, -0.00846729334, -0.0156351775, 0.0504128821, 0.0424473956, 0.00774892094, -0.0301716663, -0.00122942147, -0.00362619921, -0.0139343236, 0.0429333523, -0.0126032205, -0.0210757963, 0.00163350627, -0.016469758, -0.0239175949, -0.0250585414, 0.0319042131, -0.0204313733, 0.00807641447, -0.0149062397, 0.0417290218, -0.0364891253, -0.0247416124, 0.00134100695, -0.0717105269, 0.0245725829, 0.0202095229, -0.0147794681, -0.020853946, -0.033953689, 0.00721542304, -0.0147689041, -0.0443701, 0.0185403619, 0.0446236432, -0.0357918777, -0.0116629973, -0.0207060464, 0.023178095, 0.00893740542, -0.0117897689, -0.0362144522, -0.0294744223, 0.0246359687, -0.00527687231, 0.00130139082, -0.00291310833, -0.0175790098, -0.000654987176, -0.0173043385, 0.0050074826, -0.0295378082, -0.0200721864, -0.00495730201, 0.0153710693, 0.00931243878, -0.0121595198, 0.0117897689, 0.0130680501, -0.0310590696, 0.000639140722, -0.0255022421, 0.00780702429, 0.0492296815, -0.00491504464, 0.0096135214, -0.0140610952, 0.0043234434, -0.0218047332, 0.0109657524, -0.0205687098, -0.0304885954, -0.0180860963, -0.00798661727, -0.00415177364, -0.0184452832, -0.00615371, -0.0234316383, -0.0096557783, -0.0108918026, -0.0331719294, -0.000221850496, 0.0505396537, -0.00874196552, 0.00454265298, 0.034291748, 0.0543428063, 0.0318619572, -0.0038322031, -0.000607447757, -0.0508777127, 0.0290729795, -0.0172937736, 0.00564662321, 0.00347301667, 0.0220794063, 0.00562549476, 0.0426164232, 0.00840919, 0.0391090736, 0.000648054352, 0.00552513357, 0.018815035, -0.00520556327, 0.00345717021, -0.0129307145, -0.0216568336, 0.00792851392, 0.0117052542, 0.0400387309, -0.0149801904, -0.00713090878, 0.000419271, -0.00078902184, 0.028227834, -0.0276573617, 0.0160049275, 0.0105854375, 0.000698564923, 0.0044422918, -0.00178668881, 0.0789787769, -0.027910905, -0.0139660165, 0.0214455482, -0.00694603333, -0.048722595, 0.0284602493, -0.0380737707, 0.0266643167, -0.000161765987, -0.0160471853, 0.0332141891, -0.0127088642, -0.00207060459, -0.0241077542, -0.0153499413, 0.0321366265, -0.0156985633, 0.0132159507, 0.00056684122, 0.00587375602, 0.0139237596, 0.0105378982, 0.0296223219, -0.0256078858, 0.0379258692, -0.00160181336, -0.00398010341, -0.0264952872, -0.00069460331, 0.00986706465, -0.00120763259, -0.0370595977, -0.0198609009, -0.0399753451, -0.0433981828, 0.00868914463, 0.000773835636, -0.0181494821, -0.0325169452, -0.000199731468, -0.0299603809, 0.0128039429, 0.0222273059, 0.0127511211, 0.030256182, -0.00244959909, 0.0346720628, 0.0349889919, 0.0354749486, 0.0164591931, 0.0444123559, -0.00919623114, 0.032939516, -0.0122123417, -0.0321155, 0.00756404549, -0.0167338662, 0.00488335174, 0.00295272446, -0.0246993545, -0.0174205452, -0.00770138111, -0.00837749708, 0.0103054838, 0.00553569803, -0.00461396202, 0.0160471853, -0.0202623457, 0.0217836052, 0.0433136672, -0.0108072879, 0.00392464083, -0.0321788862, 0.0206637885, 0.0180966612, 0.0238964669, -0.0352214053, -0.0213187765, 0.045003958, -0.00252222875, 0.0304885954, -0.0349256061, 0.0100994799, 0.024192268, -0.0283546057, 0.0192693, 0.00111453456, -0.0150752692, 0.0195862297, 0.0056519052, -0.0389189161, 0.0395950302, 0.0347143188, -0.0288405642, 0.00853596162, 0.0107597485, -0.0209173318, -0.0278052613, 0.00667664316, 0.0451307297, 0.0124024991, 0.0340170749, 0.0205581449, -0.0200933162, 0.0187833421, 0.0142195597, 0.00283387583, -0.0229456797, 0.00501012336, 0.0141984317, 0.0276151039, 0.0123602413, 0.00051633059, 0.000835900952, -0.0017549959, -0.00532441167, 0.0329183862, 0.0041174395, 0.00571529102, 0.0260727145, 0.0111347819, 0.0155189699, -0.0114728399, -0.0143885892, 0.00956598204, 0.0346298069, 0.033953689, -0.00260806386, -0.0222273059, 0.0201989599, -0.0160683133, 0.0028206706, 0.016163392, -0.0163746793, 0.0212342609, -0.0133849792, 0.0153605053, -0.00287877419, 0.0331508033, -0.0239598528, 0.0202095229, -0.0275517181, 0.00176027801, 0.00519764, 0.0128778927, -0.0114834039, 0.0207588673, -0.0142406886, -0.0010359626, 0.00910115242, 0.0088845836, 0.00880007, 0.00683510816, 0.00403292477, 0.00328021799, 0.022523107, -0.0488493666, 0.0404613055, -0.00517651159, -0.0123813702, 0.00793379638, -0.00832467526, -0.00395633373, 0.006217096, 0.0204525031, -0.0082771359, 0.0128567638, 0.0273404326, 0.0189946275, 0.0343551338, 0.0202306528, 0.00904304814, 0.0309956837, -0.00770138111, -0.0159943644, -0.031925343, -0.0123919342, 0.0165225789, 0.00716260169, 0.0310168117, 0.0105695911, -0.0338269174, 0.00630161026, 0.0072629624, -0.00947618484, -0.016121136, -0.00256976811, -0.0242556538, -0.019163657, 0.0257557854, 0.0303406958, 0.002020424, 0.0260938443, -0.0276573617, -0.0276151039, 0.0121700838, -0.0025063823, -0.0392358452, -0.0316929258, -0.00992516801, 0.0331930593, -0.044032041, 0.0147160823, -0.0185297988, -0.000678096607, 0.0219103768, -0.0305097252, 0.0074319914, -0.00220397906, 0.0148217259, 0.0293476507, -0.0137441661, 0.00436305953, 0.0157196913, 0.00251694652, 0.042679809, -0.0138603738, -0.00301082805, -0.0144414101, -0.0194277652, 0.0400176, 0.00238093105, 0.0133004654, -0.0340804607, -0.0201989599, 0.0176318325, -0.00405933568, -0.0284391195, -0.0103530232, 0.0344607756, 0.0274672043, 0.0734008178, -0.00665023271, 0.0139237596, -0.0043234434, -0.0125398347, 0.0172515176, -0.0025288316, -0.0133532863, -0.036320094, 0.0150647052, 0.0226287507, -0.000638150319, -0.0279954188, 0.00737388758, -0.000292169163, -0.0173677243, 0.0338480473, -0.000660599442, -0.0349678621, -0.0168817658, 0.00277049, 0.0104797948, -0.0266431868, 0.0116207404, 0.0261783581, 0.0183713343, -0.00818205718, 0.00768553466, -0.0297702234, -0.0197975151, 0.00794964284, 0.0042178, 0.000257009844, 0.0156985633, 0.0206215307, 0.0191319641, -0.00511048455, -0.0209490247, -0.00447134394, -0.0402711444, -0.01245532, -0.0308266543, 0.00748481276, 0.0370595977, -0.0495254807, -0.0154238911, -0.0197235644, 0.00853067916, -0.013437801, 0.00862575881, 0.0108020063, 0.00629104627, -0.0149590615, -0.0119271046, 0.0301927961, 2.6637741e-05, 0.00318513927, 0.0355383344, 0.0227766503, 0.00516858837, -0.0210229754, -0.0303618237, 0.0456800722, -0.0220794063, 0.0185931846, 0.00422308268, 0.0367849246, 0.0101575833, -0.00853067916, 0.00713090878, -0.0227766503, -0.0317774415, 0.0328338742, 0.00667136116, -0.00048661849, -0.00498107169, -0.0148956757, -0.00680869725, -0.0120010553, 0.0424262658, -0.013110308, -0.0299815089, 0.00224887719, 0.0271502752, 0.0122017767, -0.0243612975, -0.0153499413, -0.00155031239, -0.0335099883, 0.0105484622, -0.00328285899, 0.00508407364, 0.00324324286, -0.0070305476, 0.017483931, -0.017494496, 0.00560436584, 0.0156985633, -0.00434457231, -0.0037133547, -0.0145153608, 0.030594239, 0.0262840018, 0.0390245579, 0.0198609009, -0.0146843893, -0.00394048728, -0.000762611046, 0.0120010553, 0.0651184, 0.00960295741, 0.0110819601, -0.00710449787, -0.0152971195, -0.017811425, 0.0115045328, 0.0208222531, -0.00306893187, -0.0136807803, 0.00293951901, 0.01345893, -0.00919094868, 0.00501540583, -0.028248962, -0.0101998402, -0.00481204269, -0.028206706, 0.0344819054, 0.0185931846, 0.0193009935, -0.0123496773, -0.0129729714, 0.027910905, -0.000524253817, -0.0281010624, 0.0119587975, -0.00186328, 0.00378466374, 0.00541949039, 0.0174522381, -0.00161765981, 0.0162056498, 0.0114728399, 0.0180649683, -0.0301927961, 0.0337846614, 0.0171141811, 0.00435777754, 0.0197446942, 0.00675587542, 0.0226498786, 0.0189101137, -0.0172832105, -0.00155163289, -0.0139343236, -0.0399119593, -0.0124764489, 0.0216145758, -0.0363834798, -0.00151333725, -0.00923320651, -0.00819790363, -0.0420459509, 0.0222484358, -0.0187305193, 0.00275200256, 0.0192904286, -0.0212342609, -0.0115784826, -0.00415969687, 0.0168712, 0.01644863, 0.0156774353, -0.0170402303, 0.00301611028, 0.00206796359, 0.0192059148, -0.00356017216, -0.0295166802, 0.0143357674, -0.0169874094, 0.00596883474, -0.0467365049, -0.0169662796, 0.00483845361, 0.0513425432, 0.0493141934, 0.0184347201, 0.00718901213, -0.0357496217, 0.0163007285, 0.00515010068, 0.0269812457, 0.0223752074, -0.00740558049, 0.00877365842, 0.0235584099, -0.0156985633, 0.0180755332, -0.0478351898, -0.00802887511, 0.0275517181, 0.0131631289, 0.0131948218, -0.0159415416, 0.0212659538, 0.029939251, -0.00303195673, -0.00199797493, -0.0115996115, -0.00166784029, 0.0123391133, 0.00653930753, -0.000282595254, -0.0183713343, -0.00724183396, 0.0122862915, 0.0562443808, 0.0181072261, -0.00437626522, 0.0102737909, 0.00320626772, 0.00247997162, -0.00847785827, 0.00802887511, -0.000674795243, -0.00644422835, -0.0121700838, 0.00893212296, 0.0389189161, -0.00159521063, 0.0216779616, -0.0296223219, -0.00815036427, -0.00882648, 0.0137230372, -0.0244035535, 0.0020428733, 0.0336578898, -0.00560436584, -0.0207166094, 0.0355805941, -0.00537195103, 0.0133638512, -0.0281010624, 0.0107280556, -0.0256290138, -0.0054142084, -0.0106593883, -0.00503389305, -0.0257135276, 0.00734747713, 0.00518443482, 0.0190897062, 0.00315872836, 0.0325169452, -0.0354749486, -0.00151333725, -0.00406197691, -0.0392147154, -0.0128778927, 0.00255524227, -0.0417290218, 0.0417924076, -0.0134906229, -0.0116946902, 0.0339325592, -0.00148956757, 0.0266009308, -0.0052082045, 0.021508934, 0.00756404549, 0.0144836679, 0.0048014787, -0.00372127793, -0.00977726839, -0.00108680327, 0.0156774353, 0.0328761302, -0.0012961087, 0.0365313813, -0.0316929258, -0.00725239841, -0.0139131946, -0.00124856923, -0.0132053867, -0.0119482335, -0.00246544555, 0.0129095856, -0.0106699523, -0.0343551338, 0.00662910379, -0.0262628719, -0.0364679955, 0.0244458113, -0.0230301935, -0.0039536925, -0.0310801975, 0.0249317698, 0.00394576928, 0.0234105084, 0.00100492989, -0.0132053867, -0.00951844268, -0.000310491654, -0.0198609009, 0.0148956757, 0.0438630097, 0.0039985911, 0.0101734297, -0.0156034846, 0.0222061779, -0.0371441096, -0.0129201496, -0.0236640517, 0.0209595896, -0.00498371292, 0.00298441737, -0.0230935793, 0.0219103768, -0.00275728456, -0.0502016, 0.0274672043, 0.00361563475, 0.0218047332, -0.00567303412, -0.00416233763, 0.0199137218, 0.0057786773, -0.00622766, -0.0365525112, 0.00089004304, 0.0329606459, -0.016490886, -0.0231147092, -0.00022251076, -0.00975085702, 0.00268597552, 0.0137336021, 0.0211180542, -0.0132370796, 0.024213396, 0.000915133278, 0.000266748801, -0.0118531547, -0.00372656, -0.00808697846, -0.0169662796, 0.0206215307, 0.00423892913, -0.0340593308, -0.0414332189, 0.00095540972, 0.00892155897, -0.0190263204, 0.00811867137, 0.00356281316, -0.0462716743, 0.00721014105, -0.00389558892, 0.0284179915, -0.00935997814, -0.014113917, 0.0212448258, 0.010088915, 0.00905889459, 0.0385597274, -0.00911699887, -0.0191953499, -0.0333409607, -0.00948146731, -0.0232626088, 0.0184769761, 0.00586847356, 0.00678228633, 0.0223329496, -0.00469847629, 0.0231147092, -0.0311647113, 0.00913284533, 0.0147477752, 0.0156985633, 0.00499163615, -0.0186565705, -0.000323531975, -0.00260278163, 0.00165727595, -0.0340170749, -0.00741086295, -0.00895853434, -0.00633330317, 0.0397218019, 0.0118742837, 0.00995157938, -0.0408627465, 0.0373976529, -0.00122744066, -0.0166599154, -0.00235055876, 0.00467734784, 0.0144942319, 0.013765295, -0.0493564531, 0.00594242383, -0.0260304566, -0.0123391133, 0.000750726205, -0.00138392451, 0.0208222531, 0.00345188798, 0.00833524, 0.00752707, -0.00257108873, -0.0142089957, 0.0245725829, 0.010416409, 0.035305921, -0.0267488305, 0.0148428539, 0.0348199643, -0.00751650613, -0.011103089, 0.0354115628, 0.000120003948, 0.0287983064, 0.000847125542, 0.0228822939, -0.0140505312, 0.00133374403, -0.0264530294, -0.00474073365, 0.000151449276, -0.017473368, 0.00491504464, -0.011103089, -0.0263051298, -0.0214983691, 0.027213661, 0.0135645727, 0.0442010686, 0.00106039247, 0.00829826482, -0.0368905663, 0.00405405369, -0.0130046643, -0.0170085374, -0.00145655416, -0.0148851117, -0.00943392795, -0.0330451578, 0.0146104395, 0.0245514549, -0.00276256679, -0.00347565766, 0.048426792, -0.02118144, 0.00551456911, -0.00435777754, 0.0329606459, 0.00617483864, -0.000762611046, 0.0375666842, -0.00162822416, 0.00286556873, -0.021508934, 0.00797605328, 0.033953689, 0.0243612975, -0.00958711095, 0.0236006659, -0.0115996115, 0.0101470193, 0.00836693309, -0.0320309848, -0.0397218019, -0.00728409132, -0.0123708062, 0.022501979, -0.00303988, 0.00945505686, 0.0103107654, -0.0103530232, -0.00804472156, 0.014113917, -0.00773307402, 0.00761686685, 0.00967162475, 0.0197552573, -0.000445681799, 0.0477929339, -0.0132793365, 0.00761158485, -0.0236640517, 0.0119271046, -0.0110291382, -0.0381371565, 0.0102104051, 0.0264107734, 0.0334466025, 0.0257980432, -0.0253332127, -0.00222774874, 0.00252090837, -0.015772514, -0.0156774353, -0.0258403, -0.00509199686, 0.0181072261, -0.00950787775, 0.0186882634, 0.00966106076, 0.0032247554, -0.00113632344, -0.0352002792, 0.0205898378, 0.0206215307, 0.00885817315, 0.00530064199, 0.0074267094, 0.0212870836, 0.0274672043, 0.00222378713, 0.00731050177, 0.0159309786, 0.00251298491, -0.00671890052, 0.0390034281, 0.011113653, -0.0220371485, 0.0320732407, -0.0198714659, -0.00468263, -0.00173650833, -0.0201038793, -0.00826657191, -0.0103213303, 0.0217836052, -0.0136913443, -0.0143674603, -0.0160154924, 0.000174311106, -0.0278475191, -0.0204419382, -0.0377779678, -0.00267012906, 0.0169662796, -0.0211920049, 0.0194700211, 0.0250374116, -0.0278475191, 0.0291152354, 0.000277643237, -0.0157830771, 0.00254996, 0.0111453459, -0.00469319429, -0.00315608736, 0.0267277025, -0.0203468595, -0.0220582765, 0.00397218, -0.00968219, -0.00244167587, -0.00714675523, 0.00368430279, -0.0107491845, 0.0132159507, 0.0278052613, 0.0207694322, -0.0231147092, 0.00451096, -0.0262840018, 0.000919755141, -0.000550334458, -0.0349256061, 0.0165965296, -0.0206215307, -0.0219315048, 0.012434192, -0.0080394391, -0.00477242656, 0.0279742908, -0.002017783, 0.00520292204, 0.0122334696, 0.00517122913, -0.00988291111, -0.00503653428, 0.0237485673, 0.00586847356, -0.0227977782, -0.00548815867, 0.00619068509, -0.0035152738, -0.0117158191, 0.0121700838, -0.003108548, -0.00870499108, -0.000314123114, 0.00784928165, -0.00836693309, 0.0127194282, -0.00165331434, -0.00130667293, -0.00114424678, 0.0271925312, 0.0384752154, -0.00258165295, 0.00343340053, -0.00518707559, 0.000618342194, 0.015466148, 0.0138709377, -0.0183502045, 0.0179065038, 0.0176846534, -0.000526564778, 0.00737917, -0.0198186431, -0.0115996115, -0.0200510584, 0.0184769761, -0.0127194282, -0.0108918026, -0.0130891791, -0.00434193108, -0.0278475191, 0.00069394306, -0.00402236078, 0.011420018, 0.00211682334, -0.00200061593, -0.0027889777, 0.0106857987, -0.0185720548, 0.0153816342, 0.0077964603, 0.0149062397, -0.00113962486, -0.0105009228, 0.0109234955, -0.00373712438, 0.0145259248, -0.0193115566, 0.018508669, -0.0109023666, 0.0186460055, 0.0344185196, 0.00520556327, 0.0230513215, -0.0177163463, 0.00135751371, -0.008071132, 0.0031930625, -0.0110502671, 0.00297121191, -0.00785984565, -0.0264952872, 0.0194066353, -0.0201355722, -0.0054089264, -0.0201144442, 0.00623822445, -0.0123813702, -0.0255445, 0.0131842578, -0.0170296654, -0.0130257932, 0.0163641144, 0.0386653729, -0.00466942461, 0.00328021799, 0.00333039835, -0.0156246135, 0.0244035535, -0.0115573546, 0.0293476507, -0.00479883747, -0.00426798081, -0.020167267, -0.013448365, 0.00314024091, 0.0207799952, -0.0151703479, 0.00550400512, 0.0195651, 0.0189735, -0.0118531547, 0.00977198593, 0.0343762599, 0.00650233217, -0.00730522, 0.010765031, 0.00273351488, -0.0244246833, 0.0068298257, -0.0328338742, -0.0247416124, -0.0407993607, -2.0911968e-05, 0.00684039, -0.0408627465, 0.00179461204, 0.0119693624, -0.0179804545, -0.0105484622, -0.00789153855, -0.0103371767, -0.0160471853, 0.0143357674, -0.0016387885, 0.0425952934, 0.00846729334, -0.00651817862, -0.0294321645, 0.0159098487, 0.0187516492, 0.00480940193, -0.0096135214, 0.00281802937, -0.0109974453, -0.010263226, -0.0118848477, 0.0231358372, -0.00840919, 0.00456378143, -0.0109657524, -0.00134232757, 0.0128990216, 0.00974557549, -0.0258191712, 0.00128422386, -0.0311647113, 0.00189365237, -0.0148534188, -0.0016704814, 0.00602693856, 0.00620124955, 0.00657100044, -0.00284179905, 0.010426973, 0.0187516492, 0.0136913443, -0.0451729856, 0.031270355, 0.00571000902, 0.00468263, -0.0143463314, -0.015138655, 0.0297702234, -0.00606391346, 0.00745840231, -8.37716725e-05, -0.00360771152, 0.00727880886, 0.00144202821, -0.00424949313, -0.0152865555, 0.0049308911, -0.0136173945, 0.0227555223, 0.0108125703, 0.0103899976, -0.0073950165, 0.0125292707, 0.000841843372, 0.0352847911, 0.00978255, -0.0150858331, -0.00293687801, 0.0177269112, 0.014473103, 0.0281855762, -0.0159838, -0.0159098487, 0.0131948218, 0.0305519812, 0.00344132376, 0.0022185049, -0.0129201496, -0.00943392795, 0.013448365, 0.00744783785, 0.0135751376, -0.0136807803, -0.0106541058, 0.00450039562, 0.0219737627, -0.00215247809, 0.0126243494, -0.0167655591, 0.0108072879, -0.00661854, -0.00414120918, -0.0291363653, 0.00797605328, -0.00552513357, -0.0241288822, 0.0113038104, 0.0197235644, 0.0249528978, 0.0432291515, -0.0230513215, 0.011409454, -0.00583149865, -0.0122862915, -0.00476714456, 0.00632802118, -0.00855709054, 0.00597939873, -0.0119799264, 0.0154238911, -0.00680341525, 0.0283334777, 0.0128250709, -0.00797077082, 0.015138655, 0.0176635254, 0.000376353506, -0.001240646, -0.014462539, 0.000627586, 0.0241288822, -0.02218505, 0.0277630035, -0.0297913514, 0.0304885954, 0.00769609911, 0.00587375602, 0.0114622749, 0.00554626249, -0.0116735613, -0.00761158485, -0.0323901698, -0.0161105711, -0.0495677367, 0.00661325734, -0.00662910379, -0.00296592969, -0.00413856795, -0.0170930512, 0.00829826482, 0.0248261262, 0.0264107734, 0.0132053867, -0.0221639201, 0.0313759968, -0.00728409132, 0.0149801904, 0.0271291453, -0.0422361083, 0.0144942319, -0.0234316383, -0.0086468868, 0.00754291657, -0.0364679955, 0.017483931, -0.00640725344, -0.00622766, -0.022523107, -0.0245303251, -0.0236429237, 0.00693018688, -0.0121172629, 0.00511312578, 0.00994101446, -0.0166387875, 0.00199665432, 0.00440795813, 0.00125781307, -0.00343604153, 0.0278263893, -0.00116009323, -0.0203785524, -0.00422044145, -0.0185297988, 0.00555682648, 0.00551456911, 0.00669248961, -0.00348622189, 0.0149590615, -0.00953428913, 0.013131436, -0.0415388644, -0.00895325188, 0.0242345259, -0.024889512, -0.00974557549, 0.037672326, 0.0295166802, -0.0170402303, -0.00129214709, 0.00852539763, -0.000128504922, 0.0261994861, -0.0211497471, -0.00513689546, -0.0118848477, -0.0214349832, 0.00839334354, 0.00442116335, 0.0175367538, -0.0260727145, -0.00970331766, 0.00187912653, 0.00392728206, -0.0143780243, 0.0179170687, 0.0242556538, -0.0153076835, 0.0340593308, -0.0127405571, 0.0026820139, -0.015455584, 0.00922264159, -0.0217836052, -0.012096134, 0.00208909204, -0.00698829, -0.0101787122, -0.00318513927, -0.00251826714, 0.00495466078, 0.00206268136, -0.00795492437, -0.00372656, -0.0241077542, 0.010765031, -0.00629632827, -0.0226921365, 0.00110661134, -0.00186988269, 0.0117263831, -0.00649705, -0.000775156193, 0.00955013558, 0.0113566322, 0.0068192617, 0.0157830771, 0.0429967381, 0.00986178219, 0.00942864548, 0.00303723896, 0.0313759968, 0.0197446942, -0.00441059889, -0.021868119, 0.00477770856, -0.00974557549, -0.0266854446, 0.00103464199, -0.0193009935, -0.0150435762, 0.00102935988, 0.017156437, 0.0157513842, 0.028248962, 0.0213927254, -0.00104586664, -0.00288933865, 0.00709921587, 0.0204208102, -0.000644753, -0.00230169878, 0.00761158485, -0.000793643703, 0.000549344055, 0.0190474484, 0.000440399628, 0.000157061557, 0.010242098, -0.00309798354, 0.0074689663, -0.0101575833, 0.0228822939, 0.0113249393, 0.0133110294, 0.00161633932, 0.0246359687, 0.00292895478, 0.0114939678, 0.00679285079, 0.0116418684, -0.0154238911, -0.00441588135, -0.00307157286, 0.000212111525, 0.0148639828, -0.0199031588, -0.00174839317, 0.0242979117, -0.00403028401, -0.0018738443, 0.00241526519, -0.0240021106, 0.0307632685, 0.00165859656, 0.021519497, 0.0068245437, 0.0172303878, 0.00345717021, 0.00367637957, 0.00302931573, 0.00828241836, 0.00107227731, -0.000304384157, -0.00725768041, -0.0144097172, 0.00721542304, -0.00165859656, -0.00341755408, 0.00808697846, -0.0241500102, 0.0165965296, 0.010775595, -0.0199348517, 0.0150118833, 0.00301875127, -0.0180966612, -0.0169662796, 0.00831939373, 0.00105378986, 0.00133044273, -0.0162901655, -0.0109023666, 0.0159626715, -0.019850336, 0.00274407933, 0.015476713, -0.0140822241, 0.0161528289, 0.0029078261, 0.0101206079, -0.00510256132, 0.0197763871, -0.018181175, -0.0126560424, 0.00549344067, -0.00395633373, 0.0264107734, 0.00891099498, -0.00717844814, 0.00497843046, 0.00396689819, -0.0187622122, 0.00131195516, -0.00450039562, -0.00679285079, -0.00248393323, 0.01644863, -0.0112298606, 0.0104797948, 0.000631877745, -0.0228189081, 0.0193538144, -0.00231226324, 0.00560436584, 0.0131525649, -0.00460339757, -0.00894268788, -0.00788097456, 0.00616427418, -0.00789682101, -0.0067875688, -0.00954485312, -0.013120872, -0.0138181159, 0.00866801571, -0.0182023048, 0.0389400423, -0.00990932155, -0.0179381967, 0.00708336942, -0.00139580935, -0.00506294519, 0.0173677243, -0.00987234712, 0.0183079485, 0.00791266747, 0.0287983064, 0.0219737627, 0.00474601565, -0.01581477, -0.0455955565, -0.0151069621, -0.000146414721, 0.00193855073, 0.00935469568, -0.000786380784, 0.0217836052, -0.0131948218, 0.0117263831, -0.00986178219, 0.0105220517, -0.00735804113, 0.00137600128, 0.0090905875, -0.011092525, -0.011092525, 0.00910115242, 0.0229879357, 0.000628246227, 0.00721542304, -0.00912228134, 0.00845144689, 0.0137124732, -0.0154238911, -0.00262787193, 0.00853067916, -0.0166810434, -0.0136702163, -0.00103926391, 0.00249845907, 0.0203151666, -0.00586847356, -0.0166282225, 0.0332141891, 0.0095607, -0.00790738501, -0.0101892762, -0.00194647396, 0.0163112935, -0.00977198593, 0.0116101755, -0.0143252034, 0.00606391346, -0.0165965296, -0.00433136662, 0.00172198238, 0.0143991532, 0.0203996804, 0.0224174634, 0.00172990561, 0.00717844814, -0.0122757275, -0.00209041266, 0.00460868, 0.0191108342, -0.0111876037, -0.00846729334, 0.00259221741, -0.0090060737, -0.00456378143, 0.000139399359, 0.00750594167, 0.0159838, -0.0170507953, -0.00361563475, 0.00277313124, -0.0233259946, -0.016490886, 0.0184241552, -0.00107821985, -0.0314393826, -0.0237063095, 0.0243824255, 0.00712562632, -0.00144334871, 0.0171353091, -0.0159626715, 0.0127616851, 0.00769081712, 0.000818733941, 0.0235584099, 0.00825072546, -0.00466942461, 0.00567303412, 0.00384540856, 0.00220794068, -0.0179487616, 0.0143991532, 0.0331508033, -0.00333832158, 0.00323796063, -0.0261361, -0.00849898625, -0.0129307145, 0.00874196552, -0.0242556538, 0.00802887511, -0.0235584099, -0.022523107, 0.00731578423, -0.010580156, -0.00521612773, -0.000913152471, -0.00276520778, 0.0033145519, -1.32672867e-05, 0.00644951081, -0.00384276733, -0.0067875688, 0.0304252096, 0.00659212889, 0.00469319429, -0.00939167105, 0.00143014337, 0.00401443755, 0.0161739569, -0.00476978533, 0.0101206079, -0.00655515399, -0.00914869178, 0.00437098276, 0.00938638858, 0.00862047635, -0.0214349832, -0.0114517109, 0.00299762259, 0.00269125775, 0.00252354937, -0.00416762, -0.00876837689, 0.0214349832, -0.0337846614, 0.000707148458, 0.00768553466, -0.0236640517, 0.03363676, 0.0135223158, 0.0222061779, -0.0105590271, -0.000804868294, -0.0186248776, 0.00228189072, -0.0281855762, -0.0175578818, -0.00464037294, 0.0138181159, -0.0183290765, 0.0122123417, -0.00300554582, 0.00960823894, 0.00793907791, 0.004962584, -0.050793197, 0.00548287621, 0.0122968554, 0.00698300824, -0.00159521063, 0.00602693856, 0.00675587542, 0.00110198953, 0.00467998907, -0.0214349832, 0.0323479138, 0.0141878668, -0.00858878344, 0.00114820839, 0.034291748, -0.0157302562, 0.0229034219, 0.00648120372, -0.00791266747, -0.0094497744, -0.00733691268, -0.0113883251, -0.0214244183, 0.0294110365, -0.0052134865, -0.00826657191, 0.00919623114, 0.00591073092, -0.00139712985, 0.0203785524, 0.0153288124, 0.00925433449, -0.0187516492, 0.0140716601, -0.00124790904, 0.00913812779, -0.00605863146, 0.0206004027, -0.0199242868, -0.00497578969, -0.0012677171, 0.0118954116, 0.00454793498, -0.0115362257, -0.0299603809, 0.00518179359, 0.0296434518, 0.00936526, -0.00543533685, -0.0195862297, -0.0344185196, -0.0146949543, -0.0465674736, -0.00448190793, -0.00872611906, -0.0117158191, 0.00584734511, 0.0160260573, -0.0219526347, -0.0141667388, 0.00302931573, -0.000887402, -0.00445549749, 0.00926489942, -0.000353244075, -0.011430582, 0.00362355798, 0.00380315119, 0.00323796063, 0.0240021106, -0.0210124105, -0.00499955937, -0.0114834039, -0.0129729714, 0.0131631289, -0.0264741592, -0.0201461371, 0.00796020683, -0.0145364897, 0.00364468666, -0.0426586792, -0.0168923307, -0.00653930753, -0.000888062234, -0.00645479281, -0.0175473168, -0.00137996289, 0.00034994274, -0.00867329817, 0.0202517807, 0.000763931603, 0.019501714, 0.00641253544, 0.00469583552, -0.0112826824, 0.0121383909, 0.00875253, -0.0263896435, -0.00888986606, 0.00950787775, -0.0170613583, -0.00158464641, -0.020853946, -0.0167127363, 0.00387181924, 0.000904568937, 0.0175473168, -0.000938242709, 0.00142354064, 0.00868386216, 0.0330874175, 0.0216568336, 0.0121278269, -0.00330662867, -0.0070305476, 0.0137969879, 0.0223752074, -0.00858350098, -0.0148428539, 0.00149484968, 0.0122862915, 0.0284179915, 0.00316401059, 0.0118320258, 0.019184785, -0.016490886, 0.0163958073, -0.00749537721, 0.00330398767, -0.00174443156, -0.00071243057, -0.00709393341, -0.0233048666, 0.00260674325, -0.00824016146, -0.0193326864, 0.0156351775, -0.00195043557, -0.013131436, -0.0140822241, -0.00119640795, 0.00209305366, 0.0138392448, 0.0133744152, 0.0234316383, -0.00911171641, 7.69626422e-05, 0.0116418684, 0.00604278501, -0.00749009522, 0.0117792049, 0.00456378143, 0.00795492437, 0.00152390159, -0.00629632827, 0.00376089406, -0.0251008, 0.0240654964, -0.00854652561, -0.0178536829, -0.00170217431, -0.00100955181, 0.0433559231, 0.0236217957, -0.0165225789, 0.00615899218, -0.0129412785, -0.0070305476, -0.00556739094, -0.0054511833, 0.00654458953, 0.0234105084, -0.015804207, -0.0312280972, -0.0537089482, 0.0318830833, -0.0126032205, 0.00490183942, 0.0023056604, 0.0146632614, 0.00922792405, 0.038982302, 0.0226287507, 0.00866273325, 0.002020424, 0.0217202194, -0.0277630035, -0.017832553, 0.00389294792, -0.0115256608, 0.0327282287, 0.00953957066, 0.00117131777, -0.0154872769, 0.00867858, -0.0113355033, 0.00310062477, -0.00822431501, -0.000835900952, 0.000384937, 0.0090800235, 0.00154370966, -0.00787041057, -0.00492296787, -0.0065868469, 0.0185720548, 0.00268861675, -0.0146738254, -0.0242767818, -0.00225680042, -0.0294532944, 0.00756932748, -0.00152522209, -0.0253754705, -0.00855709054, 0.0108601097, -0.00984593574, 0.0152442977, 0.00253939582, 0.00744255586, -0.000434127083, -0.00286028674, -0.00165331434, 0.00596355228, -0.0158464629, -0.0245725829, -0.0140610952, -0.013765295, 0.00784399919, 0.0134166721, -0.00578924129, 0.0203362945, -0.000798265624, -0.0124764489, 0.0182445627, 0.00837221462, -0.000378994591, 0.0238542091, 0.0186143126, 0.00384540856, 0.02218505, -0.0185192339, 0.0205898378, -0.0214138553, 0.00830882881, 0.00260146102, 0.00337265572, -0.0174416751, 0.00202438561, -0.0295166802, -0.0038322031, -0.00235716137, -0.0136279585, 0.0173360314, -0.0259670708, 0.0182023048, 0.00281010615, 0.0203574244, 0.00735275913, -0.0100149652, 0.0136173945, 0.010088915, -0.000372061768, -0.000729597581, 0.0334677324, 0.0171881299, 0.00119772856, 0.0196707435, -0.0163641144, 0.00947090331, 0.0154238911, -0.00670833606, 0.00606919546, 0.017790297, 0.0229034219, 0.0176318325, 0.00556739094, 0.0134800579, -0.000880139, -0.00697772624, -0.00723655149, -0.00393520528, 0.0116629973, 0.0106963627, -0.00168236624, -0.0219948906, -0.0382216685, -0.00193458912, -0.00767497066, 0.0242556538, 0.00865745172, -0.0161000062, -0.0109234955, -0.0173254665, -0.00181177899, 0.00504709873, -0.00785984565, 0.0121383909, 0.00449775439, 0.0279954188, 0.0148322899, 0.00550400512, -0.00246016355, 0.00133704534, 0.00688792951, -0.00557795539, 0.0126454784, -0.00631217472, -0.0010372831, 0.00892155897, -0.0115996115, 0.0157408211, -0.00704639405, 0.0109868813, -0.000746104342, -0.0106963627, -0.0139026307, 0.0315872841, -0.000680737663, -0.00358394184, 0.0135328798, 0.00403820723, 0.0130152283, 0.0130680501, 0.0155295348, -0.00214983686, 0.00531384768, 0.0133110294, 0.00801831, 0.0158359, 0.00405669492, -0.00171273865, 0.00296592969, 0.021825863, 0.00504181674, 0.0196496155, -0.016121136, -0.0557372943, -0.00195043557, -0.0009494673, -0.019184785, 0.00261334586, -0.00769609911, -0.0228189081, 0.00233339169, -0.00663438626, -0.015466148, -0.010263226, 0.0220160205, 0.000950127549, -0.0177269112, 0.00286556873, -0.00324588385, -0.00918566715, -0.0117158191, -0.0045188833, -0.00623822445, -0.00283651706, 0.000762611046, -0.0117158191, -0.00738445204, 0.0106488233, -0.00862047635, -0.00413064472, -0.00417026086, -0.0261361, 0.0135117508, 0.0281855762, 0.0132899005, 0.0204419382, 0.00844616536, -0.00585790956, -0.018138919, -0.00469583552, 0.0056519052, 0.002184171, -0.00660269335, 0.030594239, 0.00175235479, 0.000247600983, 0.00646535726, 0.0105590271, 0.011409454, 0.0125820925, 0.0119165406, 0.00283123483, 0.0218047332, -0.00619068509, -1.68987681e-05, -0.0110502671, 0.026579801, -0.0166599154, -0.00105114875, 0.00202966784, 0.00365789211, -0.0207060464, 0.00113632344, -0.0242767818, 0.0149273686, -0.0025090233, 0.0301505383, 0.00289197965, 0.00959239248, -0.00740558049, -0.0180966612, -0.0146315685, 0.00425213436, 0.020875074, -0.00494145555, 0.0194383282, -0.0016995332, 0.021825863, 0.0121489558, 0.0153605053, -0.0202200878, -0.00694603333, 0.00827185437, 0.00661854, -0.0360876806, -0.00650233217, -0.0166387875, -0.00467734784, -0.00225415942, 0.00811867137, 0.0115679186, 0.00667664316, 0.00619596709, 0.0152971195, -0.0456378162, 0.00160709547, 0.000668192573, -0.00930187386, 0.00385069055, 0.0135540087, 0.0347988345, -0.000266418676, 0.0122862915, 0.0141773028, 0.0246570967, -0.00151069625, -0.00186460058, -0.000763931603, -0.0169451516, 0.00369222602, -0.0155189699, -0.00748481276, 0.00982480776, -0.0116735613, 0.0250374116, 0.0105062053, -0.0257557854, -0.00777004939, -0.000147322586, -0.00370014925, 0.00025486396, -0.00902192, 0.0103794336, -0.024213396, -0.0084408829, -0.0328127444, 0.0143674603, -0.0198925938, -0.00319042127, -0.00197156426, 0.013786423, -0.0177374743, -0.0341227166, 0.00195175607, -0.0136279585, -0.00694603333, 0.00939695258, -0.0172198247, -0.00431287941, 0.00808697846, 0.0143357674, 0.0252275709, 0.00123404339, -0.0147266472, -0.0106910812, -0.00227660872, -0.0160788782, -0.0011825423, 0.0326437168, 0.00708336942, 0.00445021503, 0.0104850763, 0.00488335174, -0.000654326868, -0.026558673, -0.0183396414, -0.0146738254, -0.00863104, 0.0166704804, 0.0116629973, 0.0123813702, -0.00477506779, 0.0109446244, 0.0175050609, 0.0143463314, 0.0222484358, 0.0184347201, -0.000662250153, -0.0216568336, 0.0120221833, 0.00246544555, -0.0171775669, 0.0109129315, 0.0192059148, -0.00680341525, 0.0129624074, 0.0160577502, -0.00733691268, 0.0110397032, 0.0237485673, -0.0180227105, 0.0135117508, 0.0130046643, 0.00753763458, 0.014451975, -0.00457962789, -0.000573443889, -0.0158675928, -0.00133836595, -0.021825863, 0.00389030692, -0.0211074892, 0.0232626088, -0.00290254387, -0.0109129315, -0.00461660326, 0.0158570278, 0.00573113747, 0.0101575833, 0.0331719294, -0.0113777611, 0.0212236978, -0.00176688074, 0.0118637187, -0.011441147, -0.0181177892, 0.0090905875, -0.00498371292, 0.00983537175, -0.0103794336, 0.00478035, -7.98925903e-05, 0.0209384598, -0.00756932748, 0.0129201496, -0.00516594714, 0.00399595, -0.00632802118, -0.00295008323, 0.00901135523, -0.00194251235, 0.0162690356, -0.0014988113, 0.0160471853, -0.00588960247, -0.00468527107, -0.0166704804, 0.0116629973, -0.00227132649, -0.00643894635, 0.00183818978, -0.00243507326, -0.000440069503, 0.0139554525, 0.000714411377, 0.00269654, -0.00710449787, 0.000705167651, -0.00941808149, 0.00689321151, -0.00028523634, -0.013437801, -0.0226710066, 0.0104533834, 0.00332247512, -0.00115415081, 0.00466414262, 0.00690377597, 0.00815564673, 0.00989875756, -0.00378730474, -0.0117369471, 0.0142512526, 0.0068615186, 0.00496786647, 0.00430495618, -0.0261572301, -0.0256712716, 0.00447398471, 0.00963993184, -0.0158464629, -0.00583678065, -0.0248049982, -0.0149907544, 0.00276784902, 0.00373976538, 0.0203679875, -0.00815036427, -0.000963332946, -0.0140822241, 0.0135751376, -0.00431023818, 0.00140241208, -0.00399595, -0.0210652314, 0.00772779202, -0.0137441661, 0.020875074, 0.0260727145, 0.0209912825, -0.0193115566, -0.0102737909, -0.00536931027, -0.0175050609, 0.0233471226, -0.00081345177, -0.00113698374, -0.00416233763, 0.0133427223, -0.0037159957, 0.00284179905, -0.0425107814, 0.00994629692, -0.0051633059, -0.00958711095, 0.0118108978, 0.0186882634, -0.0244458113, 0.0226921365, -0.00553569803, 0.0311858412, -0.00499691814, 0.00779117784, 0.00856237207, 0.00846729334, -0.00996214338, -0.014473103, 0.0103266118, 0.00840390753, 0.000438748975, 0.00197024364, 0.000461528252, -0.0161105711, -0.011409454, 0.015128091, 0.0282700919, -0.00223699235, 0.00428382726, -0.0312069692, -0.00382956211, -0.0124870129, 0.0135011869, 0.0124764489, 0.0303406958, -0.00418082532, -0.00758517394, 0.00200061593, -0.00660797535, -0.022501979, 0.00450039562, 0.00503389305, -0.00791795, 0.0144414101, 0.00709393341, 0.00596883474, -0.00507879164, -0.00939695258, -0.0243612975, 0.00752707, -0.000940223515, 0.0125715276, 0.0279320329, -0.0124975778, 0.0167233013, -0.00981424283, 0.0165120158, -0.0130046643, 0.0145259248, 0.027255917, -0.00418610731, -0.00649705, -0.0064600748, -0.0116524333, -0.00656571798, 0.00671361852, 0.016839508, 0.0100360932, -0.0195862297, 0.0220160205, 0.0140505312, -0.0094075175, 0.00724711595, -0.0121489558, 0.00898494478, -0.0199454147, 0.00444493303, 0.0129518425, 0.0199876726, 0.000586649287, 0.00247336878, -0.0201461371, 0.00850426871, 0.0187622122, -0.0276362319, -0.0234316383, -0.00683510816, 0.0234527662, 0.00585790956, -0.0112192966, -0.00364732766, 0.021508934, 0.00343868253, 0.00166123756, -0.0126560424, -0.0222906917, 0.0142301247, 0.0157619491, -0.0016136982, 0.0123074204, -0.0210969243, -0.0060216561, -0.0162056498, -0.00216832454, -0.0120116193, -0.0179065038, -0.0147160823, 0.0145681826, -0.0308055244, -0.0201989599, 0.0101258904, 0.00861519389, -0.0115045328, 0.0174416751, -0.00744255586, -0.00838806108, -0.00885289069, 0.00681397924, 0.0127405571, 0.00650233217, -0.0169240236, -0.0183502045, -0.0115467897, -0.00632273918, -0.0270657595, -0.00687208306, -0.0113883251, 0.0044871904, -0.0334888585, 0.0126982993, 0.0116101755, -0.0427009389, -0.0021366314, 0.00147636223, -0.0218892489, 0.0178748108, -0.00105312956, -0.0143674603, -0.00918038469, 0.0290729795, 0.0180649683, -0.00749009522, -0.0242345259, 0.000555286475, -0.00549344067, 0.000457566639, 0.00151201675, -0.0109234955, -0.000467140548, 0.00183422817, -0.0109551884, -0.00385069055, 0.00680869725, 0.0106171304, -0.0167549942, -0.0304674674, 0.0106541058, -0.0203679875, -0.00699885469, 0.00716788368, 0.012434192, 0.0100519396, 3.35705663e-05, 0.00579980575, -0.011430582, 0.0178008601, 0.0138075519, -0.00917510223, -0.00585790956, -0.0178008601, 0.00800774619, -0.0279320329, -0.0311224554, 0.00220794068, 0.0136279585, -0.00179725303, 0.00222642813, -0.00207852782, 0.00109934842, -0.00442380458, 0.0115362257, -0.0129624074, 0.00531384768, -0.0022211459, -0.0109234955, -0.00966634322, -0.0136702163, -0.0167761222, 0.00793907791, -0.00539043872, 0.00905889459, 0.0260093287, 0.00947618484, -0.0317351855, 0.00952900667, 0.0102262516, -0.00748481276, -0.0155929206, 0.00234263553, 0.00519235805, 0.00905889459, -0.00991988648, -0.00761158485, -0.0379681252, 0.0116313044, 0.00921736, -0.0173465963, 0.00235187938, 0.00130337162, 0.0153288124, -0.00556210894, 0.0106488233, 0.00666607916, 0.00744783785, -0.00870499108, -0.0199559797, -0.00632273918, 0.00575754838, 0.00806585, 0.00490976265, -0.0110608311, -0.0168500729, -0.00600580964, -0.0111876037, 0.0221639201, 0.00263579516, -0.00368694379, 0.0387287587, 0.00688264752, 0.0110819601, -0.0133532863, 0.0146843893, 0.00949731376, 0.00881591626, -0.00200985977, 0.0138181159, 0.0121912127, -0.0029078261, 0.000203693082, 0.0176423956, 0.0122229056, 0.0070199836, 0.0110397032, -0.00607976, 0.00833524, -0.0251219273, -0.00842503645, -0.0178008601, -0.000459217321, 0.0149273686, -0.00325116608, -0.0121806487, -0.0258191712, 0.0125820925, 0.00818205718, 0.00914340932, -0.00335680926, 0.0158992857, -0.00741614494, 0.0286081489, -0.017483931, 0.00099106424, -0.0182551257, -0.0234950241, 0.0102737909, -0.00565718766, -0.00275992579, -0.0159732345, 0.0126454784, 0.00655515399, 0.0140610952, 0.00453472976, 0.0123602413, -0.0121383909, 0.000729597581, -0.00669248961, 0.0185826197, 0.00416762, 0.0011515097, 0.00735804113, 0.00223567197, -0.0472435914, 0.0104533834, -0.00532177091, 0.0204208102, 0.0246359687, -0.0132899005, 0.00283915806, 0.021825863, 0.00231622485, -0.0294744223, 0.00220529945, 0.0158887208, 0.00181838172, -0.0118425908, 0.000521942915, -0.00784928165, -0.0112932464, -0.00111915648, 0.000770534272, -0.0161317, 0.0130152283, -0.00362091698, -0.00396953896, -0.00789153855, 0.00870499108, -0.0012109339, 0.00662910379, -0.0229245499, 0.0377779678, 0.00999911875, 0.00152126048, -0.014790033, 0.00348622189, 0.014811161, 0.0190685783, 0.00812923629, -0.00129148678, -0.0132159507, 0.0110819601, -0.0175156239, 0.00422572345, 0.00465093693, 0.000199401329, 0.0109551884, -0.0251430552, -0.00184875412, -0.00919623114, -0.0220371485, -0.0221005343, 0.00138260389, 0.00527159031, -0.00375297084, -0.00340698962, -0.00164935272, -0.00997270737, 0.00528215431, -0.0163218584, -0.00162162143, 0.00495466078, 0.0081609292, 0.00748481276, -0.00795492437, 0.0244246833, -0.00623294245, 0.00279954192, 0.00200721878, -0.00919623114, -0.00519764, 0.00277577224, 0.00803415664, -0.0276151039, -0.00623294245, 0.0127299922, -0.0213187765, -0.00767497066, 0.0303618237, -0.0260938443, 0.0208011251, 0.00227132649, 0.0152971195, 0.00417026086, 0.00806056801, -0.0289884638, 0.00488071097, 0.0105326157, -0.00180385576, 0.0234738942, -0.0135962656, -0.000643102336, -0.0215934478, -0.0291363653, -0.0113671962, -0.00403820723, -0.0128567638, -0.00116801646, -0.0128250709, -0.00378202274, 0.00969275367, -0.00232943, -0.0090905875, -0.000549013959, 0.00624350645, 0.00718373, 0.014473103, 0.00828241836, -0.0177057814, -0.00716788368, -0.00738973403, 0.0140927881, 0.00971916411, 0.000415309391, -0.0148534188, 0.0224174634, -0.0253332127, 0.0132265147, 0.00385069055, 0.0236006659, 0.00531120645, 0.0264952872, 0.00614842772, 0.00948146731, -0.00940223504, 0.0332987, 0.0159415416, 0.0291574933, 0.00613258127, -0.0153816342, 0.00788097456, -0.0106805163, -0.00800774619, -0.0279531609, 0.00462188525, 0.0170613583, -0.00637556054, 0.0252064411, 0.00415177364, -0.0296434518, 0.0138920667, -0.00434721308, 0.0143146385, -0.0125081418, 0.0177269112, -0.0107016452, 0.0174522381, -0.00692490442, 0.00919623114, -0.00786512811, -0.0056149303, 0.00642838189, 0.0135540087, -0.00425741635, 0.0205581449, -0.0054511833, 0.024889512, -0.0140716601, -0.020832818, 0.00501540583, -0.0145576177, -0.00987762865, 0.00685095461, 0.0153499413, -0.0327704884, -0.0186143126, 0.00999911875, 0.0145470537, -0.0109340595, -0.0167655591, 0.0202412158, 0.0397429317, 0.00293159578, 0.00467206584, -0.00299498159, -0.00862575881, 0.000554296072, -0.0148534188, -0.00665551471, -0.0148745468, 0.0320309848, 0.01544502, 0.0208222531, -0.0228611641, -0.000938242709, -0.02118144, -0.00660269335, 0.00172594399, -0.00600052765, -0.0148534188, 0.0104797948, -0.0179170687, -0.0037133547, -0.0203891173, 0.012793378, 0.0362355784, 0.00933884922, 0.0252698269, -0.00183686928, 0.0176423956, 0.00309534254, -0.0181072261, 0.00747424876, 0.00666607916, -0.0151809119, -0.0297702234, 0.0355383344, 0.0192376077, -0.00363940443, -0.00279954192, 0.00484109484, 0.0343128741, -0.014790033, -0.0320943706, 0.0263685156, 0.0103266118, 0.0143463314, 0.0217836052, -0.0158570278, 0.0132159507, 0.00249053584, 0.0079919, -0.00785456412, 0.0149484975, 0.0188255981, 0.0140294023, -0.0246359687, 0.0161317, 0.00260146102, -0.00995686091, 0.0173254665, 0.0240866244, 0.0189735, 0.00580508774, -0.00656571798, 0.00217492715, 0.0100677861, 0.00738445204, 0.00559380185, -0.0130469222, 0.0150435762, -0.00652874308, -0.0102896374, -0.00314024091, -0.0033145519, -0.0132159507, 0.0115467897, -0.0272770468, -0.00615371, -0.00330398767, -0.0147160823, 0.0141350459, 0.0185403619, 0.00957654603, 0.0222695637, 0.000711770321, 0.0180332754, -0.00243243226, -0.00544061931, -0.00897438079, -4.80345916e-05, -0.0321577564, -0.0249951556, -0.00292895478, -0.0269601159, 6.18177146e-05, 0.00196496141, 0.00560436584, 0.0050893561, 0.0144308461, 0.00145523355, 0.0270657595, 0.0192587357, 0.0378836133, -0.0277841333, 0.018815035, 0.000528545585, 0.000487939018, 0.0255022421, -0.00697244378, -0.0296223219, -0.00127696083, 0.00278105447, 0.00487278774, 0.00714147277, 0.0137124732, 0.0121595198, 0.00276520778, -0.00769609911, -0.0115467897, -0.00502332905, 0.0154344551, -0.0370807238]
07 Apr, 2021
Join Pandas DataFrames matching by substring 07 Apr, 2021 Prerequisites: Pandas In this article, we will learn how to join two Data Frames matching by substring with python. Functions used: join(): joins all the elements in an iteration into a single string lambda(): an anonymous method which is declared without a name and can accept any number of parameters find(): gets the initial appearance of any requisite value merge(): merges two dataframes Approach Follow the below steps to join two data frames matched by substring. Create two DataFrames. Join two dataframes using cartesian product Join a duplicate column including equal values in all the DataFrames Join the new column At last, remove the added column in each DataFrame. Then we need to add a new column to the Data frame. To do this we will use the “lambda” along with “find” functions where the output is greater than zero. Now we print the joined data frames matched by substrings . Below is the implementation. Python3 import pandas as pd dataFrame1 = pd.DataFrame([['PQR', 'B1'], ['QRS', 'B2'], ['RDE', 'B3']], columns=['work_name', 'tag_name']) dataFrame2 = pd.DataFrame([['RR', 'T1'], ['QR', 'T2'], ['HG', 'T3'], ['PQ', 'T4']], columns=['sub_work_name', 'extra_tag_value']) dataFrame1['join'] = 1 dataFrame2['join'] = 1 dataFrameFull = dataFrame1.merge( dataFrame2, on='join').drop('join', axis=1) dataFrame2.drop('join', axis=1, inplace=True) dataFrameFull['match'] = dataFrameFull.apply( lambda x: x.work_name.find(x.sub_work_name), axis=1).ge(0) print(dataFrameFull[dataFrameFull['match']]) 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 !!/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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames/How to Merge DataFrames of different length in Pandas ?/Join Pandas DataFrames matching by substring
https://www.geeksforgeeks.org/join-pandas-dataframes-matching-by-substring/?ref=next_article
Pandas
Join Pandas DataFrames matching by substring
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, Join Pandas DataFrames matching by substring, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, 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 !!, Best Practices For SQL Query Optimizations, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, How to Merge DataFrames of different length in Pandas ?, Floating Point Operations & Associativity in C, C++ and Java, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[-0.00450053113, 0.0215822216, -0.00880907, 0.0356202647, -0.0113388542, -0.0186232775, -0.00672538625, 0.0129651437, -0.0382629856, 0.0296120271, -0.00801286567, -0.0269918945, 0.0137782888, -0.0102377208, -0.0542548373, 0.0141396867, -0.0177197829, 0.0376531258, 0.0289795808, 0.00601388421, 0.00287706475, -0.020554496, -0.0127957389, -0.00123242277, 0.0318255872, 0.0316448882, -0.0180021245, 0.00245214021, -0.0197526459, 0.0152012929, -0.000215991618, -0.0247331578, 0.0159353819, 0.0113049736, -0.0121407053, 0.00451182481, -0.00325822644, 0.0480207242, 0.0208481327, -0.0180247128, -0.0330904797, 0.0424416475, 0.00773617066, -0.0377660654, -0.00179569505, 0.0476141535, -0.0197074711, 0.0120616499, 0.00808062777, -0.00653339364, 0.00896153506, -0.00439324137, -0.00694561284, -0.00844767224, -0.0208029579, 0.034829706, 0.00169264025, 0.00249025645, 0.0267660208, -0.00814274326, 0.00400078576, -0.0116099026, 0.052628547, -0.00182392925, 0.00417583808, 0.0209158938, -0.0390987173, -0.0299282502, 0.0221130252, -0.0154836345, 0.0138460509, 0.0187023338, 0.0526737198, -0.00312834932, -0.0216499828, -0.0297023766, -0.0333615281, 0.0167259388, -0.0176520217, 0.0526737198, 0.0184877533, -0.0382855721, 0.0203399174, 0.0216838643, 0.0366366953, -0.00161781954, -0.0171551, -0.0486983471, 0.0101868985, -0.0528092459, -0.0111863893, -0.0118696569, 0.0212885868, -0.00963350851, 0.0120842373, 0.0171551, -0.000295929698, 0.00976903271, -0.0220113806, 0.0232649799, 0.000489510421, 0.00233496819, 0.0214241091, -0.0100852558, 0.0432096161, -0.00645998446, 0.0104297129, 0.0484273, -0.00370150339, 0.000454923516, -0.0167711135, 0.00954315905, -0.0427126959, 0.0413800403, -0.0115477871, -0.0187249202, 0.0124456352, -0.0110452184, 0.0486079976, -0.0124004604, 0.0442938097, 0.020068869, 0.00133900682, 0.038534034, 0.00729571702, 0.0101756053, -0.010497475, 0.00842508487, 0.0357557908, 0.026653083, 0.0105426498, -0.0552938543, -0.0310802069, 0.00888247881, 0.0421254262, 0.0297249649, -0.0353040434, 0.0068947915, 0.0102094859, 0.000917611469, -0.00371562061, -0.0220452622, 0.0209723637, 0.0251849052, 0.025727002, 0.00974079873, 0.0110621592, 0.0196510032, 0.000197462927, -0.0570104942, -0.0314641893, -0.0615279675, 0.00483369501, 0.0602630749, 0.0114348503, 0.0241007116, -0.00847026, -0.0372013785, 0.0443841591, -0.00892200693, -0.00683832308, -0.0359364897, 0.0399796255, 0.0380145237, -0.0253656041, -0.0175729655, -0.018103769, -0.0151674114, -0.0431418568, 0.0238748379, -0.000338457467, -0.0412896909, 0.00320175826, 0.0229713432, -0.00202580378, -0.0145575525, 0.00122395251, -0.0453780033, -0.0194590092, 0.0166694708, -0.056513574, -0.0440001749, 0.0322999246, -0.0200124, 0.00531649962, -0.0114292037, 0.0171776861, -0.00560166501, 0.0452198945, -0.0351685174, -0.0010107843, -0.0190863181, 0.0291828681, 0.0201592185, -0.0245072842, 0.0211191811, -0.0280760881, -0.012129412, 0.0580946878, 0.0362978876, 0.0106160585, -0.0573267154, -0.0170760434, 0.00522050355, 0.056197349, 0.0067592673, -0.0293183923, -0.0272629429, 0.0118244821, -0.014094512, 9.07905924e-05, 0.0245298725, -0.000988902757, -0.0161612555, 0.0126150399, -0.00351798115, -0.0265853219, 0.0165000651, 0.0149528319, 0.0102320733, -0.0195041839, -0.0216161031, -0.00781522598, 0.00741994753, -0.00874695461, -0.0191879608, -0.0530802943, 0.00187757425, -0.0428256318, -0.0137105267, 0.0235586148, -0.0223840736, -0.0315997154, -0.00485628238, -0.0273532923, -0.0375401899, -0.02437176, -0.011175096, -0.0176859014, -0.00749900332, 0.0417188518, -0.0176181402, 0.0182731729, -0.00462476164, 0.0314416029, 0.0125698652, -0.0105878245, 0.0452198945, 0.013416891, 0.0328194313, -0.00401207944, 0.00241402397, -0.0241458863, 0.0370884426, -0.0159692634, -0.0020568613, 0.00820485782, 0.00577671686, -0.037675716, 0.037359491, 0.00828391407, -0.00462758541, -0.0222937241, 0.0371110328, 0.0199559312, 0.00611552736, -0.0128860883, -0.0337455161, 0.0130103184, 0.0282793734, 0.0179908313, -0.00296741421, 0.00102207798, -0.0198091138, -0.011937419, -0.0269241314, 0.0256366525, -0.00667456444, 0.0472527556, 0.041244518, -0.000777146313, 0.0323450975, 0.0355525, 0.0146591961, 0.0127505641, -0.0173470918, -0.00149500079, -0.00202015694, 0.00756111834, -0.0469365306, 0.00761758676, -0.0257947631, 0.0353492163, 0.0187249202, -0.00837426353, 0.0210965928, 0.0110000437, -0.0236263778, -0.0228697, 0.00939634163, -0.0259528756, -0.0154610472, -0.0190185569, -0.0165113602, -0.0188491512, -0.0108475788, 0.0159015, 0.030041188, -0.0171325114, 0.00194957142, 0.0255237166, -0.0290925186, -0.030470347, -0.00586706633, -0.0496470146, 0.0209723637, 0.0343327858, -0.0206900202, 0.00760064647, -0.0339488, -0.00629622629, -0.0243039988, -0.0503246374, 0.0299282502, 0.0787395313, -0.0441131108, -0.00502286386, -0.00152464677, 0.0232198052, 0.00852108095, 0.0049833362, -0.0176859014, -0.00352362799, 0.0133152483, -0.0284826607, 0.0308091585, 0.0204754416, -0.0226777084, 0.037675716, 0.00647692522, 0.0266756713, 0.00517815212, 0.00875824876, -0.00688914442, 0.00211191806, 0.0196848828, 0.014772133, 0.0103337169, 0.0242136493, -0.0148286009, 0.000631034316, -0.00995537825, -0.00100160821, 0.0282341987, -0.0298604891, -0.014896363, -0.00966174249, -0.00904623698, 0.00241120066, 0.0224744231, -0.00352645153, -0.0379467644, 0.0168275833, 0.00183239952, -0.0117793074, -0.0055310796, -0.0218871515, -0.00315940683, 0.00121830567, -0.0364559963, -0.0676265508, 0.0127505641, 0.024439523, -0.036388237, -0.00362527114, 0.02437176, 0.0298153143, 0.0108814603, -0.0127731515, 0.0104071256, -0.0575977638, -0.0100683151, -0.0216725711, -0.0174713228, -0.017414853, 0.0396408141, -0.000779969734, 0.0220000874, 0.00770793622, 0.0285955966, 0.00720536755, 0.0137557015, 0.00404313719, -0.00907447189, 0.0373820774, 0.012129412, -0.0315093659, 0.0193686597, 0.0137557015, 0.0238974262, -0.0040261969, 0.0175277907, -0.0142413303, -0.0064204568, 0.0179682449, -0.032435447, 0.00713195885, 0.0231746305, -0.00377773587, 0.023694139, 0.00155852782, 0.0391664803, -0.0189620871, -0.0409508832, 0.00643175049, 0.00970691722, -0.0131345494, 0.0309672691, -0.0213337615, 0.0137444083, -0.000745382858, -0.0127618583, 0.0309898574, -0.0139025198, -0.0305606965, 0.00473205186, 0.0157320946, 0.0496018417, 0.0031424663, -0.00460217427, 0.0342876092, -0.0412671044, -0.000439747644, 0.00830650143, -0.0261335745, -0.0119035384, 0.0148624824, 0.0186345708, 0.0249138568, -0.0228132326, 0.014591434, -0.00739171309, -0.00666891783, -0.0465751328, -0.0053955554, 5.32920494e-05, -0.0272177681, 0.0201479234, 0.0250945557, 0.0186006892, -0.0215822216, -0.0283697229, -0.0804109946, -0.00320175826, 0.0210965928, -0.0216161031, -0.0201479234, 0.000949374924, 0.0338358656, 0.0260432251, -0.00995537825, 0.00216273963, 0.047207579, -0.0404313728, 0.000926081731, 0.0129651437, -0.000910552917, -0.00583883235, -0.0171776861, -0.00472358149, -0.0143316789, 0.00502568716, -0.00112442696, -0.002807891, -0.0106894681, 0.0358235501, 0.00588965369, 0.0119487131, 0.0155965714, 0.0116776647, 0.0462363251, 0.0432773791, -0.0324806236, 0.011175096, 0.0078491075, 0.0240781251, 0.0413574539, 0.0334744677, -0.00599129684, -0.00345304259, 0.0217629205, 0.0308317449, -0.024868682, -0.0414252169, -0.0284600724, 0.0173922665, -0.0220904369, 0.00189874985, 0.00425489387, -0.0241684746, 0.0384436846, 0.0126940962, 0.012987731, 0.0400248, 0.0539386123, -0.0214918721, -0.0448359065, 0.0462137349, -0.000316223, -0.0271274187, 0.00557907764, 0.0373820774, 0.00247331592, 0.0208707191, -0.00567507418, 0.0135185346, -0.00329775433, 0.0222485494, -0.0214128159, -0.0407927707, 0.025117144, -0.00312834932, 0.0169179328, 0.00609858707, -0.0279179756, -0.00660680234, -0.014647902, -0.0235812031, 0.000915493874, 0.00896718167, -0.00869048666, 0.0136766462, 0.0101021966, -0.00360268378, 0.0018648688, -0.0291602798, 0.0159127936, 0.0278276261, 0.0110452184, -0.0171551, -0.02185327, 0.0313060805, -0.0321644, -0.0449036695, 0.00992149767, -0.0105031217, 0.0216725711, -0.0384888612, -0.00278248033, 0.0240555368, -0.000201874514, 0.0198091138, 0.00996102579, -0.0177423712, 0.0208029579, -0.00895024091, 0.0234682653, 7.05855e-07, 0.00927211065, -0.00900106225, -0.0248009209, 0.0124117536, 0.0380371138, -0.0160370246, 0.0102603082, 0.0198881701, -0.0010609, 0.0194703043, -0.032435447, 0.0472979285, 0.0228922889, -0.0141622741, -0.00961656775, 0.0101812519, -0.0426223464, 0.01163249, -0.00477440283, -0.00295329723, 0.00630187336, 0.00781522598, -0.0102998354, 0.0121519994, 0.00952621829, 0.0128860883, 0.0430063307, -0.0122423489, -0.00932293199, -0.0219210312, -0.0218984447, 0.0152464677, 0.00772487698, 0.0292732175, 0.0150431814, -0.0256818272, -0.0253430177, -0.00161923131, 0.00500874687, -0.0189395, 0.031803, 0.00442712242, -0.00912529323, 0.00616070209, 0.0348748825, -0.00068185589, 0.0169518124, -0.0270596556, 0.00756676542, -0.0240555368, 0.0189620871, -0.0167824086, -0.0441357, 0.00417301478, 0.0283019617, -0.0503698103, 0.0152238803, 0.0050539216, 0.0442938097, 0.00669715181, 0.0101473713, 0.00897847489, 0.0216386896, -0.0261787493, 0.0221356116, 0.00329210749, 0.0305381101, 0.0130103184, -0.0220226757, 0.0168953445, -0.0121745868, 0.00774746435, 0.0233101547, 0.000916905585, 0.0349878184, 0.0090801185, 0.0208368395, -0.0196397081, -0.020622259, 0.0204528533, 0.0151899988, 0.0056637805, 0.0483821221, 0.0146704894, -0.00368456286, 0.0649612471, -0.0120277684, 0.0069682, -0.00223614858, -0.010525709, 0.000857613806, 0.0208594259, -0.019323485, -0.0213902295, -0.0178440139, 0.0216612779, 0.00282341987, -0.0214466974, -0.00582753867, 0.0185329281, 0.0157320946, 0.0113727357, -0.000191639629, -0.00419560215, -0.00352645153, -0.00733524468, 0.0443615727, 0.0132813668, 0.0345134847, 0.0120277684, 0.00335986959, -0.0134959472, 0.0143542662, -0.0267886072, -0.0367044583, 0.0160596129, 0.00592353474, -0.0195380654, -0.0161160808, 0.0298153143, 0.0143768536, -0.0253656041, -0.0228019394, -0.0269241314, -0.0402732603, -0.0253656041, -0.0192218423, -0.0221694931, 0.00772487698, -0.0372465551, -0.0231520422, -0.00288977032, -0.0124795157, -0.0237393137, 0.00695126, 0.0176520217, 1.37421139e-05, -0.00190439669, -0.00848155376, 0.0194815975, 0.00507650897, 0.0233327411, 0.0228584073, -0.00155288097, 0.0351233445, -0.00731265731, 0.00827262, -0.000587271352, -0.0191202, -0.0103506576, 0.00978597347, 0.0326839089, 0.00342480838, -0.0112936795, -0.00885989144, 0.0226212405, -0.0285955966, -0.00633575441, -0.00420971913, 0.000713266432, -0.000131112567, -0.007510297, -0.024191061, 0.0200575739, 0.020678727, -4.98068912e-05, -0.0329549573, -0.00643175049, 0.0126376273, 0.0034135147, 0.0027302471, -0.0279179756, 0.00204274431, -0.0460556261, -0.0341520868, 0.013111962, 0.00163899525, -0.00023928484, -0.00408266531, -0.007510297, 0.00199333439, -0.0361849479, -0.0287988819, 0.00825003255, -0.0405894853, 0.0193347801, 0.00680444203, 0.0375401899, 0.00653339364, -0.00529108895, -0.0275565777, 0.00917611457, 0.0173809733, -0.0208255444, 0.0512281321, 0.0191540811, -0.0135750026, -0.00392737705, -0.019447716, -0.0268563703, -0.0127392709, 0.0231294557, -0.00955445319, -0.0132474862, 0.0224292483, 0.0129764378, -0.00562142907, -0.0214128159, -0.0528995954, 0.0125924526, 0.00134818302, -0.00644304417, 0.0180811808, 0.00424077688, 0.0418543778, -0.0487435199, -0.0132700736, 0.00229261699, 0.0256818272, -0.0120955305, -0.00236743758, 0.02437176, 0.0114630843, -0.0229261685, 0.0147495456, -0.0189282075, 0.0226890016, -0.0134281851, 0.0179569498, -0.0425094105, -0.00417019101, 0.00497768912, -0.0020469795, 0.0111694494, 0.00698514096, -0.00651645288, 0.0477045029, -0.0346715972, 0.0132248988, -0.00446382677, 0.00254107779, -0.0107967574, 0.018645864, -0.019142786, -0.00113430899, 0.0183070544, 0.00394149404, -0.0387373194, -0.00896153506, -0.000246519834, -0.0468010083, 0.0188491512, 0.00151476474, 0.00800721906, -0.0191089064, 0.0292054545, 0.038534034, 0.0288214702, -0.0203399174, 0.00573154213, -0.00803545304, -0.0217516273, -0.016872758, -0.0226212405, 0.0435936041, -0.0060759997, 0.0484724715, 0.000202050986, -0.0284374859, 0.00205827318, 0.0538934395, 0.0245072842, 0.0139025198, -0.00775875803, 0.00639222283, -0.0131006679, -0.00641481, 0.0255914778, 0.0613924414, -0.0203850921, 0.0121407053, 0.0528995954, 0.0253656041, 0.00274436409, -0.0404313728, -0.0193008985, 0.0123439915, 0.0295216776, 0.00123948138, 0.00995537825, 0.0283471365, 0.0482466, 0.0177875459, 0.0209610686, -0.00821050536, -0.0130893746, -0.0291828681, 0.0157546829, -0.00949798431, 0.0062115239, -0.0113727357, -0.0123552857, 0.0344231352, 0.00304364669, -0.00545202382, 0.00622846419, 0.014399441, -0.00236884924, 0.00174346182, 0.0256592408, 0.00968997739, 0.000383985112, -0.0211530626, -0.00663503679, 0.00754982466, 0.00954315905, 0.0239200126, -0.00449770782, -0.0115986085, -0.0248460956, 0.0210288316, -0.011937419, -0.0216499828, 0.0258173514, 0.00594612211, -0.00299847196, 0.0316900648, 0.0278050397, 0.0416059159, 0.00562707568, 0.0429611579, -0.0249590315, 0.0184425786, 0.0051866225, 0.00631316705, -0.031328667, -0.00120771781, -0.0164887719, 0.00572871882, 0.00617764285, -0.0225986522, -0.0167259388, 0.00911964662, -0.0114856716, -0.061437618, -0.00624540495, 0.0167937018, -0.029973425, 0.0188039765, -0.011175096, -0.0266982578, 0.0258399379, -0.00279236236, 0.0279179756, -0.0240103621, 0.0375176035, 0.00366479903, 0.00993843842, -0.00265683816, -0.0104410071, 0.00167852314, -0.0436839536, 0.00962221529, -0.0203963853, -0.0175052024, 0.012863501, -0.0178891886, 0.0099666724, -0.0442712232, -0.00997796562, -0.00832344219, -0.0141622741, -0.0201592185, 0.0109435758, -0.0109774563, -0.00225026556, -0.0225760657, -0.040069975, -0.0411315821, 0.0149076572, 0.00185922196, -0.0468461812, -0.00873566139, 0.0309220944, -0.0153594045, 0.000194639506, -0.00289965211, -0.0267208461, -0.0143655604, 0.00920434855, -0.0147156641, 0.016308073, 0.0203512106, 0.0187249202, -0.00508780265, -0.0463944338, 0.0077135833, 0.00146959, -0.0205770843, -0.0329549573, 0.000461629155, -0.0015839386, 0.00825003255, -0.0190411434, 0.00363656483, -0.00490992703, -0.0238748379, -0.00560731208, -0.00438477099, 0.0177536644, -0.00330057787, 0.00668585813, 0.0172793288, 0.00295894407, -0.00407137163, -0.0369980931, 0.00529955933, 0.0245976336, 0.00354621536, -0.00531649962, -0.0235586148, 0.0237167273, 0.0343102, 0.00627363892, 0.0231972169, 0.0121632926, 0.021977501, 0.0035942134, -0.029792726, -0.00608729338, 0.0145462593, -0.00904059, -0.0164210107, 0.0247331578, 0.0126037467, 0.00290247565, -0.00371844391, -0.00506239198, 0.0230052248, -0.0211191811, -0.0113332076, -0.00918176118, -0.04370654, 0.0132926609, -0.0321418121, 0.0402280875, -0.0293409787, -0.00741430046, -0.00550002186, 0.0120390626, -0.00214579911, 0.00837991, -0.0274436418, -0.0291828681, 0.00815403648, 0.00289400527, -0.0336325765, -0.00734089175, 0.0190298501, 0.00293353316, 0.027330704, 0.00436500693, 0.0193347801, 0.0028685946, 0.0024563754, -0.00844202563, 0.00775875803, 0.00667456444, -0.0214015227, 0.0123778731, -0.012310111, -0.00710372441, -0.0139928693, -0.0134846531, -0.0033485759, 5.38214408e-05, 0.010678174, 0.00208791904, -0.00733524468, -0.038466271, 0.0152012929, 0.0183861107, 0.0136540588, -0.00736912573, 0.00279942085, -0.00752723729, 0.0267208461, -0.0338132754, 0.0295442659, 0.00326952012, 0.0271274187, 0.0124230478, -0.0149528319, 0.0217516273, 0.0103280703, 0.0220452622, -0.00843637902, -0.00963915512, -0.014647902, 0.0139702819, -0.0176971965, 0.0195380654, 0.000875966041, 0.00998361316, 0.0195719469, -0.0187023338, -0.00278248033, -0.00549155148, -0.00824438594, 0.00175616716, 0.0151109435, 0.00380879338, -0.0127957389, -0.00178016629, -0.0131232552, 0.0167598203, 0.0198655818, 0.0112089766, -0.00101007847, 0.00313681946, 0.00367891602, -0.0412896909, -0.0203286223, -0.0242362358, 0.0275339913, -0.0305381101, -0.0192218423, -0.0301541239, 0.00913094, -0.000751735526, 0.016251605, -0.0110678058, -0.0100570219, 0.0236715525, -0.0168501697, 0.00303517631, 0.0139476946, 0.00678750128, 0.00309164473, 0.032570973, -0.0339488, 0.00358009641, -0.00510474294, 0.0206448454, -0.0220565554, 0.00306058722, 0.000245990464, -0.0131458426, -0.0146027273, -0.00892200693, -0.0169179328, 0.00828391407, 0.0185103416, 0.00308599789, 0.0084872, -0.0139928693, 0.00161217269, 0.00322999223, 0.00135453569, -0.0289344061, 0.0020469795, 0.0022855585, 0.00279659731, 0.004661466, -0.0011067806, -0.0225760657, -0.00359986024, 0.0110621592, 0.0234456789, 0.0123326983, 0.0184877533, 0.023016518, -0.00133336009, 0.000851966965, 0.0232198052, -0.00347845326, -0.00182392925, -0.00911399908, 0.0263368599, 0.0057371892, -0.00651645288, 0.00673103286, 0.0369303338, 0.00196086522, 0.000825144467, -0.00849284697, 0.0223727785, 0.0149302445, 0.00224179542, -0.00542943645, -0.0428256318, -0.0167033523, 0.000658209785, 0.0128409136, 0.00601953128, 0.020001106, -0.00565813342, -0.0256366525, -0.021232117, 0.0058727134, -0.0201253369, 0.0235360283, -0.00215709279, 0.00187616248, 0.0134055978, 0.0311027933, -0.00758370571, 0.0261335745, 0.00748206256, -0.0193121918, 0.0139702819, 0.0290925186, 0.014094512, -0.0284148976, 0.0043000686, -0.0149189504, -0.0170308687, 0.00472640479, -0.0112089766, -0.0173470918, -0.0169179328, 0.0181489438, -0.0176407266, -0.00777005171, -0.00452594226, -0.015641747, -0.0363430604, -0.00551978592, -0.040069975, -0.0201140437, -0.00177169603, -0.0219549127, 0.0162967797, 0.02240666, -0.0646450222, 0.0101586645, 0.00493816147, -0.028189024, -0.00131006679, 0.0213224664, 0.00134677126, -0.0320966356, 0.0283923112, 0.0068947915, -0.0115534337, 0.00103972433, 0.00306905736, -0.00324693276, -0.006555981, -0.00420407206, 0.0223727785, -0.0104410071, 0.010621706, 0.0208933074, 0.00496921921, -0.0337003395, -0.033926215, 0.00701337494, -0.00896153506, -0.0136314714, -0.00744818151, 0.0224970095, -0.0186119843, 0.00228697015, -0.0336551666, 0.0110113379, 0.00589530077, -0.00090137677, -0.0191992559, 0.00101360772, -0.0328646079, 0.0117454268, 0.00299282512, 0.00149923598, -0.0242362358, -0.0110056903, -0.0184199922, 0.0135750026, -0.0191766676, -0.0217516273, 0.000311458512, 0.00407137163, -0.0150883561, -0.0358009636, 0.004571117, -0.02074649, -0.000693149574, -0.0128860883, -0.018770095, 0.00656727469, 0.00845331885, 0.0322999246, 0.000556919549, 0.00896153506, -0.00621717051, -0.016680764, -0.0096278619, 0.0195606537, -0.0100062, 0.00782652, -0.00892200693, -0.00407984154, -0.013541122, -0.0326387323, 0.0174487345, 0.00979726668, -0.0172002744, 0.00194957142, 0.00459935097, -0.00547178788, -0.00236320239, -0.00490992703, 0.0034812768, 0.00809192099, -0.00405725418, 0.008464613, 0.0190750249, 0.00103831268, 0.00068185589, -0.00307752774, -0.00667456444, 0.0116663706, 0.0432322063, -0.0164887719, 0.0166242961, 0.0189620871, -0.0107685234, -0.00414478034, -0.000430218613, 0.0217629205, -0.0141170993, 0.00415325072, 0.041176755, -0.00201309845, 0.00299847196, 0.00196227687, -0.0170308687, -0.012863501, 0.00614940841, 0.00421254244, -0.0147834262, -0.013541122, -0.0169631075, 0.0235812031, -0.00732395099, -0.0314190164, -0.0103111295, -0.020554496, 0.00451464858, -0.0137669956, 0.00391326, -0.012863501, -0.00190863188, 0.0156530403, -0.00520638609, -0.0227793511, 0.00301541248, -0.00368173956, 0.00960527454, 0.0281212628, -0.0203512106, 0.026223924, -0.0141622741, -0.00825003255, 0.000289929943, -0.0148850698, -0.0254107788, 0.0306736343, -0.0110508651, -0.0256818272, 0.00828956068, -0.00446665, -0.0338810384, 0.00820485782, 0.00945845619, 0.00159382052, -0.00196368853, 0.00542378938, -0.00550002186, -0.0221017301, 0.00263425079, -0.010249014, -0.0118583636, -0.038714733, -0.000161464326, 0.00966174249, -0.0266304966, 0.0100118471, 0.0131571367, -0.00818227, 0.00631881366, -0.0103506576, -0.034649007, -0.00439324137, 0.0223614853, 0.00117877778, 0.0185781028, 0.0146817835, 0.010401479, 0.00954315905, 0.015269055, 0.00794510357, 0.00828391407, -0.0236715525, -0.0115760211, -0.000501862902, -0.0148398951, 0.00591224106, 0.0187362134, -0.0089333, -0.01163249, -0.00417301478, 0.012682802, 0.0203963853, -0.0142074488, -0.0311253816, -0.00534473406, -0.0103280703, 0.00353492168, -0.025727002, 0.0213111732, 0.0122988168, 0.00686091045, 0.00476028584, -0.0146704894, -0.0058727134, -0.00842508487, 0.00350951101, -0.0241684746, 0.030651046, 0.00235896721, -0.0102603082, -0.0214128159, 0.00511039, 0.0231294557, -1.80654752e-05, 0.0145349652, -0.0378338248, 0.00699078757, -0.00193545432, -0.00445818, -0.00898412243, 0.0208820142, -0.0175729655, 0.00735218544, -0.0141170993, 0.00520356279, 0.0395052917, -0.0280535, 0.00719407387, -0.0100683151, 0.00563836936, 0.017358385, -0.00906882435, 0.00992714427, 0.0164661855, 0.0175729655, 0.0121971741, 0.00124442228, 0.00337681, 0.012807033, 0.00688914442, 0.0205657911, -0.015573984, -0.00353774521, -0.0160370246, 0.0090801185, 0.018103769, 0.00705854967, 0.00749335624, 0.00322434539, 0.00139618118, 0.0290699303, 0.00550284516, 0.0200575739, -0.0187926833, 0.0167485271, 0.000124054015, -0.0167598203, -0.0430063307, 0.0234005041, -0.00162205473, -0.0118018948, 0.0155288093, 0.0141735682, 0.0215822216, 0.0425545834, -0.0134507725, 0.0266756713, -0.00630752, -0.0397085771, 0.00458805729, 0.0152577609, 0.0141396867, -0.0169631075, 0.014647902, 0.00585012604, 0.0114292037, 0.0284600724, -0.0286407713, 0.0124230478, 0.0105765313, -0.0208707191, 0.0114630843, 0.0127957389, -0.00815968309, -0.00221214956, -0.00471511111, -0.0307865702, 0.00267236703, -0.0178891886, 0.0207690764, -0.00790557545, -0.0104748877, 0.00575977657, -0.00145123783, -0.0190411434, -0.0314867795, -0.0210740063, -0.0301767122, 0.0178553071, 0.00104466535, -0.01022078, -0.0118244821, 0.00949798431, -0.0228132326, 0.016929226, 0.0074425349, 0.0284374859, 0.00101925456, -0.019267017, 0.0500987619, 0.000382926315, -0.00248319772, 0.0011279562, -0.031147968, 0.000358574325, -0.00502851093, -0.00405160757, -0.0117680142, 0.010000553, 0.00482522463, -0.0106612332, 0.0142977983, -0.0238748379, -0.0276695155, -0.0134620657, 0.00583318528, -0.018036006, -0.00564119313, 0.00989326369, -0.0345586576, -0.0183183476, 0.0103167761, -0.00132065464, -0.00626234524, -0.00228697015, -0.0119825937, -0.0145349652, 0.0245072842, 0.00258907606, 0.0192783102, 0.012558572, 0.0083290888, -0.00986502878, 0.0142413303, -0.013360423, 0.0139364, -0.0133378357, 0.00714325206, -0.00345868943, -0.0292054545, 0.0474786274, 0.0268111955, 0.0123778731, 0.0090123564, 0.0110678058, -0.00385114481, -0.00711501809, -0.00481957756, -0.0222598426, -0.0119148316, -0.0059404755, -0.00318764104, 0.00776440464, 0.0152916424, -0.00509627303, -0.0135862967, -0.00316505367, -0.0172567423, -8.14821324e-05, -0.0180021245, -0.00124301063, 0.0298379, -3.17634726e-06, 0.0274210535, 0.00668585813, 0.00401490321, -0.00228414661, 0.00139406358, -0.00947539695, -0.0104635945, -0.00896153506, 0.0156191587, 0.00990455691, -0.0139815751, -0.0121632926, 0.00705854967, 0.00940763485, -0.00260319305, -0.0199898127, -0.0169405192, 0.0191879608, 0.00271189469, -0.0124456352, 0.0109379282, -0.0121519994, -0.00364785851, 0.0165339466, -0.00180698873, 0.0351459309, 0.00840249751, 0.0330904797, 0.0186910387, 0.0367270447, 0.0136427647, -0.0233101547, -0.0104184197, 0.0134846531, 0.00503415754, 0.0090123564, -0.00173075637, 0.00155429263, -0.0118922442, -0.018036006, 0.00765711488, -0.00419560215, -0.00690043811, -0.0112259174, -0.000173375622, 0.0135637093, 0.0355525, -0.00308882142, 0.0114235571, -0.0144559098, 0.0166130029, 0.0100062, 0.00252837245, -0.0144559098, 0.00167428795, 0.00780957937, 0.00936810672, 0.0124795157, -0.0100062, 0.0140493372, 0.022655122, -0.00271048304, -0.0196622964, 0.0079225162, 0.0122536421, -0.00608164631, 0.00397537509, -0.00559037132, 0.0102377208, -0.00414760364, 0.0146930767, 0.00233496819, 0.00931163877, -0.00797333755, -0.0172115676, -0.00635834178, -0.00210768287, 0.0232198052, -0.00858319644, 0.00740300678, 0.0119261257, -0.0115647279, 0.00457958691, 0.0117228394, -0.00289682881, 0.0035518622, -0.0147269582, 0.00191286695, -0.0114404969, 0.0106668808, -0.00896153506, -0.00233779172, 0.00369585655, -0.00275001093, -0.0167598203, -0.00126277457, 0.0151222367, -0.00495792553, 0.000375161908, -0.00489863334, 0.0011279562, 0.00747641595, -0.0480659, 0.00978032686, 0.0178440139, 0.00700208126, 0.0119035384, -0.00935681351, 0.0012493633, -0.0238522515, 0.000461629155, 0.028685946, -0.0102716014, -0.0133491289, -0.00355750904, 3.23149216e-05, 0.00143570895, -0.0111863893, -0.00288553513, -0.00231661601, 0.0207577832, 0.0086678993, -0.00127830333, -0.0193686597, 0.0210288316, -0.0110056903, -0.0177762508, -0.0114630843, -0.0018112238, -0.00446665, 0.0182957612, -0.00159240887, -0.00517532881, -0.0206561405, -0.0112936795, 0.00562142907, 0.00126136281, -0.0162290167, 0.00408548862, 0.00255801831, -0.00761758676, -0.0239651874, 0.000909847033, -0.0104071256, -0.00404313719, -0.0141509809, 0.00518379873, 0.000813144899, -0.0365463458, -0.0199107565, 0.0262013357, 0.00521203317, -0.027579166, -0.0173809733, 0.00841379166, -0.0153932851, -0.00391043676, 0.00479981396, -0.00811450835, 0.0120729432, 0.0072392486, -0.0105426498, -0.00870742649, -0.0130329058, 0.00336269313, 0.0200801622, 0.00254813652, -0.0144559098, 0.0124230478, 0.0207351949, 0.024868682, 0.00630752, -0.0170421619, -0.0305155218, -0.0161047876, 0.0162741914, 0.00678750128, -0.00663503679, 0.00954880565, 0.00914223399, -0.0397763401, -0.00196933537, 0.00735783204, 0.00468687713, 0.000973374, -0.0076458212, 0.0140267499, -0.00683832308, -0.00215850445, 0.0177875459, -0.00713760545, 0.0131458426, -0.00527414819, -0.00821615197, -0.000974785711, 0.0102038393, 0.00583883235, -0.00658986205, -0.000290635769, -0.0381048732, 0.00183804636, 0.00341069116, 0.00243237615, 0.00241402397, 0.00140112208, -0.0137331141, 0.0245750472, 0.0220452622, -0.00828956068, -0.0112372115, -0.00112372113, 0.00231096917, -0.00141665095, 0.00705854967, 0.0142639177, 0.00252131396, -0.00611552736, -0.0032074051, -0.0145123778, -0.000239814224, 0.0225083027, 0.000511744875, 0.0238070767, 0.0123891663, -0.00816533063, 0.0146366088, 0.000875260157, 0.00499745319, -0.00738041941, 0.00246202224, 0.00443276903, -0.0116437832, -0.00341069116, -0.0111412145, 0.00286012422, 0.00065609219, -0.00189451477, 0.0115986085, -0.000919023179, -0.00178722478, 0.00536449766, 0.026653083, 0.0221920796, -0.00451747188, 0.0044355928, 0.00986502878, -0.0222146679, 0.0135750026, -5.14832973e-05, -0.0135637093, 0.0221243184, 0.00659550866, -0.0233779158, 0.0229713432, 0.0124230478, -0.0152464677, -0.00230532233, 0.000892200682, 0.00711501809, 0.00192839582, -0.00253260764, -0.00310293841, -0.010373245, -0.00102278381, 0.0155062219, -0.021785507, -0.0120051811, -0.00295894407, -0.0296346154, -0.0248460956, -0.0201479234, -0.0060759997, 0.0138460509, 0.00225450075, -0.0108645195, 0.0256366525, -0.00656727469, -0.00339657417, -1.38744617e-05, 0.031147968, -0.036004249, 0.000782793155, 0.000216873945, -0.0119713005, 0.00761758676, 0.017539084, 0.00595176918, -0.00519226911, -0.018837858, -0.00626234524, 0.0188943259, -0.00616070209, -0.0122988168, -0.000417866133, -0.0189846754, 0.0213902295, -0.0206448454, 0.00373820798, -0.00769664254, 0.00880342349, 0.00444406271, 0.0093511669, -0.00194392458, 0.0123552857, -0.0258399379, -0.00019111023, -0.000284106616, -0.0174713228, 0.0383985117, -0.00323846261, 0.0176859014, -0.00812015589, -0.0154045792, -0.0152803482, -0.010277248, -0.00643175049, 0.00216273963, 9.61727419e-05, -0.000573154248, -0.0175616723, 0.0223163106, 0.00826697331, -0.0035942134, 0.00937940087, -0.0144333225, -0.0137557015, -0.00220650272, 0.0168162882, -0.0195041839, 0.0195380654, 0.00896718167, 0.00586706633, 0.00893894769, -0.026901545, -0.0368173942, 0.0272855293, 0.0125698652, -0.00729007, 0.0164435972, 0.00463040872, -0.0043028919, 0.015641747, -0.0128183262, -0.00961656775, -0.00619458314, -0.0156191587, 0.000424571772, -0.00815968309, 0.0214354042, -0.0254559536, -0.014094512, -0.00906317774, 0.0174600277, 0.0013848875, 0.00319328788, 0.022530891, -0.00774746435, -0.00986502878, -0.0134959472, -0.0146253146, -0.014399441, -0.00437912438, 0.0261787493, -0.00510191964, -0.0145123778, -0.000170905128, 0.0210288316, 0.0122197615, -3.29546056e-05, -0.0398666896, -0.0163306613, 0.0210740063, 0.00844202563, 0.0015557044, 0.00888247881, -0.0295668524, -0.0281664375, -0.00631881366, -0.0220565554, -0.00212744693, 0.0129312631, -0.00895588752, 0.000978315, -0.0112259174, -0.0115873152, -0.0140041625, 0.0223501921, 0.0103619508, -0.0119035384, -0.0207690764, 0.0111468621, -0.0203399174, 0.0113106202, -0.00176887261, 0.00974079873, -0.016804995, 0.000880201173, -0.00975209195, 0.0113106202, -0.00045139424, -0.00835167617, -0.0198429953, -0.0119035384, -0.000368456298, 0.00494380808, -0.0202495679, 0.00422101282, 0.00526850158, 0.00561295869, -0.00356033258, -0.0394375287, 0.00961092114, -0.00674232654, -0.0166017096, 0.00276977499, -0.00660680234, 0.00205262634, 0.0200575739, 0.0110734524, -0.0181489438, 0.0227341764, 0.00719407387, -0.0259980503, -0.0282341987, 0.00256648869, -0.0257495884, 0.0115026124, -0.0204867348, -0.0128522078, 0.0230052248, -0.015630452, -0.00163334841, 0.00380032323, -0.00788863469, 0.00978032686, 0.0154949287, 0.00153311703, 0.0127618583, -0.00858884305, 0.0032074051, 0.0221017301, 0.00130230247, -0.024191061, -0.000496921886, 0.0169518124, 0.0170647502, 0.00535602728, 0.0186910387, 0.000858319632, 0.0094923377, -0.0220000874, -0.00618328946, 0.00122254086, -0.00363091798, 0.000608799921, 0.00671409257, 0.00507368566, -0.022463128, 0.00706984336, 0.00425207056, -0.00548308156, 0.00729571702, -0.0118244821, -0.0319611132, -0.00154723413, -0.00227426481, -0.00741994753, -0.0118922442, -0.00247331592, -0.00117877778, 0.0128973816, -0.0227567647, -0.00216273963, -0.0081935646, -0.00511321332, 0.0209836569, 0.0202947427, 0.0108080516, -0.00810886174, 0.0230616927, 0.0104184197, -0.00127618574, 0.00902929716, -0.0120955305, -0.0219210312, 0.00394149404, 0.0245072842, 0.0456490517, -0.0164774787, -0.00808627438, 0.0111638019, 0.000846320123, -0.00211897655, 0.00671409257, -0.0231068674, 0.01316843, 0.017358385, -0.0012634804, -0.00671409257, -0.0399796255, 0.0300186, -0.0179004818, 0.00141594512, 0.00436500693, 0.0062115239, -0.00656727469, 0.0201253369, 0.0238522515, -0.0065221, -0.00432265596, 0.0102433674, -0.0270370692, -0.0224292483, 0.0153932851, -0.0122536421, -0.0084872, 0.00199333439, -0.0233327411, -0.00608729338, 0.0155288093, -0.00136300595, 0.0157546829, 0.0165791214, 0.0157659762, -0.00204274431, 0.00961092114, -0.013665352, -0.0217629205, -0.00677620759, 0.00429442152, 0.00686091045, 0.00701337494, 0.00892765354, -0.0191540811, -0.0150996493, -0.0192783102, -0.00398949208, -0.0176181402, -0.0286407713, -0.0123326983, 0.0186797455, 0.00983679481, 0.0155965714, -0.00172369787, 0.00244084653, 0.0131232552, -0.0117906015, 0.0146140214, 0.00813709572, 0.00410525268, -0.0114179105, 0.00384832127, 0.00199333439, -0.000504333351, 0.0260658115, 0.0164661855, 0.0143542662, -0.0142413303, -0.0107007613, -0.0125246905, 0.00315658352, -0.0041617211, 0.0115647279, 0.0148286009, -0.00233496819, 0.00295612053, 0.0021175649, -0.00605905894, -0.0222259611, -0.00962221529, -0.00740300678, -0.00535038067, -0.000170463973, -0.00888812542, 0.00303517631, -0.0130216125, 0.0155288093, -0.0127731515, 0.0100965491, -0.0273081176, 0.0126037467, -0.00557907764, 0.0121068247, 0.00321869855, -0.00152464677, -0.00621717051, -0.00727312965, -0.0058049513, -0.0173809733, -0.00169264025, 0.0064882189, -2.33373303e-05, 0.0247105714, -0.0176746082, 0.0133378357, 0.00318764104, -0.00306905736, 0.00777569832, -0.0118131889, -0.0011604256, 0.012129412, 0.00821615197, -0.00100019644, -0.00556778396, -0.0049183974, 0.0019890992, -0.00592353474, 0.0150544746, -0.00411936967, -0.00896153506, 0.0126715088, -1.28597949e-05, -0.014218743, 0.00191004353, 0.0313512534, 0.000266636722, 0.0078491075, -0.0083290888, -0.00630187336, -0.000492333842, -0.0184199922, -0.0378338248, 0.00388502586, -0.000784204865, 0.0210288316, 0.00831214804, -0.00744818151, 0.00463887909, 0.00337116327, 0.00618893653, 0.00739171309, -0.00813144911, 0.0040967823, -0.00450053113, 0.0100513743, -0.0163193662, 0.00295329723, -0.00301258895, 0.008741308, 0.0070980778, -0.00182675268, -0.00398102216, -0.000121848214, 0.0080411, 0.019820407, 0.00787734147, -0.00877518859, 0.0362075381, 0.00268789567, 0.00213874062, -0.011451791, 0.0101643112, 0.012987731, 0.0127392709, -0.001761814, 0.00232226285, -0.00346715958, -0.00359986024, -0.00746512227, 0.00875824876, -0.00170111051, 0.00193968951, -0.0316674784, 0.00272036507, 0.00537579134, -0.0138234636, -0.00221920805, -0.00482804794, -0.00885989144, -0.00498051289, -0.0109492224, -0.00463040872, -0.00997231901, 0.0255011283, 0.0210965928, -0.00870742649, 0.00200745161, -0.00975209195, 0.00954880565, 0.00235332036, -0.0148398951, -0.00959962793, -0.00875260122, 0.0122762294, -0.000883024593, -0.0118018948, 0.00830650143, -0.00181545899, 0.00414478034, -0.0210965928, -0.0359364897, 0.00574001251, 0.0101586645, 0.0175955519, -0.012558572, 0.0258173514, -0.017053457, -0.0212095305, -0.00535038067, 0.0114348503, -0.0225195978, 0.0129199689, -0.00390478969, -0.00268366048, 0.000740441843, 0.013789583, -0.00107713463, 0.00407984154, 0.00633010734, -0.0141058061, 0.0025594302, 0.0173357986, -0.00369020971, -2.00837803e-05, -0.0103167761, 0.0106273526, 0.0225534774, 0.00599129684, -0.0115477871, -0.0132813668, -0.0163419545, -0.00441018166, 0.0214466974, 0.0269467197, -0.00365350535, 0.00882036332, 0.00980856083, 0.00944716297, -0.000363162369, -0.0220452622, -0.000603506, 0.00671973918, -0.00835167617, 0.0162854865, 0.0523575, -0.0190750249, 0.00800157152, 0.00871872064, -0.00768534886, -0.00800157152, 0.0102941887, -0.0179908313, -0.0193121918, -0.0450391956, -0.0164435972, 0.0222937241, -0.0139702819, 0.000588683062, 0.00734089175, 0.0276243407, 0.0225421842, 0.025117144, 0.0145349652, -0.0459652767, -0.00226155925, -0.0177536644, -0.0217516273, 0.00914223399, -0.0127166836, 0.0254559536, 0.00483651832, 0.00311987894, -0.0153932851, -0.00267519034, -0.015630452, 0.0013665352, 0.00568354409, -0.025546303, 0.00167146453, 0.0164210107, -0.032435447, 0.036568936, -0.00333728222, 0.00312834932, 0.0247557461, -0.0112485047, 0.0072392486, -0.000331575371, -0.0116099026, -0.00480263727, -0.0161725488, 0.0170873366, -0.00862272456, 0.00297588459, -0.0268563703, 0.0169179328, -0.0082613267, -0.00282624341, -0.0157885645, 0.0218193885, 0.000377279473, -0.0472979285, 0.00719972048, -0.00161076104, -0.00472922809, -0.00204133266, -0.0344005488, -0.00939069409, -0.00471793441, -0.00944716297, 0.00703596231, -0.00267519034, -0.0133943036, 0.00461911503, -0.0228584073, -0.0128409136, -0.0242136493, 0.00537861465, 0.0107064079, -0.0124230478, 0.0145236719, 0.0237844884, -0.0209158938, -0.0178440139, 0.00158817368, -0.0118131889, -0.0023886133, 0.0142639177, -0.00432265596, 0.00207097852, -0.00413913373, 0.010802404, 0.00813144911, -1.15142593e-05, 0.0136314714, 0.00562425237, 0.00490710372, -0.0312834941, 0.0118922442, -0.00888247881, 0.00141876854, 0.00866225176, 0.012558572, 0.0010552532, -0.00148229545, 0.00323846261, 0.00847026, -0.00065609219, 0.0262013357, -0.023761902, -0.00791122206, 0.00663503679, 0.00705290306, 0.0147947203, 0.0137669956, -0.0190863181, -0.0119938878, -0.00437347731, 0.00318199419, 0.00760064647, -0.0157772694, -0.00152041158, 0.0135072405, -0.0174487345, 0.000212462342, -0.0138573451, 0.0135637093, 0.00895588752, 0.0116099026, -0.00845896639, 0.0123439915, -0.0112146242, -0.00281636138, -0.0018789859, 0.00326387328, 0.0178214256, -0.00605905894, 0.0172454491, 0.010678174, 0.0085323751, -0.00342763169, 0.00472358149, 0.00527697196, 0.00661244942, -0.00999490637, 0.00304929353, -0.0125811594, 0.00359703694, -0.002662485, -0.0186910387, -0.000874554331, 0.0133717163, 0.000137288793, 0.00172934472, -0.00902365, -0.0276017524, 0.0137782888, 0.00570330815, -0.0122762294, 0.00393302366, -0.00474616885, -0.0139928693, 0.00493816147, -0.00281071453, 0.0103111295, -0.0238296632, -0.0137444083, -0.0364108235, 0.0285730083, -0.015698215, -0.0215370469, -0.000851966965, -0.00694561284, 0.0101417238, -0.0100909024, -0.0110847466, -0.00785475411, 0.0229487568, -0.00957704056, -0.0126263341, -0.0166581776, 0.0257495884, 0.000367044588, 0.000598212064, 0.0173245035, -0.0266982578, -0.0101304306, 0.00137924065, 0.0111186272, 0.0184990466, -0.0110678058, -0.00718278, -0.0144784972, 0.00542378938, 0.0193686597, 0.0119261257, 0.0140832188, -0.0130329058, -0.0224518348, 0.0174600277, -0.00100937265, -0.0199333448, 0.00613811472, -0.00960527454, -0.00773617066, -0.019944638, -0.000260813424, 0.00955445319, 0.00652774656, -0.0229939315, 0.00199615792, 0.00418148469, -0.0194703043, 0.0243265852, 0.0110678058, -0.00338528049, -0.0064882189, 0.00116324902, -0.00259048771, 0.0152577609, -0.0169856939, 0.0166468844, 0.0214015227, 0.0183861107, 0.00172087445, 0.00213309377, -0.0148737757, 0.0142413303, -0.00280930288, 0.0284374859, -0.0155062219, 0.0222146679, -0.015573984, 0.0212885868, -0.0298830755, -0.010802404, -0.00531932293, -0.0140493372, -0.00237449608, 0.00165734743, -0.00391043676, -0.0245072842, -0.00257778238, 0.00251284358, 0.0324580334, -0.00802415889, -0.007510297, -0.00918176118, -0.010401479, -0.0258851126, -0.00640351651, 0.0133717163, 0.00452594226, -0.0206335522, -0.00748770963, 0.0118018948, 0.00756111834, 0.000881612883, 0.003416338, 0.0334067047, -0.00968997739, 0.00956574641, 0.0165113602, 0.018160237, -0.0166355893, -0.0201930981, -0.0237393137, -0.00996102579, -0.0174374413, 0.0189959686, 0.0263368599, -0.00586141972, 0.0250042062, -0.0198881701, 0.0111694494, -0.0107967574, 0.0159692634, 0.00985373557, -0.00934551936, -0.00464734901, -0.000882318709, -0.00623411126, -0.00166581769, 0.0182731729, 0.0115986085, -0.00738041941, 0.0173922665, 0.0135524152, 0.00324693276, -0.0013008907, -0.0155175161, -0.0217742138, 0.00996102579, -0.00427748123, 0.0202043932, 0.0010411361, -0.000997373, -0.00786604732, -0.00851543434, -0.0293409787, 0.00681573572, 0.0131458426, -0.0190750249, -0.00600259053, -0.000790557591, 0.0335648172, 0.00592918182, -0.0200575739, -0.0102320733, 0.00929469801, 0.0123891663, 0.0125811594, 0.0055310796, -0.0161499623, 0.0129425563, -0.00132488983, 0.0216161031, 0.00436500693, -0.00753853098, -0.0167372338, 0.00937940087, 0.0106725274, 0.00620023, -0.00875260122, -0.0270370692, 0.00504827453, -0.0260884, -0.015630452, 0.00581059791, 0.00717713311, -0.00809192099, 0.0221807864, -0.00847590622, -0.0188265629, -0.00946975, 0.0188604444, 0.0138460509, 0.00745382858, 0.00130371412, -0.0162290167, -0.00943022221, -0.0199672263, -0.010525709, -0.00260742824, -0.0227228831, -0.0020498028, -0.0239426009, 0.0106273526, 0.0018295761, -0.0352362804, -0.00779828569, 0.0153481103, -0.00995537825, 0.0123326983, 0.00231943955, -0.0124004604, -0.00188604451, 0.0215935148, 0.0138121704, 0.0109040476, -0.0100457277, -0.00144488516, -0.00245355186, -0.00286012422, 0.00467558345, 0.00120489439, 0.00741430046, 0.018284468, -0.0210062433, -0.00171099242, 0.00224744226, -0.00564966304, -0.00244508171, -0.0089333, 0.00784346089, -0.0101699587, -0.0183070544, 0.00670844549, 0.0150544746, 0.00167428795, 0.00937375426, -0.0079902783, -0.00196368853, 0.00966739, -0.0115139065, 0.00507368566, 0.00718278, -0.0200575739, 0.00142441539, -0.0133378357, -0.0214015227, 0.00812015589, 0.014647902, 0.00850414112, -0.0131458426, -0.00571177853, -0.00734653836, -0.0092834048, 0.010249014, 0.0213224664, 0.0209610686, -0.00209780107, -0.000880907, -0.00630752, -0.00803545304, -0.0254559536, 0.000717854477, -0.0149754193, -0.00560731208, 0.0243943483, 0.00387090864, -0.058727134, 0.0175052024, -0.00146394316, -0.022282429, -0.0108249914, 0.016861463, 0.0207690764, 0.00479134358, -0.0160934925, -0.0114969658, -0.00533626368, 0.00273448206, 0.0029787079, -0.0112485047, 0.00439324137, -0.00371562061, 0.0239426009, -0.000709384272, 0.0212208237, 0.00191992556, 0.028618183, 0.0118583636, -0.019820407, 0.00151052966, 0.0242136493, -0.00522615, 0.00438759429, -0.0331130698, -0.0230504, 0.00950363092, -0.00528544188, 0.0275565777, 0.00295894407, 0.00158111518, 0.0161047876, -0.000508921454, -0.00699078757, -0.00379185285, -0.00588400709, 0.0205770843, 0.0114292037, 0.0133039542, 0.00386526179, 0.00140818069, 0.00915917382, 0.010028787, 0.0142639177, -0.00629057968, 0.016003143, -0.00946975, 0.00315658352, 0.0127166836, 0.0109209884, 0.00179004821, -0.0036873864, -0.00265542651, 0.00941328146, -0.0205996707, -0.0148624824, -0.0220452622, 0.00403184351, 0.0127505641, 0.0121068247, 0.0215483401, 0.0166920591, -0.00733524468, -0.00769099593, -0.016308073, 0.0100344345, 0.0167372338, -0.0244846977, -0.00947539695, -0.00276412815, 0.0162854865, -0.00550849224, -0.00402902, -0.00736912573, 0.0106725274, 0.00388220232, 0.00440453505, -0.0195832402, 0.0257721767, -0.033542227, 0.00868483912, -0.01316843, -0.00530238263, 0.0160709061, 0.00967303663, -0.0358235501, 0.00591224106, 0.00295047369, 0.0155062219, -0.00871307403, 0.00361680076, 0.00773052359, 0.0186232775, -0.00624540495, -0.019447716, -0.00909705926, 0.0144446157, -0.0132248988, -0.0189507939, 0.00343045522, -0.0102885421, -0.0117002521, -0.00115760218, -0.0126037467, -0.00909141172, 0.0104127722, -0.0166581776, -0.00523744384, -0.0283019617, -0.0028685946, 0.00525156083, -0.00413348665, -0.0283019617, 0.00760064647, -0.00745947519, 0.000489157508, 0.00555931358, 0.00620023, 0.00288553513, 0.0239877757, -0.00633010734, 0.0127053894, -0.00818227, -0.000448217907, -0.0186571591, 0.0127731515, 0.00511321332, -0.0226890016, 0.00627363892, -0.0247331578, -0.00119218905, 0.00417866139, -0.0338132754, -0.0197865274, 0.00726183597, 0.000746088685, -0.00421818951, -0.0106386459, -8.72613236e-05, -0.00814839, 0.0202608611, 0.00484216493, -0.0116099026, -0.00748206256, 0.0131458426, 0.000122465834, 0.00351515785, -0.00252554915, -0.0108927535, -0.0120616499, -0.0100626685, -0.00748206256, 0.0106047653, -0.00272036507, -0.00878648274, 0.00261166343, 0.00316505367, 0.00393867074, -0.0378112383, -0.0143203856, 0.00675362, -0.0286633577, 0.0161612555, -0.0186006892, 0.00795075, 0.00970127061, -0.0143881477, -0.014038044, -0.0234682653, -0.0296120271, 0.000763735094, 0.0278276261, 0.0106612332, -0.00446382677, -0.00974644534, -0.0137105267, 0.0105482964, -0.0121068247, -0.0306736343, -0.0132926609, 0.00346151274, -0.0023914366, -0.0023208512, 0.018092474, -0.00612682104, -0.00364785851, -0.00413066335, 0.0133943036, 0.00766840857, 0.00291941618, -0.0109379282, 0.00899541564, -0.00244931667, -0.00582189159, -0.00704160938, 0.00693431916, 0.00974644534, -0.00310293841, -0.0213337615, 0.0155401034, -0.0117906015, 0.00352927484, -0.00795075, 0.0157998577, -0.0126715088, 0.00275142258, -0.0144897904, 0.0189846754, 0.014038044, 0.00823873933, 0.0081258025, -0.0210740063, 0.00622846419, -0.0234908536, -0.00550284516, -0.013541122, -0.000341104402, 0.0160144381, -0.0124117536, 0.0100062, 0.00823873933, -0.0177310761, 0.0106555866, 0.0142865041, 0.014647902, -0.000724207202, 0.00509344926, 0.018092474, 0.00484216493, -0.00949798431, 0.00957704056, -0.0200914554, -0.014399441, 0.0248460956, 0.0137218209, -0.0116663706, 0.0045061782, -0.0136314714, 0.0183070544, 0.0120164752, -0.0454005934, 0.00791122206, 0.00126771547, -0.0233553294, 0.00423795311, 0.00827826746, -0.024191061, -0.0275339913, 0.000677620759, 0.0101417238, -5.68654395e-05, -0.00293353316, 0.0274210535, 0.0294990912, -0.00562989945, 0.0128183262, -0.00834038202, 0.0162854865, 0.00631881366, 0.00818227, 0.0123326983, 0.0199559312, 0.0104466537, 0.0268789567, 0.00348974694, -3.36604571e-05, 0.00841943827, -0.0182167049, 0.00639786944, 0.00727312965, -0.0139476946, 0.0107289953, 0.0318933502, -0.00786040071, -0.0240781251, -0.000773617066, 0.000998079, 0.0206900202, 0.012558572, 0.011451791, 0.00898412243, 0.00193545432, 0.0042436, -0.00959962793, 0.0022559124, 0.0162064303, -0.0146930767, -0.0273984671, -0.00798463169, 0.0184651669, -0.00879212935, 0.00369585655, 0.00822744519, 0.0278276261, 0.0118018948, -0.00932857953, 0.00227002962, 0.016872758, 0.0239651874, 0.019391248, -0.0149528319, 0.019820407, 0.00199898123, -0.00161781954, -0.00417301478, 0.00179993012, 0.0117906015, -0.00636398839, -0.0113896756, 0.00919305533, 0.00389914284, -0.0291828681, 0.0280535, 0.0145688467, 0.00799592491, 0.0153029356, -0.000969844754, -0.000996667193, 0.00801286567, 0.0147834262, -0.00994408503, -0.00329775433, -0.00626799231, 0.00269213086, -0.0046417024, -0.00216556294, -0.0126602147, -0.0111016873, 0.0260206368, -0.0107177021, 0.0319159366, 0.0234908536, 0.00705854967, 0.0237844884, 0.0320966356, 0.00200745161, 0.017606847, 0.0114969658, -0.00687785074, -0.0101473713, -0.0114009697, -0.00479981396, 0.011355795, -0.0220904369, -0.0225083027, 0.00122889352, -0.0248009209, 0.00247613923, -0.0118357763, -0.0220113806, 0.00588400709, -0.0137669956, 0.0155626908, 0.032570973, 0.0303799976, 0.0190298501, 0.00541531947, 0.00346433627, -0.00242249435, 0.00292788632, 0.0161047876, -0.00364503497, 0.000191992556, 0.00126700965, -0.00352080469, -0.0207126085, 0.0174487345, 0.00481957756, 0.0157095082, -0.0110508651, 0.0142074488, 0.00376079534, -0.00137429964, -0.0119713005, -0.021175649]
09 Dec, 2021
Merge two Pandas DataFrames based on closest DateTime 09 Dec, 2021 In this article, we will discuss how to merge Pandas DataFrame based on the closest DateTime. To learn how to merge DataFrames first you have to learn that how to create a DataFrame for that you have to refer to the article Creating a Pandas DataFrame. After creating DataFrames need to merge them and to merge the Dataframe there’s a function named merge_asof() when it comes to writing this then it can be written as: pandas.merge_asof(left, right, on=None, left_on=None, right_on=None, left_index=False, right_index=False, by=None, left_by=None, right_by=None, suffixes=(‘_x’, ‘_y’), tolerance=None, allow_exact_matches=True, direction=’backward’) Note: To know more about this function refer to the article pandas.merge_asof() function in Python Dataframes must be sorted by the key. Step-by-step Approach Step 1: Import pandas library To complete this task we have to import the library named Pandas. import pandas as pd Step 2: Create the Dataframe In this step, we have to create DataFrames using the function “pd.DataFrame()”. In this, we created 2 data frames one is named left and another is named right because our last goal is to merge 2 data frames based on the closest DateTime. It can be written as: left = pd.DataFrame( { “time”: [pd.Timestamp(“2020-03-25 13:30:00.023”), pd.Timestamp(“2020-03-25 13:30:00.023”), pd.Timestamp(“2020-03-25 13:30:00.030”), pd.Timestamp(“2020-03-25 13:30:00.041”), pd.Timestamp(“2020-03-25 13:30:00.048”), pd.Timestamp(“2020-03-25 13:30:00.049”), pd.Timestamp(“2020-03-25 13:30:00.072”), pd.Timestamp(“2020-03-25 13:30:00.075”) ], “ticker”: [“GOOG”,”MSFT”,”MSFT”,”MSFT”,”GOOG”,”AAPL”,”GOOG”,”MSFT”], “bid”: [720.50, 51.95, 51.97, 51.99, 720.50, 97.99, 720.50, 52.01], “ask”: [720.93, 51.96, 51.98, 52.00, 720.93, 98.01, 720.88, 52.03] }) right = pd.DataFrame( { “time”: [ pd.Timestamp(“2020-03-25 13:30:00.023”), pd.Timestamp(“2020-03-25 13:30:00.038”), pd.Timestamp(“2020-03-25 13:30:00.048”), pd.Timestamp(“2020-03-25 13:30:00.048”), pd.Timestamp(“2020-03-25 13:30:00.048”) ], “ticker”: [“MSFT”, “MSFT”, “GOOG”, “GOOG”, “AAPL”], “price”: [51.95, 51.95, 720.77, 720.92, 98.0], “quantity”: [75, 155, 100, 100, 100] }) Step 3: Merge the Dataframes and print them In this step, the data frames are going to be merged using the function “pd.merge_asof()”. The result of the merge_asof() function is stored in a variable and then the variable is printed by using “print()”. Python3 # Importing the required package import pandas as pd # Creating the DataFrame of left side left = pd.DataFrame({ "time": [pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.030"), pd.Timestamp("2020-03-25 13:30:00.041"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.049"), pd.Timestamp("2020-03-25 13:30:00.072"), pd.Timestamp("2020-03-25 13:30:00.075") ], "ticker": ["GOOG", "MSFT", "MSFT", "MSFT", "GOOG", "AAPL", "GOOG", "MSFT"], "bid": [720.50, 51.95, 51.97, 51.99, 720.50, 97.99, 720.50, 52.01], "ask": [720.93, 51.96, 51.98, 52.00, 720.93, 98.01, 720.88, 52.03] }) # Creating the Dataframe of right side right = pd.DataFrame({ "time": [ pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.038"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048") ], "ticker": ["MSFT", "MSFT", "GOOG", "GOOG", "AAPL"], "price": [51.95, 51.95, 720.77, 720.92, 98.0], "quantity": [75, 155, 100, 100, 100] }) # Applying merge_asof on data and store it # in a variable merged_dataframe = pd.merge_asof(right, left, on="time", by="ticker") # print the variable print(merged_dataframe) Output : Example 1: Now we change the position of the left and right Dataframe in the merge_asof function. Python3 # Importing the required package import pandas as pd # Creating the DataFrame of left side left = pd.DataFrame({ "time": [pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.030"), pd.Timestamp("2020-03-25 13:30:00.041"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.049"), pd.Timestamp("2020-03-25 13:30:00.072"), pd.Timestamp("2020-03-25 13:30:00.075") ], "ticker": ["GOOG", "MSFT", "MSFT", "MSFT", "GOOG", "AAPL", "GOOG", "MSFT"], "bid": [720.50, 51.95, 51.97, 51.99, 720.50, 97.99, 720.50, 52.01], "ask": [720.93, 51.96, 51.98, 52.00, 720.93, 98.01, 720.88, 52.03] }) # Creating the Dataframe of right side right = pd.DataFrame({ "time": [ pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.038"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048") ], "ticker": ["MSFT", "MSFT", "GOOG", "GOOG", "AAPL"], "price": [51.95, 51.95, 720.77, 720.92, 98.0], "quantity": [75, 155, 100, 100, 100] }) # Applying merge_asof on data and store it # in a variable merged_dataframe = pd.merge_asof(left, right, on="time", by="ticker") # print the variable print(merged_dataframe) Output: Note: So, it is clear from our 2 outputs that when we put right DataFrame in the first place then the number of rows in output is 5 equals to the number of rows in right DataFrame and when the left DataFrame is put on the first place then the number of rows in output is equal to the number of rows in left DataFrame. If we look at both outputs and compare them then we can easily say that the merge_asof() is similar to the left-join except that we match on the nearest key rather than equal keys. Example 2: We only asof within 2ms between the quoted time and the trade time. Python3 # Importing the required package import pandas as pd # Creating the DataFrame of left side left = pd.DataFrame({ "time": [pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.030"), pd.Timestamp("2020-03-25 13:30:00.041"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.049"), pd.Timestamp("2020-03-25 13:30:00.072"), pd.Timestamp("2020-03-25 13:30:00.075") ], "ticker": ["GOOG", "MSFT", "MSFT", "MSFT", "GOOG", "AAPL", "GOOG", "MSFT"], "bid": [720.50, 51.95, 51.97, 51.99, 720.50, 97.99, 720.50, 52.01], "ask": [720.93, 51.96, 51.98, 52.00, 720.93, 98.01, 720.88, 52.03] }) # Creating the Dataframe of right side right = pd.DataFrame({ "time": [ pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.038"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048") ], "ticker": ["MSFT", "MSFT", "GOOG", "GOOG", "AAPL"], "price": [51.95, 51.95, 720.77, 720.92, 98.0], "quantity": [75, 155, 100, 100, 100] }) # Applying merge_asof on data and store it # in a variable merged_dataframe = pd.merge_asof(left, right, on="time", by="ticker", tolerance=pd.Timedelta("2ms")) # print the variable print(merged_dataframe) Output : Example 3: We only asof within 10ms between the quoted time and the trade time, and we exclude exact matches on time. However, prior data will propagate forward. Python3 # Importing the required package import pandas as pd # Creating the DataFrame of left side left = pd.DataFrame({ "time": [pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.030"), pd.Timestamp("2020-03-25 13:30:00.041"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.049"), pd.Timestamp("2020-03-25 13:30:00.072"), pd.Timestamp("2020-03-25 13:30:00.075") ], "ticker": ["GOOG", "MSFT", "MSFT", "MSFT", "GOOG", "AAPL", "GOOG", "MSFT"], "bid": [720.50, 51.95, 51.97, 51.99, 720.50, 97.99, 720.50, 52.01], "ask": [720.93, 51.96, 51.98, 52.00, 720.93, 98.01, 720.88, 52.03] }) # Creating the Dataframe of right side right = pd.DataFrame({ "time": [ pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.038"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048") ], "ticker": ["MSFT", "MSFT", "GOOG", "GOOG", "AAPL"], "price": [51.95, 51.95, 720.77, 720.92, 98.0], "quantity": [75, 155, 100, 100, 100] }) # Applying merge_asof on data and store it # in a variable merged_dataframe = pd.merge_asof(left, right, on="time", by="ticker", tolerance=pd.Timedelta("2ms"), allow_exact_matches=False) # print the variable print(merged_dataframe) Output : Example 4: When the same DataFrame is used in both places. In this left Dataframe is used on both sides. Python3 # Importing the required package import pandas as pd # Creating the DataFrame of left side left = pd.DataFrame({ "time": [pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.030"), pd.Timestamp("2020-03-25 13:30:00.041"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.049"), pd.Timestamp("2020-03-25 13:30:00.072"), pd.Timestamp("2020-03-25 13:30:00.075") ], "ticker": ["GOOG", "MSFT", "MSFT", "MSFT", "GOOG", "AAPL", "GOOG", "MSFT"], "bid": [720.50, 51.95, 51.97, 51.99, 720.50, 97.99, 720.50, 52.01], "ask": [720.93, 51.96, 51.98, 52.00, 720.93, 98.01, 720.88, 52.03] }) # Creating the Dataframe of right side right = pd.DataFrame({ "time": [ pd.Timestamp("2020-03-25 13:30:00.023"), pd.Timestamp("2020-03-25 13:30:00.038"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048"), pd.Timestamp("2020-03-25 13:30:00.048") ], "ticker": ["MSFT", "MSFT", "GOOG", "GOOG", "AAPL"], "price": [51.95, 51.95, 720.77, 720.92, 98.0], "quantity": [75, 155, 100, 100, 100] }) # Applying merge_asof on data and store it # in a variable merged_dataframe = pd.merge_asof(left, left, on="time", by="ticker") # print the variable print(merged_dataframe) Output : It created the same data frame into 2 frames one is indicated as x and another is created as y i.e. bid_x, bid_y, ask_x, ask_y.
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames/How to Merge DataFrames of different length in Pandas ?/Join Pandas DataFrames matching by substring/Merge two Pandas DataFrames based on closest DateTime
https://www.geeksforgeeks.org/merge-two-pandas-dataframes-based-on-closest-datetime/?ref=next_article
Pandas
Merge two Pandas DataFrames based on closest DateTime
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, Join Pandas DataFrames matching by substring, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Merge two Pandas DataFrames based on closest DateTime, Print with your own font using Python !!, Best Practices For SQL Query Optimizations, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, How to Merge DataFrames of different length in Pandas ?, Floating Point Operations & Associativity in C, C++ and Java, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[-0.0279299542, 0.00361666689, -0.0149608711, 0.0593343042, -0.0104306769, -0.00899299607, -0.0276903398, 0.0287686, -0.0582859963, 0.018854592, 0.0219845437, -0.013193721, 0.0100038657, -0.042771019, -0.0228531417, 0.0169676337, -0.0246801954, 0.0333961397, -0.0147362333, -0.0388772972, 0.000832095509, -0.0285739154, -0.0307004862, -0.0184202921, -0.0220743977, 0.0203222241, -0.015784543, 0.0208913069, -0.0258782636, 0.0179710165, -0.00417451747, 0.018165702, 0.00413333392, -0.0245304368, -0.00882826187, 0.00940483157, 0.0333961397, 0.011636233, 0.00746171549, 0.0183004849, -0.00901546, 0.0761971101, 0.0066343, -0.0176115949, -0.0244106296, 0.0176115949, -0.019633336, 0.0280347858, -0.00798212644, -0.00691884104, -0.0154101467, -0.0237666685, 0.00251219841, -0.0145190833, -0.0109248804, 0.0223589391, 0.00858116057, 0.0133884074, -0.00516666705, -0.0081169093, 0.0126246391, -0.0130364746, 0.0440888926, -0.0159492772, 0.0051254835, -0.0115014501, -0.044118844, 0.0092026582, -0.041123677, -0.0549913086, -0.00732693309, 0.0343545936, 0.0766164288, -0.0141521748, -0.0154850259, -0.0320782624, -0.0318386517, -0.00823671557, -0.0289033838, 0.0461555608, 0.00353055587, -0.0133958953, -0.0119956536, 0.0196932387, 0.0354328528, 0.00531268166, 0.00550736766, -0.0405246429, 0.0313294716, -0.0181507263, 0.0226734318, -0.033306282, 0.0295772981, -0.0322280228, -0.00545869628, 0.0271661859, 0.0106702913, 0.01388261, -0.0628386512, -0.00962198153, 0.0015967997, 0.0414231904, -0.00118028396, 0.0208463781, 0.00631231954, 0.00395362359, 0.0260579735, 0.00120649161, 0.0192289874, 0.0308202934, -0.00194686011, 0.0303560421, -0.0296821278, 0.00269752438, -0.0738009736, -0.00273309206, 0.0292328522, 0.00321606314, 0.0355826132, -0.0103258463, 0.0498096645, 0.0699072555, 0.0288285054, 0.0153951701, 0.00626364769, 0.0300415494, 0.0225985534, 0.00624118419, 0.0368705355, 0.0118458951, -0.000488587, -0.0372898579, -0.0411536284, 0.00737934839, -0.00488212612, 0.0204719827, 0.0225686, 0.00778744044, -0.00718091847, 0.0353729501, -0.0121903392, -0.0235120803, 0.0052677542, 0.000356846343, 0.0121903392, 0.028289374, -0.013321016, 0.0458260924, -0.0141671514, 0.0256686, -0.0383082144, -0.0339652188, 0.0366309211, 0.0365410671, 0.0187946875, -0.0193188433, -0.00407717424, 0.000127762687, -0.00487463828, -0.0175516922, 0.0242009684, -0.0106702913, 0.0370202921, -0.00725954166, -0.00985410716, 0.0154101467, 0.0333961397, -0.0235570073, -0.0514570102, 0.0386676379, -0.00796715077, -0.050348796, -0.0102135278, 0.0260579735, -0.00423067668, 0.0104531413, -0.0126620783, -0.0180758461, -0.0240362342, 0.0234372, -0.0236768145, -0.0471140146, -0.0126096634, 0.0136429965, 0.0231077317, -0.00320670311, 0.0278850272, -0.00554855121, 0.0162937213, -0.0239913072, 0.0103932377, -0.0157096628, 0.0594241582, 0.0378289893, -0.00596038718, 0.0111644939, -0.00109604478, -0.0187647361, -0.0218797121, 0.0312995203, 0.0162188429, -0.00415579742, -0.0326473452, -0.00119057985, 0.0039873193, -0.0090004839, -0.0134483101, -0.0232275389, 0.0161739141, -0.0333362333, -0.0302512106, -0.00308315246, 0.0148410639, -0.00138620182, 0.0183903407, 0.0242608711, -0.00308502442, 0.00696002459, -0.0308502447, -0.00599408289, -0.0265521761, -0.025863288, -0.00589299574, 0.00964444503, -0.0040097828, 0.00571702933, -0.00246914267, 0.0289183594, -0.00238864752, -0.00622995244, 0.0369304381, 0.00664178794, -0.0524454154, -0.0103632864, 0.00662681228, -0.010812561, -0.0233772974, -0.000265821291, -0.00308315246, 0.0220294707, 0.0277951714, -0.0279000029, -0.00484094257, -0.00193562824, 0.000636473473, -0.0363613553, -0.00786980707, 0.024605317, 0.0313893743, 0.0153502431, 0.0502289906, -0.0252043493, -0.0431903414, 0.018944446, -0.0310898572, 0.0408541113, 0.028244447, 0.0270014517, 0.00762270577, -0.0237966198, 0.041213531, 0.00205730693, -0.0285140127, 0.0222391319, 0.0319285057, 0.0320782624, 0.0173719823, -0.0108500011, 0.00555978296, 0.0111644939, 0.0140922721, -0.0142495185, 0.0196183585, -0.0405545942, -0.0136130443, 0.00609891349, -0.0153951701, -0.00417451747, 0.0313294716, 0.0210260898, -0.000438277522, 0.0203521755, 0.0540927574, 0.00480724685, 0.00114284432, 0.0141896149, 0.0198579729, -0.0316888914, -0.00995893776, -0.0233024172, 0.000850347278, -0.0130739147, 0.0120106293, -0.0165932383, 0.012542272, 0.011546378, -0.0230328515, -0.0262676347, -0.0436995216, 0.00105860515, -1.29064301e-05, 0.00271250028, -0.0110072475, -0.0157995187, 0.0201275386, -0.0185101461, 0.0186149776, -0.00835652277, 0.0114714988, -0.00347626838, 0.0141222235, -0.0401352681, -0.0142794698, -0.0256835781, -0.0400454141, 0.00257771765, 0.0149309188, -0.0165483113, 0.00121491554, -0.00582560431, 0.0264623221, -0.0108649768, -0.0127743976, 0.0313893743, 0.00233623199, -0.0161589384, -0.0221492779, 0.00286225881, 0.00470990362, -0.0443884097, -0.0377391353, -0.0381584577, -0.0278400984, 0.00240175147, -0.0154850259, 0.0175666679, 0.0127369575, -0.00829661917, -0.0404647365, 0.0151181174, -0.00149196875, 0.0130514503, 0.00444782665, -0.0436995216, 0.00425688457, -0.0115164258, 0.0135681173, 0.0178661849, 0.0208463781, 0.0117260879, 0.0014994567, -0.0226734318, -0.00406219857, 0.0343845449, 0.0234821271, 0.00137122592, -0.0460956581, -0.00933744, 0.0184652191, 0.0180009678, -0.0325874425, -0.00843889, 0.00494577317, 0.00269939634, -0.0282743983, 0.0332763307, -0.025428988, -0.0215652194, 0.0121004842, -0.00619625673, -0.0251893736, 0.0225686, 0.021280678, -0.0172072481, -0.0161140114, -0.000632261508, 0.042561356, 0.0189294703, 0.0166231897, 0.00678405864, -0.0716444477, -0.00483719865, 0.0210260898, 0.00429806812, -0.00387125649, 0.00151724042, -0.0161739141, 0.0094497595, -0.00645084586, 0.0411835797, -0.00167635886, -0.00541002443, -0.00293901, -0.0226434804, 0.0301613547, -0.0192589387, 0.025384061, 0.0333362333, 0.00426062848, 0.0271362346, -0.0172971021, -0.00959951803, 0.00197306788, 0.0395661853, 0.00184296514, 0.00623744028, -0.0172222238, 0.018854592, 0.0184202921, 0.0618801974, -0.0087159425, 0.0546318889, -0.0360318869, -0.047054112, 0.0099814022, 0.00170350261, -0.00715845497, 0.0080570057, -0.0550212599, -0.014054832, 0.0144292284, -0.0105429962, 0.0207415484, 0.0236917902, 0.00675410684, -0.0400753655, -0.0186449289, 0.0252942052, 0.00564963836, 0.0232574902, 0.0087758461, -0.0151330931, 0.0260429978, -0.0112169096, 0.0133584552, -0.0185700506, 0.0155000016, 0.00255712587, 0.00396859925, -0.0394763313, -0.00600157073, 0.014489132, 0.00989154633, -0.0425014533, -0.0380686037, -0.0526550785, -0.0623594262, -0.0283043496, 0.0384579748, 0.00596038718, -0.0405545942, -0.009816668, -0.0268966202, 0.0357024185, 0.0124973441, -0.00330217415, 0.0427410677, -0.0334859937, 0.0365410671, 0.00402101502, 0.0168478284, 0.00748792337, 0.0509478301, 0.00467620837, 0.00271062832, -0.00477355113, -0.0171323679, 0.00457886513, -0.0340850279, -0.00506183598, -0.00397234317, 0.0131338174, 0.0206816439, 0.014661354, 0.0212956537, 0.0226135291, -0.0170574896, 0.00639094273, -0.00569456583, -0.0310898572, 0.0589149818, 0.00198242767, 0.0134483101, -0.0043991548, -0.0107526584, 0.044418361, -0.018120775, 0.0330966227, -0.0150582138, -0.0219545905, 0.0386376865, -0.0165483113, -0.00640966231, -0.00786231924, -0.0261178762, 0.0288584568, -0.0420521796, 0.00249909447, 0.0144142527, -0.000262545305, 0.0450473465, 0.00997391436, -0.0200227071, 0.0434000045, -0.00154157623, -0.00588925183, -0.0150282625, -0.000104538427, -0.0296072494, -0.0230328515, 0.0363913067, 0.0104980683, 0.0270164274, 0.0184951704, 0.0198280215, -0.000553170335, -0.0110521745, 0.00409215, -0.00603901036, -0.0107002426, 0.0233024172, -0.0123625612, 0.0157695673, 0.0317787454, 0.00775748864, 0.0451971069, -0.0011971317, -0.0124224648, 0.00899299607, -0.00342572504, -0.0141671514, 0.0100637693, 0.00564589445, 0.0110896146, 0.0056271744, -0.0233173929, -0.00141615351, 0.0180908237, 0.00675036293, 0.0115538659, -0.0209362339, 0.00175123813, -0.0230628047, 0.00734190876, -0.0176715, 0.00349311624, 0.0264922734, -0.000758152222, 0.00555603905, 0.0167579725, 0.0141222235, 0.0118384073, 0.0274357516, 0.000236922569, -0.0143318856, 0.00883575, -0.00637971051, -0.0151405809, 0.00346878055, -0.00546244, -0.00738683622, -0.0159043483, 0.0217149779, 0.000228966659, 0.0049607493, -0.010595412, -0.00615132926, 0.0222091805, -0.042950727, 0.0097193243, 0.00207041088, 0.00646956591, 0.0445381701, -0.0229429975, 0.00720338244, 0.0139649771, 0.0170275383, -0.022269085, 0.0136280209, -0.00348937232, -0.0162787456, 0.028289374, 0.0191091802, -0.0164135285, 0.00297270552, -0.0132760881, -0.0104905805, -0.0189594217, 0.0162487943, 0.0217299536, 0.00135437818, 0.0529545955, 0.0199777801, -0.00887318887, -0.0141371991, 0.0166830942, -0.0228082146, -0.023047829, 0.0302212592, 0.00845386554, 0.0126545904, 0.00864106324, 0.0219545905, -0.0049607493, 0.00280422741, -0.0197381657, -0.00207415479, 0.00413707783, -0.0170425139, -0.0464850292, -0.0455565266, 0.00500567676, 0.0079371985, -0.00615881709, 0.0169676337, -0.00873840693, -0.00277427561, 0.0272111129, -0.0281545911, -0.0150432382, 0.0263275392, 0.00913526677, 0.0248000026, 0.0181357507, 0.010857489, 0.0130514503, -0.0162038654, 0.0307603888, -0.010640339, -0.00958454236, 0.0084239142, -0.0124374405, -0.00304009696, -0.00679154648, 0.0667323768, -0.0120181171, -0.00417451747, -0.0149159431, -0.0200526584, -0.0043467395, 0.00862608757, -0.000463783246, 0.0138526587, 0.10836523, -0.0105729476, -0.00327783846, -0.0091652181, -0.00788478367, 0.00698623247, 0.0261927564, -0.0408541113, -0.0117859915, 0.0021995774, 0.00810942147, 0.00752910692, -0.0324077308, 0.0304159448, -0.00772004901, -0.00617379276, 0.0218647365, 0.025129471, -0.0268217418, -0.00752161909, -0.000940670376, -0.000548022392, 7.01992831e-05, 0.0234971028, 0.0241859928, 0.0205618385, 0.00821425207, 0.0161739141, -0.0106628025, -0.00717717456, 0.0237217415, -0.00104082131, -0.0309700519, 0.0092850253, 0.0147961369, 0.0203521755, -0.0195734315, -0.0208913069, -0.0201574899, -0.0214603879, -0.0342347845, -0.00786231924, -0.00934492797, 0.0083415471, -0.0576869622, -0.00925507303, -0.0302811619, -0.0211009681, -0.0093673924, 0.0385178775, 0.0250995196, 0.0176715, 0.0185700506, -0.00742802, 0.0122128027, 0.0182705335, -0.0171173923, 0.0271062832, -0.00160615961, 0.0238115955, 0.00654070126, -0.0299367178, -0.000922886538, -0.0213705339, 0.00407343032, 0.0121004842, 0.0259830933, 0.0363014527, 0.00275742775, -0.00194498815, -0.00445157057, 0.000488587, 0.026207732, -0.00658188481, -0.00134221022, -0.0090603875, -0.0150806773, -0.00245791092, 0.0221492779, 0.0390570089, -0.0194686, -0.0311797131, 0.00268442044, -0.0123475855, -0.0147661846, -0.025384061, -0.00502439681, 0.00316551956, -0.0253990367, 0.00831908267, 0.000603245804, -0.0156048322, -0.0256835781, -0.00188040477, 0.00865604, -0.0197531413, -0.0142570063, 0.00403224677, -0.00950217433, -0.00307753659, 0.0058518122, 0.0418125652, 0.0118234307, 0.0344144963, 0.0134333344, -0.0253091808, -0.00354365981, -0.00594166713, 0.0170874409, 0.0432202928, -0.0155599052, 0.0211309195, -0.003135568, -0.0203222241, -0.00707608741, -0.000171754247, 0.0244405828, 0.0160690844, 0.00986908283, -0.00725954166, -0.0232425146, -0.0343845449, -0.0202173926, -0.0376792289, 0.0260729492, 0.0163835771, -0.0171922725, 0.0118009672, 0.0113217402, 0.0623594262, -0.0259231906, -0.00290718628, 0.0319285057, 0.0103183584, -0.0163536239, -0.00238303165, 0.00839396194, -0.000515730702, 1.03251441e-05, -0.0287835766, -0.00722584594, 0.0248599052, 0.00268816459, -0.00435797125, -0.0124074891, 0.00872343, 0.0309400987, 0.00222765724, 0.0108425133, 0.00383756077, -0.0037327297, 0.0235120803, -0.0349236764, -0.0354328528, -0.0245454125, -0.029757008, -0.0092850253, -0.00069544086, -0.00744299591, -0.00783985574, 0.00622620806, -0.00446654623, -0.0294425152, -0.0153652187, -0.00505809207, -0.015440098, 0.0330666713, -0.0221942049, 0.0218497608, -0.00322167901, 0.0159193259, 0.0237217415, 0.00281733111, -0.020457007, 0.0295173936, 0.0019225243, -0.0116586965, -0.00707983179, -0.0336657, 0.0223289877, -0.0319584571, -0.0156946871, -0.0246652197, -0.00103801338, 0.00731570134, 0.0620599091, 0.0271212589, 0.0296671521, 0.00697874464, -0.0421719849, 0.031449277, -0.000488119, 0.0412734337, 0.0138227064, -0.00596787501, -0.0186898559, 0.0229429975, 0.00347626838, -0.00378140132, -0.0424116, 0.00146388903, 0.0419623218, 0.00109698076, -0.0304309204, -0.00189070066, 0.0356125645, 0.0250995196, 0.00851376913, -0.0163386483, -0.0238864757, -0.000357080338, -0.0252492782, 0.0108724646, -0.00548116, 0.0133285038, 0.0391468629, 0.00755905872, 0.0563690886, 0.0235420316, -0.00108387694, -0.00135905808, 0.020457007, 0.0159942042, -0.023137683, -0.00582934823, -0.00851376913, -0.0410637707, -0.00256835762, -0.0165782627, 0.0220893733, 0.0122577306, 0.0124000013, -0.0108275376, 0.00596038718, 9.36575452e-05, 0.00999637786, -0.0283343028, -0.00107170909, 0.0493903421, -0.029322708, -0.00430555595, 0.0115314024, 0.0358521789, 0.00584432436, 0.0176415481, -0.0143468613, -0.0240512099, -0.0139500014, -0.0098016914, -0.0161289871, -0.0182405822, -0.00263200514, -0.015312803, 0.00903792307, -0.00312995189, 0.0150207747, -0.00721835811, 0.00174655812, 0.0111794695, -0.0163536239, -0.0234971028, 0.00694879284, -0.0375893749, -0.00155187212, 0.00219583348, -0.0315391347, 0.00387874432, 0.0289033838, 0.00640966231, -0.00381322508, 0.00609142566, 0.0150881652, 0.0242608711, -0.012804349, -0.00444033835, 0.0106103877, -0.00564215, 0.00638719881, 0.00754408259, -0.045975849, 0.0452869609, 0.0131712575, -0.00269190851, -0.0323777795, 0.000514326734, -0.0237367172, 0.00737560447, -0.000839583401, 0.0218497608, 0.0112992767, -0.0233772974, -0.00643212628, -0.0207565241, -0.0351333357, 0.019768117, -0.0190193262, -0.0284840614, -0.00557850301, 0.0372599065, -0.0120330928, 0.0267917905, -0.0174019337, -0.0599632896, 0.00599408289, 0.00370652205, 0.00712475926, 0.018899519, 0.00173251831, 0.0098990351, -0.00620374456, -0.0306555592, -0.00638719881, -0.0289183594, -0.0266120806, -0.0110147353, 0.00274245185, 0.0260879248, 0.00697874464, -0.0180009678, -7.48207312e-05, -0.00488212612, -0.0244256053, 0.0153652187, -0.0039573675, 0.0236768145, -0.0126471026, -0.0176565237, -0.00681401044, -0.00729323737, 0.00116718, -0.0171922725, -0.0245004855, 0.0226285048, 0.00944227166, -0.0355526619, -0.0278251227, 0.01388261, 0.028543964, 0.022838166, 0.0173270553, 0.000861579203, 0.0364811644, -0.00725579774, -0.0225236733, -0.0202024169, 0.0116437208, -0.0159043483, 0.0010464373, 0.0175067652, 0.0103557976, -0.0311797131, -0.0310599059, -0.0195734315, 0.0306555592, 0.00956956577, 0.000642557454, -0.00454516942, -0.00511799566, -0.00236805575, -0.008693479, 0.0192439631, -0.0286787469, -0.00778744044, 0.0116661843, 0.00677282689, -0.0176115949, -0.0193487946, -0.0265521761, -0.00675785076, -0.0146164261, -0.00749541121, 0.00412958954, 0.0481922738, 0.00640966231, -0.0198429972, 0.0136729479, -0.0132236723, 0.0234821271, -0.00882826187, -0.0120780207, 0.00572077325, 0.0237966198, 0.00248973444, 0.00825917907, 0.00457512122, -0.0276454128, 0.0122128027, -0.0507980734, 0.0013234904, 0.0104980683, -0.00864855107, 0.0200975873, -0.00448152237, 0.0196033828, -0.031359423, 0.0181956533, 0.0194386486, 0.00652572513, -0.0211458951, 0.00725579774, 0.00096219813, 0.0223289877, -0.04402899, -0.00782488, 0.00114565226, 0.00584806828, -0.0219096635, 0.0190193262, 0.0307004862, 0.0135606294, 0.00545869628, 0.00481099077, 0.00115875609, -0.0325874425, 0.00802705344, 0.00161177549, 0.010468117, -0.0184502434, -0.0167729482, 0.0204420313, -0.021235751, 0.00206479477, 0.023137683, 0.010250967, 0.02318261, 0.000666893204, 0.0363613553, -0.0141821271, -0.00613260921, -0.0190792289, 0.0250995196, 0.00117466797, -0.0149009675, 0.00298768142, -0.0127519332, -0.00176434196, -0.00069544086, 0.0270164274, -0.00285851466, 0.0304159448, 0.0109323682, -0.0237067658, -0.00562343048, 0.0239763316, -0.00912777893, 0.0202024169, -0.0182256047, -0.00239051948, 0.00716594281, -0.0275855102, 0.00470241578, -0.0042044688, 0.00833405834, 0.00250471034, 0.0870995224, -0.0180908237, 0.029068118, -0.025863288, 0.00888816547, -0.00533514563, 0.00767512154, 0.0409439653, -0.0239763316, 0.00796715077, 0.0174019337, -0.0152603881, -0.000263247319, -0.00195996393, -0.0187946875, -0.00698248856, -0.0084913047, 0.00255899783, 0.00274994, -0.0212507267, -0.0191241559, 0.00847632904, -0.000595757912, -0.00633852696, 0.00767512154, 0.0270463787, -0.0120181171, -0.0216700509, -0.0123775378, -0.00266570062, 0.00638719881, -0.01020604, -0.00764142582, -0.00802705344, -0.015784543, 0.0549913086, -0.000122497746, -0.0221492779, -0.0213405825, 0.0356425159, -0.0207565241, 0.000416515744, -0.0169975869, 0.0173570067, 0.000742240401, 0.0174917895, -0.00952463876, 0.00772004901, 0.00837149844, 0.00466497615, -0.0162338186, -0.0229130462, -0.0202173926, 0.00778744044, -0.00837149844, 0.00251032622, -0.00937488, -0.0176864751, -0.0133509673, -0.0315990373, 0.00366346654, -0.0211009681, 0.0138601465, -0.000406453852, 0.0244555585, 0.0111420304, 0.0159942042, -0.00331715, -0.0141072478, 0.0129990354, 0.0130289868, 0.00453019375, 0.0329768136, 0.000955178228, -0.0216700509, 0.0287236739, -0.0101985512, -0.00767512154, 0.0156198079, -0.0368705355, -0.00218085758, 0.0129615953, 0.0276154615, -0.0134782623, -0.00708357571, -0.0139724649, 0.00693007326, -0.023571983, -0.00218834565, -0.0305657033, -0.0150057981, 0.00182050141, -0.0318386517, -0.016608214, 0.012759421, -0.024350727, 0.0310898572, 0.00122146751, 0.000950966263, 0.0035380437, 0.00377578544, -0.000940670376, 0.0105205327, 0.0184801947, -0.0278850272, -0.0137328515, 0.000276117178, 0.00903792307, -0.00424190843, 0.00283417897, 0.0213405825, -0.0224637706, 0.00870845467, -0.0120705329, -0.002454167, -0.0139874406, -0.00482222252, -0.000480163086, 0.000426343642, 0.0161739141, -0.0213555582, 0.00414830958, 0.0251144953, 0.0177014507, -0.00263949297, 0.00633478304, 0.00817681197, 0.00480350293, -0.00383756077, -0.0045114737, 0.00239613559, -0.00611763354, 0.00815434847, -0.00748792337, 0.0326772965, 0.0122652184, -0.0152529, 0.0221492779, -0.00409589428, 0.0142045906, -0.0150357503, 0.0217000023, -0.0052677542, 0.0093074888, 0.0118908221, 0.00222016918, -0.0091876816, 0.00104175729, 0.00734565267, -0.00274994, -0.00297270552, 0.013148793, 0.018120775, 0.0152753638, 0.00673913117, -0.00577693293, -0.0171024166, -0.0033733095, 0.0099814022, -0.0141671514, -8.97380814e-05, 0.0244405828, 0.00921014603, -0.00355863548, -0.0177613534, -0.00367657049, -0.0218647365, -0.029277781, -0.00624867203, -0.0251444466, -0.00840145, -0.000941138365, 0.000359420315, -0.0192289874, 0.0195734315, -0.0309700519, 0.0179410651, 0.0199328512, 0.0228980705, 0.0123550734, -0.0139050735, 0.0224338192, -0.0224338192, 0.00499444501, -0.0149458954, 0.0144666675, 0.0133285038, 0.00659311656, 0.0219845437, -0.0103333341, -0.00682898611, 0.00113629235, -0.00300265732, 0.0322579741, -0.00569830975, 0.0299217422, 0.0006229016, -0.0133060403, -0.0163536239, 0.0201724656, 0.0152828516, 0.00326473452, -0.0088582132, -0.0116736721, 0.0305058, -0.0281545911, -0.0109623196, 0.012542272, 0.0172372, -0.0163086969, -0.0136579722, -0.00375332171, -0.0121379234, -0.0121079721, 0.0271212589, 0.00903792307, 0.00400603889, 0.0035773553, -0.0207415484, 0.00746545941, 0.011636233, -0.0159942042, 0.0326772965, -0.00163985521, -0.0316888914, -0.00481099077, 0.0154700493, 0.00546244, 0.03165894, -0.0123026585, 0.0053800731, 0.00521159451, 0.014534059, -0.0264473446, 0.0313294716, -0.00817681197, 0.0315091833, -0.008304107, -0.00834903494, -0.00300640124, -0.01972319, -0.0092026582, -0.0371401, 0.00245603896, -0.035343, 5.05142343e-05, 0.000982789905, -0.0161439627, -0.00636099093, 0.0162038654, -0.00976425223, 0.0106253633, -0.00540628051, -0.0096369572, -0.0199178755, 0.0144591797, 0.0049907011, -0.0106029, 0.0229579732, -0.0173270553, -0.0144666675, -0.0112543488, 0.0153202908, 0.00950217433, -0.0261777807, 0.0137403393, 0.0113666682, -0.00254776585, -0.0101536242, 0.0129541075, -0.0215652194, -0.00649951771, -0.0125946868, -0.0081992764, -0.0123326099, 0.00480724685, -0.0122876819, -0.00469492795, -0.00907536317, -0.00311497622, -0.0375294723, 0.0335458964, -0.0022145533, 0.0177613534, 0.0135980686, -0.008304107, -0.00123925135, 0.0081992764, 0.00185887702, -0.0330067649, -0.00352681195, -0.0228531417, -0.0118384073, -0.0254140124, 0.00197119592, 0.0206516925, -0.0125497598, -0.000547086413, -0.0209512096, -0.00062992156, -0.0120855086, -0.00277614756, -0.0234072488, -9.71090049e-05, -0.0098840585, -0.00722959, 0.00974178873, 0.012976571, -0.0018935086, -0.0216101464, 0.0189294703, -0.0341449305, 0.011763528, -0.00231938437, -0.0176265724, 0.014923431, -0.00583683606, 0.00452270592, 0.0135905808, -0.00600905856, -0.00350434822, -0.0209811609, -0.0202024169, -0.0129990354, 0.00417451747, 0.00336582167, -0.0425913073, 0.0081393728, 4.2558313e-05, -0.0107601462, -0.0192739144, -0.012370049, -0.0154251223, 0.00965193287, -0.0160391312, 0.0313294716, -0.0308202934, 0.0295173936, -0.00661932444, 0.0161140114, -0.0175217409, 0.0125123197, -0.0128268125, -0.00899299607, 0.0235120803, 6.88538e-05, 0.00495326146, 0.0245454125, -0.0167729482, 0.00756280264, -0.00360356318, -0.0155149773, 0.000904166722, -0.000256227388, -0.0119432379, 0.00602029031, 0.00312995189, 0.0355526619, -0.00554106338, 0.0223589391, -0.00888816547, 0.0222840607, -0.00631231954, -0.0133584552, -0.00491582183, 0.000135835609, -0.0275256056, 0.0110596633, 0.0383980721, -0.0219545905, -0.0113591794, -0.00515917921, 0.0130214989, 0.0210111123, 0.00472487975, -0.00669045933, -0.0161439627, -0.0307304375, -0.0242908243, -0.0280497614, -0.0144067649, -0.0425913073, 0.0135606294, -0.0152828516, -0.0302811619, 0.00353055587, -0.0117710158, 0.0337555595, 0.0237067658, 0.0333661884, 0.0184801947, -0.0296671521, 0.0407043509, 0.0109248804, -0.00820676424, 0.0419323705, -0.0294574909, 0.0169227067, -0.00879831, 0.000628049602, -0.000306770875, -0.0125272954, 0.00152940839, 0.0150432382, -0.0129166674, -0.00801207777, 9.14053118e-08, -0.0226285048, 0.0086335754, -0.0197980702, 0.0250096638, 0.000749260362, -0.027810147, -0.0203222241, -0.00301201711, 0.0189743973, 0.0225236733, 0.0366009697, -0.00707608741, 0.0107376818, 0.0092475852, 0.00590048358, 0.00829661917, -0.00790724717, 0.0124823684, 0.0133285038, 0.0149458954, -0.00435797125, 0.0124524161, -0.027810147, 0.0149683589, -0.00450773, -0.0340251252, 0.0170724653, 0.0221792292, 0.0363913067, 0.000698248856, -0.00272747618, 0.0155149773, -0.00571328541, -0.00939734373, -0.011419083, -0.0249497611, -0.00678405864, 0.0210560411, -0.00742802, 0.0203821268, 0.00359981926, 0.000522282673, 0.00608768174, -0.0100188414, 0.00312620797, -0.0128792282, 0.0078024161, -0.0108649768, 0.00087281107, 0.0369903408, 0.00759275444, 0.014009905, 0.000855027232, -0.000918206584, -0.0232125632, -0.0256686, -0.0040397346, 0.00555603905, 0.0169227067, 0.0129166674, -0.0107526584, -0.0126321269, -0.00342198089, -0.0142495185, -0.0376492776, -0.0291579738, 0.00719589414, -0.0012317634, -0.0128193246, -0.00194124412, 0.00221080938, -0.0154101467, 0.00539879268, -0.0123925135, 0.0342946909, 0.0183304362, 0.0182555579, 0.0087758461, 0.0425014533, 0.00572826155, 0.00890314113, 0.00587802, 0.00579939643, 0.0163686, 0.00323852687, -0.0174917895, 0.00747294771, -0.0181058, -0.00912777893, -0.00357173942, -0.00127762696, -0.00148541678, -0.010468117, 0.0169826094, 0.00552234333, 0.0173270553, 0.00280235521, 0.0110147353, -0.00679529039, 0.0156198079, -0.00281733111, -0.00397608709, -0.0197830927, 0.0117335757, -0.0149908224, -0.00375519367, 0.0216550753, 0.00386751234, 0.00689263362, -0.00648079766, -0.00726702949, -0.0296521764, -0.0090004839, 0.0107227061, 0.0160391312, -0.000560658285, -0.0163985528, 0.0235869586, 0.0157096628, -0.00318236742, 0.0152079724, -0.000514794723, -0.00606896169, -0.00584432436, 0.00887318887, -0.0094946865, 0.0133809187, -0.0124748806, -0.0141297113, 0.00273496401, -0.000133495632, 0.00935241673, 0.0257884078, -0.00912777893, 0.0301613547, 0.000711820729, 0.0225386489, -0.00677657081, 0.0289033838, 0.0103932377, 0.00497572497, 0.00562343048, 0.00585555611, 0.00816932414, -0.00620374456, -0.0186149776, -0.0097193243, 0.00364100281, 0.0399256088, -0.0287536252, 0.0314792283, -0.0204270557, 0.00697125681, 0.00256648567, 0.00135157013, 0.0170125626, -0.00553731946, 0.0051853871, 0.0107077304, 0.00282294722, 0.0121753635, 0.0135531416, -0.0210111123, -0.00353055587, 0.000249909441, -0.00155655202, 0.0012411233, -0.00182143738, -0.00385253667, -0.00569456583, 0.0145265711, -0.0117785037, 0.00815434847, 0.00648454158, -0.0168328509, 0.00501690852, -0.0192739144, 0.00586304395, 0.0118458951, 0.0190492775, -0.00152753643, -0.0219396148, -0.0129391318, -0.0135082137, 0.00672415504, 0.0103632864, -0.020457007, -0.00615507318, -0.00481099077, -0.00391992787, -0.00155000016, 0.00980917923, -0.0317188427, 0.0093673924, -0.00524529, 0.0141072478, 0.00604275428, -0.0089181168, -0.0233772974, 0.0103707742, 0.0184801947, -0.0134557979, -0.0271961372, -0.0153053151, -0.0160990357, 0.0081843, 0.0154251223, -0.0178062823, 0.0140772955, 0.0135157015, -0.012714494, -0.00979420356, -0.0184352677, 0.00355114765, 0.011029711, 0.00474734325, 0.00668671541, 0.0175666679, 0.0125572477, -0.00372711383, -0.00516666705, -0.00410338212, -0.0271961372, -0.0190792289, 0.000153385437, 0.0243207756, 0.0126321269, 0.00242234324, 0.0296072494, -0.0179710165, -0.0109548317, -0.00479227118, 0.00992898643, -0.0041820053, 0.00575072505, -0.00077500008, -0.0100113535, -0.00231751218, 0.00587802, 0.0223589391, -0.00335271773, 0.0129391318, 0.000713692687, -0.000307472859, 0.0207864754, 0.00470990362, -0.00183266925, -0.00628611166, -0.0233623218, 0.000655661279, 0.0208613537, -0.000923822576, 0.0189294703, 0.0223888904, -0.0126920305, -0.00213405816, 0.0232574902, 0.0077799526, 0.000161458345, 0.0108949281, -0.00379076111, 0.0083640106, -0.0091427546, 0.00974927656, -0.0196033828, -0.0216700509, 0.0109248804, -0.0117410636, 0.00581062865, 0.0235420316, 0.00104924524, 0.00417451747, 0.00909033883, -0.00436171517, 0.0157545917, 0.00401352672, 0.0165183581, -0.0156347845, -0.00139275379, 0.00277614756, -0.0102958949, 0.00379637722, -0.0161289871, -0.00686642574, -0.0152529, 0.00152940839, -0.0084688412, -0.0104381656, 0.0103557976, -0.0107975854, 0.0201724656, -0.00248037465, 0.00100525375, 0.005492392, 0.0299367178, -0.00911280233, -0.00451896153, 0.0140922721, -0.00487089437, 0.010812561, 0.0074093, 0.000169999257, 0.0331565253, 0.000193048021, -0.0151330931, 0.0183304362, -0.00703490386, 0.00147324894, -0.004713648, -0.00518913101, 0.0120855086, 0.00639094273, 0.0145190833, 0.000820863585, -0.00456763338, -0.0194386486, 0.0114490353, -0.0040097828, 0.00622246414, -0.014444204, -0.0265671518, 0.000281499117, -0.0141147356, -0.00278176344, 0.033216428, -0.0181357507, -0.00611014571, -1.35426117e-05, 0.0264772978, 0.0124524161, 0.00705362391, 0.0273309201, 0.0046537444, 0.00368780224, -0.00713973492, -0.00455265725, -0.00224824902, -0.00821425207, 0.00251781428, 0.0150132868, -0.0306106303, 0.00673913117, 0.000980918, -5.16988439e-06, -0.00497198105, -0.0227782633, 0.000345614477, -0.0099439621, 0.00742053194, 0.00108106888, -0.00299142534, -0.00341636501, 0.0336657, -0.0192439631, -0.00527898595, 0.00305694481, -0.00463876873, 0.0167579725, -0.000759556249, 0.00118215592, -0.00772004901, 0.0085512083, 0.00322167901, 0.0121828513, -0.0102434792, 0.0163236726, -0.0102734305, 0.000788571953, 0.00213031424, 0.0118533829, -0.011980677, 0.00637222268, 0.0122277793, 0.0119956536, -0.034684062, -0.00728949346, 0.0180159435, -0.026941549, -0.0137029, -0.0192289874, 0.0105205327, 0.00027073524, 0.00393115962, -0.0186748803, 0.0290531423, 0.0203821268, -0.023961354, 0.0220893733, 0.0213555582, -0.00761521794, 0.0268217418, 0.0213705339, -0.0207115952, 0.00770507334, -0.0174768139, 0.000237507571, -0.00251781428, 0.0257884078, -0.00952463876, -0.0254589394, -0.0030232491, 0.000187549085, -0.00374583364, 0.0155898565, 0.0077799526, -0.0125048319, -0.00521159451, -0.0112618366, -0.0120330928, 0.0126995184, -0.0132386489, -0.000112669848, -0.00876835827, 0.00479975902, -0.00566461403, 0.0197830927, 0.00175872596, 0.00987657066, -0.016608214, 0.00664178794, 0.0341748819, -0.00985410716, -0.0155000016, -0.0153951701, -0.0170425139, -0.0093673924, -0.0360019356, -0.0098990351, -0.0023942634, -0.00564963836, 0.00145733706, 0.0098391315, -0.00426811632, -0.00114752422, 0.0182855092, -0.00244106306, -0.0284391325, -0.0122352671, -0.0195285045, -0.0049008457, -0.0159492772, 0.0117335757, 0.00201612338, 0.0135905808, -0.0040097828, -0.010984784, -0.0208763313, -0.00767512154, 0.00575072505, -0.0105654597, -0.000398497912, -0.0187647361, -0.0050131646, -0.0124224648, -0.0125647355, 0.0117785037, -0.0029259061, -0.0308202934, 0.0180908237, -0.015312803, -0.0081618363, -0.00304384087, -0.0032759665, 0.00545869628, -0.0036653385, 0.0096144937, -0.000493266969, 0.0055747591, -0.00379450526, 0.000539598463, -0.0150582138, -0.0117934793, -0.00343695679, 0.0184951704, -0.000476185116, 0.0159343015, -0.0102584548, -0.0157396141, 0.0036803144, -0.00809444487, 0.00621123239, -0.0180608705, -0.00108106888, -5.75926606e-05, 0.0249347854, -0.0111794695, -0.0148710161, 0.0154251223, -0.00345942052, -0.00536135305, 0.0225985534, -0.00284166704, -0.0185400974, 0.00522282673, -0.00213593012, 0.0222241562, 0.00102771749, -0.00265446887, 0.0153202908, -0.00323852687, -0.0098840585, 0.0094946865, 0.0217149779, -0.0228082146, 0.0155599052, 0.00428683637, -0.0320183598, 0.00280422741, 0.0221343022, -0.0107077304, 0.00663804403, -0.0134408223, -0.0195285045, 0.00563466223, 0.0172521751, -0.0103557976, 0.0113666682, 0.00560471043, 0.00773502467, 0.00438417913, 0.0145939626, 0.0244855098, 0.00746920379, 0.00377578544, 0.0136954123, 0.0135980686, 0.00962198153, -0.0133509673, 0.0176864751, 0.00301576103, 0.00926256087, 0.0229879245, -0.0215652194, -0.0202473439, -0.00386376842, 6.49928334e-05, 0.0205768142, 0.00714347884, -0.00972681213, 0.00671292329, -0.0120181171, -0.000553638325, 0.000321512722, 0.0164884068, 0.000537726504, -0.00451896153, 0.00175217411, -0.00663055619, -0.0338454135, 0.0412434824, -0.00852125697, 0.0194985531, 0.0087309191, -0.000840051391, 0.0135606294, 0.0187198091, 0.0168178752, 0.00347814034, 0.00217149779, 0.0125647355, -0.017431885, -0.0124748806, 0.00709480746, -0.0195734315, 0.0101536242, 0.0133060403, 0.0110821268, -0.00780990394, -0.0304608718, -0.00538756093, -0.00241859932, 0.0159043483, -0.000687952968, 0.00412958954, 0.00132255442, -0.0261777807, -0.0205917899, 0.000607925758, -0.00715096667, 0.0233772974, 0.00154064025, -0.00894058, -0.00349311624, -0.0128642526, -0.0157995187, 0.00335646165, 0.0161589384, -0.0416328534, 0.00230440847, 0.007914735, 0.00467995228, 0.0238864757, 0.0101985512, 0.0170125626, 0.0255937222, 0.0214154609, 0.00835652277, 0.0148934796, -0.0180908237, -0.0198130459, 0.00596038718, -0.00233248807, -0.0101012085, 0.00716594281, 0.0122128027, -0.00614384096, 0.0115164258, 0.00717343064, 0.0212507267, -0.0163835771, 0.00721087027, 0.0115538659, 0.0251144953, 0.012542272, 0.0125048319, 0.00730072521, 0.0324376859, -0.0237816442, -0.00964444503, 0.00200301944, 0.00867850333, 0.0175217409, 0.00667922758, -0.0174019337, -0.00103333348, 0.00602777814, -0.0237217415, 0.011591305, -0.0179560408, 0.0308502447, 0.00124861125, -0.00125235517, 0.0279748812, 0.0154251223, 0.0169676337, 0.0122128027, -0.00385628059, -0.0229579732, 0.0165782627, 0.0173270553, 0.0194086973, 0.00997391436, 0.00306630461, 8.68131101e-05, 0.0146838175, 0.0043766913, 0.0140024163, 0.0127219819, 0.00220332155, 0.0148485517, 0.0195884071, 0.0120031415, 0.0159492772, -0.00455640117, -0.00176153402, -0.00476980722, 0.0103557976, 0.0160391312, -0.00411461387, -0.0225536246, -0.040914014, -0.00539130485, -0.0177613534, 0.0168328509, 0.00334897381, -0.00333774183, -0.00485591823, -0.000486247038, 0.00647705374, 0.00781739224, -0.0201275386, 0.0094946865, 0.00407343032, 0.013193721, -0.0100263292, 0.00742802, -0.0135456538, 0.00407717424, 0.00106422114, -0.00558599085, 0.0110371988, 0.0166681167, -0.00498695718, -0.0118758464, -0.0132536246, -0.00853623264, -0.00162955932, 0.0113367159, 0.00890314113, -0.00395362359, -0.001373098, -0.000758152222, -0.00886570103, -0.000269097247, 0.015874397, 0.00470990362, 0.00687765749, 0.031748794, 0.00804203, -0.0026039253, 0.0115987929, 0.0177763309, 0.0113966195, 0.00075908826, 0.00966690946, 0.0183004849, 0.0153502431, 0.0214454122, 0.0281096641, 0.0169826094, -0.0137478271, -0.029322708, 0.0107900975, -0.00492705358, -0.0166980699, 0.019678263, -0.0107451696, 0.00593043538, 0.0120480685, -0.0126171513, -0.0324077308, -0.000420961704, 0.0194086973, 0.017386958, -0.018165702, -0.0189594217, 0.00371401, 0.00187291682, 0.00772753684, 0.00159024773, -0.0134108709, -0.0131862331, 0.0196033828, -0.00783985574, 0.00772753684, -0.00121023564, 0.000430789602, -0.00190754852, -0.00336582167, -0.00815434847, 0.0094497595, 0.0042119571, 0.0078922715, 0.0152304359, 0.0083640106, 0.00251594232, -0.00883575, -0.00283979485, 0.00579939643, -0.0427410677, 0.00160896755, 0.0217000023, -0.00115220423, 0.00364287477, 0.0112992767, 0.0116886487, -0.000916802615, -0.00648454158, 0.00691884104, 0.0199328512, 0.0110596633, -0.0113067646, -1.64090816e-05, -0.0214903392, 0.0123625612, -0.0058218604, 0.00498695718, -0.00419698097, 0.00134127424, 0.0117410636, 0.0193338189, 0.000764704193, 0.0246801954, 0.00209474657, 0.0184202921, -0.00802705344, -0.0182855092, 0.0203671511, -0.0191990361, 0.000644897402, -0.0167579725, 0.00679154648, -0.0127519332, 0.00683647394, -0.0215053167, 0.010123672, 0.0140922721, 0.025428988, 0.00151443249, -0.0098016914, -0.000551766367, 0.00603526644, -0.0285140127, 0.00305507286, -0.022793239, 0.00191129243, -0.00118589983, -0.00585555611, 0.0233323686, 0.00456763338, -0.0210260898, 0.00217711367, -0.0309700519, -0.0010221015, 0.0125722233, 0.0169826094, 0.0152379237, 0.0122202914, 0.0234222244, -0.00564215, 0.0178062823, 0.0199178755, 0.0107227061, 0.00623369636, -0.0108724646, -0.028588891, -0.0143917883, -0.0184202921, -0.0118983099, -0.021280678, 0.0264024176, -0.00590048358, 0.0442985557, -0.00386376842, -0.00591545925, 0.00207228283, 0.00734939659, 0.00127669098, 0.00317113544, -0.00558973476, 0.0106702913, 0.0297120791, -0.0126995184, -0.0208913069, 0.0139425136, -0.00212844228, -0.0022295292, 0.0119956536, 0.0104456535, -0.0215502437, -0.0214004852, 0.0132012088, 0.000373226183, 0.00630108733, 0.00339577324, -0.017431885, -0.00185700494, 0.0145190833, 0.0216550753, 0.0219096635, 0.000975302, -0.0111270538, -0.0266719833, -0.020501934, -0.0190043487, 0.0128343, 0.00749541121, 0.0113067646, -0.00749915512, 0.00293152197, -0.0215053167, 0.0121379234, -0.0261777807, -0.00860362407, 0.00744299591, 0.0198729485, 0.0145939626, 0.0293526594, 0.00500567676, -0.0137029, -0.000424003665, 0.0157545917, 0.0106777791, 0.00184670906, 0.0203971025, -0.00200114748, -0.0129016917, 0.0236318856, -0.000108574888, -0.00506183598, -0.00113910029, 0.0115613537, 0.002746196, 0.00533140125, -0.00475483155, 0.0129166674, -0.0012270835, 0.0276004858, -0.029801935, 0.0089181168, 0.0228980705, -0.00822922774, -0.0201125629, 0.00342198089, -0.0146913053, -0.0121454122, -0.00454891333, -0.0093673924, -0.00277614756, -0.0253990367, 0.0326772965, -0.00895555597, -0.0273159444, -0.00679529039, 0.000642557454, -0.00887318887, -0.00273122, 0.00220893743, -0.000776872039, 0.00387125649, -0.00701244036, 9.61730184e-05, -0.0390570089, -0.0107900975, -0.00458635297, -0.0078024161, 0.00515917921, 0.00360356318, 0.018210629, -0.00618128059, 0.000569550146, -0.00798961427, 0.0183454119, -0.00414456567, 0.0036803144, -0.00664927578, 0.0147362333, -0.0193038657, -0.0080195656, 0.00460881693, -0.00543997623, 0.00966690946, -0.0119132865, -0.0248449296, -0.0178661849, 0.0055148555, -0.0182405822, -0.01388261, 0.0112693245, -0.00312808, 0.00022627569, -0.00274994, 0.00699746422, 0.00991401076, -0.010250967, 0.00522282673, -0.0108874403, 0.00451896153, 0.00491956575, 0.0182555579, -0.0384579748, 0.00682524219, 0.0217149779, -0.0102584548, 0.00315803173, -0.003135568, 0.00888816547, -0.00826666784, 0.0030082732, -0.00596413109, 0.0097343, -0.00679529039, -0.0015041366, 0.0135606294, -0.00629359949, -0.023527056, 9.96829767e-05, 0.00429806812, 0.0052078506, -0.000820863585, -0.0117859915, 0.00432427553, 0.00553731946, -0.00594541105, 0.0243058, -0.002940882, 0.00879082177, -0.0144516919, 0.0159343015, 0.00890314113, -0.00649577333, -0.00755905872, 0.0166681167, -0.00542500056, -0.0781739205, -6.47149636e-06, 0.0245454125, 0.020457007, -0.00522282673, 0.0141671514, 0.00383756077, -0.00156872, 0.0090004839, -0.0032460147, -0.00549613591, -0.00579939643, 0.0218797121, -0.0012560992, -0.00312620797, -0.00845386554, 0.0261777807, 0.00660060439, 0.00804203, -0.000904166722, -0.0027012683, -0.0362116, 0.0296821278, -0.0094946865, 0.000882171, 0.0038450486, 0.00666799583, -0.00688514533, -0.0195135288, -0.0112992767, -0.00560096651, -0.00116718, -0.00761147402, 0.0156647358, 0.00605024211, -0.0078548314, -0.0190792289, -0.0157096628, 0.02318261, -0.00135250611, 0.000568146177, -0.00282107503, -0.0242758468, -0.0217748806, -0.00226509687, 0.000409729808, 0.0144067649, 0.0221942049, -0.010640339, -0.00825169124, -0.00345380465, 0.00664927578, -0.0174169093, -0.0188396145, 0.01582947, -0.0294574909, -0.00589299574, -0.0128417891, 0.00203671516, -0.00815434847, -0.0124074891, -0.0366309211, 0.0210260898, -0.0135756051, 0.00349124428, 0.0106253633, -0.00401352672, 0.0410338193, -0.00109791674, 0.00552608725, -0.0152004845, 0.019768117, 0.0130664259, -0.0234671514, 0.0176265724, -0.00659686048, 0.00909033883, -0.0168478284, 0.00496449322, -0.0159193259, 0.0186149776, 0.011419083, 0.0295323692, -0.00124861125, -0.00993647426, -0.00752536301, -0.00195060403, 0.000514794723, -0.000833967468, 0.0247700512, 0.0166980699, 0.010078745, -0.012414977, -0.000760024239, -0.024650244, 0.0146763297, -0.00624867203, -0.0263125636, -0.0021022344, -0.00479975902, 0.0177014507, 0.0129166674, -0.0289932396, 0.00028266912, 0.0384280235, -0.00654070126, -0.0091427546, 0.000160522352, -0.00735314097, 0.0123475855, 0.0139050735, -0.00255525392, 0.0236468613, 0.00207789871, 0.00306443265, -0.0167130455, -0.00107826095, 0.00380386505, -0.00369903422, -0.0207864754, 0.00381696899, -0.0354927555, -0.021969568, 0.00160054362, -0.0144142527, -0.00162487943, -0.00770507334, 0.012759421, -0.0192589387, -0.000530238554, -0.000487183017, 0.0122577306, 0.0143169099, -0.0040996382, 0.00676533859, -0.0217748806, -0.000538194494, -0.0279299542, -0.00186917291, -0.00379637722, 0.0216550753, -0.0248149782, 0.0218946878, 0.0160091799, -0.028244447, 0.0142045906, -0.00808695704, -0.0230628047, -0.00378888915, 0.0129990354, 0.0048783822, 0.00728574954, -0.00306443265, 0.0045414255, -0.00765640149, -0.0122951698, 0.000633197546, -0.00442161877, 0.00680277823, -0.0143169099, -0.0202323683, 0.00625241594, 0.00777246431, -0.0051778988, 0.0059042275, -0.00390495197, 0.0103707742, -0.00553357555, -0.0174917895, 0.00426811632, 2.64417286e-05, 0.00165389513, -0.00364474673, 0.00423067668, 0.0156198079, 0.00588925183, 0.0105504841, -0.0224637706, 0.00406219857, 0.00900797173, 0.010378262, 0.00668297149, -0.0100862328, -0.00536135305, -0.00754408259, -0.0159193259, 0.0033882854, -0.00122333947, -0.000236103588, 0.00715471059, 0.00560471043, -0.00643212628, -0.010378262, 0.0261328518, -0.00882077403, 0.00966690946, -0.00660434831, -0.0100113535, 0.00148822472, -0.00624118419, -0.00651823729, -0.0108350255, 0.00061354175, 0.0157695673, 0.0135531416, 0.00822922774, -0.0330367163, 0.00627862383, 0.00420072488, -0.00453393767, -0.025129471, 0.0112543488, 0.0153652187, 0.00669420371, -0.0081843, 0.00256086979, -0.046065703, 0.00591920363, -0.00205356302, -0.00238864752, 0.0231227074, -0.00862608757, 0.026986476, -0.0184652191, 0.0137328515, -0.00923260953, 0.0315990373, -0.00535386521, 0.0088956533, 0.0177613534, -0.00633103913, 0.00487463828, -0.0109623196, -0.012931644, -0.0177463777, 0.0328270569, -0.0094497595, 0.00538381701, 0.00150788052, 0.0034706525, 0.0361217409, -0.00692258496, 0.000502626877, 0.00736062881, 0.00297270552, 0.0114490353, 0.0187048335, -0.0139649771, 0.0054025366, 0.0205768142, -0.00705736782, -0.00337892538, 0.0090229474, 0.0142195662, 0.00266382867, -0.00532391341, 0.00885072537, 0.00466872, -0.00566087, 0.00864855107, -0.00507681211, -0.00182424532, 0.00292029022, -0.00934492797, -0.0220294707, -0.0353130475, 0.00548864761, -0.00454891333, 0.0132236723, -0.0115388902, 0.0152304359, -0.000428683619, -0.0050955317, -0.0116961366, -0.0103932377, -0.0187647361, 0.0137029, 0.00933744, -0.00232125632, -0.00593417929, -0.0081618363, 0.00168665475, -0.0049907011, -0.00474359933, 0.00717343064, -0.00745422766, -0.0275705345, -0.00272186, -0.0285140127, -0.00246727071, -0.0031056162, -0.00589673966, 0.014923431, 0.0052378024, -0.0333661884, -0.00119525974, -0.00525652245, 0.0121379234, 0.0115014501, 0.00786231924, 0.00640966231, 0.00779492827, 0.0278251227, -0.00853623264, -0.0354328528, -0.0135905808, -0.000941138365, -0.0138152186, 0.0180608705, -0.0209062826, -0.0272111129, -0.00336020556, 0.00142644939, -0.00412584562, 0.0125572477, 0.00407343032, -0.00362602691, -0.00792971067, 0.012025605, 0.00740181236, 0.0186748803, -0.0149608711, 0.011374156, 0.0128717404, 0.0165333357, -0.0186299533, -0.00292965, -2.32535112e-05, 0.00308689638, -0.0123400977, 0.00377016934, 0.0094946865, 0.0135456538, -0.023137683, -0.001265459, 0.0194386486, -0.0168029, -0.0197531413, 0.000105591418, -0.00277053169, -0.00269939634, -0.0159642529, -0.00464625657, -0.00386376842, -0.00563466223, -0.0147137698, -0.0151855089, -0.000465187244, -0.00400229497, 0.00413707783, -0.00295024179, -0.00374021777, 0.00162862334, -0.000998701784, 0.0040696864, -0.0113966195, -0.00661558053, 0.00423067668, -0.00709855137, -0.0042344206, 0.00187946879, -0.028588891, -0.00364100281, -0.0177164264, -0.0347439647, -0.00467995228, 0.0130814025, -0.000745516387, -0.0121154599, 0.0108724646, -0.0177613534, -0.0035829714, 0.0114415465, 0.0844637752, 0.0091876816, -0.00742053194, -0.0133434795, -0.0139200492, -0.0123625612, 0.0129690832, 0.0454067662, 0.00662306836, 0.00211346638, -0.00735314097, -0.0316888914, -0.0175816435, 0.0145565234, -0.013755315, -0.0200826097, 0.0165483113, -0.0124374405, 0.000649109366, 0.00321419118, -0.00507681211, 0.00691509712, 0.0200526584, -0.0128492769, -0.00796715077, 0.0132086966, -0.00127013901, 5.39656958e-06, -0.0239763316, 0.0085512083, -0.00634601526, 0.0015967997, -0.0144292284, 0.0108874403, -0.0395661853, 0.00558973476, 0.0222840607, 0.0259830933, 0.0186748803, 0.000772660074, 0.028543964, 0.00141802547, 0.0121379234, 0.01409976, 0.000621029641, 0.0186000019, -0.00982415583, -0.0095770536, 0.00958454236, -0.011029711, -0.0156497601, -0.0414231904, 0.0157246385, -0.00578816468, -0.00119057985, 0.0100562815, 0.0278850272, -0.0213855095, 0.00731570134, 0.00345193269, 0.00319547136, -0.0115987929, 0.0247550756, -0.00816932414, 0.0122427549, -0.0151031418, 0.0194386486, 0.00369716226, -0.0149533832, 0.0093673924, 0.0127669098, 0.00162487943, 0.0120555563, -0.00746920379, 0.0222990364, 0.000281265122, -0.0425913073, -0.00951715093, 0.0110371988, 0.000846135314, 0.0117111122, 0.0157545917, -0.0087758461, -0.0224937219, 0.0105654597, 0.0161739141, -0.0081843, -0.0245903395, 0.0124524161, 0.012542272, -0.00325724669, 0.00415579742, -0.0150881652, -0.0165183581, 0.0130289868, -0.0102659427, 0.0048184786, 0.00815434847, 0.00410338212, 0.00486340607, 0.0177314021, -0.013103866, 0.00901546, -0.00496823713, -0.00974927656, 0.0205768142, -0.00886570103, 0.0191241559, -0.00163143128, -0.0117934793, -0.00590048358, 0.00604649819, 0.00644710194, 0.0321381688, -0.00219021761, 0.0221492779, 0.00365223456, 0.000525090611, 0.0158444457, -0.00489710178, 0.00110446871, 0.00491582183, -0.027810147, -0.00843140204, 0.00940483157, 0.0034556766, 0.00704988, 0.0036803144, 0.0175966192, 0.0242309198, 0.0179710165, -0.0207415484, 0.00522657065, 0.0304458961, 0.0272710174, -0.00227445667, -0.0182405822, 0.0136429965, 0.0147961369, 0.0300265737, 0.0091053145, -0.00219208957, 0.00972681213, -0.00458635297, 0.000490926963, 0.00464251265, 0.00583309215, -0.00956207793, -0.00598285068, 0.0168478284, 0.000592013937, 0.0139949284, -0.0059865946, 0.0179260895, 0.00521533843, -0.000255291379, -0.0254589394, -0.0214454122, -0.000273075217, -0.0144217405, -0.0159642529, 0.00255525392, -0.001859813, -0.00457512122, 0.0200227071, -0.0091202911, 0.00747669162, 0.0020498191, 0.00463128043, 0.0298917908, 0.0244106296, 0.00195060403, 0.00965942163, 0.00211533834, 0.0126545904, -0.00548116, -0.0165183581, -0.0351632871, -0.00705736782, -0.0245753638, -0.012804349, 0.0132311611, -0.00933744, 0.0334260911, -0.00224076118, -0.00611763354, 0.0262227077, -0.0101311607, -0.00265446887, 0.0306555592, 0.009427296, 0.00539504876, 0.00191690843, 0.0078024161, -0.00775748864, -0.014661354, 0.0177314021, -0.0133809187, 0.00277053169, -0.00648454158, 0.00205356302, -0.00510676391, -0.010123672, 0.0277352687, 0.0278700516, 0.00733442092, -0.0138601465, -0.0116811609, 0.000499818882, -0.0104830926, -0.0132386489]
28 Nov, 2024
Merge two Pandas DataFrames on certain columns 28 Nov, 2024 Let’s learn how to merge two Pandas DataFrames on certain columns using merge function. The merge function in Pandas is used to combine two DataFrames based on a common column or index. merge Function Syntax: DataFrame.merge(right, how=’inner’, on=None, left_on=None, right_on=None, left_index=False, right_index=False, sort=False, copy=True, indicator=False, validate=None) The merge function returns a new DataFrame containing the merged data. Merge Two Pandas DataFrames with Inner JoinAn inner join combines only the rows that have matching values in both DataFrames. In this example, we will merge df1 and df2 on the ‘Name’ column using an inner join: Python import pandas as pd # Creating DataFrame 1 df1 = pd.DataFrame({ 'Name': ['Raju', 'Rani', 'Geeta', 'Sita', 'Sohit'], 'Marks': [80, 90, 75, 88, 59] }) # Creating DataFrame 2 df2 = pd.DataFrame({ 'Name': ['Raju', 'Divya', 'Geeta', 'Sita'], 'Grade': ['A', 'A', 'B', 'A'], 'Rank': [3, 1, 4, 2], 'Gender': ['Male', 'Female', 'Female', 'Female'] }) # Display DataFrames print("DataFrame 1:") print(df1) print("\nDataFrame 2:") print(df2) # Merging with inner join df_merged = df1.merge(df2[['Name', 'Grade', 'Rank']], on='Name') print("\nMerged DataFrame:") print(df_merged) Output: Merge Two Pandas DataFrames with an Inner JoinMerge Two DataFrames with Left JoinA left join retains all rows from the left DataFrame and includes matching rows from the right DataFrame. If there’s no match, it fills with NaN: Python # Merging with left join df_merged = df1.merge(df2[['Name', 'Grade']], on='Name', how='left') display(df_merged) Output: Merge Two DataFrames with a Left JoinMerge Two DataFrames with Right JoinA right join includes all rows from the right DataFrame and the matching rows from the left DataFrame. Non-matching rows from the left DataFrame will be filled with NaN: Python # Merging with right join df_merged = df1.merge(df2, on='Name', how='right') print(df_merged) Output: Name Marks Grade Rank Gender0 Raju 80.0 A 3 Male1 Divya NaN A 1 Female2 Geeta 75.0 B 4 Female3 Sita 88.0 A 2 FemaleMerge Two DataFrames with Outer JoinAn outer join combines all rows from both DataFrames, filling in NaN where there’s no match: Python # Merging with outer join df_merged = df1.merge(df2, on='Name', how='outer') print(df_merged) Output: Name Marks Grade Rank Gender0 Divya NaN A 1.0 Female1 Geeta 75.0 B 4.0 Female2 Raju 80.0 A 3.0 Male3 Rani 90.0 NaN NaN NaN4 Sita 88.0 A 2.0 Female5 Sohit 59.0 NaN NaN NaNMerge Two DataFrames Using ConcatenationConcatenation combines two DataFrames along a particular axis. In this case, we’ll combine df1 and df2 horizontally (side by side): Python # Concatenating DataFrames horizontally df_concatenated = pd.concat([df1, df2], axis=1) print(df_concatenated) Output: Name Marks Name Grade Rank Gender0 Raju 80 Raju A 3.0 Male1 Rani 90 Divya A 1.0 Female2 Geeta 75 Geeta B 4.0 Female3 Sita 88 Sita A 2.0 Female4 Sohit 59 NaN NaN NaN NaNMerge Two DataFrames Using a Column SubsetYou can merge a specific subset of columns from one DataFrame with another using the merge function. Here’s an example where we merge the ‘Marks’ column of df1 with df2: Python # Merging using a column subset df_merged = df2.merge(df1[['Marks', 'Name']], on='Name') display(df_merged) Output: Merge Two DataFrames Using a Column Subset
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames/How to Merge DataFrames of different length in Pandas ?/Join Pandas DataFrames matching by substring/Merge two Pandas DataFrames based on closest DateTime/Merge two Pandas DataFrames on certain columns
https://www.geeksforgeeks.org/merge-two-pandas-dataframes-on-certain-columns/?ref=next_article
Pandas
Merge two Pandas DataFrames on certain columns
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Merge two Pandas DataFrames on certain columns, Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, Join Pandas DataFrames matching by substring, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Merge two Pandas DataFrames based on closest DateTime, Print with your own font using Python !!, Best Practices For SQL Query Optimizations, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, How to Merge DataFrames of different length in Pandas ?, Floating Point Operations & Associativity in C, C++ and Java, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[-0.01524249, 0.0277196039, -0.0104250293, 0.0442240722, 0.0147706205, 0.00377770141, -0.0398784801, 0.00663361046, -0.0227375366, 0.0210914798, 0.00242107594, -0.0375081562, 0.0291242395, -0.0159667544, -0.0327894613, 0.00891614333, -0.0114236372, 0.0514447764, 0.00495463237, 0.00788461417, 0.00181340636, -0.018655315, 0.0104305157, -0.000254110084, 0.0177993663, 0.00836197101, 0.00289980415, 0.0101616597, -0.0224961154, 0.00584350294, 0.0139805125, -0.00453488762, 0.00849365536, -0.0330089331, -0.00949775055, -0.0196868442, 0.016482519, 0.0256565455, 0.00638670195, 0.00908074901, -0.00141012238, 0.0445093885, 0.0245372262, -0.0252175964, 0.00838391855, 0.0207622685, -0.0459140241, 0.0319993533, 0.00735238893, 0.00116458547, 0.00455683516, 0.0021398745, 0.015143727, 0.00940447394, -0.00466382876, 0.0626818612, -0.0117199272, 0.00505065219, -0.0107652145, -0.0352475718, -0.00260351389, 0.00700123, 0.0289267115, -0.0302655064, 0.00486958586, -0.00660068961, -0.0455628633, -0.0236812774, 0.0143097239, -0.0279171299, 0.0182492882, 0.0404710621, 0.0330308825, 0.0216072444, -0.0373764746, -0.045870129, -0.019500291, 0.000912190066, -0.0199611876, 0.0361913107, -0.000606983609, -0.0248664375, -0.0147925681, 0.0653155521, 0.0287072379, 0.00106445036, -0.0017900872, -0.0288828183, 0.00758832367, -0.0101287384, 0.0247567017, -0.0281585529, 0.0481526591, -0.0141341444, 0.0143097239, 0.0110889385, 0.00998608, 0.0222766418, -0.046660237, 0.00355822709, -0.0089435773, 0.0526738316, 0.0126417195, 0.00844427384, 0.0301996637, 0.00282573164, 0.0456945486, 0.00930571, 5.25109385e-07, -0.00750053395, -0.00540455477, 0.0163398609, -0.0255029127, 0.0277415514, -0.0329869874, -0.0128392465, -0.00672688708, -0.0238788035, 0.0223534573, -0.0248005949, 0.033447884, 0.0444216, 0.00537986355, 0.0497767702, -0.004279749, 0.0273026023, -0.00939898659, 0.00935509149, 0.0697050393, 0.0145621197, 0.0284219217, -0.0296070818, -0.016427651, 0.0527616218, 0.00826320704, -0.0019423475, 0.0269075483, -0.0026515238, 0.00204659789, 0.0183041561, -0.0120820599, -0.0167019945, -0.0278732367, -0.0158570185, -0.00194783439, 0.00687503256, 0.0102713974, 0.0527177267, 6.38275815e-05, -0.045870129, -0.0150339892, -0.0557903647, 0.0423804857, 0.0560098402, 0.0353134163, 0.000860750733, 0.0257882308, 0.00297936355, 0.0129928784, -0.0198624246, -0.00437576883, -0.00699025625, 0.0251737013, 0.0368277878, 0.0311872978, 0.00869118236, 0.0107652145, -0.0149023049, -0.0385396853, 0.0195222385, -0.0105567137, -0.0611894354, -0.0024457667, 0.0167129673, -0.0054018111, -0.0100464355, 0.00915207807, 0.000293889811, -0.0181285776, -0.00778036378, -0.0107981358, -0.0403393768, -0.00928925, 0.028751133, 0.0322627202, 0.00860887952, 0.00921243336, -0.0118625853, 0.0168446526, -0.017272627, 0.00762673188, -0.00879543275, 0.0362132601, 0.0336454101, -0.01340988, 0.0198843721, -0.0333600938, -0.0150778843, 0.0124112712, 0.0457823388, -0.0105567137, -0.039637059, -0.0404052176, -0.00193274557, 0.0333381444, -0.0181834456, -0.0055472129, -0.0408002734, 0.019050369, -0.00875702407, -0.0169873107, 0.00297387666, -0.010617069, -0.0203123465, -0.0184797365, -0.00633732043, -0.00505888276, 0.0107981358, 0.000112652044, 0.00173247524, -0.0338868313, -0.00467205932, 0.00667750556, 0.00916305184, -0.0267100222, 0.0166800469, -0.00491348095, -0.0107268067, -0.0162740201, -0.0197856072, -0.00983793568, -0.0119613493, -0.0246689115, -0.00244165165, -0.00194509095, -0.0339307263, -0.0180846825, -0.00082440034, -0.00954713207, 0.0138488282, 0.0420512743, -0.00829612836, 0.0118077174, -0.0142109608, 0.0255468078, 0.0126417195, -0.00430992665, 0.0643498674, 0.0133989062, 0.022913117, 0.0026172311, -0.02741234, -0.0328553021, 0.0206305832, -0.0342160426, 0.0249542277, -0.0151108056, 0.0280927103, -0.0226497483, 0.0083784312, 0.00703963824, 0.00541552808, -0.00359937851, 0.0247128066, 0.0428194366, -0.000729752064, -0.0104250293, -0.0329430923, 0.0160435718, 0.0142768035, 0.00505613908, -0.0175469704, 0.00290529104, -0.00783523265, -0.0030561795, 0.0137829855, 0.0167568624, -0.026183283, -0.00789558794, 0.0224412475, 0.0305288751, 0.0306166653, 0.0286194477, 0.00452940073, 0.00866374746, -0.00706158532, -0.0138159068, -0.00994767249, 0.0176457334, -0.0223315097, 0.0206415579, -0.0294534508, 0.0426658019, 0.00366247725, 0.0195551608, 0.024295805, -0.0161752552, -0.0267539173, -0.0334917791, 0.012718536, -0.0262491256, -0.00241558906, 0.00205345638, -0.0218157452, -0.00318512064, 0.00193411729, 0.0516642481, 0.0228911694, -0.00689697964, -0.00974465907, 0.022715589, -0.011928428, -0.0344135687, 0.0067598084, -0.0473186597, 0.027807394, 0.0130916415, -0.0191271845, -0.0105731739, 0.000787364, 0.00412062975, -0.00190531125, -0.0373545252, 0.0251517538, 0.0271489713, -0.0157692283, -0.0063647544, -0.010913359, 0.0279390775, -0.000867609342, -0.0244274884, -0.0367838927, -0.0248883851, 0.0110889385, -0.0231545381, 0.00713840174, 0.0127624301, -0.00428523542, 0.0188747887, 0.0110615045, -0.0264686011, -0.0130477473, -0.0224961154, 0.00375575386, 0.0177774187, -0.00324273272, 0.0148913311, 0.011730901, 0.0292778704, -0.0294095557, 0.000633046147, -0.0348744653, 0.0134428, 0.0426438563, 0.00316591677, -0.0157472808, -0.0287730806, -0.030682506, -0.0160874669, 0.00158433011, -0.0135305906, -0.0322846696, 0.0210695323, -0.0421171188, -0.0248664375, -0.0131904054, -0.0170641262, -0.00635926798, 0.0168995205, -0.0358182043, -0.044092387, 0.00875153765, 0.0378593169, -0.00940447394, 0.00255413214, 0.0190064739, 0.0492500328, 0.0221339837, 0.00408770889, 0.00327016693, -0.0409758501, -0.00989280362, -0.0443557538, -0.01934666, -0.00602456927, -0.022913117, 0.00413709041, 0.00859241839, -0.00936057884, 0.0151985949, -0.012323482, 0.0167129673, 0.0428413823, 0.0198075548, 0.0277854465, -0.00754442904, -0.0275220778, 0.0137390913, 0.0261613354, 0.0304630324, -0.00587093737, 0.00331680523, -0.0149242524, -0.00811506249, 0.0181285776, -0.00712194107, -0.0162959658, -0.00560756819, -0.0093935, 0.0401857421, 0.0248664375, 0.0486355051, -0.0392859, -0.0204001367, 0.040931955, -0.00965686888, -0.0330089331, 0.0447288603, -0.0529810935, 0.0103152916, 0.0153961219, 0.0091411043, 0.00794496946, -0.003711859, 0.00527561363, -0.00984890945, -0.00575571368, 0.0431267, -0.00947031565, 0.0340185165, 0.00809311494, -0.0204220843, 0.0235495921, 0.00628793845, 0.0109627414, -0.0268636532, 0.011478506, 0.0161752552, -0.00233328622, -0.0452117063, 0.0273903925, 0.0213109534, -0.00265701069, -0.0458262339, -0.0350719914, -0.0348744653, -0.03048498, -0.0133220898, 0.00669396622, 0.00834551, -0.0277854465, 0.018260261, -0.0350280963, 0.00532773836, 0.0180078652, 0.015044963, -0.00413709041, 0.0304410849, 0.0376617908, 0.0119503755, 0.0150230154, -0.00467205932, 0.00920146, -0.0267758649, 0.00399443228, -0.000784620584, -0.00941544771, 0.0130367735, -0.019599054, -0.0230448, 0.00182712357, -0.031867668, -0.0334039889, -0.0235934872, -0.0091411043, 0.0283999741, 0.0103207789, 0.0147267254, 0.00942642149, -0.00956908, 0.0685637668, 0.0283780266, -0.0117089534, -0.0167349149, -0.00567889726, 0.0394395329, 0.0383641087, 0.0367838927, -0.0260516, -0.0202245563, 0.0211353749, -0.00548411394, 0.0104305157, -0.025239544, -0.0163069405, 0.0271489713, -0.0161094125, -0.00103907357, 0.0140683027, -0.0134318266, 0.0312750861, 0.0233520661, -0.0397687443, 0.057502266, 0.0242080148, -0.0282902364, -0.0140024601, 0.00520977098, -0.0368277878, -0.00120985205, 0.0254151244, 0.047757607, 0.0312970355, 0.0456945486, 0.00378593174, -0.00321529852, 0.034237992, 0.020487925, 0.00314671267, -0.0215084814, -0.00164880068, 0.00498206634, 0.00613979343, 0.0177006014, 0.000255481806, -0.000627216417, -0.0148035409, -0.0206635054, 0.0255687553, -0.0102494499, -0.00775292935, 0.00746761309, -0.0235715397, -0.00807665382, 0.010222015, -0.0505668782, 0.00852108933, 0.0199502129, 0.0223973524, -0.00673786085, -0.0280927103, 0.020784216, -0.0301996637, -0.0125978244, 0.0278732367, -0.0296509769, 0.0168885477, -0.00743469177, 0.00339636486, 0.00829612836, 0.0196100287, 0.00270776404, 0.0243835952, -0.0335356742, -0.00386823458, -0.015933834, 0.00548960082, 0.00156512612, 0.000514392857, -0.0253053866, -0.0011337219, -0.0190613419, 0.0149242524, 0.0064635179, -0.0228911694, 0.0167349149, -0.00237032236, 0.0138707757, -0.0433900692, 0.0278951824, -0.00673786085, 0.00216593686, 0.028202448, -0.0343257785, -0.0312750861, -0.00512746815, -0.0304410849, 0.00653484743, 0.00514941569, 0.0202794243, -0.0119942706, 0.0248883851, 0.02681976, 0.000248451775, 0.0481965542, -0.013014826, -0.0105128186, -0.0301777162, -0.0113029266, 0.0272367597, -0.0179859195, 0.0337332, 0.00491073728, -0.0513130911, 0.00263094809, 0.00263780681, -0.0161203872, -0.00391761633, 0.00212478545, -0.00988183, -0.026029652, 0.00643059704, 0.0351158865, 0.0030287453, 0.0274781827, -0.0107487533, -0.0286194477, 0.0194125, -0.00313025224, -0.0396151096, -0.0264027584, -0.000249309087, 0.0339087807, -0.0313189812, 0.00795045681, 0.0102713974, -0.00632086, 0.0141341444, -0.0219364557, -0.000693744514, 0.0227594841, 0.0123454295, 0.0187211577, 0.00205071294, -0.0026515238, 0.00887773558, 0.0095196981, 0.0186662897, -6.93573093e-05, 0.00143892842, -0.00556916045, -0.0303752422, 0.0345891491, 0.0110944258, 0.0270392336, -0.0245811213, -0.0145621197, 0.0165483616, 0.0124551663, -0.00277086301, -0.00989280362, 0.00977758, 0.037157, 0.0862095058, -0.0113029266, 0.000218616973, -0.0239446461, 0.00916305184, -0.0180737078, -0.00433187373, -0.00972271152, -0.0351597816, -0.0118625853, 0.0130367735, 0.0123015344, -0.0255907029, 0.00821931288, 0.0153522268, -0.000687914726, 0.00269404706, 0.00420841947, -0.0189625788, -0.0346549898, 0.0310995076, 0.0197307393, 0.00335521321, 0.00896003842, -0.000673854665, 0.00638670195, 0.0033799042, 0.00812603626, -0.0239885412, 0.00503693521, -0.00268170168, 0.00628793845, -0.0205757152, 0.0158570185, 0.00685308501, 0.00326468027, -0.0309897717, -0.0256565455, -0.0224083252, -0.0165264141, -0.0179639719, -0.0294315033, -0.00844427384, 0.0173604172, -0.0336673558, -0.0206964258, -0.0276537612, -0.0190174486, -0.0251517538, -0.00860887952, 0.00399443228, 0.0189296585, -0.00540729798, -0.0216401666, 0.0118516125, -0.00662263669, -0.0167568624, 0.0357084684, 0.00475436216, 0.0008518346, -0.00600810908, -0.0350280963, 0.0243397, -0.0178761818, 0.00196841, 0.00753894215, 0.0361035205, 0.0222876146, -0.0250639655, 0.00791753549, -0.0264027584, -0.0138927232, 0.023505697, 0.00200956152, 0.00956359226, -0.0018888507, 0.00207128865, -0.00146224746, 0.00270227739, 0.0326797217, -0.00425780145, -0.0331186727, -0.00829064194, 0.0150669105, 0.0129270358, -0.00408496521, -0.0175250228, -0.0114126634, -0.0204001367, 0.0203342941, 0.00135731138, -0.0185016841, -0.0322188251, 0.00191079814, -0.00927278865, -0.00423585391, -0.0146608828, 0.00330583169, 0.0215962715, -0.0225400105, 0.00050307624, 0.0159448069, 0.0310995076, 0.0144853033, -0.00490525039, -0.00266798446, -0.00494640181, 0.00680370303, 0.0308141913, 0.0510058254, 0.0114565585, 0.00838391855, -0.0336673558, -0.0273245499, -0.0134208528, -0.00934960507, 0.0183699988, 0.00684759812, -0.000130998727, -0.0158899389, -0.00326742372, -0.00610138569, -0.0209378488, -0.0320651941, 0.00469675, 0.0196648967, -0.0110450443, 0.0127843777, -0.00231545395, 0.0484599248, -0.0380348973, -0.0168446526, 0.00728106, -0.0126417195, -0.0253931768, 0.00957456604, 0.00520977098, 0.0144633558, -0.00159804721, 0.00275988923, -0.00146910606, 0.0326138809, -0.00587642426, 0.0260735471, -0.0110176094, 0.0286413953, 0.00784620643, 0.000757872185, 0.00435107807, -0.0103098052, 0.0188089479, 0.0415025912, -0.0134757217, -0.0110560181, -0.0166142043, -0.0382324234, -0.0200270303, 0.0180407874, -0.0113029266, 0.00222217734, 0.00613430655, 0.000458838447, -0.0303532947, 0.023900751, -0.0106115825, -0.0232642759, 0.0305288751, -0.00827966817, 0.000263369147, -0.0158899389, 0.0435437, 0.0168556254, 0.00820285175, -0.0288389232, 0.0217389297, 0.00703415135, -0.00246771402, -0.00275851763, -0.0370472632, 0.0305288751, 0.00404930068, 0.0100903306, -0.0321749337, -0.0303971898, 0.00945385545, 0.065622814, 0.00513569871, 0.0415464863, 0.00235249, -0.0216511395, 0.00590934558, -0.00299308077, 0.0148584098, 0.0209488217, -0.00562402885, -0.0136732487, 0.0288169757, 0.00889419578, -0.000903273933, -0.0196539238, 0.00455957837, 0.0351597816, 0.0221010614, 0.00842781272, 0.00184769928, 0.0278512891, 0.0269294959, 0.0236154348, -0.00836745743, -0.0162740201, 0.000124740269, -0.00828515459, 0.00167897833, 0.00121808238, -0.0256126504, 0.0237910133, 0.0120381648, 0.0606626943, 0.0241860673, 0.00852108933, 0.00639767572, 0.018062735, -0.0302874539, -0.00711645419, 0.0144194616, 0.00207677553, -0.0452117063, -0.0130806677, -0.000734553032, 0.0389566869, 0.00522074476, 0.00482020434, -0.0204111096, -0.000417344098, -0.0146169886, 0.0307264011, -0.0141341444, 0.00639767572, 0.0138598019, 0.00763770565, 0.00536614656, 0.0235715397, -0.0071109673, 0.0215523764, -0.016482519, 0.0181724727, -0.0435656495, 0.0283780266, -0.0191271845, 0.00824674685, -0.0351378359, 0.0154948859, -0.00956908, 0.0179200768, -0.014353619, 0.0333381444, -0.0426877514, -0.000834002334, -0.00624404382, -0.0257662833, -0.0334698297, -0.00663361046, -0.0202574767, 0.0123454295, -0.0212560855, -0.01737139, 0.023703225, -0.028751133, 0.0194125, 0.000505476724, 0.0117747961, 0.0169982836, 0.0057612, -0.0340404622, 0.00941544771, -0.00578314764, 0.00284493552, -0.0156265702, 0.0133330636, -0.0151217794, 0.0291681346, -0.0269953385, 0.00957456604, -0.0298265573, 0.00698476937, -0.0136293536, -0.00833453611, -0.0252175964, 0.0135525381, -0.00860887952, -0.00413983408, -0.0018298669, -0.0384080037, -0.0303971898, 0.033447884, -0.019599054, -0.0150669105, -0.020290399, 0.0406466387, -0.00651838677, 0.0181066301, -0.00638121506, -0.027961025, 0.016427651, 0.00676529529, -0.010167147, 0.00473515783, 0.0306386128, 0.00197938387, 0.0160655193, 0.0055389828, 0.0103317527, -0.0411733799, -0.00217005215, -0.0359498896, 0.0441362821, 0.0120271919, 0.00962943491, -0.0122795869, 0.00372008933, -0.000954713207, -0.0325041451, 0.0285316594, -0.00427700533, 0.0259199142, 0.0106280427, -0.0226497483, 0.0258321241, -0.0122905606, 0.00922340713, -0.0329211429, -0.0162740201, 0.0377495773, 0.0049902969, -0.0149352262, -0.0026775864, -0.00382433971, 0.031670142, 0.0106335301, -0.00772000849, 0.013311116, 0.0232423283, 0.00680370303, -0.00425780145, -0.0277854465, 0.00246497081, -0.00545119308, -0.0251737013, 0.0350939408, 0.0144523829, -0.0354012027, -0.0249322802, -0.0180517603, 0.026973391, -0.0143097239, -0.00622209627, -0.00362132583, -0.0262930207, -0.0113797421, 0.00496286247, 0.0413928516, -0.0290583968, -0.0136403274, 0.00364876026, 0.0112919528, 0.0023003649, -0.00516587636, -0.00567889726, 0.00267621479, -0.0393736884, -0.00913013052, 0.0150888581, 0.00961846113, 0.0105786612, -0.00138200226, 0.00562951574, 0.0112700053, 0.023308171, -0.0339965671, -0.00633732043, 0.00542650186, 0.0193905551, 0.000171292835, -0.00407947833, 0.00223452272, -0.00946482923, 0.00272148126, -0.0464846566, -0.0017434489, 0.00679272972, 0.00538260723, 0.0290803444, 0.012323482, -0.019840477, -0.0312311929, 0.0260954946, 0.00113097846, -0.00258979667, -0.011012123, 0.00581606897, 0.0152095687, 0.00903136749, -0.033952672, 0.0139146708, -0.0159777291, -0.00333326589, -5.39683861e-05, -0.00904782768, 0.0146389352, 0.00220160163, 0.0111822151, 0.00457878271, -0.0150339892, -0.0114126634, 0.0252834391, -0.0122027714, 0.0251078587, -0.00594226643, -0.00267895823, 0.0351597816, 0.00278458023, -0.000174121989, 0.0376837365, -0.00308361393, 0.0296729244, 0.00543747563, 0.0175140481, -0.017766444, -0.0201477408, -0.024690859, 0.000204042517, -0.00567889726, -0.00573376613, -0.00264603691, -0.0142548559, -0.0255248602, 0.000299548119, 0.0143755665, -0.0119174542, 0.035532888, 0.0213548485, -0.00633183355, -0.0267319698, 0.0249761753, -0.0283121839, 0.0051411856, 0.0108694648, -0.0189845264, 0.0120381648, -0.00894906465, 0.0270611811, 0.03246025, 0.00634829421, -0.022123009, 0.0452556, -0.0291242395, -0.00965686888, -0.0260077044, 0.0416562222, -0.0256565455, -0.00624404382, 0.0415025912, -0.0160984397, -0.0149900941, 0.00245674048, -0.00803276, 0.0274781827, 0.0325480402, 0.00434010429, -0.000947854598, -0.0150339892, 0.0249761753, -0.00688051945, -0.0376617908, -0.0262930207, -0.00190119608, -0.00891614333, 0.0130477473, 0.00953615829, 0.0214865338, 0.00733592827, 0.0125649031, 0.011730901, 0.0264905468, -0.00471869716, 0.00412337342, 0.0209707692, 0.0110011492, -0.00628793845, 0.0503035076, 0.00818639155, 0.0106445039, -0.0260954946, 0.0174701549, -0.0145182246, -0.0341282524, -0.0116211642, 0.0113797421, -0.00110765931, 0.0262052305, -0.0200709254, 0.00116732891, 0.0142768035, -0.0104689244, -0.0113248741, -0.0374423154, 8.46176263e-05, -0.00581606897, -0.00248966157, 0.00273931352, -0.0143316714, -0.0180517603, -0.0145291984, -0.0342160426, 0.00129627, 0.00298210699, 0.00613979343, -0.0154729383, 0.0237471182, 0.0248005949, 0.023308171, 0.00887224823, 0.0181285776, 0.0133550111, -0.0109188464, -0.00508357352, 0.0262271781, 0.0126636671, -0.0174591802, 0.0257662833, -0.00587093737, -0.00582155585, 0.00158158666, -0.0186772626, -0.0110724783, -0.0106225563, 0.0123125082, 0.0129380096, -0.00737433648, -0.0169873107, 0.00583801651, -0.0175469704, -0.00395602407, -0.00829612836, -0.00784071907, 0.0283341315, -0.00544570619, 0.00802178588, 0.0105841476, -0.0317359827, 0.0162959658, 0.00690246653, -0.017865207, -0.0050424221, 0.0180407874, 0.00299308077, -0.0157582536, 0.0250639655, -0.0127953514, -0.00484763877, 0.00348141114, 0.0167019945, -0.016230125, -0.00831807591, -0.000735924754, 0.00212890073, 0.00876251142, 0.00238952646, 0.0199721605, -0.00632086, -0.00308087049, -0.0135854594, 0.0140573289, -0.00634829421, -0.0364546813, 0.0127075622, 0.0165154412, 0.018852843, 0.0185785, -0.000603554305, -0.000485243945, 0.0362352058, -0.0200709254, -0.0131026153, 0.0156046227, -0.00405478757, -0.00806568, -0.00605200371, 0.00260077044, -0.0283341315, -0.0296729244, -0.00722070457, -0.0151985949, -0.00682016369, 0.00616722787, -0.00209735124, -0.00331680523, -0.00776390312, -0.019994108, 0.0239446461, 0.00396151096, 0.0180407874, -0.00248691812, -0.0183151308, 0.00313573913, 0.0156485178, 0.0274562351, 0.0111163734, -0.0100025414, 0.00447453232, -0.00997510646, -0.00532773836, 0.0212890077, -0.00237580924, -0.00409593899, -0.00185730122, 0.0107322931, 0.00875153765, -0.0275440235, 0.00121122377, -0.0103866216, 0.0560098402, 0.00661715027, -0.000685514242, -0.00913561787, 0.0112480577, -0.0103317527, -0.00813152269, -0.000398140081, -0.00357194408, -0.00743469177, -0.00191902835, 0.00842781272, 0.0188089479, -0.0187431052, -0.00918499939, -0.0172506794, 0.0402076915, -0.0131355366, 0.0100354627, 0.0257004406, 0.00187239, -0.00410142587, -0.000670425419, 0.0179859195, -0.00522623165, 0.0163727831, 0.0478892922, 0.0173055492, -0.00121396722, -0.0134318266, -0.00376124075, -0.0265344419, 0.00926730223, -0.00869118236, 0.012916062, -0.0049518887, -0.00702317758, 0.0117857698, -0.00647449167, -0.00154317869, -0.00735787582, 0.00111931888, -0.0162520725, -0.0107048592, 0.00721521769, -0.0114565585, -0.00541552808, 0.0218486656, 0.0109572541, -0.0163508356, -0.00154317869, -0.00236346386, 0.0131904054, 0.0158570185, -0.0146060148, 0.040624693, -0.00697379559, -0.00344848982, -0.019840477, -0.0125868507, -0.011533374, 0.0183699988, -0.00561031187, 0.00547862705, 0.0209049266, 0.0153851481, -0.0208061635, 0.0318018273, 0.00677626906, 0.0110230967, 0.00356645742, 0.0160655193, 0.0123673771, -0.0368716829, -0.0117638223, -0.0271489713, -0.0018819921, -0.0428194366, -9.75631847e-05, -0.00903685391, -0.0390225314, -0.0036844248, 0.0233520661, -0.00755540282, -0.0126307458, -0.0307044536, -0.0199063197, -0.0256565455, 0.0144743295, -0.0136513012, 0.0376398414, 0.0169543903, -0.0153851481, -0.0338648856, 0.00121053797, 0.0170970485, 0.00870215613, -0.0268856, 0.00600810908, -0.0154839121, -0.016328888, -0.00581606897, 0.0220571663, -0.023308171, -0.00575022679, -0.0106335301, 0.0027228531, 0.0105567137, 0.00435107807, -0.0326797217, 0.000203013726, -0.00259116851, -0.00317689055, -0.030880034, -0.00985439587, 0.00966235623, 0.00669396622, 0.0068146768, -0.0162410978, -0.00480374368, 0.0309678242, 0.0092947362, -0.03612547, 0.0178871546, -0.000440663251, 0.00846622139, -0.0211024545, -0.0127624301, 0.0307044536, -0.0456506535, 0.00776939, -0.0217828248, -0.0198843721, 0.00774195604, -0.0105183059, -0.0149681475, 0.00467205932, 0.0199172925, 0.000103735896, 0.0194563959, 0.0142109608, 0.0269075483, 0.00278458023, 0.00270913588, -0.0242080148, 0.0262052305, 0.010885925, -0.00966235623, 0.0133330636, 0.0228472743, 0.0038572608, 0.0303532947, 0.00328937103, -0.0310556125, -0.00438125571, 0.0307922438, 0.0069573354, 0.00854852423, -0.0197636597, -0.00461170357, -0.00431267, 0.00111794716, -0.0124551663, -0.00317963399, 0.000161519361, 0.0115443477, 0.0306166653, 0.0131904054, 0.0204111096, -0.0185016841, 0.0165812839, -0.00730300741, 0.00439222949, -0.015440017, 0.0144853033, -0.00672688708, -0.0141999871, 0.0248005949, 0.0280707628, 0.0244055428, 0.0526299365, -0.0163069405, 0.00871313, -0.000536340289, -0.00533322524, -0.00904234126, 0.0118296649, -0.0084223263, 0.00675432151, -0.000337613194, 0.0354889929, 0.0085759582, 0.0397906899, 0.0177335236, 0.00335521321, 0.0127295088, 0.00291626481, 0.00246771402, 0.0190613419, -0.0218815878, 0.00197389699, 0.00574474, -0.0140024601, 0.0310336649, -0.0142219346, 0.0186882373, 0.0120162182, -0.0154290432, -0.0159996767, 0.020290399, -0.00125306111, -0.0102878576, -0.0319774039, -0.0137281176, -0.0166032314, 0.00874605, -0.00314945611, -0.0183809716, 0.00180380442, -0.0106499903, -0.00252395449, 0.0150669105, 0.0134208528, 0.0424682759, -0.0302655064, 0.047757607, 0.00866374746, 0.00482843444, 0.0148584098, -0.0433461741, 0.0137500651, -0.0137610389, -0.0059587271, 0.0172616541, -0.0059971353, 0.008559498, -0.00638121506, -0.00545119308, -0.0269075483, -0.00101575453, -0.0281585529, 0.00461719045, -0.0219913237, 0.00225509843, 0.00562951574, -0.0340404622, 0.000442720804, 0.0194015279, -0.025634598, 0.00487232953, 0.00918499939, 0.00899844617, -0.0200270303, 0.0239446461, 0.00559110753, 0.0208171364, 0.0252614915, -8.38031701e-06, -0.0142219346, 0.00945385545, 0.00218376936, 0.0296070818, -0.0455628633, -0.0189406313, 0.000105279076, -0.0185675249, -0.00169955404, 0.0325699858, 0.0357523635, -0.00661166338, 0.00119339151, 0.0125539294, -0.00602456927, 0.0227375366, -0.00261311582, -0.0271270238, -0.00364876026, -0.00672688708, -0.00338813453, -0.00126266305, 0.000720835873, -0.0328991972, -0.0119832968, 0.00257333624, 0.00361858238, -0.017272627, 0.00529207382, 0.0223644301, -0.00834551, 0.0276537612, -0.000239878544, -0.00498481, -0.013311116, 0.000351501803, -0.00865277462, -0.0198185295, -0.004244084, 0.00180654787, -0.000515421678, 0.0165922567, -0.0101342257, 0.00645254413, -0.0143426452, -0.00711645419, -0.0164166782, -0.0400540605, -0.00332503556, -0.00989280362, -0.0197965819, -0.000104078827, 0.0103591867, -0.00612333277, -0.00808214117, -0.00188747898, 0.0347866751, 0.0103591867, 0.0156046227, 0.00528658694, 0.0506546684, 0.0201477408, 0.00370088522, 0.00848268159, 0.0338209905, 0.00748407375, 0.00678724283, 1.52281727e-05, 0.0234398544, -0.000513364095, -0.0208061635, 0.00727557298, -0.0113358479, -0.0122576393, -0.00524543552, -0.00258293818, 0.0161094125, 0.0236154348, 0.0127843777, 0.00213164417, -0.000710548, 0.000767474179, 0.0139475912, -0.00629342534, -0.010095818, 0.0215523764, -0.0134647479, 0.0132781947, 0.00812603626, 0.0109298201, -0.00759929745, -0.0112590315, -0.0181834456, -0.010364674, -0.00119407731, 0.0296070818, 0.0147267254, 0.0224412475, 0.0126746409, 0.0178103391, -0.0080108121, -0.0123125082, -0.0100354627, 0.0121369287, -0.0180846825, -0.005393581, 0.00632086, -0.00199172925, 0.0256565455, -0.00316317333, 0.000804510491, 0.00456780894, -0.00555818668, -0.00218925602, 0.00188610726, -0.0148254884, 0.0298485048, 0.0015376918, 0.0232423283, 0.00793948304, 0.021332901, -0.0159228612, 0.00834551, 0.010913359, -0.00498206634, -0.0201038457, 0.00635926798, -0.00810408872, 0.00122013991, 0.00524817919, 0.000546285242, -0.0162630454, 0.003711859, -0.0376837365, 0.0140244076, 0.0113248741, -0.0125100352, 0.0133001423, 0.0165593363, 0.00661715027, -0.00956359226, 0.0136074061, 0.0158131234, 0.00516313268, -0.00430443976, -0.00472692773, 0.0259418618, -0.0121917976, -0.00118241773, 0.00872959, -0.00771452161, 0.0267978124, 0.0171519164, -0.0118406387, -0.0143975141, 0.0348086245, -0.0103975944, -0.0182273407, 0.0109517677, -0.0105512273, 0.0176896285, -0.00921243336, -0.0266880747, 0.00676529529, -0.00743469177, -0.0107926484, 0.00618917542, 0.00878994539, -0.0193356853, -0.00817541778, 0.00499578379, -0.00556093, -0.0068585719, 0.00607395126, -0.0167897847, 0.0162520725, -0.0189077109, 0.011730901, -0.00347043737, -0.0168885477, -0.0208171364, 0.000455752102, 0.0177225489, -0.0257004406, -0.0258101765, -0.00234014471, -0.0195332132, -0.0075608897, 0.00477630924, -0.0193356853, 0.0234398544, -0.000932079914, -0.0076761134, 0.00237032236, 0.00417549862, -0.00328662759, 0.0195441861, -0.00662812358, -0.00922889449, 0.00772549538, 0.0129380096, 0.0247128066, -0.00381610938, -0.00689697964, -0.0378373675, -0.0194125, -0.000141886703, -0.00891614333, -0.0029299818, 0.000659108744, -0.00462267734, -0.00687503256, 0.00537437666, 0.0111931888, -0.00181203464, -0.00841683894, -0.00606297748, -0.0124661401, -0.00461719045, -0.0167678371, 0.00035595987, -0.000676255208, 0.00935509149, 0.00479277, -0.0156046227, 0.0155497538, 0.0137610389, -0.0171738639, -0.00674883462, -0.00390115567, -0.0224741679, 0.00498206634, 0.00971173774, -0.00101986958, 0.0282682888, 0.00746761309, -0.0104030818, 0.0274781827, 0.010167147, -0.0129928784, -0.0101781208, 0.0209378488, 0.0199502129, -0.00523171853, 0.0130696949, -0.00936606526, 0.00984890945, -0.0199721605, -0.00584899, -0.00415355107, 0.00793399569, 0.00556641677, -0.000515421678, 0.0123015344, 0.0121479025, -0.0028806, 0.0151547, -0.00768160028, 0.0264466535, -0.018852843, -0.00718778325, 0.00843878649, 0.0125100352, -0.00273382664, -0.027961025, -4.22230842e-05, 0.00934960507, -0.0119503755, 0.00710548041, -0.009997054, -0.0251956489, -0.000506848446, 0.0287950281, 0.0136622749, -0.00708353287, -0.000905331457, 0.0116979796, -0.0189077109, 0.0166032314, 0.0150998319, -0.00506711286, 0.0196648967, 0.00434559118, -0.00596970087, 0.0233740117, 0.02741234, -0.0412611663, 0.0100793568, -0.0117418747, 0.00572279235, -0.00645254413, 0.00138131634, 0.0191491321, -0.0124771139, -0.000134770933, -0.0113358479, -0.000886127469, -0.000945111213, 0.0159448069, -0.0332942493, -0.00865826104, -0.0244933311, -0.0144523829, 0.00307264016, -0.016427651, 0.00126609229, 0.0150230154, -0.0116431117, 0.0116650593, -1.20132172e-05, 0.0113358479, -0.000318580656, 0.0109517677, 0.0191491321, 0.00614528032, 0.00831258856, 0.00228390447, 0.00306166639, -0.00721521769, -0.000599782099, 0.00154317869, 0.00368716824, 0.000454723311, -0.0100080278, 0.00655679451, -8.4917694e-05, 0.010913359, -0.0178432595, -0.0153302792, 0.00265838252, -0.0221888516, 0.00398894539, 0.0175689179, 0.00426603155, 0.0235934872, -0.0340624116, -0.0139914863, 0.00517136324, -0.0198185295, 0.031670142, 0.0241421722, 0.0102439625, -0.0039916886, -0.000121139521, -0.00352256256, 0.00865277462, -0.0111657549, -0.00322901551, 0.012323482, 0.00930022355, -0.00376947108, 0.0226716958, -0.0110285832, -0.000965686922, 0.00841135252, 0.0144633558, -0.0384738445, 0.0114455847, 0.0172397066, -0.0144523829, -0.00313299568, 0.0125429565, 0.00359937851, -0.00553349592, -0.0219474304, -0.0187979732, 0.0446849652, 0.00171052781, -0.00094305363, 0.0134208528, 0.0060958988, -0.00381610938, 0.00689149275, -0.0165703092, -0.0039916886, -0.00893809088, -0.01553878, -0.0137500651, -8.23457303e-05, 0.0275440235, -0.0166800469, -0.00961846113, -0.0013717144, 0.00296290312, 0.00175853784, 0.0074731, 0.0240543839, -0.0112370839, -0.0166251771, 0.0132891685, 0.00259254, -0.00590934558, -0.0223754048, 0.0136074061, -0.0108420299, -0.0260954946, 0.00970625, 0.0145730935, 0.0133879324, -0.0209817421, -0.0115882428, -0.00435930816, 0.038210474, 0.00241010217, 0.00784071907, -0.00363778649, -0.0307922438, -0.0082247993, -0.0155168325, 0.014847436, -0.0083784312, 0.000382365368, 0.0072645992, 0.0207512956, -0.0220791139, -0.0288828183, 0.0120930336, 0.00116184202, -0.00729203364, -0.00537986355, 0.00263643498, -0.0129380096, -0.0138268806, 0.0129819047, -0.0330089331, 0.0153302792, -0.00511923805, -0.00245536864, -0.0104360031, 0.00578863453, -0.000850462879, -0.00906428881, 0.00678175595, -0.00786815397, -0.00251023727, -0.00959102716, -0.0286852904, -0.017272627, -0.0179310497, -0.0199831352, 0.00869666878, -0.0338868313, 0.00678175595, 0.0120930336, -0.0170092583, 0.0203781892, 0.00345672015, 0.0136622749, 0.00297936355, 0.00700123, -0.00937703904, 0.0182822086, -0.00102947163, -0.0266661271, -0.0116211642, 0.00500127068, -0.0185455773, 0.0051521589, -0.00938801281, -0.00262820465, 0.0140683027, 0.00041905875, 0.00584350294, -0.0127514564, 0.00487781642, -0.00734690204, 0.0222876146, 0.0312092453, 0.00208363403, -0.00736884959, -0.00261585927, 0.00770354783, 0.0185346045, -0.00615625409, 0.00501224445, 0.00537986355, 0.00971173774, 0.0175579432, 0.00860887952, 0.00366796413, 0.0173933376, -0.0120601123, -0.00141560927, -0.00391487265, -0.000983519247, -0.00547588384, 0.0210585594, -0.0138159068, -0.026622232, 0.0120601123, 0.00649095234, 0.000198898575, 0.0126965884, 0.00583252963, -0.0163069405, -0.00438948581, -0.00320981164, 0.000742783304, 0.013508643, 0.00527835684, 0.00328937103, -0.00985439587, 0.00125374692, 0.00972819794, -0.00476807915, 0.00398620171, 0.0187431052, 0.020235531, 0.00985988323, -0.00654033385, 0.0159667544, 0.00518508, 0.00751150772, 0.0367180482, -0.0178542342, -0.0357962586, -0.00821382552, -0.00189982436, 0.0235715397, 0.0109627414, -0.0198514499, 0.00910818297, -0.000326296547, 0.00100135151, 0.00236895075, -0.0101287384, 0.00391487265, 0.0253273342, -0.00639767572, -0.0045486046, -0.0391542129, 0.0233959593, -0.00769257406, 0.0190942641, 0.00334972655, 0.00933863129, 0.00823028572, 0.0244933311, 0.0197636597, 0.00539083732, -0.00198487076, 0.00437028194, -0.0192917902, -0.00762673188, -0.0109956618, -0.0235495921, 0.0107981358, -3.7743579e-05, -0.00840037875, -0.0225400105, -0.0011728158, -0.00472418405, 0.00314396922, -0.0113139, 0.0100025414, 0.0126636671, 0.00826869439, 0.00557190366, -0.00151985954, 0.00533871213, 0.00967881642, 0.0239226986, 0.0179859195, -0.0282243937, -0.0104689244, -0.00885030068, -0.0181505252, 0.00095745665, -0.002122042, -0.0326358266, 0.00452665752, 0.0131794317, 0.00618917542, 0.0141999871, -0.00361309573, -0.00779682444, 0.000529138837, -0.00516861957, 0.00725911232, 0.0121369287, -0.00602456927, -0.0190064739, -0.0107158329, -0.0148913311, -0.00851011556, 0.0326797217, -0.0138488282, -0.00161450775, 0.00192314351, -0.0254151244, 0.00428523542, 0.00245262519, -0.00457603903, 0.0146938041, 0.0219364557, 0.00218514097, 0.00228116103, -0.0114894798, 0.00776939, -0.021278033, -0.00123042776, 0.00805470627, -0.00247457274, 0.0128063252, -0.00211655535, -0.00741274422, -0.00651838677, 0.0184358414, -0.020784216, 0.00939898659, -0.025239544, 0.0223644301, -0.00362406927, 0.0298485048, 0.0298046097, 0.00615076721, -0.000778447895, -0.00734141516, 0.00982147455, -0.0211244, 0.0197417121, 0.00818639155, 0.00923438091, 0.0117528485, 0.000520222646, 0.0204989, 0.0085759582, -0.00841135252, 0.00164605724, 0.00891614333, 0.000518851, 0.0051411856, 0.00573925301, 0.0117089534, -0.01370617, 0.00712742796, -0.00142109604, -0.00823028572, 0.00988183, -0.012422245, 0.00731398119, -0.00791204814, -0.0244274884, 0.00729752053, -0.0223973524, 0.0203562416, 0.00156649784, 0.00126609229, 0.00885578804, -0.00604651682, -0.00227978919, -0.00355274021, -0.0254590176, 0.0116321379, 0.00406576134, 0.0227814317, 0.00668299245, -0.0111822151, -0.00875702407, 0.0182273407, 0.0068146768, 0.0126526933, 0.00273657, -0.00331954868, 0.00682016369, 0.00422213692, -0.0346330442, -0.00431815675, -0.00355274021, 0.0165154412, 0.0170751, 0.00966784265, -0.0179639719, 0.0219035354, 0.00791204814, 0.00846073404, 0.012521009, -0.00490799407, 0.0165922567, 0.0196868442, 0.00624404382, 0.0125539294, 0.0129709309, 0.0197856072, 0.0128282728, 0.0225839056, 0.00958005339, -0.00153357664, -0.017272627, 0.0173055492, 0.0075608897, 0.00741823111, -0.0195880812, -0.0452994965, 0.0014375567, 0.00304520596, -0.016976336, 0.00677078217, 0.00130930135, -0.00626599137, -0.00243204948, -0.0134318266, -0.0250420179, -0.00452665752, 0.0147376992, 0.000355616939, 0.00229624985, 0.00495463237, 0.00163508346, -0.00232231244, 0.0065129, -0.00831258856, -0.00831807591, -0.000738668197, 0.0186882373, 0.00528384373, 0.00256099063, 0.0244933311, -0.0045321444, -0.00938252639, -0.00991475116, -0.0183699988, 0.0224741679, 8.53892197e-05, 0.0141780395, 0.0149900941, 0.0209049266, -0.0186662897, -0.0147925681, -0.0115772691, 0.0153522268, 0.00490250718, 0.00920694694, 0.0281146578, 0.00354725332, 0.00343477284, 0.0199063197, 0.00518233702, 0.0127843777, -0.00881738, 0.000816170068, 0.00115498353, 0.0402735323, 0.00012242551, -1.66106038e-05, -0.0250639655, 0.0162959658, 0.00294369902, -0.0196648967, 0.0122027714, 0.0151876211, -0.00401638, 0.00144853035, -0.00523446221, 0.0285097118, 0.00201093336, 0.0351158865, -0.0127953514, 0.0030753836, 0.00488330331, -0.017865207, 0.00196017977, 0.0112480577, -0.00149379694, 0.00713840174, 0.0345891491, 0.00272010965, 0.0113577945, 0.0194783434, 0.0145840673, -0.00843878649, 0.000598753337, 0.0109627414, -0.00147322123, -0.0617161728, 0.00271599437, -0.00462267734, -0.000495531829, -0.00709999353, 0.00429072231, 0.018710183, 0.0178432595, -0.0171738639, 0.0224522203, -0.0418756977, -0.00452391384, -0.0108420299, 0.00674883462, 0.0140244076, 0.0188089479, 0.0369814187, 0.0016103927, 0.00379964872, 0.0110066356, 0.0113907158, 0.0046912632, -0.00536340335, 0.00334698311, -0.0132343005, 0.000148916733, 0.00241696066, -0.0265563894, 0.042709697, 0.00216593686, 0.0217937976, -0.000974603056, -0.0213219281, 0.0035335361, 0.0152863851, 0.00698476937, -0.000675569347, -0.019599054, 0.00612333277, 0.00605749059, 0.0127624301, -0.0285755526, -0.00255687558, -0.0144194616, -0.0150669105, 0.0118625853, 0.00954713207, -0.0190723166, -0.0343257785, 0.0201696884, 0.00145676068, -0.0177774187, 0.0119613493, -0.0199282654, 0.00611784589, 0.0116321379, 0.0124332188, 0.0225839056, -0.00669945311, 0.00684211124, -0.0056459764, -0.00852108933, -0.00432364363, -0.0113358479, 0.0245152786, 0.0223644301, -0.00253904331, -0.00406576134, -0.00503967842, -0.00301228464, -0.0346111, -0.00967881642, -0.00961297378, 0.0119613493, -0.00250063534, 0.00341008184, -0.000303491805, -0.00871861633, 0.0110011492, 0.0310336649, 0.0127514564, 0.0066610449, 0.0158021487, -0.000577148807, -0.0114455847, 0.0104689244, -0.00499578379, -0.00307264016, 0.0113907158, 0.0217937976, -0.0103427265, -0.006112359, -0.00446355855, -0.00265426724, -0.00205482822, 0.0275879186, -0.0297607146, 0.00707804598, 0.0121698501, 0.00925632846, 0.0137500651, 0.00271736621, 0.00763221877, -0.0231545381, -0.00222492078, -0.0234837495, 0.00938801281, -0.0242519099, 0.0213109534, -0.0107761882, 0.00205208478, -0.00138337398, 0.00880640652, 0.00462542102, -0.00390938576, 0.009997054, -0.0193247125, 0.0136293536, -0.00454586139, 0.0114346109, -0.00385177392, -0.00632634666, 0.00224412465, 0.00261585927, 0.0160325971, -0.00378867495, -0.00773646915, -0.00311379158, 0.00415629428, 0.00600810908, -0.0033799042, -0.0242080148, 0.0128941154, -0.00789010059, 0.0179310497, 0.019105237, -0.00448276242, -0.0101890946, -0.00786815397, 0.0142109608, 0.00367619446, -0.00985988323, -0.0332284085, 0.0166251771, -0.00463639433, -0.0107377796, 0.00468303263, -0.00013622838, -0.00250886567, 0.0123454295, -0.0136732487, 0.0270831287, -0.0143206976, -0.0202245563, -0.0122576393, 0.00637024129, 0.003884695, -0.00426328834, -0.018655315, 0.011478506, 0.0143097239, -0.00039162446, -0.0150339892, 0.00600810908, 0.01934666, 0.00246908586, 0.00357194408, -0.00296290312, 0.00517136324, -0.000398140081, -0.00908623636, 0.0177993663, -0.0123015344, -0.00487781642, 0.00690795342, 0.031670142, 0.00225235499, -0.00564048951, -0.021574324, -0.00700123, 0.00263780681, 0.00778585067, 0.0216401666, -0.0113577945, -0.00578314764, -0.0140244076, 0.00587642426, -0.00301502808, 0.00247457274, -0.0170970485, -0.0111767286, -0.0162849929, -0.0194673706, 0.0065622814, 0.0221449565, 0.0214975066, -0.0271709189, -0.0226278, 0.0167788099, -0.0138049331, 0.0212012175, -0.00655679451, -0.00119613495, -0.00409593899, 0.0233959593, -0.00279281032, -0.00331954868, -0.043653436, 0.0089710122, 0.006112359, -0.00816444401, 0.00506711286, -0.00270639244, -0.0101836072, 0.0236373823, -0.0102878576, 0.0204001367, -0.0119503755, 0.0187760256, -0.00734690204, 0.0180846825, -0.0153522268, -0.0158789661, 0.00142246776, 0.000556573097, 0.0200160556, 0.0141231706, -0.00710548041, -0.0193247125, -0.0132781947, 0.0170531534, 0.0107652145, -0.000941681908, 0.0155278062, -0.0320871435, -0.011730901, -0.00886676181, 0.00834002346, 0.00403284, 0.0313409306, -0.010293345, -0.00706707221, -0.0153851481, 0.00370637211, -0.0143645927, -0.00147322123, 0.0129928784, -0.0139695387, 0.0223644301, 0.0242299624, -0.000570976117, 0.00204248261, -0.0231764857, -0.0320651941, 0.00889419578, 0.00153906352, 0.00415629428, 0.0333600938, -0.0107542407, 0.0207622685, -0.00327291037, 0.0111877024, -0.00270913588, 0.00569535792, 0.0129380096, 0.000246051262, -0.00158981699, 0.00415629428, 0.00228939136, -0.00663909735, 0.00327565381, 0.000659451704, 0.00578314764, -0.0151766473, 0.030880034, 0.0131355366, -0.00523171853, 0.00107679574, -0.0321310386, 0.00446355855, -0.0109188464, 0.0126417195, 0.00872410368, 0.00548411394, 0.00568438414, 0.00278183678, -0.0120271919, 0.0313409306, 0.0187979732, -0.000508906, -0.00494640181, -0.00458152592, 0.0130696949, 0.00841683894, -0.0138488282, -0.0108914124, 0.0135305906, -1.06682937e-05, 0.0246469639, -0.00221120357, -0.0189845264, 0.0110889385, 0.0200818982, 0.00898198597, 0.0189186838, -0.000211072547, -0.00201093336, -0.0187650528, 0.0151108056, -0.00761575811, -0.022913117, -0.0190832894, 0.0156155964, -0.0351158865, -0.0197417121, 0.0145291984, -0.000648135, 0.00232779933, 0.00396425463, -0.0100628966, -0.00604651682, -0.0305288751, 0.00603554305, 0.00986537, 0.000417344098, -0.0095196981, -0.0246689115, -0.0116540855, -0.0209927168, -0.0179639719, 0.000794222637, -0.0144633558, 0.00547039695, -0.0258101765, 0.0126636671, 0.0027969256, -0.0232862234, 0.0262271781, 0.0128502203, -0.0311872978, 0.0181834456, 0.000632017385, -0.00548411394, -0.0117638223, 0.0211244, 0.0105018448, 0.0100190016, -0.00960748736, 0.00195606472, 0.000989006, -0.0103372391, -0.00661166338, -0.00250200694, 0.0123673771, -0.012422245, -0.000615556841, -0.00856498443, 0.00771452161, 0.000958142453, -0.0119832968, -0.00870764256, 0.0120820599, -0.009278276, -0.0144853033, 0.0119723231, 0.0148913311, -1.40386392e-05, 0.0046912632, 0.00525640929, -0.0110230967, 0.0296070818, 0.00233877287, 0.0117089534, 0.0152534638, -0.0122686131, 0.00711645419, -0.0111163734, -0.0290803444, 0.0124551663, -0.00237580924, -0.0131904054, -0.00220983173, -0.00872410368, -0.0244713835, -0.0194673706, 0.00173247524, -0.0188638158, 0.0193905551, 0.00062413, 0.00430718297, -0.0118296649, 2.08436286e-05, -0.0126417195, 0.0152973589, -0.00501498766, -0.00107748166, 0.0251298063, -0.000958828314, -0.0442679673, 0.0121040074, -0.000234048755, 0.00207677553, -0.0170092583, 0.00384903047, -6.12984877e-05, 0.0229350645, -0.0121369287, -0.0129709309, -0.0288169757, -0.00942093413, 0.0180517603, -0.0249542277, -0.00110491586, 0.00661715027, 0.0146389352, -0.0140134338, 0.0258979667, 0.00624404382, 0.0119832968, -0.0018559295, -0.0165812839, 0.0021947429, 0.0181834456, 0.0031741471, -0.00134702353, -0.0238129608, -0.0349183604, -0.00853755, -0.0101342257, 0.00787912682, 0.00473241461, -0.00133742148, 0.0397248492, -0.00261037238, 0.0169104952, -0.0177006014, 0.0028229882, 0.0123673771, 0.0199282654, -0.000783934782, 0.00707804598, 0.0261613354, 0.0158570185, 0.00282024476, 0.0113577945, 0.0281805, 0.00932765752, -0.00672688708, -0.0187650528, 0.00816993, -0.00727557298, 0.000878583058, 0.00516038947, -0.00452117063, 0.0210914798, -0.0111328335, -0.0140024601, -0.0251517538, 0.0147596467, 0.016723942, 0.0114236372, -0.0084223263, 0.0115882428, -0.00271187932, 0.0091685392, -0.0175250228, 0.0048915334, -0.0198295023, -0.0280488152, 0.0178871546, -0.0129819047, 0.00818639155, -0.0145950411, 0.00241147378, -0.00579412142, 0.00375575386, 0.0106006088, 0.00196155161, -0.0211573225, 0.00594226643, -0.010814596, 0.00359389163, 0.00830710214, -0.016482519, -0.00212478545, 0.00563500263, -0.0386713706, -0.0160216242, -0.00902039371, -0.000135285329, 0.0149132786, 0.000914933451, 0.0142768035, 0.00951421075, 0.0209268741, -0.00814249646, -0.016482519, 0.0147596467, -0.00435107807, -0.0157253332, 0.00354176643, -0.013113589, -0.0121149812, -0.00745115243, 0.00865277462, -0.0101890946, 0.0172506794, -0.0310995076, 0.0108365435, -0.0220352188, 0.00484763877, -0.0057612, 0.0128063252, -0.0174811278, 0.0321529843, -0.00175579439, 0.00462816423, 0.00696830917, -0.00524543552, -0.00211518351, -0.0111931888, 0.00443886779, 0.00694087474, -0.00180106098, 0.0126965884, -0.0362571552, 0.0184029192, 0.0119613493, -0.0111986762, 0.000332983647, -0.035686519, -0.00572827924, -0.0147706205, -0.0276537612, -0.0366302617, 0.00798886456, 0.0125100352, -0.018655315, -0.0222656671, -0.00702317758, -0.00933863129, 0.00163371186, -0.0119832968, -0.0202465039, 0.00211106846, 0.0216072444, 0.00382708316, -0.0202026088, 0.00944288168, -0.000616242702, -0.00677078217, -0.00734690204, 0.0189625788, -0.00150614232, 0.00136416988, 0.00859790575, -0.0312092453, 0.00708353287, 0.0117747961, -0.00742371799, -0.00810408872, 0.0278293416, -0.0289486591, 0.0219254829, -0.0065129, 0.0101067917, 0.0134318266, -0.0067159133, -0.0243835952, -0.0078297453, 0.00530853448, 0.00276126107, 0.0295192935, -0.00168035, 0.00601908239, -0.0160545446, -0.0292339772, -0.0114236372, 0.00374203688, 0.00325645, -0.000739354058, -0.00381336594, -0.00967881642, -0.00705061201, 0.0203013718, -0.00911367, -0.00966235623, -0.0012125955, 0.0019025678, 0.0171519164, 0.00998059381, -0.0122686131, 0.0139805125, -0.0214097183, -0.000305892288, -0.0113468207, -0.00453763129, -0.0130587211, 0.00810957514, -0.0290364493, 0.0119064804, -0.00970076397, 0.0182822086, 0.0100080278, 0.0321529843, 0.0194015279, 0.0242080148, -0.016877573, 0.0228253268, 0.0173384696, 0.0219364557, 0.0107597271, -0.0269294959, 0.0124332188, -0.0120820599, -0.00983244833, -0.0209707692, 0.00212752889, 0.011110886, -0.0140792765, 0.0113907158, -0.0147706205, -0.00398620171, 0.0244274884, 0.013903697, 0.00370088522, -0.00264055, 0.00564048951, 0.00288334349, 0.00224000961, -0.0170421787, 0.0216511395, -0.0179859195, -0.00570633169, 0.022518063, 0.0114016896, -0.0104744108, 0.00693538785, -0.00401638, 0.0179091021, -0.0104250293, -0.0313189812, 0.0036048654, -0.00561305508, -0.00683113746, -0.00491896784, 0.02117927, -0.0276537612, -0.0163727831, 0.00188747898, -0.0021481046, -0.00936606526, -0.0138268806, 0.00164880068, 0.0376617908, 0.0089435773, 0.00830161572, 0.00479277, 0.000486615667, 0.00709999353, -0.00469949329, 0.00704512512, 0.00816993, 0.0211353749, 0.0310117174, 0.0369155779, -0.00896003842, 0.00627147825, -0.0222437195, -0.00817541778, 0.00570084481, -0.0140244076, -0.00294369902, 0.00472967094, -0.00595324, -0.0210036896, -0.00561854197, 0.0273464974, 0.0334259346, 0.0258540716, 0.0193247125, 0.00983244833, 0.012323482, -0.00776390312, -0.0199831352, 0.0104853846, 0.0138927232, -0.0198843721, 0.00123660045, 0.0170970485, 0.00344574638, -0.00156786956, -0.00244851015, 0.0104744108, 0.0365644172, 0.00742920488, -0.00954713207, 0.0090972092, 0.0156046227, 0.00083057303, 0.0147267254, -0.00604651682, 0.0204659775, -0.000955399068, 0.0151656736, 0.0065622814, 0.0110724783, -0.000329382921, 0.011676033, -0.0195771065, 0.00379964872, 0.00919048581, -0.0124990614, 0.0264466535, 0.0121149812, 0.0360376798, 0.000273828482, 0.00308635738, -0.00504516531, 0.00992023852, 0.00611784589, -0.00753894215, -0.0128392465, 0.00715486193, -0.0023456316, -0.0126307458, 0.00548960082, 0.00978306681, -0.0284658168, 0.0108365435, 0.00115155417, 0.0108694648, -0.00274205697, 0.0108475173, 0.0108036222, 0.0127843777, 0.00915756542, 0.0172397066, -0.00729752053, 0.0080108121, -0.00835099723, -0.0108310562, -0.00707804598, -0.00249514845, -0.0307264011, -0.0263808109, -0.00113097846, -0.0228911694, -0.0040904521, -0.0146279624, 0.00403009681, -0.0011858471, 0.00393133331, -0.00413160352, 0.0455189683, 0.0372228399, 0.02741234, -0.0197636597, -0.000542855938, 0.00174756406, -0.0141341444, 0.0375081562, -0.012521009, -0.0202684514, -0.0134976692, 0.0140683027, -0.0146828303, 0.00928376243, 0.0218815878, 0.0189186838, -0.000686543062, -0.00358291785, 0.00949775055, 0.00346495048, 0.00469949329, -0.0276976563]
05 Apr, 2021
Merge two Pandas dataframes by matched ID number 05 Apr, 2021 In this article, we will see how two data frames can be merged based on matched ID numbers. Approach Create a first data frame Create a second data frame Select Column to be matched Merge using the merge function Syntax : DataFrame.merge(parameters) Display result Given below are implementations to produce a required result with the use of the required parameter with an appropriate value. Example: Python3 # import pandas as pd import pandas as pd # creating dataframes as df1 and df2 df1 = pd.DataFrame({'ID': [1, 2, 3, 5, 7, 8], 'Name': ['Sam', 'John', 'Bridge', 'Edge', 'Joe', 'Hope']}) df2 = pd.DataFrame({'ID': [1, 2, 4, 5, 6, 8, 9], 'Marks': [67, 92, 75, 83, 69, 56, 81]}) # merging df1 and df2 by ID # i.e. the rows with common ID's get # merged i.e. {1,2,5,8} df = pd.merge(df1, df2, on="ID") print(df) Output : Merged Dataframe Merging two Dataframes with the ID column, with all the ID’s of the left Dataframe i.e. first parameter of the merge function. The ID’s which are not present in df2 gets a NaN value for the columns of that row. Example 2 : Python3 # import pandas as pd import pandas as pd # creating dataframes as df1 and df2 df1 = pd.DataFrame({'ID': [1, 2, 3, 5, 7, 8], 'Name': ['Sam', 'John', 'Bridge', 'Edge', 'Joe', 'Hope']}) df2 = pd.DataFrame({'ID': [1, 2, 4, 5, 6, 8, 9], 'Marks': [67, 92, 75, 83, 69, 56, 81]}) # merging df1 and df2 by ID # i.e. the rows with common ID's get merged # with all the ID's of left dataframe i.e. df1 # and NaN for columns of df2 where ID do not match df = pd.merge(df1, df2, on="ID", how="left") print(df) Output : Merged Dataframe Merging two Dataframes with the ID column, with all the ID’s of the right Dataframe i.e. second parameter of the merge function. The ID’s which do not match from df1 gets a NaN value for that column. Example 3 : Python3 # import pandas as pd import pandas as pd # creating dataframes as df1 and df2 df1 = pd.DataFrame({'ID': [1, 2, 3, 5, 7, 8], 'Name': ['Sam', 'John', 'Bridge', 'Edge', 'Joe', 'Hope']}) df2 = pd.DataFrame({'ID': [1, 2, 4, 5, 6, 8, 9], 'Marks': [67, 92, 75, 83, 69, 56, 81]}) # merging df1 and df2 by ID # i.e. the rows with common ID's get merged # with all the ID's of right dataframe i.e. df2 # and NaN values for df1 columns where ID do not match df = pd.merge(df1, df2, on="ID", how="right") print(df) Output : Merged Dataframe Merging two Dataframes with the ID column, with all that match in both the dataframes. Example 4 : Python3 # import pandas as pd import pandas as pd # creating dataframes as df1 and df2 df1 = pd.DataFrame({'ID': [1, 2, 3, 5, 7, 8], 'Name': ['Sam', 'John', 'Bridge', 'Edge', 'Joe', 'Hope']}) df2 = pd.DataFrame({'ID': [1, 2, 4, 5, 6, 8, 9], 'Marks': [67, 92, 75, 83, 69, 56, 81]}) # merging df1 and df2 by ID # i.e. the rows with common ID's get merged # with all the ID's that match in both the Dataframe df = pd.merge(df1, df2, on="ID", how="inner") print(df) Output : Merged Dataframe Merging two Dataframes with the ID column, with all the ID’s of both the dataframes and NaN value for the columns where the ID is not found in both the dataframes. Example 5 : Python3 # import pandas as pd import pandas as pd # creating dataframes as df1 and df2 df1 = pd.DataFrame({'ID': [1, 2, 3, 5, 7, 8], 'Name': ['Sam', 'John', 'Bridge', 'Edge', 'Joe', 'Hope']}) df2 = pd.DataFrame({'ID': [1, 2, 4, 5, 6, 8, 9], 'Marks': [67, 92, 75, 83, 69, 56, 81]}) # merging df1 and df2 by ID # i.e. the rows with common ID's get merged # with all the ID's of both the dataframes # and NaN values for the columns where the ID's # do not match df = pd.merge(df1, df2, on="ID", how="outer") print(df) Output : Merged DataFrame
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames/How to Merge DataFrames of different length in Pandas ?/Join Pandas DataFrames matching by substring/Merge two Pandas DataFrames based on closest DateTime/Merge two Pandas DataFrames on certain columns/Merge two Pandas dataframes by matched ID number
https://www.geeksforgeeks.org/merge-two-pandas-dataframes-by-matched-id-number/?ref=next_article
Pandas
Merge two Pandas dataframes by matched ID number
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Merge two Pandas DataFrames on certain columns, Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, Join Pandas DataFrames matching by substring, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Merge two Pandas DataFrames based on closest DateTime, Print with your own font using Python !!, Best Practices For SQL Query Optimizations, Merge two Pandas dataframes by matched ID number, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, How to Merge DataFrames of different length in Pandas ?, Floating Point Operations & Associativity in C, C++ and Java, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[-0.0113843195, 0.0398264155, -0.00784308556, 0.0431432053, -0.00742536923, 0.0219332073, -0.00501259184, 0.0127621591, -0.015062714, 0.0361106135, 0.0134791341, -0.0395770296, 0.0281802434, -0.0163719729, -0.0277313534, 0.0249257982, -0.00218365714, 0.0369335748, 0.00252811704, -0.0209481455, 0.0104117272, -0.0115775913, -0.0271328352, 0.0130427144, 0.0147509854, 0.01137185, 0.00283205207, 0.0224818494, -0.0167086404, 0.0156113561, 0.0115588875, 0.00899648, 0.0210104901, -0.0354123414, 0.0108668506, 0.00953888707, 0.0121948132, 0.0284795016, -0.014962961, 0.0216713548, 0.0253622178, 0.0379560441, 0.0204244424, -0.0198383927, -0.00181114173, 0.0339659229, -0.0495024621, 0.0132422205, -0.0243397504, -0.0167086404, -0.026035551, -0.02477617, 0.0162223428, -0.0124379611, 0.0178059228, 0.0463851802, -0.00631249929, 0.0227062926, -0.00687672757, -0.0114341956, 0.0055643511, -0.00330432062, 0.0229681451, -0.0193895027, 0.020686293, -0.000914143398, -0.0264595021, -0.0183296278, -0.00582620269, -0.0405246839, 0.0223322194, 0.0582557954, 0.0772587508, -0.00489101792, -0.0202623419, -0.0298012309, -0.000952330127, 0.0240030829, -0.0271078981, 0.0369335748, 0.0117708622, -0.0255617239, 0.00126249983, 0.045163203, 0.0214967877, -0.00243927445, -0.00965111, -0.0399511047, 0.0247886386, -0.00821092445, 0.0199755523, -0.0276565384, 0.0303748101, -0.0121574057, -0.00741913496, 0.0229432061, 0.0383550562, 0.0113344425, -0.0498266593, -0.00631561643, -0.0267088842, 0.0481557958, 0.0361854285, 0.0250380207, 0.0408987589, 0.0215341952, 0.0309982672, 0.0164343193, -0.00423950562, 0.019052837, -0.00624703616, 0.015037776, -0.0565101169, 0.0248135775, -0.0162472818, -0.0118830847, 0.0160103682, 0.0047320365, 0.0309234522, -0.0423451774, 0.0516720898, 0.0470086336, -0.00391842518, 0.0218833294, -0.0287787616, 0.0234918483, -0.0129180225, 0.0100189494, 0.0494027101, 0.017120121, 0.0304496251, -0.0455372781, -0.0398762897, 0.0317962915, 0.00700765336, 0.0023473145, -0.00605064724, -0.0307738222, 0.0279059224, 0.00995036867, 0.00387790077, -0.0295518469, -0.00952018425, -0.00590725243, 0.020860862, 0.0148258, 0.00576074, 0.0389785133, -0.0126249986, -0.00796154235, -0.015162467, -0.0475074, 0.0249382686, 0.0851392448, 0.0223820955, -0.00513104862, 0.0357365385, -0.00248135766, -0.00849148072, -0.0133170355, 0.0039090733, -0.00211819424, 0.0230554286, 0.0255617239, 0.00938925799, 0.000941419625, 0.0060101226, -0.0191401206, -0.0396767855, 0.0351629592, -0.0188782681, -0.0718222111, -0.000286595256, 0.00814857893, -0.0154492566, 0.00398077117, 0.00806753, -0.0212224666, -0.0313972794, 0.0168458, -0.0213346891, -0.0658370256, -0.0154617261, 0.0305493791, 0.0257612318, -0.00647771498, 0.0286041927, -0.00574827101, 0.000118456774, -0.0222075284, 0.0324696265, -0.0158482697, 0.0254370328, 0.0358362906, -0.0171699971, 0.00659617176, -0.0293523408, -0.0225940701, 0.0125626521, 0.0285792556, 0.0118269734, -0.0543155484, -0.013179875, 0.000599687395, 0.0219332073, 0.00971969, -0.0217087623, -0.0369585119, -0.00433614152, -0.0105177145, -0.030125428, 0.00235666637, 0.0148008624, -0.0130427144, -0.0100189494, 0.0142023433, 0.00358487596, 0.0268335771, -0.00114949828, 0.00832314696, -0.0164467879, 0.013379381, 0.000725937425, 0.00424262276, -0.00891543087, 0.0107047511, -0.00403064769, 0.030200243, -0.0218583923, -0.0276316013, 0.029826168, 0.0128307389, -0.0276066624, -0.00363163534, -0.0283298716, -0.0110476529, -0.0241028368, 0.0181799978, 0.00194830215, 0.0179929603, 0.0424948074, -0.0183420964, 0.033916045, 0.00367527734, 0.0207486395, 0.0230429601, -0.0144891338, 0.037432339, 0.0274071563, 0.0463103652, 0.0145764174, 0.00988802314, -0.0211351831, 0.0135788871, -0.029826168, 0.00938925799, -0.0125626521, 0.052669622, -0.0291278977, -0.00199506152, 0.0189156756, -0.00965111, -0.0186039489, 0.0414474, 0.0350881442, 0.00170203683, 0.00937055424, -0.0203870349, 0.0166837014, 0.00337290065, 0.00683308532, -0.0108045051, -0.0232175272, -0.0142272823, -0.022619009, 0.0168832075, 0.00814234465, -0.0189530831, -0.00123132695, 0.0429436974, 0.0115588875, 0.0296017248, 0.0276316013, 0.0362353027, -0.0267338231, -0.005598641, -0.000412260735, -0.0202748124, 0.00194830215, -0.0113344425, 0.0275567863, -0.00841043051, 0.0186538249, 0.000910246803, -0.00161787018, -0.0066024065, -0.00287881121, -0.0286041927, -0.0219207369, 0.0364098698, -0.018978022, -0.0121262325, 0.01137185, -0.0188907385, 0.00788049307, 0.00884061586, 0.049028635, 0.00642783847, -0.00239407364, -0.015312097, -0.0125564178, -0.0313972794, -0.0432180203, -0.0331678949, -0.064041473, 0.0197386388, -0.00350694405, -0.0249008611, -0.00851641875, -0.0128681464, 0.0130925905, -0.0257113539, -0.0417466611, 0.0298511069, 0.0191151816, -0.0430933274, -0.0199630838, 0.013055183, 0.0287787616, -0.0181550588, -0.0267587621, -0.0309483912, 0.00325756124, 0.0142397508, -0.00737549271, 0.0190902445, 0.0121823438, -0.00298947492, -0.0139778992, 0.00144564023, -0.00479126489, -0.0210728366, -0.0200877748, -0.0133170355, 0.0136911096, -0.0246140715, 0.0159230847, 0.0125314798, 0.0215965398, -0.0310730822, 0.00096557854, -0.0250629596, -0.0134417266, 0.0552632026, -0.0266839471, -0.00406805519, -0.0193022192, -0.0128806159, -0.00419586338, -0.0257612318, -0.00751265325, -0.0347888842, -0.00772462832, -0.0210229605, -0.0360358, 0.00977580063, -0.0234045647, -0.00614416599, 0.00456993748, -0.0295019709, -0.0410483889, 0.0270330831, 0.00228652754, 0.000771527644, -0.0178932082, 0.0172697511, 0.0348387621, 0.0314471573, 0.0194269102, -0.00197947514, -0.0206239484, -0.021060368, -0.0340157971, -0.00506870309, -0.00862864, 0.0112533933, -0.0035911107, 0.0344646871, -0.00718845567, 0.0439911038, 4.48596584e-05, -0.00327314762, 0.0229806136, 0.00658370275, 0.0290530827, 0.00341342553, -0.0192274041, -0.00331678963, 0.0217087623, 0.033616785, -0.00499077095, -0.00363163534, -0.00599141885, 0.00180490711, 0.00710740639, -0.0127808619, -0.00551135745, 0.0291777737, 0.00072437874, 0.0395770296, 0.0189406145, 0.0313224643, -0.0386293754, -0.0125252455, 0.0190777741, -0.0122197513, -0.0356617235, 0.030050613, -0.0427691303, -0.0109728379, 0.0324696265, -0.011421727, 0.0244644415, 0.0154741956, -0.0258859228, -0.00121574057, -0.0152871581, 0.0415222161, 0.00793660339, 0.0163719729, 0.00277126511, -0.0154367881, 0.0321953036, 0.0210728366, 0.0144766644, -0.008497715, 0.030275058, 0.0162846893, 0.014987899, -0.0287288856, 0.0149255535, 0.0130925905, -0.010255863, -0.0570088811, -0.0440409817, -0.0260106139, -0.0289034527, -0.00250941329, -0.00157344888, 0.00245797797, -0.0305992551, -0.0163220968, -0.0316466615, -0.00983191188, 0.01295543, 0.0270330831, -0.0109541342, 0.00887178909, 0.0292775258, 0.0151998745, 0.0138656767, -0.0144267883, 0.0071572829, -0.0140527142, 0.0173196271, -0.00846654177, -0.0451133251, 0.02432728, -0.022993084, -0.01511259, -0.0048380238, -0.00061644282, 0.0149754295, -0.0292027127, -0.0029754471, 0.0369834527, 0.00687672757, 0.016920615, 0.0254869107, -0.0103119742, 0.089428626, 0.00454499945, -0.00832938123, -0.0276814774, 0.00607246812, 0.0277064163, 0.030175304, 0.0335918479, -0.0144766644, -0.0227561705, 0.0405745618, -0.00208078674, 0.0234918483, -0.0379560441, -0.024701355, 0.0119828377, -0.0247637, -0.0172448121, 0.0173196271, -0.0142771583, 0.0345644392, 5.79619918e-05, -0.0455372781, 0.0501508564, 0.026284935, 0.00337290065, -0.00118534709, -0.0126187634, -0.010480307, -0.00661487551, 0.00626885705, 0.0716227069, 0.0139030842, 0.0363849327, 0.0187660474, -0.0105052451, 0.0200503673, 0.0257861689, 0.0123070357, -0.0112845665, 0.0113967881, -0.0214344412, 0.0128681464, 0.0441157967, 0.0147634549, 0.0169081464, -0.0262101199, -0.00880944356, -0.0104491347, -0.016970491, 0.00772462832, 0.00958876405, 0.00343524641, -0.00818598643, 0.00342901191, -0.0269333292, 0.0138158007, 0.0145016033, 0.0286540706, 0.00668969052, -0.0221825894, 0.020636417, -0.0267837, -0.0228309836, 0.0280306134, -0.00199662, 0.0259108599, -0.0227437, 0.00857253, 0.0212099962, 0.0230055526, 0.00464786962, 0.029751353, -0.0127372202, 0.0136412326, 0.0100189494, 0.00352876494, -0.00414286973, 0.0144143188, -0.0236539468, -0.0055643511, -0.00740666548, -0.00256084837, 0.00616598688, -0.00781814661, 0.0101623442, -0.0295019709, 0.0158732068, -0.0504251793, 0.0280555524, 0.0199755523, 0.000784386473, 0.0314222164, -0.0163470339, -0.00389036979, 0.0131424675, -0.00233172812, -0.0137285162, 0.00937055424, 0.0100937644, -0.0216090102, 0.0274819713, 0.0272076502, 0.00427691313, 0.0213097502, -0.0176188871, -0.0143769113, -0.018928146, -0.0212723427, 0.0280056745, -0.00175970653, 0.00706376461, 0.00726327067, -0.0399261676, 0.0277812313, 0.00637796195, -0.00735055469, 0.00828573946, 0.0142522203, -0.000704895705, -0.00683932, 0.00528379576, 0.041646909, 0.00186881144, 0.0235791318, -0.0191401206, -0.0274071563, 0.00318742241, 0.00218833308, -0.0200378988, -0.0290780198, -0.00333237601, 0.0344148092, -0.0269582681, 0.00360981422, -0.0140776522, 0.0250629596, 0.0129928375, -0.014962961, 0.0135414796, 0.00626885705, -0.00988802314, 0.0404498726, 0.0198383927, 0.0233048107, 0.0144392569, -0.0158482697, 0.0255866628, 0.00323262298, 0.00389660429, 0.00624703616, -0.00984438136, 0.0310730822, -0.0185914785, 0.0495772772, -0.0304995012, -0.01654654, 0.00693283835, -0.00842913426, -0.00978203584, 0.0245891325, 0.0318461694, 0.0253622178, 0.0951145515, -0.0117272204, 0.00514663523, 0.00585114118, -0.000470709812, -0.0259108599, 0.00784308556, -0.00221638847, -0.0384548083, 0.00554564735, 0.00682061631, 0.0157983936, -0.0370333269, -0.00196544733, 0.0216214787, -0.0146013563, 0.013229751, 0.0150502445, -0.0157734547, 0.0134666646, 0.0100438874, 0.0180428363, 0.0045605856, 0.0230678972, 0.0145764174, 0.0174069107, -0.00176126522, 0.0258360449, -0.0050094747, 0.00557058584, 0.00721339416, 0.0158732068, -0.0136537021, -0.0156487636, 0.0210853051, 0.0177560467, -0.0319209844, -0.024701355, -0.0100812949, -0.0224319715, -0.0168582685, -0.0191525891, -0.0132920966, -0.00838549249, -0.0486046858, -0.0262101199, 0.00201220647, 0.000789062411, -0.00472580176, -0.00388725242, 0.0224319715, 0.0141774053, 0.00198103371, -0.0240280218, 0.0288535766, 0.00782438181, 0.00458240695, 0.0141649358, -0.0370582677, 0.0306241941, -0.00490972167, -0.0293274038, 0.0168582685, -0.0146637019, 0.0182548128, 0.00154928991, 0.0159604922, 0.0230678972, -0.00842913426, 0.0234793797, -0.0239407364, -0.0336417221, 0.016621355, -0.0271328352, -0.0169330835, 0.00191868795, -0.011097529, 0.0021789812, 0.000441095617, 0.0376817249, 0.0105114803, -0.0381056741, 0.0132546891, 0.00801141839, -0.00852888729, -0.020910738, -0.010555122, 0.00487854891, -0.0342402421, 0.0128432084, 0.0133295041, -0.00693283835, -0.0138282692, 0.0116399368, -0.0186413545, -0.0204369109, -0.0138906157, -3.81623686e-05, -0.00292089465, -0.0119953072, 0.00102168962, 0.0213970337, 0.0314970315, 0.0148756765, 0.00552382646, -0.0286041927, -0.00531496853, 0.0161350593, 0.0239407364, 0.0716227069, 0.000506558572, -0.000895439705, -0.0358861685, -0.018928146, -0.0313723423, -0.00331678963, 0.0213596262, -0.00617845589, -0.00836678874, -0.0172448121, -0.00244395016, 0.00323885749, -0.0166712329, -0.037507154, 0.00705753, 0.00149473746, -0.0285792556, 0.0351629592, 0.0202498734, 0.0597520918, -0.0333674029, -0.0225816015, 0.00784932, -0.00368774636, -0.0179181453, 0.00748771476, -0.0165216029, 0.0106112333, -0.00733185094, -0.00833561644, -0.0140901217, 0.0350382663, -0.00642160419, 0.0184667874, -0.0176937, 0.0144891338, 0.00617222115, -0.00155786239, 0.00572644966, -0.0215217248, -0.00396518456, 0.0166338254, -0.024277404, -0.0126748746, -0.0119267264, -0.0245267861, -0.0068081473, 0.00740666548, -0.03354197, -0.00604753, 0.00879074, -0.00913364068, -0.0542656705, -0.00361293158, 0.00891543087, -0.0139654297, 0.0197386388, -0.00549888797, 0.00958253, -0.0110850604, 0.0128307389, 0.0144143188, 0.00640913472, -0.0190154295, 0.0188408624, -0.000201064788, -0.0111536402, -0.0174069107, -0.0233920962, 0.0253746882, -0.0124192573, -0.00422080187, -0.0386543162, -0.0214095023, -0.0050063571, 0.0698271468, 0.0462106094, 0.0226314776, -0.0073630237, -0.0272575263, 0.0344148092, 0.0134417266, 0.0217212308, 0.0156612322, -6.84828192e-05, -0.00636549294, 0.0181301218, 0.0366093777, 0.0189655535, 0.000276269246, -0.00329185138, 0.0360607356, 0.00981320813, 0.00859746803, 0.00973839406, 0.0333923399, 0.030125428, 0.00596959796, -0.00190466025, -0.0271078981, 0.00642783847, -0.00603194349, 0.00562046235, 0.0117708622, -0.0149380229, 0.0358861685, 0.00702635711, 0.0606498681, 0.0267837, 0.00337913539, -0.00692660408, -0.000742303149, 0.0195266642, -0.0126437023, 0.00230834843, -0.0126998127, -0.0134417266, -0.0185914785, -0.0106673446, 0.026185181, 0.00942666549, -0.0146886399, -0.00751888799, 0.0142522203, -0.0288036987, 0.0195266642, -0.0189156756, -0.00770592503, 0.0354871564, -0.030100489, -0.0188159235, 0.0225816015, -0.0129429614, 0.0165714789, -0.018903207, 0.0135414796, -0.0316466615, -0.0106860483, -0.00582308555, 0.00614104839, -0.0330681428, -0.0141025903, -0.000365501503, 0.0248883907, -0.00357552408, 0.00698894961, -0.00553317834, 0.000817507622, -0.0151250595, -0.0508241914, -0.0141275292, -0.00124379608, -0.0162846893, 0.0183046889, 0.000938302313, -0.0299259219, 0.0140901217, -0.00918351766, 0.0366841927, -0.00900271442, 0.013454196, 0.0286041927, 0.00428938214, -0.0284545645, -0.00786178932, 0.0201999974, 0.00066047447, -0.000116800715, 0.0125564178, -0.0197760463, 0.0361106135, -0.00937678851, -0.00253279274, -0.0334671549, 0.00176749972, -0.0169580225, 0.0257612318, -0.00155864179, 0.00844160374, 0.00607246812, -0.00937055424, -0.0107920356, -0.0408987589, -0.0306740701, 0.0392278954, -0.0156986397, -0.0103867883, -0.0257113539, 0.0317214765, 0.00309546245, 0.0151250595, -0.00488790032, -0.0574577712, 0.000489413505, 0.014813331, 0.0204244424, 0.0140527142, 0.0211850591, -0.00523703638, 0.00173009234, -0.0140277762, 0.0241402443, -0.0250754282, -0.0117646279, -0.0192772821, 0.00769345555, 0.00620339438, 0.00653382624, -0.0441656709, -0.0028725767, -0.00720715942, -0.0480809808, 0.0137908626, -0.000728275336, 0.0149255535, -0.00907129515, -0.010205986, -0.00672086328, 0.00030822141, 0.00681438157, -0.0397017226, -0.0222574044, 0.0172323436, 0.00546771521, -0.0210853051, -0.0174941942, 0.00468839426, 0.0268834531, 0.0128806159, 0.0249382686, -0.00430185115, 0.0234170333, 0.00756252976, -0.0163470339, -0.0265343171, -0.00121574057, 0.00613169651, -0.0339409821, 0.0281054284, 0.00834185071, -0.0273572803, -0.00906506088, -0.0101997517, 0.0290281437, -0.0165839475, 0.00377191301, 0.00977580063, -0.00647148071, -0.0216713548, -0.0138532082, 0.0388039462, -0.0141399978, -0.00768722128, 0.0131923435, 0.0171325896, -0.00443589455, -0.012213517, -0.026434565, -0.00554876449, -0.0172697511, -0.0102433935, -0.00142148125, 0.0236788858, -0.000785555458, 0.0158233307, 0.0401007347, -0.0190278981, 0.0214344412, -0.00189842563, -0.0236165393, -0.00830444321, 0.0191401206, 0.00720715942, -0.0096448753, -0.00594777707, -0.0113905538, 0.00607246812, -0.0466096215, -0.00256396574, -0.013179875, -0.0107733319, 0.0112845665, -0.00293648103, 0.00723209791, -0.0392029583, 0.0199007373, 0.0197511092, 0.00718845567, -0.022693824, 0.00713857915, 0.00772462832, 0.0233048107, -0.0175939482, -0.0089279, -0.00978827, -0.00343524641, -0.0120825907, -0.00165839482, 0.013154936, 0.0153495036, 0.0191525891, -0.00100454455, 0.01152148, -0.00976956636, -0.00450135721, 0.000577087107, 0.00401506107, -0.0117895659, -0.00211663544, 0.0258859228, -0.0106299371, 0.00592595572, 0.0274320953, -0.00800518412, 0.033616785, -0.0037002156, 0.0238409843, -0.0282301195, 0.00432367204, -0.0130053069, 0.00844160374, 0.0177685153, 0.0012134026, 0.00502506085, -0.0148382699, -0.0104179615, -0.0109479, 0.0161599983, 0.00727573968, 0.0546646826, 0.0108668506, -0.00219300902, -0.0313224643, 0.0291278977, -0.00711364113, 0.0120202452, -0.0160727128, -0.00624703616, 0.000808935089, -0.026334811, 0.00469774613, 0.0236290097, 0.00402753, 0.0110289492, 0.0836429521, -0.0417466611, -6.30762806e-05, -0.0179929603, 0.0327938236, -0.0332427099, 0.00180334854, 0.0354372784, -0.0200004913, -0.0130427144, 0.00547083234, -0.0143270353, 0.0157485157, 0.0233920962, 0.0189530831, 0.00227405829, 0.00535549317, 0.0167585164, 0.00368462899, -0.0265093781, -0.0223696269, -0.00309390388, 0.00209949049, -1.57934246e-05, 0.0160851832, 0.00757499877, -0.0062532709, 0.00644030795, 0.0011697606, 0.0255617239, -0.000674112584, 0.0112097515, 0.000310949021, -0.0014838269, -0.00929573923, 0.0468590073, -0.0145639488, -0.00561111048, -0.0186912324, 0.0259108599, -0.0125813559, -0.022918269, -0.0125626521, 0.0194393806, -0.000669436646, 0.0251502432, -0.0172946882, 0.00144330226, 0.0305244401, -0.00143395038, -0.011097529, -0.0430683903, -0.0105800601, -0.002557731, -0.00035205821, 0.0156238247, 0.0127933314, -0.00847277697, -0.00292557059, -0.0236414783, -0.00116508466, -0.0231177751, 0.0180303678, -0.0137409857, 0.0248385146, -0.00473827077, 0.0147509854, -0.0136287631, -0.00867228303, 0.00685178908, -0.000416936673, -0.000427067833, 0.022843454, -0.00483178953, -0.0117833316, 0.0272076502, 0.00236134231, -0.0192274041, -0.007531357, -0.0277064163, -0.0124940723, 0.0248385146, 0.0110164797, -0.010255863, -0.00995036867, -0.0135788871, 0.0118332086, -0.0179680213, -0.0108169736, -0.0391032025, -0.0130925905, 0.0031796291, -0.0215092562, 0.00151032384, -0.000454344059, -0.0336916, 0.0185790099, 0.0112783313, -0.0185914785, -0.00929573923, 0.018678762, 0.0117022824, -0.0345893763, 0.0283797495, -0.0147759235, -0.00940172747, 0.00409922795, 0.0121574057, -0.0152871581, -0.000325171626, 0.0144143188, 0.00715104816, 0.00463851774, -0.00727573968, 0.0169829614, -0.0028663422, -0.0153495036, -0.026259996, 0.00356928958, -0.00352876494, -0.0236414783, -0.00323574035, -0.00305493781, 0.00355370319, 0.0171949361, 0.001498634, 0.000250356825, 0.0397516, -0.00366904261, 0.00934561621, -0.000437978335, -0.0156113561, -0.00262942864, -0.0200628359, 0.0225067865, -0.01654654, -0.0310232062, 0.00546148093, -0.00092972978, 0.0147260474, -0.0137659237, 5.5185661e-05, 0.00204961398, 0.0196638238, -0.00718222139, 0.00177373434, -0.0258609839, 0.00654629525, 0.00242992258, -0.0149255535, 0.0107733319, 0.00195141952, 0.0315967873, -0.00390595617, 0.000885308487, -0.00468839426, -0.0226688851, -0.00947030727, 0.0246888846, -0.0134043191, 0.00122197508, 0.00529314717, 0.0151998745, 0.00741913496, -0.00740666548, -0.00479438202, -0.0114092575, 0.012413023, -0.00961993728, -0.00893413462, 0.00575138815, 0.00390283903, -0.0272076502, -0.0189655535, 0.0120327147, -0.022693824, 0.00326067861, 0.0141898748, -0.00796154235, 0.00938302372, -0.0058417893, 0.00917104818, -0.0190278981, 0.0391780175, -0.021060368, 0.012413023, 0.0252375267, -0.000376022334, 0.0053212028, -0.0158856772, 0.00368462899, -0.0335170329, -0.0028725767, 0.045088388, 1.55255329e-05, -0.00718845567, -0.0128930844, -0.0195266642, -0.0186164174, 0.0058074994, -0.00486607943, 0.0005700732, -0.00403376482, -0.00826080143, 0.0240404904, -0.0232674032, -0.00373138837, 0.00718845567, 0.00236757682, -0.0101935174, -0.00731314719, 0.00602570921, -0.0284046866, -0.0165340714, 0.0222199969, 0.00120249216, -0.0195017252, 0.0116773443, -0.00203091023, -0.000904791523, 0.0184543189, -0.0084229, 0.0497019701, -0.00576074, -0.0097134551, -0.0284296256, 0.00594154233, -0.00135445967, 0.011272097, -0.00750641851, -0.00417404249, 0.0118643809, 0.0171699971, -0.0109104924, 0.0123506775, 0.0234544408, 0.0185416024, 0.013154936, 0.00926456694, 0.00961370207, -0.0325444415, -0.00547706708, -0.0220080223, 0.00427067839, -0.0215716027, -6.57064884e-05, 0.00716975192, -0.0325693786, -0.00381555501, 0.0318212286, -0.00110975292, -0.0106735788, -0.0187909845, -0.0136661706, -0.00723209791, 0.0230554286, -0.00159449049, 0.0233920962, 0.010131171, -0.0152622201, -0.026185181, -0.00281490711, 0.0105426526, 0.00686425809, -0.0238285158, 0.0183919724, -0.0197885148, -0.0289283916, -0.0102496278, 0.0278560463, -0.0108045051, 0.000985061633, -0.0203246884, 0.0198508613, 0.0104241958, 0.00387166603, -0.0267587621, 0.00138563255, 0.00283205207, -0.00608182, -0.0285543166, 0.0216090102, 0.00100922049, 0.0107546281, 0.0103867883, -0.00399012305, -0.0100937644, 0.0142522203, 0.00655876473, -0.0277812313, 0.017070245, -0.00336354901, 0.00408675848, -0.00507493736, 0.010530184, 0.0294770319, -0.0177560467, -0.00193583302, -0.0108543811, -0.0166462939, 0.00228341017, -0.000560331682, -0.0235791318, 0.0185041949, 0.00654006097, -0.0122072818, 0.000270619174, 0.00342901191, 0.00283984537, -0.013055183, 0.0124504305, -0.0367590077, 0.0153245656, 0.0198758, -0.00579503, -0.00590413483, 0.0152497506, 0.0188658, 0.0255243182, 0.00557058584, -0.0259856749, 0.00324509223, 0.00799271464, 0.0154243186, 0.00620651152, -0.0110850604, -0.0162597504, 0.0185166635, 0.00110585627, -0.00270891935, -0.00313754589, -0.0215217248, -0.00287725264, 0.0280056745, 0.0125314798, 0.0202872809, -0.0183420964, 0.0365844406, -0.00183608, 0.00443589455, -0.0193022192, 0.0294770319, -0.0100812949, -0.0168832075, 0.0262101199, 0.0126998127, 0.0241402443, 0.0393276475, -0.0247138236, 0.0142896278, -0.00229432061, -0.00998777617, -0.0177435782, 0.0135290101, -0.00692036934, 0.00416157348, 0.00256552431, 0.030175304, -0.0103930235, 0.0295019709, 0.0127683934, 0.0052869129, 0.0202249363, -0.00941419601, 0.00401506107, 0.00470709801, -0.0152497506, 0.00111364957, 0.00429561688, -0.0268834531, 0.0142522203, -0.00778073957, -0.00819845591, 0.0172572806, -0.00171450595, -0.00885308534, -0.00800518412, -0.0266590081, -0.0408738218, -0.0470834486, -0.0237412304, -0.0453377701, 0.0018501078, -0.00351006119, -0.0231302436, 0.00429249927, -0.0156238247, 0.0140901217, 0.013229751, 0.0107546281, 0.0127559239, -0.00566410413, 0.0402254276, 0.00934561621, 0.00717598666, 0.0225067865, -0.0367091298, 0.0140527142, -0.0110414177, -0.00150876527, -0.00426132651, -0.0198009852, 0.00706376461, 0.00193115708, 0.00323574035, -0.0252749342, -0.00187660463, -0.0090837637, 0.0100750607, -0.018928146, 0.0134417266, 0.0114030233, -0.0216962937, -0.00950771477, 0.00455435133, -0.00264657359, 0.0105800601, 0.00240342552, 0.0175814796, -0.013229751, 0.0262350589, -0.0137160476, -0.00271671265, 0.00173632696, 0.00809870288, -0.00822339393, 0.0117646279, 0.000537731394, 0.0278061684, -0.0198508613, -0.022544194, 0.0102870353, -0.0227312315, 0.0157235786, 0.0276814774, 0.0378313512, -0.00806753, 0.0181176513, 0.01231327, -0.0229681451, -0.00423327088, -0.00771839404, -0.0205241945, 0.000235744563, 0.00197012327, 0.00513104862, 0.0178059228, -0.00197947514, -0.0128432084, -0.00335107977, 0.00589478295, 0.00184699043, -0.00960123353, -0.00745030772, 0.0159729607, 0.00619092491, 0.0442903638, -0.00482555479, -0.00194206764, 0.00566410413, 0.00389348716, -0.018678762, -0.0152123431, -0.00465722149, 0.00876580086, -0.007531357, 0.000586439, -0.0175814796, 0.00698271487, -0.00230211392, -0.00724456692, -0.0308735762, -0.0136412326, 0.00615351787, -0.00687672757, 0.00133185938, 0.0013817359, 0.0107982699, -8.10980782e-05, -0.00462604873, -0.0127808619, 0.0258859228, -0.00434861053, 0.00942666549, 0.00770592503, 0.0407491289, 0.0101498747, 0.0045637032, 0.00413975259, 0.0160353072, 0.0105675915, 0.00218677428, -0.024850985, 8.90374067e-05, -0.00340407365, -0.0278560463, 0.00583243743, -0.00567657314, -0.0134167885, -0.0128182694, 0.00935185049, 0.0086099375, 0.0380308591, 0.01714506, 0.00215871888, -0.00262787, 0.00729444344, 0.00988178886, 0.00161007699, -0.0099379, 0.00114326377, 0.00318430504, 0.00419898098, 0.00969475135, 0.0198134538, -0.000833873346, -0.00658993749, -0.00347577105, -0.0225816015, -0.0135788871, 0.0192772821, 0.0140901217, 0.0125938253, -0.0115713561, 0.030050613, 0.00787425786, 0.00187192869, -0.00298012304, 0.00685802381, -0.00818598643, 0.00379373413, -0.000186452526, -0.00958253, 0.0167959239, -0.0108169736, -0.0143644428, 0.00806129538, -0.0118893189, 0.00597895, 0.00180646579, -0.00690166559, 0.0179056767, -0.0197137017, 0.0293772798, -0.00247979909, 0.014962961, -0.00253123417, -0.0106548751, 0.00965111, -0.0066024065, -0.00813611, 0.00138952909, -0.0212848112, -0.00409611035, -0.0119579, 0.00332302414, -0.00287569407, 0.00730067817, -0.0295269098, 0.0180303678, 0.0256116018, 0.0103680845, 0.0339409821, 0.010131171, 0.00491595594, -0.0142522203, 0.0127621591, 0.00873462856, 0.00603194349, -0.0122820968, 0.00384984515, 0.0180802438, -0.0126000596, -6.05434907e-05, -0.000723209756, -0.00883438159, 0.014813331, 0.0181051828, -0.0142771583, -0.00266839471, 0.00863487553, -0.0125252455, -0.00323885749, 0.00610675849, -0.00221483, 0.0155739486, 0.00997530762, -0.0224569105, -0.0178183932, -0.0135539491, -0.0102995047, 0.00692036934, 0.0260854289, -0.0170328375, -0.00276035443, 0.00678944355, -0.010330678, -0.00513728335, 0.00166618801, -0.0225816015, 0.0360108577, -0.0152871581, 0.00710740639, 0.00369086373, -0.0171575285, -0.0232050586, 0.00595401134, 0.0224444419, -0.0342651792, -0.0112908008, -0.0158607382, -0.0268335771, 0.00229276204, -0.00444212882, -0.020711232, 0.0117272204, -0.00403376482, -0.00440783892, 0.0115464181, -0.00310013839, 0.00711364113, 0.00869722106, -0.00920845568, -0.0174817257, 0.0037002156, 0.0192398746, 0.0038747834, 0.00211040094, -0.011222221, -0.0392029583, -0.0192772821, 0.010555122, -0.00521833263, -0.0105925296, 0.00187816331, 0.0205241945, -0.016970491, 0.00239874958, -0.00127418968, -0.00759370252, -0.000115631738, -0.0141649358, 0.013229751, 0.00395583268, -0.00794907287, -0.00371580198, 0.00663357927, -0.00315001491, 0.00181270042, 0.0039714193, 0.0237412304, -0.00395895028, 0.00105909712, -0.0152746895, 0.0117147518, -0.0177685153, 0.0118643809, 0.00757499877, -0.0111848135, 0.0300007369, -0.000851018413, -0.0134791341, 0.0357365385, 0.0144517263, 0.00235043187, -0.00178932073, 0.00660864124, 0.0159355532, -0.00406493759, -0.00103493815, -0.00237069419, -0.00807376392, -0.0263846871, -0.00665228302, -0.0186164174, 0.00457617221, 0.0239407364, 0.0122446893, 0.00331055513, 0.00327314762, -0.0130801219, 0.00294739148, -0.0142148128, 0.00839172676, -0.00460734498, -0.00756252976, 0.00635302393, -0.0049720672, 0.0091211712, 0.00843536947, -0.00198415085, 0.0189655535, -0.000100434976, 0.0020044134, -0.00463228347, -0.0137534551, -0.00654629525, 0.026309872, 0.0108107394, -0.00285387295, 0.00276970631, 0.0265093781, -0.0120825907, 0.00971969, 0.00293180509, 0.00514975237, -0.000704506063, 0.0167834535, -0.0133918496, 0.0235167872, 0.0293024648, -0.0125065418, 0.0134167885, -0.0126935784, -0.00263254601, -0.0150253065, 0.00205740705, 0.0109042581, -0.00764981378, 0.00936432, -0.0165216029, -0.00473827077, -0.00569215976, 0.00800518412, -0.0227312315, 0.0096448753, -0.0133170355, -0.0136162946, 0.0100875292, -0.0091211712, 0.00266371877, 0.0252624657, -0.0089279, -0.00428003026, -1.11540303e-05, 0.0158981457, 0.01295543, -0.00922092423, 0.0118830847, -0.00152591022, 0.00109962176, -0.00260137301, 0.00490037, 0.0152996276, -0.0085351225, -0.00281802425, 0.0212224666, -0.00583555456, -0.00780567806, 0.0215716027, -0.00418339437, -0.00238160463, -0.00765604852, -0.00736925798, -0.0005700732, 0.00723209791, -0.00481932051, -0.00399947492, 0.000254253449, 0.0285293795, -0.0384797491, 0.00887178909, 0.00287881121, -0.00706376461, 0.0139030842, 0.0213471577, 0.00884685, -0.00357864145, 0.00597895, 0.00180958305, 0.00486296229, -0.024501849, 0.00600077072, -0.00567345601, 0.0109666036, -0.00444836356, 0.0214593802, -0.00555499922, -0.00588854868, 0.00830444321, -0.0154118501, -0.0354871564, -0.00155552442, 0.00669592479, 0.00470398087, -0.00898401067, 0.00322327111, 0.0138781462, 0.00529003, 0.00334484526, -0.0156362932, 0.0335170329, 0.00812987518, -0.0186039489, 0.0245392565, 0.0209232066, -0.0107234549, -0.003072083, 0.00794283859, 0.00929573923, -0.0145016033, -0.0178308617, -0.00258578663, -0.00492219068, 0.0289034527, -0.0119953072, -0.0226065405, 0.0136537021, 0.00205740705, 0.00781814661, 0.0209481455, 0.0203870349, -0.0212972816, -0.00768722128, 0.0059758327, 0.0035911107, -0.000857253, -0.018928146, 0.0296765398, -0.0203995034, -0.0177934542, -0.00199194415, 0.0206987616, 0.0264595021, -0.0052495054, -0.00739419647, 0.00704506086, 0.0457866602, 0.0022085954, -0.00637796195, -0.00107312482, -0.0393525884, -0.0139529612, -0.0175316017, 0.00351006119, 0.000925053901, 0.00156721426, 0.00489101792, 0.0118643809, -0.0107421586, -0.00642783847, 0.0265343171, -0.00181581767, -0.0144891338, -0.013179875, -0.0101872822, -0.0126811089, -0.00923962798, 0.00721339416, -0.00128354144, 0.00490037, -0.00451382669, -0.00509675872, -0.0291029587, -0.00341342553, 0.0058043818, -0.0104366653, 0.00528379576, -0.0178308617, -0.00503441272, -0.0145639488, -0.0086785173, 0.00965111, -0.0174069107, -0.013229751, 0.00851018354, -0.0205491334, 0.00781191234, -0.00699518435, -0.0116212331, 0.0143395038, -0.020411972, 0.00681438157, 0.00861617178, -0.0086099375, -0.00298635755, 0.0214095023, -0.00488166604, -0.0248634536, -0.00676450506, 0.0225067865, -0.0204992555, 0.0181675274, -0.00776203582, -0.00119469885, 0.0186164174, -0.0193022192, 0.0211850591, -0.0119017884, -0.00479438202, -0.00298168161, 0.0293274038, 0.0221077744, -0.00397765357, 4.17180199e-05, 0.00221950584, 0.0126125291, 0.0142522203, -0.0100812949, -0.00951394904, -0.00150486862, -0.00552382646, 0.00829197373, 0.0090899989, -0.00630003, 0.0183296278, -0.0219082683, 0.00811740663, -0.0127434554, 0.0210104901, -0.00818598643, 0.00995660387, -0.00176438247, -0.0318212286, -0.00241277739, 0.0183670353, -0.0105987638, 0.00542407343, -0.00959499832, -0.0323449336, 0.00208546268, -0.00909623317, -0.0151749365, 0.00591660431, -0.00876580086, 0.0147260474, -0.00285075582, 0.00366592547, 0.00205117255, 0.000813610968, 0.00185945956, 0.0123319738, 0.0189904906, 0.00713857915, -0.0141524673, 0.0183296278, 0.0158108622, 0.0117396899, 0.0391281433, -0.0179680213, -0.0352128334, 0.00433925865, 0.0119080227, 0.0220828354, 0.0105738258, -0.00415533874, -0.00384361064, -0.00615351787, -0.00588854868, -0.00485984515, -0.0059758327, -0.00758746825, 0.00263254601, -0.00811117142, -0.00437978329, -0.0386293754, 0.022993084, -0.00299570942, 0.0073256162, 0.00585114118, 0.0129429614, 0.00903388765, 0.0321953036, 0.0265093781, 0.00242992258, 0.000376411976, 0.0221451819, -0.0233422183, -0.00429249927, -0.0200378988, -0.0139280232, 0.00813611, 0.00551135745, -0.0100750607, -0.0139155537, 0.00478814729, -0.0118020354, 0.00650265347, -0.00153760007, 0.00902765337, -0.00141212938, 0.0179430842, -0.00439848704, -0.00162878062, 0.0047663264, 0.00173788553, 0.0187411085, 0.00149473746, -0.0105925296, -0.0197635777, -0.0182672814, -0.00667722104, 0.00433925865, 0.00753759174, -0.024402095, 0.00543342531, 0.0168707389, 0.00302532362, 0.0210977755, 0.00178308622, 0.00993166491, 0.00473515363, -0.020636417, 0.0198508613, 0.00875333231, -0.00911493693, -0.0266091321, -0.0123506775, -0.00565786939, 0.00230523106, 0.0140402447, 0.00862240605, 0.00311572477, 0.00899648, -0.00991919637, 0.00822962821, -0.0090837637, -0.0143270353, 0.00567345601, 0.0182174053, -0.00153993804, 0.000542797, -0.0202748124, 0.00743783824, -0.0196139477, 0.0020340276, -0.00730691245, -0.0175191332, -0.00257799355, -0.0139778992, -0.0183296278, -0.0121698752, 0.00958876405, -0.024402095, 0.0204743184, -0.0258111078, 0.0360358, -0.00533367228, 0.00092972978, 0.0237162933, -0.00258578663, 0.000325171626, 0.0104678376, 0.00180178985, -0.0346891321, 0.0109603684, 0.000455902715, 0.0246514771, 0.0116212331, 0.0129055539, 0.00981944334, -0.0038747834, 0.00589478295, -0.00325444387, -0.00119080232, 0.0257612318, 0.00863487553, 0.00786802359, 0.019052837, 0.0104241958, 0.0057669743, 0.00582932029, -0.0134417266, 0.00433614152, -0.00528379576, -0.00347265392, -0.0121199982, -0.0207486395, -0.00103649672, -0.0231177751, 0.018903207, 0.00639043096, 0.0136162946, -0.00379061676, -0.0176438242, 0.00547083234, -0.00528379576, -0.0211102441, 0.022419503, 0.00882814731, 0.0273074042, -0.00763734477, -0.00618469063, -0.0142646898, 0.00614728313, 0.0201127138, 0.00775580155, -0.0167211089, 0.0202374049, -0.00150408933, -0.000580204418, -0.0187161695, -0.00677697454, 0.00432367204, 0.0163470339, 0.00394648081, 0.00565163512, -0.00824833196, 0.0221077744, 0.000137647556, -0.0132920966, 0.0103493808, 0.00903388765, 0.0142896278, 0.0185914785, 0.00397765357, -0.00425820937, -0.00163345656, 0.0194019731, 0.0209232066, -0.00190310157, 0.0162348133, 0.00422391901, 0.0100438874, 0.000499155, 0.0157485157, 0.0179929603, -0.00550200557, -0.0366343148, -9.43708869e-07, -0.0174443182, -0.0143020963, 0.00463851774, -0.00553629547, -0.00479749916, 0.0028008793, -0.0116025293, -0.0275567863, 0.00317027722, 0.0333175249, 0.0158358011, -0.00480685104, 0.00170203683, 0.00611299276, -0.00891543087, 0.00327003049, -0.00312040071, -0.0176812317, -0.0034882403, 0.0141524673, -0.0019670059, 0.00248759217, 0.0200004913, -0.00687672757, 0.0029692126, -0.00457305508, -0.0163220968, 0.0126000596, 0.013304566, 0.00330120325, -0.00762487529, 0.019002961, -0.015162467, -0.0235043168, 0.00632185116, 0.0252001192, -0.0320955515, 0.0110601215, 0.020835923, 0.00184854912, -0.000554097118, 0.0193895027, 0.00250006141, -0.00728197442, 0.00608805474, 0.00558617199, 0.006564999, 0.0229681451, -0.000676840195, -1.69136983e-05, -0.0330182686, 0.0156113561, -0.00367527734, 0.0127621591, 0.000334133831, -0.00280399644, -0.00766851753, 0.0123818498, -0.0029692126, 0.0298012309, 0.0108793192, 0.0218833294, 0.00216339482, -0.00179711392, -0.00404935144, -0.0186912324, -0.0070138881, -0.0107608624, 0.00703882612, 0.00117911247, 0.0336417221, 0.00389660429, 0.0267338231, 0.0161475278, 0.0136038251, -9.87789244e-05, -0.00687672757, 0.0227561705, 0.0044888882, -0.0574577712, 0.000137160474, -0.00600700546, 0.00679567782, -0.0038747834, 0.00782438181, 0.0222199969, 0.0155614791, 0.00285387295, -0.000656577817, -0.0435172766, 0.000816728279, 0.00820469, -0.00366904261, 0.0117770974, -0.0132172825, 0.0277812313, -0.000671774615, 0.0137409857, 0.0019732404, 0.00125314796, 0.00920845568, -0.0167086404, -0.00593530759, -0.0178807378, 0.0109042581, -0.00355370319, -0.020910738, 0.0245392565, 0.00927080121, 0.0194892567, 0.00997530762, -0.00285543175, -0.00995036867, 0.00526197441, 0.0156737, -0.0183795039, -0.0187660474, 0.0215840712, 0.0150751835, -0.00585114118, -0.0162971579, -0.00327314762, -0.0126624051, -0.0236290097, -0.00224288553, 0.00983814709, -0.0216962937, -0.0350881442, 0.0189904906, -0.0171325896, -0.00927703548, 0.0074129, -0.0215716027, 0.0119828377, 0.00470709801, 0.022619009, 0.0233422183, -0.0111411717, -0.00733185094, -0.0157235786, -0.0287039466, -0.0209980216, -0.0256864168, 0.0230429601, 0.0317713544, -0.0103680845, -0.00566098699, 0.00453876471, 0.0021789812, -0.0298511069, -0.0118893189, 0.00188907376, -0.0159355532, 0.018903207, 0.0205117259, 0.0181550588, -0.0202124659, 0.0179929603, 0.026309872, 0.00783061609, 0.0106424056, 0.0269083921, 0.00494712871, -0.0207985155, 0.0129928375, 0.00529003, -0.0155614791, 0.00467904238, 0.0329933278, 0.00389660429, -0.00675827079, 0.00114638102, 0.00669592479, 0.000702947436, 0.0251502432, -0.0340407342, 0.00802388787, 0.012288332, 0.00717598666, 0.00286790077, -0.00415533874, -0.00581685081, -0.0227062926, -0.00625638803, -0.0211351831, 0.00954512227, -0.00748771476, 0.0104179615, -0.00445771543, -0.0045979931, -0.000304519635, 0.0160727128, 0.0125564178, -0.00615040027, 0.0114154918, -0.00303779286, 0.00726327067, -0.00313131139, 0.000361799728, -0.0141524673, -0.00709493738, -0.00120560941, 0.0182174053, 0.0218209848, 0.0123631461, 0.00343836378, 0.00934561621, -0.00386231416, 0.00726327067, 0.0138532082, -0.0221077744, 0.014738516, -0.00897777639, 0.0140651828, -0.00287101814, -0.0106922826, -0.000812052342, -0.00544589432, 0.00666475203, -0.00999401137, -0.0121199982, -0.0278311074, 0.0102371592, -5.3432188e-05, -0.0224818494, 0.0208109841, 0.00512481388, -0.00763734477, 0.016621355, 0.0101935174, 0.0290032066, -0.0142148128, -0.0086099375, -0.0189156756, 0.00865981355, -0.00192492257, -0.0158856772, -0.0180179, 0.00509364111, 0.0108107394, -0.00198882679, 0.00668345578, 0.00161319424, -0.013055183, 0.00281646568, -0.00361916609, -0.00579814753, 0.0197635777, -0.00443277694, -0.0094329, 0.0272325892, -0.0251876507, -0.0284296256, 0.00286010769, 0.0081922207, -0.00217586383, -0.00771839404, -0.0199506152, 6.68754728e-05, 0.0163969118, -0.00612546224, 0.00923962798, -0.00747524574, -0.0141524673, -0.020636417, 0.00809870288, 0.0192648116, -0.0110538872, -0.000491751474, -0.00489413505, -0.0075687645, -0.0632933229, 0.000515910448, 0.0214095023, 0.0183171574, -0.0197137017, 0.00245797797, 0.00615975214, -0.00360981422, 0.040923696, -0.00817351695, -0.0102745667, 0.00314066303, 0.0258111078, -0.00561111048, 0.00762487529, -0.0333424658, 0.0193645656, 0.0069764806, -0.00985685084, 0.00240966026, -0.00105831772, -0.0295767859, 0.0242898725, -0.0103493808, 0.0199880227, -0.0124691343, 0.0134916026, -0.00402129581, 0.00237692869, -0.0238160454, -0.00810493715, -0.00505935121, -0.00494712871, 0.00294271554, 0.0118269734, -0.0218583923, -0.0184169114, -0.000451226777, 0.0182298739, 0.00983814709, -0.000192881911, 0.00360357971, -0.0386044383, -0.0170078985, -0.0127683934, 0.0157360472, -0.0128556769, 0.0352876484, -0.00213222182, -0.00453564757, -0.00995660387, 0.00427067839, -0.0130801219, -0.00317807053, 0.0276316013, -0.00750641851, -0.0100937644, 0.0213720966, 0.00809246767, -0.00413351785, -0.00709493738, -0.0235666633, 0.00935808476, 0.00413351785, 0.00872839335, 0.0346143171, -0.00621274626, 0.015087652, -0.0116274673, 0.0163096264, -0.0136038251, 0.0116524054, 0.0111848135, -0.0096760476, 0.0212848112, -0.0198134538, -4.94868764e-05, -0.00832938123, 0.00612546224, -0.000736458227, 0.0213346891, -0.00914611, 0.0305244401, 0.0188907385, -0.00740666548, 0.00506558549, -0.0345395021, -0.00585425831, -0.0195391327, 0.00874086283, 0.00368151185, -0.00374385738, -0.00788049307, -0.00726950495, -0.00941419601, 0.0118145049, 0.000908688118, -0.00565475225, -0.0177685153, 0.00336978352, 0.0212474037, 0.0113344425, -0.00130380387, -0.015237282, 0.0273074042, -0.0071572829, -0.00923962798, -0.00374385738, -0.0160976518, 0.0204493795, 0.0171076525, 0.00256396574, 0.0163345654, 0.0114154918, 0.00332614151, -0.0125626521, 0.0077370978, 0.00558928913, -0.00392777706, -0.0198134538, 0.00845407322, -0.0372078978, -0.0116337016, 0.00710740639, -0.00167553988, -0.0141649358, 0.000386348314, 0.00443901168, -0.0100625912, -0.0157485157, -0.0210853051, 0.0118830847, -0.00079646596, -0.0157734547, -0.0140153067, -0.0127683934, -0.022619009, -0.0188782681, 0.00750018423, -0.0197760463, 0.0172946882, -0.0179929603, 0.0117770974, 0.0129803689, -0.0265093781, 0.0123631461, -0.000661643397, -0.0455871522, 0.00270891935, 0.000802700524, -0.00565163512, -0.00182516954, 0.0141150597, 0.00668345578, 0.00172074046, -0.0219830833, 0.022544194, 0.0017113887, 0.00781191234, -0.00563916564, 0.0145016033, 0.010205986, -0.00389036979, 0.00511234486, 0.00641536945, 0.00522145, 0.0074129, -0.0117646279, -0.02447691, 0.0068455548, -0.00165060163, -0.00702012237, -0.00115729147, 0.0177435782, 0.0103618503, -0.0100501217, 0.00818598643, -0.0137908626, 0.0125190103, 0.000963240629, 0.00420833286, 0.0152622201, -0.00527444389, 0.0136537021, -0.00249850284, -0.0205117259, 0.0146138249, 0.00944536924, 0.00203246879, 0.00292868796, 0.00514663523, -0.0136162946, -0.00843536947, 0.018554071, 0.000199895803, 0.0272575263, -0.00447330205, -0.0096760476, 0.00565475225, 0.00582932029, -0.0291777737, -0.000261462148, -0.012288332, 0.00655253, 0.0286540706, -0.00864111, -0.0399511047, 0.0118207391, 0.0026606014, -0.0158732068, -0.0231676511, 0.0177560467, -0.0019155707, 0.00806129538, -0.016820861, -0.00792413484, -0.03443975, 0.00313131139, 0.0110725909, -0.00793036912, -0.00232237624, -0.00559240673, 0.0334671549, -0.0129928375, 0.0268086381, -0.00538354879, 0.0247262921, 0.0085662948, -0.0132546891, 0.00920845568, 0.00643407321, 0.00695154211, 0.0140028372, -0.0266839471, -0.0162348133, -0.00209169718, 0.00458864123, 0.0195640717, -0.000115144656, -0.00549577083, 0.0463602394, 0.0160103682, 0.0143644428, 0.00272450573, 0.00793036912, 0.0288036987, 0.0216962937, 0.00888425764, 0.00845407322, 0.0148008624, 0.00132640416, 0.00327003049, 0.00562981423, 0.0106424056, 0.0135414796, -0.0116399368, -0.0152248126, 0.000290491851, -0.0113531463, -0.00235978351, 0.00647148071, -0.0039714193, 0.0073256162, -0.00199350272, -0.0140153067, -0.0337913521, 0.00261540082, 0.0163220968, 0.0255243182, -0.00104429, 0.0157235786, -0.00645901123, 0.0156362932, -0.00409299321, 0.00327003049, -0.0174193811, -0.020711232, 0.013204813, -0.0100251837, 0.00948277675, -0.00840419624, 0.000775034598, -0.00538043119, 0.00603817822, 0.0106922826, -0.00455435133, -0.0196887627, 0.00553006073, -0.0234045647, 0.0124628991, -4.73437431e-05, -0.00357864145, 0.00395271555, 0.0229307376, -0.0416967832, -0.0100625912, 0.000731392647, 0.000725547725, 0.0269832052, 0.0040431167, 0.0158607382, 0.0109603684, 0.0270580202, -0.022768639, -0.00955135655, 0.00716975192, -0.0195141956, -0.0160602443, 0.00466657337, -0.0125377141, -0.022693824, 0.0102995047, -0.00123522361, -0.00657746801, 0.0122820968, -0.017070245, 0.0139155537, -0.0126561709, 0.00284140394, -0.00710117165, 0.0026606014, -0.0196014792, 0.00665851776, 0.00713857915, 0.00761240628, -0.00920222048, -0.00676450506, -0.00716351764, 0.00542719057, -0.00939549226, 0.0104740728, -0.007531357, 0.0168083925, -0.0407740697, 0.000330432056, 0.00420833286, -0.012213517, -0.00349135743, -0.0262350589, 0.000304324814, -0.00766851753, -0.0140402447, -0.020636417, 0.00497518433, 0.00312663545, -0.00298479898, -0.00796154235, -0.0123008005, 0.000501493, -0.00297700567, -0.0159854293, -0.00357240695, 0.0128930844, 0.0139155537, 0.0085662948, -0.0027338576, -0.0102932705, -0.00663357927, -0.000651901937, -0.00968228281, 0.000128685366, -0.00670215953, -0.00173009234, 0.00267618778, -0.0278061684, -0.010205986, 0.00890296139, -0.0254619718, -0.0113593815, 0.00846654177, -0.0249756761, 0.00122275448, 0.00629691267, 0.0625451729, 0.0196638238, -0.00609428948, -0.0328935757, -0.0060444125, -0.020711232, 0.0114653688, 0.0272076502, 0.0050437646, 0.022569133, -0.0146138249, -0.0150502445, -0.0135290101, -0.0065275915, -0.00119469885, 0.00180958305, -0.00052136567, -0.0127808619, -0.00177373434, 0.00121651986, -0.0129055539, -0.00913987495, 0.0141649358, 0.00417092536, 0.000777762209, 0.00518092513, -0.0178433303, 0.00124457548, -0.024576664, 0.0101872822, 0.00513104862, 0.006564999, -0.0215965398, 0.0228309836, -0.0168083925, 0.00147993036, 0.0109790722, 0.0201002434, 0.0260854289, 0.0265343171, 0.0133918496, 0.020636417, 0.00104896585, 0.0209232066, 0.0117459241, 0.0194518492, -0.00426756125, -0.026559256, 0.0122820968, -0.00857253, -0.00709493738, -0.0274819713, 0.0123257386, -0.00223197509, -0.0146387629, 0.0198633298, 0.0104429, -0.0148008624, 0.00608805474, 0.00178152754, 0.0236664172, -0.00809870288, 0.0219332073, 0.00944536924, 0.00645277696, -0.0189156756, 0.0248385146, -0.00897154212, -0.000682295416, 0.01216364, 0.00865357928, -0.0040431167, 0.0278560463, 0.000150214095, 0.0202249363, -0.00897154212, -0.0305992551, 0.00907129515, 0.00791166537, -0.00449200533, -0.0100999987, 0.0212848112, -0.0230803676, -0.0231676511, 0.00471333275, 0.0094329, -0.0241028368, -0.0193146877, 0.0080176536, 0.0306740701, 0.00874086283, -0.00039297255, -0.01714506, 0.0132172825, 0.0135040721, 0.0016381325, -0.00138952909, 0.0112845665, 0.0309234522, 0.0230055526, 0.0269083921, -0.00514975237, 0.0129803689, -0.0131175295, -0.00516533898, 0.0210977755, -0.0165340714, 0.0108356774, 0.0111349365, -0.00641536945, -0.00696401158, -0.00163345656, 0.00824833196, 0.0448888838, 0.0136412326, 0.0169580225, 0.000859590946, 0.00852265302, -0.00287881121, -0.00534925843, 0.0114840725, 0.0233796258, -0.0190653056, -0.00540536968, 0.0224569105, -0.00514663523, 0.00937055424, -0.00498453621, 0.00988802314, 0.0128681464, 0.0106174676, -0.0239282679, 0.005598641, 0.00927080121, -0.000710351, 0.00392154278, -0.00276814774, 0.0215965398, 0.00326379575, 0.00927080121, 0.0153993806, -0.0109042581, -0.000417716, 0.0121761095, -0.0248260461, 0.0112035172, -0.0136412326, -0.0135913556, 0.0124317268, 0.0107670976, 0.00434549339, 0.0355370305, -0.00741913496, 0.0079802461, 0.012288332, 0.0133918496, -0.00899024587, -0.00814857893, 0.00376879587, -0.0104865413, -0.00554564735, 0.0053586103, -0.0110102454, -0.0123569118, 0.0200877748, -0.0197261702, 0.00781814661, 0.0007859451, -0.00358487596, 0.00837302394, 0.0126000596, -0.00750018423, -0.00134666648, -0.00316248415, 0.00469151186, 0.000432912755, -0.022394564, -0.0198508613, 0.00477567827, -0.0209606141, -0.0163719729, 0.0188034549, -0.00450135721, 0.0258111078, -0.0219207369, -0.0100501217, 0.00781814661, -0.0147509854, 0.0157734547, 0.0186164174, 0.0307488851, 0.0239407364, -0.0142646898, 0.0100127142, -0.0140277762, -0.0196638238, 0.0182797499, -0.0109541342, -0.00569839403, -0.0047289189, 0.0124940723, -0.00185478374, 0.00721339416, 0.0107047511, 0.0100563569, 0.0110351834, -0.0123506775, -0.0102995047, 0.00574203627, -0.0104117272, -0.0182548128]
20 Nov, 2024
Merge two dataframes with same column names 20 Nov, 2024 In this discussion, we will explore the process of Merging two dataframes with the same column names using Pandas. To achieve this, we’ll leverage the functionality of pandas.concat(), pandas.join(), and pandas.merge() functions. These methods handle the concatenation operations along a specified axis of Pandas objects, incorporating optional set logic (union or intersection) of the indexes on the other axes. Merge two Dataframes with same column namesHere we are explaining some methods that depict how to Merge two dataframes with same column names, we are using some generally used methods for merging two dataframes with same column names which are the following : Using Concat() functionUsing Join() FunctionUsing merge() functionMerge Two Dataframes using Pandas Concat() functionSyntax : pd.concat(objs, axis=0, join=’outer’, ignore_index=False, keys=None) In this example, the below code uses Pandas to create two DataFrames, `data1` and `data2`, and displays them. It then merges the DataFrames along the rows (axis=0) using `pd.concat()`, but the result is not explicitly shown in the output. Python # import module import pandas as pd # assign dataframes data1 = pd.DataFrame([[1, 2, 3], [4, 5, 6], [7, 8, 9]], columns=['A', 'B', 'C']) data2 = pd.DataFrame([[3, 4], [5, 6]], columns=['A', 'C']) # display dataframes print('Dataframes:') display(data1) display(data2) # merge two data frames print('After merging:') pd.concat([data1, data2], axis=0) Output: Dataframes: A B C 0 1 2 3 1 4 5 6 2 7 8 9 A C 0 3 4 1 5 6 After merging: A B C 0 1 2.0 3 1 4 5.0 6 2 7 8.0 9 0 3 NaN 4 1 5 NaN 6 Merge Two Dataframe using Pandas Join() FunctionSyntax : pd.merge(left, right, how=’inner’, on=None, left_on=None, right_on=None) In this example the code creates and displays two Pandas DataFrames, `data1` and `data2`. It then merges them along the ‘Students’ column using the `join` method with an outer join, distinguishing column names with suffixes. The merged result is not explicitly shown in the output. Python # import module import pandas as pd # assign dataframes data1 = pd.DataFrame([[25, 77.5, 'A'], [30, 60.2, 'B']], columns=['Students', 'Avg Marks', 'Section']) data2 = pd.DataFrame([[52, 'C'], [25, 'A']], columns=['Students', 'Section']) # display dataframes print('Dataframes:') display(data1) display(data2) # merge two data frames using join print('After merging:') data1.set_index('Students', inplace=True) data2.set_index('Students', inplace=True) data1.join(data2, lsuffix='_left', rsuffix='_right', how='outer').reset_index() Output: Dataframes: Students Avg Marks Section 0 25 77.5 A 1 30 60.2 B Students Section 0 52 C 1 25 A After merging: Students Avg Marks Section_left Section_right 0 25 77.5 A A 1 30 60.2 B NaN 2 52 NaN NaN C Merge Two Dataframe using Pandas merge() functionSyntax : DataFrame.join(other, on=None, how=’left’, lsuffix=”, rsuffix=”, sort=False) In this example below code creates and displays two Pandas DataFrames, data1 and data2, representing student information. It then merges the DataFrames using an outer join based on the common columns (‘Students,’ ‘Avg Marks,’ ‘Section’). The result is displayed, combining information from both DataFrames. Python # import module import pandas as pd # assign dataframes data1 = pd.DataFrame([[25, 77.5, 'A'], [30, 60.2, 'B'], [25, 70.7, 'C']], columns=['Students', 'Avg Marks', 'Section']) data2 = pd.DataFrame([[30, 70.2, 'A'], [25, 65.2, 'B'], [35, 77.7, 'C']], columns=['Students', 'Avg Marks', 'Section']) # display dataframes print('Dataframes:') display(data1) display(data2) # merge two data frames print('After merging:') pd.concat([data1, data2], axis=0) Output: Dataframes: Students Avg Marks Section 0 25 77.5 A 1 30 60.2 B 2 25 70.7 C Students Avg Marks Section 0 30 70.2 A 1 25 65.2 B 2 35 77.7 C After merging: Students Avg Marks Section 0 25 77.5 A 1 30 60.2 B 2 25 70.7 C 0 30 70.2 A 1 25 65.2 B 2 35 77.7 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/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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames/How to Merge DataFrames of different length in Pandas ?/Join Pandas DataFrames matching by substring/Merge two Pandas DataFrames based on closest DateTime/Merge two Pandas DataFrames on certain columns/Merge two Pandas dataframes by matched ID number/Merge two dataframes with same column names
https://www.geeksforgeeks.org/merge-two-dataframes-with-same-column-names/?ref=next_article
Pandas
Merge two dataframes with same column names
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Merge two Pandas DataFrames on certain columns, Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, Join Pandas DataFrames matching by substring, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, Merge two dataframes with same column names, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Merge two Pandas DataFrames based on closest DateTime, Print with your own font using Python !!, Best Practices For SQL Query Optimizations, Merge two Pandas dataframes by matched ID number, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, How to Merge DataFrames of different length in Pandas ?, Floating Point Operations & Associativity in C, C++ and Java, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[-0.0110234888, 0.0171780419, -0.0142019736, 0.0457351692, 0.00885708537, -0.0246838611, -0.021106014, 0.00530385692, -0.0425840355, 0.0131625375, 0.0183378328, -0.0619722456, 0.019727394, -0.0303296372, -0.0510308184, 0.0135236047, 0.00925644767, 0.0604842119, 0.040964704, 0.00602325611, 0.00939321611, -0.0134360734, -0.00153863826, 0.00768088223, -0.00528744515, 0.0249026902, -0.0117182694, 0.00662503438, 0.00344381435, 0.0200775191, 0.0202525835, -0.00863825716, 0.0240273755, -0.0144645674, -0.000173951601, -0.0295418557, 0.0309423581, 0.00844131131, 0.0171014518, 0.013403249, 0.00733075663, 0.0179877076, 0.019114675, -0.0493677221, -0.0103287082, 0.0120683946, -0.0573768467, 0.00777388457, 0.0120465122, -0.00759882154, 0.00989652146, -0.0119589809, -0.0122215748, -0.0096229855, -0.00845225342, 0.0503743328, 0.00415774249, -0.0025466173, 0.00867108162, -0.0162699036, -0.00599590223, 0.014234798, 0.0413367152, -0.0347280912, 0.000280374079, 0.0052792388, -0.0376385115, -0.0120793367, 0.0217296761, -0.0231082961, 0.0163902584, 0.0486674719, 0.041183535, 0.00505220424, -0.0215436704, -0.0463041216, 0.00624755537, -0.000895145582, -0.0280757044, 0.0444440804, -0.000427399529, -0.0351438671, -0.0102302348, 0.0277474616, 0.0375947468, -0.0203401148, -0.0175938159, -0.0413367152, 0.00236608367, -0.00623114314, 0.0315331966, 0.025362229, 0.0359535329, -0.017670406, 0.0170576852, 0.00535035832, 0.0133813666, 0.0198915154, -0.0468730778, -0.00828266051, -0.00934945047, 0.0561076403, 0.0379229896, 0.0201322269, 0.0320583843, 0.00504673366, 0.0389077179, 0.0277693439, -0.010930486, 0.0102904132, 0.0269377958, -0.00230043521, -0.0459102318, 0.0233708899, -0.0356034078, -0.0433280542, -0.0104873581, -0.0396079682, 0.0186223108, -0.0228675846, 0.0425840355, 0.0345530286, 0.0204385873, 0.0451662131, -0.00233462709, 0.0473107323, -0.0264563728, -0.0154383546, 0.046610482, 0.027222272, 0.0166856777, -0.0367413163, -0.0315988436, 0.0268064979, 0.00404012203, -0.010553007, 0.0137643162, 0.025230933, 0.00225119875, 0.0073143444, -0.0413148329, -0.02612813, -0.00461728266, -0.0154821202, 0.0219703875, -0.00363802467, 0.0143770361, 0.0190271437, -0.00336448895, -0.0173421632, -0.0255810581, -0.0535692312, 0.0361504778, 0.0640730038, 0.00951357186, -0.0147490446, 0.050243035, -0.00287486, 0.0289729014, -0.0226049908, 0.0288197212, -0.0209309515, 0.017528167, 0.0125935832, 0.00150991709, -0.0245087985, 0.0169920381, -0.000324310764, -0.0403519869, 0.0213357843, -0.0113243777, -0.0686684, -0.0118495664, 0.0255372934, -0.0155696515, 0.0034848447, -0.000490312756, -0.0214780234, -0.0239836089, 0.0299576297, -0.0152851744, -0.0657361, -0.000569296186, 0.0202307, 0.0345967934, 0.0341591388, 0.00914156251, -0.00265876693, 0.0295199715, -0.030526584, 0.0196398627, -0.0135673704, 0.0327586345, 0.0240273755, -0.0166747365, -0.000264303875, -0.00214315206, -0.0072049303, -0.00154684437, 0.0424746238, -0.0111000789, -0.0249902215, -0.0597401969, 0.0163902584, -0.0141910315, -0.00532300444, -0.00146341592, -0.0553198606, 0.0186223108, 0.0125607587, -0.0367194302, 0.0126811145, 0.0148037514, -0.00414133025, -0.0157009494, 0.000255584921, 0.000433896, 0.00787235703, 0.000556645158, 0.00225530169, -0.0295199715, 0.00327695766, 0.0159197766, 0.0020515176, -0.0245744474, 0.00738546392, 0.0016138606, -0.00443674903, -0.022342395, -0.00647732522, 0.0111821396, -0.0107390117, -0.0180642977, -0.00839207508, 0.0194648, -0.00695327716, -0.0124075795, -0.0205042362, 0.00194894185, 0.0188301969, 0.0750144273, -0.0320365019, -0.0195304491, -0.0123966374, 0.0286446586, 0.0275942814, -0.00439571869, 0.0242024381, 0.0104435924, 0.00702439668, 0.00433554081, -0.0179001763, -0.0192131475, 0.0246400945, -0.0276161637, -0.00659221038, -0.0148146935, 0.0370914415, -0.0414242446, -0.030176457, -0.00528471, -0.000964213337, -0.014431743, 0.0271347407, 0.0393891409, 0.0217515584, 0.00377205713, -0.0271566231, 0.0238741953, 0.0200009309, 0.0293886755, 0.0112477876, 0.00976522453, 0.00827171933, 0.0253184643, 0.00138477446, 0.0148146935, 0.0044996622, 0.00218828558, 0.0263907239, 0.068624638, 0.0240492579, 0.0407239944, -0.00611625798, 0.00426715706, -0.0104983, 0.00966128055, -0.00695874821, 0.00956280809, -0.009382274, 0.0214999057, 0.0130312406, 0.0437000617, 0.0193006787, 0.0292573776, -0.0134251323, -0.00588101754, -0.00524367904, -0.0171123929, 0.0208215378, -0.0176156983, 0.0114994403, -0.0081404224, -0.0254935268, -0.0277474616, -0.00695327716, 0.0577707402, 0.00345749129, 0.00461728266, 0.00486346474, 0.0280319378, -0.0151648186, -0.0351001, -0.0145083331, -0.0506806932, 0.0501555055, 0.0203291737, -5.59466e-05, -0.0142895048, -0.002114431, -0.0014415331, -0.0161714312, -0.0304609351, -0.0101044085, 0.0366319, -0.0235897191, -0.0133704245, -0.00630773325, 0.0198915154, 0.00837566331, -0.00988011, -0.0445753783, -0.0324960388, 0.00484158192, -0.00659221038, 0.0221126247, -0.0137861986, -0.00219785934, -0.00391976628, -0.00701345503, 0.0112477876, -0.0168826226, -0.0299576297, 0.0159635432, 0.0214342568, 0.0131078307, 0.0147928102, -0.000369273184, 0.0411397703, -0.0307235289, 0.000430476794, -0.0077137067, 0.0319708511, 0.049280189, 0.00281741773, 0.00179712952, -0.0150663462, -0.00106063462, -0.00572783733, -0.00514247129, -0.00531479856, -0.056370236, 0.0148037514, -0.0144098606, -0.0169701539, -0.00553089194, 0.0025835447, -0.0220141523, 0.00108320138, -0.0268721469, -0.03065788, -0.0136330193, 0.0240930244, -0.0181080624, 0.00298974523, 0.0114447335, 0.0460852943, 0.0208981279, 0.0175500493, -0.0139065543, -0.0307891779, -0.0190162, -0.0306141153, -0.000169592124, -0.0116088549, 0.00456531066, 0.0319708511, 0.0215217881, -0.0142785637, 0.0208434202, 0.00282835914, 0.00885708537, 0.0263469573, 0.0253841132, 0.0192897376, -0.010553007, -0.033349473, -0.00503032142, 0.0272879209, 0.0400018618, -0.0430435762, 0.0243556183, 0.00786688644, -0.00227171392, 0.0256248247, -0.0199681055, 0.00542421266, -0.00705722114, -0.00300889276, 0.0235240702, -0.021587437, 0.0478796884, -0.0351219848, 0.00371187949, 0.0336339474, -0.0119589809, -0.0009341244, 0.0582083948, -0.0396079682, 0.0159088355, -0.000299863517, 0.0166966189, 0.0248370413, 0.0100387596, -0.0201212857, -0.0168279167, -0.0127248801, 0.0104928296, -0.00902120676, 0.0295856204, 0.0186989009, -0.0144098606, 0.00255482341, 0.0220469777, 0.00140323816, -0.0306359977, 0.0256248247, 0.00750034861, -0.00727604935, -0.0361285955, -0.0028775956, 0.00530659268, 0.00542968372, -0.0462603569, -0.0429560468, -0.0490613617, -0.0333057046, 0.0160510745, -0.0295199715, -0.0032140445, -0.0202744659, 0.00509870518, -0.0401112735, 0.0148475179, 0.0185894854, 0.0216093194, -0.000342261541, 0.00745111238, 0.032167796, -0.00707363291, 0.0335245356, 0.0128233535, 0.0207668301, -0.0369382612, 0.0118823908, -0.00307727652, -0.0349906869, 0.0155149447, -0.0240054931, -0.00643903, -0.0180642977, -0.0250996351, -0.0219813287, 0.0124841696, -0.012232516, 0.0285571273, 0.0271785073, 0.00702439668, 0.0134360734, -0.0185566619, 0.0525188521, 0.0228457, 0.00356417, -0.0271566231, -0.0326273367, 0.0148037514, 0.0217515584, 0.0287759546, -0.0240273755, -0.0131187718, 0.0448598526, 0.000466720288, 0.0380980521, -0.0238085464, 0.00119671866, 0.0110672545, -0.00611625798, 0.00594119541, 0.0055199503, -0.0171561595, 0.0354283415, -0.00368999643, -0.0163355526, 0.0464791842, 0.0135126635, 0.000436973263, 0.0033097819, 0.0183268916, -0.0413148329, -0.012856178, 0.0144536262, 0.062016014, 0.0237210151, 0.0412929468, 0.0186004266, 0.0175828747, 0.00660315156, 0.0244869161, -0.0213357843, -0.00748393685, 0.000352519128, -0.00989105087, 0.0193116199, 0.0223314539, 0.0012192853, -0.0178892352, 0.00984728523, -0.00991840474, 0.0174187534, -0.00472122617, -0.0165543798, -0.00898838323, -0.0157447141, -0.00477866875, 0.00494826073, -0.0312268343, 0.0169701539, 0.00828266051, 0.00482790498, -0.00636791112, -0.0192897376, 0.0160510745, -0.0166856777, -0.0222548638, 0.00652656145, -0.0169373304, 0.0113134366, -0.0167622678, 0.0233271234, -2.19683352e-05, -0.000212332088, -0.012582642, -0.00350672752, -0.0219375622, 0.00163300813, 0.0110234888, 0.0022129037, -0.0205042362, 0.0145520987, -0.0371133238, -0.00818418805, -0.0107335411, 0.0178017039, 0.008457724, -0.00607249234, -0.00231821509, 0.00934397895, 0.0311830696, -0.0319052041, 0.019453859, -0.00657579815, 0.000850696, 0.0351219848, -0.0171233341, -0.0122215748, -0.00744564179, -0.00502758613, -0.00862184539, 0.00173831929, 0.0273316875, 0.0107827773, 0.0152961165, 0.0243118517, -0.0062967916, 0.0275505148, -0.00473216735, -0.00930021331, -0.0150444629, -0.0228675846, -0.000424664177, -0.0143551528, 0.018633252, 0.00394712, -0.0594338365, 0.000122065307, 0.0065375031, -0.0146286888, -0.0174844023, -0.000250456127, 0.00373376231, -0.0131515963, 0.0193335023, 0.0305703487, -0.0110070761, 0.00936586224, -0.0277255774, -0.0126701733, 0.0235897191, -0.00804194901, -0.0354721099, -0.0317739062, 0.00197766302, 0.0224955752, -0.026740849, 0.0155587103, 0.00178208505, -0.00240027579, 0.0430435762, -0.0198477507, 0.0284477118, 0.0232614763, 0.00967769325, 0.00926739, -0.00882426184, 0.00278869644, 0.00835925061, -0.00173695164, 0.0354283415, -0.00147435744, 0.00881879125, -0.00975428242, -0.0320802666, 0.022889467, -0.00247276272, 0.0122981649, -0.0284258295, -0.0169920381, 0.0186879579, 0.00870937668, -0.00253567589, 0.00119193178, 0.0469168425, 0.00110645185, 0.0997858196, -0.00867108162, 0.0230207648, -0.0161386058, -0.0310736541, 0.00963392761, -0.000933440577, -0.0287978388, -0.030045161, -0.0127686467, 0.0115322648, -0.00108935591, -0.0273973346, -0.00652656145, 0.00375290983, -0.00651562028, -0.00161659601, -0.00733075663, -0.0388201848, -0.0187207833, 0.0126154665, 0.00907591451, 0.0110891368, 0.0270034447, 0.00135605317, 0.0154602379, 0.0075550559, 0.0116963862, -0.0170795694, 0.00707363291, -0.00683839247, 0.00436562952, -0.011346261, 0.00722681312, 0.0180533566, 0.0056293644, -0.0401331559, -0.0280538201, -0.0123856962, -0.0283820629, -0.0154930614, -0.0212920178, -0.00732528605, 0.0300013945, -0.0334588848, -0.0144098606, -0.0374196842, -0.00684933364, -0.00792706478, 0.00630226219, 0.026609553, 0.00258217705, 0.00402371027, -0.00856166705, 0.0178564098, 0.003402784, -0.0202197582, 0.0445097275, 0.00375564513, 0.00876955409, -0.000793253537, -0.0260405988, 0.0494114868, -0.0240711421, 0.0183050092, -0.00803100783, 0.0170248616, 0.0131187718, -0.0173093379, 0.023305241, -0.0243118517, -0.0312049519, 0.0104271807, 0.00754958531, 0.00464190077, 0.00487987697, -0.0255810581, -0.0148365758, 0.0061873775, 0.0364568383, -0.0101262918, -0.0366975479, -0.00265739928, 0.0243775, -0.0163902584, -0.0274411011, -0.0187754892, -0.00113312167, -0.0370039083, 0.00587554695, 0.0031319838, -0.00841395836, -0.0244431496, 0.0308110602, 0.0140487934, -0.00437383587, -0.0183050092, -0.00133895723, 0.0272879209, -0.00922909472, -0.0182284191, 0.0210841317, 0.0307235289, 0.0414680131, 0.0204276461, -0.0123856962, -0.00463369489, 0.0124841696, 0.0125498176, 0.0403738692, 0.0112149632, 0.0111055495, -0.0219156798, -0.0439407751, 0.00243583531, 0.0019817662, 0.0359097645, -0.00333713554, -0.00426715706, -0.0120793367, 0.00294871489, -0.0166528523, -0.0296512693, -0.0211607218, -0.00264509022, 0.00898838323, -0.0182940681, 0.0131078307, -0.00663597602, 0.0233708899, -0.0237428974, 0.0123966374, 0.0374196842, 0.00100592757, -0.0330868773, -0.0184472464, 0.0254497603, 0.0264126062, -0.0236334838, 0.00292683183, -0.00758240931, 0.0271128584, 0.00263825175, 0.0116088549, -0.03286805, -0.00131570664, 0.0253403466, 0.00947527681, 0.0171780419, -0.0119152153, 0.00776294293, 0.0236334838, -0.0114775579, -0.00873673055, 0.00387873617, -0.0295199715, -0.00671256613, 0.0218062662, -0.0155696515, 0.00892820489, -0.00818418805, -0.00590837095, -0.0400456265, 0.0162808448, -0.0118823908, -0.013403249, 0.0225612242, 0.0101864692, 0.0175391082, -0.00139298057, 0.0371789709, 0.00605060952, 0.0193663277, -0.0204385873, 0.00440666, 0.0011871449, 0.00254524965, 0.00750581967, -0.00984181464, 0.0179111175, -0.00649373746, 0.0133157177, -0.0240492579, -0.0223861616, 0.00337816589, 0.0595651343, 0.0192240886, 0.0308767091, -0.00342193153, -0.0477921553, 0.0177579373, 0.00769182388, 0.0279444065, 0.0166528523, -0.00231821509, -0.00987463817, 0.0217406172, 0.0147271622, 0.0158978943, -0.0259968322, 0.0101645868, 0.0305047, 0.0254497603, 0.00754411425, -0.00159881613, 0.0129874749, 0.015536827, 0.012648291, 0.00147162203, -0.0255154092, 0.00896102935, -0.00285571255, -0.00870390609, 0.0140378522, -0.0115103824, 0.0287759546, 0.0150116393, 0.0617534183, 0.0152742332, -0.0107444823, 0.0215983782, 0.0203182306, -0.000528265839, -0.00683839247, 0.0334807709, 0.00677821459, -0.00587554695, -0.026259426, -0.00397994416, 0.0170686282, -0.0124732275, -0.00795441773, -0.03822935, 0.00825530756, 0.00747846579, 0.0132172452, -0.023786664, 0.0154821202, 0.036084827, -0.00265329634, 0.0077902968, 0.00957374927, 0.000720082724, 0.00531206327, -0.0230645295, 0.0123856962, -0.0180314723, 0.0249902215, -0.0116526205, 0.01034512, -0.0374634489, 0.0158760119, -0.00775747234, 0.00657032756, -0.010864838, 0.0211826041, -0.0472669676, 0.0032140445, 0.012648291, -0.0018285861, -0.0261718947, -0.00408935873, -0.00524094375, 0.0284477118, -0.0157337729, -0.0274192188, 0.0152085843, -0.000570663833, -7.27861407e-05, 0.00466378359, 0.00392523734, 0.00865466893, 0.0194648, -0.0308329444, 0.00420697918, 0.00503852731, -0.0135564292, 0.00961204432, 0.0190052595, -0.0361942425, 0.0160073098, -0.0505056307, 0.00719398865, -0.0145302163, -0.0100606428, -0.0323428623, -0.0194100924, 0.00242626155, 0.00879690796, 0.00939321611, -0.0185347795, 0.00339457789, -0.0315988436, -0.0287321899, 0.0397611484, -0.0129984161, -0.0146177476, -0.00179165881, 0.0377260447, -0.0102302348, 0.00867655221, -0.00565671828, -0.0314237811, 0.00831001438, 0.0095409248, 0.000237292217, 0.0177032296, 0.039673619, 0.0146068064, 0.00353681645, -0.0115760304, 0.0187754892, -0.0183268916, -0.0149569316, -0.0411397703, 0.00927833095, 0.0018285861, 0.0168935638, -0.0101974104, 0.0317957886, 0.00856713764, -0.0312049519, 0.0408552922, -5.77416758e-05, 0.0169920381, 0.00840301625, -0.0142895048, 0.0114556747, -0.00526009127, 0.00669068331, -0.0218172073, -0.00893367548, 0.0244869161, -0.00233462709, -0.00724322535, -0.0017410547, -0.00205972372, 0.0254935268, 0.017188983, 0.0342685506, -0.0156790651, 0.0275067501, 0.00346296187, 0.00153179991, -0.0282726493, -0.0073143444, -0.0187973734, -0.0282288846, 0.0222220402, 0.0199681055, -0.0143879773, -0.02069024, 0.00210348959, 0.0408334099, -0.025646707, -0.00597949047, -0.00601231446, -0.015810363, -0.0133266589, -0.0143442117, 0.0484048761, -0.0134360734, -0.0164230838, 0.0168169737, 0.0134798391, 0.0147162201, 0.0131844208, -0.00243583531, -0.00974881183, -0.0124951107, -0.00580989802, 0.0072049303, 0.0333057046, 0.00578254461, 0.0158760119, 0.029629387, -0.0058700759, 0.00839207508, -0.014366095, 0.00891179312, 0.00200638431, 0.0116307382, 0.0045023975, -0.0147928102, -0.00169728894, -0.0160401333, -0.00470207864, -0.0329774618, -0.00140460581, -0.00576613238, 0.00436289422, 0.0265657865, 0.020208817, -0.00469660806, -0.040483281, 0.0158978943, 0.00183542457, 0.00396079663, -0.0145083331, -0.0027189448, 0.0134688979, 0.00407841709, -0.0355158746, 0.0121121602, -0.00206656219, -0.0041003, 0.0234146547, -0.00998952333, 0.0256685894, 0.00142648863, 0.0185894854, 0.00757693872, -0.0240492579, -0.0228457, 0.0217515584, -0.00733622722, 0.024880806, -0.00557739288, 0.00115910755, 0.0322115645, 0.0015345352, -0.00486072944, 0.0142566804, -0.00872031786, 0.0190927908, -0.00159471307, 0.0145849232, -0.0224736929, -0.00809665676, -0.0154274134, 0.00933850836, 0.0131625375, 0.000875998056, 0.0167403854, 0.0131187718, -0.0100168772, -0.028207, 0.0182065368, -0.00665785884, 0.0220360365, 0.00887349807, -0.0152304675, -0.0303734038, 0.0212920178, -0.000132322893, -0.000469455641, -0.000476977875, -0.0194866825, 0.00213631382, 0.00724869594, 0.0138299651, 0.0302421059, 0.012856178, -0.0194210336, 0.044072073, -0.0205698851, -0.00292683183, -0.0109687811, 0.0390390158, -0.0249902215, -0.000179678755, 0.0526063852, 0.00598496106, -0.0124732275, 0.00501664449, 0.00275176903, 0.0219375622, 0.0368726104, 0.00962845609, -0.002973333, -0.0079817716, 0.0174844023, 0.00285024196, -0.0378135741, -0.0195304491, 0.00652656145, -0.00786141586, 0.00926191825, -0.0238523129, 0.00415774249, -0.00904309, -0.00889538, 0.00198450149, 0.0157447141, -0.0147709278, 0.00233736262, 0.0366537832, 0.00185183669, -0.013064065, 0.0496740825, -0.0142129147, -0.0106350677, -0.026193779, 0.00904309, -0.00705175, -0.00903761946, 0.0041003, 0.0267627332, 0.0087640835, 0.0411178842, -0.0142238559, -0.00903214887, 0.0170358028, 0.00209801877, -0.0111329025, -0.0139393788, 0.0101864692, 0.00919627, -0.0126154665, 0.0086820228, 0.00675086118, -0.0118167419, -0.0130202994, -0.0238960776, 0.012921826, -0.00850696, 0.000251652848, -0.016915448, 0.0134798391, 0.0236991327, 0.0174515769, 0.00298427441, 0.0149459904, 0.0127795879, -0.00681650965, -0.0136658438, 0.0226706378, 0.0178345274, -0.0082990732, 0.0193335023, -0.0189177282, -0.00579895684, 0.000518692075, -0.0225831065, -0.0208215378, -0.00536950585, 0.0153945889, -0.00350125693, -0.012856178, -0.0157337729, 0.0157775395, -0.0139722032, -0.0174844023, -0.0302858725, -0.0213357843, 0.0338965431, -0.0205589421, -0.00744017074, 0.000555619365, -0.0392797254, 0.0254059955, 0.0210184827, -0.0234584212, -0.0108156018, 0.0257342383, -0.00740187569, -0.0133923078, 0.0321459137, -0.0318395533, -0.0145849232, 0.011554148, 0.00405106368, -0.00512605906, -0.0066469172, 0.00829360262, -0.0131515963, 0.0258217696, 0.0148365758, 0.012856178, -0.0302421059, -0.00968863443, -0.0159854256, 0.00157146261, -0.0150116393, -0.0231082961, -0.00034431307, 0.00585366366, 0.00242352625, 0.000485867786, 0.00554456841, 0.00363528938, 0.0322553292, -0.009316626, -0.0134688979, 0.0165981464, -0.0154274134, -0.00737999287, -0.00236608367, -0.00597949047, -0.0158322453, -0.0293886755, -0.0262156613, -0.020832479, -0.00804194901, -0.00745111238, -0.0126811145, -0.00254251435, -0.00277775503, -0.0082224831, 0.00232778885, -0.0108757792, 0.0241586734, 0.0120902779, -0.0104271807, -0.00341919623, 0.0221563913, 0.0324522741, -0.0118058007, -0.00468840171, -0.00337269506, -0.00389241287, -0.0118823908, 0.0301326923, 0.00837019272, 0.00596307823, 0.0179220587, 0.00721040089, -0.0148365758, -0.0255810581, -0.00658126874, -0.00296786218, 0.011346261, 0.00496193767, -0.0245963298, -0.0164121408, 0.00394438487, -0.00648279581, -0.0107444823, -0.00276818126, -0.00179302646, 0.0125279352, -0.00335081224, -0.00428083353, 0.0210294239, -0.0216640271, 0.00505493954, -0.0201978758, 0.0350344516, -0.00109072356, -0.000961478, 0.00647185463, 0.0073635811, 0.00730887381, -0.00488808285, 0.0221673325, -0.0121121602, 0.00773011893, 0.0598277263, 0.0124075795, 0.0247713923, -0.00601231446, -0.00185593974, -0.0112587288, 0.00733075663, -0.0103560612, 0.00062913209, -0.0213686079, -0.000787782774, 0.0159416609, -0.00595760765, -0.0187317245, -0.00619831868, 0.0232177097, -0.00757693872, -0.0298700985, 0.0198805742, -0.00558012817, -0.0111164907, 0.0239617266, 0.00692045316, 0.0103943562, 0.0142238559, -0.00401003333, 0.00419330224, 0.0074347, -0.0132610109, 0.0347499736, 0.0102466475, 0.007631646, -0.00927833095, -0.0199352819, -0.00555277476, 0.0181408878, -0.0339621902, -0.00756599754, -0.00241668778, 0.0237647817, -0.0251652841, 0.0361942425, 0.00516161835, 0.0149022248, -0.0029760683, 0.00458719349, 0.00957922, -0.0192678552, 0.00960110314, -0.0432842895, -0.0144645674, -0.0422120281, -0.000144802965, 0.00729793217, -0.0376822762, 0.000261568523, 0.0205698851, -0.0419713184, -0.000801459595, -0.0304171685, -0.00307727652, -0.0152523499, 0.0194210336, -0.0236116014, 0.0339184254, 0.0186441932, -0.0230645295, -0.0345311463, 0.0152523499, 0.0220579188, 0.0128780603, -0.00138819369, -0.003386372, -0.0197930429, -0.0106295971, 0.000347219378, 0.00856166705, -0.00235651, 0.00758788036, -0.00858355, 0.00329336966, 0.00287212478, 0.0133376, -0.0291917287, -0.00611625798, -0.0181408878, -0.00625302596, -0.0378354564, 0.010383415, 0.0120683946, 0.00538865337, -0.000351493363, -0.00722681312, -0.00286118337, 0.0220798012, 0.00424527377, -0.0214342568, 0.0337433629, -0.0267627332, 0.0156790651, -0.026740849, -0.0122543992, 0.0245963298, -0.0283164158, 0.0160073098, -0.0132610109, -0.0128780603, -0.002560294, -0.0243337359, 0.0016480526, 0.00317027862, 0.0141472658, 0.0022758171, 0.0070462795, 0.0130531229, 0.0358441174, 0.0194866825, 0.00780670857, -0.00248233648, 0.0358003527, 0.0106241265, -0.0095081, -0.00896102935, 0.0244650319, 0.00255345576, 0.0308110602, 0.00226214016, -0.0157665983, -0.00437930645, 0.0227362867, 0.00129040459, 0.0163136683, -0.0111547858, -0.0135783115, 0.00239070202, 0.00179986493, 0.0155149447, -0.000124544225, -0.0198149253, 0.0190271437, 0.0294543244, 0.0105420658, 0.0203401148, -0.0196836293, 0.0265220217, -0.0135673704, -0.00533121079, -0.0311611872, 0.0255810581, -0.00738546392, -0.0148146935, 0.00371461478, 0.0120793367, 0.0143332705, 0.0343560837, -0.0138080819, 0.0171342753, -0.00535309361, -0.0106843039, -0.00636791112, -0.00390608981, 0.00146751897, -0.0189505536, -0.0219703875, 0.024268087, -0.0132172452, 0.0269596782, 0.0134141902, -0.0051670894, 0.00364623079, 0.000558354717, -0.0063460283, 0.0160948411, -0.00652656145, 0.00317301415, 0.0211607218, -0.0208215378, 0.0217077918, -0.0223971028, 0.0066469172, 0.00513152964, 0.0146286888, -0.0118823908, 0.0181299467, 0.0159854256, -0.00480055157, -0.0416430756, -0.0147928102, -0.0266970843, 0.00635696948, -0.0123528717, -0.0142566804, -0.0182721838, -0.0140487934, 0.0114666168, 0.0129108848, 0.0089227343, 0.0325616896, -0.0134798391, 0.0377260447, 0.000521085516, 0.010033289, 0.0215764958, -0.025230933, 0.00302530476, -0.0142895048, 0.000873946527, 0.0128233535, -0.0271347407, 0.0146833966, -0.0105092414, -0.00570595451, -0.0187973734, -0.00989105087, -0.0204276461, -0.00275450456, -0.00259448611, 0.00872031786, 0.0127795879, -0.0102302348, -0.0288634859, 0.0062202015, 0.000201048737, -0.00446683774, 0.0122106336, 0.00626943819, -0.0201322269, 0.00769182388, -0.0157556552, 0.00431365799, 0.013884672, 0.0056786011, -0.00479781628, 0.0174625181, 0.00859449152, 0.0159416609, -0.0282288846, -0.0183050092, 0.0188630223, -0.0127577046, 0.0063460283, 0.0279006418, 0.0307672955, -0.00874767173, -0.0025999567, 0.00376658654, 0.0108320136, 0.0196726881, -0.00746752461, -0.0183487739, 0.00118851254, 0.00322225038, -0.0124841696, -0.000955323398, -0.00880237855, -0.0200118721, -0.0148037514, 0.0014866665, 0.0127686467, -0.00614908244, 0.00326875155, 0.0113353189, 0.00780670857, 0.020482352, -0.0201978758, 0.00399635639, -0.00413585966, -0.00406200485, -0.000132664805, -0.0122762816, 0.00396079663, 0.00821154192, 0.00104559015, 0.00761523377, -0.0308329444, 0.0295199715, -0.0100879967, -0.0244212672, -0.012713939, -0.0216530859, -0.00266834069, -0.0126264077, 0.000690677611, 0.00496740825, 0.00787235703, 0.00981446076, -0.018151829, 2.17118959e-05, 0.0218172073, 0.00122954301, 0.0232177097, 0.00652109087, 0.0589961782, 0.0065375031, -0.00219375617, 0.00715022301, 0.0401112735, 0.0239617266, 0.0172874555, -0.0270034447, 0.031008007, -0.00791612267, -0.0178126451, 0.00475952122, -0.019453859, -0.0106733628, 0.00529838633, 0.0103232367, 0.0216640271, 0.00833736826, 0.0301545747, 0.0104052974, -0.00572236674, 0.00573877897, 0.0210513063, 0.0094643347, -0.0138080819, 0.0103505906, -0.000636996236, 0.0136877261, 0.0164777897, -0.00271620951, -0.00797083, 0.00393617852, -0.000276100094, -0.00222521299, -0.00980352, 0.02612813, 0.020624591, 0.0190380849, 0.00897744112, 0.0264782552, 0.00304992311, -0.00405106368, 0.000116680072, 0.0157994218, -0.0200228132, 0.000669136702, 0.00894461758, -0.00255072047, 0.0269596782, -0.0110016055, 0.0063460283, 0.0101262918, -0.0082006, -0.00127262482, 0.00402918085, -0.0220360365, 0.0195742138, 0.00687668752, 0.021795325, 0.0169045068, 0.015263292, -0.00912515074, 0.00113790855, 0.0185566619, 0.00975428242, -0.00914156251, 0.00739093451, -0.0032140445, -0.0134579558, 0.00641714735, 0.00570048392, -0.00326601625, 0.00553089194, -0.0183597151, 0.0206355322, 0.00472396147, -0.0234365389, 0.0311611872, 0.0100770546, -0.0113134366, -0.0212810766, 0.00371735, 0.0104654757, -0.00320310309, -0.0070462795, -0.00133622182, 0.0182940681, -0.0251215175, 0.00380488159, 0.00133895723, -0.00179029116, 0.00558286346, 0.0170576852, 0.00123432977, -0.0183816, 0.0324522741, -0.0190052595, -0.00798724219, -0.0016138606, -0.0174515769, 0.0103724739, 0.00719945971, -0.0249902215, -2.24384748e-05, -0.0120902779, -0.0100879967, -0.00546250772, 0.00242215861, -0.0283601806, -0.00303351087, 0.00962845609, -0.0132063031, -0.00874767173, 0.0179001763, -0.0155587103, 0.0248151589, -0.000496467284, 0.0070462795, 0.00913609192, -0.0153836478, -0.0204495285, -0.0032277212, 0.0126154665, -0.0151648186, -0.0124075795, -0.0221016835, -0.016915448, -0.00648279581, -0.000270971301, -0.0213467255, 0.00964486878, 0.00542147737, -0.0103505906, -0.00495373132, -0.0196289215, 0.000526556221, 0.0171233341, 0.011893332, -0.00129382382, 0.0100223478, 0.0154492958, 0.0256029405, -0.00397447357, -0.00132459658, -0.0255810581, -0.020208817, -0.00568407169, -0.00669068331, 0.00295418547, 0.00878596678, 0.00762617495, -0.00347663858, 0.00207203277, -0.0143989194, 0.00566218887, -0.00818965863, 0.00490723038, -0.000631183619, -0.00992934592, -0.0161604881, 0.00735811, 0.0170139205, 0.0156571828, 0.00831548497, -0.0039936211, 0.00455163419, 0.0196726881, -0.00857260823, 0.0105913021, 0.00408388814, -0.0230864119, 0.00924550649, 0.0026792821, 0.000700935198, 0.0162699036, 0.000681787729, 0.00189149939, 0.0213904921, -0.00137520069, -0.000808298, -0.0116416793, 0.0243118517, 0.019727394, -0.0112587288, 0.010071584, -0.0174844023, -0.00147846038, -0.00673444895, -0.00289947842, 0.00290494901, 0.00592478318, 0.0105092414, 0.0112368464, 0.013064065, -0.00155641814, -0.0136001948, -0.00168634753, -0.00915250462, 0.0265220217, -0.0108046597, -0.0116088549, 0.0119370976, 0.00110645185, 0.000103430684, -0.00683292188, 0.00350946304, -0.00952998362, -0.0141253835, 0.00445042597, -0.00912515074, -0.0304171685, -0.0152851744, 0.0174844023, 0.0211388394, -0.00968863443, 0.000985412393, 0.0140269101, -0.00935492106, 0.0170139205, 0.0139612621, -0.00123843283, 0.00995122828, 0.00468566641, 0.0012110793, 0.0385794751, 0.0117620351, -0.0334151201, 0.0134579558, -0.0151319951, -0.00255072047, -0.0264344905, -0.00513700023, 0.0250558704, -0.0139503209, 0.01938821, -0.0207887124, -0.00852884259, -0.00395806134, -0.00193252973, -0.03011081, -0.00428083353, -0.00995122828, -0.00648279581, 0.00897197053, -0.0128452359, -0.0187317245, 0.00274629844, 0.00116321049, 0.00800912548, -1.74699562e-05, 0.0173421632, 0.00358058233, 0.0225831065, 0.00284203584, -0.00068862614, 0.00787782762, -0.00658673933, 0.00321677979, 0.000900616287, -0.010449064, -0.000228231351, 0.00425074482, 0.00368179055, 0.00449692691, 0.0102357054, -0.0115103824, 0.00374196842, -0.0190490261, -0.0199571643, -0.00342740235, 0.00382676441, 0.00729246158, 0.00996764097, 0.0047403737, 0.0363693051, -0.0239617266, -0.00539412396, 0.000552884, -0.00513973553, 0.0435031168, 0.012440403, 0.0171671, -0.00291589042, -0.000711192784, -0.0170905106, -0.00875314232, -0.0243993849, -0.013064065, 0.00358605292, 0.0135345459, -0.0163246095, 0.0251215175, -0.0090813851, 0.0172108654, 0.0158869531, 0.00829360262, -0.0345967934, 0.00100250833, 0.0211388394, -0.0114228502, -0.00673991954, 0.00686027529, -4.59454486e-06, -0.015471179, -0.00560201099, -0.0129765337, 0.0199899878, -0.00589195872, -0.00758788036, 0.00306633511, 0.0139284376, -0.0129108848, 0.00293503795, -0.00462275324, -0.013271952, -0.0248370413, -0.0115322648, 0.00762070436, -0.00338090118, 0.0247713923, 0.012035571, -0.0118495664, 0.0210403651, 0.00223888969, 0.0197164528, 0.0186441932, 0.0048196991, 0.00291315513, -0.0121996924, 0.0219047386, -0.00291862595, -0.00927833095, -0.0209309515, 0.026609553, -0.0206792988, -0.0254059955, 0.0133813666, 0.0126920566, 0.0185128953, 0.0192897376, -0.0160291921, 0.00488261227, 0.0313143656, 0.0137096094, 0.000772738364, -0.0219047386, -0.0226706378, -0.0219485033, -0.0199243408, 0.00162069895, -0.00643903, 0.005120588, 0.0120793367, -0.000437315204, -0.00267517916, -0.0188849047, 0.0300013945, 0.000496467284, -0.0136330193, -0.00878049619, -0.0108210724, -0.0170905106, -0.00450513279, 0.00834283885, -0.00261636893, 0.00774106, -0.010137233, -0.0027189448, -0.016915448, -0.00108183362, 0.00672350731, 0.00148940191, -0.0179439411, -0.000113944712, -0.0140816178, 0.00297880382, -0.0282945316, -0.00384591194, 0.00239617261, -0.011346261, 0.00121860148, -0.0248370413, -0.00114406308, -0.0029596563, -0.0134798391, 0.00642261794, -0.00996764097, 0.0186441932, 0.00676727295, 0.00663597602, -0.0142895048, 0.0207668301, 0.00630773325, -0.0298482142, -0.00623114314, 0.00341646094, -0.0248151589, -0.004658313, -0.0210403651, 0.00714475242, 0.00759335095, 0.00259311846, 0.00916344579, -0.0183706582, 0.013129713, 0.00539412396, 0.0162370782, 0.0358003527, 0.00274082762, -0.000777525187, 7.30425818e-05, 0.0130531229, 0.0186879579, -0.000697516, -0.0159307197, 0.0104928296, 0.010553007, 0.0213904921, -0.000422612648, 0.00336175365, 0.0175500493, 0.00256850012, -0.00400729803, 0.0133485422, 0.00547892, 0.0102083525, 0.0115760304, -0.0123419305, -0.0235021878, 0.0133813666, -0.00516161835, -0.012856178, 0.00379941077, -0.0120683946, -0.0166856777, -0.00564030604, -0.00782859139, -0.000841122237, 0.0179548822, 0.0220798012, 0.0221563913, -0.0081404224, 0.00142512098, 0.00148803415, -0.00861637481, -0.00504946895, 0.0175828747, 0.0193225611, 0.0154164722, -0.00164668483, 0.0245306809, 0.00716116466, 0.00452975091, 0.0176594649, -0.0181080624, -0.0133594833, -0.0108703086, -0.000789150479, 0.0300232787, 0.00397173828, -0.0133704245, 0.009382274, -0.000145315833, 0.000102063008, -0.00974334124, 0.00236061309, 0.0141800903, 0.0152523499, -0.0106733628, -0.0116416793, -0.0372883864, 0.0330868773, -0.00717210583, 0.0161276646, 0.000872578879, 0.0184581894, 0.00825530756, 0.0293011442, 0.0246838611, -0.003402784, 0.00878596678, 0.00354775786, -0.0316426083, -0.00647185463, -0.00397720886, -0.00449692691, 0.0113790845, 0.0172983967, -0.0042644213, -0.0206464734, -0.00443674903, 0.00143743, 0.00805289112, -0.0232833587, 0.0102302348, 0.00488808285, 0.00517256, 0.000966264866, -0.00857808, 0.0143879773, 0.00965581, 0.0199790467, 0.0343560837, -0.023786664, -0.0124513451, -0.0127467634, -0.0265439041, 0.00434648199, 0.00530385692, -0.0220579188, 0.00612719962, 0.00977616571, 0.00468019582, 0.00101071445, 0.0077902968, 0.0143551528, 0.00918532908, -0.00319489697, 0.0113024954, 0.00824983697, -0.00881332, -0.0401331559, -0.00987463817, -0.028185118, -0.0259311832, 0.0268721469, 0.0120027466, 0.00282562384, -0.00297880382, -0.0225174576, -0.00797630101, -0.000345851702, 0.00787782762, 0.0054078009, 0.0239617266, 0.0107444823, 0.0286227744, -0.00513700023, 0.00937680341, -0.03065788, 0.003832235, 0.00413038908, 0.0171671, 0.0124732275, -0.00880237855, -0.0149131659, -0.00199270761, 0.0192240886, -0.0209966, 0.000922499108, -0.0246838611, 0.0184363052, 0.00196945691, 0.0200337544, 0.00991293322, -0.00386232394, -0.00728699099, -0.000419877295, -0.00316207274, -0.0212701354, 0.0191803221, 0.0171014518, -0.00209528347, 0.02612813, -0.0216640271, 0.0156353, 0.00656485651, -0.00646638405, -0.00403191615, 0.00449692691, 0.0124075795, 0.0174625181, 0.0177688785, 0.000377821183, -0.00777935516, -0.00102644274, -0.00127399247, -0.0139940865, 0.0114775579, -0.00355322869, -0.00270800339, -0.0235240702, -0.0316644907, 0.00921815261, -0.0199571643, 0.0282507669, 0.00687121646, 0.0047704624, -0.00131844205, -0.00735263946, -0.0089665, -0.00490176, 0.0014018704, 0.00484705251, -0.00500570331, 0.0176922884, 0.00443127844, -0.00541327149, -0.00687668752, 0.0165215563, 0.00621473091, 0.000620242208, -0.0121340435, -0.00927286, -0.00167677377, 0.0144864507, -0.0242899694, -0.0164449662, 0.00345749129, 0.0121887503, 0.0196945705, 0.00904856063, -0.0117073273, 0.0363474227, -0.0144426851, 0.0214342568, -0.00552815618, 0.00562389381, 0.0308110602, 0.0137643162, 0.00547892, -0.00183405681, 0.0150882285, 0.0215655547, 0.0157009494, -0.000932072871, 0.00325781014, -0.00271210633, -0.0164121408, 0.00187782256, 0.00480875745, 0.0279444065, 0.0028940076, -0.0390608981, -0.00374470372, 0.00829360262, -0.0252965819, -0.00154821202, 0.0107335411, -0.0203072894, -0.0205480009, -0.0185676031, -0.0271566231, -0.00536950585, 0.00435195304, -0.00222521299, -0.00060930074, 0.00798724219, 0.00475405, -0.00017480641, 0.0017807174, -0.00356964092, -0.00887349807, 0.00794347655, 0.0318614393, -0.00995122828, -0.00307180593, 0.0326929875, 0.008523372, -0.00927286, -0.0135345459, -0.0179548822, 0.00201185513, 0.0103013543, 0.00176704058, 0.00583178084, 0.0162042547, -0.00196398632, -0.0147381034, -0.00947527681, 0.0116963862, -0.00934945047, -0.00085958594, 0.029760683, 0.00585366366, -0.000187030033, 0.0168716814, 0.00565671828, 0.0162699036, 0.0194866825, -0.0041823606, -0.00419330224, 0.0317520238, -0.0136220772, -1.3292125e-05, -0.0223533362, 0.0166419111, -0.00204878231, -0.0068876287, 0.00822795369, 0.0066688, -0.00506588118, 0.00521906093, -0.00943698175, 0.00737999287, -0.0019024408, 0.0259530675, 0.00613267, 0.0169701539, -0.0120136878, -0.029147964, -0.0122872237, 0.0123419305, 0.00672350731, 0.00354228728, 0.0301983412, -0.0123309894, 0.00571689615, -0.000707089785, 0.00990746263, -0.0144208018, -0.0103615317, -0.00328789908, -0.0151101118, -0.0503305681, -0.0118276831, -0.021860972, 0.00115500449, -0.00267791445, 0.0240273755, 0.0185347795, 0.0147928102, -0.000815136358, 0.0209966, -0.0449473858, 0.00855619647, 0.000971735572, -0.0178454686, 0.000133434136, 0.0301983412, 0.0304609351, 0.00626943819, 0.0140816178, 0.000795305, 0.0153179988, -0.00583178084, 0.00591931259, 0.00196808926, -0.0176485237, -0.000834967708, -0.00792706478, -0.0231520608, 0.032386627, -0.0139940865, 0.0164121408, 0.00177387893, -0.0210184827, 0.00130955211, 0.00227718474, -0.00317301415, -0.0290385485, -0.0151867019, 0.0269159116, -0.0101481741, -0.00601231446, -0.024880806, 0.0101317624, -0.0133923078, -0.00996217, 0.000595965888, 0.0353845768, -0.0110563124, -0.0332400575, 0.0110727251, -0.0107171284, -0.0160729568, 0.00322225038, -0.0153617645, -0.000469797553, 0.000251823803, 0.00335901836, 0.0226706378, 0.00477866875, 0.00702986727, 0.0171561595, -0.0034055193, -0.026740849, -0.00722681312, 0.0279006418, 0.0139612621, -0.00445589656, 0.0172983967, 0.0114666168, -0.0125935832, -0.0329555795, -0.00263551646, 0.00443948433, -0.00185046892, 0.0204057638, 0.00740734674, 0.0107827773, -0.0111985514, 0.0237210151, 0.0230426472, 0.0173202809, 0.0139722032, 0.0335683, 0.00693686539, -0.0141035, 0.0262156613, -0.00601778552, -0.00707363291, 0.000675975112, 0.024880806, -0.0106350677, -0.0066688, 0.005946666, -0.00977069512, 0.00558833405, 0.0454725735, -0.0196945705, 0.0246182121, -0.00147572509, 0.00105106086, 0.0211497806, -0.00187782256, 0.00938774459, -0.0298263319, -0.012101219, -0.0142238559, -0.00624208478, -0.0164777897, 0.0169810951, -0.0139831444, -0.00531206327, 0.00644997181, 0.0132500688, 0.0149022248, -0.00106268621, 0.0279662888, -0.0268502645, 0.0193006787, -0.00259722141, -0.0047704624, -0.00269022351, -0.00913609192, 0.00801459607, 0.00512605906, 0.0161386058, 0.000432186411, 0.010137233, -0.0107937185, 0.00933850836, -0.0129108848, 0.00657032756, -0.0160948411, 0.0144098606, -0.0201650523, 0.0114884991, 0.0115322648, -0.0107390117, 0.00478413934, -0.00500296801, 0.00366537832, 0.00695874821, 0.00126305106, -0.0170248616, 0.0115432059, 0.0069642188, -0.012035571, 0.00208981265, 0.00145931297, -0.000766583777, 0.0179439411, 0.000195578017, 0.0284477118, -0.0179111175, -0.00405379897, -0.0340716057, 0.0141582079, -0.00427262764, -0.00276818126, -0.0234584212, -0.00483337557, 0.00252336683, -0.00746752461, 0.00349578611, 0.00451607443, 0.00560748158, 0.00817871746, -0.00839207508, -0.00949168857, 0.00503579201, 0.00106268621, -0.0012056086, 0.0245087985, -0.0147381034, -0.0287759546, 0.00286118337, 0.0255591758, -0.0082881311, -0.0109797232, -0.0223314539, -0.0113572022, 0.00501664449, 0.0201978758, 0.0237210151, -0.0189177282, -0.0229769982, -0.0221454501, 0.014366095, 0.00216093194, -0.00730340322, -0.00879143737, -0.0216640271, -0.0195632726, -0.0190490261, 0.00130408141, 0.0153508233, 0.010722599, -0.0322553292, -0.0195632726, 0.0148912836, -0.0205042362, 0.0323209763, -0.00337543059, 0.00317574944, -0.00323319202, 0.0277912263, -0.00744017074, 0.0237428974, -0.0412710644, 0.0183159504, 0.00338363647, -0.0240492579, -0.000111636757, 0.00193526503, -0.0298044495, 0.0333713554, -0.0123200472, 0.0231739432, -0.0100879967, 0.0110070761, 0.00599590223, 0.0116416793, -0.0187317245, -0.00786688644, 0.0126811145, -0.0130202994, 0.0239836089, 0.0100989379, -0.000543994131, -0.00510964682, -0.0221673325, 0.0109468987, 0.0153617645, -0.00524367904, -0.00772464788, -0.0131953619, 0.00387326535, -0.00833736826, -0.0031511311, -0.00249874848, 0.026740849, 0.000876681879, -0.00166583236, 0.00213357853, -0.0104107689, -0.0108156018, 0.00962845609, 0.00568954227, -0.00686574588, 0.0258217696, 0.0189177282, -0.00218555029, -0.0169373304, -0.0186004266, -0.00961204432, 0.0140816178, 0.00289127231, 0.0365881361, 0.0198258664, -0.0138518475, 0.0192787964, -0.0185676031, 0.0138627887, -0.000813084829, 0.0129874749, 0.00956827868, -0.00788329914, 0.00688215811, 0.00785594527, 0.00857260823, -0.0132172452, 0.00161522825, 0.00638432335, 0.0010175528, -0.0231520608, 0.025843652, 0.00733622722, 0.00818418805, 0.00556645123, -0.0100223478, 0.0128999436, -0.0340278409, -0.0043410114, 0.011346261, 0.00417415472, 0.00650467863, 0.00420971448, -0.00498929108, 0.0301545747, 0.00795441773, -0.0163464937, -0.0147381034, -0.00150854932, 0.0245963298, 0.018633252, -0.0136767849, -0.0166637953, 0.0221673325, 0.00606702175, -0.0045023975, -0.00625302596, -0.00913609192, 0.0095409248, 0.00718304748, 0.00572236674, 0.00511785271, -0.0221563913, -0.00159334543, -0.0153945889, 0.0117073273, -0.00896102935, -0.0118167419, -0.0250996351, 0.0308548268, -0.0296731517, -0.00436562952, 0.012035571, 0.00593025377, -0.0129984161, 0.0128124123, 0.00258217705, -0.00711192796, -0.0201978758, -0.00383770582, 0.00258080917, 0.0107663646, -0.00943698175, -0.0212810766, -0.00920174085, -0.0209418926, -0.0112696709, -0.00628585042, -0.0199462231, 0.00633508665, -0.0265001375, 0.012921826, -0.000640757382, -0.00746752461, 0.00655938592, -0.000350467599, -0.0182393603, 0.00889538, 0.0157994218, -0.0104435924, -0.00891726371, 0.0215983782, 0.00577160297, 0.00678368518, -0.00245088, -0.00609437516, -0.00311830686, -0.0104545346, -0.00559380511, 0.00304445229, 0.00710645737, -0.00090335164, 0.00387326535, -0.00368999643, 0.0253403466, -0.00431365799, -0.0246619787, -0.0144755086, -0.00629132101, -0.00173831929, 0.00237839296, 0.016018251, 0.00414680131, -0.00780123798, 0.000350125687, 0.00907044392, 0.00191201456, 0.0205589421, 0.00213631382, 0.00863825716, 0.00898838323, -0.0113353189, 0.0216421448, -0.00083086465, -0.0298263319, 0.00535582891, 0.00895555876, -0.00960657373, -0.000235924541, 0.00185867504, -0.00471302, 0.00906497333, 0.0126373488, -0.0126592321, -0.00136631075, 0.00296239159, -0.00989105087, -0.0160291921, -0.00787235703, -0.0268502645, 0.00997311156, -0.0208215378, 0.00359699433, 0.0260843635, 0.0025466173, -0.027703695, 0.0106022432, 0.0140159689, -0.00240164343, -0.00829360262, 0.0032277212, -0.0128342947, 0.0226487555, 0.0144208018, -0.0124951107, -0.0178345274, 6.21866275e-05, 0.00907591451, -0.0203838795, 0.00258217705, 0.00301709864, 0.0146833966, -0.0108320136, 0.0233927723, 0.00520538446, 0.00127057335, -0.00689309929, -0.0114994403, 0.00251242542, 0.0199462231, -0.000581263332, -0.00861090329, -0.0120027466, -0.0447942056, -0.00757146813, -0.0142676216, 0.0150663462, 0.00948074739, -0.00192569126, 0.0224299263, 0.00855072588, -0.00317301415, -0.014781869, 0.0110399006, 0.00463369489, 0.0358441174, 0.0176375825, 0.00640073512, 0.0154930614, 0.00105789932, -0.00727057876, 0.011685445, 0.025230933, 0.00551174441, -0.00051322137, -0.0054078009, 0.0142238559, -0.0196070392, 0.0139065543, 0.00252473447, -0.00413312437, 0.012856178, -0.0136877261, -0.0243118517, -0.0152742332, 0.0175938159, 0.00134237646, 0.0197164528, 0.0013861421, 0.0149459904, -0.013753375, 0.0133923078, -0.0181080624, 0.0172436908, -0.0163683761, -0.0243118517, 0.010175528, 0.00496740825, -0.0110617839, -0.0155915348, 0.000874630408, -0.0148256347, 0.0030526584, 0.00467198947, 0.00769729447, -0.00934397895, 7.20168173e-05, -0.0157118905, 0.00874220114, -0.00302530476, -0.00507135177, 0.0117948595, 0.0227362867, -0.0357128195, -0.022692522, -0.00718304748, 0.0157228317, -0.00476225652, 0.0052464148, 0.00628037937, 0.0222329814, 0.0028775956, -0.00684386306, -0.0160729568, 0.0208434202, 0.00126305106, -0.000401413621, 0.00698063103, -0.001735584, -0.0267627332, -0.0156571828, -0.0149569316, 0.00408388814, 0.00975975394, -0.00896102935, 0.0065375031, -0.0115869716, 0.00785594527, -0.0122653404, 0.00204741466, -0.026740849, 0.0222220402, 0.0180642977, -0.00416868413, -0.00989652146, 0.00436289422, 0.00478140404, 0.00770276506, 0.00921268202, 0.0106788334, 0.000277467771, 0.0172983967, -0.0301326923, 0.00754411425, -0.0046938723, -0.00381035218, 0.00597401941, -0.0450349152, 0.0008903587, -0.0147709278, -0.0322115645, -0.0164777897, 0.00105379627, 0.00781765, -0.00773558952, -0.00811306853, -0.00665238826, -0.0121340435, -0.000358673686, -0.00108183362, -0.00353134586, 0.00709004514, 0.0243118517, 0.017385928, -0.00887896866, 0.0126920566, -0.0205370598, -0.00263278116, -0.0126264077, 0.000875998056, 0.00325233932, -8.94867753e-06, 0.00652109087, -0.0316426083, 0.0019503095, 0.0140597345, -0.0046118116, -0.0204385873, 0.0232614763, -0.0249902215, 0.0169592127, -0.0140597345, 0.00601778552, 0.00408388814, -0.00644450076, -0.0260187145, -0.00451880973, 0.00215819664, 0.0136439605, 0.0360410623, -0.0066688, 0.00997311156, -0.0356690548, -0.0272003897, 0.00106131844, -0.0067289779, -0.00146615133, -0.0187426656, -0.00111670943, -0.00964486878, 0.00166309706, 0.00695874821, -0.000867792, -0.0138518475, 0.00803100783, 0.0275067501, 0.0178345274, -0.00033217491, -0.0168935638, -0.000681787729, -0.0141035, -0.000821974769, -0.00918532908, 0.000522111251, -0.0225612242, 0.00197219243, -0.0288853701, 0.00686574588, -0.00906497333, 0.0145520987, 0.0121231023, 0.030526584, 0.0141910315, 0.0196398627, -0.0140159689, 0.00494552543, 0.0190490261, 0.0151429363, 0.00646638405, -0.034093488, 0.00159744848, -0.0139940865, 0.00725963712, -0.00748940744, 0.00539685925, 0.0125717008, -0.0133813666, 0.0209966, -0.00665785884, -0.0135783115, -0.00387873617, 0.00758240931, 0.00387326535, -0.00830454379, 0.0123528717, -0.000262936199, 0.0118386252, -0.000485183933, 0.017736055, -0.0309423581, 0.00411124155, 0.0134688979, 0.018906787, -0.0117729763, -0.00630773325, 0.00504946895, 0.0133594833, 0.000875998056, -0.0246400945, -0.0010442225, -0.00620378973, -0.0153070576, 0.00585913472, 0.0304828174, -0.00762070436, -0.0200884622, 0.00303351087, 0.0201103445, -0.0106241265, -0.0175938159, 0.0116526205, 0.0252965819, 6.26140318e-05, 0.00422612671, 0.012921826, 0.0117948595, -0.00385685335, -0.0179548822, 0.00419603754, -0.00518897222, 0.0199790467, 0.0100497017, 0.00737452228, -0.00552815618, 0.00503852731, -0.0265876688, 0.00239754026, 0.00287486, -0.0139831444, -0.0031347191, 0.0254278779, -0.00663597602, -0.00671256613, -0.0126920566, 0.00480055157, 0.0370039083, 0.00963392761, 0.0183050092, -0.00253977883, 0.0126811145, -0.0160073098, -0.0114228502, 0.0122543992, 0.00460087042, 0.000791202, -0.0115979137, 0.0226706378, -0.00881332, -0.00367631973, -0.0219922699, 0.00179165881, 0.0322772115, -0.00498655578, -0.0284039471, 0.0232614763, 0.0147599857, 0.00273946, 0.0172874555, -0.0114775579, 0.0131187718, -0.00130886829, 0.0136986673, 0.0207558889, -0.003832235, 0.00381035218, 0.0283601806, -0.0275942814, 0.00789424, -0.00615455303, -0.0146286888, 0.0369601436, 0.0155040035, 0.0152961165, -0.00492364261, -0.00942604, -4.04106249e-05, -0.00288580148, 0.0199243408, -0.0154164722, -0.00650467863, -0.00371735, 0.00814589299, -0.0222001579, 0.0041823606, -0.00676727295, -0.0189614948, 0.00555277476, -0.0135017224, 0.00801459607, -0.00537497643, 0.0131625375, 0.0106843039, 0.019453859, 0.0243118517, 0.00449692691, 0.00459813513, 0.0213357843, -0.0159416609, -0.0160510745, -0.00628037937, 0.00963392761, -0.0430654585, -0.0209200103, 0.00735811, -0.0265439041, -0.0023688192, -0.011346261, -0.00404559309, 0.00203100243, -0.0117839174, 0.0036571722, 0.0277693439, 0.0391703099, 0.0402644537, -0.0307891779, 0.00512879435, 0.00138682593, -0.00649373746, 0.0258655362, -0.00781217963, -0.0198805742, 0.00186141045, -0.0093056839, -0.00730887381, 0.00434648199, -0.00298700971, 0.019453859, 5.6288518e-05, -0.0137643162, -0.00443674903, -0.0137314918, 0.0138299651, -0.0320365019]
23 May, 2021
Drop specific rows from multiindex Pandas Dataframe 23 May, 2021 In this article, we will learn how to drop specific rows from the multi-index DataFrame. First, let us create the multi-index DataFrame. The steps are given below: Python3 import numpy as np import pandas as pd mldx_arrays = [np.array(['lion', 'lion', 'lion', 'bison', 'bison', 'bison', 'hawk', 'hawk', 'hawk']), np.array(['height', 'weight', 'speed', 'height', 'weight', 'speed', 'height', 'weight', 'speed'])] # creating a multi-index dataframe # with random data multiindex_df = pd.DataFrame( np.random.randn(9, 4), index=mldx_arrays, columns=['Type A', 'Type B', 'Type C', 'Type D']) multiindex_df.index.names = ['level 0', 'level 1'] multiindex_df Output: Now, we have to drop some rows from the multi-indexed dataframe. So, we are using the drop() method provided by the pandas module. This function drop rows or columns in pandas dataframe. Syntax: df.drop(‘labels’, level=0, axis=0, inplace=True) Parameters: labels: the parameter mentioned in quotes is the index or column labels to drop axis : parameter to drop labels from the rows(when axis=0 or ‘index’) / columns (when axis=1 or ‘columns’). level: parameter indicates the level number like 0,1 etc to help identify and manipulate a particular level of data in a multi-index dataframe. For example, there are two levels in the given examples i.e level 1 and level 2. inplace: parameter to do operation inplace and return nothing if its value is given True. Here in all the examples, the value of         inplace is given True so that it does the operation and then return nothing. Example 1: To drop the rows containing ‘lion’ in level 0. Here ‘lion’ is the label name we want to drop, level=0, axis=0 as which depicts rows will be targeted for deletion, inplace=True inside the df.drop() function so that it performs the task and returns nothing. Python3 multiindex_df.drop('lion', level=0, axis=0, inplace=True) multiindex_df Output: Example 2: To drop the rows in level 1 containing ‘weight’. Here ‘weight’ is the label name we want to drop in level 1 from each of the rows in level 0, level=1, axis=0 as which depicts rows will be targeted for deletion, inplace=True inside the df.drop() function so that it performs the task and return nothing. Python3 multiindex_df.drop('weight', level=1, axis=0, inplace=True) multiindex_df Output: Example 3: To drop a single row having a label as ‘weight’ in level 1 inside ‘bison’ in level 0. Here (‘bison’, ‘weight’) are the label names we want to drop from level 0 and 1 respectively. It simply means that only the row from label ‘bison’ in level 0, the label ‘weight’ from level 1 will be deleted. No need to mention the level as it involves two levels, so only the label names within quotes will work fine, axis=0 as which depicts rows will be targeted for deletion inplace=True inside the df.drop() function so that it performs the task and return nothing. Python3 multiindex_df.drop(('bison', 'weight'), axis=0, inplace=True) multiindex_df Output: Example 4: To drop two rows from level 0. Here (‘bison’, ‘hawk’) are the label names we want to drop from level 0 which contains multiple rows from level 1. So deletion of the rows from level 0 will result in the dropping of the respective rows from level 1 also. axis=0 as which depicts rows will be targeted for deletion, inplace=True inside the df.drop() function so that it performs the task and returns nothing. Python3 multiindex_df.drop(['bison', 'hawk'], axis=0, inplace=True) multiindex_df Output 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/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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames/How to Merge DataFrames of different length in Pandas ?/Join Pandas DataFrames matching by substring/Merge two Pandas DataFrames based on closest DateTime/Merge two Pandas DataFrames on certain columns/Merge two Pandas dataframes by matched ID number/Merge two dataframes with same column names/Drop specific rows from multiindex Pandas Dataframe
https://www.geeksforgeeks.org/drop-specific-rows-from-multiindex-pandas-dataframe/?ref=next_article
Pandas
Drop specific rows from multiindex Pandas Dataframe
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Merge two Pandas DataFrames on certain columns, Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Drop specific rows from multiindex Pandas Dataframe, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, Join Pandas DataFrames matching by substring, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, Merge two dataframes with same column names, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Merge two Pandas DataFrames based on closest DateTime, Print with your own font using Python !!, Best Practices For SQL Query Optimizations, Merge two Pandas dataframes by matched ID number, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, How to Merge DataFrames of different length in Pandas ?, Floating Point Operations & Associativity in C, C++ and Java, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[-0.014481687, 0.0177936926, -0.014248291, 0.0348093957, 0.0220059417, -0.021828115, -0.0271406602, -0.00268405792, 0.0230728947, -0.0105139492, -0.00695743365, -0.0601051152, 0.00257986318, -0.00231312448, -0.038743794, -0.00870234892, 0.00625724485, 0.0358985811, 0.0293412544, -0.0176269803, -0.00600162, 0.00782433432, -0.00601273449, 0.0122810928, 0.00117253873, 0.0193941239, -0.00667958101, -0.0082188854, -0.0117587298, 0.00704079, -0.0278964192, -0.012181066, 0.0209167581, -0.00434006052, -0.0398996621, -0.021828115, 0.0199164879, 0.0109251719, 0.0143372035, 0.0237841979, 0.00897464529, 0.0469904654, -0.0165600255, -0.0290300585, -0.0161376894, 0.0209834427, -0.0108473729, 0.0117031597, -0.00939142425, 0.0121143814, 0.0350761376, -0.0107417889, -0.0201387703, -0.0516139343, 0.00905244425, -0.000898159167, 0.0320975557, 0.0296079926, -0.0144150024, -0.0383659117, -0.0126034021, 0.00782433432, 0.0527253449, -0.0262959879, 0.00812441576, 0.033275649, -0.0127145434, -0.019660864, -0.0337424427, -0.0543702319, -0.0226505585, 0.000737699156, 0.0446342714, -0.0153152458, -0.0122477505, -0.0291634295, 0.0202387962, -0.00118156895, -0.00602940563, 0.0308083165, 0.0411666706, -0.0532588214, -0.0143038612, 0.0203721672, 0.0521474108, 0.0120810391, 0.00382603286, -0.023161808, 0.00278408499, -0.00432894658, 0.00749646826, 0.0287633203, 0.0344537459, -0.0246733278, -0.0126256309, -0.0384770557, -0.0222059954, 0.0245177299, -0.0049902359, -0.0304748937, -0.049746763, 0.0379435755, -0.0191051569, 0.00387048931, -0.000147088314, -0.011058541, 0.0227283575, 0.0256735981, -0.0434117205, -0.00334534748, 0.00652954075, -0.0188606475, -0.0300081018, 0.00729641411, -0.00196719775, -0.0030508237, -0.0141038075, -0.0256069135, 0.00161849253, -0.0459235087, 0.0709969476, 0.00247844681, 0.0230728947, 0.0730863959, -0.0284743533, 0.0250289794, 0.0358541235, -0.0268961508, 0.0281187017, -0.00233952049, -0.00585713657, -0.0206277911, -0.0184383113, -0.0290078316, -0.0285854954, 0.0183605123, 0.0397885181, -0.0132591352, -0.0083855968, -0.00968594849, -0.0266960952, 0.00234646676, -0.0254957713, -0.0271184314, -0.0115697905, 0.00324532064, 0.00101346802, 0.0219503697, 0.00779654924, 0.0120143546, -0.0446342714, 0.0214946922, 0.010274996, 0.0151929902, 0.00329811266, 0.0243176762, -0.0169045646, -0.0221393108, -0.00234507746, 0.000771736144, 0.0238286555, 0.0104583791, -0.00142260629, 0.00162960659, 0.0326310322, 0.0258069672, -5.04042328e-05, -0.0339869522, -0.0165711399, 0.0314084776, 0.0437006876, -0.0309639145, -0.00794103276, 0.0145483715, 0.017438041, 0.0180048607, 0.0206944756, -8.39202257e-05, 0.0152819036, 0.0273851715, 0.00391216716, -0.0300081018, -0.0191162713, 0.0415445492, -0.00739644142, -0.0220170543, 0.00496800803, 0.0107918018, -0.0139482096, 0.00109890779, -0.0155264139, -0.00253401743, 0.0197164342, 0.0160043202, -0.0250734352, -0.0152041046, -0.036498744, 0.0421891659, -0.00477906782, 0.0211834963, -0.00105167285, -0.0542813204, -0.00457345694, -0.0020977885, 0.00915247109, -0.00406776462, -0.0180826597, -0.0174713843, 0.0236286018, 0.00369266351, 0.0179159474, -0.00323698507, -0.00484019564, 0.000281499611, 0.0301636979, 0.00457345694, -0.010797359, 0.0240953937, 0.0201943405, -0.0294746235, 0.00833558384, 0.000190850129, 0.0124255763, -0.0366321132, -0.0458345972, 0.0248511527, -0.0355873853, 0.0415223204, -0.0475239418, -0.0465014428, 0.0213613231, -0.00505692093, 0.00115725689, -0.0274073984, 0.0228950698, -0.00247288984, -0.0472572036, -0.00295635359, 0.0220837388, -0.0255624559, 0.0465459, 0.0295190811, -0.00791324768, -0.0492577441, 0.0219503697, 0.0354540162, -0.0248733815, 0.0363209173, 0.0173713565, 0.0434117205, 0.0488131791, -0.0220392831, 0.00383714703, 0.0173046719, -0.0101360697, -0.0270295199, 0.00506803486, 0.0168489926, -0.0459679663, -0.0113808503, 0.00268822582, 0.00502357818, 0.0104861641, 0.022850614, 0.03292, -0.0459679663, 0.0275629964, 0.0232284926, 0.0181271154, -0.00270489696, -0.0264071282, -0.0151818767, -0.027474083, 0.0178714916, -0.0155930985, 0.0204388518, -0.036498744, -0.0451677479, 0.00601829123, 0.0298969597, 0.0224282779, 0.033564616, 0.0112030245, 0.0191385, 0.0255624559, 0.0102305394, -0.00633504335, -0.0176269803, -0.00516250497, -0.0193496682, -0.0099804718, 0.00108223665, 0.00113225006, -0.0370766744, 0.0479685068, 0.0162599459, -0.0171046183, 0.0046345843, -0.0251623485, -0.00242704409, -0.0073353136, 0.00723528676, 0.00617388915, 0.00566263963, 0.0226616729, -0.00937475264, 0.0312084258, 0.0184271969, -0.00524308207, -0.00948589388, -0.0370322205, 0.00540145813, -0.0383659117, -0.0395884663, -0.0463236161, 0.0292745698, 0.0282743, -0.0318530425, 0.00749091106, -0.00641839951, 0.0195830651, -0.00935252476, -0.0146928551, 0.0170157049, -0.0147261973, -0.00878570508, -0.0306749474, -0.0301192421, -0.0220615119, -0.0370989032, -0.0180493165, -0.0103805801, -0.00654065469, 0.0230728947, -0.025829196, 0.00943032373, -0.000137276642, -0.053081, -0.0386326499, 0.0154819572, 0.00655732583, -0.0169712491, -0.00914135668, -0.0186272506, -0.0100082578, 0.0120699247, 0.00189634529, 0.0241176225, 0.0139926663, 0.0325198919, 0.000536950538, 0.00737977028, -0.0100805, 0.0213390943, 0.0238064267, -0.0450343788, 0.0190273598, 0.00218392303, -0.0126700867, 0.0180493165, 0.0228950698, -0.00109196152, -0.00193107687, -0.0634393468, -0.0391661301, 0.00622945931, 0.0193607826, -0.0349205397, 0.0157264676, 0.00617944589, -0.00553482771, -0.0226283316, 0.0141816065, -0.000948172645, 0.0208945293, -0.0231173523, 0.0385215096, -0.0151040778, -0.0555705577, 0.0050819274, -0.0240064804, 0.00436506746, -0.0207722746, -0.00535422331, -0.0249845237, 0.0291412, -0.000962759892, -0.00333423354, 0.00298969611, 0.0300303288, 0.00633504335, 0.0263182167, -0.00558484113, -0.0391439, 0.033564616, -0.02227268, -0.00532921636, 0.013436961, 0.00986933149, -0.00138301228, -0.0269628353, -0.0294301677, -0.0150373932, -0.020161, -0.00354262302, -0.0140482374, 0.00258958805, 0.0078799054, -0.0122366371, 0.0192607548, 0.00889684632, 0.0581045747, -0.00434006052, 0.022872841, 0.0265627261, -0.0356096141, -0.00534866611, 0.022850614, -0.0506803468, 0.00228394987, 0.0593049, -0.0108307013, -0.0137814982, -0.00818554312, -0.00357040833, 0.0101916399, -0.00954146497, 0.0262515321, 0.0166822821, 0.0165266842, 0.0269406065, -0.000506734, -0.00799660292, -0.00120310253, -0.0477462225, -0.013592558, 0.015448615, 0.0557928383, 0.0294746235, -0.0148817953, 0.0203054827, 0.00861343648, -0.0245177299, 0.0038482612, -0.000880098727, -0.0324087478, -0.0323865227, 0.0410110727, -0.0103694657, 0.00937475264, -0.04141118, 0.0150040509, -0.024050938, -0.000852313417, 0.0442341641, -0.00581268035, 0.0285410378, -0.0194052383, 0.0324087478, 0.0206500199, -0.00614610361, 0.0210612416, 0.0286966357, -0.0384548269, 0.000124339116, -0.0122144083, -0.0268294644, 0.0274296273, -0.0114919916, -0.0247400124, 0.00409277156, -0.0293634832, -0.00835225452, 0.0247400124, 0.0239175688, 0.0738866106, 0.00554038445, -0.00643507065, -0.00681850733, 0.00798548944, 0.0514805652, -0.0249622948, 0.00810218696, -0.00780210644, -0.0355429277, -0.0118476432, 0.00569598237, 0.0116142463, -0.00714081666, -0.0409443863, 0.0378991216, -0.00761872344, -0.0108029163, 0.0034009181, 9.55118958e-05, 0.0230951235, -0.0299191885, -0.00425114762, 0.0106306477, 0.00195608358, 0.00835225452, -0.00250067515, -0.0250734352, 0.0389883034, 0.00762983738, -0.0292745698, -0.0180270895, 0.0094469944, -0.0117476163, 0.003248099, -0.00756871, 0.0300970133, 0.0229617544, -0.017882606, 0.0184049681, -0.0367432535, 0.00883571897, 0.0376101546, 0.0303415246, 0.0149595942, 0.0412333533, 0.0117031597, 0.00674626557, 0.0223949347, -0.0138259549, 0.0173157863, -0.0262737591, -0.00324532064, 0.0160043202, 0.0202054549, 0.00560984761, 0.0160376634, -0.00930251181, -0.0242287628, 0.000923860527, -0.0586825088, -0.0125033753, 0.013070195, -0.00682962174, 0.0116698174, -0.026873922, 0.0199942868, -0.0185161103, -0.00930251181, -0.0252512619, 0.00343703898, -0.00765762292, -0.0252290331, -0.0318085887, -0.00522918953, -0.00690742023, 0.0160154346, 0.0146928551, -0.0356096141, -0.0343426056, 0.00348149543, 0.00598494895, -0.00915247109, 0.00988044497, 0.0155264139, -0.00670736609, -0.0235619172, 0.00880793296, 0.015659783, -0.0245621856, 0.000241037298, -0.0141816065, 0.00928584, -0.035943035, 0.0299636442, 0.0305860341, 0.0189829022, 0.00664623873, -0.0308750011, -0.0252068043, 0.0114475349, 0.00465403404, -0.000270038174, -0.00310361572, -0.00145872717, -0.00355651579, 0.0102360966, 0.0246733278, 0.00305638066, 0.0191051569, -0.0525475182, 0.00881349, -0.00396218058, -0.0246066432, 0.0202610251, 0.00683517847, 0.0510804579, -0.0229172986, 0.00337591139, -0.0102694388, 0.00134480745, -0.016493341, -0.0323198363, 0.0211612675, -0.0189717878, 0.0154930716, 0.00391216716, 0.0271184314, -0.00300081, 0.0360319503, -0.00784100592, -0.0466348119, -0.0156153264, 0.0132146785, -0.0126700867, -0.0101749692, -0.0121921804, 0.0300747864, -0.0395217799, 0.0312751085, -0.0126145165, 0.00134619675, 0.0251845773, -0.00318141445, -0.0208278447, 0.00268961489, -0.00382325426, 0.0224282779, 0.00617944589, -0.00166850595, 0.0120476969, 0.00217141956, 0.0521474108, 0.00225060759, -0.00958592165, 0.0170601606, -0.00109474, 0.0223060213, -0.0267405529, 0.012103267, -0.0246733278, 0.0343203768, 0.0108251451, 0.0100805, 0.0081911, 0.032208696, 0.0447454117, 0.0245844144, 0.0327866301, -0.0261848476, 0.0076909652, -0.0191496145, 0.00403164374, 0.0180159751, -0.023161808, -0.0138370693, -0.0055209347, -0.00230895658, 0.0158931799, 0.0108640436, -0.0145594859, -0.0112808235, 0.0155930985, 0.000541812915, -0.00552649191, -0.00937475264, -0.00408999296, 0.00431227544, -0.00210890267, 0.0166822821, 3.66635431e-05, -0.0124033485, 0.00717415893, 0.0237397421, 0.00898020249, -0.00867456384, -0.0143483179, 0.00207139249, 0.0158264954, 0.00574599579, -0.0150040509, 0.00903577264, 0.0314529352, 0.0151040778, 0.00182688213, -0.0164488852, 0.00588492211, -0.0294301677, 0.0108084735, -0.0461457893, -0.000590089883, 0.00956369285, -0.0272073448, -0.0202832539, -0.0358763523, -0.0275852252, 0.00414834218, 0.016548913, -0.0266960952, -0.00199081516, 0.00704634655, 0.0181493443, 0.00972484797, -0.0101082847, -0.00966927689, 0.0457012281, 0.0183716267, 0.024651099, 0.0209723283, -0.00452066492, 0.0153152458, -0.0211168118, 0.0102527682, 0.00846339576, -0.0301192421, 0.0380324908, 0.00512082689, -0.000118955722, 0.0176269803, 0.0135258734, 0.0351428203, -0.0233396348, -0.0244065896, -0.00206722482, -0.00395106664, 0.00988600217, 0.0549037121, 0.0189829022, 0.0122477505, -0.0187383927, 0.0037593483, 0.00869123545, 0.00371489185, -0.0170045905, -0.00779099204, -0.0213057511, 0.00587936491, 0.010536178, 0.00522085372, -0.0245399587, 0.00658511091, 0.0254068598, -0.0234285463, -0.0127145434, -0.0105028357, 0.0144150024, -0.00285910512, -0.00244927243, -0.0283632129, 0.000773820037, 0.045567859, -0.00161571393, -0.0192718692, -0.00241037295, 0.012992396, -0.00450955098, 0.0218948, 0.105984166, 0.00283131981, -0.0034009181, -0.0121588381, -0.0122588649, -0.00746868318, -0.012314436, 0.00662401039, -0.0324309766, -0.0103639094, 0.00969706196, -0.00587380817, 0.00505969906, -0.00197553332, -0.0150818489, -0.00646841293, 0.00398996612, 0.0204944219, 0.0270517468, 0.00794103276, 0.0290967431, -0.0348093957, 0.00288689043, 0.00367321377, 0.0266071837, -0.0151263056, 0.000521668582, 0.00773542142, -0.0197831187, 0.0099804718, 0.0176492091, 0.00303693092, 0.0155486418, -0.00137189811, 0.0255846847, -0.00509859854, 0.0202610251, 0.00705746096, -0.0169823617, 0.0158709511, -0.010169412, -0.00904133, 0.0127256578, 0.0113752931, -0.0134147322, -0.0238064267, -0.0279631037, -0.0137148136, 0.00616833195, -0.0254513156, 0.039477326, 0.0169490203, -0.00582379429, -0.0242732204, -0.0030480451, 0.0104417074, 0.0141260354, 0.00314529357, -0.0103861373, 0.0181382298, -0.0154041583, 0.0135703301, 0.0108640436, 0.0264071282, -0.0133480476, 0.00690186303, -0.00488187326, 0.0393217281, 0.00244232593, -0.0417890586, 0.00677405111, 0.0134814177, 0.00272990367, 0.00118156895, 0.0160932336, 0.00634615775, 0.0201387703, 0.0189162176, 0.047212746, 0.00271184323, -0.00955813564, 0.0133258197, -0.0216391757, 0.0218948, 0.00519306865, -0.00342314644, -0.0235174596, 0.00898575876, -0.0103416806, 0.00457623554, -0.049302198, 0.00599606335, 0.0259403363, 0.0130590815, 0.0132257929, 0.0332089663, 0.0243843608, 0.0434784032, -0.00634060055, 0.0234730039, 0.00459290668, 0.0131924506, -0.011058541, -0.024206534, 0.0174936112, -0.0256735981, 0.0248733815, 0.0292301141, 0.0492132865, 0.0080466168, -0.00771875028, -0.00790213328, 0.0331867374, 0.00586825097, -0.0140593508, 0.0180159751, 0.00471516186, -0.00915247109, 0.00426781876, -0.00900798757, 0.025518, 0.0246288721, -0.0139926663, -0.0393439531, -0.0271406602, -0.0312528834, 0.00911357161, -0.0160376634, -0.00412611384, -0.0234063193, 0.0074297837, 0.00838004053, 0.017071275, 0.0229839832, -0.00440118834, -0.00841338281, -0.00415945612, -0.042589277, 0.0213946644, -0.00457067834, -0.00425670482, -0.0293857101, -0.0281631593, -0.0202165693, 0.0221504234, -0.0228950698, 0.0121921804, -0.00290634017, 0.0155708706, -0.0286744069, 0.0128034567, -0.0186494794, -0.0160487778, -0.000162109733, 0.0436117724, 0.0115031051, 0.00921359845, 0.0122810928, -0.0353651047, -0.0204499643, 0.0108807152, -0.00820221473, 0.0132146785, -0.00901910197, -0.00316752167, -0.0073353136, 0.0118365288, -0.0239842534, -0.0132813631, -0.0185939092, 0.014403889, 0.0324087478, -0.0187383927, -0.0168378782, -0.012914598, -0.0114586493, 0.00860787928, 0.0100138141, -0.0242732204, 0.00602940563, 0.00116698176, 0.00142955256, 0.0268516932, -0.0173380133, -0.0478351377, -0.00102110894, -0.0397662893, 0.0108140307, -0.0104806069, 0.0407443345, -0.0263626724, 0.00884127617, 0.00551259937, -0.016548913, -0.0124478051, 0.0216391757, 0.0213279799, 0.0168267656, 0.0188161917, 0.0199831724, -0.0204388518, 0.0137481559, -0.000947478, -0.0178381484, -0.0029619108, -0.0226505585, -0.0055209347, 0.0187939629, 0.00696854806, -0.00911912881, 0.000998880831, -0.0106695471, -0.0309861433, 0.00932474, -0.0243176762, -0.021227954, 0.000808551617, -0.00450677238, 0.00115656224, -0.028207615, 0.00432616798, -0.0173602421, -0.0105028357, 0.0261626188, -0.00996380113, -0.0217169747, -0.00815775804, 0.00472071907, 0.0123477783, 0.0227617, -0.00357040833, 0.0107140038, -0.00573488139, 0.00316196471, 0.0203499384, -0.004026087, -0.0257625114, -0.00154208299, -0.0281853862, -0.00304526649, -0.0235174596, 0.000142660036, -0.00181993574, -0.0566375107, 0.0432338938, -0.0216169469, -0.0160598904, 0.00938031, 0.003842704, -0.0188050773, -0.0216280613, 0.0477462225, -0.0120032402, 0.00287021929, 0.0166822821, -0.012470033, 0.00450677238, 0.0156375542, -0.0105306208, -0.0335423872, -0.0229839832, 0.00489298766, -0.00678516505, 0.0103416806, 0.0218058862, -0.0298302751, -0.0171046183, 0.0143038612, 0.0158598367, -0.00142121699, -0.0486353524, 0.00226311106, 0.0230062101, -0.00423447648, -0.0109085, -0.0266960952, 0.0291189719, 0.000562304573, -0.0167934224, 0.00699633313, 0.0167711936, -0.000601898588, 0.00315640774, 0.0214168932, -0.0197720043, -0.0401664, 0.0145261437, -0.0150151644, -0.0185827948, 0.0195830651, 0.0282965284, -0.0150707355, 0.00350094517, -0.0349649936, 0.0181826856, -0.00290078321, 0.0172491018, 0.0307860896, 0.00215058052, -0.000168795566, 0.0219059139, 0.0189940166, 0.0218725707, -0.0025395744, -0.0184605401, 0.0145261437, 0.0132369064, 0.00388716045, -0.00988600217, 0.00575155253, 0.0232062656, 0.0157264676, -0.0108029163, 0.0123922341, -0.012759, 0.0273629427, -0.00460402062, 0.00171851949, 0.00380658312, -0.0121143814, -0.0283632129, 0.00460124202, 0.0416112319, 0.00139482098, 0.0067240377, 0.00054285489, 0.0085800942, -0.00506525626, 0.0490354598, -0.00135175383, 0.0205944479, 0.015737582, -0.0154152727, -0.0295857657, 0.040099714, 0.0323865227, -0.00161988172, -0.00639617117, -0.00476239668, 0.0194052383, -0.00274796411, 0.0240731649, 0.00933585409, 0.004026087, 0.0353206471, 0.0398552045, -0.0321642384, -0.0123366639, -0.0152374469, -0.00176575442, -0.0157820377, -0.0262293033, 0.0344759747, -0.0137814982, -0.00985821709, 0.0244288165, -0.00330089102, 0.0244288165, 0.0122699793, 0.000523752533, -0.02389534, 0.00730752852, -0.0218948, 0.00247288984, -0.0240064804, -0.0304748937, -0.0209945571, 0.00615721801, 0.0154597294, 0.0120699247, 0.00732419966, -0.000582448905, 0.000171313615, -0.00683517847, 0.0153597025, 0.0040233084, -0.00612387527, 0.00251456769, -0.00170879462, -0.000140315664, 0.0184383113, 0.0219059139, -0.000592173776, -0.016471114, -0.000554663653, -0.00584046543, -0.0302303825, -0.0115031051, 0.0336757563, -0.00958592165, 0.0205833353, 0.0110529838, -0.0102805533, -0.0110696554, -0.0302526113, -0.0153374737, -0.0335201621, 0.00280214543, -0.00425948342, -0.0157264676, 0.0338758118, 0.0344537459, -0.029696906, -0.00477906782, -0.0411444418, -7.71475607e-05, -0.0150707355, -0.00837448332, -0.0162266027, -0.007163045, 0.0235619172, -0.00203805021, -0.0103694657, -0.0160932336, 0.0395217799, 0.0180715453, -8.84027759e-06, 0.000583490881, 0.00797437504, -0.000767568301, 0.00602940563, 0.0145817148, 0.00477906782, -0.0330311395, -0.0182049144, -0.0138704116, 0.00916914176, -0.00655176863, -0.0021908693, -0.0217280872, -0.0176936649, -0.00436784606, -0.0297635905, -0.0177603494, -0.0193274394, -0.00395662384, 0.0107417889, -0.0321642384, 0.0321642384, -0.0165600255, -0.0366321132, 0.0175825246, 0.0258514229, 0.00720194448, -0.0192607548, 0.0242954474, 0.0134480754, -0.0211279262, 0.0257847384, -0.00764650851, -0.0347204842, -0.00168934499, 0.0112030245, -0.0297191348, -0.0179159474, 0.0269850623, 0.00686852075, -0.0138481827, 0.0192829836, -0.00160876766, -0.0177270081, -0.0179159474, 0.0223393645, 0.0121254958, -0.00291189714, -0.0146039426, 0.0264071282, -0.00766318, 0.0272962581, -0.0128590269, -0.00359263667, 0.00735754194, 0.00782433432, 0.0109029431, 0.00584602263, -0.0113141658, 0.00209084223, -0.0132813631, -0.00793547556, 0.00417334866, -0.02865218, -0.00746312598, -0.00328144152, -0.0221726522, 0.0194163527, 0.0213390943, 0.00143510965, 0.0028049238, 0.0151707623, -0.00456512114, 0.0349649936, -0.0225949883, 0.00465403404, -0.00574599579, 0.00704634655, -0.0146372849, 0.004195577, 0.00365654263, 0.00774653582, 0.0210501272, -0.0242287628, 0.0221837666, 0.00965816248, 0.0174602699, 0.0066351248, 0.011425307, 0.0120699247, 7.2502211e-05, 0.00104194798, -0.024050938, -0.0135036455, -0.0151040778, -0.0116809309, 0.0266294107, 0.000478254107, -0.00685740681, 0.00711303158, -0.00226588943, 0.00992490165, 0.0126034021, 0.0181493443, -0.0041927984, -0.00669069495, -0.000844672497, 0.00318697141, -0.0162043739, 0.00965816248, 0.0105250636, 0.0254290868, -1.30569106e-05, 0.0149595942, 0.019972058, 0.00234229909, 0.00820221473, 0.00360652921, 0.00417890586, -0.0127812279, -0.00873013493, 0.0190384723, 0.0160376634, 0.0268072374, -0.00159765349, -0.0169712491, -0.0122032948, 0.00886350404, -0.00164766703, 0.0100749424, 0.00422336254, 0.0136814713, 0.0172046442, -0.0458345972, -0.00138995855, -0.0106751043, 0.0204833075, -0.00688519189, -0.0118031865, 0.0243176762, 0.0240064804, -0.011291937, 0.021828115, 0.00591826439, -0.0251401197, 0.000352004747, -0.0101471841, 0.00206583552, 0.0180604309, -0.00721861562, 0.0131702218, -0.000906494737, 0.0076965224, -0.035654068, -0.0269406065, -0.00900798757, 0.018271599, -0.00709636044, 0.00462624896, 0.000102631871, 0.0183827411, -0.0120699247, 0.00572376745, 0.0183493979, 0.0142705189, -0.00587936491, -0.0144372312, -0.00830224156, -0.0074242265, 0.0334757045, -0.0100805, -0.00104125333, -0.0101749692, -8.4007057e-05, -0.00941365212, -0.0114919916, -0.0196719766, 0.00809107348, 0.000918998092, -0.0115920184, -0.0274296273, -0.0155708706, -0.0151818767, -0.0128812557, -0.0136703569, 0.0222393367, -0.0254513156, -0.0121699525, 0.0141816065, -0.00511526968, 0.0289189182, -0.0143149756, -0.016548913, 0.0348760821, -0.0137814982, 0.0302526113, -0.00138440146, 0.00234646676, -0.0159820933, -0.0268961508, -0.0102360966, 0.0388993919, -0.00215613772, 0.0119254412, -0.0110529838, 4.31540102e-05, 0.00305915927, 0.000941920967, -0.0231173523, 0.0087468056, -0.00252290326, 0.0211946107, -0.0335868448, -0.00736865588, 0.0147484262, 0.0185827948, 0.0182938278, -0.0208723024, 0.0105472915, 0.0135036455, -0.00400663726, -0.0161599182, 0.024050938, 0.0334979333, 0.0123700062, 0.0137592703, -0.0343648344, -0.00211862754, 0.00736309867, -0.0026284873, 0.0286966357, 0.0206166767, 0.00452900026, 0.00185744592, 0.0195052661, -0.00398440892, 0.0410555266, -0.0012142167, 0.0259403363, -0.00564596849, -0.00609053299, -0.00300358864, -0.00344537455, 0.0154708428, -0.0216947459, -0.00620723143, 0.033275649, 0.00106834399, -0.0325865746, -0.0270072911, 0.0299414173, -0.00415667752, -0.0134814177, -0.00800771732, -0.0216725171, -0.00468459819, -0.0301636979, -0.00105931377, 0.026873922, 0.0325865746, -0.0298080463, 0.025984792, 0.0103472378, 0.0111029977, -0.0308305454, 0.0138370693, -0.0283854418, -0.00489576627, 0.00103361241, 0.016860107, -0.0101249553, -0.00119615626, 0.0158709511, 0.0297635905, 0.0146261705, 0.0166711677, -0.0300747864, 0.00390938856, 0.00706301769, -0.00988600217, 0.00747979712, 0.00968594849, -0.0123033216, 0.00251734629, 0.0126700867, 0.0366098844, -0.00107876339, 0.016704509, -0.00617944589, 0.0116253607, 0.0155930985, -0.0268961508, 0.0166267101, 0.00627391599, -0.0125700599, 8.96075217e-05, 0.00114336424, -0.0284076687, 0.0105195064, 0.0282520708, -0.0267627798, 0.011658703, 0.014248291, -0.0119921267, -0.00219781557, -0.00192968757, -0.0252068043, 0.00422336254, -0.0263626724, -0.0206722468, 0.0189829022, 0.020416623, -0.0329644531, -0.00126353558, -0.0155152995, 0.0311195124, -0.00936363917, 0.0139259817, 0.0171935298, -0.0335423872, 0.0222615656, 0.0134480754, 3.41346481e-06, 0.00792436115, -0.0321864672, 0.0235396884, -0.0157931522, -0.00138023368, 0.0228283852, 0.0211390406, 0.0266738683, 0.00337035442, -0.00181854644, -0.0401219428, 0.0186050236, -0.0151485344, 0.0172157586, -0.0210612416, -0.0145928282, 0.0212724097, -0.019738663, 0.00114544807, 0.00714637386, -0.000929417554, 0.0138592971, 0.0417668298, -0.00670180935, -0.00053313, 0.0409888439, 0.00175325107, 0.017071275, -0.0131035373, 0.00899687316, 0.0156486686, 0.00394273084, 0.00759093836, 0.0197608899, 0.00871902052, 0.000279589382, 0.00776876416, 0.0358318947, 0.0197831187, -0.00233535259, 0.0318085887, -0.0084022684, 0.0300970133, -0.00553760584, 0.0169156771, 0.0139815519, 0.00650175521, -0.0147484262, -0.00293134688, 0.00723528676, 0.0181493443, 0.0170823894, 0.00964704901, -0.000596341561, -0.00559039833, -0.0205722209, 0.000370238849, -0.00950256549, -0.00424003368, 0.0205277633, -0.00307860901, 0.0269406065, -0.0085800942, -0.0186050236, 0.00616833195, -0.00933029689, -0.0159154069, -0.0176158659, -0.00657955417, -0.00653509749, -0.00512082689, 0.0112085817, -0.00614610361, -0.0128923692, -0.0292301141, -0.0160598904, -0.00201860047, 0.000699147058, 0.0163488574, -0.00812997296, -0.0213613231, -0.02138355, -0.000618569786, -0.00118782069, 0.00195191579, 0.0070741321, 0.0213390943, 0.0251401197, 0.00634615775, -0.0131479939, 0.0320086405, -0.00502913538, 0.0074297837, 0.00716860173, 0.0117920721, -0.00699633313, -0.000459846371, -0.00549037103, -0.00886350404, -0.00826889928, -0.00549592823, -0.0111141112, 0.018249372, 0.0252734888, -0.0310528278, -0.00962482, -8.43977832e-05, -0.00409555, 0.00886350404, 0.0109251719, 0.00258403085, 0.0085634226, -0.000375795906, 0.00102666602, -0.0159932058, 0.00565430429, -0.0085634226, 0.000807162374, 0.0243843608, 0.0266294107, -0.019972058, 0.0104972785, 0.00242704409, -0.0109474, 0.0179381762, -0.000576197228, 0.0145928282, 0.00975819, -0.016337743, -0.00527086761, -0.0082133282, -0.00477628922, 0.00256041344, -0.0290078316, -0.0254513156, -0.00736309867, -0.0130590815, -0.00189912377, 0.0144928014, -0.0308083165, 0.0145483715, -0.00140871364, -0.00305360206, 0.00574043859, 0.0128256846, -0.0282298438, -0.000351657422, -0.0050208, 0.00319808559, 0.0085800942, 0.00690742023, 0.0154930716, -0.00224643969, 0.0133925043, -0.0147150839, 0.00979709, -0.0304526649, -0.0159487501, 0.00642951345, -0.00621278817, -0.0280075613, 0.0107529033, 0.0248733815, -0.0150485067, 0.0185383372, 0.0398552045, 0.00868012104, 0.0390549861, -0.00448454404, 0.0241398495, -0.0105306208, -0.00510693435, 0.0228283852, 0.00795214716, -0.00741311256, -0.0136814713, -0.00542924367, 0.0106973322, -0.0130590815, -0.00792991836, 0.000584532798, -0.00695187692, 0.0111641251, 0.0152374469, -0.020783389, 0.0262293033, 0.00185327814, 0.00495133689, 0.0132702496, 0.00178798265, 0.00539034419, 0.000818276487, -0.0222615656, 0.0154819572, 0.0328755416, -0.00669625215, 0.00510415575, 0.01194767, -0.00581268035, -0.00994157232, 0.0257847384, 0.00233257422, 0.00973040424, 0.00535144471, 0.0115031051, -0.0124922618, -0.00360652921, -0.00667958101, -0.00372600579, -0.00342592481, -0.0161488038, -0.0185494516, -0.00236035953, -0.0236286018, 0.00614610361, -0.00226866803, -0.0320086405, -0.0155597562, -0.0103250099, 0.000885655754, 0.00327032735, -0.0223060213, -0.0248956103, 0.0127478857, -0.0255402289, 0.0146039426, 0.0186272506, -0.00267711165, -0.00439840974, -0.0179381762, 0.0191718433, -0.00650731241, 0.0160376634, 0.00996935833, -0.0131924506, -0.0230951235, 0.00800771732, -0.00626280205, -0.00710191717, -0.00959147792, 0.0128479125, -0.00572932465, 0.000108015272, -0.0147928828, -0.00816331524, -0.00619056029, -0.00208111736, -0.00712414552, -0.0015698683, -0.00333423354, 0.00283965538, -0.00367321377, 0.021227954, -0.00240898365, -0.0230062101, 0.0108918296, -0.00179215043, 0.00604051957, -0.0112308096, 0.0136925858, -0.0258514229, 0.0314973928, 0.0136481291, -0.0269406065, 0.0280075613, 0.00462624896, -0.00824111328, 0.0242287628, -0.00764650851, 0.0203721672, 0.00383436843, 0.00646841293, 0.0108584873, 0.00113294472, -0.000699494383, 0.0110974405, 0.00695187692, -0.0376101546, -0.000106191859, -0.00832446944, 0.00907467213, 0.0262515321, 0.00640728511, -0.0044706515, -0.00844116788, 0.00639061397, 0.0199053735, 0.0171268452, 0.0230284389, 0.0105250636, 0.00125450536, 0.00629058713, -0.0146261705, 0.0101027275, -0.00231590308, -0.0131813362, -0.0154597294, -0.00154625077, 0.00572932465, 0.0148151107, -0.0114364205, 0.000610234158, -0.00532643776, 0.00715748779, -0.00297024637, -0.00160182128, 0.00866900664, -0.0035815225, 0.0255402289, 0.000213946652, -0.0037537911, 0.0146483993, -0.00973596144, -0.0132591352, -0.00661289645, 0.0183049422, -0.0108084735, -0.00348149543, -0.0112697091, -0.02389534, 0.0217947736, 0.00506247766, -0.00107390108, 0.000115656221, 0.0306749474, -0.0336090736, -0.00717971614, -0.0160710048, -0.00904133, -0.0183938537, 0.00468181958, 0.00880793296, -0.025518, 0.00385937514, -0.00316752167, 0.00562096201, 0.00604051957, 0.0163044017, 0.0108862724, -1.55315374e-05, 0.0143816601, -0.00634060055, -0.000361208629, 0.0201832261, 0.00321753533, -0.0265849549, 0.00363153592, -0.00168517721, 0.000203874486, 0.0221281964, -0.00651286915, 0.00664068153, -0.0145594859, 0.00484019564, 0.00978041813, -0.00520140398, -0.0200054012, 0.0153597025, -0.000221761264, 0.0148373386, 0.00767985126, -0.00151290838, 0.0119254412, 0.0314307064, 0.00992490165, -0.00192829838, 0.00299247447, 0.0126256309, -0.00262015173, 0.0221504234, 0.0182271432, 0.00400108, 0.0104083652, -0.0117365019, 0.0015698683, 0.0076076095, 0.00226172176, -0.019294098, 0.00530143129, 0.0225727614, -0.0298080463, -0.00448732264, 0.00988044497, -0.0199164879, 0.0187939629, 0.0177603494, -0.0179159474, -0.0174269266, -0.00696299085, -0.0102583254, -0.0163044017, -0.00941920932, -0.00445398036, -0.0027201788, 0.0319419578, -0.0348316245, 0.0371433608, -0.00409277156, -0.0169934761, 0.0319864117, 0.0101638548, 0.00741311256, 0.0282298438, 0.0113475081, -0.00123227714, -0.0251178928, -0.016415542, -0.008391154, -0.0047262758, 0.000365376414, 0.00615721801, -0.0217392016, 0.00426226156, -0.00565986149, 0.00978597533, -0.0138259549, 0.0135369878, 0.00528753875, 0.000910662522, 0.0121699525, -0.0143927746, 0.0155597562, -0.0348093957, 0.0243176762, 0.0170823894, -0.000965538435, 0.00150318362, -0.00457623554, 0.0198831446, -0.00482908124, -0.0159487501, -0.015293017, 0.0154152727, 0.00125103223, -0.010091613, -0.0124922618, -0.0193607826, -0.0396106951, 0.00433728192, -0.0063795, 0.0142260632, 0.0156264417, 0.0239620246, -0.016337743, -0.0190940443, -0.0336090736, 0.0164488852, 0.00576266693, 0.0308305454, 0.000288445939, 0.0265405, -0.0275629964, -0.0130813094, 0.0201165415, -0.00594049273, -0.00546814268, -0.00710191717, -0.0114141926, -0.0228950698, 0.00168795569, 0.00416779192, -0.0266960952, -0.000752981054, 0.000846756389, -0.000660942344, -0.00365098566, -0.00117879047, -0.00326477038, 0.000775209279, -0.0144261168, -0.00492355134, 0.00343426038, -0.0114030782, -0.0262737591, 0.00359819364, 9.47304361e-05, -0.00206305692, 0.0196719766, 0.0131257661, 0.011241924, 0.000219156384, -0.0135036455, 0.00699077593, -0.0169823617, -0.0193385538, 0.0229839832, -0.0121143814, 0.00341203227, 0.00741311256, 0.0100971702, 0.013436961, -0.0190162454, 0.0253401734, -0.0158820655, -0.0114586493, 0.000362945197, 0.0282520708, 0.0212501809, 0.0207611602, 0.0147595406, 0.0112474812, 0.0301636979, -0.00472071907, -0.0276519097, -0.00868012104, 0.0109085, 0.00961370673, -0.0183827411, -0.00695743365, 0.00899687316, 0.0215169191, -0.010719561, -0.00619056029, -0.00460679922, -0.00542924367, -0.0119254412, 0.0181271154, -0.0108195879, 0.000141097116, -0.00602940563, -0.03592081, -0.000203700823, -0.00519306865, 0.000743256183, -0.00830224156, -0.00382325426, -0.00921915565, -0.00621278817, -0.0229617544, 0.0268516932, 0.0051708403, -0.0107529033, 0.0147817684, -0.0111974673, 0.0242287628, -0.00926361233, 0.0166711677, -0.00170601613, 0.0027201788, -0.0215058066, -0.00385103957, 0.00151985476, -0.0209056437, 0.00695187692, -0.0102138687, 0.0103805801, -0.00064392382, 0.0183493979, 0.0102249822, 0.00250762142, -0.0161710326, 0.00734642753, 0.000691158813, 0.020338824, -0.00486242399, -0.00337313279, -0.0123255495, 0.0320308693, 0.00315085053, -0.015659783, -0.0111863529, 0.00934141, 0.0239842534, 0.00278130639, -0.0107306745, -0.000658858451, -0.00771319354, 0.0346093439, 0.0139704384, 0.00439563114, -0.0210278984, 0.0133035919, -0.0171046183, -0.0035787439, -0.00114336424, -0.0196719766, 0.014403889, -0.0043734028, 0.0335423872, -0.00579045201, -0.00509582, 0.0030730518, 0.00534866611, 0.00540423673, -0.0120365825, 0.0011676763, 0.00353428745, 0.00419002026, -0.00295913219, 0.00926361233, 0.00359819364, 3.69457375e-05, -0.00188523112, -0.00318419305, -0.00505136373, -0.00203249324, 0.00138648541, 0.0428115577, 0.00215196982, -0.0382325426, -0.0180604309, 0.0386771075, -0.0176158659, 0.0172935575, 0.0212835241, -0.0092747258, 0.0469460078, -0.00589047931, 0.017071275, 0.0163822, 0.0111029977, -0.0104083652, 0.00265349424, -0.0217614304, 0.0101638548, 0.0217836592, -0.00220198324, -0.0208389591, -0.00794659, -0.0239175688, -0.00602384843, 0.010352795, -0.00312028686, -0.0118587567, 0.0169712491, 0.0270072911, 0.00995268673, -0.0228950698, 0.00650175521, -0.00559317647, 0.0216058325, -0.0102194259, -0.00582379429, -0.0184494257, -0.0133813899, 0.000792575069, 0.00175880815, 0.02614039, -0.00664623873, 0.000786323391, -0.012314436, 0.0217947736, 0.0227283575, 0.0115031051, 0.0469904654, -0.00994712953, -0.00749646826, 0.0131146517, -0.00112044136, -0.0201943405, -0.00207417109, 0.00483741704, 0.00225755386, 0.0286966357, 0.000404275808, 0.00380380475, 0.0138592971, -0.00262431963, 0.0147817684, -0.0121921804, 0.0285854954, -0.000141965415, -0.000204916432, 0.0258736517, 0.0124922618, -0.00889128912, -0.00988600217, 0.00710191717, 0.016493341, -0.00868012104, -0.00582379429, -0.0368099362, -0.0034926096, 0.0043817386, -0.00925249793, -0.0051680617, 0.00919692684, 0.00470960466, 0.0156153264, -0.0213279799, -0.00207556039, 0.0242509916, -0.0018046539, 0.0032286495, -0.00152541185, 0.0171268452, 0.00567653263, -0.00919137057, -0.0199609436, -0.0161932614, -0.00757982396, 0.0165044554, 0.00150040502, 0.015370816, 0.00414834218, -0.00504858512, 0.00336201885, -0.010586191, -0.0123588918, 0.0278741922, -0.016548913, 0.00145317009, -0.0137926126, 0.0301859267, 0.00388993905, -0.00250623212, 0.0112252524, -0.0145039158, -0.0177603494, 0.0149484798, 0.00247844681, 0.0126923155, -0.0243176762, 0.0272518024, -0.000422683544, 0.00253262813, -0.0183493979, -0.00991378725, 0.0132702496, -0.00135731092, -0.00971373357, 0.00530976662, -0.00307583041, -0.00666846707, 0.00250901072, 0.00203249324, -0.0289856028, -0.0244732741, -0.0184049681, 0.00810774416, 0.00235341303, -0.0126145165, -0.0151818767, 0.0172824431, 0.0111029977, -0.00394550944, -0.00424281228, -0.0157931522, -0.00301192421, 0.0124811474, -0.00849673804, 0.00741311256, -0.00906355772, -0.00449565798, 0.0364320576, 0.0285410378, -0.00459290668, -0.00414000638, -0.00246455427, 0.00987488776, -0.00913024228, -0.0283409841, 0.00137328741, 0.000232007078, -0.021828115, 0.000944699452, 0.0153152458, -0.0319864117, -0.00520974, 0.00197831192, 0.00440118834, -0.0133480476, -0.00275629968, 0.0050208, 0.0222059954, -0.0105528487, 0.00157403608, 0.00460402062, 0.00958036445, -0.0104639363, 0.0254513156, -0.00295913219, 0.00497634336, 0.00791324768, -1.13420374e-05, -0.0133147053, -0.00471516186, 0.0114586493, 0.00252012489, -0.00444842316, -0.000743950834, 0.00596272061, -0.00436228886, -0.00619611703, -0.00432061078, 0.0125033753, 0.032208696, -0.000920387334, 0.0171601884, -0.00685184961, -0.0161376894, -0.00193802326, 0.00336479722, 0.00886350404, -0.0195719507, 0.0124478051, -0.00174213701, -0.0180382039, 0.0107028894, 0.00861899368, -0.00964704901, -0.0305860341, 0.00561262621, 0.00442619482, -0.0327866301, -0.00413167104, 0.00102875, 0.00886906125, -0.00197692262, -0.0230951235, 0.0181938, -0.008391154, -0.0178603772, 0.0177158937, 0.00867456384, -0.00532365963, 0.00802438892, -0.0276519097, 0.0142149488, 0.00826334208, 0.0142816333, 0.000528962235, -0.00180882169, 0.0082188854, 0.0200054012, -0.0142038343, 0.0309639145, -0.00582935149, -0.00266460818, -0.0184160825, -0.0139370961, -0.0163599718, 0.0290967431, 0.0146928551, -0.00561262621, 0.00848562457, -0.00519029, -0.0251178928, 0.016182147, -0.00416779192, -0.0168712214, -0.012470033, -0.00404275814, 0.000733531371, -0.0376101546, -0.00749646826, 0.00837448332, -0.000754370296, 0.0176714379, -0.0133925043, 0.0121254958, -0.0110085271, -0.0310083721, 0.0295635369, 0.0143149756, -0.0260737054, -0.00276324595, -0.00250484282, -0.00363153592, -0.000513680337, 0.0267627798, 0.0188828763, -0.000992629095, 0.0131591083, -0.0302303825, -0.0110363131, 0.00416779192, -0.000359819358, -0.00189912377, 0.0230062101, -0.0135703301, 0.00304526649, 0.00606830511, -0.00240203738, -0.0104917213, -0.00403720094, 0.0145706, -0.00494300108, -0.0107918018, 0.0245844144, 0.0077798781, -0.0102305394, 0.0309861433, 0.00414834218, -0.000287751289, 0.00963593461, 0.0131368795, -0.0245844144, 0.00014005517, 0.0116253607, 0.0039316169, 0.0100527136, -0.00443453062, -0.00871902052, -0.0134147322, -0.0147373118, -0.0033120052, -0.0201276559, 0.000189460872, 0.0196164064, -0.0122810928, -0.0211723819, 0.0089301886, 0.0180159751, 0.00512916269, 0.0106084198, -0.0130813094, -0.024206534, -0.00143233116, 0.00180604309, -0.0169712491, -0.0227394719, 0.0265405, -0.000588353258, 0.000403233862, 0.0129479403, -0.00519584725, -0.00162127102, -0.019005131, 0.020338824, -0.0180382039, 0.010508392, -0.0266294107, 0.0270295199, 0.00662401039, -0.0150262788, 0.008913517, -0.00604051957, -0.00118156895, -0.002895226, 0.00361208618, 0.0106639899, -0.00697410479, -0.0145706, -0.00111141114, 0.00133994513, -0.00474850414, 0.00893574581, 0.0256069135, 0.0074297837, 0.00445120176, 0.004115, 0.038299229, -0.0094525516, 0.0044623157, 0.00214641285, -0.0192607548, 0.00169351278, -0.0265627261, -0.0189940166, -0.00244093663, -0.00718527334, 0.00737421308, 0.00281881657, 0.0120921535, -0.00544591481, -0.0183938537, 0.0116475886, 0.00534866611, 0.000170271669, -0.0124589186, 0.0112530375, -0.0170045905, 0.0195163805, -0.0022811715, 0.00382603286, 0.0106362049, 0.00220337254, -0.00530976662, 0.004901323, -0.0108584873, -0.0481907874, -0.0103305671, 0.0227839295, -0.00871902052, 0.0184049681, -0.00278408499, -0.0107473461, 0.0149484798, -0.00456512114, 0.0167934224, -0.0163822, -0.000250762154, 0.00365098566, 0.00859676488, 0.0212612953, 0.0152596748, 0.00491799414, -0.0227394719, -0.000461930264, 0.011425307, 0.0446120426, -0.00915247109, 0.00286744069, -0.015815381, 0.0161599182, -0.0248289257, -0.00882460456, 0.0220281687, -0.00586825097, -0.012836799, 0.00746868318, -0.00623501651, -0.0185272247, 0.0103305671, 0.0216058325, -0.0155152995, 0.0248956103, 0.000159070725, 0.0199498311, 0.00749646826, -0.00761872344, 0.00996935833, -0.00923582632, -0.0171157327, -0.00554872025, -0.00345926732, 0.00251873559, 0.0207167044, -0.0252068043, 0.0295857657, 0.00400385866, 0.0110251987, -0.0119143277, 0.0137592703, 0.00168100942, -0.0149040231, -0.029985873, 0.00755759561, -0.019316325, 0.00120935426, -0.0132035641, -0.00408443576, -0.00696854806, -0.010536178, 0.0134036187, -0.0215169191, -0.0131591083, 0.00677960785, -0.000358082791, -0.00367321377, 0.00607941905, 0.00598494895, 0.0225838739, -0.00619056029, -0.00128715299, 0.00684073567, -0.0191051569, 0.00346204569, 0.00188384193, 0.0125033753, 0.00635727169, 0.00328144152, 0.0231840368, 0.0130035104, 0.0126034021, 0.000461582938, -0.0135036455, -0.00132883096, 0.0119365556, 0.0380547196, 0.0147928828, -0.0144594591, 0.00440952368, -0.0162043739, -0.00336201885, -0.0264960416, 0.014615057, -0.000393509021, -0.00830779877, -0.00532643776, 0.0288744625, 0.002274225, 0.00476239668, 0.032942228, 0.0155375283, 0.0201721117, 0.00300081, 0.0108473729, 0.00999714341, -0.00636838609, -0.00145733787, -0.0118698711, 0.0131924506, -0.00129062624, 0.0113419509, 0.03292, 0.0039371741, 0.0129034836, -0.00825222768, 0.000506386685, -0.00350928074, -0.00571821025, -0.00831891224, -0.00117809582, -0.00297858194, 0.0318752714, 0.00946922321, -0.0210056715, -0.0109307291, 0.028207615, -0.00282576284, 0.000991934445, -0.00569598237, -0.0428782441, 0.0125922887, 0.0131479939, 0.00268961489, 0.0118143009, 0.00364820706, 0.0195719507, -0.0157931522, -0.00451232912, -0.00239509111, -0.0153152458, -0.0123366639, 0.0106362049, -0.0166600533, -0.0222615656, -0.00638505723, -0.0113697359, -0.00299803168, 0.0190829299, 2.31182203e-05, -0.0159376357, 0.00189912377, 0.0256069135, 0.00342036784, 0.00996935833, -0.00543757901, -0.0308972299, -0.0123588918, -0.0110696554, -0.00774097862, 0.00770207914, -0.0247177836, 0.00326199178, -0.0110807689, 0.0173046719, 0.0213724356, -0.00270072906, 0.00349538797, -0.0141371498, 0.0119921267, -0.00186856, 0.000828695949, -0.0042900471, -0.0250289794, 0.0162932873, 0.00986377429, -0.0155375283, 0.00360652921, 0.019660864, 0.00989711657, 0.0075075822, 0.00890796073, -0.00956925, 0.0197942331, -0.00348427403, 0.00357040833, -0.0253401734, -0.0185383372, 0.0121921804, -0.00796881784, -0.000835642277, 0.00255346717, -0.00221448671, 0.000391077803, 0.0352095068, 0.00283965538, -0.00994157232, -0.0323642939, 0.00864122156, -0.00942476653, 0.000909967872, -0.00172963366, 0.0131368795, -0.00761872344, -0.00861343648, 0.015815381, 0.00106626, -0.00694076251, -0.0132591352, 0.0192829836, -0.0168712214, 0.0193941239, 0.000806467724, -0.00488465186, -0.0230062101, 0.0244288165, -0.0149595942, 0.0184605401, -0.00515694777, -0.022850614, 0.0165822543, -0.00398718752, -0.0215058066, -0.00604607677, -0.0188273042, -0.0001200845, 0.0251623485, -0.0034926096, -0.0425448194, -0.0140037807, -0.00320642116, -0.010719561, -0.0127923423, 0.0082133282, 0.0108529301, 0.0206944756, -0.0154819572, -0.0119921267, -0.0108862724, 0.0072519579, 0.00570709631, -0.0131702218, -0.0107417889, 0.00757426722, -0.00836336892, 0.0169712491, 0.0199276023, 0.00895797368, -0.0170823894, 0.00549870683, 0.0136703569, -0.0146483993, 0.00741311256, 0.0216391757, 0.0254957713, -0.00816887151, -0.0145594859, -0.00994712953, 0.00979709, 0.0105139492, -0.0196719766, 0.0116920453, 0.0390772149, 0.00488465186, 0.00757426722, 0.0116475886, -0.00158237165, 0.00278408499, -0.0047346116, -0.00830224156, 0.0137148136, 0.0144261168, -0.0188606475, -0.00741311256, 0.00866345, -0.00509582, -0.0141371498, -0.00243815826, -0.00119962939, -0.00326199178, -0.00105792447, 0.0279408768, 0.0109862993, -0.00638505723, -0.010091613, -0.00314807217, -0.0151818767, -0.0100582708, 0.00528753875, 0.00313140103, 0.00553204911, -0.0090969, 0.00159765349, -0.0140371229, 0.0195497219, -0.00631281547, 0.00969706196, -0.00343981758, -0.0283187553, -0.00229089614, -0.00672959443, 0.0036676568, -0.007868791, -0.0191940702, -0.00221865461, 0.0109751849, 0.0301192421, 0.0105639631, -0.0024520508, 0.00351483771, -0.0106417621, -0.0260292497, -0.0181826856, 0.0125256041, 0.00667402381, 0.00701300427, -0.033564616, -0.00415667752, 0.0129479403, -0.0173269, 0.010586191, 0.0107417889, 0.0106806615, 0.0301636979, 0.000689422246, -0.019527493, -0.00356762973, 0.0169601347, -0.0169712491, -0.0159042943, -0.00570153911, -0.00259931292, -0.0161154624, 0.028207615, -0.00658511091, -0.00242009782, -0.00879681949, -0.00926361233, -0.00164488854, -0.0305638071, 0.0043734028, 0.00967483409, -0.0148039963, -0.0219948273, -0.00163516367, 0.00886906125, 0.0191829558, -0.0308527742, -0.00235480233, 0.00679072225, 0.00279936683, -0.00933585409, 0.00614610361, 0.00186300289, 0.00012086596, -0.0205388777, -0.0123811206, -0.00994157232, 0.0189162176, -0.00132605247, -0.0256735981, -0.0148929097, 0.0221281964, -0.00940809585, -0.0186161362, 0.0126589732, -0.000487284327, -0.0117587298, -0.0167600811, -0.0131035373, -0.00180604309, 0.0149151376, 0.00239925878, -0.0054320218, 0.00565152569, 0.00363987149, 0.00992490165, 0.00160876766, 0.00133994513, -0.0121699525, 0.00449010124, 0.00943032373, 0.00736309867, 0.00458734948, 0.0101305125, 0.00908578653, -0.0348538533, -0.00561818341, 0.0153263602, -0.0187161639, -0.0084022684, 0.0083855968, -0.031919729, 0.00727974297, -0.0200832, 0.0105472915, 0.00651842635, 0.00448176544, -0.0338980407, -0.0115031051, -0.0136925858, 0.00186161371, 0.0284298975, 0.00325087761, 0.0187939629, -0.0249178372, -0.0117142731, -0.00899687316, 0.0130368527, -0.0142816333, 0.00912468601, -0.0148262251, 0.00284243398, 0.00176853302, -0.00283409841, -0.00467626238, -0.00888573192, 0.0142260632, -0.0123255495, 0.0187939629, 0.0171601884, 0.00465959124, 0.0291634295, -0.003136958, -0.0225505326, -0.0123588918, -0.00718527334, -0.00595716387, -0.0127701145, -0.0184605401, 0.00195608358, -0.0157264676, 0.00104542112, -0.00643507065, -0.00587380817, 0.0213946644, 0.00815220084, 0.00421780534, 0.00335924025, 0.0118143009, 0.0116142463, 0.00662956759, -0.0334757045, 0.00624057371, -0.0336090736, -0.00522363232, -0.00286466233, -0.00439563114, 0.0222393367, -0.00177131151, 0.0289856028, -0.00285910512, -0.0324976631, -0.00825778488, -0.0116031328, -0.000659205718, -0.00585158, 0.0119810123, 0.021828115, -0.00444842316, -0.0239620246, 0.00913579948, -0.00110932731, 0.000719638716, 0.0101416269, 0.0284521263, -0.00504580652, -0.00593493553, 0.0104250368, 0.0231840368, 0.00328977709, -0.016182147, 0.0150151644, 0.0149151376, 0.0034009181, 0.00501524284, 0.0120588113, 0.0119698979, -0.0248289257, 0.00669625215, 0.000975957897, -0.00562096201, -0.00838004053, 0.010091613, 0.0334312469, 3.01513683e-05, -0.0117920721, 0.00208806363, 0.0327421725, 0.0140704652, 0.0137814982, -0.00294801802, -0.0136925858, 0.014770654, 0.0372767299, 0.00602940563, 0.00111905206, 0.00302303839, -0.0196497496, -0.00996935833, 0.00919137057, 0.00214085565, -0.00187689555, -0.00577378087, -0.0202499107, -0.0123366639, -0.00454289326, 0.0312751085, 0.0191273857, -0.00575155253, 0.00747424, 0.00672959443, 0.00220754044, -0.00101068954, 0.00297302473, 0.00042303087, -0.00141496537, -0.0101860836, 0.00791324768, 0.00691297743, -0.00859120861, 0.0232062656, -0.00895241648, 0.0033175624, 0.0219392553, 0.000290356169, -0.00703523261, 0.0158820655, -0.0158709511, 0.0171935298, 0.00161293545, -0.000235480242, 0.0294968523, -0.00555983419, 0.0105139492, 0.0182827134, 0.00612387527, 0.0144150024, 0.0303192958, 0.00356485136, 0.00795770343, 0.00617388915, -0.0180382039, 0.00287855486, 0.00939698145, -0.0143705467, -0.0081911, -0.0191496145, -0.0107028894, 0.0218503438, -0.00612943247, -0.0227839295, 0.0183716267, 0.000663720828, 0.00863566436, 0.0106306477, 0.00318975, -0.00772986468, -0.0108251451, 0.0216725171, 0.0133147053, -0.00430393964, 0.0131035373, -0.00930251181, 0.024050938, -0.00695187692, 0.00394828804, 0.0115142195, 0.00723528676, -0.000968317, -0.00904133, 2.94567362e-05, -0.0178603772, -0.00780210644, -0.0446565, -0.0319641866, 0.0102138687, 0.00122255227, -0.000368849578, 0.0149707086, -0.0184605401, -0.0101082847, 0.00596827781, 0.016860107, 0.00347038126, 0.0257180538, 0.0129590537, -0.0114586493, 0.00223671505, 0.0130479671, -0.0168378782, 0.0155152995, 0.0218614582, -0.00217141956, -0.000615791243, 0.0245621856, -0.0151596479, -0.00780210644, 0.00466237, 0.0197608899, -0.0167489666, -0.024651099, -0.0054320218, -0.000698105141, 0.00295079662, -0.000804383832]
07 Apr, 2021
Select rows that contain specific text using Pandas 07 Apr, 2021 While preprocessing data using pandas dataframe there may be a need to find the rows that contain specific text. In this article we will discuss methods to find the rows that contain specific text in the columns or rows of a dataframe in pandas. Dataset in use: job Age_Range Salary Credit-Rating Savings Buys_Hone Own Middle-aged High Fair 10000 Yes Govt Young Low Fair 15000 No Private Senior Average Excellent 20000 Yes Own Middle-aged High Fair 13000 No Own Young Low Excellent 17000 Yes Private Senior Average Fair 18000 No Govt Young Average Fair 11000 No Private Middle-aged Low Excellent 9000 No Govt Senior High Excellent 14000 Yes Method 1 : Using contains() Using the contains() function of strings to filter the rows. We are filtering the rows based on the ‘Credit-Rating’ column of the dataframe by converting it to string followed by the contains method of string class. contains() method takes an argument and finds the pattern in the objects that calls it. Example: Python3 # importing pandas as pd import pandas as pd # reading csv file df = pd.read_csv("Assignment.csv") # filtering the rows where Credit-Rating is Fair df = df[df['Credit-Rating'].str.contains('Fair')] print(df) Output : Rows containing Fair as Savings Method 2 : Using itertuples() Using itertuples() to iterate rows with find to get rows that contain the desired text. itertuple method return an iterator producing a named tuple for each row in the DataFrame. It works faster than the iterrows() method of pandas. Example: Python3 # importing pandas as pd import pandas as pd # reading csv file df = pd.read_csv("Assignment.csv") # filtering the rows where Age_Range contains Young for x in df.itertuples(): if x[2].find('Young') != -1: print(x) Output : Rows with Age_Range as Young Method 3 : Using iterrows() Using iterrows() to iterate rows with find to get rows that contain the desired text. iterrows() function returns the iterator yielding each index value along with a series containing the data in each row. It is slower as compared to the itertuples because of lot of type checking done by it. Example: Python3 # importing pandas as pd import pandas as pd # reading csv file df = pd.read_csv("Assignment.csv") # filtering the rows where job is Govt for index, row in df.iterrows(): if 'Govt' in row['job']: print(index, row['job'], row['Age_Range'], row['Salary'], row['Savings'], row['Credit-Rating']) Output : Rows with job as Govt Method 4 : Using regular expressions Using regular expressions to find the rows with the desired text. search() is a method of the module re. re.search(pattern, string): It is similar to re.match() but it doesn’t limit us to find matches at the beginning of the string only. We are iterating over the every row and comparing the job at every index with ‘Govt’ to only select those rows. Example: Python3 # using regular expressions from re import search # import pandas as pd import pandas as pd # reading CSV file df = pd.read_csv("Assignment.csv") # iterating over rows with job as Govt and printing for ind in df.index: if search('Govt', df['job'][ind]): print(df['job'][ind], df['Savings'][ind], df['Age_Range'][ind], df['Credit-Rating'][ind]) Output : Rows where job is Govt
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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames/How to Merge DataFrames of different length in Pandas ?/Join Pandas DataFrames matching by substring/Merge two Pandas DataFrames based on closest DateTime/Merge two Pandas DataFrames on certain columns/Merge two Pandas dataframes by matched ID number/Merge two dataframes with same column names/Drop specific rows from multiindex Pandas Dataframe/Select rows that contain specific text using Pandas
https://www.geeksforgeeks.org/select-rows-that-contain-specific-text-using-pandas/?ref=next_article
Pandas
Select rows that contain specific text using Pandas
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Merge two Pandas DataFrames on certain columns, Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Drop specific rows from multiindex Pandas Dataframe, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Select rows that contain specific text using Pandas, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, Join Pandas DataFrames matching by substring, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, Merge two dataframes with same column names, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Merge two Pandas DataFrames based on closest DateTime, Print with your own font using Python !!, Best Practices For SQL Query Optimizations, Merge two Pandas dataframes by matched ID number, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, How to Merge DataFrames of different length in Pandas ?, Floating Point Operations & Associativity in C, C++ and Java, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[-0.0276230648, 0.029849479, -0.00992825255, 0.0266393, -0.0197141171, -0.00396418152, -0.035182517, -0.019105738, -0.023739785, -0.000912570802, 0.0320241153, -0.0386256911, 0.0283997208, -0.00516799837, -0.042120643, -0.00246102875, 0.02487888, 0.00199503498, 0.0182125829, -0.0311697945, 0.000688877655, 0.0217334237, -0.00393182086, 0.000742272765, 0.0156237297, 0.0216687024, -0.0399977826, -0.000808207609, -0.00994766876, 0.000343427557, -0.00178145466, -0.0136432564, 0.0220181979, -0.0387292467, -0.027571287, -0.0202577766, 0.0148341293, 0.0574725419, 0.0101547772, -0.00867913105, 0.000454667344, 0.0280372817, 0.00510327704, -0.0153519, -0.0287621599, 0.0204778295, -0.009844115, -0.0040062503, -0.0262639169, -0.00530067692, -0.0255390368, -0.0319205597, 0.033732757, -0.0317134522, -0.0170993768, 0.0445023887, -0.00902215391, 0.0240245592, -0.0132225677, -0.0295905937, -0.0147694079, 0.00353702088, 0.039764788, -0.0152483461, 0.00161479728, -0.0383409187, -0.00971467234, -0.0074688415, -0.0207367148, -0.0194681771, 0.0243352205, 0.0523983911, 0.0471689068, 0.0119669745, -0.0250342116, -0.0155719528, -0.00579903135, -0.0197011735, -0.0356226228, 0.0280631687, 0.0261733066, -0.0316875651, 0.0066274642, 0.0292540416, 0.032153558, 0.0176818687, -0.00981175434, -0.0556085669, -0.00088425522, 0.00708698574, 0.0101806652, 0.0130737089, 0.0624431409, -0.00762417307, 0.0228854623, -0.0175912585, 0.019351678, -0.000239873436, -0.0210603215, 0.0491105467, -0.0199341699, 0.00366646354, -0.00662099244, -0.0143681355, 0.0319205597, -0.0360627249, -0.0406449959, 0.00697695976, -0.0197917838, 0.00822608173, -0.00741706463, -0.0059575988, -0.00851085503, 0.0179148652, -0.0119022531, 0.0301342513, -0.00646889722, -0.0239986703, 0.0275971759, -0.00223612203, 0.0263674706, -0.0237786174, 0.034121085, 0.0161156114, -0.0299271438, 0.0199988913, 0.00401595887, -0.00556279859, 0.00915159658, -0.00247559091, -0.00175071205, -0.0140445288, 0.00985705853, 0.029875366, 0.0310403518, 0.00621648412, 0.0172288194, 1.97956269e-05, -0.0355967321, 0.0119410856, -0.0613558218, -0.0116757285, -0.0120899444, 0.0259403102, -0.0155719528, 0.00233967626, -0.00520359492, 0.0241669454, 0.011759866, -0.014717631, -0.0216687024, -0.0467546917, 0.0201283339, 0.0328784361, 0.0410333239, 0.0149635719, 0.00777950417, -0.00709993, -0.00241734181, 0.0288398247, -0.000826815, -0.0022927532, 0.00415187329, -0.0151965693, 0.0222900268, 0.0069057662, 0.00682162819, -0.00297232717, -0.0468582436, 0.0241410565, 0.0233255681, -0.0208402686, 0.0266910773, -0.00560486736, -0.00551425759, 0.000622133783, 0.0110414596, 0.0084461337, -0.00913865212, 0.0261474177, -0.0208014362, -0.0147305755, 0.0343799703, -0.00706756953, 0.0349236317, 0.00297556329, -0.00136481109, 0.0151836248, -0.0114297876, 0.00920984522, -0.0294093732, 0.0102130258, 0.00889271125, 0.0199859478, -0.0391952395, -0.0340951979, -0.0587669685, -0.021409817, -0.00641064811, -0.0143163586, -0.0116433678, -0.0444764979, 0.00734587107, 0.0297977012, 0.0587151907, 0.0037959062, -0.00942342635, 0.00752709107, -0.0216169246, -0.00996061321, -0.00512916548, -0.0149635719, 0.032567773, 0.0186785758, -0.0152612906, 0.011203263, -0.00149182673, 0.0177724771, 0.012827768, 0.00587993301, 0.0186785758, 0.00438163429, 0.0341987535, 0.0162838865, 0.00137209229, -0.00979881, -0.0176818687, 0.0171511527, -0.0465734713, 0.000523029245, 0.0295647047, -0.0146140764, -0.00632003788, -0.0106660752, 0.00974703301, -0.0187821314, -0.04214653, 0.0090027377, -0.0432856269, 0.00457579829, 0.0307814665, 0.00267460896, -0.00716465153, -0.0148470737, 0.0319205597, 0.0283738319, -0.0289433803, 0.0238303952, 0.0392211266, 0.0446059406, -0.0171899851, -0.0499907583, 0.0176559798, 0.0198176727, 0.020490773, -0.0260826964, 0.036373388, -0.0153260119, -0.045952145, 0.0149894608, 0.0377195925, -0.0117663378, 0.0110802921, 0.0162321106, -0.0253189858, -0.0251248218, 0.00157272839, -0.0598025098, 0.00443664752, -0.0120381676, 0.0310662389, -0.00247397297, -0.0406967737, 0.0328007713, -0.0195587873, -0.00155978405, -0.0502496436, -0.0247364938, -0.00410333229, 0.0129572107, -0.0128083518, 0.0426384136, 0.0256684795, 0.000186276084, 0.0365028307, -0.0118828369, -0.0039577093, 0.0033137321, -0.00970172789, -0.0424830839, 0.0151706804, -0.0306779109, -0.0113650663, 0.00533951, -0.00343670277, 0.0122258598, -0.00332344044, -0.0314804576, -0.0485151112, -0.0106919641, -0.0113585936, -0.0122646922, -0.021409817, 0.0352084041, -0.0142386928, -0.0197788384, 0.00546571659, 0.0204131082, -0.0190927926, -0.0624431409, -0.00774067128, 0.000809421181, -0.00419070618, 0.0142386928, -0.0389363542, 0.042120643, 0.00774067128, -0.02909871, 0.0169828776, -0.0508191884, 0.0340951979, -0.0176300909, -0.0197788384, 0.00897037704, 0.021461593, -0.0304708034, -0.0212027077, 0.0504567511, 0.0359073952, -0.0137597555, -0.00589287747, 0.00945578702, -0.0218369775, 0.00554985413, -0.0152095128, -0.0115851182, -0.0319205597, -0.0187562425, 0.0174877048, 0.00224097609, 0.00876326859, -0.0171123203, -0.0193387344, -0.0417840928, 0.015494287, 0.00815488771, 0.0105107445, 0.010717853, 0.0168922674, -0.0189762954, 0.00115851185, -0.0126594929, -0.000110734152, 0.00597054278, -0.0153389554, -0.0159214474, -0.00972761586, -0.026238028, -0.00977292098, 0.0244128872, 0.00659834, -0.00223288592, -0.00852379948, 0.00570842158, -0.019494066, -0.0332149863, -0.00651096599, 0.027571287, 0.0258367565, -0.000193961736, -0.0384962484, 0.00298203528, 0.000557007967, -0.0263674706, -0.0154036768, -0.0078183366, 0.0372536, 0.0206072722, -0.0274677332, -0.0213580392, -0.0224971343, -0.0168016572, -0.00125883, -0.00334285689, -0.0425607488, 0.0460298099, -0.0446577184, 0.0456932597, -0.0129507389, 0.0518547297, -0.00913865212, 0.0399718955, 0.00300468784, -0.053951703, 0.0445541665, -0.00132112415, -0.00629091356, -0.013798588, 0.0482562259, -0.0286586061, 0.0105884103, -0.0308332425, 0.000218434492, -0.00955934078, -0.00748178596, -0.0448389389, -0.000542041147, -0.0182384718, 0.00407744385, 0.0315581225, 0.00708051352, 0.030237807, -0.0253060404, -0.0123811904, 0.0182902478, 0.00179278094, -0.00244484842, 0.0532268248, 0.0035499651, 0.0398165621, 0.0167757701, 0.0140445288, 0.00238983519, 0.0122841084, -0.0249047689, -0.0193646234, 0.0233902894, 0.0204519406, -0.0139927519, -0.0348200761, -0.000655708, 0.0339916423, -0.00787658617, -0.0271311831, -0.00883446168, -0.0252283756, 0.0181608051, 0.0333185419, 0.0471430197, -0.0439069532, -0.0185103, 0.0104913283, -0.00739764841, -0.00431367662, -0.0103748292, -0.000235626096, 0.00389622431, 0.0610451624, 0.0123553025, 0.0101224165, -0.0307296887, -0.0201671664, -0.0687081665, -0.0416805372, 0.021047378, -0.0198694486, 0.027182959, -0.0258367565, 0.030237807, 0.0195717309, 0.00257105497, 0.0255390368, 0.00020184966, -0.0289174914, 0.00332020433, -0.0206978824, 0.00763711706, -0.00498354249, -0.0152354017, -0.0383926928, -0.023351457, -0.0193128455, -0.00528449658, 0.0283997208, 0.0194552317, 0.0499130897, 0.0243869983, 0.0218110885, 0.0454861522, -0.00124831265, 0.0671030805, -0.0255519822, -0.0169569887, 0.0102971643, -0.0133843711, -0.0267687421, 0.0207108259, 0.0245552734, -0.00676337909, -0.0257590897, 0.0358297303, 0.0636340156, -0.0168275461, -0.0331632122, -0.0211379863, -0.00946225878, -0.043984618, -0.0203095544, 0.0263804141, -0.0320500024, 0.0581974201, 0.0249436013, 0.00678926753, 0.0197788384, 0.0188080184, -0.0370982662, -0.0177595336, -9.39976235e-05, -0.00198532688, -0.0258367565, -0.00481850328, 0.0159085039, -0.0162968319, 0.0105366325, 0.0117469216, -0.00900920946, 0.0172029305, 0.0527608283, 0.00285259262, -0.00643653655, 0.0245552734, 0.0105754659, -0.00528773293, 0.00708051352, 0.00825197, 0.00588964112, -0.0203224979, 0.000383069389, -0.0244776085, -0.00824549794, 0.00664688088, 0.0332408771, -0.0105042718, -0.00685398886, 0.0164909959, -0.0463663638, 0.0203872193, 0.0117016165, 0.0212027077, -0.0153648444, -0.0163874421, 0.0504308604, -0.0473242365, -0.0642035604, 0.0017555661, -0.0124588562, -0.0347165242, 0.0222123619, 0.000575210841, 0.0140186409, -0.0207367148, 0.0514664, 0.0189245176, 0.000302369968, 0.017410038, -0.00981175434, -0.00639123144, 0.0186009109, 0.00121757, -0.0167239923, -0.031739343, 0.0196623411, 0.0257979222, -0.0158437826, -0.0014198242, 0.0119216694, 0.00340757822, 0.00834258, -0.0518806204, -0.00130332587, 0.0226006899, 0.00158000947, 0.019545842, -0.0224065259, -0.0107825743, 0.00479261484, -0.0012814824, -0.0189504065, -0.0119799189, 0.0232737903, -0.0161544438, 0.000625774381, -0.00792189129, 0.0196623411, 0.00989589188, -0.0157790612, 0.00660804799, -0.0211638752, -0.0482821129, -0.00229922542, -0.0161673892, 0.0445541665, -0.00461786706, -0.00955286901, -0.0332667641, -0.000989427324, 0.0020646106, 0.0217334237, 0.00542364782, -0.0290210452, 0.0146399653, 0.0438033976, 0.0233255681, -0.00516799837, 0.0118116429, -0.0323347785, -0.00933281612, -0.0196623411, 0.0164909959, 0.00351436832, 0.00617441488, -0.00377325364, 0.0289692674, -0.0323347785, -0.00287848129, -0.0016447308, 0.019740006, 0.0428973, -0.0238562822, 0.00260017952, -0.00514211, -0.00882151723, 0.0460557, 0.0167110488, 0.0384962484, 0.0343799703, -0.00679573976, 0.012633604, 0.0172547065, -0.0139539195, 0.0192481242, 0.00616794312, -0.0171640981, 0.0129960431, 0.0353119597, 0.00749473041, -0.00667924155, 0.0101741934, 0.0172676519, -0.0258626435, 0.0545730256, 0.0204778295, -0.00181219727, 0.0984799787, -0.015688451, 0.00750120217, 0.00736528775, 0.0122905811, 0.00404508319, -0.0207237713, -0.00278463541, 0.0143681355, 0.0265098568, -0.00197723671, 0.0170864314, -0.0332408771, -0.00602879189, 0.0167757701, -0.0121805547, 0.0098182261, 0.0312215704, -0.0111385416, -0.0239339489, -0.00716465153, 0.00705462508, 0.0244128872, -0.00211800565, 0.0300306976, 0.0209438223, 0.0280890577, 0.0179536976, -0.0277007297, -0.019740006, 0.00906098634, 0.00235423842, -0.014523467, -0.0244387742, 0.010814935, 0.0256296471, -0.00101774291, -0.0238821711, -0.0201930553, -0.0022781908, -0.00452402094, -0.0289174914, -0.0141480835, -0.0195587873, -0.00903509837, -0.0542105883, -0.00181543338, -0.0154554546, -0.00889918301, 0.0340175331, 0.0196235087, 0.0164780505, 0.0108278785, -0.0215651486, -0.00293996651, -0.0189892389, 0.0165168848, -0.0212544855, 0.00268917135, 0.0125818271, -0.0169828776, -0.0154295657, 0.00943637, -0.0310662389, 0.00764358928, -0.0139927519, 0.0186268, 0.0235973969, -0.0050515, 0.00271182391, -0.00836846791, 0.00908040255, -0.0110220425, 0.0125235775, 0.00795425195, -0.0287621599, 0.010038279, 0.0162968319, 0.0512334071, 0.0173841491, -0.00997355767, -0.0494988747, 0.00297556329, 0.0224453583, -0.00849791057, -0.0125106331, -0.00951403566, 0.00184455793, 0.00114475854, 0.0152871786, 0.00127743732, -0.00160670711, 0.0207884926, 0.0034593551, -0.0210214891, -0.0135526471, -0.0123164691, 0.0155460639, -0.0221605841, -0.00582492, -0.0127565749, 0.024296388, 0.0304966923, -0.00332020433, 0.0129442662, 0.00718406774, -0.0052327197, 0.00420365063, 0.00442046719, 0.0647731125, 0.00338492566, -0.0106919641, 0.000864838774, -0.000431610388, -0.021073265, -0.0146399653, 0.0171252638, 0.00337521755, -0.0101871379, -0.0188856851, 0.00565340836, -6.29010465e-05, -0.0137468111, -0.0502755307, 0.0316616744, 0.0125882989, -0.00101693394, 0.0130413482, 0.0107955178, 0.0656533167, -0.0151189035, -0.0249824338, -0.00353378477, 0.0599578433, -0.0293575954, -0.00209535309, 0.0173064843, 0.048981104, -0.00845907815, 0.00415187329, 0.0104201343, 0.0173582621, -0.0295388158, 0.0263804141, -0.0217075348, 0.0155848972, 0.010814935, -0.0112356236, 0.0159085039, -0.036735829, 0.00749473041, 0.00606115256, -0.0278042834, -0.0219275877, -0.0355190672, -5.40524234e-05, 0.00548836915, 0.00798014, -0.0099153081, 0.0297977012, 0.0199988913, 0.0442435034, 0.0104783839, -0.00757886795, 0.0164133292, 0.00829727482, -0.00795425195, -0.00718406774, 0.010135361, -0.0328784361, 0.00886035059, 0.000915806857, 0.0125882989, -0.00362439454, 0.00914512388, -0.0235197321, -0.00818077661, 0.00523595558, -0.0207755473, -0.00632651, -0.0153519, -0.032179445, 0.00622619223, 0.0114556756, -0.023157293, 0.0500684232, 0.047505457, 0.0378490351, 0.00633298233, -0.00977292098, 0.0118245874, -0.00792189129, 0.0190669037, 0.0388845764, 0.0135785351, 0.013604424, 0.0399201177, 0.0232349578, 0.0130025158, -0.0452272668, 0.00598672312, -0.0147305755, 0.0187950749, 0.00602555601, 0.00842671748, -0.00385739142, 0.0269758515, 0.00452078506, 0.0242446102, -0.00378296175, -0.00727467751, -0.00670513, 0.0133843711, 0.0152354017, -0.0158308372, 0.0135008702, 0.00548189692, 0.0140704177, 0.0125494665, -0.00026414395, 0.0410333239, 0.0106854923, -0.00359203387, -0.000630223949, 0.00693812687, 0.00031753903, -0.0235715099, 0.00368264387, -0.00408391608, 0.0261085853, 0.0282185, -0.0111967903, -0.0131643191, -0.00197885465, -0.0116174789, -0.00569547713, -0.00359527, -0.00934576057, -0.00078676868, -0.00168760878, -0.00400948664, 0.00660804799, -0.00987647567, 0.0041777622, 0.00253545819, -0.00476025417, -0.0343281962, 0.0223676916, -0.000674315379, 0.0178113114, -0.0385480262, -0.0154813426, 0.0333703198, 0.0334997624, -0.00148535462, -0.0021956712, -0.00644948054, 0.00326842722, 0.00776008796, -0.00365028321, -0.0219405312, 0.00901568122, -0.0084461337, 0.015105959, -0.0314545669, -0.0263804141, 0.00757239573, 0.00409686053, 0.00655303476, 0.00138099142, 0.00858852081, 0.0248659365, -0.0221476406, -0.0205166619, -0.00814194325, 0.008129, -0.00709345797, -0.0107307965, -0.0148859061, -0.0265616346, 0.0276489537, 0.000935223245, -0.00122566021, 0.000545277202, 0.0127630467, -0.0348718539, -0.0130284037, -0.0311956815, -0.00386709953, -0.0242187232, -0.00232349592, 0.0072552613, -0.00310338777, -0.036735829, 0.00625208067, -0.00856263191, -0.0376678146, 0.00316001894, 0.0600096174, -0.00645595277, -0.0492399894, -0.00654009078, -0.0327748843, 0.0495506525, -0.00451431284, -0.00632651, 0.0285809394, 0.0251895431, 0.00838141236, 0.00217949087, -0.040981546, 0.00872443523, -0.00434927363, -0.0303672496, -0.0337845348, -0.00209535309, 0.00397388963, -0.022963129, -0.041732315, -0.0249436013, -0.00787658617, -0.0206072722, -0.000314302975, -0.0104136625, 0.00299659767, 0.000662584614, 0.00476996228, -0.0129701551, 0.0184844118, -0.00965642277, -0.0273124017, -0.0172676519, -0.00486704428, -0.0269758515, -0.0131837353, -0.0160250012, 0.0197529513, -0.00311633223, 0.0247106049, 0.000847849471, -0.0240245592, 0.0018251416, -0.0257073138, 0.00772125507, -0.0319205597, -0.00259047141, -0.00856263191, 0.0130348764, 0.0171899851, 0.00439457828, -0.0076306453, 0.0017798366, -0.0201801118, 0.0138762537, -0.0103683574, -0.0121870264, 0.0178501438, 0.00349495187, 0.00257914513, -0.0178242549, 0.0389363542, -0.00553043792, 0.0115915909, 0.0034108141, -0.00555956224, 0.0237656739, -0.00380885042, -0.029461151, -0.0182643607, -0.028736271, -0.00261312374, -0.0192869566, 0.00096758391, 0.0182255264, -0.00176689238, -0.00737823173, -0.0139150862, 0.0159602799, 0.0287880488, -0.0373312645, 0.0152483461, -0.00143034139, 0.00166819233, -0.0151706804, -0.0132937618, 0.00391564053, -0.00416805362, 0.00783128105, 0.00399654219, 0.025073044, 0.00346259121, 0.0169828776, 0.00383473886, -0.0186268, -0.0562298931, -0.0021228597, -0.0130801816, 0.0112356236, -0.0125041613, 0.0110349869, 0.00927456655, 0.027959615, 0.0133067062, -0.0100706397, 0.00443664752, 0.00772125507, 0.0121870264, 0.0217334237, 0.00308073545, 0.0104136625, 0.0435962901, -0.0155848972, 0.00458874227, -0.0196623411, 0.0235585645, -0.00502561126, 0.0192869566, 0.00493176561, -0.00288495328, 0.0269758515, -0.011759866, -0.0112809278, 0.00133164146, -0.00354672899, 0.000173028442, 0.00416805362, 0.0106790196, -0.000552962883, -0.00995414052, -0.0113780098, -0.00632003788, 0.0561263375, -0.010329525, -0.0223029703, 0.00738470396, -0.0275453981, -0.0188468527, 0.0288398247, 0.0117922267, 0.0118828369, 0.0110997083, 0.0112615116, -0.0139539195, 0.0221088063, -0.00259694341, 0.0239339489, 0.0169699341, -0.00150558, 0.0140445288, -0.0314804576, 0.00774714351, -0.00752709107, 0.0111838458, -0.0186785758, 0.0440105051, -0.019157514, 0.00608056923, -0.0150671257, -0.00198047282, 0.0131772636, -0.00988941919, -0.00598025089, 0.00310662389, -0.00256458274, 0.0127436304, -0.0231184606, 0.0266393, 0.0379784778, -0.00378296175, 0.014743519, 0.0247106049, 0.0281667244, 0.00744942529, -0.0158696715, -0.0119151976, 0.0105042718, -0.00789600238, 0.0130348764, -0.00854968838, -0.0131966798, -0.023739785, 0.00414863741, 0.0142904697, 0.0124135511, -0.00508062448, 0.00810311083, 0.00567606091, 0.000903671607, -0.000123678416, 0.0390399061, 0.000999135547, -0.00660804799, -0.0239210036, 0.00202577771, 0.000204276701, -0.00347877154, -0.00677632354, 0.0365287215, 0.00802544504, 0.00379267, -0.00558545114, -0.00442370307, 0.00579579547, 0.0181090292, -0.000661371101, -0.0272606257, -0.0350530744, -0.023739785, 0.0381079204, 0.0263804141, 0.0255131498, 0.00499001471, 0.0255002044, -0.0266134124, 0.00619706744, -0.0215263143, 0.00270211557, -0.0180054754, -0.0023995433, -0.00188015471, 0.0118181156, -0.0115527576, -0.00704815285, 0.022574801, 0.0158437826, -0.0237009525, 0.0251765978, 0.00323283044, 0.0128924893, 0.00451754918, 0.0375901498, -0.0247753263, -0.00303057628, -0.0144199124, -0.0028396484, 5.31928454e-05, -0.0111320689, -0.0123747187, -0.0289951563, 0.0130284037, 0.0116951447, -0.0256167036, -0.0275195111, -0.0220958628, -0.00876974, 0.0109508494, -0.00151124306, 0.0108796563, -0.0104136625, -0.0453049317, 0.00255972869, 0.0109379049, 0.00298688957, 0.00445282785, 0.0133973155, -0.02065905, -0.0119346138, 0.0222511943, -0.00550454948, -0.0310403518, -0.0105560496, 0.0188080184, -0.000121251374, -0.0089768488, -0.0142645817, -0.0053783427, -0.00174100383, 0.0135914795, 0.0094104819, -0.00258238125, -0.0118957805, -0.0302895829, 0.0235585645, 0.0345870815, -0.0340434201, 0.0287103821, 0.000327449496, 0.0138633093, -0.0274677332, -0.0155848972, 0.00702226441, -0.00499972282, 0.0135655915, 0.0120316958, -0.0171640981, -0.0169958211, 0.00227333675, 0.012633604, 0.00501590315, -0.0103683574, -0.00128552748, 0.0179536976, 0.00768242218, -0.00350466021, -0.00665982487, 0.0256037582, -0.0136173684, 0.0156107852, -0.00948814768, 0.00315516489, -0.00722290063, 0.0059673069, -0.00175233011, 0.00144490378, -0.0153519, -0.00563722802, -0.000149061321, 0.0112356236, 0.0163744967, 0.00264386646, 0.00562752, -0.000937650271, 0.00639446778, 0.0113585936, 0.0174618158, 0.0226783548, 0.00842671748, 0.0068475171, -0.0203224979, 0.00634916266, -0.0104071898, 0.0263933595, 0.00111077982, 0.0163874421, -0.0197529513, -0.0101288883, 0.00677632354, 0.00834258, 0.00526508037, 0.0142257484, 0.038599804, 0.0323865563, 0.032516, -0.0170864314, -0.00383797497, -0.0203095544, -0.0215522032, 0.0343540832, 0.0104330787, 0.0173970945, -0.00987000298, 0.0129377944, -0.00743000908, 0.00113747746, -0.00174747594, -0.00237041875, 0.00574078225, 0.0330078788, -0.0135655915, 0.0171382092, -0.0113456491, -0.017215874, -0.003158401, 0.0419135354, -0.00396418152, 0.0112874005, -0.0170346554, 0.0133455386, 0.00753356284, -0.0100123901, -0.025073044, 0.0108537674, -0.0101871379, -0.0231443476, 0.0173194278, -0.00241572363, -0.00400301442, -0.0102906916, -0.00693812687, 9.45032589e-05, -0.0237915609, 0.00332344044, 0.018575022, 0.00884740613, 0.00757886795, -0.00689282175, 0.00990883633, -0.0298235901, -0.0107372692, -0.040955659, -0.0162968319, -0.0134361489, 0.0129831, -0.00627796911, 0.0157920048, 0.0164521635, 0.0343281962, -0.0260956418, -0.00805133395, 0.00219728914, -0.0112226792, 0.00815488771, -0.0166722145, 0.017604202, -0.00709345797, 0.00288495328, -0.0181090292, -0.00842024572, -0.00415187329, -1.50679352e-05, 0.0167498812, -0.0181219727, -0.010814935, 0.0375124849, -0.0203354433, -0.0255908147, 0.00588640524, -0.0343281962, -0.00560810324, 0.000760880182, -0.00510004116, -0.000584110036, -0.000129543798, -0.0196105633, -0.016659271, 0.0211768206, 0.024296388, -0.0202189442, -0.00777303195, 0.0132549284, -0.0249953791, -0.00601261156, -0.0114427311, 0.0013923177, -0.0161026679, 0.0368652716, -0.0365804955, 0.00843966193, -0.0110608758, -0.00553043792, -0.00327813555, -0.0127695184, 0.00269240746, -0.00713229086, -0.0165168848, 0.024684716, -0.0210344326, 0.00410009641, 0.00355967321, -0.0130154602, -0.00887329504, 0.0194164, -0.0235973969, -0.0245682169, 0.00093198719, 0.0231831819, 0.00316972728, -0.00675690686, 0.046314586, 0.0167369358, -0.00111725205, 0.00745589752, -0.0365287215, 0.0135397026, -0.00101450691, 0.00799308438, -0.0305743571, 0.0202577766, -0.0111579578, -0.00228628097, 0.0023412942, -0.00801897328, 0.0126659647, -0.0228984077, -0.00305970106, -0.0343799703, -0.0448389389, -0.00308073545, -0.0187562425, 0.014911795, -0.00395447342, 0.0187821314, 0.00498354249, 0.0195328984, -0.0391952395, 0.0277007297, -0.00737175951, -0.0018041071, -0.0148859061, -0.00610322179, -0.00272476813, 0.00340757822, 0.000156443595, -0.0189762954, -0.00628767721, 0.00370853231, -0.0129054338, 0.0269499626, 0.00967583898, -0.00760475639, -0.00335256499, 0.022044085, -0.00241895975, 0.00379267, -0.00855616, 0.0126918536, -0.00827138592, -0.0146917421, 0.0213321503, -0.0076888944, -0.0247882698, 0.0305743571, -0.00992178, 0.0118893087, 0.00228466303, -0.0381079204, 0.0122064436, 0.00745589752, 0.00112129713, -0.00874385238, 0.0206202157, 0.037538372, -0.00437839795, 0.030263694, 0.0016447308, 0.0344317481, -0.00455638161, -0.0202836655, 0.0175524261, -0.000115183742, -0.0141480835, 0.0110155707, 0.00913218, 0.00913865212, -0.0223935805, -0.00797366817, -0.00571489381, 0.0121546658, 0.000903671607, 0.0209956, -0.00296100089, 0.00410009641, -0.0109767383, -0.0348200761, -0.0420170873, -0.0316875651, -0.00288495328, 0.0142128048, -0.0387033559, 0.00240439759, 0.0108472956, 0.00835552439, 0.0220311414, -0.0129119055, 0.000557412452, -0.0160638355, 0.0415252075, -0.0034043421, -0.000333112606, 0.00891212747, -0.0179407541, -0.00411951263, -0.0127242142, 0.0282702781, 0.00264872052, 0.00594789, 0.0385480262, 0.0106078265, 0.00521006715, -0.0169569887, -0.0083749406, -0.00332991243, 0.00732645486, 0.00123536843, -0.0270794053, 0.0533821546, -0.0322571136, -0.0178113114, 0.0238821711, -0.0124847451, 0.0147952968, 0.0159732252, -0.00658215955, -0.00388004398, 0.0420947559, -0.0130607644, 0.0283738319, 0.0192481242, 0.00933281612, 0.0185103, -0.000230772, -0.00714523485, 0.00966289453, 0.0114815645, 0.00480555883, -0.00342052244, 0.00169893494, 0.0162968319, 0.0152742341, 0.000544468232, -0.00249500736, 0.0220311414, -0.00290760584, 0.00498677883, -0.0178501438, 0.00738470396, -0.00534921791, 0.0015864817, -0.000970011, 0.00488646049, 0.00761770085, 0.000289627962, -0.00304513867, 0.0186138544, -0.0133067062, -0.0134879258, -0.0108537674, -0.0116110072, 0.0235844534, -0.0186526887, 0.0177854225, 0.00521977525, -0.00314222067, 0.00821960904, -0.0206719935, -0.00443017529, -0.00312927645, 0.00535245426, -0.00538481493, -0.000740250223, -0.0207755473, -0.00735234329, -3.28663e-05, -0.00616470678, -0.0103165805, -0.0149506275, 0.00870501902, 0.0330078788, -0.0108472956, -0.0170864314, 0.0116757285, 0.00316325505, -0.00479585072, 0.0116886729, -0.00437192619, 0.0181737505, -0.00429749629, 0.0185361896, -3.20762456e-06, 0.0304966923, 0.0208661575, -0.000310662406, 0.00444959151, 0.00514534581, 0.0144716902, 0.0246070512, 0.0052812607, 0.00123941351, -0.00243352214, -0.0129442662, -0.00324901077, 0.0161285568, -0.00475701783, -0.0125171058, -0.00430720486, 0.0125494665, 0.0034108141, -0.0136173684, 0.00334609277, -0.00225068443, -0.00983117055, 0.0167110488, -0.00542041147, -0.00861441, 0.00702873664, -0.000504421885, -0.00667276932, 0.023351457, -0.00378943398, 0.000296302343, -0.0157790612, -0.00138018245, 0.0124976896, 0.00468906062, 0.0226524659, -0.00309044356, 0.0271570701, -0.0276489537, 0.0121611385, -0.0228077974, -0.00955286901, 0.0198953375, 0.0152871786, -0.0330596566, -0.00982469786, 0.00276036491, -0.00997355767, -0.00799955707, -0.0133843711, 0.0125106331, 0.0110285152, 0.000523433788, 0.0041874703, 0.010912017, -0.00767595, 0.0228077974, -0.000505230913, 0.0115527576, 0.0067245462, 0.00258561713, 0.0396612324, 0.00241410569, -0.00915159658, -0.00739117619, 0.00217787293, -0.0183031932, -0.0126530202, 0.00896390434, -0.00242057792, 0.00850438327, 0.00602555601, 0.0256684795, -0.0135397026, 0.0113197612, 0.0230925716, -0.00909982, 0.0203872193, 0.0149635719, 0.011371538, -0.0151965693, 0.0146011328, 0.0105431052, -0.00131869712, 0.0023510023, -0.00228304509, -0.00926162302, -0.000485409983, -0.00875032414, 0.00422306685, -0.0152224572, -0.00687987776, -0.00147241028, 0.0124588562, -0.00697048753, 0.0150153488, -0.0159343928, -0.0180960838, -0.0050773886, -0.00338816177, 0.00117954623, 0.00313574844, 0.00513887359, 0.0153260119, 0.00650773, 0.00304675661, -0.00404831953, 0.019908281, -0.00410009641, -0.0324642211, 0.00518741459, -0.0202836655, 0.0114556756, -0.0245293844, -0.0198306162, 0.00240439759, -0.00602232, -0.0065789232, 0.0226912983, -0.000987809384, -0.0427419692, 0.00970172789, 0.0108019905, -0.0232608467, -0.0250212662, 0.00239630742, -0.0115980627, -0.0018251416, -0.0194164, 0.00176689238, -0.0297459234, -0.0145881884, -0.0240763351, 0.00545924436, -0.000470443192, -0.0036470471, -8.78288702e-05, 3.26893278e-05, -0.0273641795, 0.0117275054, 0.0166463275, 0.0152354017, 0.00460168673, -0.0106013538, -0.00326357316, -0.0117663378, -0.00068847317, 0.00646242499, -0.00476349, -0.0117533943, -0.00051979319, -0.00667924155, 0.021409817, -0.0169181563, 0.00859499257, -0.015494287, -0.0143681355, -0.00177498255, -0.0113780098, -0.0158437826, -0.0173841491, -0.00427484419, -0.00178954483, -0.0150153488, -0.020684937, 0.027959615, 0.00680221198, 0.0135655915, -0.0163356643, 0.00428131595, -0.0287103821, 0.0165816061, -0.00739764841, -0.0120899444, 0.00171511527, -0.00177660061, 0.00247073686, 0.018769186, 0.0171252638, -0.0201671664, -0.0124006076, 0.0201412793, 0.0270276275, 0.00248044496, 0.00731998263, 0.00239307131, -0.00513563771, 0.000401676778, -0.0103489412, -0.0111709023, 0.00914512388, 0.0120640565, 4.0324423e-05, 0.00445929961, 0.0138115324, -0.00945578702, -0.0139539195, -0.00650125789, 0.00755945174, 0.0183290821, 0.00215036632, -0.00127258315, 0.0104330787, -0.0064235921, -0.0108278785, -0.000433632929, -0.00627473323, 0.00914512388, -0.00182352355, -0.00306617306, -0.00807075, 0.0051744706, 0.00865324214, 0.0163874421, -0.0140315844, 0.0287621599, 0.0110349869, -0.00220214343, 0.0324901082, -0.00407097163, -0.0150930146, -0.0123553025, -0.0385739133, -0.0247882698, 0.00416805362, 0.0118763642, -0.0100059183, -0.00600937568, -0.000196388792, -0.010103, -0.0112550398, -0.00271505979, 0.0164262746, 0.0168793239, 0.0212027077, -0.00673101842, -0.00832963549, -0.00322312233, -0.00582815614, -0.0179148652, -0.00917748455, 0.00504502794, -0.0253060404, 0.0223547481, -0.000983764301, -0.0093134, 0.040412, 0.00977292098, -0.00827138592, -1.12187854e-05, 0.0206978824, -0.0256943684, 0.000876165053, -0.000874547, -0.00958523, 0.00188500877, 0.015882615, 0.0102453865, 0.0210344326, -0.0152871786, -0.00442046719, -0.00456609, -0.0199988913, 0.00280405162, 0.0116110072, -0.015688451, 0.00827785861, -0.0129313217, -0.0256296471, 0.00673749065, 0.0130931251, -0.00537187047, -0.00488646049, 0.0134620368, -0.00509356894, -0.00239145313, -0.00041866611, 0.018186694, 0.00794777926, 0.0269499626, -0.0205554944, 0.0102130258, -0.030263694, 0.0105819376, 0.0176559798, 0.0115980627, -0.0202318877, 0.00757886795, 0.00880210102, 0.0273900684, -0.00810311083, -0.00786364172, 0.00018587157, -0.00659510354, 0.00246750074, 0.00191575149, -0.0453049317, -0.0184326358, 0.0127436304, -0.00959170144, 0.00560810324, 0.000893154356, 0.00978586543, -0.0044981325, 0.00940400921, -0.0283738319, 0.0177465901, 0.0131643191, -0.0074688415, 0.0214874819, 0.000180208459, 0.00306617306, 0.0161544438, -0.00856263191, -0.00221023359, -0.00649802154, -0.0243611094, 0.00265357457, -0.0124912169, 0.0069057662, -0.0183290821, -0.0021956712, 0.00420041429, 0.0310144629, 0.0160638355, 0.0135267582, 0.011009099, -0.0147046866, -0.0116822, -0.0215910356, -0.00996061321, 0.00299336156, -0.0153389554, 0.0301601402, -0.0251507089, 0.00241086958, -0.00083733222, 0.00220376137, 0.035182517, -0.0107113803, -0.0115980627, 0.0261215288, -0.0100447508, -0.0157013945, -0.00302086817, -0.00263092224, -0.0136820897, -0.034121085, -0.00558868703, -0.0106272427, -0.00410980452, 0.0341987535, 0.0184973571, 0.0103424685, -0.00419394253, 6.11313226e-05, 0.00726820575, 0.00957228523, 0.0121676102, 0.00608704146, 0.0185879674, -0.0130025158, -0.00232996792, 0.000471656705, -0.0111385416, 0.00169731688, 0.0153648444, -0.00886682235, -0.0144328568, -0.0191963464, 0.01341026, -0.0397388972, -0.0184585247, -0.0138374204, -0.00624237256, 0.0219664201, -0.00802544504, 0.0253707618, -0.0221476406, 0.0143940244, -0.0111709023, -0.0165039394, -0.0138762537, -0.0308332425, 0.00343670277, 0.0171899851, 0.000643168227, 0.00402566697, 0.0209826566, -0.00288657146, -0.0143163586, 0.00698343152, -0.00614852645, -0.0121287778, -0.00403861096, 0.0162191652, -0.0146787977, 0.00664040865, 0.00171349721, -0.0140833622, 0.00707404176, -0.0266651884, -0.00313089439, 0.00934576057, -0.0279855039, -0.00371176843, -0.00104524952, 0.00386062753, 0.0133714275, 0.00368911587, -0.00537510682, 0.0230537392, -0.00766947772, -0.0268981848, 0.00375060108, -0.0146270208, -0.00162693253, -0.0130413482, -0.0101159438, -0.00013257761, 0.0259662, -0.00845260639, 0.00336874533, -0.0144199124, 0.0106984358, -0.00402890285, -0.0112356236, -0.00915806834, -0.00713876309, 0.00130170782, 0.0103101078, 0.00532009359, -0.00857557636, -0.00652714632, -0.0380302556, -0.00546248024, 0.00957875699, -0.0199471153, -0.00749473041, -0.0059090578, 0.00382503076, 0.0169958211, 0.00205166615, 0.0179407541, -0.01195403, 0.0115980627, 0.0137856435, 0.0142257484, 0.0152224572, -0.0107113803, -0.0161026679, -0.003061319, 0.0103618857, 0.0259014778, -0.00595112657, -0.0379525907, -0.0257590897, 0.0170734879, 0.0244387742, -0.00432338519, 0.00202415977, 0.000484600983, 0.00185588421, 0.00658863178, -0.00227333675, -0.0262250844, 0.0208402686, 0.00511945738, 0.0143681355, -0.00480232295, -0.00458550639, 0.0179407541, 0.0162838865, 0.0087567959, 0.00702226441, -0.0042360113, 0.0169958211, -0.00153146847, 0.00788305793, 0.00376354554, 0.00954639632, 0.0299530327, -0.0265098568, -0.00726820575, -0.022238249, -0.00309044356, 0.00637181522, -0.0133325942, -0.00333314855, -0.00964995101, -0.00165686605, -0.0127501022, 0.0016762825, 0.00374089298, 0.000318752573, 0.0121417223, 0.0123099973, -0.00963700656, -0.00461786706, -0.00084299536, 0.00988941919, -0.0110220425, 0.000273043115, -0.0130542926, 0.0115462858, 0.0196364522, 0.00135186687, 0.00641064811, 0.00186235632, -0.0218110885, -0.0106725479, 0.0199471153, -0.00280405162, 0.0124782724, 0.00943637, -0.0117922267, -0.00172805961, 0.0139150862, 0.0179666411, 0.0043428014, -0.00490264082, -0.00143924064, -0.00894448813, -0.00985058676, 0.00148697256, 0.0164392181, 0.0117986985, -0.00733939884, 0.00622295588, -0.00619706744, -0.00221832376, 0.00897037704, -0.00538805081, 0.0185620785, 0.0170217101, -0.0179795865, -0.0164909959, -0.0234291218, 0.00536863459, -0.0365028307, -0.00454343762, 0.00529096881, 0.00518741459, -0.00274580251, -0.0147823524, -0.0267169662, -0.0219793636, 0.00472465716, -0.0356226228, 0.00322635844, -0.0104719112, 0.0213839281, 0.0164909959, -0.000144207224, 0.0199212264, 0.00889271125, 0.00905451458, -0.00171996944, -0.0129442662, -0.0178371985, 0.00233320403, -0.00630709389, 0.00620030379, 0.035570845, 0.0251377653, -0.0110479314, -0.00220699748, -0.0079413075, 0.00542041147, -0.000488241552, 0.0286068283, 0.00111401593, 0.00793483574, 0.00992178, 0.0122517478, -0.0207367148, -0.0242316667, -0.0139409751, 0.0213321503, 0.0162968319, -0.0107761016, -0.0115398131, -0.00982469786, -0.016465107, -0.00560486736, -0.000875356, 0.0214357059, 0.000798499444, -0.020206, -0.0054463, 0.0038023782, 0.00162531447, -0.033344429, 0.00769536663, 0.00998650119, 0.026794631, -0.00980528165, 0.0126594929, -0.00109702663, -0.0102130258, 0.00922279, 0.029487038, -0.0118698925, 0.0153389554, -0.00244646636, -0.0119281411, 0.00264710258, -0.0039577093, -0.00221023359, -0.0050676805, 0.00440105051, 0.00896390434, -0.0113132885, 0.0255519822, 0.0146658542, 0.0125818271, -0.000467207108, -0.0135655915, 0.00503532, 0.0201412793, 0.00361792254, 0.0035014241, -0.0103165805, -0.00355320121, 0.0228207409, 0.00301763206, 0.0161803328, -0.00868560281, 0.013119014, -0.0100512225, 0.00939753745, 0.0187303536, -0.0134361489, -0.0227301326, -0.00744942529, -0.0133714275, -0.0044398834, -0.0211379863, -0.0203095544, -0.00378943398, 0.0115333414, -0.0266910773, -0.0166981034, 0.00766947772, 0.024296388, 0.00347229955, 0.00636210712, 0.0078442255, 0.000506444427, 0.0209308788, 0.00226362864, -0.000327449496, -0.0119475583, 0.0137079777, 0.021241542, -0.00323606655, -0.00676985132, 0.0163356643, 0.000773015432, 0.0179536976, -0.0209049899, -0.000626987894, 0.00884740613, 0.0199341699, -0.00540746748, 0.0135785351, 0.00610969355, 0.0100771114, -0.00993472431, -0.00968231168, -0.00515505392, -0.0196105633, 0.000499972317, 0.0161156114, 0.0183290821, 0.00766300596, -0.00251927786, 0.0170734879, 0.00134296762, -0.0203742757, -0.00635239854, -0.0023267318, -0.00860793702, 0.00851085503, -1.90245319e-05, -0.00889918301, -0.00864029769, 0.0234161783, 0.00726173352, 0.0019254596, 0.00158000947, -0.00143843156, -0.000595436257, -0.00749473041, -0.0069057662, -0.00110997085, 0.0182773042, 0.00193516782, 0.00850438327, 0.00597054278, -0.0247623809, -0.0144199124, 0.00818077661, -0.0123617742, -0.0146140764, 0.0343281962, -0.00544953626, -0.00165363, -0.00977939367, -0.00752709107, -0.00257752696, 0.0104201343, 0.00992825255, -0.013798588, -0.0207626037, -0.00641064811, -0.0060643889, -0.00992178, 0.00585728046, 0.00470847683, 0.00455638161, 0.00743000908, 0.00283641228, 0.0185620785, -0.0139539195, -0.0180572513, 0.00031753903, -1.79184542e-06, 0.00758534, 0.0122064436, 0.0140315844, 0.00813547149, -0.00465022773, -0.00443664752, 0.00556927081, -0.00478290627, 0.0151189035, 0.0304449145, -0.0125171058, 0.0259273648, 0.0115333414, -0.0268722977, -0.00477319816, -0.00884093437, 0.00160023489, 0.00102421513, -0.0253448728, -0.011759866, -0.014937683, 1.1161902e-05, 0.0129960431, -0.000666629698, 0.0154425101, -0.00705462508, -0.017047599, -0.00895743258, 0.00335256499, 0.00230407948, -0.00783775374, -0.0123229418, 0.0187303536, -0.0143810799, -0.0152354017, 0.0242057778, -0.00769536663, -0.0113585936, 0.00512916548, 8.92952157e-05, -0.00712581864, 0.00592200179, 0.00717759551, 0.0194552317, 0.0110414596, 0.00616794312, -0.0112615116, -0.0145622995, 0.000696563337, 0.00408391608, -0.0114492038, 0.0176171474, -0.0122129153, -0.0016204603, 0.00800602883, 0.0195070095, -0.00454020128, -0.00167142844, -0.0115462858, -0.00499972282, 0.0102906916, -0.000524647301, -0.0133067062, -0.00111401593, 0.00646242499, -0.0167369358, -0.00425219163, 0.00530067692, 0.0104071898, 0.0119151976, -0.0142516373, 0.0118181156, -0.0171252638, 0.0097211441, -0.0104395505, 0.0241669454, 0.026406303, -0.00601261156, -0.009844115, 0.00209211698, -0.0249047689, -0.00135267584, -0.00858204905, 0.019908281, -0.00211962359, -0.0147823524, -0.0136691453, 0.00515181804, -0.0263545271, 0.00688634953, 0.00321179605, -0.0150412377, 0.020206, -0.00737823173, 0.0199471153, -0.0187562425, -0.0105948821, 0.00442370307, -0.0024658828, 0.0138891982, -0.0234032329, 0.00577637879, 0.00788305793, 0.0112485671, 0.0107437409, 0.0143422475, -0.0101806652, -0.00719054, 0.0154683981, 0.00119653565, 0.00709993, 0.00832963549, 0.00937812123, 0.0083749406, -0.0365028307, -0.0157143399, 0.0124782724, 0.000222277318, -0.0128471842, 0.0285032745, 0.00112372416, -0.0169699341, -0.00248853513, 0.003158401, 0.0149894608, -0.00920337345, 0.00589934923, 0.0102648037, -0.0123553025, 0.0129377944, -0.00605144445, -0.00962406211, 0.020853214, 0.00833610725, -0.0162450541, 0.00175233011, 0.00717759551, 0.0141998604, -0.00937812123, 0.00391564053, 0.0023024613, -0.00487998826, -0.0141221946, -0.0198953375, -0.00992825255, -0.0273382906, -0.00954639632, -0.0013470127, -0.000557007967, -0.000594222744, 0.000485409983, 0.00774714351, -0.0044981325, -0.0161415, -0.00552396569, -0.022380637, -0.0048961686, 0.0130995978, 0.00480232295, -0.0165427718, -0.0056404639, 0.00983117055, 0.0182255264, 0.0137726991, -0.000414216513, -0.0220052525, -0.0139280306, -0.00145218486, 0.026406303, -0.0245682169, -0.0217075348, 0.000466802594, 0.00728114974, 0.0205037184, -0.011106181, -0.00140526192, -0.0341987535, 0.0136562008, -0.0529420488, 0.00368587975, -0.0150800701, 0.00809016638, -0.00355967321, 0.0157272834, -0.0247494373, -0.0122841084, 0.0309626851, 0.00292702229, -0.0021131516, 0.0189892389, -0.0171123203, 0.00624884479, 0.000485409983, -0.00463404739, 0.0253578182, 0.000488241552, -0.0102259703, -0.00633945456, 0.000618897728, -0.0314027891, 0.0249565449, -0.00605144445, -0.00643977243, 0.00129604468, 0.00302410428, -0.00891859923, 0.0176948123, 0.00195134815, -0.00798014, -0.00556279859, 0.00988941919, 0.000740250223, -0.00551425759, 0.0052715526, -0.00787011441, -0.00561133958, 0.00988294743, 0.00256620091, -0.00534598203, -0.020102445, 0.000387114473, 0.0135138137, -0.0111838458, 0.00253707613, 0.0155719528, -0.000120947989, 0.00468906062, 0.00556603447, -0.00723584509, -0.00433956552, -0.0147694079, 0.0113391774, 0.00115851185, -0.0182255264, 0.0083490517, 0.00739764841, 0.013966863, 0.000826006, -0.0131384302, -0.0192222353, -0.00407744385, 0.00455314573, 0.0185620785, 0.0201412793, -0.0340693109, 0.00660157576, -0.00617765123, 0.0119605018, -0.0236491747, 0.0300306976, 0.0126465484, -0.00525213592, 0.00422306685, 0.0105948821, 0.00377648976, -0.0159991141, 0.00252736802, 0.0102130258, -0.000336753175, -0.000344438828, 0.0334997624, 0.0039577093, 0.0107049085, -0.0122064436, -0.0198565051, 0.00996061321, -0.00178792677, 0.0278042834, -0.00908687524, -0.0100512225, -0.00871149171, -0.0107243247, 0.00320046977, 0.00147726445, 0.00324577489, -0.00549160503, 0.00408391608, -0.00726820575, 0.0180054754, 0.0327489935, -0.00940400921, -0.00848496705, 0.0569547713, 0.0115268696, -0.0120058069, -0.0123229418, -0.0456155948, 0.00797366817, -0.0169569887, 0.0174747594, 0.0133843711, -0.0120252231, 0.00317458133, 0.0168922674, -0.0011601299, -0.0230278503, -0.00392534863, -0.0161156114, 0.0037473652, -0.03937646, -0.02065905, 0.0112097347, -0.010329525, 0.00838788506, 0.0130995978, 0.000660157588, -0.00214874814, -0.00614529056, 0.00524566416, 0.00658539543, 0.0202448331, -0.0050288476, 0.00573431, -0.00197885465, -0.0163097754, -0.00874385238, 0.0100900559, -0.0097211441, 0.0140574733, -0.0199988913, 0.00819372106, -0.003255483, -0.0287103821, -0.0161415, -0.0141739715, -0.0125494665, 0.00190604327, -0.0222253054, -0.00751414662, -0.00554014603, 0.0257202573, 0.00749473041, -0.00660481211, 0.00909982, 0.000310662406, -0.00547218882, 0.00679573976, 0.0069445991, 0.00827785861, 0.0113909543, 0.021267429, -0.0154166212, -0.0084720226, 0.00216978276, 0.00110268965, 0.0235197321, -0.0135008702, -0.00574725447, -0.0087567959, 0.000636696117, -0.00499001471, 0.024684716, 0.0148082403, -0.00960464589, 0.00680868421, -0.00556927081, -4.65943e-05, -0.0206978824, -0.00203063176, 0.0117533943, -0.0141092502, 0.00693812687, 0.00723584509, -0.0134749813, 0.00924867857, 0.0102389148, -0.00467288028, -0.00392211275, 0.00374089298, -0.0234291218, -0.0128924893, -0.00148616359, 0.00222803187, 0.0232479032, -0.00181705144, 0.0178760327, -0.010620771, 0.00536863459, -0.0132549284, 3.92373076e-05, -0.0150282932, 0.00589611335, 0.0130607644, -0.00612587389, -0.036735829, 0.00562752, 0.00752709107, -0.00853674393, -0.00437839795, 0.00930045545, 0.0201930553, 0.00295129279, 0.00467288028, 0.00506444415, -0.0269240737, -0.00761770085, 0.0283220541, -0.0177336447, -0.0117922267, -0.00299497973, 0.0236621182, 0.014549355, 0.0180054754, -0.0188080184, 0.010258331, 0.0195199531, -0.0123099973, -0.00088425522, 0.00831669103, 0.00128714554, 0.0125559382, -0.0258755889, -0.0079413075, 0.0296423696, 0.00322474027, 0.0277525075, 0.000826815, 0.0130413482, 0.0326454416, 0.00360497809, -0.00345611922, -0.0142516373, -0.00588964112, 0.0212027077, 0.0272088479, 0.00628767721, 0.0369688235, -0.000524242816, 0.0109314332, 0.000989427324, 0.00169408089, 0.00449166028, 0.00560163148, -0.0124070793, -0.00827785861, 0.00147888239, -0.00551749347, 0.00368264387, -0.00843318924, 0.00696401531, -0.0183420256, -0.00272476813, -0.00530067692, -0.0274936222, -0.00797366817, -0.00891212747, -0.000528692384, -0.00184779405, 0.0155460639, 0.0206202157, -0.00174100383, 0.00299821561, 0.014355191, 0.0067245462, -0.0221605841, -0.0108214067, -0.00457903417, 0.0192610677, -0.00574725447, -0.0179148652, -0.0133714275, -0.00224583014, 0.0191316251, 0.000777869485, -0.00343993888, -0.013798588, -0.0211509317, -0.0109832101, -0.0209697112, -0.0135785351, 0.00383150298, 0.00852379948, -0.0250342116, -0.0330855437, 0.00143519556, -0.0123229418, 0.0121028889, -0.00580550358, -0.00777303195, -0.000147948915, -0.0167369358, -0.00145623, -0.00983764231, 0.00996708497, -0.0164909959, -0.0211379863, -0.0111450134, -0.0185620785, -0.00282346806, 0.022432413, -0.00259047141, -0.0171252638, 0.000468016136, -0.00663393643, -0.0123811904, -0.0266134124, -0.00270696962, -0.0151965693, -0.00963700656, -0.064721331, 0.00399330631, 0.029849479, -0.00514534581, -0.0233644, -0.00257267291, 0.0152612906, 0.0270535164, -0.00776655972, -0.00178145466, 0.0252024867, -0.00557897892, -0.0233773459, -0.000645190768, 0.00347553543, -0.0116368951, -0.0084461337, -0.01896335, -0.0158308372, 0.0131707909, -0.00641064811, -0.0173453167, -0.00476996228, -0.0028396484, -0.00783775374, -0.0125882989, 0.0231184606, -0.0138374204, 0.0135138137, -0.000917424855, -0.0126853809, 0.00649802154, 0.010161249, -0.00289789774, -0.00649478566, -0.029461151, -0.0188209638, -0.00807075, -0.00543982815, -0.0145364115, -0.0210991539, -0.00169246283, -0.0105172163, -0.0175265372, -0.00261959597, 0.017410038, -0.0312992372, -0.0181608051, 0.00194487604, -0.0291504879, 0.00136157498, -0.00943637, 0.0616147071, 0.0323865563, 0.0171770416, -0.0196105633, 0.00745589752, 0.00317943539, 0.0186009109, 0.0280890577, -9.66774896e-05, 0.00614529056, 0.00481203105, -0.0033137321, -0.0283997208, -0.00359203387, -0.027959615, 0.00917748455, -0.00915159658, 0.0133584831, 0.00671807444, 0.00279434351, 0.00391240465, -0.000914997829, 0.00421659462, -0.00953992456, -0.0115527576, 0.00807722192, -0.00821960904, 0.00319885183, -0.000521006703, -0.00102906919, 0.00102826022, -0.00820019282, 0.00481203105, 0.00461786706, -0.0208661575, 0.0154813426, -0.00491558528, 0.0260697529, -0.00922279, -0.0139798075, 0.00116093887, 0.0195717309, 0.0149894608, -0.00736528775, 0.0106337145, 0.0183290821, 0.0113585936, -0.017604202, 0.0146787977, 0.00656274287, -0.00477967039, -0.00489293272, 0.010329525, 0.0108084623, -0.0136173684, 0.0230796263, 0.00600614, 0.000663798186, -0.00278301723, -0.00618088711, 0.0148729617, -0.0168793239, 0.00409362419, 0.0120899444, -0.00333314855, -0.029072823, 0.00476349, 0.00110349874, -0.0168663785, 0.0124264956, 0.0380820334, -0.0185620785, 0.0202577766, -0.00297070923, 0.0185491331, 0.0168016572, -0.0309626851, 0.0100900559, -0.000541232119, -0.0177724771, -0.00912570767, 0.0254743155, -0.0266134124, -0.018186694, 0.0126853809, 0.0128018791, -0.00229437114, 0.0106790196, -0.00213580392, 0.0350271836, -0.00365351909, 0.00893801637, -0.00522948382, 0.0025451663, -0.011106181, 0.0215780921, 0.00955286901, -0.0101483045, 0.00909334701, 0.024684716, 0.018523246, 0.0138115324, -0.000650853908, 0.0133067062, -0.00175880222, 0.0238692276, -0.0207108259, 0.00810958259, 0.0204001646, -0.00088506419, -0.00376354554, 0.00851085503, 0.00140121684, 0.0156755075, 0.0130348764, -0.00659186766, 0.00843318924, 0.00371500454, 0.00867913105, 0.00498677883, -0.00465346361, 0.00441723084, -0.0135138137, -0.024102224, 0.00140607089, 0.0063750511, -0.0138891982, 0.00239792536, 0.00365351909, 0.0257590897, 0.00280728773, -0.0123747187, 0.00561781181, 0.014743519, 0.0309367962, 0.0089056557, -0.0108084623, 0.0103683574, 0.00107680121, -0.0159085039, 0.0130413482, -0.0023024613, 0.0297977012, 0.0141092502, -0.0107307965, -0.00133083237, -0.0122970529, -0.0190151278, 0.0505085289, 0.00800602883, -0.0178760327, 0.00635887077, -0.0110867638, 0.00965642277, 0.00302572222, 0.0281667244, -0.00739117619, -0.0217722561, 0.0158696715, -0.00269726152, -0.0046437555, 0.0105819376, 0.0187562425, -0.0146011328, 0.00305322884, -0.0209308788, 0.00445282785, 0.00528773293, -0.00351113221, 0.01146862, 0.0136950342, 0.00579579547, 0.015882615, 0.00861441, -0.000594627229, -0.0041292212, -0.0110608758, 0.00704168109, 0.00942342635, -0.0110997083, -0.00876974, 0.0101418328, 0.00303866644, 0.0337586477, 0.009844115, 0.000132779853, -0.00141092506, -0.0122193871, 0.0054268837, 0.016659271, 0.0239857249, -0.0185361896, -0.0228207409, 0.00223612203, -0.0104071898, -0.0176818687, 0.0104201343, -0.00681515643, 0.0137726991, 0.0114233149, 0.0100965276, -0.00240763347, -0.0041777622, 0.00019628767, 0.00197885465, 0.00850438327, 0.0106142983, 0.016659271, -0.00649478566, -0.0174747594, -0.0202836655]
24 Feb, 2021
Select Pandas dataframe rows between two dates 24 Feb, 2021 Prerequisites: pandas Pandas is an open-source library that is built on top of NumPy library. It is a Python package that offers various data structures and operations for manipulating numerical data and time series. It is mainly popular for importing and analyzing data much easier. Pandas is fast and it has high-performance & productivity for users. This article focuses on getting selected pandas data frame rows between two dates. We can do this by using a filter. Dates can be represented initially in several ways : string np.datetime64 datetime.datetime To manipulate dates in pandas, we use the pd.to_datetime() function in pandas to convert different date representations to datetime64[ns] format. Syntax: pandas.to_datetime(arg, errors=’raise’, dayfirst=False, yearfirst=False, utc=None, box=True, format=None, exact=True, unit=None, infer_datetime_format=False, origin=’unix’, cache=False) Parameters: arg: An integer, string, float, list or dict object to convert in to Date time object. dayfirst: Boolean value, places day first if True. yearfirst: Boolean value, places year first if True. utc: Boolean value, Returns time in UTC if True. format: String input to tell position of day, month and year. Approach Import module Create or load data Create dataframe Convert the dates column to datetime64[ns] data type Define a start date and end date. Use a filter to display the updated dataframe and store it. Display dataframe Example: Original dataframe Python3 import pandas as pd data = {'Name': ['Tani', 'Saumya', 'Ganesh', 'Kirti'], 'Articles': [5, 3, 4, 3], 'Location': ['Kanpur', 'Kolkata', 'Kolkata', 'Bombay'], 'Dates': ['2020-08-04', '2020-08-07', '2020-08-08', '2020-06-08']} # Create DataFrame df = pd.DataFrame(data) display(df) Output: Example: Selecting data frame rows between two rows Python3 import pandas as pd data = {'Name': ['Tani', 'Saumya', 'Ganesh', 'Kirti'], 'Articles': [5, 3, 4, 3], 'Location': ['Kanpur', 'Kolkata', 'Kolkata', 'Bombay'], 'Dates': ['2020-08-04', '2020-08-07', '2020-08-08', '2020-06-08']} # Create DataFrame df = pd.DataFrame(data) start_date = '2020-08-05' end_date = '2020-08-08' mask = (df['Dates'] > start_date) & (df['Dates'] <= end_date) df = df.loc[mask] display(df) 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 !!/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/Duration parse(CharSequence) method in Java with Examples/Duration toDays() method in Java with Examples/Duration toNanosPart() method in Java with Examples/Duration ofNanos(long) method in Java with Examples/Duration minusDays(long) method in Java with Examples/Duration plusMinutes(long) method in Java with Examples/Duration plusHours(long) method in Java with Examples/Spring Boot Interview Questions and Answers/Spring Boot – Starter Parent/Spring Boot – Hello World/Spring Boot with H2 Database/Spring Boot – Spring Data JPA/Spring Boot – MongoRepository with Example/Multi-Module Project With Spring Boot/Spring Boot – Packaging/Spring Boot – Auto-configuration/How to Implement AOP in Spring Boot Application?/Spring Boot – File Handling/How to Test Spring Boot Project using ZeroCode?/Spring Boot – Map Entity to DTO using ModelMapper/Containerizing Spring Boot Application/Best Practices For Structuring Spring Boot Application/How to Create a REST API using Java Spring Boot?/Different kinds of HTTP requests/HTTP headers | Upgrade-Insecure-Requests/How to secure HTTP requests ?/How to send HTTP response code in PHP?/State the core components of an HTTP response ?/Components of Search Engine/Difference between Crawling and Indexing in Search Engine Optimization (SEO)/What is a Search Algorithm in SEO: Understanding Its Role/Keyword Searching Algorithms For Search Engines/What is a Webcrawler and where is it used?/Python | Parse a website with regex and urllib/Launch Website URL shortcut using Python/How to list tables using SQLite3 in Python ?/Difference between MySQL and SQLite/Difference between Neo4j and MySQL/Difference between NoSQL and NewSQL/Data Visualisation in Python using Matplotlib and Seaborn/How to install MySQL Connector Package in Python/Boutique Management System using Python-MySQL Connectivity/SQL CREATE TABLE/Recursive Join in SQL/How to Get Current Date and Time in SQL?/NULL values in SQL/Best Practices For SQL Query Optimizations/SQL Performance Tuning/Clustering Indexing in Databases/ISAM in Database/SQL - Show Databases/How to Check MySQL Database/How to Get Database Size in SQL/Delete Database in MS SQL Server/How to Import and Export SQL Server Database?/How to Import JSON Data into SQL Server?/How to Export Data From SQL Server to Flat File in SSIS?/How To Export and Import a .SQL File From Command Line With Options?/How To Connect and run SQL Queries to a PostgreSQL Database from Python/How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?/How to Convert a List to a DataFrame Row in Python?/Create a list from rows in Pandas DataFrame | Set 2/Display the Pandas DataFrame in Heatmap style/How to sum negative and positive values using GroupBy in Pandas?/Pandas – Groupby value counts on the DataFrame/How to count unique values in a Pandas Groupby object?/How to Add Group-Level Summary Statistic as a New Column in Pandas?/Find the profit and loss in the given Excel sheet using Pandas/Prevent duplicated columns when joining two Pandas DataFrames/How to Merge DataFrames of different length in Pandas ?/Join Pandas DataFrames matching by substring/Merge two Pandas DataFrames based on closest DateTime/Merge two Pandas DataFrames on certain columns/Merge two Pandas dataframes by matched ID number/Merge two dataframes with same column names/Drop specific rows from multiindex Pandas Dataframe/Select rows that contain specific text using Pandas/Select Pandas dataframe rows between two dates
https://www.geeksforgeeks.org/select-pandas-dataframe-rows-between-two-dates/?ref=next_article
Pandas
Select Pandas dataframe rows between two dates
memcpy() in C, C++, Python | Pandas Series.to_sparse(), How to Create a REST API using Java Spring Boot?, How to list tables using SQLite3 in Python ?, Find Maximum and Minimum Element in a Set in C++ STL, Launch Website URL shortcut using Python, Keyword Searching Algorithms For Search Engines, Sum of all even occurring element in an array, Best Practices For Structuring Spring Boot Application, std::function in C++, How to sum negative and positive values using GroupBy in Pandas?, How to Export Data From SQL Server to Flat File in SSIS?, What is a Webcrawler and where is it used?, 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, Display the Pandas DataFrame in Heatmap style, Templates in C++ vs Generics in Java, NULL values in SQL, Spring Boot – Auto-configuration, How to Import JSON Data into SQL Server?, Difference between NoSQL and NewSQL, Virtual Functions and Runtime Polymorphism in C++, How to Add Group-Level Summary Statistic as a New Column in Pandas?, Duration toDays() method in Java with Examples, SQL - Show Databases, PrintWriter append(CharSequence) method in Java with Examples, Duration minusDays(long) 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, How to Test Spring Boot Project using ZeroCode?, Get first and last elements from ArrayList in Java, Passing Pointers to Functions In C++, Counting Inversions using Set in C++ STL, Containerizing Spring Boot Application, Clustering Indexing in Databases, 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, What is a Search Algorithm in SEO: Understanding Its Role, CharArrayWriter append() method in Java with Examples, SQL Performance Tuning, Different kinds of HTTP requests, Merging or Concatenating two Dictionaries in Python, Difference between MySQL and SQLite, Delete Database in MS SQL Server, Sort elements by frequency using STL, Split a List into Two Halves in Java, Python | Pandas Series.shift(), Python | Pandas Series.sum(), Merge two Pandas DataFrames on certain columns, Duration plusHours(long) method in Java with Examples, Spring Boot – Hello World, Competitive Programming – A Complete Guide, How to secure HTTP requests ?, How to Get Current Date and Time in SQL?, When do we pass arguments by pointer?, Dictionary items in value range in Python, Difference between std::set vs std::vector in C++ STL, Difference between Neo4j and MySQL, How to count unique values in a Pandas Groupby object?, Data Visualisation in Python using Matplotlib and Seaborn, Drop specific rows from multiindex Pandas Dataframe, Duration toNanosPart() method in Java with Examples, Virtual Function in C++, Is sizeof for a struct equal to the sum of sizeof of each member?, Python | pandas.date_range() method, Select rows that contain specific text using Pandas, Spring Boot with H2 Database, Why Array.length() gives error when used in Java?, Spring Boot – File Handling, Hashing in Data Structure, Join Pandas DataFrames matching by substring, SQL CREATE TABLE, Size of an ArrayList, Python Program to Swap dictionary item’s position, How to send HTTP response code in PHP?, How to Import and Export SQL Server Database?, Spring Boot – Spring Data JPA, Sort given array to descending-lowest-ascending form, Merge two dataframes with same column names, HTTP headers | Upgrade-Insecure-Requests, Create a list from rows in Pandas DataFrame | Set 2, C++ Map of Functions, How to install MySQL Connector Package in Python, Multi-Module Project With Spring Boot, Sort an array in descending order based on the sum of its occurrence, How to Get Current Date and Time using Python, Merge two Pandas DataFrames based on closest DateTime, Print with your own font using Python !!, Best Practices For SQL Query Optimizations, Merge two Pandas dataframes by matched ID number, Python | Ways to change keys in dictionary, How to Check MySQL Database, Components of Search Engine, Spring Boot – Map Entity to DTO using ModelMapper, Pandas Tutorial, Spring Boot – Starter Parent, 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, Select Pandas dataframe rows between two dates, How to traverse a C++ set in reverse direction, How to Merge DataFrames of different length in Pandas ?, Floating Point Operations & Associativity in C, C++ and Java, Spring Boot Interview Questions and Answers, Difference between Crawling and Indexing in Search Engine Optimization (SEO), How to Convert SQL Query Results to Pandas Dataframe Using pypyodbc?, Find the profit and loss in the given Excel sheet using Pandas, Writer append(char) method in Java with Examples, Array of Structures vs Array within a Structure in C++, Duration plusMinutes(long) method in Java with Examples, State the core components of an HTTP response ?, 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, How To Export and Import a .SQL File From Command Line With Options?, Recursive Join in SQL, Pandas, How to Get Database Size in SQL, Pandas – Groupby value counts on the DataFrame, 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, Duration ofNanos(long) method in Java with Examples, How to Convert a List to a DataFrame Row in Python?, Spring Boot – MongoRepository with Example, Sort given Array based on the fractional values, Spring Boot – Packaging, Duration parse(CharSequence) method in Java with Examples, set cbegin() and cend() function in C++ STL, How to Implement AOP in Spring Boot Application?, How To Connect and run SQL Queries to a PostgreSQL Database from Python, Python | Pandas Series.to_string(), Foreach in C++ and Java, Python | Parse a website with regex and urllib, Min and Max in a List in Java, Python | Pandas Series.str.swapcase(), Variable Length Arrays (VLAs) in C, Boutique Management System using Python-MySQL Connectivity, How to Delete an Element from the Set in C++?, ISAM in Database, 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, Prevent duplicated columns when joining two Pandas DataFrames, Commonly Asked C++ Interview Questions | Set 2, Python – Access Dictionary items, Python | Pandas Series.sort_values()
GeeksforGeeks
[-0.0215975661, 0.0134797413, -0.00161866436, 0.0328864157, 0.00540515687, -0.00470464863, -0.0334399045, 0.004491325, -0.0219089035, 0.00383117539, -0.0206635557, -0.043633312, 0.0262214988, 0.00310472213, -0.0226814803, 0.000514571, -0.0141716013, 0.0111850714, 0.0263829324, -0.005926935, -0.0262445603, 0.027489908, -0.0154861351, 0.0185187887, 0.0226584189, 0.0285968836, 0.000831673504, 0.0153247016, 0.0253682043, 0.00777189527, -0.00307877758, -0.0118769314, 0.016835263, -0.0116232494, -0.0360228494, -0.00103706948, 0.0119807106, 0.0507364087, 0.00633052, -0.014690496, -0.0211363267, 0.0417191647, 0.00684941513, -0.00782378484, -0.0428492, 0.0087347338, -0.0226353556, 0.0120268352, 0.00511111645, -0.0214707255, -0.0295424256, -0.0290581249, 0.0127417566, -0.000137471157, -0.000176118032, 0.0123612341, -0.0189569667, 0.0303265341, -0.0214246, -0.0423649, 0.0406813733, -0.0178730525, 0.0485224538, -0.00390900951, 0.0172388479, 0.00513129588, -0.0302112252, 0.0166046433, -0.0155668519, -0.00702814572, 0.0350311846, -0.0064400644, 0.0701546147, 0.00526101934, -0.0314796343, 1.43236666e-05, -0.0105854599, -0.0285046361, -0.0499984249, 0.0245610345, -0.000338723185, -0.00536479848, -0.0035256038, 0.0324943624, 0.016074216, -0.00162442983, 0.0358383544, -0.047599975, 0.00855600368, -0.0219319649, 0.0310875811, 0.0125341993, -0.00162587129, -0.017457936, 0.00976675842, 0.0235001817, 0.0319408737, 0.0268672332, -0.0242381655, 0.0138602639, -0.0101357503, 0.00228746235, 0.0391362198, -0.00909219496, 0.0531348549, -0.0175040606, 0.0209979545, -0.0136411749, -0.0264982414, -0.0304879677, 0.00677446369, -0.0082734935, -0.0148288682, 0.0450400934, -0.0719995722, 0.00405314704, 0.0149326473, 0.00299229496, 0.0700162426, 0.00328633538, 0.0632360131, 0.0380061828, 0.00627863035, 0.00986477174, 0.000877797487, -0.00323444605, 0.0329556, -0.030257348, 0.0188185945, 0.0017065882, -0.00141759252, -0.0104413219, -0.0282048304, 0.0172042549, -0.0110063413, 0.00560118398, 0.0384904854, 0.0294040553, -0.0211939812, 0.0236846767, -0.0184611343, -0.00434142211, 0.00982441381, -0.0156821627, -0.0179768316, 0.00715498673, -0.00438466342, 0.0470695496, 0.00307589467, -0.00631898874, -0.0326788574, -0.063974, 0.0219319649, 0.0103433086, 0.0523968711, 0.0028236541, 0.00285968836, -0.0119461175, 0.00599612109, -0.0400125757, 0.0208480507, -0.00234079338, 0.0243995991, -0.0194873922, 0.0064400644, 0.0225661695, -0.00287121953, -0.032909479, -0.0142638488, 0.0309953336, 0.00621521, -0.0325866118, -0.0183804166, 0.0308800228, -0.0161895268, -0.00130444462, -0.0244226623, 0.000164587036, -0.0135143343, 0.0356538557, -0.0206404924, -0.0138948569, -0.0141716013, 0.0415807925, 0.00703967642, -0.00697049033, 0.0248608403, -0.000705553161, -0.0233502779, -0.0265904907, 0.00815241784, -0.00555217732, 0.0266596768, 0.0256449487, -0.0487991981, 0.0264982414, -0.0341548286, -0.026037002, -0.0369683914, 0.0178730525, -0.0166507661, -0.0117385602, -0.0356077328, 0.00931128394, 0.0046758214, -0.0109717483, -0.040796686, 0.031987, -0.00474500703, 0.000338903337, -0.00234223483, -0.0239844844, 0.00596152805, 0.0136757679, 0.008181246, 0.00872320309, -0.0170312896, -0.007218407, -0.0150825502, -0.0202369075, -0.040104825, 0.0141485389, 0.016074216, 0.000477455527, -0.0203752797, -0.00833114889, -0.0263137463, 0.0526274927, 0.00158551277, 0.00699931802, 0.025275955, -0.00585198356, -0.00148461643, -0.0220126826, 0.00247628265, -0.0397358313, 0.00872320309, -0.000941218, -0.0443712957, 0.00695319427, 0.0577011332, -0.0345238186, -0.0122113312, -0.0427569561, 0.0214476641, 0.00458645588, -0.0158205349, 0.069601126, 0.0175386537, 0.0727375597, 0.0155091975, -0.0251837075, -0.0431259461, 0.0296577364, -0.0223124884, -0.0398050174, -9.85540319e-05, -0.000216746805, -0.0145636555, 0.0339703299, 0.020398343, -0.00672833947, 0.0138487332, 0.036322657, 0.00485166907, 0.00615755515, 0.021090202, -0.00865978189, 0.0137910778, 0.00163163675, -0.00551181892, 0.0161434021, 0.015347763, 0.00299229496, -0.00946118683, -0.0134451482, -0.0290581249, -0.0201792531, 0.0278127771, 0.0641584918, -0.0254835133, 0.0239383597, -0.000227376935, 0.00149614748, 0.0487530753, 0.0122228619, 0.0037619893, 0.0047796, 0.00781225367, -0.0325866118, -0.0149211166, -0.00282509532, 0.000673122238, 0.00150047161, 0.0140793528, 0.0328172296, 0.000573307, -0.000163055578, -0.051013153, 0.0595460944, -0.0149557097, 0.0179998931, -0.00171091233, -0.00541668804, 0.0134220859, -0.0384904854, 0.0293348692, -0.002454662, -0.00318543916, -0.0239383597, -0.03120289, -0.0254143272, -0.00331228017, 0.00150767842, 0.00197756686, 0.0374296308, -0.0017527123, -0.0105393352, 0.0202138461, -0.0269133579, 0.00927092507, -0.0101472819, 0.00079563912, 0.0174233429, 0.0343162604, -0.0420189686, -0.0512898974, 0.00263771671, 0.0216436908, -0.0221049301, -0.0187032856, -0.00418863632, -0.0199716948, 0.0250683986, 0.00105148321, -0.0322406814, -0.0461009443, -0.0468619913, 0.0269133579, 0.0507364087, 0.0133874929, -0.0288966894, 0.00765658496, -0.0411887392, 0.0340856425, 0.00948424917, 0.00403296808, 0.0185649134, 0.00951884221, 0.0103490744, 0.000833835569, -0.0321253724, 0.000461600401, 0.00875779614, 0.02509146, -0.0226930119, 0.0167084206, -0.00780648831, -0.00268095802, 0.0267980471, -0.00643429905, 0.019164525, 0.00456051109, 0.00775459874, -0.00270257844, -0.000455474568, -0.0142869111, -0.00946118683, 0.00287554367, 0.00612296211, -0.0238461122, 0.00737407571, -0.0117039671, -0.00623827195, -0.00454321457, 0.012580323, 0.0485224538, 0.017019758, 0.000604296569, -0.0212055128, -0.0616216734, -0.00260456512, -0.0192683041, 0.00011900354, -0.0162010565, -0.0232695621, -0.00496121356, 0.0219089035, -0.00366974133, 0.0208941754, -0.002009277, 0.0123727648, 0.0306724645, -0.0452476516, 0.0193259586, -0.0517511368, 0.0427108295, 0.0107411277, 0.0257141329, -0.0153362323, 0.00571361138, -0.00328633538, -0.0209633615, -0.0249530878, -0.00354290032, 0.0108910315, -0.0141370082, -0.0108333761, 0.0229005702, 0.06240578, 0.0189223737, 0.0581162497, -0.0251837075, 0.00635934761, 0.00559253572, 0.0137564847, 0.0204905905, 0.0172157865, -0.0128685981, 0.0371990129, 0.0202369075, 0.00804864, 0.00371009973, -0.00265789591, -0.00378505141, -0.0118308077, -0.0237308014, 0.0466083102, -0.0167314839, 0.0417191647, -0.00676293252, 0.00205684244, 0.000640330953, -0.0240536705, -0.00980135147, -0.0484763309, -0.00295193633, 0.0239383597, 0.00838303845, -0.0416730419, -0.0383751728, -0.00595576223, -0.00322291488, -0.0261984356, -0.0429875739, -0.0137910778, -0.0543340817, 0.0475077257, -0.00714922091, 0.01680067, -0.0334629677, -0.0220588055, -0.0172619093, -0.0008381597, 0.027928086, 0.00679752557, 0.0187609401, -0.0182074513, 0.0381445549, 0.0263829324, 0.0212746989, 0.0122113312, 0.000207558027, -0.0157974716, -0.000477815891, -0.0249761492, -0.00739137223, -0.000270798366, -0.0233964026, -0.00578279747, 0.00432989094, -0.0218858421, -0.0177692734, 0.0184726641, 0.0456627682, 0.0866670087, -0.0373835079, 0.0168583244, -0.000301968103, -0.0204098728, 0.104793742, -0.0151056126, 0.0158320647, -0.0233041551, -0.0214591939, -0.000944821455, -0.0323559903, -0.0171466, -0.00423764298, -0.00366397575, 0.0377755612, 0.0366224609, -0.0219780896, -0.0237769261, -0.0272823498, 0.0220242124, -0.0576088838, 0.0238461122, 0.0081927767, -0.0161664635, 0.0257141329, 0.025783319, -0.02509146, -0.013053094, 0.00844069291, -0.00476230355, -0.0147942752, -0.0263368078, 0.000208458892, -0.0320561863, 0.00163019542, 0.0112254303, -0.0048804963, 0.026544366, -0.00267375098, 0.00444231834, -0.000812214916, 0.0374757573, -0.00297499844, -0.0124765439, 0.0326788574, -0.00537056383, -0.00322868046, 0.00505057862, -0.0100492677, 0.0253220797, -0.0410273038, -0.0138256708, -0.0299806036, 0.0220703371, 0.021378478, 0.0240536705, -0.00304130162, 0.02509146, 0.0115944222, -0.0574243888, -0.00212314562, 0.0144829378, 0.0293348692, 0.00571072847, -0.0225431081, 0.0221049301, -0.0487530753, -0.0276744049, -0.00976675842, -0.0345007554, -0.0380061828, 0.004563394, 0.00742019946, -0.00515147485, -0.0153016392, 0.043633312, 0.0156706311, -0.00328633538, -0.00174406404, -0.00217071106, -0.0265674274, 0.0165931117, -0.0273976605, 0.0122574549, -0.00255699968, -0.00335552148, 0.00796792191, 0.000277644896, -0.00880392, 0.0074547925, -0.0113176778, 0.0119807106, -0.0580701232, 0.0276052188, 0.0175271221, 0.0107238321, 0.00418863632, 0.0110063413, -0.0228544455, 0.00235232431, 0.0189684983, -0.0113580367, 0.0196603574, 0.0181613285, -0.0183688849, 0.0195219852, 0.0207558032, -0.0156821627, 0.0155668519, -0.0318025, -0.00703391107, -0.0440253653, -0.0253451411, 0.0152093917, 0.0160050299, 0.0246763434, -0.0109659825, 0.0120844897, -0.00957073178, 0.0145982485, 0.00429818081, -0.01185387, 0.0137795471, -0.0231542513, -0.00149182335, 0.0212170426, 0.0155668519, -0.00407620892, -0.0125918537, -0.024145918, -0.0155553212, -0.00498715835, -0.00830808654, 0.00483725499, -0.0313182, -0.0146213099, 0.0192106497, -0.0501367971, 0.0180460177, -0.0202023145, 0.0466313697, 0.0315257572, -0.0462623797, -0.0263598692, -0.00282797823, -0.000252781174, 0.0348466858, -0.0101242196, -0.00617485121, 0.0117673874, -0.00593846571, -0.00754127512, 0.00597882457, -0.026982544, 0.02152838, -0.0178499911, 0.0220472757, 0.00922480132, 0.0263598692, -0.0386980399, -0.0166277047, -0.00756433699, -0.0149903018, -0.034431573, 0.021343885, 0.00731065497, 0.0154515421, 0.0708464757, -0.00138155813, 0.00386288553, 0.00590387266, 0.013998636, 0.014402221, 0.00949001405, -0.0248608403, -0.0163163673, 0.0237769261, 0.0144137526, -0.00736831, -0.0205482449, 0.00248060678, 0.0137795471, -0.0177231506, 0.00615755515, -0.0150018334, 0.0101588126, 0.0223009568, 4.05386781e-05, 0.0303265341, 0.00358614163, 0.0454552099, 0.0195219852, 0.0402431972, 0.00791603234, 0.00842339639, -0.0309492089, -0.00582892122, 0.0054945224, -0.0129031911, -0.00379081676, -0.0247916542, 0.028181769, 0.0623596571, -0.0199601632, 0.00179162936, -0.0342470743, -0.0367838964, 0.0101357503, -0.0187609401, -0.0220126826, 0.00195594621, -0.0187494084, -0.0321945585, -0.0151517363, 0.018218983, 0.00948424917, 0.0176770259, -0.001377234, 0.00159271958, 0.0158205349, -0.01658158, -0.0151517363, -0.0130300317, -0.01254573, -0.00667645, 0.0022615178, -0.00639394065, 0.0206059, -0.00606530672, -0.0089711193, -0.0172157865, 0.00822737, -0.0342240147, 0.0294501781, 0.0208941754, -0.00947848335, -0.0136411749, 0.00958226249, -0.0185303204, 0.0364379659, 8.1753e-05, 0.0214015394, 0.00381964422, 0.0015264164, 0.00269537163, 0.00901724305, 0.0189223737, 0.0206404924, -0.0398742035, 0.0079448605, -0.00073185825, -0.0220588055, -0.0383059867, 0.000435655646, -0.011127417, 0.00492373761, 0.0322868042, 0.004018554, -0.00268816482, -0.0261753742, 0.00916714594, 0.0110639958, 0.00792179815, 0.000228457968, 0.0265674274, -0.0247455295, -0.0318255648, 0.00344200409, 0.0155207282, 0.0240997933, 0.023200376, -0.00334687321, -0.00265645445, 0.00129939977, 0.00673987065, 0.013491272, 0.049306564, -0.0104528535, 0.0116809048, -0.00957073178, -0.0354924239, 0.0133183068, 0.00521201268, 0.0225431081, 0.00251231692, -0.0399664529, -0.0130646247, -0.014471407, -0.00890193321, -0.0346391276, -0.0339242071, -0.00368415494, -0.000125850071, 0.00187667052, 0.00471618, -0.010181875, 0.053965088, -0.0151402056, -0.0187148154, 0.0121306134, 0.0084176315, -0.0143330349, -0.00698778685, 0.0102452952, -0.00535903312, -0.00193432556, -0.000474572793, -0.0249530878, 0.00510246819, -0.0287813805, 0.0176309012, 0.00984747522, 0.0394360274, 0.00201792526, 0.0169044491, 0.0074951509, -0.00737984106, -0.0118654007, -0.0115598291, -0.0365532748, -0.0308800228, -0.0333937816, -0.0312490147, -0.0207096785, 0.0144829378, -0.000735461712, 0.0262906831, 0.0263598692, 0.0390670337, -0.0382598639, -0.0206635557, -0.0149211166, 0.0224969853, 0.0317563787, -0.0150594879, 1.32538953e-05, -0.0437486209, 0.0203176253, 0.0109371552, 0.0171696618, -0.0242381655, -0.00390612683, -0.0241228547, -0.00754127512, 0.0152670462, -0.043241255, 0.0280664582, -0.00336128706, -0.0212170426, -0.00683788396, -0.0268672332, 7.4410993e-05, 0.0588542335, 0.0272131637, 0.0252067689, -0.00727029657, -0.0347544402, 0.0248608403, 0.00471329689, 0.0149211166, -0.00619214773, -0.0288044419, 0.0133413691, 0.0293348692, 0.0306955259, -0.00178874668, -0.0205367133, 0.00359479, 0.0445557907, 0.0102107022, -0.00969180651, -0.00422034645, 0.010689239, 0.0406121872, -0.00572802499, 0.0272592884, -0.0301881619, -0.00639394065, -0.0261061881, 0.0154746044, 0.0312720761, -0.00210729055, 0.000343227468, 0.00539939152, 0.0378908701, 0.011634781, 0.00388018205, 0.0136181135, -0.00852141064, -0.0114099262, 0.00234367605, 0.0244918484, -0.0144252833, -0.0394129641, -0.013053094, -0.0023379107, 0.0375680029, 0.0292887446, 0.011236961, -0.0331401, -0.0308338981, 0.0081927767, 0.00614602398, -0.0410273038, 0.0175155923, 0.0147942752, 0.00156677491, 0.0152901085, 0.0384904854, 0.00889616739, -0.0169390421, -0.0136642372, -0.0261292495, -0.0108622033, 0.0366455242, -0.00400990574, 0.0113580367, -0.037452694, -0.00400702329, -0.0242381655, 0.00504481327, 0.019671889, 0.0180229563, -7.39155221e-05, -0.0062036789, 0.0233156849, -0.00254114461, -0.0338319577, -0.000238907945, -0.00979558565, 0.0272131637, -0.00920173898, -0.022035744, -0.0103663709, -0.0154169491, 0.00803134311, -0.00617485121, 0.0313643254, 0.0198794473, -0.0220242124, -0.034962, -0.00837727264, 0.018438071, -0.0469542406, -0.0350081213, 0.00379081676, -0.00729912426, 0.0324943624, 0.0185072571, 0.0036265, -0.0199486334, 0.00266510271, -0.0171120074, 0.00587792834, -0.0423879623, 0.0117212636, -0.0176193714, 0.0100262063, -0.0359767266, 0.0261292495, -0.0505057871, 0.0276974663, -0.00385712017, -0.00270834402, -0.00743173063, 0.0390670337, 0.013744954, -0.0159012508, -0.00270834402, -0.0467928052, -0.00278041279, 0.0132491207, 0.011017872, -0.00405026414, 0.0127878813, 0.0128801288, -0.00276455772, 0.00044790734, 0.00607107254, -0.0157167558, -0.0352387428, -0.00936893933, -0.00793332886, -0.00336128706, 0.0138602639, -0.0143330349, 0.0106488802, -0.00747208903, -0.0143560972, -0.00906336773, 0.0173310954, -0.00261897873, -0.0100607993, -0.0238230489, 0.018726347, 0.00623827195, 0.000624475826, -0.0128224744, 0.00162154716, 0.0261984356, -0.00469311792, -0.0193605516, -0.0142638488, -0.0235463064, -0.00469888328, 0.0099973781, 0.00231773127, 0.00360632082, 0.0197180137, -0.00791026745, -0.0241228547, -0.0195681099, -0.000173055116, -0.0304187834, -0.00699355267, 0.0102568259, 0.0129262526, -0.0290811863, -0.0280664582, -0.0227160733, 0.0217013452, -0.0155437905, -0.0150940809, 0.0130415633, 0.00308166025, 0.00213900092, -0.0149557097, 0.0373604447, 0.0286199469, 0.0287121944, 0.00137074781, -0.00737407571, 0.00394936791, 0.0186341, -0.0406352505, -0.00496121356, -0.00159127824, -0.0297038611, 0.0132491207, 0.037452694, 0.0204905905, 0.00820430741, -0.00565595645, -0.011490643, 0.00867131352, -0.00909796078, -0.00780648831, 0.0162241198, 0.00485455152, -0.0102452952, -0.0111043546, -0.00603071367, 0.003372818, -0.00199918752, -0.0160972793, -0.0107930172, 0.0387902893, 0.000230980382, 0.0123035787, -0.00371298264, 0.00808899757, -0.0258063823, -0.0177692734, -0.00311048771, -0.00242295163, -0.0103375427, 0.0220126826, -0.00707426947, -0.00907489844, -0.00407620892, -0.00205972511, -0.000921038736, 0.0029836467, 0.00211161468, -0.017481, -0.0215860344, 0.0337166488, 0.0389517248, -0.00480842777, 0.00940929726, -0.0334168412, 0.0316871926, 0.00348236249, 0.00298652938, -0.00406179531, -0.0197064821, 0.0153708253, 0.0157974716, 0.00999161322, 0.0275360327, -0.000510967511, 0.0256680101, -0.0112946164, 0.0224047359, 0.00239700708, -0.02232402, -0.0301420391, 0.00279626786, 0.0202830322, 0.000637808524, -0.000642853323, -0.00391189242, -0.00747208903, -0.0128340051, 0.0389286615, 0.0044509666, -0.0124304201, 0.0302804112, 0.00555794267, -0.0178038664, -0.00375045836, -0.00806017, -0.00274149561, -0.0283432025, -0.00052790367, 0.00916714594, -0.0227737278, 0.00789873581, 0.0102568259, 0.0169505719, 0.0155322589, 0.0423879623, -0.00944965612, -0.00577414921, -0.00584910065, 0.0153247016, 0.00187667052, -0.0119922422, 0.026037002, -0.0107584242, -0.0161434021, 0.0145867169, -0.00714345556, 0.00678022904, 0.00385135459, -0.0150364265, -0.0054945224, 0.00286977808, 0.0150594879, -0.00747208903, -0.0116924355, -0.013964043, -0.00103779021, -0.00635934761, 0.025275955, 0.00825043209, 0.0133067761, -0.00733948266, 0.00426647067, 0.0127417566, 0.0108967964, -0.000998152304, -0.00785837788, -0.00335840415, -0.0152785769, 0.0116982013, 0.0300497897, -0.0174694676, -0.00238547591, -0.0132029969, -0.00315084611, -0.00308166025, 0.0123727648, -0.030764712, 0.02014466, 0.0270978548, -0.00657267077, -0.0128455358, -0.000838880369, -0.00571937673, 0.00841186568, -0.0305110309, -0.0385135449, -0.0315257572, 0.00128138252, -0.0152093917, 0.037821684, 0.0232695621, 0.00876356103, 0.0200639423, -0.0456397049, -0.0177116189, -0.0287352558, 0.0189800281, -0.00104715908, 0.00349965901, 0.0102798883, -0.00478248298, 0.00201216, -0.00416845735, 0.0132491207, 0.00943236, -0.00249213772, 0.00504481327, 0.00455186283, 0.00295481924, 0.0242381655, 0.00984171, 0.0152093917, 0.0188416559, -0.022727605, 0.00354866567, 0.00532732299, 0.0454321466, -0.00401567155, -0.0308569614, 0.000859780295, -0.00395801617, -0.0219780896, -0.000380523066, -0.0180690791, 0.00459798705, -0.000805008051, -0.0179998931, 0.0110005755, -0.00217359373, -0.0408889316, 0.0120153036, 0.00552334962, 0.00811206, 0.0179537702, 0.0388594754, -0.00909796078, -0.0150940809, 0.0186341, 0.00170082273, -0.037452694, -0.0145751862, 0.0236154906, -0.0199371018, -0.00338434894, 0.0160972793, -0.0305110309, -0.0257602576, 0.0164778, 0.00658996729, -0.02981917, 0.0192337111, -0.0105796941, 0.0192567725, 0.0235232431, -0.0250683986, 0.02152838, 0.00302688801, 0.0280895196, 0.0129723772, -0.0172042549, 0.00672257412, 0.021378478, 0.0198909771, 0.0198217928, 0.00346506597, 0.0014601131, -0.00762199191, 0.00857906509, -0.00535903312, -0.022981286, -0.00944389, -0.00422322936, -0.00233646925, 0.00944389, 0.00360055524, 0.011236961, -0.00213179388, 0.0267980471, -0.00778342597, 0.0277897138, -0.0358614139, 0.0023018762, -0.00370433438, -0.0109602176, -0.0077603641, 0.000489346858, 0.0317102559, 0.0378908701, 0.00153218186, 0.00465275906, 0.0151402056, 0.010181875, 0.0062325066, 0.0108160796, 0.0221625846, 0.0154861351, 0.00238835881, 0.0183688849, -0.0102049364, -0.00603071367, 0.0188647192, -0.0078756744, 0.0140908845, 0.0148058059, -0.0117904497, -0.00431259442, 0.011819277, 0.0205713063, 0.00132102042, 0.0053013782, 0.00124606886, 0.022439329, 0.0276974663, 0.0292887446, -0.0256449487, -0.0014702027, -0.00606530672, 0.0259908773, -0.00603071367, 0.011381099, 0.00111778651, 0.0114502851, 0.00478248298, -0.00479113124, 0.00078122539, -0.0115252361, 0.0114502851, 0.034800563, -0.0175963081, 0.0175386537, 0.0145175308, -0.0195335168, -0.00943236, 0.0361842848, 0.00626709964, -0.00157830585, -0.00210008374, 0.00829655584, 0.00731065497, -0.014690496, -0.0163509604, 0.0364610292, 0.00484302081, -0.00201936672, -0.0154400114, 0.00996855088, -0.00673987065, -0.0155091975, -0.00241574482, -0.0217244066, -0.00939200073, 0.00133615488, -0.00156821625, -0.00408485718, 0.00095707312, -0.0210671406, 0.0212977603, -0.0174233429, -0.0142292557, -0.0103144813, -0.00358037604, -0.00613449281, 0.0087405, -0.00558100501, -0.013744954, 0.0261061881, 0.0150248948, -0.00567901833, 0.00706850411, -0.0142292557, -0.00426935358, -0.0134797413, -0.0201792531, -0.00436448399, -0.0141716013, -0.0042434088, -0.00429529836, -0.0341087021, 0.00142912357, -7.82396455e-05, 0.0195104554, -0.0400817618, -0.00791026745, 0.0256680101, 0.00544263283, -0.0102683567, 0.0211247951, -0.0297961086, -0.00963415205, -0.00189108425, 0.00480266241, 0.0221279915, 0.0185303204, -0.000859059626, -0.000176928806, 0.0171004757, -0.000409710919, -0.0209518299, -0.00584910065, 0.00850411411, -0.00669374643, 0.0179537702, -0.00633628527, 0.0120037729, -0.0240536705, 0.00634205109, -0.0178615209, 0.0266596768, -0.000626277528, 0.0087462645, 0.00181180867, 0.00492373761, -0.00552623253, -0.00369280321, -0.0184150096, 0.00732218614, 0.0123612341, 0.0327480435, -0.00323732872, 0.00940353237, -0.0055060531, -0.00311337039, 0.00706273876, -0.0344776958, 0.0335321538, 0.00959955901, -0.0119115245, -0.00780648831, 0.0111504784, 0.041742228, -0.011236961, 0.0225315765, -0.00484590326, 0.0170312896, -0.0058836937, -0.0110063413, -0.0239383597, 0.0265213046, 0.0051457095, 0.00490067573, 0.0299806036, -0.0117673874, 0.0288966894, -0.0228890385, 0.00230620033, -0.0277205277, -0.0100953924, -0.00960532483, -0.0081927767, -0.00419151923, 0.0211939812, 0.0209172368, 0.032724984, 0.0119230561, -0.0150133641, 0.0107757207, -0.0179768316, 0.00257141329, -0.0223124884, 0.0116866706, -0.0189454351, -0.0147596821, 0.0166738294, -0.0231081266, 0.0131338108, 0.0124073578, -0.0062325066, 0.0192798357, -0.0257602576, 0.0110928239, -0.0380753689, 0.00761622656, -0.00250222743, -0.00277897133, -6.61230879e-05, 0.0291964971, -0.00763352308, -0.00717228325, 0.0264982414, 0.0020928767, 0.0140793528, 0.0141485389, -0.0291734338, -0.00822160393, 0.0139063885, -0.0194989238, 0.00737984106, 0.0268211104, 0.0044480837, 0.0118999938, 0.00426935358, 0.0223470815, -0.00380234793, 0.0342009515, -0.0161895268, 0.0278358385, -0.0162010565, -0.0134105552, -0.00192423596, 0.00564730819, -0.0216090977, -0.00204242859, 0.0175847784, 0.0054656947, -0.0222433023, -0.00887310598, 0.0109198587, 0.0202369075, -0.00140173745, -0.0178384595, 8.33295053e-05, 0.00546857761, -0.0172965024, -0.0336935855, -0.00807746686, -0.0380061828, 0.0107757207, -0.0016964986, -0.0199601632, 0.00165181595, -0.00527831586, 0.000230439866, 0.0139063885, 0.0234540571, 0.0346621908, -0.00604224484, 0.0303495973, -0.00271266815, -0.00573667325, 0.0056905495, -0.00742596528, -0.000904462941, 0.00868284423, 0.0221049301, 0.0138256708, -0.000315481, 0.0368300192, 0.00635934761, 0.0162702426, -0.0212631673, -0.00163019542, -0.00232926244, 0.0148058059, -0.0304418448, -0.0289428141, 0.0245840959, -0.00155380252, 0.0033929972, 0.0304418448, -0.00251231692, 0.00681482209, 0.0412809849, 0.00216350425, 0.0258525051, 0.00778342597, 0.00543975, 0.00208567, -0.00673410483, 0.0185879748, -0.0015033544, -0.0136065818, 0.00282941945, 0.00103779021, -0.0226468872, 0.0239152983, 0.012580323, 0.0132145276, -0.00604224484, 0.0297730472, 0.00715498673, -0.0132837137, 0.00706273876, -0.0103836674, 0.0134682097, 0.00286545395, -0.000474933127, -0.0170658827, 0.00935740769, 0.0190953389, -0.00447691139, 0.00293464, 0.030257348, -0.00320850126, -0.000502679613, -0.0110697616, 0.00736254454, 0.00475365529, -0.0176309012, 0.00537921209, -0.0171811935, 0.02232402, -0.0149557097, 0.00167776074, -0.0115425326, -0.0233502779, 0.0139755737, -0.00570784602, -0.0067859944, 0.0158090033, -0.0120383659, 0.0035890243, -0.00504481327, -0.012764819, 0.00464122836, -0.0121767381, -0.00241286214, -0.00473924167, 0.015382356, -0.0144598763, -0.0203752797, -0.00783531554, -0.00447402848, 0.00556659093, -0.017342627, -0.00959955901, 0.00807746686, 0.00575397, 0.0108679691, 0.019164525, 0.0306032784, 0.00560118398, 0.012292048, -0.00373316184, 0.0232464988, 0.00716075208, 0.00876932684, -0.00713192439, 0.0190261528, -0.0112254303, 0.0087462645, -0.0208941754, 0.00826196279, 0.000458717666, -0.0392515287, 0.0138372025, 0.0141600706, 0.0161434021, -0.00599035528, 0.0102510601, 0.00910372566, 0.00497274427, -0.00148894056, 0.00265213032, -0.0113695674, -0.00729335845, -0.00476230355, -0.0226699486, 0.0217128769, -0.00225431076, -0.0153938876, -8.02215363e-05, -0.000720327254, 0.00633052, 0.00821007323, 0.0171466, -0.000669158471, 0.008509879, -0.0289889388, 0.00635358179, -0.0129262526, 0.00202801498, -0.00499868905, -0.005854866, -0.0267519243, -0.00297499844, -0.0143676279, -0.00992242713, 0.00321714953, -0.0176078398, -0.00405026414, 0.00254258583, -0.0120844897, 0.0220126826, 0.0207327418, -0.0124880746, 0.0279972721, -0.001536506, 0.0227737278, -0.00925362855, -4.6709567e-05, 0.0022456625, 0.0202830322, 0.00120571034, 0.00257862033, -0.00441060821, 0.00194873929, -0.0204675272, 0.0120614273, 0.010729597, 0.00356307952, -0.00704544224, 0.0328864157, -0.0215053186, -0.00282221264, 0.0327711068, 0.0215399116, -0.0029432883, -0.00510823354, 0.015889721, -0.0108218454, -0.00521489559, 0.00147236476, 0.0120614273, -0.0120960204, -0.00759316469, 0.00961685553, 0.0110870581, -0.0200524125, 0.00454898039, 0.00630169222, 0.022001151, 0.0175155923, 0.00576261804, -0.0137218917, 0.0183112305, -0.0160626862, -0.0230850652, -0.0150594879, -0.0217820629, 0.00739713758, -0.00513994414, 0.000988783431, 0.00587792834, 0.00848105177, -0.019164525, 0.00065366365, 0.017308034, -0.00129867904, -0.0274668466, 0.0104874456, 0.00396378199, 0.00431836024, -0.0204905905, -0.0201907847, 0.0148634613, -0.00889616739, 0.00333534228, 0.00564442528, -0.00673410483, -0.0103836674, -0.000704832491, -0.00226440048, -0.0103663709, -0.0124534816, 0.0129493149, -0.0253220797, -0.00032557064, -0.021851249, -0.013053094, -0.00328345271, -0.0109948106, -0.00852717552, 0.00075816334, 0.00449997326, 0.0165700503, 0.00559830153, -0.00029494139, -0.00951884221, 0.0077200057, 0.0213092919, 0.00466717314, 0.0154054184, -0.0153362323, -0.0119691798, -0.028250955, 0.00834844541, 0.00633052, 0.0100665642, -0.0131684039, -0.000263951835, -0.00658420194, 0.00126048259, -0.0128916595, -0.000613665499, 0.000118102682, -0.0335782766, -0.00468735211, 0.0074547925, 0.00245322054, -0.00303841894, 0.000265393202, 0.00454609748, 0.0149441781, -0.00384270633, 0.0199371018, -0.00196747715, 0.0253220797, 0.00225719367, 0.00176136056, -0.0301881619, 0.0230389424, 0.0258063823, -0.00256997207, 0.0199371018, 0.0077603641, -0.0019689186, -0.00165325741, 0.0331631601, -0.000649339519, -0.000202873562, 0.000735822076, -0.00169794, 0.00248637213, -0.00720111048, -0.0138372025, -0.0159589071, -0.00394071965, 0.00563001167, 0.01392945, 0.0217359383, 0.0366455242, 0.0164086148, 0.00533885369, 0.0202715, -0.00648618862, -0.00306148105, -0.00934587698, 0.016835263, 0.0127417566, -0.00700508337, 0.00575685268, -0.028181769, 0.00374757545, 0.00802557729, 0.00423187762, -0.011271554, -0.0108795, 0.0111447135, -0.01323759, 0.00274437852, -0.0144944694, 0.0223586131, 0.00400414038, 0.00645736093, 0.00408197474, 0.0176424328, -0.00712039368, -0.018726347, 0.00630169222, -0.0066649192, 0.00131237216, -0.00776612945, -0.016546987, 0.014183132, -0.000717804884, -0.00257717888, 0.0127763497, -0.013710361, -0.00310760504, 0.0011776035, 0.0247916542, -0.00124823092, 0.0078756744, 0.0105335703, -0.00539650861, 0.00332957669, 0.0112657882, 0.00661302963, 0.0081927767, -0.000437457376, 0.00395801617, -0.0119576491, 0.0111447135, 0.00322868046, -0.00739137223, 0.0316871926, -0.00568190124, -0.0152670462, -8.14714804e-06, 0.0164778, -0.0118423384, 0.0209287684, 0.0149326473, 0.0102568259, -0.00435583573, 0.00997431669, 0.00991089642, 0.00614025863, 2.67104842e-05, 0.00040034196, 0.0122228619, -0.0390439704, -0.0095592, -0.00699931802, 0.00672833947, 0.0190838072, 0.00879815407, 0.00524660572, 0.00307301199, 0.00669951178, -0.00732795149, 0.00836574193, 0.00833114889, 0.00167343661, -0.0246302206, 0.00829079, -0.00431259442, -0.00851564482, -0.0118423384, 0.00429818081, 0.0133183068, 0.00946118683, -0.00709733134, -0.00655537471, -9.3329043e-05, -4.08089363e-05, -0.0254604518, -0.00761046121, 0.000415836752, 0.00855023786, -0.00675140135, -0.00631322339, 0.00182766374, -0.00445961487, 0.00978405494, -0.0370375775, -0.0159127824, 0.0114214569, -0.00037403687, -0.00758163352, 0.0181152038, -0.00240997947, -0.0133298384, -0.00197324273, -0.0234771203, 0.0246302206, 0.00696472498, -0.0155091975, 0.0628670231, 0.00860212743, 0.0220818687, 0.0138487332, 0.00457204226, -0.00282941945, -0.00788143929, -0.0306263398, 0.00363514828, -0.0058145076, 0.0155091975, -0.0155437905, -0.0438869931, 0.0111562442, 0.0200178195, -0.00235953112, 0.0266366135, -0.00168208487, -0.0134566789, -0.00103418669, 0.00535038486, -0.0253912657, 0.0141254775, -0.0229351632, 0.0187724717, -0.0148519306, -0.0116924355, 0.00289139873, 0.00281500584, 0.00732218614, -0.00170947099, -0.0090518361, 0.0312951393, 0.0159127824, 0.00224854541, -0.00546281226, -3.84892228e-05, -0.0146213099, -0.028366264, -0.00316237728, -0.0210786704, -0.0186225679, 0.0213554148, 0.0097494619, -0.00498715835, -0.00117472082, -0.0218281858, 0.00981288217, 0.00587216252, 0.0106950039, -0.00304130162, -0.0126725705, -0.00310183945, -0.00409638835, -0.00633628527, -0.00829655584, 0.0219204351, 0.00893076, 8.25187308e-05, -0.0162817743, -0.00660149846, 0.0162125882, -0.0236154906, 0.0112311961, -0.000808611512, 0.00471329689, 0.00558100501, -0.0179537702, 0.00811206, 0.00962262135, 0.00437889807, -0.00496986182, -0.0215053186, -0.0119807106, -0.0258525051, -0.00211017323, 0.0160280932, 0.0165700503, 0.0165008642, 0.00401567155, -0.013018501, -0.00106229354, 0.0122689856, -0.00407620892, -0.0164893325, -0.00662456034, -0.0132491207, -0.00511111645, 0.0154515421, -0.0294501781, 0.00199342193, 0.0125111369, -0.0274668466, 0.00878662337, -0.00196747715, -0.00671104295, -0.00141398911, 0.0115886563, 0.0123151103, -0.00323444605, -0.0103029497, -0.00295193633, 0.0261523128, -0.00440484285, -0.00352272112, -0.0096687451, 0.0125687923, -0.015889721, -0.00577414921, -0.010873735, 0.020617431, 0.0196142346, -0.00482284138, 0.0144252833, -0.0280203335, 0.00791603234, 0.00664762268, -0.0203060936, 0.00707426947, -0.0458011404, 0.00351695553, 0.00588945905, -0.0136411749, 0.00453744922, -0.00622097543, -0.0209979545, 0.0156706311, 0.00860212743, 0.02370774, 0.0175963081, -0.00267519243, -0.0120037729, 0.0145290624, -0.00167776074, 0.0263598692, 0.0205597766, -0.0123842955, 0.0177000873, -0.00871167146, 0.0096572144, -0.00658996729, -0.0105912248, 0.00248781359, 0.0189684983, 0.0266827382, -0.00134264096, -0.038767226, -0.0130300317, 0.0154976668, 0.0153131699, 0.0162933059, 0.00386865111, 0.0136642372, -0.00734524801, 0.00813512132, 0.00469888328, -0.0210325476, 0.00991089642, 0.0119576491, -0.00504481327, 0.0167430136, -0.0163855534, 0.0272362269, 0.018910842, 0.0240767319, -0.0108967964, 0.0125572607, 0.0110121062, 0.00193288422, 0.00479401415, -0.00623827195, -0.0240767319, 0.000625917164, -0.00762775773, -0.0212746989, -0.00988783408, 0.00135849614, 0.00741443411, 0.00126048259, 0.0319178142, -0.0160626862, -0.00891923, -0.0194758624, 0.000859059626, 0.000360704144, -0.00192135316, 0.00644582976, -0.0099051306, -0.00119994488, -0.0128801288, -0.00992242713, 0.0144598763, 0.0104009639, -0.0195565782, -0.0125111369, -0.000873473356, 0.0102222329, 0.00703391107, 0.0150479572, -0.00499004079, -0.0188531876, -0.0143099735, 0.03120289, 0.0101761092, 0.00557235675, 0.0218858421, -0.00094698352, -0.00203522178, 0.00578568, 0.0124534816, 0.0011343623, -0.00653231237, -0.0199025087, 0.0103951981, 0.0125111369, -0.0103663709, 0.00700508337, -0.00170514686, 0.000950587, 0.00708003528, -0.0241689794, 0.00985900685, 0.00774883339, 0.00121147581, 0.00954766944, 0.0287121944, -0.000690418703, 0.00336128706, -0.0267519243, 0.0112139, -0.0129839079, -0.0201907847, 0.000801404647, -0.00603071367, 0.00560983224, -0.0264059938, -0.0331862234, 0.00351407286, 0.0202599708, -0.0258755684, 0.0100607993, -0.0120498966, 0.023200376, 0.00872320309, -0.00565307355, 0.0315488204, -0.000571865588, -0.00722993817, 0.0165700503, -0.00352272112, -0.0184841957, 0.0146674346, 0.00512553, 0.00633052, 0.0173310954, -0.00669374643, -0.000234583815, 0.0158320647, -0.0195104554, 0.00220098, 0.000144587946, 0.0240767319, 0.0101588126, 0.012072959, 0.00301247416, 0.0192798357, -0.0191184, -0.0330478512, -0.0243534762, 0.0193374902, 0.016074216, -0.0139179192, -0.00270546135, -0.0303957202, 0.00181325, -0.0125341993, 0.00876932684, 0.00864248537, -0.00853870716, 0.00700508337, -0.0222087093, -0.00345353503, 0.00084752863, -0.00134552375, 0.0032402114, 0.0136411749, 0.0157167558, -0.0110928239, -0.00365821039, -0.0121652065, -0.00831385236, -0.016869856, 0.0372451358, -0.0143330349, 0.0111735407, 0.00347371423, -0.00376775488, -0.0185533818, -0.014471407, -0.0356307961, -0.00588081079, 0.0041742227, -0.00361496909, -0.0125111369, 0.0202715, -0.0164778, 0.0032402114, 0.00653807819, -0.00319697033, -0.0113119129, 0.0258525051, 0.00639970601, -0.0163394287, 0.00110625545, 0.0155091975, 0.00163740222, 0.0093516428, -0.000926083594, 0.0237769261, -0.0096572144, 0.00192711863, 0.00290004699, 0.0218743104, 0.0120037729, -0.0146443723, 0.0255296379, -0.00355154858, -0.00810629409, -0.00968027581, -0.00214044214, 0.018910842, 0.0183112305, -0.0271439776, -0.0166738294, 0.0157052241, 0.0217935927, -0.000410791923, 0.0045230356, -0.00119273795, 0.0145405931, -0.0083369147, 0.0107814865, 0.0129262526, -0.0138717955, 0.0119576491, 0.0253682043, -0.0230850652, -0.00215341453, -0.020398343, -0.0103202462, -0.0028668954, 0.00821583904, 0.0129377842, 0.0131107494, -0.000386648899, 0.00683211861, -0.00505057862, 0.00669374643, -0.0146789653, -0.00839456916, -0.0125687923, 0.000921038736, -0.00114228984, 0.00304418453, 0.00857906509, 0.0087462645, 0.0011343623, -0.0197526067, 0.0102625918, -0.0141139459, 0.00488337921, -0.00430394663, 0.0150594879, -0.00561271515, -0.0016662298, -1.85014014e-05, -0.0285276975, -0.00510246819, 0.0291964971, 0.00243015867, 0.00325462525, -0.0108218454, 0.0062036789, 0.00881545059, -0.00828502513, 0.0180690791, -0.00660149846, 0.0163509604, -0.0297961086, 0.00736831, 0.0119691798, -0.0242151041, -0.001859374, 0.000723930716, -0.00298076402, -0.00567037, 0.0145521238, 0.0224278, -0.000897976744, -0.0114964088, 0.0183227621, 0.00407620892, -0.00316237728, 0.0165239256, 0.00409927126, -0.021055609, -0.014471407, -0.0119922422, -0.0225546397, 0.00514859241, -0.0182996988, 0.0224854536, 0.00496409647, 0.00743749598, 0.00303553627, -0.0220242124, -0.0194528, 0.00106517633, 0.00347659714, 0.0267288629, 0.0204559974, -0.00511399936, -0.00249934453, -0.00690707, 0.0139179192, 0.00492950343, 0.00130228256, 0.0365763381, -0.00141687179, 0.0154976668, 0.00426358776, -0.0186802223, -0.0317102559, 0.0111158853, 0.00361785176, -0.00710886251, 0.021759, -0.00443655299, 0.0015264164, 0.00313931517, -0.0155783836, 0.00336128706, -0.0112427268, 0.0285276975, -0.0163394287, -0.0218743104, -0.014402221, 0.0091959741, -0.00483437255, -0.00489491038, 0.00672833947, 0.00930551812, -0.0180229563, -0.0274207219, 0.0188416559, 0.00614025863, -0.022473922, -0.00964568276, -0.0110236378, 0.00704544224, 0.0141485389, 0.00363803096, 0.0178269278, 0.0084176315, -0.00572802499, -0.015889721, -0.00916138105, 0.00452880096, 0.0140908845, 0.00290437113, 0.0311567672, 0.00104139361, 0.0110121062, -0.00505922688, 0.00249646185, -0.0025180825, 0.0145751862, -0.0111793065, 0.00859059673, 0.00615755515, 0.014909585, 0.0147135584, -0.0221164618, -0.0127532883, -0.0019689186, 0.00297788111, 0.00185793266, 8.77887578e-05, 0.0196142346, 0.00134912715, -0.00398684386, -0.00186081545, 0.0179537702, 0.000448267703, 0.0232926235, -0.0042145811, 0.00222115917, -0.0103779016, -0.00712615903, -0.0115310019, 0.0206866171, -0.00624980312, 0.00897688512, -0.00571361138, 0.00973793119, -0.00668221572, 0.00104355568, -0.0170889441, 0.00743173063, -0.0182766374, -0.00946118683, 0.008181246, -0.000907345675, 0.00846952107, -0.00732218614, -0.00331804575, -0.00630745804, 0.00151776813, -0.000175217181, -0.00916138105, 0.0242612269, -0.00147885096, 0.011490643, -0.011415692, 0.0181613285, -0.00472194515, 2.99310577e-05, 0.00922480132, -0.011634781, -0.00793332886, 0.00687824236, -0.00191991183, 0.00104283495, -0.00659573311, -0.00359767256, 0.00923633203, 0.0208019279, -0.002281697, 0.00564730819, -0.00881545059, 0.000399981625, 0.0132952454, -0.00112715538, 0.00285680569, -0.0142869111, 0.000450069405, -0.00129939977, -0.0185649134, -0.00538786035, -0.00609413441, -0.0256910715, 0.0149557097, 0.0225200467, -0.0144252833, 0.000741587544, 0.00287266076, 0.0267058, -0.0176885575, 0.00839456916, -0.0116520775, 0.00828502513, -0.0188877806, -0.00743173063, -0.00409350544, -0.00786414277, 0.00590963848, -0.0128685981, -0.00560406689, 0.00719534513, 0.00199053925, -0.00992242713, -0.0152555155, -0.00540515687, -0.00569919776, -0.00539074326, -0.0253451411, 0.0131914662, 0.00475942111, -0.029127311, -0.0202945638, 0.0238461122, 0.0121767381, 0.00970910303, -0.00810629409, 0.00172820885, -0.0179653, 0.00679176, 0.000928966329, -0.0221049301, -0.00158551277, -0.00761622656, 0.000866987219, 0.0223355498, -0.00895958859, -0.00551758427, -0.0289889388, 0.0215168484, -0.0504596643, 0.00896535348, 0.00286257127, 0.012292048, -0.00917867757, 0.00668221572, 0.00290148822, -0.0326327346, 0.0241920408, -0.00656690542, 0.0097494619, -0.00123525853, -0.00675716717, -0.00844069291, -0.00139236846, -0.00992819294, 0.0292195585, -0.0121997995, -0.00980711728, -0.00686094584, 0.00188820157, -0.0167430136, 0.0226584189, -0.0087347338, 0.00905760191, -0.00993395783, 0.00283806771, -0.0233964026, -0.00291013648, -0.00636511296, -0.00127201364, -0.0183688849, -0.0097264, -0.00380234793, 0.0109371552, 0.00737407571, -0.0157513488, -0.0134566789, 0.0123381717, -0.00863095466, -0.00970333815, -0.0123381717, 0.0104528535, 0.00274437852, -0.0222087093, 0.00085257343, 0.013744954, -0.00328345271, 0.00597305875, -0.000537272601, -0.00709733134, -0.0216090977, -0.00754704047, -0.0115540633, 0.0133990236, -0.00762199191, -0.00330074923, 0.00821007323, -0.000453672837, -0.0084061, 0.00622097543, -0.0467466824, -0.0128685981, 0.00121363788, 0.0103144813, 0.0274207219, -0.0117385602, 0.00336128706, 0.0121767381, 0.011346506, -0.0350542441, 0.0217244066, 0.00143705111, -0.00636511296, 0.0112254303, -0.00414539501, -0.00747785484, 0.000985179911, 0.01185387, 0.0100550335, 0.00474500703, -0.0105220387, 0.0262906831, 0.0120268352, 0.00734524801, 0.00490644109, -0.00487473095, 0.00802557729, 0.00431547733, 0.0191414636, -0.00302688801, 0.0119461175, -0.0117154978, -0.00268816482, 0.00693589775, 0.0216206275, -0.00569919776, -0.0132606523, -0.00618061703, -0.003845589, 0.0238691736, 0.0102625918, -0.00549163949, -0.0103548393, 0.0359997861, -0.00387729937, -0.008037108, -0.0058145076, -0.0293579306, 0.0313182, -0.01254573, 0.00841186568, 0.00383982365, 0.0108449068, 0.00660149846, 0.00133543415, -0.00196027034, -0.00644582976, 0.000735461712, -0.0197295435, 0.00896535348, -0.0440945514, -0.00814088713, 0.0278127771, -0.00242727576, -0.0056905495, -0.00786414277, 0.00368992053, -0.011490643, -0.0149326473, 0.00228313846, 0.0214015394, 0.0209979545, -0.00667645, -0.0219089035, -0.0146328416, -0.0317333154, -0.0044077253, -0.0147942752, -0.0120268352, 0.0129608456, -0.00682058744, 0.0152324531, 0.0255527, -0.0373604447, -0.00584910065, -0.0251837075, 0.00476518646, 0.00697625615, -0.00317102554, -0.00401567155, -0.0087405, 0.000479977956, 0.00810052827, 0.0021490904, 0.00946118683, 0.0105796941, 0.000648258487, 0.00214476627, -0.00606530672, -0.01658158, 0.00857906509, 0.0209287684, -0.00263771671, 0.0180460177, -0.00343335583, 0.00791603234, -0.00810629409, -0.00103490741, 0.000198008915, -0.00829079, -0.0129954387, -0.0153938876, 0.00543398457, -0.00430394663, -0.0092075048, 0.0254373904, -0.0113119129, -0.00173829857, 0.00927092507, -0.00233358657, 0.00506211, -0.00719534513, -0.000939776655, 0.0103317779, -0.011381099, 0.0107065355, 0.00988206826, -0.00760469586, 0.00796215702, 0.0101645784, -0.0103779016, -0.0014802923, 0.00419151923, -0.00941506308, 0.0123151103, 0.00616908586, 0.000956352451, -0.012764819, -0.00636511296, -0.00407332648, -0.015889721, -0.0300959144, 0.0152093917, 0.00831385236, 0.00339011452, -0.0249069631, 0.00513417833, -0.00134984788, 0.00165037462, -0.0215514414, 0.000382685132, 0.00455474574, -0.00529849529, -0.00199774606, 0.00587216252, -0.0171811935, 0.0185533818, 0.0173195638, 0.00258150301, -0.00456627691, -0.0143215042, 0.00279915077, -0.00219665584, 0.0336474627, -0.0171235371, 0.00860789325, 0.0236385539, -0.00193720835, -0.0117154978, 0.00870014075, 0.020398343, -0.00641700253, -0.00697625615, -0.00904607121, 0.031987, -0.00280924025, 0.0174348745, -0.0178038664, 0.00415692618, 0.02014466, -0.00240565534, 0.00814665295, -0.00858483091, -0.00597305875, 0.0149557097, 0.0064400644, -0.00858483091, 0.00979558565, 0.0118077453, 0.00166911248, -0.00282797823, -0.00849258248, 0.00481131067, 0.0108103137, -0.0120268352, 0.0126841022, -0.00608836906, -0.000557091495, 0.00590099, -0.00379946502, -0.00811206, -0.00976675842, -0.0101876399, -0.00642853323, -0.0389747843, -0.00211017323, -0.0215860344, 0.00860789325, -0.00455186283, 0.00397531269, -0.00362073444, 0.0183112305, -0.000671320478, 0.00534750195, -0.0163048357, -0.0221395232, -0.0239614211, -0.0137910778, 0.00860789325, -0.0267519243, -0.029127311, -0.000220710586, 0.0100953924, 0.00897688512, -0.0103317779, -0.0110351685, 0.000147650877, -0.0169736352, -0.00607683789, -0.00965144858, -0.00208422868, 0.00544551574, 0.00605954137, -0.0314104483, -0.0249530878, 0.0043270085, -0.0103606051, -0.0120614273, 0.00813512132, 0.0168467928, 0.00150767842, 0.00388883031, -0.00816971436, -0.0062036789, -0.0101876399, 0.00582603877, -0.0179422386, 0.00232349685, -0.0160511546, -0.0096687451, 0.00876932684, 0.00984747522, -0.000658348144, 0.0239152983, 0.0084176315, -0.0200754739, -0.0173887499, 0.0283432025, -0.013744954, 0.00113580364, -0.039274592, 0.0103836674, 0.00388018205, 0.00931705, -0.00143777183, -0.00404449878, 0.0246302206, 0.0331631601, -0.0205136519, -0.00652078167, 0.0134220859, 7.49064711e-05, -0.0138487332, -0.0162356496, -0.00658996729, -0.0231081266, -0.00413386431, -0.00721264165, -0.0328864157, -0.0117673874, -0.00209575961, -0.00445384951, -0.000228818317, -0.000976531708, -0.0186571609, -0.00791603234, -0.0145867169, 0.00882698223, 0.0237999875, -0.010654646, 0.0159473754, 0.0122459242, 0.00732218614, 0.00491797226, -0.0196142346, -0.014690496, -0.00198189099, 0.0064804228, 0.00385423726, -0.0211939812, 0.00631898874, 0.00379081676, -0.0102164671, -0.043633312, 0.0102279987, 0.0131568732, 0.00230475888, -0.0265904907, 0.00750668207, -0.0158666577, 0.0332784727, -0.0245379712, 0.055671677, 0.0147712128, 0.00459222123, -0.0217359383, -0.002281697, -0.00968604162, 0.0145290624, 0.0235463064, 0.00247772411, 0.0146213099, -0.00671104295, -0.0114041604, -0.0190953389, -0.00847528595, -0.00784108136, 0.00727606192, 0.0027746472, -0.00976675842, -0.00877509266, 0.00489202747, -0.0132606523, 0.00490067573, -0.000657267112, 0.00848105177, 0.00214044214, 1.31975921e-05, -0.0182881691, -0.00375334104, -0.0145175308, 0.000792035658, -0.0102222329, -0.00559253572, 0.00657843659, -0.00572225964, -0.0107930172, 0.00673987065, 0.0152555155, 0.00916714594, 0.000989504, -0.00485166907, 0.0152555155, 0.000438898744, -0.00696472498, -0.00202657352, 0.00853294134, 0.00739137223, 0.0131222801, -0.0333476588, 0.0203868113, -0.028366264, 0.00569919776, -0.020398343, 0.0128109427, 0.0396435857, -0.00582892122, 0.0247685909, 0.0159358438, 0.0190376844, -0.00478248298, 0.00456051109, 0.00607107254, -0.0142984418, 0.00458933879, 0.0109659825, 0.00727606192, -0.00680329092, 0.00399549212, -0.00541092269, -0.0132260593, 0.0082734935, 0.0175501853, -0.0211478565, 0.00125543785, 0.00697625615, 0.00505922688, -0.00303265336, -0.0457319543, 0.0368069559, 0.00285536423, -0.0118423384, -0.00292166765, 0.0259678159, -0.0169621035, -0.0181728583, 0.0033324596, 0.00392054068, 0.00517165428, -0.0174118131, -0.00767388148, 0.0292656831, -0.00357172778, -3.57866447e-05, 0.00317390822, -0.0115310019, 0.00614602398, 0.000944100786, 0.00603071367, 0.000567901821, 0.0312490147, 0.0345238186, 0.0142753804, 0.00222836598, -0.0261984356, -0.0301420391, -0.0113926297, 0.0213554148, -0.0166046433, 0.029012, 0.00225575222, 0.00408485718, -0.008654017, 0.00356596219, -0.0159358438, 0.0154746044, 0.0148058059, -0.001686409, 0.01145605, 0.0195219852, 0.0232464988, 0.00179883628, 0.00533308834, -0.000998873, -0.0318486281, 0.00365532748, 0.00686094584, 0.0170428213, -0.0102164671, 0.00454609748, 0.00462104892, 0.0275821555, 0.00658996729, -0.019671889, 0.0241228547, 0.0187609401, 0.0279742107, -0.00231196592, -0.00270546135, 0.0198679157, 0.00232493831, 0.000747353071, 0.0166622978, 0.00443367, 0.0253682043, 0.0200985353, -0.00216782838, 0.000930407725, 0.00105724868, -0.0134566789, 0.0204559974, 0.0248839017, 0.00141687179, -0.0202253778, 0.00404161587, 0.00609989977, 0.0356307961, 0.0260600634, -0.00524660572, -0.0218858421, 0.0113292094, -0.0189800281, -0.016108809, 0.0079448605, 0.00291013648, -0.0139525123, 0.0043270085, 0.00217215251, -0.00783531554, -0.00390324416, 0.00500157196, 0.0174233429, 0.0210325476, 0.0111562442, 0.00545992935, 0.00484302081, 0.0166161731, -0.00788143929, -0.0123381717, -0.0167891383, 0.000926804263, -0.0156475697, -0.0157167558, 0.0130415633, -0.00612872746, 0.0301420391, 0.00359767256, -0.00458645588, 0.0116117187, 0.00209575961, 0.0121652065, 0.00227016606, 0.0159704369, -0.00321138394, -0.0290581249, 0.00699355267, -0.000601413834, -0.0164086148, 0.0311337039, -0.00570496311, 0.000668798108, -0.00126552745, 0.00331804575, -0.00288419169, -0.000981576508, -0.00543110166, -0.00558100501, 0.0185649134, 0.00100608, -0.0050332821, 0.00949578, -0.0184611343, 0.0121536758]
04 Jan, 2025
Maths 04 Jan, 2025 Mathematics, often referred to as “math” for short. It is the study of numbers, quantities, shapes, structures, patterns, and relationships. It is a fundamental subject that explores the logical reasoning and systematic approach to solving problems. Mathematics is used extensively in various fields such as science, engineering, economics, computer science, and many others. Branches of Mathematics Mathematics is made up of different branches that focus on various aspects of numbers and shapes. These include algebra, geometry, calculus, and statistics, and many others, each with its own purpose and uses. Arithmetic Arithmetic is the branch of math that deals with basic numbers and operations like addition, subtraction, multiplication, and division. It’s the foundation of all math and is used in everyday tasks like shopping or budgeting. Key topics of Arithmetic: What are Numbers? Addition and Subtraction Multiplication and Division Properties of Operations Order of Operations Fractions Decimals Percentages Exponents Number Theory Number Theory is a branch of mathematics that studies properties and relationships of integers. It focuses on concepts like prime numbers, divisibility, and patterns in numbers. Some key topics of Number theory : Number Systems Divisibility Rules Prime Numbers Co-Prime Numbers Euclid Division Algorithm Modular Arithmetic Algebra Algebra is a branch of mathematics that deals with symbols and the rules for manipulating them. It helps us solve problems by setting up equations and representing numbers with letters or symbols, making it easier to work with unknown values. Key topics of Algebra: Variables and Constants Algebraic Expressions Algebraic Equations Coefficients Algebraic Operations & Properties Algebraic Identities Functions Polynomials Geometry Geometry is the branch of math that studies shapes, sizes, and the properties of space. It helps us understand things like angles, lines, circles, and areas. Some Key topics of Geometry: Lines and Angles Geometric Shapes Triangles Quadrilaterals Circles Congruency and Similarity Area and Perimeter Surface Area and Volume Coordinate Geometry Coordinate Geometry connects algebra and geometry using a coordinate system. It allows us to represent geometric shapes like points, lines, and curves on a graph using numbers and equations. Some key topics of Algebra: Points, Lines and Planes Coordinate Axes and Plane Cartesian Coordinate System X and Y Intercept Distance Formula Section Formula Midpoint Formula Conic Section Trigonometry Trigonometry is a branch of mathematics that studies the relationships between the angles and sides of triangles, especially right-angled triangles. Trigonometry defines six fundamental functions that relate the angles of a triangle to the lengths of its sides. Some Key topics of Trigonometry: Trigonometric Ratios Trigonometric Identities Trigonometric Functions Trigonometric Equations Inverse Trigonometric Functions Inverse Trigonometric Identities Applications of Trigonometry Height and Distance Vector Algebra Vector Algebra deals with vectors, which are quantities that have both magnitude and direction. It helps in solving problems related to movement, force, and geometry in 2D or 3D space using simple mathematical operations. Some key topics of Vector Algebra: Types of Vectors Vector Operations Vector Addition Dot and Cross Product of Vectors Vector Space Calculus Calculus is a branch of mathematics that studies continuous change, using concepts such as derivatives, integrals, limits, and infinite series. It is foundational for various fields, including physics, engineering, economics, computer science, and more. Some key topics of Calculus: Differential Calculus Differentiation Integral Calculus Integration Limits in Calculus Continuty Differentiability Applications of Derivatives Applications of Integrals Combinatorics Combinatorics is the study of counting, selecting, arranging, and grouping objects. It helps solve problems related to combinations, permutations, and probabilities in a simple and logical way. Some key topics of Combinatorics: Fundamental Principle of Counting Permutations Combinations Difference between Permutations and Combinations Pigeonhole Principle Inclusion-Exclusion Principle Probability Probability deals with events and quantifies their likelihood of occurring with numerical values ranging from 0 to 1. Higher probabilities indicate a greater chance of the event happening. Some key topics of Probability: Basic Concepts of Probability Probability Theory Conditional Probability Bayes Theorem Random Variables Probability Distribution Joint, Marginal, and Conditional Distributions Statistics Statistics is a branch of mathematics that deals with collecting, organizing, analyzing, and interpreting data. It helps in understanding patterns, making predictions, and drawing conclusions from data sets. Some key topics of Statistics: Descriptive Statistics Data Handling Measures of Central Tendency Inferential Statistics Sampling Methods Difference between Descriptive and Inferential Statistics Measures of Dispersion Set Theory Set Theory is a branch of mathematics that studies collections of objects, called sets. It focuses on understanding relationships between sets, such as union, intersection, and difference. Some key topics of Set Theory: Set Notation Types Of Sets Subsets Set Operations Venn Diagrams Power Set Some Common Math Topics Area of Circle Even and Odd Numbers Quadrilateral Area of Rectangle Factorization Of Polynomial Rational Numbers Area of Triangle Greatest Common Divisor Ratio and Percentages Arithmetic Progressions HCF and LCM Real Numbers Bayes Theorem Heron’s Formula Sequence and series Cartesian Coordinate System Cube and Cube Root Slope of Straight Line Cartesian Product of Sets Natural Numbers Square and Square Roots Whole Numbers Negative Exponents Surface Area and Volume Conic Section Number System The perimeter of a triangle Construction Permutation and Combination Triangles Polynomials Playing with Numbers Circles FAQs on Mathematics What are the main branches of mathematics? Algebra, Number theory, Geometry and Arithmetic are some of the main branches of Mathematics. Who is the father of Math? The “Father of Mathematics” is title is often given to Archimedes. An ancient Greek mathematician, physicist, and engineer who made significant contributions to mathematics and science. Who is the father of Algebra? Muhammad ibn Musa al-Khwarizmi, is generally considered to be the “Father of Algebra”. He was a Persian mathematician who lived during the 9th century. Who discovered zero? zero as a number was The ancient Indian mathematician Brahmagupta was the first to discover and formalize its use in the 7th century. Why is it important to learn mathematics? Mathematics is essential for developing problem-solving and analytical skills. It’s fundamental in various fields like science, engineering, and technology, and helps in making informed decisions in everyday life.. Can mathematics help in other subjects? Absolutely. Mathematics enhances logical reasoning and analytical thinking, skills that are beneficial in subjects like physics, chemistry, economics, and even in understanding complex patterns in languages. How can I improve my mathematics skills? Regular practice is key. Focus on understanding concepts rather than just memorizing formulas. Utilize resources like GeeksforGeeks for guided learning, and don’t hesitate to seek help when needed. What are the major branches of mathematics covered in this guide? This guide covers various branches including Algebra, Geometry, Calculus, Trigonometry, Probability, and more, catering to a wide range of learners. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Mathematics/Maths
https://www.geeksforgeeks.org/maths/?ref=outindfooter
Mathematics
Maths
Mathematics, Maths
GeeksforGeeks
[-0.000334321056, 0.0195390601, -0.0170009676, 0.0123076225, 0.018815916, -0.00746539561, 0.0155405011, 0.00260012713, 0.0556678884, 0.0266145244, 0.0157673694, -0.0225592479, 0.0497125871, -0.0360721126, 0.0158666242, 0.032328777, 0.0353064276, 0.00316375378, -0.0255510788, -0.0332078934, -0.0246152449, -0.0213681888, -0.0225592479, -0.0061715357, -0.0160225965, -9.18884398e-05, 0.00571425352, -0.00206663134, -0.00171126297, 0.0178942624, 0.0274227448, 0.00108028459, 0.0198084675, -0.040184103, -0.00776316086, -0.00927325524, -0.0325272903, -0.0343705975, -0.0391348377, 0.00913855154, 0.0178517252, 0.0190427843, 0.0207584798, -0.00790495332, 0.01236434, -0.0188017376, 0.00971281249, -0.0207584798, -0.00153933908, -0.0101736402, -0.023324931, -0.0192271154, 0.0775890723, 0.0230555236, 0.0179793388, 0.0147464601, 0.0402408205, -0.0182771031, 0.0171285812, 0.00213575549, 0.0130733047, -0.0125841191, -0.0215950571, -0.0174688846, 0.0092165377, -0.00928034447, -0.0318183228, 0.0498543791, -0.000965964049, -0.0281458888, -0.00944340602, 0.0536544286, 0.00852884259, -0.0144345164, 0.0137255518, -0.0231264196, 0.0279473793, -0.0165755879, 0.00918109, 0.00530659873, 0.0131583801, 0.0335765556, 0.00839413889, -0.00797585, 0.0132434554, 0.0138673447, 0.00280927168, -0.0536544286, 0.027933199, 0.0298332237, 0.00426796591, 0.0238353852, -0.00952139217, -0.00199573487, 0.000968622684, -0.00129297387, 0.00752211269, 0.0135483108, -0.0199219, 0.0334631205, -0.00570716383, 0.013661745, 0.0314496644, -0.050648421, 0.0191845782, -0.0402124636, -0.0221196916, 0.0155972177, 0.0483513735, -0.0405244082, -0.0245018117, -0.0423393585, -0.0283869356, 0.0281317085, -0.00538458489, -0.027862303, 0.00330554671, -0.077815935, 0.027394386, 0.0166323055, -0.0296063554, 0.0439841524, -0.0344840288, 0.0175681394, -0.0722009391, 0.0339735746, -0.0312795117, 0.00655083125, -0.00143388053, -0.00147110119, -0.00324882963, 0.0152994525, -0.050790213, 0.0155121423, 0.00493084779, -0.024005536, 0.0174547043, 0.0209711678, -0.00798293948, -0.0273093097, -0.0270966217, -0.00715345144, 0.0211129617, -0.0336332731, -0.0220346153, -0.0153419906, 0.00174405251, 0.0520663485, -0.00984042697, 0.0495424345, -0.0272242352, 0.0276637934, 0.0129882284, -0.0395602174, 0.000355368422, -0.0135837588, -0.00278445776, 0.018674124, 0.0197233912, -0.0277630482, 0.0202054866, -0.00261962367, 0.0184614342, 0.0497125871, 0.036696, 0.0276070759, -0.0131725594, 0.00200814172, -0.00481032394, 0.0460543297, -0.0191278607, -0.0142147373, -0.0366392843, 0.0343138799, -0.00794749148, -0.0153419906, 0.00467207562, 0.0131442007, -0.00864936598, 0.0010776259, -0.0339735746, -0.0432751887, 0.0566037223, 0.0223182011, 0.0216375943, -0.00135855307, 0.0437856428, -0.00356077403, -0.0216092356, 0.0160934925, 0.0146472054, 0.0255085416, 0.0254234653, 0.0350228436, 0.0336049162, -0.0429065265, -0.039872162, 0.0457707457, 0.0355616584, -0.0131371114, -0.00619280431, -0.0618784167, 0.0320168361, 0.0269406494, 0.0570858158, 0.00347392587, -0.000450635533, -0.000237724642, 0.0265861675, 0.00818145, -0.0581918024, 0.023211496, -0.0282309651, 0.00090082793, -0.0211696792, 0.0211838577, -0.0134490551, -0.0203898177, 0.00522861257, -0.0314780213, 0.0110031283, 0.0085501112, 0.0602903366, 0.00901802815, -0.029521279, -0.00710027898, -0.00992550235, -0.0033037744, -0.0570574589, -0.0130449459, 0.00456573116, 0.0583052374, -0.00765681593, -0.0148598952, -0.0122509059, 0.0224316344, -0.021268934, 0.00359622226, -0.00989005435, 0.00391348358, 0.0033037744, -0.01795098, 0.0109251421, -0.0143423509, -0.0634097829, 0.0248421133, 0.0270115454, 0.0594962947, -0.0217084922, 0.0289257485, 0.0174405258, -0.0376601927, 0.0252533127, 0.0158099066, -0.0485498868, 0.0108684245, 0.0145479506, 0.020077873, 0.0189293511, 0.00480677886, 0.0337750651, -0.0136901038, 0.0127542708, 0.00940086879, 0.00333922263, 0.00975535065, -0.00442393823, -0.0120311268, -0.0127400914, -0.0181353111, 0.0397870839, -0.0279473793, 0.0117333615, -0.00903220661, -0.0303436778, -0.017227836, -0.011102383, 0.00568944, 0.00907474477, 0.0347392596, 0.021807747, -0.0258913822, 0.0252533127, 0.0190569647, 0.0125770289, -0.0172136575, -0.0211554989, -0.00562563306, -0.0693650842, -0.000920767547, -0.00767099531, -0.01196732, -0.0147606395, 0.02472868, 0.016036775, -0.00348810502, -0.0496558696, -0.0328108743, -0.0376601927, -0.0272100549, -0.00373624265, -0.00416516606, -0.0216234159, -0.0205032509, -0.0413751639, 0.0120594855, 0.0300033744, -0.00743703684, -0.0117688095, -0.0215241611, -0.014633026, -0.0265578087, -0.0101169227, -0.0269406494, -0.013697193, 0.0432751887, 0.0446647592, -0.00615381123, -0.0205741487, -0.041205015, 0.0080680158, 0.023211496, 0.0202054866, 0.0105281221, 0.0327258, -0.0279899165, -0.00537395058, -0.0190427843, -0.016759919, -0.0158524457, -0.0125770289, -0.0355049409, -0.0217226706, -0.000200836337, 0.0307974163, -0.0464797094, 0.0117191821, 0.0130874841, -0.0136901038, 0.00837287, -0.037376605, -0.0124423262, -0.0198084675, 0.00891168322, 0.00654374203, -0.0290108249, -0.00941504817, -0.00481386855, 0.00615026662, 0.0183621794, 0.0013443738, 0.0567171574, -0.0128251668, -0.0125203123, 0.00634523202, -0.0147889983, 0.0236935914, -0.0450050645, 0.0126053877, 0.0186883025, 0.014058765, -0.0155830383, -0.0249130111, -0.00412262836, -0.0165188722, -0.0486349612, -0.00682378281, -0.00937959924, 0.0191562194, -0.0130094979, 0.0020223211, -0.00856429059, 0.0637500808, -0.0381139293, -0.0282309651, 0.00964191649, -0.00718535483, -0.0156822931, -0.0456573106, -0.00515771657, -0.0152285565, 0.0162352864, 0.0344840288, 0.0352497138, 0.0113434307, -0.0210278854, -0.0207584798, 0.00700811343, -0.0306839813, 0.00884078629, -0.0282309651, 0.0629560426, -0.00166252162, -0.0187024828, 0.0371780954, 0.0125486711, -0.0189718883, 0.0146472054, 0.0416587517, -0.00665008649, 0.0312511511, -0.000333213276, -0.02652945, 0.0243883766, 0.01715694, 0.0053420472, -0.0153419906, -0.00474297209, 0.0276070759, 0.0136830136, 0.0049237581, 0.00202054856, -0.045487158, 0.00153224939, 0.00576742599, 0.0474722609, -0.0302302446, 0.0418005437, -0.0286847018, 0.0312511511, -0.00186812133, 0.0324705727, -0.0309108496, -0.00202409341, -0.0235943366, 0.0129456911, -0.0217793882, -0.039900519, 0.0130236773, 0.0357034504, -0.0383407958, 0.00838705, 0.00355900149, 0.0552141517, -0.000719155825, -0.0348810516, 0.00293688523, 0.00615735631, 0.011605748, -0.0188584551, 0.0350512, -0.0226443242, 0.00808219425, 0.00264621, -0.0175397806, 0.0408363529, -0.0712367445, -0.0200353358, 0.00635232124, 0.0209711678, -0.012038216, -0.00379650458, -0.0345974639, 0.0307690576, 0.0283160396, -0.0358168855, 0.0495707951, 0.00261076167, 0.0209711678, 0.0111094732, 0.0106557356, -0.00779151917, -0.00252568582, -0.011279624, 0.0384825915, -0.0113221621, -0.00875571091, 0.0256361552, -0.0267137811, 0.0169584304, -0.00264975452, -0.0504499115, 0.046536427, 0.0182771031, 0.0426513, -0.00835869089, -0.00972699188, -0.0089684, -0.0439274386, -0.025196597, 0.0457423851, 0.0619351342, 0.00797585, -0.00663945219, -0.0211129617, 0.00845085643, 0.0035182361, 0.00611836324, 0.0112725347, 0.0422542803, -0.0511021577, 0.0201062318, -0.028798135, -0.00198510056, 0.000693012727, 0.00626015617, -0.0268697534, -0.0389079675, -0.0267279595, 0.0378870592, -0.0233391095, -0.00365825649, -0.0427080169, 0.0237644874, -0.0278339442, 0.0103012538, -0.0166039467, -0.00176177663, 0.00164479751, 0.00932997186, -0.0148173571, 0.00764263654, -0.0152285565, 0.0231831372, 0.00574970152, 0.0062247077, -0.00920235831, 0.0127897188, -0.00863518659, 0.0129669597, 0.0272384137, 0.0083799595, -0.00343316025, 0.0092519857, -0.0139665995, 0.00453382777, 0.0276212543, -0.0186457653, -0.017483063, -0.0309108496, -5.30338621e-05, -0.00646221079, 0.0138318967, -0.0163912587, 0.0225876067, -0.00477487547, 0.00897549, 0.0124848643, 0.0185181517, 0.0182203855, -0.0457140282, 0.000470575149, -0.0275361799, 0.00221019657, 0.00560436398, 0.00168556301, 0.0296063554, -0.0242607631, -0.0163487196, -0.0134632345, 0.0243316591, -0.0231547784, 0.00534913689, 0.03071234, -0.0124990428, 0.00580287399, -0.0111945486, -0.0129811391, 0.000168600614, 0.00239452743, 0.00984751619, -0.0129669597, 0.022814475, 0.0308824908, -0.00777734, -0.0208577346, -0.0193972681, 0.01276136, 0.00457991054, -0.0134915933, 0.0064019491, 0.0252391342, 0.00127170503, -0.0183905382, -0.0028943473, 0.0178517252, 0.0339168608, -0.00998221897, 0.0109535009, -0.000890636584, -0.00432822807, -0.0135199521, 0.0110456664, -0.0197517499, 0.00626015617, 0.0027702786, -0.0182771031, 0.00039347526, -0.0138389859, -0.0203472804, -0.00819562934, 0.0426513, 0.00148350815, -0.0175114218, 0.0353064276, 0.0207443, -0.0131654702, -0.0254518241, 0.00120523956, 0.00339948456, 0.00709318928, -0.000494059583, 0.0298899412, -0.00403046282, 0.00555828121, -0.0126833739, -0.00897549, 0.0089684, 0.0045161033, 0.0262316838, -0.0190569647, -0.00270115444, -0.00207194849, -0.00210030726, -0.0276637934, -0.0129456911, -0.0169726089, 0.0265578087, -0.00815309118, 0.000351823604, 0.0043105036, 0.0223040208, -0.024076432, -0.0136192068, 0.0104217771, 0.0239062812, -0.00485640625, 0.0270115454, -9.98089e-05, -0.0438140035, -0.00109800871, -0.00802547764, -0.0210846029, 0.008940042, 0.00509036472, 0.0222331248, -0.0174972434, -0.00312298839, 0.00240693428, -0.00388158043, -0.0118538858, 0.00854302198, -0.0241189711, 0.134986833, 0.00183090067, 0.0392199121, 0.0103154331, 0.0171852987, 0.0100318473, 0.0127542708, 0.00470752409, -0.00996095, 0.0021463898, 0.0433602668, -0.010705363, 0.0175823178, -0.0294078458, -0.00944340602, -0.017880084, 0.021410726, -0.0182629246, 0.00228818273, 0.0121303815, -0.00544484705, 0.009010938, -0.00777025055, 0.0267563183, 0.0129669597, 0.00370433927, 0.00172278355, 0.0326407216, -0.0381706469, 0.00725270621, 0.0183763579, -0.00211625895, 0.00993968174, -0.0120878434, 0.0113292523, -0.00608291477, 0.00197092118, -0.0281600673, -0.0227861181, 0.0190569647, -0.0196666736, -0.0100105777, -0.0101949088, -0.0141225718, 0.00797585, -0.00709318928, -0.0100531159, 0.00749375438, 0.00756465085, 0.0151434802, -0.0214532632, 0.00724561652, -0.0134774139, 0.0219778977, -0.00123537052, 0.0154837836, -0.0214249063, 0.00749375438, -0.0256786924, -0.0175256, -0.00342607079, 0.00784114655, 0.0291242599, -0.00727397529, 0.00876989, -0.00395247666, 0.000640283513, 0.021410726, 0.00332327094, -0.0185465105, -0.00566462614, 0.00948594417, -0.00468625501, 0.00536331581, -0.00815309118, -0.0237786677, 0.0146046672, -0.00211625895, 0.00711445836, 0.0103154331, 0.00521443365, -0.012867705, 0.00247251359, 0.0130378557, -0.00172012497, 0.0136050275, -0.00959228911, 0.00874153152, -0.00852884259, 0.0165755879, -0.00841540843, -0.0220913328, 0.0144628743, 0.00870608352, -0.00816018, -0.0299183, 0.0148031777, -0.00456218608, -0.0105139427, -0.0222473051, -0.0031158987, 0.0128818844, 0.0221905876, 0.0155263217, -0.00191952125, -0.00576388091, 0.026132429, -0.0214390848, 0.000799357425, 0.0228570141, -0.00249201013, 0.00588795, -0.00870608352, -0.0316481739, -0.0284152944, 0.00790495332, 0.00819562934, -0.000354925316, 0.039872162, -0.0255085416, 0.0150725842, 0.0418289, 0.00500883395, -0.04562895, 0.00846503582, 0.0276354346, -0.0173129123, -0.000422498502, 0.0130236773, 0.0520096309, 0.00324351224, -0.0020400451, -0.0081034638, 0.0151293017, -0.0246152449, -0.0128747942, 0.0218502842, -0.0224174559, 0.023863744, 0.0168166365, 0.0167741, 0.0191562194, -0.00783405732, 0.00281990599, -0.0196950324, 0.0157673694, 0.0145763094, 0.00682378281, 0.0120453062, -0.0453170091, 0.0207159407, 0.0175681394, -0.0229988061, -0.0308257733, -0.0364124142, 0.00348987756, -0.0358452424, 0.0083090635, 0.0122225471, -0.0160651337, -0.00738031976, 0.00565399136, -0.0153987082, 0.00251150643, -0.0138815241, 0.00577806029, 0.00889750384, 0.00931579247, 0.0286988802, -0.0422259234, 0.028046634, 0.0173979867, 0.0160509553, 0.0208719131, -0.0178091861, -0.0346541815, 0.0509887226, 0.0159942377, -0.0177382901, -0.0181211308, -0.0107266316, -0.0298332237, 0.0414035246, 0.0189435296, -0.0108967833, 0.0219353605, -0.0113505209, 0.02054579, -0.0318466835, -0.0190853234, 0.023863744, 0.0158808045, 0.0424527898, -0.00547675043, -0.00147553231, -0.0173129123, 0.0289966464, -0.00734487176, 0.00711091328, 0.0361288264, 0.00614672154, -0.0359870344, 0.0276070759, 0.0257779472, -0.00270115444, 0.00896131061, -0.0049166684, 0.000522861257, 0.0120453062, 0.00943631679, 0.0430199616, -0.0137397312, 0.0138673447, -0.000441330369, 0.01236434, 0.019354729, -0.0254943613, 0.00457991054, -0.00870608352, 0.0316765308, -0.00228995527, 0.0120523954, -0.0177808292, 0.00532077812, -0.00159339758, -0.0201771278, -0.0223040208, -0.00691594835, 0.00163859408, 0.0378303416, 0.00828779396, -0.0114923138, 0.0165755879, -0.0307690576, 0.00378941488, -0.00248846528, -0.00440266915, 0.0221055113, -0.00991132297, -0.00111661898, -0.00220842427, -0.0507051386, 0.0240480732, -0.0331228189, -0.0457140282, 0.0273660272, 0.000306627131, 0.00240338943, -0.0102161774, -0.0134419659, -0.0418005437, 0.0248421133, 0.0117191821, -0.0475573353, 0.0223890971, -0.0230555236, 0.0108329765, 0.00539876428, 0.00770644331, 0.00996804051, -0.00428923499, 0.00365471165, -0.0232540332, 0.0136121176, 0.0114355963, 0.00689467927, -0.00539167458, -0.0254376438, -0.0036334428, 0.00436722115, -0.0166464858, 0.00468625501, -0.00216943119, -0.0528320298, 0.00414389698, 0.00619280431, 0.00918817893, 0.0164196175, -0.0105990181, 0.0138035379, 0.0286421627, -0.0187733788, 0.0235801581, -0.0419139788, -0.000438671763, -0.00739449915, -0.0207726583, -0.0157531891, 0.0257637687, 0.00968445465, 0.0182771031, -0.0346541815, -0.000123958, -0.0133994278, 0.0509887226, -0.0566887967, -0.0082736155, 0.0147181023, 0.00464371732, 0.0339452177, 0.00892586261, -0.0385960229, -0.00151541154, -0.00547320535, 0.0366109237, 0.0117262723, 0.022530891, -0.00253454782, 0.000305740919, 0.003000692, 0.0120453062, -0.00469688931, -0.0037575115, -0.0151293017, -0.000178902745, 0.0118964231, -0.00576388091, -0.0210562441, -0.0110811144, -0.0116341067, 0.000471018255, -0.00461890316, -0.00421479344, 0.0128109874, -0.0487483963, 0.00636650063, -0.00173962151, -0.00218361057, -0.0123430714, 0.0144628743, -0.00767808501, -0.0144274263, 0.00843667705, -0.00642321771, -0.0327541567, 0.000347171037, 0.0143352607, -0.00167758716, 0.0228995513, 0.0151151223, 0.0423960723, -0.000212467785, -0.0398154445, 0.0137680899, -0.0191420391, -0.0256503336, 0.0224032756, -0.0188584551, -0.00838705, -0.0137751792, 0.00122384983, -0.0311944354, -0.00984751619, 0.00929452386, 0.00135589449, 0.0145904887, -0.00261607883, -0.0170151461, -0.0341720879, 0.00090082793, -0.0166039467, 0.0215808786, 0.0457423851, 0.00961355772, 0.0343422368, 0.00572488783, 0.00539521966, -0.0120594855, -0.01795098, 0.00915982109, -0.0263025817, 0.0293511283, -0.00134082895, -0.0100389365, 0.0216234159, 0.000502478564, -0.0193121918, -0.00992550235, 0.00196914864, 0.00334631209, 0.00151186669, 0.00999639835, 0.0189293511, -0.0140091376, 0.008940042, 0.0122367265, -0.019936081, 0.0195248816, -0.0086210072, 0.00498047518, 0.00945049617, -0.0228570141, -0.023395827, -0.00299005746, -0.0533992, 0.0120736649, 0.00220842427, -0.00631687324, -0.0159091614, -0.0124210566, -0.00165543193, -0.0203047413, -0.0040517319, 0.001491484, -0.001495915, 0.00630978355, -0.0102516254, 0.00456573116, 0.0175397806, -0.00129563257, -0.00713927206, -0.00436722115, 0.0231122412, -0.00696557574, -0.00708964467, 0.031761609, 0.00508682, 0.00465435162, -0.00342252594, -0.0109747695, 0.00630978355, -0.00434595207, 0.0337750651, 0.0251115207, -0.00969863404, 0.0019319281, 0.00658982433, 0.0066749, -0.0187166613, -0.0145337712, -0.0140091376, -0.00136918761, 0.0222473051, -0.0370363034, 0.0107549904, 0.000542800932, 0.0101381913, 0.00727397529, -0.0211129617, 0.0369228683, 0.0351362787, 0.00225805165, -0.0341437273, 0.00977661926, -0.0109038735, 0.00354127749, -0.0025646789, -0.0124848643, -0.00378232542, 0.0227719378, 0.0135837588, 0.00449483469, -0.0220487937, 0.0164763331, 0.0589858405, -0.0137539105, -0.0224174559, -0.0133285318, -0.00277382345, 0.00647639, -0.00835869089, 0.0262458641, 0.00590212923, 0.00122384983, 0.0338885, 0.0142998127, 0.00232008612, 0.0333213285, -0.00339771202, -0.011244176, -0.0173554495, 0.0115915686, 0.00281990599, 0.003009554, 0.00207194849, -0.00371497381, -0.0145054124, 0.00189293502, 0.0053774952, 0.0125628496, 0.0306556225, 0.0085855592, -0.0404960476, -0.0132930838, 0.023395827, 0.00825234596, 0.00632750755, -0.000484311342, 0.032045193, 0.033519838, 0.0133072622, 0.0161076728, 0.0010687639, 0.00109357771, -0.00767808501, -0.0197942872, -0.0233674683, -0.0254943613, -0.00658982433, 0.0127330013, -0.013761, 0.00892586261, -0.0203614589, 0.007515023, -0.0106628248, 0.00986878481, 0.0208719131, -0.0469618067, -0.00696557574, -0.000893738295, -0.00402337313, -0.0109109627, 0.023282392, -0.00533850212, 0.00160314585, -0.0122792646, 0.0042998693, -0.0296347141, -0.00194787979, 0.0296347141, -0.0167173818, -0.0359303169, -0.00712509267, 0.0080680158, -0.0133923385, 0.0341720879, -0.0036511668, 0.0139240613, -0.0103296116, 0.00395247666, -0.0153278112, 0.00479968917, 0.00382131827, -0.0250406247, -0.0257495884, 0.0155830383, -0.0166464858, 0.0114781344, -0.0118467957, 0.00084233837, 0.00160934927, -0.00710736867, -0.0142643647, -0.0339168608, 0.00911019277, -0.0161502101, -0.0314213037, 0.0158808045, 0.0126266563, -0.0286988802, 0.0133994278, 0.0166464858, 0.0113576101, -0.00629914925, 0.0118397065, -0.00161643897, 0.00649411418, -0.0085855592, -0.0203756373, -0.00886914507, 0.0187733788, 0.00228109304, 0.00284649222, 0.00698684482, 0.020616686, 0.00539521966, 0.0155688589, 0.00399855943, 0.0404960476, -0.00558664, 0.0316481739, -0.010272895, 0.0126833739, 0.00433177268, 0.0131796487, 0.0162494648, 0.0105139427, -0.0437005684, 0.00820980873, -0.0324422121, 0.0169867873, 0.00622825278, -0.0197233912, 0.0026887476, -0.0217510294, 0.0364407711, 0.00903929677, -0.0117617203, -0.0113717895, 0.0138035379, -0.0251540579, 0.0140091376, 0.0253667478, -0.0148598952, -0.0279473793, 0.000638068, 0.0307974163, -0.0279048402, 0.00667844526, 0.0171852987, 0.00639840402, 0.0135837588, 0.0118326163, 0.00161466654, -0.0178233664, -0.0149307912, 0.0107620806, 0.00414035236, -0.00564690167, -0.034852691, 0.00576033629, 0.0507051386, 0.00913146231, -0.0107691698, 0.0130945733, 0.016759919, -0.00101736397, 0.0154554248, -0.0288690329, -0.00689467927, 0.0129882284, 0.0501379669, 0.00131867384, 0.00277559576, -0.0122579951, -0.0085855592, 0.00650120387, -9.8036493e-05, 0.012435236, 0.0217652079, 0.0532574095, 0.0152285565, 0.0238212049, -0.00675643096, -0.00403046282, 0.0348810516, -0.0059588463, 0.0115844794, -0.0390781201, -0.0427930951, -0.00780569855, -0.0145904887, 0.0153278112, 0.00274546491, -0.00900384877, -0.00303968508, -7.49397586e-05, -0.004523193, 0.00652247295, 0.0255794376, 0.000111052635, -0.00254518236, -0.00608291477, 0.010237447, -0.0125486711, -0.0102303568, -0.0133781591, -0.0232398547, 0.00150654942, 0.000824614253, -0.00655083125, -0.00145249092, -0.0275361799, 0.00207372103, 0.0117759, 0.00844376627, -0.000468802726, -0.00305918162, -0.0302869603, 0.0181778483, 0.0133994278, 0.00409426959, 0.0160793141, 0.000669528323, -0.00653310725, 0.0210987814, -0.010272895, 0.0158382654, 0.00842249766, -0.0061715357, 0.00200105226, -0.000679719669, 0.0106415562, 0.031761609, -0.00223146565, 0.0114001483, 0.00818853918, 0.00449128961, 0.0174972434, -0.0130307665, -0.00873444229, -0.0122721745, -0.00443811761, 0.0271249805, 0.0211554989, 0.0368094333, -0.00949303433, 0.00592339784, 0.0213114712, 7.61582924e-05, 0.0208719131, 0.00222437596, -0.015427066, 0.0301451683, -0.0248137563, -0.014633026, 0.00162264239, -0.0174405258, 0.000424270896, 0.00134880492, 0.0195532385, 0.0281033497, -0.0186457653, -0.00561499828, -0.00104572251, 0.00481386855, 0.00963482726, 0.00635232124, 0.0241331495, 0.0286279842, -0.0147181023, -0.0376034752, -0.0121232923, 0.00463662762, -0.0201771278, -0.00669971388, -0.0120736649, 0.0106415562, -0.0104572251, 0.000671743823, -0.00339239486, 0.0207868367, -0.0273518488, -0.00579932937, 0.00275432691, 0.00915273093, 0.0214674436, -0.0233816467, -0.0331511758, 0.000766124693, -0.038567666, -0.0263167601, 0.0203472804, -0.00436722115, 0.0169442501, 0.0150725842, 0.00813182257, -0.00617508031, -0.016036775, 0.0663023517, 0.0101949088, 0.000859619409, -0.0215383396, 0.0395602174, -0.0125770289, 0.00840831827, -0.0191845782, -0.0110811144, -0.021481622, -0.0165188722, 0.00613963231, -0.00884078629, -0.00261430629, 0.00200282456, -0.004470021, -0.0383407958, -0.0119035132, -0.00787659455, -0.0181353111, -0.0198935419, 0.0091456417, 0.003099947, -0.00944340602, -0.0156397559, -0.0208293758, -0.00945049617, 0.0179651584, -0.00371851842, -0.0103508811, 0.00570007414, -0.0181069523, -0.0207017623, 0.00565753644, 0.00666426588, -0.00657919, -0.0277630482, -0.0357318074, 0.00494857179, -0.0216234159, 0.0120240366, 0.0169158913, -0.00470043439, -0.00899675861, -0.0280324537, -0.00677415542, 0.00539167458, -0.0170151461, 0.0148882531, 0.0238353852, -0.0108329765, 0.00259303744, 0.0156822931, -0.0219920762, 0.0362139046, -0.0169442501, -0.00709318928, 0.0151718389, 0.0266996, 0.00764972623, 0.0314213037, 0.00663236249, 0.0230129864, 0.0051648058, 0.00866354536, 0.00698329974, 0.0120736649, 0.0165755879, -0.00252036867, -0.00291738869, -0.00651892787, 0.014200558, -0.0103225224, 0.0430483222, 0.0366676413, 0.0153419906, 0.00470397901, 0.0229988061, 0.00122207741, -0.00073067646, 0.0178233664, -0.00545193674, 0.00780569855, 0.0276779719, -0.00731651299, -0.00397020113, -0.0110243969, 0.018815916, -0.00503719226, -0.0277063306, -0.0206450447, -0.013732641, 0.0244167354, 0.0128747942, 0.0238495637, -0.000401672674, -0.0127826286, 0.0168875325, 0.0208719131, -0.014633026, -0.0205316097, -0.0269122906, 0.0112370867, 0.00683441712, -0.0145195918, 0.0160084181, 0.01535617, -0.0162352864, 0.00190711441, 0.016759919, -0.0238353852, -0.00258594775, -0.0107691698, 0.0185039714, 0.0138673447, 0.00445584161, 0.00629205955, -0.0383691564, -0.01276136, 0.0387378186, -0.014129661, 0.0185890477, 0.00839413889, 0.00911728293, 0.00830197334, -0.0216375943, 0.0131229321, -0.0072668856, -0.00207194849, -0.0328675918, 0.00816727057, 0.00423606252, -0.000474119966, 0.00796167087, -0.0156397559, -0.00439912453, 0.00818853918, -0.0123572499, -0.0296063554, -0.0217084922, 0.0180502348, 0.00133639795, 0.00257708575, -0.00619280431, -0.000772771251, -0.00835869089, 0.0103225224, -0.000193525135, -0.00312121608, 0.00315843662, -0.00414744206, -0.00519316457, -0.00493084779, -0.0255794376, -0.00302373338, 0.0198084675, 0.00114852237, 0.021481622, -0.00687341, -0.0171711184, 0.0033126364, -0.004523193, -0.0134136071, 0.0153845288, 0.00757883, -0.00570361875, -0.00470752409, -0.014633026, -0.00146755646, 0.00623534247, -0.00105281221, 0.0136475656, 0.00815309118, -0.00572843291, 0.0120807542, 0.0126621053, -0.0182062071, -0.0279473793, -0.00842249766, 0.0152427359, -0.0144486958, 0.00233249296, 0.0157673694, -0.00784114655, -0.0113576101, -0.000956215779, 0.0036511668, -0.00477842055, -0.00795458071, 0.0103508811, 0.0405811258, -0.0216375943, 0.0101452814, 0.00363698765, 0.0159942377, 0.00555828121, -0.00845085643, -0.0153845288, -0.0116695547, -0.0133639798, -0.00367952557, 9.00606392e-05, 0.00268697529, -0.0362139046, -0.00856429059, 0.00146223919, 0.00227223104, -0.00512226811, 0.0257637687, 0.0115419412, 0.00942922756, -0.00604392169, 0.0106911836, 0.000374421856, -0.00280218199, -0.00323996763, -0.0229562689, -0.0286279842, 0.0184330754, 0.032045193, -0.0119885886, -0.00272596837, -0.00823107734, 0.00409781467, 0.0122367265, 0.0286988802, 0.00983333681, -0.00565399136, -0.00788368471, 0.00401628343, 0.0148031777, 0.0136404764, 0.0171711184, -0.00934415124, 0.00381422881, 0.00511872349, -0.00672098296, 0.00322047109, -0.020148769, -0.0118822437, 0.0020294108, -0.0103934184, 0.00569652952, 0.00523570227, 0.00771353301, 0.00615735631, 0.00903929677, -0.0151293017, 0.00767808501, -0.0157248322, -0.00909601338, 0.00552283321, -0.0160084181, 0.00385322166, -0.0167741, 0.00678833434, -0.000140242031, 0.0152569152, 0.0157957282, -0.00563981198, 0.00294574723, -0.00206308649, -0.010634467, -0.015894983, 0.00550156413, 0.0193689093, 0.000743969576, -0.00591630815, -0.0104997633, -0.000340524479, 0.0020471348, -0.00395247666, -0.00112636725, -0.0144061577, -0.00864936598, -0.00971281249, 0.00599783938, 0.0107266316, 0.0161643885, 0.00254163751, 0.0285996255, 0.0101169227, 0.0116270166, -0.00446647592, 0.00422542822, 0.00213398295, -0.0187024828, -0.025919741, -0.00854302198, 0.0239629988, 0.0157957282, 0.0176106766, 0.0114426864, -0.0187308416, -0.0143565303, -0.00349519472, 0.0160651337, 0.0104501359, -0.0122154579, -0.017086044, 0.00169619743, -0.0250973422, 0.00520025427, 0.0125841191, 0.00848630443, 0.00317616062, -0.0253667478, 0.00511872349, -0.0199786182, -0.0124635948, -0.0283018611, -0.0163770784, 0.0106415562, -0.0248421133, -0.0282167848, -0.0164621547, -0.0364124142, 0.00155617693, -0.00437076576, 0.0146046672, -0.014200558, 0.00746539561, -0.00387449074, -0.00976244081, -0.0115632098, -0.00307158846, 0.0121729197, 0.00719598914, -0.0115064932, 0.025196597, -0.0066607208, 0.00585959107, -0.0112016378, -0.023863744, 0.00335871917, 0.00202054856, 0.00820980873, 0.00924489647, 0.0146613847, -0.006019108, -0.00602619769, -0.00949303433, -0.0138531653, -0.00442393823, -0.000530837104, -0.0171427596, -0.00566817075, -0.00374333235, -0.000170594576, 0.000819297042, -0.00524279196, -0.0255227201, 0.0108613353, 0.00409072498, -0.00213398295, 0.0387945361, 0.0215099808, 0.0123501606, 0.00762845762, 0.0113292523, -0.0387378186, 0.012399788, 0.00317970547, 0.00283231307, -0.0277772266, 0.0115490304, 0.0238070264, -0.00982624758, 0.02472868, -0.00710027898, -0.0085572, -0.00201877626, 0.0131654702, -0.0145904887, 0.00567526044, 0.00822398718, -0.0245159902, -0.0329526663, 0.01495915, -0.0184472557, -0.00330554671, 0.031761609, 0.00647993525, -0.00618571462, 0.02393464, 0.00204536249, -0.0156255756, -0.000381954596, -0.0298048649, -0.00467916531, -0.0292660519, -0.0132221868, -0.00279332, 0.0083445115, 0.013335621, -0.000702317921, 0.0134986835, -0.00860682875, 0.00376814604, 0.0106911836, -0.0291809775, -0.0161076728, 0.0154412454, 0.0143281715, -0.0149875088, 0.0389930457, 0.0190144256, -0.0133072622, -0.00598366, 9.90334738e-05, 0.0106911836, 0.00110332586, 0.00487058563, 0.00985460542, -0.000652247283, -0.0125203123, 0.00803965703, 0.0155546796, 0.0186883025, -0.00615735631, -0.016618127, 0.0239488184, 0.00242288597, 0.00399855943, 0.00176089047, -0.0110385763, -0.00410844898, -0.00156415277, -0.00624597678, -0.0169867873, 0.00997513, -0.00230236212, -0.0177382901, 0.0125912083, -0.0119035132, -0.00780569855, 0.0225025322, 0.0156539343, 0.00299537485, -1.65748133e-05, 0.0025646789, 0.0128606148, 0.0100176679, 0.0201913081, 0.00587731507, 0.00536686089, 0.0083799595, 0.00710736867, 0.000152427354, -0.00160137343, 0.00808219425, 0.0291242599, 0.0267137811, 0.0100105777, 0.0175397806, 0.0110243969, -0.0322437026, 0.00365825649, -0.0128464354, 0.00652956264, 0.0081389118, -0.026600346, 0.0118113477, 0.00798293948, -0.0229137316, 0.00241402397, -0.0150725842, 0.017298732, 0.00339771202, 0.00404109713, -0.0147606395, -0.0121587403, 0.0153845288, 0.00760009885, 0.0287697781, 0.00412262836, -0.009010938, 0.0320168361, -0.00781987794, -0.00864227675, 0.0456573106, 0.00785532594, -0.00511517841, 0.00442393823, 0.00909601338, -0.0101098334, -0.0123218019, 0.0158808045, 0.0195390601, 0.00729524437, 0.00815309118, 0.00285889907, 0.023353288, 0.0141792893, 0.0212972928, -0.0225876067, 0.0183621794, 0.0155121423, -0.0140304063, 0.0256503336, -0.0219920762, 0.0010731949, -0.00148439431, 0.000176022586, -0.00526051596, -0.0148740737, -0.0128180776, 0.00886205584, -0.00872735213, 0.00618217, -0.0349094085, -0.00284294738, -0.0139878681, -0.00515771657, -0.00310171954, -0.0106273768, -0.000162840268, -0.0120878434, 0.00122739468, 0.0221055113, -0.010669915, 0.00557246059, 0.00262848567, 0.00724207191, -0.0137468204, 0.0175397806, 0.01196732, 0.00493793748, -0.00796167087, 0.0153987082, -0.0136830136, -0.00461535854, -0.00250087213, 0.00906765554, -0.00367243588, 0.00338176033, -0.0179084428, -0.00902511738, -0.0149166118, -0.0204890724, 0.000798028079, 0.0212263949, 0.0176815726, -0.000581350818, 0.0169867873, -0.0156964734, 0.0168875325, -0.00698329974, -0.00341543625, -0.00820271857, 0.00892586261, 0.0133852484, -0.0149166118, -0.00469688931, -0.0219211802, 0.0118680652, 0.00612899754, 0.0026639339, -0.00120701198, 0.00953557156, -0.00758591946, -0.0295496378, -0.00360331172, -0.000909246912, 0.0195674188, -0.00866354536, -0.0148598952, 0.00753629208, -0.00232717581, -0.0163203608, -0.0180360563, 0.00317793316, -0.0191136822, 0.00256645121, -0.0139382407, 0.00666781049, -0.0120098582, 0.00977661926, -0.0157957282, -0.000134814021, -0.00251682382, -0.0210137069, -0.00244592736, -0.0257921256, -0.0185606889, 0.00325946393, 0.00704710651, -0.0199786182, -0.0130378557, 0.0101878187, 0.00561145367, 0.0317332484, 0.0262884013, 0.0184330754, 0.00782696716, 0.00721016852, 0.031761609, 0.0172136575, -0.00950721279, -0.00869190414, 0.000739538518, -0.0026887476, 0.00371851842, -0.0215666983, 0.0204039961, 0.00179811113, -0.0085572, 0.0227294, -0.00356077403, -0.0203614589, -0.00591276353, 0.00997513, 0.00580996368, 0.00716763036, -4.92605659e-06, -0.0177666489, -0.00278268545, 0.0100460257, 0.000734664383, -0.0190286059, -0.00769935409, -0.0144983232, 0.0142927235, -0.000957102, 0.00584186707, 0.00359090487, 0.013761, -0.0138389859, -0.022204766, 0.00881951768, 0.00280572684, -0.00546966074, 0.0231122412, 0.00996804051, 0.0170718636, -0.0032151537, -0.00799711887, -0.0051116338, -0.0219920762, 0.00399146974, -0.0132505456, 0.00205422449, -0.00513644749, 0.0271249805, 0.0049343924, -0.0105281221, 0.0117050027, -0.004470021, 0.00337644317, 0.0186599437, 0.00081397983, 0.0148882531, -0.00911728293, 0.00103774667, 0.00708609959, 0.0247712173, -0.0243600179, 0.0171427596, 0.0112583553, -0.0068131485, -0.0215950571, 0.0035182361, 0.0107620806, -0.00217120373, 0.000503364776, -0.00653310725, 0.0139524201, 0.0200211555, 0.00135412207, 0.0128464354, -0.00940795802, 0.00190888671, -0.0271108, 0.0123785194, 0.00746539561, 0.0195107013, 0.00228641042, -0.0140374964, -0.0346541815, 0.000649588648, -0.000611481839, -0.0066075488, -0.0103934184, -0.000335428806, -0.0149307912, 0.0106557356, -0.0101098334, -0.017880084, 0.000682378304, 0.00401273882, 0.0104855839, 0.0104288673, 0.0047287927, -0.0101949088, 0.0110527556, 0.00357495318, 0.00522861257, -0.00557600521, -0.0111236526, -0.00887623522, 0.000394583, 0.00664654188, -0.00908183493, 0.010308343, 0.00986169558, -0.000731119595, -0.00505491672, -0.000633193878, -0.0177808292, 0.0196808539, -0.0182629246, -0.0119176926, -0.00935833063, -0.00956393, -0.0103650605, 0.00654019695, -0.00449128961, 0.0302018858, 0.00415807636, 0.014633026, -0.0139665995, 0.00479968917, -0.0165614095, 0.0108258873, -0.00301487138, -0.021807747, -0.0120949335, 0.019425625, 0.0167741, -0.0231689587, 0.00510808872, 0.00525342673, -0.0154837836, -0.00856429059, -0.00769935409, -0.0188017376, -0.0175256, 0.00376460119, -0.0249697287, 0.00211803126, 0.000833033235, 0.0155121423, 0.0131796487, -0.0018663489, 0.0135270413, -0.00849339366, -0.00271178898, -0.022204766, -0.00132842211, -0.0190286059, -0.0131087527, -0.00320983655, -0.007479575, 0.0176106766, 0.0143565303, -0.0127471806, 0.00833033212, 0.00602619769, -0.0125557603, -0.0135270413, 0.0142785441, 0.00412617298, 0.00430341437, -0.0116341067, -0.0351079181, -0.00523215765, -0.00150743569, -0.00141704269, -0.0106982738, 0.0117191821, -0.0140871238, -0.021410726, -0.0146613847, -0.0173554495, 0.0139595103, 0.0111520104, 0.026671242, -0.00662881741, 0.0202905629, -0.014420337, 0.00403755251, 0.0160225965, 0.00738740945, 0.0304854717, 0.0106628248, -0.00415807636, 0.0083799595, 0.0156964734, -0.0148315364, -0.00184507994, -0.0046756207, -0.000153645888, 0.010308343, 0.0256361552, 0.00133373938, 0.0129598705, 0.00253100297, 0.0048812204, 0.00706837559, 0.00255049951, -0.0165046919, -0.00324528478, -0.0153845288, 0.00633105263, -0.00405882159, -0.00947176479, 0.00534913689, 0.0155830383, 0.0274369232, -0.00303614023, -0.000586224953, 0.0116979135, -0.00649765925, 0.0195390601, 0.0353347883, 0.0216659531, -0.00211625895, -0.00700456882, -0.0159375202, -0.0010191364, -0.00728815468, -0.00510808872, -0.000455952773, 0.00369370473, 0.0133498, 0.00319565716, -0.0160793141, -0.00130626699, 0.00357495318, 0.0210562441, -0.00150654942, -0.0238070264, -0.015894983, 0.0249697287, -0.000557423278, 0.000586224953, 0.0061715357, 0.01456213, -0.00478551, -0.00731651299, -0.0208577346, 0.00181494898, -0.0137468204, -0.0105635701, 0.0108755147, 0.00606873585, -0.0213540085, 0.0042927796, -0.000861834909, 0.0119531406, -0.00770644331, 0.0096277371, 0.00867063552, 0.00528533, -0.0162211061, 0.00316907116, -0.00621052831, -0.0285287295, -0.0219353605, -0.0094575854, -0.0143777989, -0.0100247571, -0.00839413889, 0.0183338206, -0.0245018117, -0.00362635311, 0.00236616889, -0.00231122412, 0.0139453309, -0.00176620763, 0.0248562936, 0.00934415124, -0.00589858415, -0.0242040455, -1.44562282e-05, -0.00567171536, 0.0125699397, 0.0266996, 0.0272384137, 4.25655599e-05, 0.0169300716, 0.000491401, 0.00388158043, 0.000737766153, 0.0114568658, -0.0145337712, 0.0221480485, 0.00984042697, 0.0134277865, -0.00205776934, 0.00623534247, 0.00135146349, -4.8048958e-05, -0.00533141242, -0.00108205702, -0.00440266915, -0.00346506364, -0.0296630729, 0.00590212923, -0.0147039229, -0.0158382654, -0.0437572859, -0.0149024324, -0.0116837341, -0.0104714045, 0.0135979382, -0.0196524952, 0.00760718854, 0.000593314646, 0.0285003707, 0.00586668076, -0.00859973859, -0.00256645121, -0.00197092118, -0.0278055854, -0.000106289277, -0.000841009081, 0.00646575587, 0.0212405752, 0.00989005435, 0.0103934184, -0.00541294366, -0.0193830878, 0.00755047146, -0.0203756373, 0.00566462614, -0.0132009182, 0.0136688342, -0.0260757115, -0.0142501853, -0.0040517319, 0.00867063552, -0.0123501606, -0.00574970152, 0.00187875575, -0.00954975095, -0.0167741, -0.0157390106, -0.0274936408, -0.00152693223, 0.0175964981, -0.00196560402, 0.0134632345, 0.00573197752, -0.0151151223, -0.0124706849, -0.0147322807, -0.00298828515, -0.00301132654, 0.0162352864, -0.000919881393, 0.0296914317, 0.00064382836, -0.000723586825, 0.00908892415, -0.00400564913, 0.0159517, -0.000335871911, 0.0144061577, 0.0139665995, 0.00548029505, 0.0222898424, -0.0142147373, 0.0114710443, -0.00239807228, 0.00770644331, -0.00408363529, -0.00277382345, -0.00218892773, 0.0172561947, 0.000913677912, 0.00964191649, -0.000568500836, -0.000251903926, -0.0141438404, -0.0038567665, -0.0346541815, -0.000906588277, 0.00679187942, -0.00357495318, 0.000193635919, 0.0306839813, 0.00762136793, -0.00848630443, -0.0187024828, -0.004587, 0.00535622658, -0.00433531776, 0.000387271837, -0.0017759559, -0.0022935, -0.00361040141, -0.0174405258, 0.0091456417, -0.0112867141, 0.00936542079, 0.00124511879, 0.00923071709, 0.0125061329, 0.00960646849, -0.0122721745, 0.00606519077, 0.00603683246, -0.00690885866, 0.0117971683, -0.00200459687, -0.0132434554, 0.00609709416, -0.00525697134, -0.0206734035, -0.0105635701, -0.00161909754, 0.015824087, -0.0057709706, -0.0151860183, 0.0128960628, 0.000350494287, 0.00580996368, -0.00952848233, -0.0264869109, 0.000716940267, -0.00501237856, 0.0104217771, 0.0203614589, -0.0338317826, -0.00260189944, 0.0057709706, 0.013661745, 0.0170435049, 0.0186032262, 0.0135554, 0.0107975286, -0.00358381518, -0.00599783938, -0.0135483108, 0.00569298444, 0.00693012727, -0.00221905881, -0.0315063782, -0.00922362786, 0.002982968, 0.0049343924, -0.0163061824, 0.000900384854, 0.00313894, 0.0239204597, 0.00839413889, -0.0157957282, 0.00522152334, -0.00977661926, -0.00546257105, -0.00139577372, 0.0155546796, 0.02054579, 0.0164196175, -0.0125628496, -0.0259339195, 0.00839413889, 0.0164054371, -0.000237281536, -0.0110102175, -0.015427066, 0.00208081072, 0.0260048155, -0.00906765554, 0.0151434802, 0.0176106766, 0.00188584544, 0.0101665501, -0.0109180529, -0.0246861428, 0.0108684245, 0.0166606642, 0.00714990636, 0.0406094827, 0.0359303169, 0.00173341809, -0.0164763331, 0.00106167421, -0.0267137811, -0.0114426864, 0.026458554, -0.00839413889, 0.00128854287, 0.00581350829, -0.00521797827, -0.00245124451, 0.0066252728, -0.0167457405, -0.00385322166, 0.0119885886, 0.00877697952, 0.00491312379, 0.00139134272, -0.0122083677, 0.0121587403, -0.0365258493, -0.0257921256, 0.0133498, 0.0218644626, 0.0178233664, -0.00104217778, 0.0257495884, 0.0137042832, -0.0107620806, 0.00354659464, 0.0208435543, 0.0157106519, -0.0208293758, -0.00555473659, 0.00186812133, 0.010669915, 0.00911728293, 0.00612545293, -0.00515771657, -0.014491233, 0.0208435543, -0.00127347733, 0.0154128866, 0.0179651584, 0.00993259158, 0.0126266563, -0.00386031135, 0.000825500465, 0.0153419906, -0.0219637193, -0.012399788, -0.0168733541, -0.0049414821, -0.00913146231, 0.0187308416, -0.0109676803, 0.016036775, -0.0116908234, -0.00384258735, 0.0186599437, -0.00382840796, -0.00852175243, -0.016759919, 0.00149680115, -0.00423606252, 0.0271249805, -0.00241402397, 0.0116270166, -0.0109889489, 0.00874153152, -0.00179811113, 0.027465282, -0.0060120183, 0.00972699188, -0.0152285565, 0.00632750755, 0.000949126144, -0.000702317921, -0.0178091861, 0.00232363096, -0.027252594, -0.0116908234, 0.0027791406, -0.0125770289, -0.00291738869, 0.0169300716, -0.00815309118, 0.0200211555, -0.0177524704, 0.004587, -0.00989714358, -0.00818145, 0.0091456417, 0.009010938, 0.00292447838, 0.0187308416, 0.0161785688, -0.00186812133, -0.00446293131, 0.0109251421, 0.0161643885, 0.0122154579, 0.0284720119, -0.0177666489, -8.01462156e-05, 0.0122012785, -0.00818145, -0.00295992661, 0.000584895664, -0.00264621, 0.0104997633, 0.0136192068, -0.0119035132, 0.0277772266, -0.00142413238, 0.00975535065, 0.00328782271, -0.0116270166, 0.0336899906, 0.0126337465, -0.00956393, 0.000790938444, 0.00484222732, 0.0208719131, 0.00986169558, 0.00817436, 0.00760009885, -0.0313362293, -0.00524633704, 0.0070612859, 0.00461890316, -0.00107496732, 0.0200920515, -0.00714636175, 0.0367810763, 0.0270115454, 0.00963482726, -0.00868481491, -0.00723852683, -0.0131300213, -0.01456213, -0.0246861428, -0.0105564808, 0.00707192, 0.0287130605, 0.0008303746, 0.00173784909, -0.00866354536, -0.00884787645, -0.00343847764, -0.0233391095, 0.0158808045, 0.00820271857, -0.00426087622, -0.0102870744, -0.0177808292, -0.00204181764, -0.00656855572, -0.0170009676, 0.0163203608, 0.000436456234, 0.0012335981, 0.00211271411, -0.00397374574, -0.00598011492, -0.0308824908, -0.0101665501, -0.00965609588, -0.0300317332, -0.00539876428, 9.78703247e-05, -0.00691594835, -0.00120878441, 0.0073023336, -0.0144061577, -0.00503364764, -0.0208719131, 0.000665983476, -0.00626015617, -0.00881951768, -0.00754338177, 0.00553346751, -0.012974049, 0.00102888467, 0.00848630443, 0.0182062071, 0.00923071709, -0.00388867, 0.00521443365, -0.0186457653, 0.0130094979, 0.0146755641, 0.0159233417, -0.0109038735, -0.00412262836, -0.0289541073, 0.00336580863, -0.00259658229, 0.00285889907, 0.0152001977, 0.0111449212, 0.0118822437, 0.0066749, 0.00517189549, -0.0261182506, -0.0208151955, -0.0184330754, 0.00217829319, -0.00640903879, -0.0176957529, 0.0179793388, -0.0125841191, 0.0151009429, 0.00477133086, -0.0219920762, -0.0114497757, -0.00213221065, 0.032186985, 0.0047287927, 0.00711445836, 0.00437431084, -0.0017626629, -0.00916691, -0.00556182628, 0.0107620806, -0.00675288634, -0.00328959501, 0.0237503089, -0.00554410182, -0.0128960628, -0.016689023, 0.0176248569, 0.0159233417, -0.0157390106, -0.00333745, -0.00857847, -0.0183338206, 0.00501946826, 0.0084792152, -0.011428507, 0.0132150976, 0.00932997186, 0.0146613847, 0.0044842, 0.00316375378, -0.00762845762, 0.0120453062, 0.0204181764, 0.00361926341, 0.00373624265, 0.00525697134, -0.00517544057, -0.00453737238, -0.000308178, -0.0282451436, -0.00944340602, -0.00850048382, 0.0070967339, -0.0181920268, 0.0207017623, 0.0126479259, 0.0197375696, -0.0166323055, -0.000435570022, 0.0049060341, -0.000656678341, -0.00658627972, -0.00170328713, -0.0140516749, 0.00211094157, 0.002982968, -0.0102870744, 0.0145337712, -0.00591985323, 0.00773480209, 0.000969508896, -0.0159375202, -0.00684505189, -0.00658273511, 0.0172420144, 0.0171852987, -0.0177241117, 0.0118397065, -0.0363840535, -0.010308343, 0.0109747695, -0.00460472424, -0.000459497591, 0.00111218798, 0.00278091314, 0.00982624758, -0.0102445362, -0.0188300963, 0.00465789624, 0.0121587403, -0.017086044, -0.0167741, 0.0242891219, 0.000766124693, 0.0166606642, -0.0178942624, -0.00976244081, -0.00828070473, 0.00103597424, 0.0152994525, -0.00336049148, 0.00859973859, -0.00484931702, -0.00952139217, -0.00845794566, 0.0178233664, 0.00120169471, 0.00325946393, 0.00227400335, -0.0134845041, -0.00199219, 0.00464726193, -0.0121870991, 0.00719244452, -0.000982802, 0.00447356561, -0.0147181023, 0.00691949297, 0.0038638562, -0.016618127, -0.0266428832, -0.00613608724, -0.0178942624, -0.0146046672, -0.012903153, 0.00327541563, -0.000456838956, 0.00018488463, -0.00798293948, -0.00470043439, 0.00404818682, -0.00908892415, -0.0206025075, -0.0125415809, 0.00764972623, 0.000312609016, -0.0211271401, 0.00942922756, -0.00264443737, 0.0137468204, 0.000532609527, 0.00700456882, 0.0228995513, -0.0020294108, -0.00239275489, 0.00542712305, 0.00307690562, -0.0197092108, -0.00607582508, 0.00238743774, -0.00393120805, 0.00336049148, 0.0156255756, -0.0117050027, -0.0134065179, -0.00276673376, 0.0111803692, -0.00377523573, -0.0220062565, 0.0176815726, -0.0164763331, -0.00217474834, 0.00338353286, 0.0298899412, -0.000295328, -0.0114001483, -0.0100743845, 0.000760807481, 0.0316765308, -0.00717826514, -0.0109676803, -0.00462599285, -0.00577806029, 0.00996804051, 0.00408009, 0.0112299966, -0.0120949335, 0.00125575322, -0.0163345411, 0.0131725594, 0.0190002471, -0.00984042697, 0.0121303815, -0.016036775, -0.00531368842, -0.0144416057, -0.000184109202, -0.0206450447, 0.0734487176, 0.0174405258, 0.00423606252, -0.0134915933, 0.00610063924, -0.00656146603, -0.020616686, 0.0408647098, -0.0158666242, 0.019354729, -0.00588795, 0.0130236773, -0.000735550595, 0.00646221079, -0.00786950532, -0.0211271401, -0.000172477754, -0.00776316086, -0.0209002718, -0.0343422368, 0.0073023336, -0.0177099314, 0.000985460589, -0.0033214984, 0.00317261601, -0.0209711678, -0.01416511, -0.0191987567, 0.0142643647, 0.00395247666, -0.000651804206, 0.0251115207, 0.000327009853, -0.003000692, -0.046820011, -0.00320983655, -0.00092253997, 0.0104643153, 0.00799003, -0.0138106272, -0.0226585045, 0.00105103978, 0.0218928214, -0.0199927967, -0.00101647782, -0.023537619, 0.0236226954, 0.00818145, -0.0132576348, -0.0314496644, -0.000870696967, -0.00848630443, -0.0205741487, -0.029379487, 0.0213965476, 0.00173873536, -0.0207159407, -0.00937251, -0.00104395009, 0.0131654702, 0.00742285792, -0.00035448221, 0.000323465036, -0.00105192605, -0.000356476172, -0.0203472804, -0.017412167, -0.0115915686, -0.0172845535, 0.00263557537, -0.00306095392, -0.00770644331, 0.0193121918, -0.0231689587, -0.00766390562, 0.0022438725, -0.00151718396, 0.0296914317, 0.00365825649, -0.00589858415, -0.00718889944, -0.00461890316, -0.0167457405, -0.00276850606, 0.00928034447, -0.00224741735, -0.0209002718, -0.0262458641, -0.0141580198, -0.0232540332, -0.000952671, 0.0253667478, -0.00982624758, 0.0219920762, 0.0138389859, 0.00125398091, -0.0184330754, 0.00604392169, 0.0285712667, 0.0101949088, 0.0235943366, 0.00389575958, -0.00245478936, -0.00594466692, -0.00139931857, 0.00606519077, -0.0142430961, 0.0146755641, 0.00935833063, 0.0289824661, 0.00403755251, 0.00624597678, 0.0138248065, 0.0296914317, 0.0222614836, -0.00307336077, 0.00941504817, 0.00519316457, 0.0145195918, 0.014633026, 0.00554055721, 0.0101878187, 0.0083090635, 0.00442039315, -0.00499110948, 0.00801129825, -0.00957811, -0.00916691, 0.0153419906, -0.00403755251, 0.00874862168, 0.00658627972, 0.00637359032, -0.0129669597, 0.0223890971, 0.0294362046, -0.00147996331, -0.0027773683, -0.0104997633, -0.00025589185, 0.0179793388, -0.010272895, 0.0148740737, 0.0240197163, -0.00436367607, -0.0120098582, -0.0116908234, -0.0128889736, -0.0401273891, 0.00792622287, -0.0081389118, 0.0230838824, -0.0153419906, 0.000443545869, 0.0129315117, -0.00154731493, -0.00526406104, -0.0115703, 0.0111449212, -0.0124919536, 0.00115029479, 0.00374333235, 0.00621407339, -0.0117971683, 0.00119903614, -9.79811e-05, 0.0165897682, 0.0253525693, 0.00989005435, 0.0063948594, 0.00327009847, -0.00274900952, 0.0077206227, 0.000700545497, -0.0231831372, 0.012435236, 0.0186883025, 0.00286067161, 0.0187308416, 0.000363787374, -0.00981915742, -0.00357495318, -0.0186315849, 0.0433602668, -0.00688758958, 0.00224032765, -0.00889750384, -0.0231264196, 0.0322437026, 0.0132930838, -0.0122296363, -0.0111591006, -0.00769226439, -0.00469688931, -0.00082062633, 0.00468271039, 0.00973408204, 0.00510099903, -0.0130591253, -0.00378587, 0.0113505209, 0.00776316086, -0.00227932073, 0.0147748189, -0.00868481491, 0.0242465846, -0.00699393405, -0.000663768, 0.00397729035, 0.00752920238, 0.00523570227]
18 Feb, 2022
CBSE Class 12 Maths Term 1 2021 Answer Key 18 Feb, 2022 The Central Board of Secondary Education (CBSE) conducted Term-1 Class 12 Board examination 2021-22 of Mathematics on Monday, December 6, 2021. The paper was rated lengthy and difficult as stated by students. Lets discuss the structure of CBSE Class 12 Maths Term 1 Question Paper 2021. The question paper consists of 50 questions divided into sections A, B, and C in which the Section: A consists of 20 questions of 1 mark each. Students needs to attempt any 16 questions,B consists of 20 questions of 1 mark each. Students needs to attempt any 16 questions,C consists of 10 questions of 1 mark each. Only eight questions are needed to be attempt. Section A evaluated the knowledge and understanding of the students, where a few questions required little calculations. Section B was challenging, requiring students to have a thorough comprehension of the ideas in order to answer the problems. Linear Programming questions take a long time to answer. Section C assessed the students’ ability to apply their knowledge. This portion appears to be challenging for an average student to pass. Now, lets analyze the CBSE Class 12 Maths Term 1 Paper Series SSJ/1 – Set 4 for 2021 with the answer keys and their solutions of the Class 12 Maths Paper. The chapter ‘Applications of Derivatives‘ got the most marks and questions, followed by ‘Matrices‘ and ‘Relations and Functions.’ The least number of questions were asked from ‘Determinants‘ and ‘Inverse Trigonometric Functions.’ There is only one case study question in ‘Applications of Derivatives. Section A was easy, section B was very complex, and section C was relatively easy but time-consuming, also the Question 42 from section C had symbols not present in the NCERT textbooks. Therefore, it is remarked that certain questions required students to think creatively and that the case study problems required good thinking skills. Hence, the CBSE Term 1 Maths paper 2021 was moderately difficult and time-consuming, with certain questions requiring additional time to answer. Here, the Solved Questions Paper (along with the Answers and the explanation in-depth for each question) of the Maths CBSE Class 12th Term 1 Exam is provided as: CBSE Class 12th Term 1 Maths Board Exam Question Paper and Answers Key 2021-22 (SET 4)Subject- Mathematics Term- ITime allowed- 90 minutes Maximum Marks- 40 General Instructions Read the following instructions very carefully and strictly follow them: This question paper contains 50 questions out of which 40 questions are to be attempted. All questions carry equal marks.The question paper consists of three Sections – Section A, B, and C.Section – A contains 20 questions. Attempt any 16 questions from Q. No. 01 to 20.Section – B also contains 20 questions. Attempt any 16 questions from Q. No. 21 to 40.Section – C contains two Case Studies containing 5 questions in each case. Attempt any 4 questions from Q. No. 41 to 45 and another 4 from Q. No. 46 to 50.There is only one correct option for every Multiple Choice Question (MCQ). Marks will not be awarded for answering more than one option.There is no negative marking.SECTION – A Question Number 1 to 20 are of 1 mark each. Any 16 Questions from Question 1 to 20 are needed to be attempted. Question 1: Differential of log [log (log x5)] w.r.t. x is Answer: (a) Question 2: The number of all possible matrices of order 2 × 3 with each entry 1 or 2 is (a) 16 (b) 6 (c) 64 (d) 24 Answer: (c) Question 3: A function f : R → R is defined as f(x) = x³ + 1. Then the function has (a) no minimum value (b) no maximum value (c) both maximum and minimum values (d) neither maximum value nor minimum value Answer: (d) Question 4: If sin y = x cos (a + y), then dx/dy is (a) cos a/cos² (a+y) (b) – cos a/cos² (a+y) (c) cos a/sin² y (d) – cos a/sin² y Answer: (a) Question 5: The points on the curve x²/9 + y²/25 + 1, where the tangent is parallel to the x-axis are (a) (±5, 0) (b) (0, ±5) (c) (0, ±3) (d) (±3, 0) Answer: (b) Question 6: Three points P(2x, x + 3), Q(0, x) and R(x + 3, x + 6) are collinear, then x is equal to (a) 0 (b) 2 (c) 3 (d) 1 Answer: (d) Question 7: The principal value of  is (a) π/12 (b) π (c) π/3 (d) π/6 Answer: (a) Question 8: If (x²+ y²)² = xy, then dy/dx is Answer: (c) Question 9: If a matrix A is both symmetric and skew-symmetric, then A is necessarily (a) Diagonal matrix (b) Zero square matrix (c) Square matrix (d) Identity matrix Answer: (b) Question 10: Let set X = {1, 2, 3} and a relation R is defined in X as : R = {(1, 3), (2, 2), (3, 2)}, then minimum ordered pairs which should be added in relation R to make it reflexive and symmetric are (a) {(1, 1), (2, 3), (1, 2)} (b) {(3, 3), (3, 1), (1, 2)} (c) {(1, 1), (3, 3), (3, 1), (2, 3)} (d) {(1, 1), (3, 3), (3, 1), (1, 2)} Answer: (c) Question 11: A Linear Programming Problem is as follows: Minimise                             z = 2x + y subject to the constraints   x ≥3 , x ≤9, y ≥ 0 x – y ≥ 0, x + y≤14 The feasible region has (a) 5 corner points including (0, 0) and (9, 5) (b) 5 corner points including (7. 7) and (3, 3) (c) 5 corner points including (14, 0) and (9, 0) (d) 5 corner points including (3, 6) and (9, 5) Answer: (b) Question 12: The function  is continuous at x = 0 for the value of k as (a) 3 (b) 5 (c) 2 (d) 8 Answer: (d) Question 13: If Cij denotes the cofactor of element pij of the matrix , then the value of C31 . C23 is (a) 3 (b) 5 (c) 2 (d) 8 Answer: (a) Question 14: The function of y = x2 e-x  is decreasing in the interval (a) (0, 2) (b) (2, ∞) (c) (-∞, 0) (d) (-∞, 0) ∪ (2, ∞) Answer: (d) Question 15: If R= {(x, y); x, y ∈ z, x² + y² ≤ 4} is a relation in set Z, then domain of R is (a) {0, 1, 2} (b) {-2, -1, 0, 1, 2} (c) {0, -1, -2} (d) {-1, 0, 1} Answer: (b) Question 16: The system of linear equations 5x + ky = 5, 3x + 3y = 5; will be consistent if (a) k ≠ -3 (b) k = -5 (c) k = 5 (d) k ≠ 5 Answer: (d) Question 17: The equation of the tangent to the curve y (1 + x2) = 2 – x, where it crosses the x-axis is (a) x – 5y = 2 (b) 5x – y = 2 (c) x + 5y = 2 (d) 5x + y = 2 Answer: (c) Question 18: If  are equal, then value of ab – cd is (a) 4 (b) 16 (c) -4 (d) -16 Answer: (a) Question 19: The principal value of  is (a) π/8 (b) 3π/8 (c) -π/8 (d) -3π/8 Answer: (a) Question 20: For two matrices  and  P – Q is Answer: (b) SECTION B In this Section attempt any 16 questions out of the Questions 21-40. Each question is of one mark. Question 21: The function f(x) = 2x3 – 15x2 + 36 x + 6 is increasing in the interval (a) (∞, 2) ∪ (3, ∞) (b) (-∞, 2) (c) (-∞, 2) ∪ (3, ∞) (d) (3, ∞) Answer: (c) Question 22: If x = 2 cosθ – cos 2θ and y = 2 sinθ – sin 2θ, then dy/dx is Answer: (b) Question 23: What is the domain of the function cos-1 (2x – 3)? (a) [-1, 1] (b) (1, 2) (c) (-1, 1) (d) [1, 2] Answer: (d) Question 24: A matrix A = [aij]3 × 3 is defined by The number of elements in A which are more than 5, is (a) 3 (b) 4 (c) 5 (d) 6 Answer: (b) Question 25: If a function f defined by. is continuous at x = π/2. then the value of k is (a) 2 (b)3 (c) 6 (d) – 6 Answer: (c) Question 26: For the matrix  is (a) 2I (b) 3I (c) I (d) 5I Answer: (a) Question 27: Let X = {x2 : x ∈ N} and the function f : N → X is defined by f(x) = x2, x ∈ N. Then this function is (a) injective only (b) not bijective (c) surjective only (d) bijective Answer: (d) Question 28: The corner points of the feasible region for a Linear Programming problem are P(0, 5). Q(1, 5), R(4. 2) and S(12, 0). The minimum value of the objective function Z = 2x + 5y is at the point (a) P (b) Q (c) R (d) S Answer: (c) Question 29: The equation of the normal to the curve ay2 = x3 at the point (am2, am3) is (a) 2y – 3mx + am3 = 0 (b) 2x + 3my – 3am4 – am2 = 0 (c) 2x + 3my + 3am4 – 2am2 = 0 (d) 2x + 3my – 3am4 – 2am2 = 0 Answer: (d) Question 30: If A is a square matrix of order 3 and | A | = -5, then | adj A | is (a) 125 (b) – 25 (c) 25 (d) ± 25 Answer: (c) Question 31: The simplest form of  is Answer: (c) Question 32: If for the matrix , | A3 | =125, then the value of α is (a) ±3 (b) -3 (c) ±1 (d) 1 Answer: (a) Question 33: If y = sin (m sin-1 x), then which one of the following equations is true? Answer: (b) Question 34: The principal value of [tan-1 √3 – cot-1 (-√3)] is (a) π (b) -π/2 (c) 0 (d) 2√3 Answer: (b) Question 35: The maximum value of  is Answer: (a) Question 36: Let matrix X = [xij] is given by  , Then the matrix Y = [mij] = Minor of xij is Answer: (d) Question 37: A function f : R ⇢ R defined by f(x) = 2 + x2 is (a) not one-one (b) one-one (c) not onto (d) neither one-one nor onto Answer: (d) Question 38: A Linear Programming Problem is as follows: Maximise/Minimise objective function Z = 2x – y + 5 Subject to the constraints 3x + 4y ≤ 60 x + 3y ≤ 30 x ≥ 0, y ≥ 0 If the corner points of the feasible region are A (0, 10), B(12, 6), C(20, 0) and O(0, 0), then which of the following is true? (a) Maximum value of Z is 40 (b) Minimum value of Z is – 5 (c) Difference of maximum and minimum values of Z is 35 (d) At two corner points, the value of Z are equal Answer: (b) Question 39: If x = -4 is a root of , then the sum if te other two roots is (a) 4 (b) -3 (c) 2 (d) 5 Answer: (a) Question 40: The absolute maximum value of the function f(x) = 4x – 1/2 x2 in the interval [-2, 9/2] is (a) 8 (b) 9 (c) 6 (d) 10 Answer: (a) SECTION – C Attempt any 8 questions out of Questions 41-50. Each question is of one mark. Question 41: In a sphere of radius r, a right circular cone of height h having maximum curved surface area is inscribed. The expression for the square of the curved surface of the cone is (a) 2πr2rh (2rh + h2) (b) π2hr (2rh + h2) (c) 2π2r (2rh2 – h3) (d) 2π2r2 (2rh – h2) Answer: (c) Question 42: The corner points of the feasible region determined by a set of constraints (linear inequalities) are P(0, 5), Q(3, 5), R(5, 0) and S(4, 1) and the objective function is Z = ax + 2by where a, b > 0. The condition on a and b such that the maximum Z occurs at Q and S is (a) a – 5b = 0 (b) a – 3b = 0 (c) a – 2b = 0 (d) a – 8b = 0 Answer: (d) Question 43: If curve y2 = 4x and xy = c cut at right angles, then the value of c is (a) 4√2 (b) 8 (c) 2√2 (d) -4√2 Answer: (a) Question 44: the inverse of the matrix  is Answer: (d) Question 45: For an L.P.P. the objective function is Z = 4x + 3y, and the feasible region determined by a set of constraints (linear inequations) is shown in the graph. Which one of the following statements is true? (a) Maximum value of Z is at R. (b) Maximum value of Z is at Q. (c) Value of Z at R is less than the value at P. (d) Value of Z at Q is less than the value at R. Answer: (b) Case Study In a residential society comprising of 100 houses, there were 60 children between the ages of 10-15 years. They were inspired by their teachers to start composting to ensure that biodegradable waste is recycled. For this purpose, instead of each child doing it for only his/her house, children convinced the Residents welfare association to do it as a society initiative. For this, they identified a square area in the local park. Local authorities charged an amount of ₹ 50 per square metre for space so that there is no misuse of the space and the Resident welfare association takes it seriously. The association hired a labourer for digging out 250 m3 and he charged ₹ 400 × (depth)2. Association will like to have a minimum cost. Based on this information, answer any 4 of the following questions. Question 46: Let side of square plot is x m and its depth is h metres, then cost c for the pit is Answer: (b) Question 47: Value of h (in m) for which dc/dh = 0 is (a) 1.5 (b) 2 (c) 2.5 (d) 3 Answer: (c) Question 48: d2c/dh2 is given by Answer: (a) Question 49: Value of c (in m) for minimum cost is Answer: (d) Question 50: Total minimum cost of digging the pit (in ₹) is (a) 4,100 (b) 7,500 (c) 7,850 (d) 3,220 Answer: (b) Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key
https://www.geeksforgeeks.org/cbse-class-12-maths-term-1-2021-answer-key?ref=asr10
Mathematics
CBSE Class 12 Maths Term 1 2021 Answer Key
CBSE Class 12 Maths Term 1 2021 Answer Key, Mathematics, Maths
GeeksforGeeks
[-0.0306277312, 0.00763429282, -0.0125970356, 0.0299756918, 0.012080838, -0.0243790224, 0.00210327934, 0.0539019108, 0.0295591112, 0.0327287465, 0.026443813, -0.049337633, 0.0255744271, -0.0451356024, -0.0131766256, 0.0123887453, -0.00429032743, 0.0419478565, -0.00825463515, -0.0272407494, -0.0379631743, -0.0219700988, -0.0181393698, 0.0205392353, -0.0142995827, 0.00283682346, 0.00768862898, 0.0164549351, 0.00474992441, 0.0096809715, 0.0293598771, 0.0282550324, 0.0248499401, -0.0379631743, 0.00824105088, 0.00798748061, 0.0117638744, -0.0228575971, -0.0581401624, 0.0252121836, -0.0214086212, 0.0209377035, 0.00246325927, 0.00123842177, 0.0138467774, -0.02658871, 0.00289795222, -0.0158119518, -0.012760045, 0.00659736898, -0.0106680859, -0.0141999656, 0.0797661319, 0.0316963494, 0.0199596453, 0.0267154966, 0.0222961195, 0.03589838, -0.0022730811, -0.00622154074, 0.0465845801, -0.0325295143, -0.0136747118, -0.0195430648, -0.00146029622, 0.0125155309, -0.0373473577, 0.0544090495, -0.0432881601, -0.0080735134, -0.0345943049, 0.0256468765, -0.0207565818, -0.0459325425, 0.0116823697, -0.0342682824, 0.0183023792, 0.0162466448, -0.012180455, 0.0313522182, -0.0162194762, 0.0155583806, 0.00358395162, -0.0186193418, 0.0428172424, -0.00383752258, -0.0222780071, -0.0913579389, 0.0195430648, 0.0405713283, -0.0137562165, 0.0105141327, 0.00750750722, -0.0209195912, 0.0116008641, 0.0102152815, 0.0134120844, 0.0211007129, -0.0488304943, 0.0325657353, 0.0152957533, 0.0213180594, 0.0226764753, -0.0143539188, 0.00913307723, -0.025864223, -0.0242341254, 0.0144444797, 0.0342863947, 0.00252212398, -0.0436141789, 0.0114559671, -0.00729468884, 0.00639813486, -0.0320404842, -0.0414407142, -0.00550158089, -0.0519820154, 0.0454254, 0.00102560339, -0.0261540171, 0.00555138942, -0.00303832162, 0.0244333595, -0.0237813201, 0.0285267159, -0.0310262, 0.0147161633, 0.0152323609, -0.0280557983, 0.0278203394, 0.010188113, -0.0585024096, -0.0188548, -0.0088161137, -0.0212456118, 0.0261177942, 0.019452503, -0.0153863141, 0.00264211721, -0.0294504389, -0.00647964, 0.0388687812, -0.00952701736, -0.0223866794, 0.00809162576, 0.00100239716, 0.0516922213, 0.0174782742, 0.0469106, -0.0436141789, 0.0213542841, 0.00417033443, -0.00867574383, 0.0187642407, -0.0379993953, -0.0155674368, 0.0366953202, -0.0111027788, -0.0479611084, 0.0357353725, 0.0201588795, -0.0299756918, -0.00329642044, 0.00280059897, 0.0326381847, -0.00493104663, -0.0160926897, -0.0640809685, 0.0562564954, -0.00452125818, -0.0209558159, -0.0208833683, 0.0130679524, -0.0184291638, 0.00548346853, 0.00652039237, 0.0274218712, 0.00414316589, -0.0288708471, -0.0290881936, -0.00509405648, 0.031388443, -0.0158572309, 0.017469218, -0.0128596621, 0.0390136801, -0.000325453613, -0.0172609277, 0.0128596621, 0.021010153, 0.0401366353, 0.0255019777, 0.0476713106, -0.00456880266, -0.0537932366, -0.0591544472, 0.0709998235, 0.00343452604, -0.00275079045, -0.0248499401, -0.0591906719, 0.00404128479, 0.052452933, 0.000142562829, -0.0079422, 0.0067150984, -0.0161108021, 0.0367858782, 0.00180895603, -0.0564013943, 0.0308450777, -0.00599966664, -0.00737619353, -0.015087463, 0.0355723612, -0.0353550166, -0.00160292978, 0.00226855325, -0.0621972978, 0.00559214177, 0.00176141155, 0.0228575971, -0.0129864477, -0.0321491547, -0.0122438474, 0.0278203394, -0.0167537853, -0.0387963355, -0.0376371518, 0.0152323609, 0.0305190589, -0.0127419336, -0.0128324945, -0.0085308468, 0.00810068194, -0.0170345251, 0.0159296803, -0.032366503, 0.00294096861, 0.0285991654, 0.00960852206, -0.0126966527, 0.00218478427, -0.0295772236, -0.0123615768, 0.02280326, 0.0442662202, 0.0279833507, 0.0129411677, 0.015965905, -0.0543366037, 0.0216078553, 0.0334713459, -0.00182480423, 0.020521123, 0.0288708471, 0.00482690148, 0.012325353, -0.0108401524, 0.032801196, 0.00426089531, -0.0411146954, 0.00577326398, 0.0249223877, 0.0409697965, -0.00906968489, -0.00236590626, 0.00732185692, -0.0176593959, 0.0448458083, 0.00413410971, 0.0213542841, -0.0122619597, -0.00496274279, -0.0181574803, -0.00974436384, -0.0253027435, 0.0141003486, 0.0220063236, -0.00100013311, -0.0548799671, 0.0464034565, -0.0350833312, 0.0234553, -0.025230296, 0.00977153238, -0.0125517547, -0.0951252803, -0.0241616759, -0.0168352909, -0.00657925708, -0.0106590297, 0.0222417824, 0.0333626755, 0.00716790324, -0.0219519865, -0.0127781574, -0.0561478212, 0.0113110691, -0.0275848825, 0.0113835186, -0.0182842668, 0.00658378517, -0.0373835824, -0.00684641208, 0.0220244359, -0.0417667367, -0.0144173121, -0.00505330414, 0.0364779718, -0.0210644901, -0.0291968677, -0.0429259166, -0.0243427977, 0.0300119165, 0.0316057913, -0.0041001495, -0.0117457621, -0.02115505, 0.0503519177, 0.0452805, 0.0326562971, 0.0401366353, 0.0390136801, -0.0377458259, -0.0348659866, 0.0143176951, 0.0134754777, -0.0287621748, -0.0165726636, -0.0178133491, -0.0205573477, 0.00577779207, 0.0324389525, -0.0550610907, -0.00328510045, -0.0094274, -0.0475626402, 0.0200139824, -0.0227127, -0.0244876947, -0.0106228059, 0.0213180594, 0.00686905207, -0.0251578465, 0.00540649192, -0.00594985811, 0.0249586124, 0.00907874, 0.00180669199, 0.0220063236, -0.00967191532, 0.019941533, 0.0397381671, 0.0183295477, -0.00498085516, -0.0377820507, -0.00073071412, 0.0166360568, 0.0278203394, 0.00542460429, -0.0306277312, 0.0436141789, -0.00180669199, -0.0169711318, 0.00834519602, 0.016735673, 0.0513662025, -0.0161379706, -0.00574609544, 0.00179763592, 0.0452805, -0.030718293, -0.0447009131, 0.0143267503, 0.0120265009, -0.0264619254, -0.050315693, -0.00634832634, -0.0159477927, -0.0211188253, 0.00763882045, 0.0481060036, 1.56624556e-05, -0.00739883399, -0.0331634395, -0.00841764547, -0.0260453448, 0.005700815, -0.0248499401, 0.0440488718, -0.0151780238, -0.00773391, 0.00246325927, 0.0134120844, 0.00915571768, 0.00918741338, 0.0395932719, -0.0203943383, 0.0252665207, 0.0223685671, -0.0352644548, 0.0281282477, 0.0111842835, -0.00470011588, -0.0134935891, -0.0337611437, 0.00964474678, 0.0356448106, 0.0178133491, -0.0154497074, -0.0504243672, -0.0114559671, 0.00312888273, 0.0263532512, -0.010477908, 0.00823652372, -0.0238537677, 0.00112069247, 0.0083135, 0.0259910077, -0.0171069726, 0.00506688794, 0.0259366706, 0.0152776409, -0.00861235149, -0.000678641547, 0.00588646531, 0.0149063412, -0.0562927201, 0.0357715972, 0.00314246677, 0.0356085859, 0.00749392295, -0.00631663, 0.0247231536, 0.0341596119, -0.0020161143, -0.0218614265, 0.0268060565, 0.00601777853, 0.0126966527, -0.0203218888, -0.0233285148, 0.0463310108, -0.046041213, -0.0339422636, -0.0073943059, 0.0158300642, -0.0285991654, 0.0171431974, -0.0272769742, 0.0231836177, 0.0389774553, -0.0204124507, 0.0450993814, -0.0374198072, 0.0370937884, -0.0072675203, -0.0160383545, 0.0267154966, 0.0145440968, -0.0201045424, 0.0177952368, 0.0208109189, -0.00711809471, 0.00789239164, -0.00755278766, 0.0115918089, -0.0175416656, -0.0484320261, -0.00623512501, 0.00417259801, 0.0533585437, 0.0171794221, 0.00472275633, -0.0286353901, -0.0321129337, -0.0153048094, 0.0437953025, 0.0183929391, 0.0262264665, -0.0104145156, -0.00503066368, 0.00583212869, -0.0155402683, 0.013249075, -0.00468653208, 0.00930061471, -0.0210826024, 0.00905157253, 0.00342999795, 0.00481331721, -0.00377412979, -0.0120265009, -0.0342863947, -0.0425274484, -0.00628946163, 0.0264619254, 0.0182842668, -0.064479433, -0.0636462718, 0.0513662025, -0.0106228059, -0.0235458612, 0.0160383545, -0.0249586124, 0.028436156, -4.85350392e-05, 0.0198871959, 0.0282188095, -0.00231156964, 0.0181122012, -0.00701394957, 0.00616720412, -0.0192532688, 0.0317869112, 0.00938212, 0.00501255132, 0.0161832515, -0.00244061905, 0.0266973842, -0.00580043206, -0.0257736612, 0.0180578642, 0.0291787554, -0.0246869288, 0.0392310284, -0.0290338583, -0.00138671533, -0.00266249361, 0.0161651392, -0.0103511224, 0.0073128012, -0.00280965515, -0.00751203531, 0.00407977309, 0.0229300465, 0.014263358, -0.024886163, 0.0312978812, -0.02173464, 0.00864857621, 0.0118634915, 0.0214810707, 0.00630757399, 0.0119631086, -0.00958135445, -0.000741468219, 0.0417305119, -0.00287078391, 0.00867574383, 0.0356085859, -0.0270777401, 0.0035998, -0.00877536088, -0.0190540347, -0.0283999313, -0.0020308306, 0.00729921693, 0.00536573958, 0.00809615385, 0.0520182401, -0.0139916753, 0.00921458192, -0.0181303136, 0.0128868306, 0.00636191061, -0.0328917578, -0.00770674134, 0.00127577817, 0.0188004635, 0.0035930078, 0.0186736789, 0.0459325425, 0.0116914259, 0.00309718633, -0.00492651854, 0.0193981677, -0.00353640714, -0.0299938042, 0.0287440624, -0.0301749259, 0.014897285, -0.00991643, -0.00501255132, -0.0274943206, -0.0138739459, -0.0021644081, 0.0071996, 0.0560029261, -0.00611739559, 0.00166179438, 0.0237450954, 0.024650706, 0.0192351565, -0.0269690678, 0.0006871316, 0.00572798355, 0.000120417833, -0.0119268838, -0.00837689266, -0.0134754777, -0.0213542841, -0.0140641239, -0.00360659207, 0.0260815695, -0.00587740913, 0.000888063863, -0.0135750948, -0.00370847317, 0.0030156814, -0.0100794397, 0.0165183265, 0.00627134927, -0.016645113, 0.0127962697, -0.0155855482, -0.0256468765, -0.016255701, -0.0063664387, -0.00957229827, -0.00906062871, -0.0129864477, -0.0106046936, -0.0246688165, 0.0126242042, -0.00588193722, -0.0302473754, -0.0112839006, -0.0119540524, 0.00271456619, -0.00294096861, 0.0213542841, 0.00709998282, -0.0128415506, -0.0192532688, -0.0369307771, 0.0149425659, -0.000631097, 0.00249948376, 0.00713620707, 0.148520052, -0.0120174447, 0.0121623427, -0.0148520041, 0.0295047741, 0.0163824856, 0.0195974018, 0.00349565479, 0.00374469743, 0.0488304943, 0.0322397165, -0.0103148986, -0.0193076059, -0.0226764753, -0.00219384022, -0.0203037765, 0.00895648357, -0.0189453624, -0.0329642035, 0.0242522359, 0.0086576324, -0.000888063863, 0.00454389816, -0.0145622091, 0.0169077385, 0.0020693189, -0.0157485586, 0.0135660386, -0.026932843, 0.0160474107, 0.0237632077, -0.0255382024, -0.0160292983, -0.0597702637, 0.0119993333, 0.00358621567, -0.0264619254, -0.0175235551, -0.0171975344, 0.0224229041, 0.00738524972, -0.00267154956, -0.00982586853, 0.000787314726, 0.0291063059, -0.0347392, -0.00181914412, 0.0137109356, 0.0148520041, 0.00741694635, 0.0104145156, -0.0183386039, 0.00816860236, 0.00961757824, -0.0203581136, 0.00439900067, -0.0306458436, -0.0125426985, -0.0202856641, -0.0216078553, -0.0220244359, 0.0194343906, 0.0362606272, -0.0023681703, 0.00433787191, -0.00147048431, 0.00493557472, 0.034938436, 0.0245601442, -0.0081187943, 0.0114378547, 0.0279109012, 0.0296858978, -0.0214448459, 0.0097624762, -0.0077248537, -0.0236726459, 0.00406392524, 0.00935495179, 0.0149516221, -0.00440352876, 0.00452352222, 0.0285991654, 0.00391223514, -0.00310624251, -0.0101700006, -0.00704111811, 0.0044442811, -0.00494915899, -0.00371752912, -0.005700815, -0.00423825486, -0.00202630251, 0.0160021298, -0.00986209325, -0.0155946044, 0.025864223, 0.00162104191, -0.0155946044, 0.00234326604, 0.0123796891, 0.00962663442, 0.0116370888, 0.00338471751, -0.00401638029, 0.024216013, 0.00929155853, -0.00067184947, 0.00347301457, 0.01679001, -0.0295228865, -0.00656114472, -0.0104507394, -0.0283637065, -0.01135635, -0.00930967089, 0.00205233879, 0.00623059692, 0.0571258813, -0.0188910253, 0.0101700006, 0.0144716483, -0.00418844633, -0.0385065377, 0.00325793214, 0.0501345731, 0.00181348412, -0.00910590868, 0.0222598948, 0.0604947507, -0.00855801441, -0.0187099036, -0.0096809715, 0.0178314615, -0.0241616759, -0.0182661545, 0.0210282654, -0.0208109189, 0.00752561959, 0.0354818, 0.0110846665, 0.00194026949, -0.00591363339, 0.0191445965, 0.00303605758, 0.0174420495, 0.0273856483, 0.0136022624, -0.0108401524, 0.000468370185, 0.0281644724, 0.0236726459, -0.0274762083, -0.0292512048, -0.0196879618, -0.0152957533, -0.0350108854, -0.00687810825, -0.0156761091, 0.00719507178, -0.00920552574, -0.0163100362, 0.00631663, -0.0136384871, -0.0188910253, -0.0185287818, 0.00436051236, -0.0106228059, 0.0200502053, -0.0123978015, 0.0157485586, 0.0118544353, -0.00298172096, 0.031877473, 0.000608456729, -0.0318412483, 0.0594080165, 0.0245601442, -0.018148426, -0.0277841166, -0.00455295434, -0.0291968677, 0.0261902418, 0.0206841324, -0.0050850003, 0.027602993, -0.0058276006, 0.0122438474, -0.00938212, -0.0454978496, 0.00981681235, 0.00179763592, 0.0273313113, -0.00656567281, 0.00309265824, 0.0127328774, 0.00295681669, 0.000889195828, 0.0125608109, 0.00925080664, 0.0239081047, -0.0283093695, 0.0172699839, 0.0304828342, 0.0088161137, 0.00337339728, -0.0103873471, 0.00208969507, 0.033254, 0.0149063412, 0.00805087294, -0.0452442765, 0.0286897253, -0.00874819327, 0.000296304293, 0.0295409989, 0.00312435464, 0.00260589295, -0.01242497, -0.00659284089, 0.00263985316, 0.0385065377, -0.0338335894, 0.00229798537, -0.0192894936, -0.0162738115, -0.046729479, 0.000344131811, -0.00889309, 0.00263306126, -0.00489935046, 0.00581854442, -0.0243790224, -0.00524801, 0.0238356553, 0.019941533, -0.0357534848, 0.00670151412, -0.00283682346, -0.0297764577, -0.00511216884, -0.0127509888, 0.0259185601, -0.025864223, -0.0315333419, 0.0109850494, -0.00379903405, -0.00981681235, 0.0125064747, -0.0308994148, -0.046041213, -0.00147048431, 0.0149606774, -0.0472728424, 0.0140007315, -0.0311348736, -0.000385167281, -0.000347244844, 0.0311167613, 0.00370847317, -0.017614115, -0.0179401357, -0.0309537519, 0.0134211406, 0.0027100381, -0.0132128503, 0.00671057031, -0.00468200399, 0.0113291815, -0.0289251842, -0.0309356395, 0.0130226724, -0.0133305797, -0.0241979, -0.00764334854, 0.0194887277, -0.01193594, -0.00517556118, 0.00713167898, 0.00686452398, 0.017804293, 0.0046140831, 0.00387601089, -0.0328193083, -0.00337339728, -0.00832708459, -0.0170073565, -0.0174420495, 0.0393397, 0.0150150144, 0.016645113, -0.000962776656, 0.0154225389, 0.00235005794, 0.0157847833, -0.0527789518, -0.00619437266, 0.0136928242, 0.0338335894, 0.0320223719, -0.0155583806, -0.0577416942, 0.00892931502, -0.00423372677, 0.0198690835, 0.00633927, 0.0004236557, 0.00056798727, -0.00713620707, 0.0139282821, -0.0100884959, 0.0207384694, -0.0169620756, -0.0305733941, 0.00523442589, -0.00849462207, 0.000376111158, -0.00930967089, -0.044882033, -0.0321129337, -0.00291832839, -0.000572798366, -0.0350471102, 0.00720412796, -0.0403539836, 0.00628946163, -0.011066555, 0.00868027192, 0.0127057089, 0.0363149606, 0.0235096365, -0.0248137154, 0.0219519865, 0.00902440399, -0.0316782407, -0.00179876795, 0.00557403, 0.00712715089, 0.0101247206, 0.0308631901, 0.0075165634, 0.0119902771, -0.0221331101, -0.00668793032, -0.00128030614, -0.0277478918, 0.00169235875, -0.0375647061, 0.0143720312, 0.00598608237, -0.012080838, -0.0292512048, 0.0227851477, 0.0145712653, -0.00713620707, 0.00276211067, -0.0173243191, -0.00268060574, -0.0234190747, 0.0142361894, -0.00299077714, 0.00423825486, 0.00439447258, 0.000364791049, 0.00367677677, -0.00476350868, -0.0107586468, -0.00795125589, 0.0105956374, 0.00272588618, -0.0270958524, 0.000641851104, -0.0076614609, -0.0139463944, 0.00387374684, 0.00110201421, -0.0214267336, -0.0226402506, -0.0243246853, -0.00706375809, 0.00393940369, 0.00807804149, 0.0138196088, 0.000750524341, 0.0136747118, 0.00836330839, 0.00403902074, 0.0127691012, -0.0165183265, 0.0200139824, 0.00464125164, 0.0144988168, -0.0182027612, 0.00101258524, -0.0256106518, 0.0180125833, -0.0048178453, 0.0242884606, -0.0274037588, -0.00184518041, -0.000190178107, -0.002438355, -0.00659736898, 0.00116031291, 0.0163915418, 0.00417939, -0.00994359795, 0.0132762427, 0.00879347324, 0.00999793503, -0.00666981796, 0.0016629264, 0.0194706153, 0.00512575265, -0.0104054594, 0.0218795389, 0.00893384311, 0.00229572132, 0.00535215531, -0.0144988168, -0.0364055224, -0.0178948548, 0.0284542665, 0.0465845801, -0.00708187046, 0.0116099203, -0.0120627256, 0.00577326398, 0.0155855482, 0.00403222861, -0.013439253, -0.0156942215, 0.00777013414, -0.011546528, 0.0138648897, -0.00969002768, -0.0071226228, -0.00436277641, -0.0182118174, 0.0554233342, 0.0301568136, -0.0133124674, -0.0137652727, 0.0181212574, 0.00919647, 0.00897912309, 0.0159206241, -0.0181212574, 0.0022662892, 0.0022345928, 0.0114469109, 0.00316284294, -0.0141909095, 0.018293323, 0.0746947154, -0.0107858153, -0.0176050588, -0.0170707498, -0.00141048757, -0.0200139824, 0.00400732458, 0.0132037941, 0.00587740913, -0.0054970528, 0.0286172777, 0.00518461736, 0.021010153, 0.027512433, -0.0100703835, 0.000863159541, -0.00159613765, -0.00969908386, -0.0242341254, -0.00581401633, 0.00167311449, -0.0051483931, -0.0102424491, -0.00248816353, 0.00236364221, 0.00896554, 0.0239081047, -0.00457559479, -0.0437590778, 0.00269645383, 0.0138739459, 0.000401864439, 0.00406392524, 0.000409788539, 0.0141003486, 0.0334713459, 0.0386152118, 0.0145893777, 0.01242497, 0.00772032561, -0.00266475743, 0.00115635083, -0.0192532688, -0.0044488092, -0.0117819868, -0.00244514714, 0.00414090184, -0.0155855482, -0.0339784883, 0.0131222894, -0.0013210586, -0.00568270311, 0.00229345751, -0.04346928, -0.0175054427, 0.00619437266, -0.00355225545, -0.023147393, 0.0264981501, -0.0173605438, -0.0046140831, -0.0109759932, -0.00521631399, -0.0151146315, 0.00674226694, 0.0169892441, -0.0217889771, -0.0117095374, -0.000153670699, -0.000588080497, 0.0148791727, 0.0369126648, 0.000804860902, 0.00892478693, -0.0161379706, 0.00145237206, -0.0119268838, -0.0196698494, 0.0122529035, -0.030229263, -0.0251759589, 0.00862593576, -0.0203581136, 0.0110484427, -0.00875272136, 0.00785616692, 0.00401185267, -0.0173424315, -0.00804181676, -0.0114378547, -0.00730827311, -0.0358078219, -0.025230296, 0.0156761091, -0.00369036081, -0.0367315412, 0.0175960027, -0.00245193928, -0.00226968504, -0.00445560133, -0.00316057913, 0.0144716483, 0.0169620756, 0.00341867795, 0.00600419473, -0.000654869247, 0.0250853971, 0.0225496907, 0.0101066083, 0.01189066, -0.00524801, 0.0253027435, 0.0111027788, 0.00951796118, 0.0248137154, 0.00272588618, 0.0160474107, 0.00926891901, 0.0183657706, -0.00489935046, -0.0334532335, 0.0264619254, 0.0172699839, -0.0133215236, -0.000626002962, -0.0240348894, 0.00131539861, -0.017224703, -0.00711809471, 0.0177771244, -0.0225678012, 0.0277297795, 0.015911568, 0.00585024105, -0.0209377035, 0.0211188253, -0.0250129495, 0.017224703, 0.0104235718, -0.00361338397, -0.0128777744, 0.00110314623, -0.0237088706, 0.00191196916, -0.000697885756, -0.00522536971, -0.0196155142, 0.00809615385, 0.0191989336, 0.0107586468, -0.0116914259, -0.0107586468, 0.0018655567, 0.0115555841, 0.00966285914, -0.00903798826, -0.00735808164, 0.0272045247, 0.0109397694, -0.00907421298, 0.0312435459, 0.0390499048, 0.018293323, 0.0252484083, -0.0182752106, -0.00520272972, 0.00872555282, -0.0175869465, -0.0050080237, 0.01028773, -0.0146346586, -0.00784258265, 0.00636191061, -0.0105413012, 0.0281644724, -0.00450993795, 0.0278746765, -0.00120446132, 0.0154044265, -0.00589552149, 0.00776107796, 0.00653850427, -0.00483142957, 0.0101337759, -0.0153682027, -0.02173464, -0.01465277, -0.00691433251, 0.00383073045, 0.024886163, 0.00259910082, 0.0128958868, -0.00983492471, -0.00117502897, 0.0314246677, 0.0236545336, -0.000215365391, -0.0163190924, -0.00461181905, 0.011012218, -0.0030586978, -0.0160474107, 0.00373337744, 0.00163009809, 0.0111933397, -0.0132309627, -0.00951796118, -0.00783352647, 0.00380129809, -0.0067784912, 0.0141818533, 0.00300888927, 0.00289795222, 0.0063664387, -0.0209739283, 0.00121804548, 0.0038601628, -0.0109397694, 0.00147048431, -0.0098892618, -0.00505330414, -0.00199460611, -0.0111752283, 0.0069188606, -0.0089383712, 0.00563289458, 0.0325114019, -0.00972625148, -0.00259910082, 0.016627, -0.0180397518, 0.0152051924, 0.016156083, 0.00619890075, 0.00239760266, 0.00646605575, 0.00272362214, -0.0153229218, -0.0186012294, 0.016156083, 0.00167085056, 0.0261177942, -0.0150512392, -0.00128596625, 0.0379631743, 5.76618877e-05, 0.0283999313, 0.00229798537, -0.0357897095, 0.0308269653, -0.0220063236, -0.00254250015, 0.0100160474, -0.00993454177, 0.0134030282, -0.0173786562, 0.00342999795, 0.000390261324, -0.0139645068, -0.0316239037, -0.00113993662, 0.00686905207, -0.011791043, 0.0057642078, -0.00498085516, 0.00669698603, -0.00312888273, -0.0339603759, -0.00211799541, -0.00638907868, -0.00527517824, 0.0149787897, 0.0114921909, 0.00566459075, -0.0151055753, -0.0072675203, -0.0034594303, -0.00782899838, -0.00877083279, -0.00792861544, 0.00437636068, 0.0307726283, 0.00513480883, -0.0124068577, -0.0350289978, 0.00260362891, -0.0290338583, -0.00150331261, 0.0109941056, -0.00316057913, -0.0021859163, 0.0226221383, -0.00265343743, -0.00354093523, -0.0217708647, 0.0433968343, -0.00807804149, 0.00858065486, -0.0155131, 0.0115012471, 0.00632115826, -0.0206297971, -0.00680113118, 0.00312209059, -0.0012723821, -0.0157032777, 0.0191989336, -0.04017286, -0.000105701671, 0.0091466615, 0.0368583277, -0.0489029437, -0.0144263683, 0.00901534781, -0.0233285148, -0.00367677677, 0.0233647395, -0.0309718624, -0.000453654036, 0.010577525, -0.00797842443, -0.0268785059, -0.0374198072, 0.00527065061, -0.00629851781, 0.0183023792, -0.0222780071, -0.0134030282, -0.00544724427, 0.0090968525, 0.011066555, -0.0328917578, -0.0300662536, 0.0151146315, -0.0170254689, -0.00105616765, 0.0111933397, -0.0155040435, -0.00422919868, -0.012080838, -0.000978058786, -0.0151327439, -0.0183567163, 0.00440352876, 0.0310624242, -0.00762523664, 0.015377258, 0.0158028957, 0.00727657648, 0.0108944885, -0.00377186574, -0.00119653728, 0.0150602944, 0.0218795389, 0.0152504733, 0.00734902546, 0.013783385, 0.0283274818, -0.00686905207, 0.0208833683, -0.0236545336, 0.00873008091, 0.0206297971, -0.017804293, -0.00991643, -0.0167718977, 0.00174895942, -0.0260815695, 0.0243427977, 0.0301568136, -0.00969908386, 0.0155402683, 0.0254657548, 0.00325114, -0.00268739788, 0.0180125833, 0.00706375809, 0.0144716483, -0.00222780067, -0.0193438306, -0.0173062086, -0.0119268838, 0.0079920087, 0.00408203714, -0.0389050059, -0.018782353, -0.0194887277, 0.0241797883, 0.0143539188, 0.00103296142, 0.000884667796, 0.00485406956, 0.0179401357, 0.0117004821, -0.0275305454, 0.00359527185, 0.00908326823, 0.0103873471, -0.0102696177, -0.00652492046, 0.0176231712, 0.0335437953, -0.0218795389, 0.00477709295, -0.00289795222, 0.0135207577, -0.00839500502, -0.00242477097, 0.0310443118, -0.0160021298, 0.0212637242, -0.0131041771, -0.0294504389, -0.0112386206, 0.00910138059, 0.00446465751, 0.0138830021, 0.0143810874, 0.00124408177, 0.0165636074, -0.0128958868, -0.00365866465, -0.00646605575, -0.0110574989, -0.0172609277, -0.00169009471, 0.0196698494, 0.00912854914, -0.00798748061, -0.00740789, -0.00726299267, 0.00747581106, 0.000498934533, -0.00761618046, -0.0047363406, 0.0131675703, -0.00093334436, -0.00571439927, -0.0164458789, -0.00674226694, -0.00836783648, -0.0137562165, -0.0188366883, 0.0198328607, 0.00619437266, -0.0214629583, 0.00480878912, 0.0126694841, 0.00323076383, 0.00158028957, 0.0239624418, 0.00468200399, 0.00512575265, 0.0015078407, -0.01465277, -0.00316510699, -0.0157666709, -0.00275984663, -0.000671283458, 0.00497179898, 0.014507873, 4.81105344e-05, 0.00912854914, 0.00421108678, 0.0225315783, 0.0103964033, 0.00304964185, 0.0151236877, 0.00850820635, 0.0160655212, 0.0197604112, -0.00478162104, -0.0299575794, -0.0112114521, 0.000817879045, 0.00213497574, 0.000723922043, 0.012660428, -0.00489482237, -0.00444201706, 0.00708187046, 0.01140163, -0.010477908, -0.00337566133, 0.00949984882, 0.0482871272, -0.00156444137, 0.00577326398, 0.010432628, 0.0245420318, 0.0185106695, -0.000687697611, -0.0302473754, -0.0179582462, 0.000431013788, 0.0073128012, 0.0001223281, 0.0176865645, -0.00811426621, -0.0177409, 0.00625323737, -0.0050850003, 0.00320585957, 0.0161741953, 0.00307228207, 0.000603362685, -0.00978058856, 0.00761165237, -0.0113201253, -0.00160066574, -0.00206139474, -0.0280557983, -0.0114831356, 0.0165273827, 0.0153138656, -0.00159613765, -0.00309265824, -0.0175597779, -0.0102062253, 0.0129773915, 0.0147704994, -0.00702753384, 0.00995265413, -0.00311982655, -0.00740789, 0.0176322274, 0.00500349561, 0.0261177942, -0.0211731624, 0.00206479081, 0.0196879618, 0.0052117859, -0.00902893208, -0.0218795389, -0.0110574989, -0.00470464397, -0.00581401633, -0.012325353, -0.000571666344, 0.00410241354, 0.00607664324, 0.0172156468, -0.0052117859, 0.00732185692, -0.0227127, -0.00627134927, 0.000949192501, -0.00544271618, -0.00161764596, -0.0117729306, 0.0122347912, 0.00639813486, 0.0128868306, 0.00930967089, 0.00558761414, 0.0230024941, 0.000572798366, -0.00122370559, -0.00127351412, 0.00201837835, 0.00852179062, 0.00103126338, 0.00297945691, -0.00384657853, -0.00295681669, 0.0141818533, 0.00327378022, -0.0113382377, 0.000717696, -0.00839953311, -0.0150602944, 0.00122370559, 0.00860329531, 0.0164187104, -0.0118182106, 0.00972625148, -0.0020376225, 0.0119993333, 0.0047544525, 0.00422693463, 0.00894289929, -0.0264981501, -0.0153591465, 0.000446861959, 0.0220968854, -0.00224025291, 0.0185287818, 0.0217708647, -0.0181303136, -0.00597702619, -0.00381714641, 0.0242703483, 0.00432428811, -6.48696232e-06, -0.00762523664, -0.00469558826, -0.0224953536, 0.00121012144, -0.0156489406, -0.00533857103, 0.00379677, -0.025375193, 0.0106318621, -0.0118453791, -0.0147252195, -0.0138105527, -0.00831802841, 0.018193705, -0.0197604112, -0.02008643, -0.0254838672, -0.0265705977, -0.0058909934, 0.0083225565, 0.00645699957, -0.0247231536, 0.0136656556, -0.00520725781, -0.0408249, -0.021589743, 0.0104416842, 0.00997982267, 0.00231383368, -0.00967191532, 0.0233828519, -0.000226968521, -0.0118816039, 0.00545177236, -0.00910590868, 0.00652492046, 0.00822293945, 0.00749845104, 0.0135569824, 0.00935495179, -0.00873008091, -0.0106228059, 0.00184065243, -0.0304828342, 0.0110574989, -0.0110756103, -0.00117842504, 0.00617173221, 0.00695508486, -0.0109126009, 0.00507141603, 0.00998887885, -0.00912402105, 0.0039099711, -0.00501255132, -0.00664717751, 0.0128506068, 0.0319680348, 0.0141546847, -0.000792408769, 0.0141365724, -0.0298670195, -0.0022877974, 0.0135750948, 0.0146346586, -0.0192532688, 0.00365187251, 0.00789239164, -0.00145350408, 0.0390861295, 0.00125200592, -0.0115374718, 0.0146165462, 0.000505160599, 0.0115012471, -0.00997076649, 0.0105865812, -0.0248499401, -0.0320404842, 0.0112205083, -0.00598155428, 0.0121623427, 0.025230296, -0.00258778059, -0.00611739559, 0.0211912747, 0.00128030614, 0.00146935228, 0.00404807692, -0.00962663442, -0.00889761839, -0.0187461283, -0.00449182559, -0.00642077532, 0.0172428153, 0.0122710159, 0.00618078839, 0.00328057236, -0.0195792895, -0.00122483762, 0.0138558336, -0.0243971348, -0.00454389816, 0.00386242685, 0.00655208854, 0.000614682795, 0.0204848982, 0.0086848, -0.0166813377, -0.00316057913, 0.0117095374, 0.00870744, -0.00843575783, 0.01950684, -0.00940023176, -0.00381261832, -0.0216984171, -0.00585929677, -0.00747128297, -0.00551516516, -0.0136656556, 0.0042405189, 0.0188004635, 0.00226402516, 0.00664264942, 0.0217527524, -0.0105865812, -0.0217889771, -0.0116914259, -0.0105050765, -0.0221149977, 0.000145039114, -0.00728563266, -0.0294866636, 0.00449635368, -0.00296134478, -0.0151961362, 0.0332721137, 0.00132671872, -0.0182027612, -2.5576408e-05, 0.0086576324, 0.0151780238, 0.0274399836, 0.00580496, 0.0129411677, 0.0153500903, -0.000825237134, 0.00223006471, 0.00223346078, -0.0111571159, 0.00448503392, 0.012615148, 0.0132581312, -0.00171160302, 0.0117367059, 0.0124430815, -0.0211369377, 0.00429711957, 0.00284587964, 0.0249767248, -0.00141048757, -0.0116099203, 0.00991643, 0.00850367825, 0.00613098, 0.00015027466, -0.013149458, -0.00540196383, -0.00214176765, -0.0118000992, -0.02765733, -0.0165726636, 0.00527970633, -0.0146799386, 0.0110212741, 0.0159568489, -0.0037650736, 0.0281463601, -0.000149708663, -0.00721318414, 0.0155221559, -0.0139916753, -0.0109578818, 0.00826821942, 0.016889628, -0.0139282821, -0.0200320948, -0.00787880737, 0.0258279983, -0.00226062909, 0.00693244487, 0.00362244016, 0.00253570802, 0.00991643, -0.000271824509, -0.0212275, 0.0305190589, 0.0062396531, -0.0129955038, 0.0202675518, -0.01193594, -0.00360659207, 0.00993454177, 0.0138196088, -0.000459031085, -0.00528423442, -0.0267879441, 0.00246552331, -0.00789692, 0.0219882112, -0.0236907583, -0.0204667859, -0.0167718977, 0.00228892942, -0.00476350868, -0.00686905207, -0.00126785401, -0.0173696, 0.0103511224, 0.00575062353, -0.00269418978, 0.00190404512, 0.00501255132, -0.000606758695, -0.000334509707, 0.0122529035, 0.000321774569, -0.00297040096, -0.00654756045, 0.0169349071, -0.0136384871, -0.0213905089, 0.00684188399, -0.0112386206, 0.00470464397, -0.00807804149, -0.0142905265, -0.0111842835, -0.0217708647, -0.0221874453, 0.00946362503, -0.00641624723, 0.0178133491, -0.00398242, 0.00858518295, -0.00497179898, 0.01135635, -0.0044442811, -0.00400506053, 0.0122438474, 0.00695508486, 0.0270777401, -0.0109397694, 0.00929155853, -0.0136384871, 0.00691433251, 0.0183023792, 0.0036631925, 0.0246688165, -0.00307681016, 0.00808257, -0.0107314792, -0.0062396531, -0.018537838, 0.0162013639, -0.00174895942, -0.0193076059, 0.00808257, 0.010477908, -0.0271864124, 0.00215195585, -0.0193438306, -0.00306775398, -0.0242884606, -0.00779730221, -0.0163462609, -0.0236907583, 0.0096809715, -0.0259728953, 0.0274943206, 0.0104145156, -0.0245420318, -0.00907421298, -0.0236545336, -0.0131856818, -0.00625776546, 0.00145010801, 0.00289342413, -0.00330547662, -0.00352055905, 0.0185016133, 0.0299394671, 0.0182208735, 0.0167990662, 0.00890214648, 0.00907421298, 0.0490116142, 0.0147614432, 0.00777919032, -0.00382393831, 0.0066517056, -0.00575062353, 0.00938212, -0.0206841324, 0.0057642078, -0.00808709767, -0.021010153, 0.0139011145, -0.0290700812, -0.0179944709, -0.0141365724, 0.0129321115, 0.0181122012, 0.00752561959, 0.017125085, -0.0025447642, -0.000978058786, -0.0033575492, 0.001170501, -0.01950684, 0.00422693463, -0.00783352647, 0.00579137634, -0.00899270736, -0.0139463944, -0.00728563266, 0.00765693281, -0.022169333, -0.0184563324, 0.0176956207, 0.015042183, 0.00337566133, 0.0015395371, -0.00146369217, 0.0101971691, -0.00328057236, 0.00331679685, -0.0172790401, -0.00412278948, -0.00244061905, 0.0183567163, 0.0142905265, 0.0164458789, 0.0188910253, -0.0143267503, -0.0145622091, 0.00214855978, -0.00571439927, 0.0116733136, 0.00886592269, 0.00803276058, 0.00605853135, -0.00496274279, 0.00863499194, 0.00285719964, 0.01140163, -0.0266973842, 0.009508905, 0.00156783732, -0.0173696, -0.0142995827, 0.0191627089, 0.0163643733, -0.00553327752, 0.000406675506, 0.000692791655, -0.00117616099, 0.00183838839, 0.00585476868, -0.00177159964, 0.00432202406, 0.00137992331, -0.00694150105, 0.0195611771, -0.00909232441, -0.0140278991, -0.00808709767, 0.00585929677, -0.0253933053, -0.00523442589, -0.0285267159, -0.00585024105, -0.0109488256, 0.01028773, -0.00519367354, 0.00494915899, -0.00219384022, -0.0158481747, -0.0132128503, 0.0265524853, 0.0135207577, 0.0102786738, 0.00761165237, -0.00787427928, -0.00269645383, 0.0236183088, 0.0130407847, -0.012370633, -0.0125336433, -0.0143448627, -0.00991643, -0.00546082854, -0.00316737103, 0.0262264665, 0.0135117015, 0.00903346, 0.00502613559, -0.00402317243, -0.0153138656, 0.017224703, -0.0230024941, -0.00712715089, 0.0220425483, -0.0154859312, -0.0187099036, 0.0170526374, -0.000622606894, 0.00268286979, -0.0081957709, 0.0134301968, -0.0175869465, 0.012180455, 0.000745996251, 0.0252121836, 0.00861688, -0.0129864477, -9.70170095e-06, 0.00833161268, 0.0260815695, -0.0228757095, -0.00275758258, 0.00116823695, -0.00997076649, 0.0144173121, -0.00649775192, -0.0157757271, -0.0032126517, 0.00471822824, -0.0245420318, 0.0134935891, 0.0014591642, 0.016980188, 0.0106137497, 0.0114197424, 0.0291968677, -0.0136384871, 0.0152323609, -0.0207928065, 0.00673773885, -0.00921458192, 0.0175144989, -0.0012882303, -0.00569175929, 0.0102152815, 0.0126694841, -0.0125155309, 0.00134030287, 0.0148338927, -0.024650706, -0.00602230662, 0.00808709767, 0.00198781397, 0.0110574989, -0.01193594, -0.00847651, 0.00186668872, -0.00673773885, -0.0180306956, 0.0182208735, 0.0160926897, -0.0137652727, -0.00987114944, -0.00616267649, -0.0237450954, 0.0284723788, 0.000413750589, 0.00969908386, 0.00413184566, 0.0203218888, 0.00375148957, 0.00692791678, 0.0230206065, 0.00199007802, 0.0216440801, -0.00207837508, -0.00117616099, 0.00808709767, 0.02173464, -0.0127691012, 0.00434013596, -0.0191445965, 0.00225836504, -4.57403803e-05, 0.0352282301, 0.0117638744, -0.00452352222, 0.0102243377, 0.000167679362, -0.0112023959, -0.00254702824, -0.00579137634, 0.0167809539, 0.025230296, 0.00989831798, -0.00350471074, 0.00487218192, 0.00527065061, -0.00417486206, -0.00287078391, 0.00207497901, -0.00551063707, 0.0109669371, -0.00604947517, 0.0168262348, 0.0248680525, 0.00430844, 0.00263306126, -0.0106680859, -0.00155312126, 0.00776560605, -0.001898385, 0.00347301457, -0.0168715157, -0.00463672355, 0.0110756103, -0.00590004958, -0.0187642407, 0.0229843818, -0.0107495915, 0.0257917736, -0.0110212741, -0.024795603, -0.00494010281, 0.0175054427, 0.00861235149, 0.00893384311, -0.0135660386, 0.0206479095, -0.00230364548, 0.014797668, -0.00792408735, -0.00192555331, -0.00586382486, -0.00985303707, -0.00392808346, 0.000529781857, -0.00232062582, 0.00940928794, -0.0083135, 0.012370633, -0.0177590121, -0.00579137634, 0.016889628, 0.00351829501, -0.000266588962, 0.0130498409, -0.00153274497, -0.0206297971, -0.02222367, -0.0125426985, -0.0134845339, -0.00670151412, -0.0154134827, 0.0260996819, 0.00499443943, -0.00436277641, 0.0114469109, -0.00685093971, 0.00410241354, 0.0201588795, 0.0236001983, 0.0137743289, 0.00302247354, -0.0192532688, -1.01969572e-05, -0.0121080065, 0.0117638744, 0.0165273827, 0.0261721294, -0.0214086212, -0.00983492471, 0.00500349561, -0.00125200592, -0.0149969021, -0.00776560605, -0.0232560653, 0.0184744447, 0.0161741953, 0.0118634915, -0.0109669371, 0.000897119928, 0.000473464257, -0.0030473778, -0.00124181772, -0.0195974018, 0.00383299449, 0.00127804221, -0.0311892089, 0.00579137634, -0.0137471603, -0.0125155309, -0.0168171786, -0.0144807044, -0.0185468942, -0.02115505, -0.000583552464, -0.0256649889, -0.00878894515, -0.00853537489, 0.00463672355, 0.0140369553, -0.020521123, 0.0133034112, -0.00581854442, -0.0192894936, -0.00154632912, -0.0104688518, 0.0052298978, 0.0386876613, 0.00464125164, 0.00175122346, 0.000423089688, -0.0090198759, 0.0221331101, -0.00268286979, -0.0165726636, 0.00552874943, 0.0133939721, -0.00917383, -0.00166745449, 0.00119766931, -0.00255834823, -0.0219700988, 0.00312209059, 0.0069822534, 0.00515744928, -0.0185106695, -0.0110031618, -0.0112929568, -0.013439253, 0.00678301929, -0.0107043106, 0.0102243377, 0.00498991134, -0.0177590121, -0.0250853971, 0.000413750589, 0.0070456462, -0.00272362214, 0.0174058247, -4.64832665e-05, 0.0171975344, 0.0137199918, -0.00149538857, -0.0101066083, -0.0107495915, 0.00826369133, -0.00667887414, 0.00836330839, 0.0139101697, 0.0079150321, -0.001358415, 0.00162896607, -0.00555138942, -0.0071860156, -0.0129592801, -0.0044872975, 0.0155221559, 2.12429222e-05, 0.0305915065, -0.0134935891, -0.0122257359, -0.0100884959, 0.00149991666, -0.013973563, -0.0347573124, -0.0291968677, 0.00456427457, 0.01353887, -0.00325114, 0.00160632585, 0.00651133619, 0.00226289313, -0.0143810874, -0.00159160967, -0.00843575783, -0.000693357666, 0.0142724141, -0.00319453934, -0.00160745776, 0.00318548339, 0.00645247148, -0.0172880962, 0.00542460429, 0.00889309, 0.00692791678, 0.00642530341, 0.0179854147, 0.000787314726, 0.0043288162, -0.00381488237, 0.0195974018, 0.00916477386, 0.00273494236, 0.00402996456, -0.00249948376, -0.0141999656, 0.00234326604, -0.0102696177, -0.0215716306, -0.0193800554, 0.0140097877, 0.0110846665, 0.00155764923, 0.00269418978, 0.00176254357, 0.00809615385, -0.00151802879, 0.0127419336, -0.0318231359, 0.00031837853, -0.0129955038, 0.000236024614, 0.0114650233, -0.0377096, 0.00390770752, 0.0105956374, 0.0204124507, 0.0121080065, 0.0118997162, 0.00920099765, -0.0095541859, -0.00401185267, -0.0283455942, -0.000728450075, 0.00987114944, 0.00774296559, -0.0129411677, -0.0354636908, -0.00896101166, -0.00917835813, 0.00237722625, -0.0273494236, 0.000518744753, 0.0124430815, 0.00736260973, -0.0148157803, -0.0110846665, 0.00937306415, 0.000645813183, -0.00141388364, -0.0103782909, 0.0188366883, 0.0227489248, 0.0204486754, -0.00815501809, -0.0122347912, 0.00311077037, -0.00408203714, 0.000224138479, -0.000412618567, 0.00638907868, 0.00174556335, 0.00165160629, -0.00844934117, -0.00782899838, 0.011111835, -0.0145984339, 0.00418618228, -0.0213723965, -0.0203037765, -0.0301387012, 0.00512122456, 0.00714979135, 0.04017286, 0.0152142486, -0.00387827493, -0.00162104191, 0.0120717818, -0.022078773, 0.00173990324, 0.00154180103, -0.0126242042, -0.000261353387, 0.00997982267, 0.00542913238, 0.00904704444, 0.0125426985, -0.00679660309, -0.000303096371, 0.00910590868, -0.0013040785, 0.0102243377, -0.00842670165, -0.0068373559, -0.00849462207, -0.0592631213, -0.0172156468, 0.0200139824, 0.0194887277, 0.00580948824, -0.000279041094, -0.00211233529, 0.00117502897, -0.00411599781, 0.00936400797, 0.0102696177, 0.0048812381, -0.00516650546, 0.00338245346, -0.00287983986, -0.00989831798, 0.0183838829, 0.00714979135, 0.0104688518, -0.00164028618, 0.0179673024, -0.013729048, 0.0158300642, 0.00913760532, 0.00118408515, -0.00083599129, -0.0115374718, -0.0117729306, -0.00429711957, -0.00287983986, -0.0161379706, 0.00347980647, -0.00790597592, 0.00107031781, 0.0054970528, -0.00662906561, 0.0176050588, -0.0266430471, 0.00491293427, -0.00849009398, 0.010722423, 0.00309718633, -0.000131950219, -0.0103058424, 0.0119087724, 0.0125608109, -0.00923269428, 0.0147252195, 0.00158368552, 0.0230387188, -0.00714979135, 0.0166541692, 0.0231836177, -0.00382167427, -0.0043673045, 0.0100341588, 0.0148882288, -0.00616267649, 0.0063800225, 0.0061581484, -0.0312616602, -0.0225678012, 0.0124068577, -0.00707281427, 0.000649775204, 0.0115012471, -0.00302020949, 0.0154225389, 0.00709092664, -0.00863046385, -0.00145690015, -0.0019357414, 0.00516650546, -0.00787427928, -0.00637549441, 0.00503972, 0.0136747118, -0.00990737416, -0.0023681703, 0.00200139824, 0.00930061471, -0.00119427324, 0.0272226371, -0.00921005383, -0.000526385847, 0.00671057031, -0.010722423, 0.00405939715, -0.0242703483, -0.0139554506, 0.0151418, 0.00245193928, -0.0154859312, 0.0390136801, -0.017125085, 0.0168805718, -0.0138105527, -0.0028504075, 0.00546082854, 0.0117548183, -0.017614115, 0.00419750251, 0.00906062871, -0.000561478199, -0.00285493559, 0.00588646531, 0.00537932338, -0.00664264942, -0.0131856818, 9.77775853e-05, 0.00246325927, -0.0059724981, 0.021499183, -0.0104597956, 0.0202313289, 0.0241797883, 0.0133758606, -0.00937306415, 0.00743958633, -0.0071996, -0.00611286797, -0.0355723612, -0.000171216903, 0.0106861982, 0.00729468884, -0.00651133619, 0.00897912309, 0.000433277804, -0.0195430648, 0.00442164112, -0.0216621924, 0.0206479095, 0.00106182776, -0.0155040435, -0.00182367221, -0.0247774906, -0.00284135155, -0.0113110691, -0.00270551, -0.00862140767, -0.0128143821, -0.00816860236, 0.00940928794, -0.0254657548, -0.0095541859, -0.018293323, -0.0234734118, 0.000861461565, -0.0195430648, -0.0149153974, -0.0161741953, 0.00514386501, 0.00258551654, 0.000411203568, -0.00870744, 0.00551063707, 0.000759580405, 0.00825463515, 0.0045710667, -0.00160519383, -0.00542460429, -0.00299530523, -0.00609022751, -0.00310397847, -0.00605853135, 0.0179582462, 0.0014919925, -0.0116914259, 0.0076614609, 0.00567364693, 0.0136022624, -0.00103635748, 0.00697319722, 0.00446239347, 0.0171522535, -0.0192532688, 0.00154066912, -0.0137924412, 0.00439447258, 0.00951796118, 0.00110767432, 0.00978964474, 0.000826935167, 0.0211369377, -0.00160292978, -0.0181212574, 0.00791956, 0.00372884935, -0.00270551, 0.0166632254, 0.0145259853, 0.00219157618, -0.00118295313, -0.0134664215, -0.0191989336, 0.00291606435, -0.00481331721, 0.015377258, 0.00493104663, 0.00502613559, -0.0194343906, 0.00413637375, -0.00714979135, 0.00982586853, 0.00227421313, -0.00212025945, -0.0318593606, 0.0134573653, 0.00103522546, 0.00809162576, -0.00560119795, 0.0142090218, 0.00390091515, -0.0128415506, 0.0078652231, -0.0216984171, -0.014507873, -0.00929155853, 0.0142452456, 0.00740789, 0.0117004821, 0.00744411442, 0.0269871783, 0.00314020272, 0.00552422134, -0.00492651854, 0.0217889771, 0.00855801441, -0.02173464, 0.000951456546, -0.0042020306, 0.0169892441, 0.0043854164, -0.00911496487, -0.00956324209, -0.0179310795, -0.0071226228, 0.0104688518, -0.00905157253, 0.0149787897, 0.00668340223, 0.0130498409, -0.0120627256, -0.00510764075, -0.00253344397, -0.00883875415, 0.0127057089, 0.00122257357, 0.00600872235, -0.0124068577, -0.0135750948, -0.0147071071, 0.00567364693, -0.0151961362, 0.0114740795, -0.0211731624, -0.0199053083, 0.00336434133, -0.00940928794, -0.00397562794, 0.0140278991, -0.000859763531, 0.0360613912, -0.0252665207, -0.00611739559, -0.00407298096, -0.0047408687, 0.00201951037, 0.0022345928, 0.00623059692, 0.00651133619, 0.000252014288, -0.0142361894, -0.00254023611, -0.00406392524, -0.0124974186, -0.00131426658, 0.0140007315, -0.0127328774, -0.0117548183, -0.0120717818, -0.0173333753, -0.0132219065, -0.00489029428, 0.00447371369, -0.0090651568, 0.0136928242, -0.00180442794, 0.00553327752, 0.00839953311, 8.83677276e-05, -0.00671962649, 0.00610834, 0.0121442303, -0.00663812133, -0.0164277665, 0.022078773, -0.00495368708, -0.0112386206, 0.00545630045, -0.00869385619, 0.00563289458, -0.00102390535, 0.00255155633, -0.0272045247, -0.0395208225, -0.0136203747, -0.0198690835, 0.00498991134, -0.00390091515, -0.00913307723, 0.0139826192, -0.00116936897, -0.00747128297, 0.000121903598, -0.0109307133, -0.0137381041, 0.00271909405, 0.0223866794, -0.000918062171, -0.00603136281, -0.029160643, -0.00748939486, -0.0216621924, 0.0107405353, 0.00494915899, 0.0229119342, 0.0140097877, -0.00208063913, -0.000570817327, 0.000214233369, 0.00375375361, -0.00713167898, -0.000827501179, -0.00602230662, -0.000415165588, -0.00465030735, 0.00627587736, -0.0156036606, -0.0153953703, -0.00113937061, -0.0004864824, -0.012904943, -0.0154406512, 0.014263358, -0.016545495, -0.0195611771, -0.000186216057, 0.0313522182, 0.00324208383, -0.00916477386, -0.000505443604, -0.00532045914, 0.0142905265, -0.000865989598, -0.0111842835, -0.019452503, 0.00825916324, 0.0180669203, -0.00691433251, -0.00184178445, -0.0227489248, -0.0194706153, 0.000189329105, -0.00896101166, 0.00286625582, -0.0088161137, -0.0047408687, -0.0200320948, 0.00224591279, -0.00116257684, 0.00234100199, 0.00882517, 0.0925895721, 0.0139101697, 0.00753014721, -0.0267698318, 0.00857612677, -0.00946362503, -0.00811426621, 0.0653125942, -0.0202313289, -0.00268513383, -0.000284276641, 0.00746222679, -0.00297040096, 0.00482690148, 0.0125245871, -0.0196517371, -0.00905610062, -0.00945456885, -0.0135750948, -0.00286625582, 0.000725054, -0.0083135, 0.00833161268, -0.00403222861, 0.0129683353, -0.00492199045, -0.010043215, 0.012080838, -0.0163643733, -0.00485406956, -0.00530687487, 0.013783385, 0.0134573653, -0.012615148, -0.0272588618, 0.0049446309, -0.00187461276, 0.00610381179, 0.015042183, -0.00518008927, 0.0174782742, -0.00727657648, 0.0259728953, -0.0195792895, 0.0118000992, -0.0263170283, 0.0081957709, -0.00935495179, -0.0251035094, -0.0274218712, 0.0189453624, -0.00997982267, -0.0256106518, -0.029015746, 0.00648416765, -0.0129592801, -0.014897285, -0.00704111811, -0.00765240472, 0.0206479095, -0.0155674368, 0.0178857986, 0.00892478693, 0.0259185601, -0.00732185692, -0.0106771421, -0.0169892441, -0.01086732, -0.0167537853, -0.000890893862, 0.00676943501, -0.0254476424, -0.00811426621, -0.0242341254, 0.0046344595, -0.00379450596, -0.0121442303, 0.0108039277, -0.00812332239, -0.0138196088, -0.0110756103, -0.00718148751, -0.00947268121, -0.0058276006, -0.00331679685, -0.00345716625, -0.0216621924, -0.00828180369, -0.014897285, -0.00686452398, -0.00693244487, 0.0216621924, -0.00574609544, 0.0224047918, 0.0189091377, 0.0149244536, -0.0101609444, 0.0146437138, 0.00759354, -0.011256733, 0.0147433318, 0.0127691012, -0.00896554, -0.0175597779, 0.0157032777, 0.018537838, -0.0267698318, 0.000324038585, 0.00668793032, 0.00877536088, -0.00522084208, -0.00638907868, 0.013973563, 0.0250853971, 0.0129955038, -0.00291606435, 0.0180669203, 0.00425183913, 0.013149458, 0.0174782742, -0.00342999795, -0.00204441464, -0.0114921909, -0.00471822824, -0.0196336247, 0.00377639383, 0.0124521377, -0.000883535773, 0.0296677854, 0.0136656556, 0.0223866794, -0.00327378022, 0.0158934556, -0.013194738, 0.0101156645, 0.0177318454, -0.0177046768, 0.00441484898, 0.0101428321, 0.0082772756, 0.0100613274, -0.0106046936, 0.00100862316, 0.0207928065, 0.00281644729, -0.00342999795, 0.0105413012, -0.0129230553, 0.00499443943, 0.00773391, -0.0119721647, -3.94789386e-05, 0.0048178453, -0.0163734294, 0.0191808213, -0.00583665678, -0.0049446309, 0.0025764606, 0.0201588795, -0.00229572132, 0.0208290312, 0.00734902546, 0.0125245871, 0.00815049, 0.00610381179, -0.01028773, 0.0179129671, 0.00378318597, 0.0146708824, 0.00872102473, 0.0189634748, -0.00415901421, -0.000295738282, 0.00403449265, -0.0108944885, 0.0060992837, 0.0138558336, 0.0102967862, 0.0218976513, -0.00922816619, -0.0151689677, 0.000416297611, -0.0153138656, 0.0367496535, -0.0037899781, -0.00625776546, -0.00135615107, -0.0039031792, 0.0409697965, 0.0126060918, -0.0134573653, -0.00450314581, -0.00947268121, 0.000852405443, -0.00316284294, 0.000873347686, 0.00941834413, -0.0012723821, 0.0046774759, 0.00402543647, 0.00858065486, -0.00528876251, -0.0204124507, -0.00100749114, -0.00417259801, 0.0316239037, -0.00634832634, 0.00676490692, -0.00336434133, 0.00587740913, -0.00661095325]
25 Dec, 2023
If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero 25 Dec, 2023 Arithmetic Progression is a sequence in which the difference between any two consecutive terms is always the same. In simple terms, it means that the next number in the series is calculated by adding a fixed number i.e. common difference to the previous number in the series. For example, f(n): 1,3,5,7,….. will be called an Arithmetic Progression because the difference between any two consecutive terms in the series (a common difference which is denoted as ‘d’) is the same i.e., The difference between the second and first term (3-1=2) is the same as the difference between the third and fourth term (5-3=2) is the same as the difference between the fourth term and the third term (7-5=2). Hence f(n) is an arithmetic progression. Here, the first term (a)=1, common difference (d)=2, no of terms (n)=4 T4=1+(4-1)×2 =>7 The General Term for AP is: The formula for the Nth term of an AP is Tn = a + ( n- 1) × d, where, a is the first term of the series, n is the no of terms and, d is the common difference between the two consecutive terms of the series. How to find the General Term of An Arithmetic Progression Let the first term be T1, the second term be T2 ……………then the nth term be Tn Let the first term be a and the common difference between two consecutive terms be d. T1=a+0×d, T2= a+1×d, T3=a+(3-1)×d,then, Tn=a+(n-1)×d Therefore, Nth term of an arithmetic progression = a+(n-1)×d Statement: If m times the mth term is equal to n times the nth term of an A.P. prove that (m + n)th term of A.P is zero. Proof: Here, It is given that m times the mth term is equal to n times the nth term we get, Therefore, Nth terms of an AP is = Tn= a+(n-1) d ————>(1) Mth terms of an AP is = Tm= a+(m-1) d ———->(2) According the  question, m×Tm=n×Tn Equating equation 1 and 2 we get, => m[a + (m − 1)d] = n[a + (n − 1)d] => m[a + (m − 1)d] − n[a + (n − 1)d] = 0 //Taking all terms to LHS we get, => a(m − n) + d[(m + n)(m − n) − (m − n)] = 0 => (m − n)[a + d((m + n) − 1)] = 0 //dividing both sides by (m-n) we get, => a + [(m + n) − 1]d = 0          ——————->(3) The above equation represents the (m+n)th terms of the series Tm+n. Thus, => Tm+n = 0 Hence above statement is Proved. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key/If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero
https://www.geeksforgeeks.org/if-m-times-the-mth-term-of-an-a-p-is-equal-to-n-times-the-nth-term-prove-that-mnth-term-of-a-p-is-zero?ref=asr10
Mathematics
If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero
If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero, CBSE Class 12 Maths Term 1 2021 Answer Key, Mathematics, Maths
GeeksforGeeks
[-0.0129598631, 0.0100505063, -0.00797637086, 0.0187507365, -0.0120063173, -0.019363232, 0.0102314707, 0.0267688688, 0.0249453, 0.0257248413, 0.0163146723, -0.00278059347, 0.00800421182, -0.0252654683, -0.0133009115, 0.00250740629, 0.000576390245, 0.0453525595, -0.0217296947, 0.00103880744, -0.0471343659, -0.0166626815, -0.00911088102, 0.0401185, 0.00427703327, 0.00987650175, 0.00309728202, -0.00839398243, 0.0202123746, 0.000265574519, -0.0171777345, 0.0193910729, 0.027200399, -0.0359423906, -0.0319890082, -0.00345399138, 0.00295285811, -0.03432763, -0.0311259441, -0.00739171542, -0.0188481789, 0.0383923762, -0.0464105085, 0.0167183615, 0.0116304681, -0.00475728605, 0.033214, -0.00637900876, -0.0240961574, 0.0307640135, 0.0445451774, -0.0117557514, 0.0129459426, 0.0159527417, 0.00767012313, 0.0160641056, 0.0196973216, -0.00348879234, -0.00515053608, -0.0320168473, 0.040591795, -0.0223282706, -0.000952675182, 0.00502177281, -0.0109344497, -0.0016521737, -0.023455821, 0.0402020253, -0.0129946638, -0.00680358, -0.0491389, 0.0327407047, 0.0168714859, -0.000501568255, 0.0284671541, -0.0262816548, 0.0525911525, 0.0591337234, 0.0344668329, 0.0105377184, -0.0281609055, 0.0169689283, -0.0251680259, 0.0109901307, 0.0303742439, 0.00520969788, -0.0110597322, -0.0356083028, 0.0203515776, 0.0517837703, -0.0127162561, -0.00846358389, -0.0366940908, -0.008895115, 0.00797637086, 0.00958417356, 0.010871808, 0.0148530332, -0.0391162336, 0.0377241969, -0.010384595, 0.0342997871, 0.000623806496, -0.00608668104, 0.0309588984, -0.0366105698, 0.0135862799, -0.00800421182, 0.0171777345, 0.0310145803, -0.0475798175, -0.0269776732, -0.00822693761, -0.00574563211, -0.0100087449, -0.0225231554, -0.00398122519, -0.051004231, 0.0388378277, 0.0254046731, -0.0159249, -0.00336002884, -0.00467028376, 0.0691563934, -0.00591615634, -0.0119436756, 0.0162589904, 0.0232052542, -0.0167322829, -0.0684882104, 0.0336594507, -0.0239151921, -0.0193910729, -0.0417889468, -0.00295633823, -0.0217018537, -0.016133707, 0.00242214417, -0.0106699625, 0.0417889468, -0.0401185, -0.0172055755, 0.0317106, -0.0108787678, 0.0134888366, -0.010927489, -0.00684534106, 0.0512269549, -0.0178319924, 0.0311537851, -0.0331026353, 0.0040299464, -0.0141639747, -0.0159805827, -0.0347174, -0.0241239984, -0.00334784854, -0.00591963669, 0.020365499, -0.0457980111, -0.000565514958, -0.0186532941, -0.0341605842, 0.0347730815, -0.0160084236, 0.0319054835, 9.77144591e-05, 0.00474336557, -0.00483384775, 0.0219245795, 0.00050461333, -0.0129807433, 0.00829653908, 0.0166348405, -0.0219385, -0.0163564328, -0.0185419302, 0.0281887464, 0.0416497402, -0.0208666325, -0.0238038301, -0.00346269156, 0.00167914445, -0.000349749258, 0.0368332937, -0.002874556, 0.0186950546, -0.0212842431, -0.0360259116, -0.000386072701, -0.0231913328, 0.0315157138, 0.0226205979, 0.0290378891, -0.00133113516, -0.0304020848, -0.0427355319, 0.0226066783, 0.0245833714, 0.0212146416, -0.0164260343, -0.0614723451, 0.00475728605, 0.0281609055, 0.0191126652, 0.01247265, -0.0155212106, -0.0257387608, 0.0273674447, 0.0365270451, -0.0552917, -0.00897167716, -0.00207761489, -0.0151732014, 0.0494173057, 0.0133496337, -0.0160501841, 0.026114611, 0.0327963866, -0.041594062, -0.0310702622, -0.0304020848, 0.0348566025, 0.00907608, -0.00868631, -0.000491998042, 0.0206717476, 0.00152602035, -0.0437934771, -0.0107813254, -0.0240543969, 0.0631984696, 0.0076005212, -0.0015442908, -0.0687666163, 0.0462434627, 0.00583959464, 0.0070750271, 0.0342162661, 0.0440162048, -0.0304299258, -0.0039533847, 0.0126118539, -0.0175396632, 0.00780236628, -0.0055020256, 0.0131199472, 0.0381696485, -0.0390048735, 0.00862366799, -0.0090552, -0.0240543969, -0.00657389406, 0.0252933092, -0.0160084236, 0.0279381797, -0.00538022257, -0.0166905224, 0.00817125663, 0.0135723595, -0.00748915831, -0.0254603531, -0.0209779944, 0.0158553, 0.0496400334, 0.025112344, 0.00922920462, -0.0178041514, 0.00624328526, 0.0188760199, 0.00207935506, 0.0108509269, 0.0261006914, -0.0316827595, 0.00649733189, 0.00634768791, -0.0123612871, 0.0147834308, 0.0392275974, 0.0450741537, -0.0128833009, -0.00787196867, -0.00109709904, -0.00252654683, 0.0289822072, -0.00633028755, 0.0119019151, -0.0104541965, -0.0516724065, 0.00695322407, 0.00717595, -0.032350935, -0.00132417504, -0.0126884161, 0.0173308589, 0.0294833407, -0.0197530035, -0.00532454066, 0.00263442961, 0.014101333, -0.00266749063, 0.0167879649, -0.0137811648, -0.00294937799, 0.00528974, -0.0114564635, -0.00309728202, -0.0270055141, 0.0218967386, -0.0396452099, 0.0248896182, -0.0254185926, -0.0214791279, -0.0275066476, -0.0622518882, -0.00842878316, 0.0237342287, -0.0155490516, -0.0156882554, -0.0024447646, 0.0142474966, 0.00374457915, 0.0241239984, 0.0206717476, 0.0352185331, -0.0292606149, -0.0514775217, 0.0299287923, -0.0295390207, -0.018249603, -0.0368332937, -0.0247364938, -0.0160780251, 0.0401463434, 0.000274927268, -0.026058929, 0.0275344886, -0.0221473053, -0.0435985923, 0.00673049828, 0.0258779656, -0.022342192, 0.0244441666, 0.024513768, 0.0162868313, -0.0129598631, 0.000853927573, 0.00396382483, -0.0051957774, 0.00377241988, 0.000742129632, 0.0363043211, 0.0305969696, 0.00260832906, -0.00770492386, -0.00564818922, 0.00659825467, -0.0588553175, 0.0152428029, 0.0183470454, 0.0201149322, 0.0048129675, 0.0128624206, 0.0222447477, -0.029177092, -0.0880880877, 0.0142822983, 0.0252376273, 0.0216879342, -0.00356361433, -0.00482688751, 0.00929880608, 0.0409537219, -0.0100644259, -0.0617507547, 0.0415383801, 0.0105794799, 0.00154690095, 0.0331026353, 0.00662261527, -0.00255264761, 0.0228572451, 0.031265147, 0.0424292833, 0.03850374, 0.0128624206, 0.00374109903, 0.00886727497, -0.0216183327, -0.00817821641, -0.00184096873, 0.0384480581, 0.0169410873, 0.0089020757, 0.0284532327, 0.00904128, 0.00620500417, -0.0239012726, 0.0191822667, -0.0169132482, 0.0419003069, -0.01925187, -0.035274215, 0.0101757888, 0.0181800015, 0.0238873512, -0.0251262654, -0.0351628512, 0.0346895568, -0.0162172299, 0.00961897429, 0.0278407373, -0.0247225743, -0.0245276894, -0.000174439614, 0.0230103694, -0.0420395136, 0.00413086917, -0.00166609406, -0.024458088, 0.00907608, -0.0136210807, -0.00470856437, -0.0152010424, 0.00647645118, 0.022996448, 0.0408423617, -0.0150618386, -0.00792765, 0.0040299464, -0.00816429593, -0.00344877131, 0.0212842431, 0.056182608, -0.0366105698, -0.0106978035, 0.014073492, -0.0227041207, -0.0143101383, -0.0275762491, 0.00508789439, -0.0290657282, -0.00822693761, -0.0304020848, -0.0198922064, -0.00651473226, -0.0303464029, -0.00622240454, 0.0145050241, -0.0234419, -0.0122081628, 0.00595791778, -0.0103219533, 0.0215069689, 0.0519786552, -0.00700890552, -0.011985437, -0.0237899087, 0.0221194644, -0.00287977629, -0.00968857668, 0.0158413798, 0.0233862195, -0.0244998485, 0.0688779801, 0.00574563211, 0.0306804925, 0.0318219624, -0.00174439617, -0.023455821, 0.0170246102, -0.0303742439, -0.032267414, 0.0206856672, 0.0619177967, -0.00174091605, -0.0178737529, -0.0353855751, -0.00502525317, 0.0391719155, 0.0304856058, 0.0249313805, 0.0225092359, 0.0409537219, -0.0186950546, 0.00732211396, 0.0169132482, 0.000866977964, -0.0255995579, 0.0267271064, -0.0345781967, -0.0043953564, -0.0102871526, 0.00680706, 0.0243745651, -0.0107882852, -0.0294555, -0.0315713957, 0.00131982495, 0.0119158356, -0.0177763104, -0.0667620897, -0.0147138294, -3.71662973e-05, -0.00888815522, -0.0427355319, -0.0206299853, -0.033408884, 0.0320168473, 0.022342192, 0.00448583858, 0.00927096512, -0.0307640135, 0.0457144901, 0.0113102989, 0.0309310593, -0.0329355933, 0.0275762491, 0.033214, 0.0129529024, 0.0135166775, -0.00748915831, 0.0125213712, -0.00178528728, -0.034494672, -0.00932664704, 0.0305412877, 0.00844966341, -0.00253350707, -0.0527581945, -0.00197147205, 0.0199478883, 0.0332975201, -0.0360815935, 0.00255786767, -0.0170802921, -0.000853057543, 0.0241657589, 0.0153820068, -0.005585548, 0.00393250398, 0.00534194149, -0.013829886, 0.00478512654, -0.0261981338, 0.00430487376, 0.00753787952, -0.0234140586, 0.00608668104, -0.022968607, 0.0327128656, -0.00246564532, -0.00379678048, 0.0027092516, -0.00141987752, 0.00975121837, -0.0211868, -0.0166905224, -0.0107465247, 0.00238386309, -0.010384595, 0.00165304379, 0.00860278774, 0.0162729099, -0.011171096, 0.0130781857, -0.0232330952, 0.00203411374, 0.043877, -0.00573867187, 0.00665045576, 0.00430835411, 0.0129459426, 0.0211589597, -0.000587265531, 0.0367497727, -0.00460068183, -0.027631931, -0.00716202939, 0.000821301714, -0.0210615173, -0.0192101076, 0.013286992, -0.0219941828, 0.00235254224, -0.0233305376, -0.0142544573, -0.0348009206, -0.0191822667, -0.0462156236, 0.0132382698, 0.0363878421, -0.00803205278, 0.0272421613, 0.0397844128, 0.0289265253, 0.00235776231, -0.0404525921, 0.00826173835, 0.00552986609, -0.0159666631, 0.00438839616, -0.00470856437, -0.0207552686, 0.00505309366, 0.00194015133, 0.0171777345, 0.00429095374, -0.00313904299, 0.0140526118, -0.0213538446, 0.00474336557, -0.000741694646, -0.00136158604, 0.0060275197, 0.0149783166, 0.00357057457, 0.00816429593, 0.00643469, -0.00910392124, -0.0321282111, -0.00795549061, -0.00626068562, -0.0167879649, -0.0212146416, 0.00753787952, -0.0280773826, -0.00355143403, -0.00916656293, -0.0295390207, -0.0219941828, -0.0231913328, 0.0108161261, 0.0083035, 0.0259058047, 0.00360189541, -0.00934056751, -0.0325179808, -0.0244024061, 0.01513144, -0.00560642825, -0.0168436449, -0.0350236483, 0.0880324095, -0.0126884161, 0.00147468899, -0.00418655062, 0.0293162949, 0.0113868611, 0.0157439373, -0.0219245795, -0.0248617772, 0.0124656903, 0.0201566927, -0.00871415064, -0.0282583479, -0.008895115, 0.00272839214, -0.0028623757, -0.0123821674, -0.00933360681, 0.00432575447, -0.00186532934, -0.0162033085, 0.00352533325, -0.015618653, -0.0153541658, 0.0144771831, 0.0148391128, -0.0215487294, -0.0136280404, -0.0335202478, -0.00487908907, 0.0272560809, -0.00144771836, -0.00705414684, -0.0254046731, 0.00285193557, 0.0247225743, -0.0024499849, -0.0226484388, 0.00799725205, 0.00198713248, -0.000764750235, -0.0109831709, -0.00551594608, 0.00125283317, -0.0128972214, -0.0525354706, -0.00950065162, 0.015618653, 0.00933360681, 0.0134401154, -0.00094919512, 0.0183470454, 0.025697, 0.0345503539, -0.00810165424, 0.00952849258, -0.0224953145, -0.0252376273, -0.0215765703, -0.0212981626, -0.00987650175, -0.0235671829, 0.0288708434, -0.00168436451, 0.0251401849, 0.0170663707, -0.00839398243, 0.0297895875, -0.0118531939, -0.0323230959, -0.00822693761, 0.00872807112, -0.0207274277, -0.0153541658, 0.000386290223, -0.0372509062, -0.00615628297, 0.00570387114, -0.013746364, -0.00426659267, -0.00204107398, -0.0194467548, 0.0040055858, -0.0058082738, 0.00603099959, 0.00612496212, -0.00126675353, -0.0491667427, 0.00881159306, 0.00576651236, -0.00596487802, -0.0325179808, 0.0243745651, 0.00182008813, -0.0100992275, -0.0307083316, -0.00657041371, -0.00537326233, 0.0252515487, 0.0122151235, 0.00915264245, -0.0109831709, 0.0307083316, -0.0112615777, 0.0103706745, 0.0092848856, -0.0297617484, -0.0183748864, -0.0253072288, 0.0283418708, 0.00254916749, 0.0302350391, -0.0241379179, -0.0277989749, -0.00340701, 0.00746131735, 0.0286481176, 0.0199200474, 0.0397287309, -0.00941016898, 0.00899951812, 0.01930755, -0.0128693804, -0.0484428816, 0.0121872826, 0.0309588984, 0.0214373674, 0.0126605751, 0.00354969385, 0.0103289131, -0.0177623909, 0.00203759386, 0.0185558517, 0.0141082937, -0.0259336457, 0.00234906212, 0.0053558615, 0.00946585089, 0.0112476572, -0.00069732347, 0.00216983748, 0.0383923762, -0.022885086, 0.00374109903, -0.00958417356, 0.0353855751, 0.00730819348, 0.0131617086, -0.00653909286, -0.0100853071, 0.0175396632, 0.010140988, -0.0084079029, -0.00353403343, 0.00194711157, -0.0242075212, -0.0493337847, -0.0183470454, 0.000826956879, -0.0119088748, 0.00753787952, -0.0249453, -0.00947281066, -0.00945193, -0.00979994, -0.0345225148, 0.0135653988, -0.0356918238, 0.00801117159, -0.00023512372, -0.0307083316, 0.0116652688, 0.0350236483, 0.0195720382, -0.0174561422, -0.0177623909, -0.00425267266, -0.00945193, -0.0293998178, -0.00370977819, -0.0074404371, -0.0116235074, 0.0165234767, 0.0267410278, 0.0111362943, 0.0299009513, -0.0162033085, 0.0143240588, -0.0306248106, -0.0227319617, 0.0388935097, 0.0114216618, -0.0199200474, -0.0366105698, 0.00420395145, -0.0259475671, 0.000186511184, -0.0353020541, 0.00031212077, 0.0320168473, -0.0181104, -0.0204351, 0.00970249716, 0.032490138, 0.0129807433, -0.00247782562, -0.00133113516, 0.00854014605, 0.0437378, 0.0369446576, 0.0125492122, -0.0272700023, 0.0111362943, -0.0116583081, 0.00549506536, 0.0249453, -0.0333810449, 0.00797637086, -0.00392554374, 0.00534194149, 0.00787196867, 0.0141570149, 0.00228294032, -0.00986258127, -0.0344668329, -0.0297339074, 0.00443015713, 0.0122916857, -0.0224953145, 0.0139342891, 0.00488256896, 0.0030398604, 0.00849838462, -0.0160084236, 0.0167740434, 0.0229407661, -0.0390605517, 0.0101549085, -0.0415105373, -0.0403412282, -0.017219495, -0.018820338, 0.025543876, -0.00727339229, -0.0592450872, 0.0071341889, -0.0478025451, 0.0177623909, -0.00250218622, -0.0250149015, -0.0244859271, 0.0401463434, 0.0243745651, 0.000423048681, -0.00628504623, -0.0181939211, -0.000128437154, -0.00586047489, 0.0191822667, 0.0113659808, 0.000327128655, -0.000463287259, -0.0355247818, 0.0359980725, 0.0271864794, -0.0222169086, 0.0174839832, -0.0114216618, 0.0130294645, -0.0170385316, -0.0340492204, -0.0156464931, -0.0400349796, -0.0551525, 0.000260789413, 0.00810861494, -0.0109135685, 0.0221612267, -0.00385594205, -0.00504961377, 0.0128693804, 0.0294555, -0.0137881245, -0.0286481176, -0.00681402, 0.0149504757, -0.00216113729, -0.013829886, 0.0286202766, -0.0119227953, 0.0277989749, 0.00772580458, 0.0249035396, -0.0199478883, 0.0205047019, -0.04685596, -0.0262538139, 0.0329077505, 0.0284810737, 0.0168714859, 0.00668525696, -0.00993914343, 0.0218549781, -0.0102523509, 0.0319054835, 0.00354621373, 0.0172751769, 0.0298174284, -0.0390605517, 0.020365499, -0.0181660801, 0.0249870606, -0.000893513614, 8.05858799e-05, 0.0236089453, 0.00696018431, 0.0121455211, -0.00237168279, -0.00588831585, 0.00180790783, 0.00188969, -0.0230938904, -0.0108787678, 0.0272282399, -0.0317384414, 0.022996448, -0.011226777, 0.00927792583, -0.0190013032, 0.0481366329, 0.0417332649, -0.0183052849, 0.0268941522, 0.00190187036, -0.0243188832, 0.0153680863, 0.0266435854, 0.0250149015, -0.00143466797, 0.021367766, 0.0321282111, -0.0101479487, -0.0107534844, -0.0175118241, 0.0233166162, -0.0147277499, -0.0466889143, -0.041594062, 0.00447539845, -0.018820338, -0.00717595, -0.00509137474, -0.00725251203, 0.0115260649, 0.00703326613, -0.000669482688, -0.026114611, -0.0321282111, -0.0185280107, -0.00629548635, 0.011143255, -0.00968857668, -0.00783020724, -0.00596139766, 0.0191405062, 0.0246808138, 0.0179155134, -0.00408214796, 0.0189317018, -0.00174874626, -0.0246529728, 0.00651473226, 0.0250149015, -0.0127371373, 0.00661565503, 0.0293441359, 0.0162868313, -0.022968607, -0.0241239984, 0.0103219533, 0.00344703114, -0.0090552, 0.00387682253, -0.00565166958, 0.00845662411, 0.0296503846, -0.00142335764, 0.00072646921, -0.00858886726, 0.0162172299, 0.00738475518, -0.00625372538, -0.0044475575, 0.00696714455, -0.00930576585, 0.0115051847, 0.00600315863, -0.00301898, -0.0267549474, -0.034355469, 0.000426093786, -0.0114216618, -0.0226762798, -0.0133009115, -0.00879767258, -0.0119575961, -0.00680009974, -0.000162803059, 0.0148391128, -0.00469812425, -0.0170663707, -0.00865150895, 0.0254185926, 0.00111971959, 0.00751003856, 0.0331026353, 0.00935448706, -0.014588546, -0.000163564328, -0.0210893583, -0.00653909286, 0.0143519, 0.0184723288, -0.000756485038, 0.0209919158, -0.00870023, 0.0174700618, 0.0276876129, -0.0356083028, -0.0132521903, -0.00622240454, -0.00862366799, 0.0203515776, -0.00912480149, 0.00882551353, 0.0258362032, -0.00697410433, -0.0119019151, -0.0126605751, 0.00847054366, 0.0106421215, -0.00261876918, 0.0120619992, -0.00635116827, 0.00674441829, 0.0103358738, 0.0117070293, -0.0224813949, 0.0155768925, 0.0168436449, -0.00739171542, 0.000363017112, -0.00673397817, 0.0241796803, 0.0609712116, 0.00181138795, 0.0112198172, -0.0226762798, 0.000246434, -0.0112128565, -0.012229044, 0.0190848242, -0.00131982495, 0.00787196867, 0.00826869905, -0.00776756555, 0.0319333263, 0.00990434177, -0.00952153187, -0.00897167716, -0.0328799114, -0.0156604145, -0.0195024367, -0.0155212106, -0.00018183481, 0.00213503651, -0.0130085843, 0.0150479181, -0.00625720574, 0.0310145803, 0.0239569545, 0.0205882248, -0.0215626508, -0.0203933399, 0.0362486392, 0.0104611572, 0.0194049943, -0.0148808742, 0.0051435763, 0.0119784772, 0.0318219624, 0.0339657, 0.00714810891, -0.0045067193, -0.0130016236, -0.0352463722, 0.000961375423, -0.0221890677, 0.00149208948, -0.0117209498, 0.00832438, -0.00369585771, -0.0220637843, 0.000108426619, -0.0337986536, -0.00315992371, 0.017247336, 8.52078811e-05, -0.0145328641, 0.00719683059, -0.0252097864, 0.0107047632, 0.00976513792, -0.0202123746, 0.0172334164, -0.00929184631, -0.019224029, -0.0166348405, 0.0069984654, 0.0156882554, -0.0122081628, -0.0158553, 0.00339482981, 0.000134744812, 0.00507745426, 0.0446565412, -0.0159249, -0.00568299042, 0.0107882852, 0.0118879946, -0.00963289477, -0.0139273284, -0.0151036, -0.00272839214, -0.0222865101, -0.00620500417, -0.00454848027, 0.0170802921, -0.00338960974, 0.00625372538, -0.00516097667, -0.021339925, -0.0271586385, -0.0380304456, -0.00820605736, -0.0190709047, -0.0402298644, 0.00359841529, 0.00436751544, -0.025516035, 0.0068523013, -0.0105725201, -0.00679314, -0.00993218273, 0.0198504459, -0.0132313101, 0.00416915026, 0.0184027273, 0.0155072901, -0.00320864492, 0.0132104298, 0.0172334164, 0.0100226654, 0.00311120227, 0.0121246409, 0.013314832, 0.0167879649, -0.00504613342, -0.00997394416, -0.00152167026, 0.0169271678, 0.0023090411, 0.00432923436, 0.00189839024, 0.0155908121, 0.0111293346, -0.0385594219, 0.0108370064, -0.0404525921, -0.0340770632, 0.0141082937, -0.0222586691, -0.0290378891, 0.0215348098, -0.0306248106, 0.0348009206, -0.00065077719, -0.00771884434, -0.0178876724, 0.016245069, 0.00253698719, -0.00820605736, -0.0307918545, -0.00609712116, 0.00275275274, 0.0021802776, 0.00367845735, -0.00963985547, -0.0252376273, 0.00260832906, -0.00297895889, 0.0158831403, 0.0466889143, 0.0107047632, -0.0448792689, 0.00870719, -0.0116652688, -0.0283975508, 0.0306804925, -0.0259197261, 0.00593007682, 0.0212981626, -0.00158431195, 0.00769100338, -0.00562730897, 0.00359145505, 0.0271029565, 0.00304682064, -0.0217436161, 0.00573519152, 0.0283697098, -0.00835222099, 0.00750307832, 0.00725251203, 0.000913524185, -0.00850534532, -0.00315296347, -0.000461547199, 0.0347452387, 0.00710286805, 0.0412599705, -0.0150896795, 0.00679314, 0.0140386913, -0.00649385201, 0.0202402156, -0.00855406653, 0.0162311494, -0.037584994, -0.0156882554, -0.0141709354, 0.0135514783, 0.0246668924, 0.0201288518, -0.00597183779, 0.0122151235, 0.000487212877, 0.0215069689, 0.0181939211, 0.00448931893, -0.0112406975, 0.000869588, 0.0182635225, -0.0217853766, -0.00942408945, -0.0279799402, -0.00322952541, -0.0281609055, 0.0155768925, 0.00142770773, -0.0293441359, -0.0117000695, -0.00181312801, -0.0023212214, 0.00397426495, 0.00641380949, 0.0158135388, 0.000890903582, -0.0348287597, 0.00924312416, 0.0112754982, -0.00911784079, -0.0136350011, -0.0127580175, 0.00510529522, 0.0107326042, -0.0284393132, 0.0117766317, -0.0309310593, -0.0136489207, -0.000719509029, 0.00298765907, 0.00406822748, 0.00511573534, -0.0126396948, 0.0285367556, 0.0187368151, -0.0299009513, 0.007294273, -0.0321003683, -0.0175257437, -0.00762140146, -0.0198504459, 0.0178737529, 0.0217992961, 0.016704442, -0.00697410433, 0.0118531939, -0.00601011887, -0.000270359655, -0.00492433039, 0.00256134779, -0.0172890984, 0.0105098784, -0.0374736302, -0.011011011, -0.011442543, -0.00536282174, 0.0142822983, 0.0123404069, 0.0139273284, 0.0308753774, -0.0145746255, 0.00931272656, 0.00937536824, 0.00361929578, 0.000722119119, -0.00580131356, 0.0114007816, 0.0243188832, 0.00458676135, -0.0341327414, -0.0353577361, -0.0212424826, -0.0263373367, 0.00203759386, 0.00443015713, 0.00320168468, -0.00257526804, -0.013802045, 0.00718987035, -0.0167462025, -0.00800421182, -0.0153680863, 0.0154794492, 0.00758660072, -0.0118949544, -0.0015442908, -0.0379469246, 0.00973033719, -0.0201427732, -0.00593355717, 0.0131199472, 0.00767012313, 0.017706709, -0.00305378088, 0.0147138294, -0.0179851167, -0.00890903547, 0.0522013828, -0.00227598031, 0.000304508052, -0.0280217, 0.0151175195, -0.00626416551, 0.00661913492, 0.000441754179, -0.0103428336, 0.00384202157, -0.00399862602, 0.00846358389, -0.00754483975, 0.0183748864, 0.0170942117, 0.0144075816, -0.0308196954, 0.00373413879, 0.00342615065, -0.0166348405, -0.00976513792, 0.0193771534, -0.0128972214, 0.0168854073, -0.0173169374, -0.0106212413, -0.0290378891, 0.00227424013, -0.0195859578, -0.030179359, 0.00291109714, 0.00628852658, -0.000152797787, -0.00180094771, 0.0203237385, 0.0200731717, -0.00635464815, -0.0215765703, 0.0164399557, -0.0305691287, -0.013802045, -0.00157648174, -0.00551246572, -0.0133009115, -0.0132313101, 0.000303203036, 0.0227876436, -0.0134540359, 0.0114355823, -0.0151732014, 0.00226032, -0.0039533847, 0.0128206592, 0.0125352917, 0.00961201452, -0.0162868313, 0.00872807112, 0.0107813254, 0.0401185, -0.00428051315, 0.00107882859, 0.0130016236, -0.00685926154, -0.00238734321, -0.0320446864, -0.00522361835, 0.00456240075, -0.00325910631, 0.00944497, -0.00180094771, -0.00495565124, 0.000666437612, -0.0102871526, 0.0168993268, -0.028174825, -0.0136767616, -0.00797637086, 0.00596139766, 0.0217296947, -0.0178180709, 0.010927489, -0.00624676514, -0.00895775668, -0.00811557472, -0.0118253529, 0.00131286471, -0.00871415064, 0.00855406653, -0.00969553646, -0.0156604145, -0.0173447784, -0.0189595409, 0.00680009974, 0.00161737285, 0.0264487, -0.00061293121, 0.0116095869, 0.00093875482, 0.018792497, 0.0108787678, 0.00659129443, -0.0158274584, -0.0168854073, -0.0100853071, 0.00473640533, 0.0108787678, 0.00682098046, -0.0370560214, 0.00257178815, 0.00218375772, 0.00734299421, -0.0223143511, -0.00285019539, 0.0401741825, -0.0184027273, 0.0170802921, 0.00224987953, -0.0165652391, -0.00242214417, -0.0159109812, 0.00663653575, 0.0210893583, 0.0388656668, 0.0095563326, 0.035496939, -0.00662261527, -0.0164817162, -0.0254603531, 0.00954241212, -0.00589875598, -0.0152010424, 0.0062154443, 0.00941016898, 0.00792765, -0.00116844091, -0.0228294041, 0.0286481176, -0.020309817, 0.00316514377, 0.00697758468, 0.0147277499, -0.0288430024, -0.00817125663, 3.45630247e-06, -0.0307918545, -0.00381766097, -0.0367497727, 0.004311834, -0.0155212106, 0.00276145316, -0.0134401154, 0.0221055448, 0.0190987457, -0.000773885462, 0.00737779541, -0.00798333157, -0.00151558011, -0.0348844416, 0.00195581163, 0.00799029134, -0.0045276, -0.00355491415, -0.0272978414, -0.034494672, -0.0213538446, -0.00181834807, -0.00982778, -0.00224813959, 0.0153541658, -0.0254325122, -0.00618412346, 0.00301027973, -0.0194049943, -0.0221612267, -0.00556814717, -0.00250914646, -0.0305412877, 0.00323126558, -0.00339134969, 0.011226777, -0.012284725, 0.00505309366, 0.0106351618, -0.00506701414, 0.00472944509, 0.00799029134, 0.0175257437, -0.0150896795, 0.0115469452, 0.012068959, 0.0667064041, -0.00582915405, 0.00240300363, 0.00275449292, 0.0262120534, -0.0212007202, -0.00286411587, -0.0227180403, -0.0279799402, 0.00921528414, 0.00493825087, -0.00445103785, 0.0188481789, 0.00224117935, 0.00634420803, -0.0201149322, 0.00710982829, -0.0187368151, 0.0125979334, 0.00688014226, 0.0144215012, -0.00871415064, 0.00361581566, 0.00455892039, 0.00162172294, 0.0131408274, -0.0159388222, -0.00895775668, 0.0277850553, 0.00929880608, 0.00599619886, -0.00579435332, 0.0129459426, -0.000798681111, 0.0128136994, 0.0076770829, -0.00578739308, -0.00125892332, 0.00552290631, 0.0138577269, 0.00254220725, -0.0112337377, 0.032183893, -0.027520569, -0.0128067387, -0.0116443885, 0.00164782361, 0.00762140146, -0.0300401542, -0.0190291442, -0.00358797493, 0.0149783166, 0.0115399854, 0.0100365859, -0.0017470062, 0.00433967495, 0.0284949932, -0.0193771534, 0.00572823174, -0.018792497, -0.0300679952, 0.00219593802, -0.00470508449, 0.00192275085, -0.0230799709, 0.00440231664, 0.0115956664, 0.00671309745, -0.0256413184, 0.0114216618, 0.00941712875, -0.00446843822, 0.00296677859, -0.0246112105, 0.0184027273, 0.00584307453, -0.00820605736, 0.0140595715, 0.0171498936, -0.00723859156, -0.00394294411, 0.00255960762, -0.0172890984, -0.0222169086, -0.00114060019, 0.00287629617, 0.0154516092, -0.0178041514, 0.0238873512, 0.0148669537, 0.00492085, -0.00023642875, 0.0125352917, -0.0237203073, -0.0143658202, -0.00592311658, -0.012068959, -0.0158692207, -0.00783020724, 0.0165791586, 0.00107360841, 0.0273674447, 0.0149226347, -0.00234210189, -0.0299009513, 0.00482688751, 0.00117888115, 0.00444059772, -0.0153402463, -0.0113799013, -0.0137533238, 0.0080181323, -0.0255856365, -0.0173726194, -0.00778844627, 0.0259058047, -0.00342093059, 0.0188620985, 0.0117766317, -0.016133707, -0.0207135081, 0.00615976285, 0.0094032092, -0.0142057361, -0.0136071602, 0.00530366041, -0.00900647789, 0.00413086917, 0.00916656293, 0.0232330952, -0.00111275946, 0.000250784127, 0.016133707, -0.0367219299, -0.0132521903, -0.0111362943, 0.00461112196, 0.0108787678, 0.0195302758, 0.0179990362, 0.0124796098, -0.0161058661, -0.00256830803, -0.0340213813, 0.0210475978, 0.000302768021, 0.0189177804, -0.00280843442, 0.000757790054, 0.00106664817, -0.00579087343, 0.00473988522, -0.0236785468, -0.0108022057, -0.0162729099, -0.00160867255, 0.00298591889, 0.0262398943, 0.000346921675, -0.00230034092, 0.0281469841, -0.00167827436, 6.59586221e-05, 0.00665393611, -0.0274927281, 0.0207552686, 0.043682117, 0.0199896488, 0.00779540604, 0.0156882554, -0.0346060358, -0.00189491012, -0.00727339229, -0.0136976428, 0.00820605736, 0.0116583081, 0.0207831096, 0.00359841529, 0.00736387493, 0.0105029177, -0.00118845142, 0.0150061566, 0.013259151, 0.000632941723, 0.012229044, 0.0139342891, 0.00160432246, -0.0195024367, -0.0034696518, -0.0196694806, 0.0406474769, 0.0133357132, 0.0131477881, -0.0108370064, 0.00508789439, 0.00705414684, 0.0185001697, 0.0211032778, -0.0191544276, -0.0105446791, -0.0117209498, -0.00293371757, -0.0108230859, 0.00874199159, 8.40659777e-05, 0.00396382483, -0.00899255835, -0.00639988948, 0.000857407693, -0.000239038825, -0.0203933399, -0.00711678853, 0.00388030265, -0.00469812425, -0.0315713957, 0.0206160657, 0.00533846114, -0.0211589597, -0.0141500542, 0.00230730115, -0.000676877913, -0.00655997358, -0.0139899701, -0.00377938, -0.00349575258, -0.0089438362, 0.0112615777, -0.0140317315, -0.00210371567, 0.00359841529, -0.00651473226, 0.0223700311, -0.00784412771, -0.00914568175, 0.00944497, -0.000487212877, 0.00715506915, -0.0226484388, -0.00348009216, -0.0150618386, -0.00397774531, 0.0169271678, -0.00534890173, -0.00327998679, -9.93457506e-05, 0.00466332352, 0.0351628512, -0.0206439067, 0.0116235074, -2.09349291e-05, 0.00701586576, 0.0111084543, 0.0216740128, 0.0105864406, 0.0152428029, 0.000449801912, 0.0268663112, 0.00275623286, 0.0152149629, -0.0242632013, -0.00698454492, 0.0185280107, 0.0110527724, -0.00541850319, 0.0223004296, 0.00459024124, -0.0129181016, 0.0123125659, -0.0155490516, 0.0209779944, 0.000187381214, -0.0100087449, -0.007022826, 0.00836614147, -0.0095145721, -0.00572823174, -0.0146720679, 0.0166905224, -0.0234140586, 0.00649733189, -0.00986258127, 0.00547766499, 0.0035061927, -0.0231913328, 0.00226728, -0.0164260343, -0.0118462332, 0.0466610752, 0.0147695104, -0.00881855376, 0.0218271371, -0.00565514946, -0.0156047326, -0.00698106457, -0.0141361337, 0.0253907517, -0.00422135182, -0.00762836169, 0.0193910729, 0.00405082712, 0.0128693804, 0.00225161947, -0.000740824617, 0.00825477857, 0.0199339669, 0.00641729, 0.0193214715, -0.00575259235, -0.00495217089, 0.00637204852, 0.00767012313, -0.00873503089, -0.0102732321, 0.00653561298, 0.00494521065, -0.00252306671, -0.0152010424, -0.00238908315, -0.0252515487, -0.00724555179, 0.000552029582, -0.0148530332, -0.0143936612, -0.000699498516, -0.00553682633, 0.00178528728, 0.00574563211, -0.010683883, 0.0115330247, 0.0084009422, 0.012013278, 0.00333914836, 0.0147416703, 0.0243049636, -0.0174422208, -0.00238386309, -0.0060484, 0.0189317018, 0.0115260649, 0.0294555, -0.00217853766, -0.00762140146, 0.0200870913, -0.00357405446, -0.00203759386, -0.0271725599, -0.0174700618, -0.000133222275, -0.00461112196, -0.01779023, -0.00728035253, -0.00346791185, 0.0160223432, -0.02342798, 0.00122760248, -0.0129459426, -0.00654257322, 0.0024325843, -0.0184584092, 0.0233583786, -0.00319994474, 0.00645209057, 0.00485820835, -0.00492433039, 0.0235115029, 0.0118879946, 0.0188342575, 0.018360965, 0.00157300162, 0.0242492817, 0.00373761891, -0.00702978577, -0.000376502459, -0.0431253, 0.00379678048, -0.00581175368, 0.00351489289, 0.00982778, 0.00268141087, 0.0148947937, -0.00737779541, -0.0080181323, -0.00391510362, -0.00111623958, -0.0205186233, -0.00825477857, -0.0397565737, -0.0145467846, -0.0185001697, -0.010412435, 0.00929880608, 0.00248304568, -0.0241239984, -0.0216600932, -0.00575955259, -0.00504613342, -0.00599271851, -0.00789284892, -0.0053906627, 0.0127858585, 0.0294833407, 0.0124656903, 0.00831742, 0.00706110662, 0.0107952459, -0.0101479487, 0.036582727, 0.0093962485, -0.0106978035, 0.00394294411, 0.00368541759, -0.00818517618, -0.0144354217, -0.0243328046, -0.00574563211, -0.0139342891, -0.0233722981, 0.0125352917, 0.0137533238, -0.006114522, 0.0056621097, -0.00662957551, -0.00827565882, -0.000333436328, -0.0116443885, -0.0525911525, -0.0119227953, -0.00254220725, 0.0163425133, 1.13782698e-05, -0.00152341032, -0.0261842124, 0.00958417356, 0.028063463, -0.00439187605, -0.0182913635, 0.0121872826, -0.00120063173, -0.0180686377, -0.00560294837, 0.0202680565, 0.000219028298, 0.00803901255, 0.0103706745, 0.00718987035, -0.0372509062, -0.00690798275, -0.000369324785, 0.00861670822, -0.0124308886, 0.0173169374, -0.00219419808, -0.0300958361, 0.0126118539, -0.000785195793, 0.0209223144, 0.00191579072, -0.0171498936, 0.00803205278, -0.00476076594, 0.000254916755, 0.0153124053, -0.0164817162, 0.00769796362, -0.00484080799, -0.00759356096, -0.0477190241, 0.0225231554, -0.00353751355, -0.0121246409, -0.0224813949, -0.00159301213, 0.00147207896, 0.00540806307, 0.0181243196, -0.00408562832, -0.0052549392, 0.00778844627, 0.0237620696, 0.000999656506, 0.00110318919, 0.0189734623, -0.00350967282, -0.0096676955, 0.00376893976, -0.0226066783, -0.00356709445, 0.000779105641, -0.00554378657, -0.0149504757, -0.0119784772, -0.0130085843, -0.0199757293, 0.00848446414, 0.0178319924, 0.00920832343, -0.0162729099, 0.00741955638, -0.0129111419, 0.00760748144, -0.00150252972, -0.000207718, -0.0126048932, -0.0137324436, -0.0087837521, -0.00417611049, 0.0196416397, -0.0108509269, 0.00916656293, 0.0152984848, -0.0211311188, 0.0114007816, -0.011797512, 0.013259151, 0.0031512233, 0.013043385, -0.0138994874, 0.00892295595, -0.0137324436, 0.00603099959, -0.000523318828, 0.00241344376, 0.027631931, -0.029204933, -0.0140804527, 0.00689406227, -0.0121942423, 0.00410998892, 0.0145467846, 0.0108161261, -0.0102245109, 0.00241170381, -0.00513661606, 0.0115747862, 0.01095533, -0.0223978721, 0.00941712875, 0.00643469, 0.000405213214, -0.0172612574, 0.00768404314, 0.00145641854, -0.0110875731, 0.015159281, -0.0212285612, -0.0259475671, -0.00997394416, 0.0159249, -0.025543876, -0.00676529901, 0.000597705832, 0.00518881716, 0.0108926883, -0.0050844145, 0.019766923, 0.00451019919, -0.000223595911, -0.0112476572, 0.00397078507, -0.0248060971, 0.00189665018, -0.0116304681, 0.0144771831, 0.0171916541, -0.019906126, -0.0075169988, 0.00255960762, -0.0085123051, -0.0119227953, 0.0157300159, 0.0215487294, 0.0198922064, -0.00363669614, 0.0040891082, -0.00665393611, 0.00612148177, -0.00946585089, 0.0168575663, -0.0057978332, 0.0030398604, -0.0190430637, -0.0102175502, -0.00895775668, -0.0175814256, -0.00120063173, -0.000898733793, 0.0382531732, -0.000680793, -0.00215069694, 0.0105029177, 0.0163425133, 0.00376893976, 0.00182008813, -0.00724555179, 0.02076919, 0.00788588822, -0.00697758468, 0.0104820374, -0.033353202, -0.00991130248, -0.01930755, 0.00995306298, 0.024458088, 0.0179572757, 0.0171777345, -0.00635812804, 0.0258362032, 0.000892643642, 0.00406822748, 0.00201671338, -0.00249000592, 0.0166626815, 0.0154794492, 0.00721771084, -0.00986954104, -0.00108578871, -0.00509485463, 0.00859582704, 0.0219663419, 0.00645557093, 0.00782324653, 0.0149504757, 0.0094032092, 0.0206021443, 0.0131199472, 0.0219941828, 0.0107465247, 0.00179746759, -0.00809469447, 0.0186115317, -0.0241518393, 0.018764656, -0.00887423474, 0.00468768412, -0.0125770532, 0.0277572144, -0.048860494, 0.00258744857, 0.00932664704, -0.000144641323, -0.0208248701, -0.000165304373, -0.00863758847, 0.0272143204, -0.00800421182, 0.012201203, -0.0096746562, 0.00424223207, 0.0164121147, 0.0128763411, -0.0169689283, 0.00460068183, -0.000679052959, 0.00730123324, -0.0249313805, -0.00239778333, 0.00391162327, 0.00746827759, -0.0227180403, -0.00415871, -0.0231774133, -0.00911784079, -0.00330782752, 0.0120828794, -0.0114773437, 0.000753874949, 0.00388726289, -0.0110875731, -0.0212564021, -0.0146024665, -0.0283418708, -0.0303185619, -0.0204629414, 0.0269219931, -0.00170959521, -0.00247956556, 0.0123682469, -0.0113102989, -0.0033043474, -0.0182913635, 0.0123752076, -0.0142335771, -0.00943104923, 0.00372369844, -1.01683936e-05, -0.0124656903, 0.0222308282, 0.00531062065, -0.00285715563, -0.012987704, 0.00571779115, -8.23803057e-05, -0.00728731276, -0.0162729099, -0.00129720429, 0.0071341889, 0.00468420377, 0.00411346881, -0.0211450402, 0.00269707129, -0.0370281786, -0.0219941828, 0.00776756555, -0.00895079691, -0.0339100175, 0.00468072388, -0.0127510577, -0.0211728811, 0.00371673843, -0.00488256896, -0.00366105698, -0.0180825591, 0.00240474357, 0.0196137987, -0.00765620265, -0.00445799809, -0.00704718661, -0.0234001391, -0.0101549085, 0.0133009115, 0.0284393132, 0.00426659267, 0.0098417, 0.00754483975, -0.0160362646, -0.00961897429, -0.00561338849, 0.0034940124, 0.00536978198, 0.00932664704, 0.00384202157, -0.000826086849, 0.00547070475, -0.00401254604, -0.00941016898, -0.0153820068, 0.00580131356, 0.00581523404, -0.00313904299, -0.00123021251, -0.00282235467, 0.0020149732, -0.0277293734, -0.000498523179, 0.0289543662, -0.005585548, 0.00674441829, -0.00963985547, 0.0141848549, 0.0139690898, -0.00145902857, -0.0036227759, 0.0139969308, -0.0270055141, -0.00302246, 0.00819213688, -0.0104611572, 0.00164086337, -0.00360885542, 0.0132730715, 0.00683142059, 0.0266853459, 0.00945889, -0.00697410433, 0.00562382862, -0.0179433543, 0.0108091664, -0.021882819, 0.00810165424, 0.0151732014, 0.019335391, 0.0218410585, 0.0131547479, -0.0119923977, -0.0188064184, -0.0227458812, -0.0103706745, -0.00513313571, 0.0130364252, 0.0168158058, -0.00416567037, -0.00816429593, 0.0017591865, -0.0077118841, -0.00902039837, 0.000176505913, -0.019335391, -0.0170663707, 0.0119019151, 0.00596139766, 0.0174143799, -0.019906126, -0.0047781663, 0.0117766317, 0.00432575447, -0.00294589787, -0.00730819348, 0.0153263258, -0.00513313571, 0.0160362646, -0.0044719181, -0.0141639747, -0.0321560502, -0.0124587296, 0.0195302758, 0.0255856365, 0.00770492386, 0.0158692207, 0.0110318922, -0.0237063877, -0.011171096, 0.00912480149, 0.0115121445, 0.00909696054, -0.0111154141, 0.00132939522, -0.0173308589, 0.00702630589, 0.00601359922, -0.00304508046, -0.0336594507, -0.00394642446, 0.00428747339, 0.0110458126, 0.0038002606, 0.00397774531, 0.00986954104, 0.00831046, 0.00239082333, -0.00597879803, 0.000425441249, -0.013530598, 0.00565863, 0.0103358738, -0.00741955638, 0.0143936612, -0.00141204731, 0.012744097, 0.000735169451, 0.011985437, 0.00764924241, -0.000545939431, 0.0174839832, -0.0176510271, 0.0238873512, 0.00222029886, 0.00210893573, -0.0184027273, -0.00129981444, -0.012771938, 0.0168854073, -0.0258640442, -0.011797512, -0.00699150516, -0.0115678264, 0.0378077216, 0.0202958975, 0.0166626815, 0.00993914343, -0.00568995066, -0.0122638447, -0.0219802614, 0.0159249, 0.0136698019, 0.0148251923, 0.00340353, -0.0123473667, -0.010440276, 0.0128485, 0.0213956069, 0.00314252311, -0.00746827759, -0.0165373981, 0.0147695104, -0.0111293346, -0.0148391128, 0.0356639847, -0.011797512, 0.0112406975, -0.026058929, -0.0304299258, -0.01513144, -0.0126257744, 0.0149922371, 0.0211868, 0.00970945694, -0.0157300159, 0.0104054753, 0.0116165476, -0.0382810123, -0.00926400535, -0.0157439373, -0.00437795604, -0.00217853766, -0.00531758089, 0.00518185692, -0.0123404069, 0.0164121147, -0.0143101383, 0.00212981645, -0.000553769642, 0.0137533238, 0.00115365058, -0.0106978035, -0.0134818768, -0.0144493422, -0.00759356096, -0.00876287185, 0.0100157047, 0.0170942117, -4.22504927e-05, 0.00508093461, 0.0198922064, 0.0155908121, -0.0262259748, 0.0120271984, 0.0150479181, 0.00318428432, -0.0151036, 0.00148338929, 0.00317036384, -0.0047781663, 0.00936840754, -0.00327128661, 0.0306526516, -0.0140595715, 0.00256308774, -0.0182635225, 0.0252097864, 0.00502177281, 0.0187368151, 0.0124030486, -0.007294273, 0.0149226347, 0.0102245109, -0.020226296, -0.0195581168, 0.001396387, 0.0107952459, -0.00826173835, 0.0101201078, -0.00756572, -0.00356709445, -0.00251958659, 0.00982778, 0.00733603397, 0.0239151921, -0.00854014605, -0.00327824685, -0.0048895292, -0.0102941124, 0.00519229751, -0.00370281795, 0.015159281, 0.00711678853, 0.0220220219, 0.0147555908, 0.00726643205, 0.0482758358, -0.013530598, -0.0266853459, 0.00918744318, 0.000780410657, -0.00872111, 0.00131025468, 0.00156517141, -0.0142962178, -0.0149783166, -0.0261006914, 6.90037e-05, 0.00180964789, 0.0110875731, -0.00524101872, 0.0135862799, -0.00548462523, 0.012201203, -0.0083035, 0.016607, 0.00377241988, 0.00374805927, 0.0131408274, 0.00920832343, -0.0115539059, 0.0179294348, -0.00865150895, -0.0096746562, 0.0126257744, -0.0128554599, 0.00993914343, -0.0043709958, 0.00973729789, 0.00931272656, 0.00325040589, -0.00474336557, 0.0231774133, 0.00968857668, 0.0168714859, -0.00650777202, -0.0057212715, 0.0123195257, -0.00881855376, -0.023539342, -0.000766490295, -0.0249035396, -0.0283418708, 0.0241100788, 0.00465288293, 0.00801117159, 0.017135974, 0.00902039837, -0.00208109501, 0.0198782869, 0.0197390821, -0.00347487186, 0.00881159306, 0.0195581168, -0.0186115317, 0.00425615255, 0.00944497, 0.00137289637, 0.00783716701, 0.00882551353, 0.00137289637, 0.00259266864, -0.000907434034, -0.0302072, 0.0142822983, -0.0225649178, -0.0133774737, 0.00931272656, -0.00855406653, -0.0103219533, -0.00909696054, -0.0121733621, -0.0111502148, 0.0318498, -0.0171081331, 0.03432763, 0.00952849258, 0.00243432447, -0.0186115317, -0.00349227246, -0.00882551353, -0.00959809404, -0.00133548537, -0.00325562619, -0.0085192658, 0.0157856978, -0.0165930782, -0.00907608, -0.0262398943, -0.000418046053, -0.0288430024, -0.00338264951, 0.0274648871, -0.0031634036, -0.020797031, 0.02760409, -0.00327128661, 0.00401602639, -0.00423527183, -0.00501829293, 0.00706110662, -0.027200399, -0.019906126, 0.00562382862, -0.00254046731, 0.000978775905, -0.0131338676, 0.0100644259, 0.00773276482, 0.0186672136, 0.0120619992, -0.00918048248, 0.0069393036, -0.0037584994, 0.0153541658, 0.00716202939, -0.00730123324, 0.0129389828, -0.00710634794, 0.00121542218, -0.00424571242, -0.0119645568, 0.00763532193, -0.00194885151, 0.00723859156, 0.0194885153, -0.00228468049, -0.0021976782, -0.00586395524, 0.00279799406, -7.50938634e-05, 0.0220916253, -0.0147277499, -0.020309817, 0.00167566433, -0.021451287, -0.0132661108, 0.00601707911, -0.00447887834, -5.01282784e-06, -0.0105446791, 0.00835222099, 0.00174091605, -0.00298243901, -0.00199409272, 0.00283105485, 0.00675833877, 0.0114077423, 0.00495565124, 0.0097790584, -0.0147555908, -0.00455544051, 0.00595791778, 0.00151035993, -0.0175675042, -0.00976513792, -0.0102871526, -0.0182078425, 0.0174700618, -0.00643121032, -0.0108091664, -0.00581175368, 0.0108300466, -0.00328520685, 0.00192971108, 0.0295111816, 0.0208666325, 0.0303464029, 0.00730819348, -0.00699150516, 0.0109483693, -0.0037759, 0.00856798701, -0.00592659693, 0.0161058661, 0.01361412, 0.00127023365, -0.00538370246, -0.00128328393, -0.024458088, -0.000448496867, 0.0089438362, -0.00957025308, 0.00205499446, -0.0150061566, 0.0122708045, -0.00764924241, -0.00467028376, -0.00304682064, -0.0151175195, 0.00860278774, -0.0151175195, -0.0113172596, 0.00618412346, -0.0185001697, -0.0139690898, -0.000910914096, -0.00760748144, -0.00696018431, 0.0106142806, -0.00666089635, 0.011797512, -0.00239778333, -0.00948673114, 0.0104472367, -0.0089438362, 0.00566907, -0.0339378566, -0.00388030265, 0.00906216, -0.00781628676, -0.0115956664, 0.0116235074, 0.000107991604, 0.0034818321, -0.000491128, -0.00874895137, -0.0194049943, -0.0141778952, -0.00322952541, -0.0225092359, 0.00202193344, -0.0116791893, -0.00215939712, 0.000364974665, -0.0150200771, -0.00377241988, 0.0054150233, 0.0194189139, -0.0268663112, 0.00156082131, -0.0207413491, -0.00307466136, -0.00705762673, 0.00183574855, 0.00430835411, -0.0114147021, 0.0101270676, 0.00275275274, 0.00697758468, -0.00429095374, -0.0212146416, 0.0231495723, 0.00904823933, -0.000983996084, -0.0122916857, 0.0240265559, -0.00888119545, -0.00024839156, -0.0115399854, -0.0279660206, -0.019822605, -0.0057212715, 0.012827619, -0.00825477857, 0.0252793897, -0.032350935, 0.00916656293, -0.0183748864, -0.00212459615, -0.0136906821, 0.00196799217, 0.00681402, 0.0265879035, -0.00639640912, -0.0135097178, -0.00945193, -0.00436751544, 0.0160223432, -0.00991130248, -0.00144162809, -0.00399862602, -0.0123543264, -0.0121803218, 0.00314774318, 0.02191066, 0.0165095571, -0.00858190749, -0.00186010927, -0.00427703327, -0.0134192351, -0.00277189328, -0.013746364, -0.0047781663, 0.00723163132, -0.00182008813, 0.00744739687, 0.00361581566, 0.00590919657, -0.0170106906, -0.0363321602, 0.0111850156, 0.0157856978, -0.0179294348, 0.00123195257, 0.00382114109, -0.00118758145, 0.0123960879, -0.0198922064, -0.0247643348, -0.00349053228, -0.0141639747, -0.0108787678, -0.0209501535, -0.0170385316, -0.00572475139, -0.0244441666, -0.0165930782, -0.0111850156, -0.00230730115, -0.011470383, 0.00179398747, -0.0300958361, -0.0129181016, -0.0124030486, -0.0126814554, -0.0253489912, 0.0057734726, 0.00748915831, 0.00739867566, -0.0214791279, -0.00215243688, -0.0121872826, -0.0153124053, 0.0475241393, -0.00696714455, 0.00906912, -0.0351071693, -0.0312929861, -0.0186950546, -0.00989042129, 0.0147416703, -0.0134401154, 0.00336350896, -0.00369585771, -0.00646601105, -0.00269359117, -0.00508789439, 0.00509485463, 0.00374805927, -0.0111919763, -0.0146720679, 0.00796245, -0.00172525563, -0.00783020724, 0.00274579274, 0.0151453605, -0.00438839616, 0.0288986843, -0.000558554777, -0.0295111816, -0.0240126345, 0.000193471365, 0.00473640533, 0.00631984742, 0.0233722981, -0.00702630589, -0.00707154721, 0.00741259614, -0.0167322829, 0.0174004603, 0.00595443742, -0.00574563211, -0.0141639747, -0.0145746255, 0.00176179665, -0.0277015325, -0.00127371366, -0.0173865408, -0.00774668483, -0.0332975201, -0.0299287923, 0.00860278774, -0.0109344497, -0.00657389406, -7.28100495e-05, 0.00319994474, 0.012068959, 0.00885335449, 0.0171498936, -0.0101201078, 0.0101340283, -0.0107326042, 0.0188899394, -0.00513313571, 0.00322256517, -0.0053663021, -0.00393946422, -0.0146859884, -0.00345225143, -0.0105725201, 0.00682098046, -0.000669917732, -0.00429095374, 0.0225649178, -0.0209223144, 0.00862366799, 0.00571431126, 0.00957721379, 0.00446843822, 0.0129807433, -0.00350793288, 0.00548114488, -0.00374457915, -0.0334645659, 0.010468117, 0.0183192044, -0.00958417356, 0.034271948, -0.0220220219, 0.0289543662, 0.00270403153, -0.00530714029, -0.0133357132, -0.0103985155, 0.00793461, -0.0123612871, 0.0331026353, -0.00281017437, -0.00598575827, 0.0256830789, 0.00254742731, -0.0113799013, 0.010683883, 0.00438839616, 0.00959113333, 0.0114843035, -0.00874895137, -0.0190152228, -0.00839398243, 0.0224813949, 0.0121037606, 0.0033461086, 0.0190013032, -0.0153124053, -0.00596139766, 0.0104750767, -0.00349053228, 0.00731515372, 0.010440276, 0.0170385316, 0.00281017437, 0.00941016898, -0.0252376273, -0.0117000695, 0.00195755181, -0.00274057244, 0.0251262654, 0.00165043364, -0.000986606115, -0.00328346691, 0.0181800015, 0.00187054952, -0.00924312416, 0.0191405062, 0.0119993575, 0.0277432948, -0.000628591632, 0.0204351, 0.0175396632, -0.0123334462, -0.0142683778, -0.0124239288, -0.00293545774, -0.00998090394, 0.031265147, 0.00504265353, -0.0263930187, 0.0122638447, -0.00406822748, -0.00364017626, -0.00668177661, -0.00404038699, -0.0110527724, 0.00219593802, 0.00248304568, 0.00954937283, 0.0313765109, 0.00998786464, -0.0153541658, -0.00680009974, 0.0166487601, -0.00572823174, 0.0201010127, 0.00344355102, 0.0165234767, 0.0165095571, 0.0158553, 0.02191066, 0.00232470152, 0.0173587, -0.00102923729, 0.0150339976, 0.021423446, 0.00471552461, 0.0305969696, -0.0143101383, 0.0185976122, -0.0154237682, -0.00535238162, 0.0113799013, 0.00275275274, -0.0205882248, -0.0245972909, -0.0118810348, 0.0337151326, -0.0112754982, 0.00161302264, -0.00367497723, -0.00148860936, 0.00133635534, -0.00321038486, -0.00275275274, 0.020226296, 0.0058848355, -0.000201519084, 0.0101897093, 0.0153820068, -8.23259252e-05, 0.022996448, 0.00858886726, -0.00285367551, 0.0238455907, -0.00399166578, -0.00259266864, 0.00115887064, 0.000519838766, 0.017247336]
31 Jul, 2024
Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3 31 Jul, 2024 Number System is a system of representing numbers using symbols and digits in a certain manner. One can think of it as a Grammar book in mathematics. As soon as one hears the word “Number” 1,2,3,…. get pops into one’s head immediately. Number System defines their value, operations to perform, and other properties. Each number is unique. It has many variations. Thus, it can be considered as a natural number, whole number, even number, odd number, prime number, composite number, etc. Natural Number – It contains numbers starting from 1. Whole Number – It contains numbers starting from 0. Even Number – Numbers that are divisible by 2. Odd Number – Numbers that are not divisible by 2. Prime Number – Numbers that are divisible by 1 and itself only. i.e. only two factors. Composite Number – Numbers that are divisible by 1 and itself and others. i.e. more than two factors. Algebra Algebra is the branch of Mathematics that emphasizes the use of various symbols and mathematical operations that can be performed on them. In Algebra, symbols such as alphabets are used like a, b, c, or x, and many others whose value is not predefined. Their value is not fixed, hence called variables. One can declare any amount of variables and define the specific value to them. These symbols or variables can be manipulated with the help of arithmetic operations like addition, subtraction, multiplication, and division. Let us deal with one application of Algebra which is Algebraic Expression. An algebraic expression is composed of coefficients, Terms, Variables, and Constant, etc. and people have to determine the value of an unknown variable with mathematical operations. Natural Numbers Natural numbers are the counting numbers that begin from 1 till infinity, They are used for counting purposes. e.g. 1,2,3,4,…. , are natural numbers. Basically, Natural numbers are an integral part of the real number system. However, Natural numbers doesn’t include zero, fraction, decimal, negative numbers. A set of Natural numbers is denoted by N such that N = {1, 2, 3, 4, 5, 6, 7, 8,….}. Use algebra to prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3. Solution: Suppose, we have a natural number  N. Consider three cases where N is in form of  3*N, 3*N+1, 3*N+2. Squaring, we get The square of 1st term is 9N2  which is a multiple of 3. Square of 2nd term is: 9N2 + 6N +1 = 3(3N2 + 2N) + 1 which is one more than a multiple of 3. Square of 3rd term is: 9N2 + 12N + 4 =  9N2 +12N + 3 + 1 = 3(3N2 + 4N + 1) +1 which is one more than multiple of 3. Hence, it can be said that for N2  to be multiple of 3, N should be in form of 3N, 3N+1, 3N+2, and so on. Example: Square Number Remainder when divided by 3 22 = 4 = 3 × 1 + 1 1 32 = 9 = 3 × 3 + 0 0 42 = 16 = 3 × 5 + 1 1 52 = 25 = 3 × 8 + 1 1 62 = 36 = 3 × 12 + 0 0 72 = 49 = 3 × 16 + 1 1 Hence, the square of any natural number is either a multiple of 3 or one more than a multiple of 3. Related Articles: Find the largest multiple of 2, 3 and 5 Multiples of 3 or 7 Prove that the square of an odd integer is always odd Similar Problems Question 1: Prove that the sum of two consecutive square numbers is odd? Solution: Let us assume that N and N + 1 are two consecutive numbers where N is any integer. We have to determine their sum. So, Sum = N2 + (N + 1)2 = N2 + N2 + 2N + 1 = 2N2 + 2N + 1 = 2(N2 + N) +1 The definition of odd number is one more than multiple of 2. The sum is one more than multiple of 2. So, their sum is odd. Example: Input N = 2 and N + 1 = 3 Output 22 + 32 = 4+ 9 = 13 Conclusion The sum is odd. Question 2: Prove that if m is not the square of a natural number, then √m is irrational. Solution: Let m be any positive integer such that there is no m = x2 where x is an integer. We assume that √m is a rational number. Then it can be written as: √m = p/q  ⇢ (1) Where p and q have no common factor other than 1. Squaring both sides of Equation (1) m = p2 / q2. Since n is a positive integer and p and q have no common factor besides (1). Let q = 1. m = p2 This result is contradictory to our assumption that m is not a square of a number. Hence, √m is irrational. Question 3: Prove that if n is a natural number, then √n is irrational or a natural number. Solution: Let n be any natural number. Case 1: n is a perfect square (1, 4, 9, 16, etc.) Natural number (n) The root of a number (√n) Definition of √n 1 1 Well – defined 4 2 Well – defined 9 3 Well – defined 36 6 Well – defined Hence, √n is a natural number. Case 2: n is not a perfect square (√2, √3, √7, etc.) Natural number(n) The root of a number(√n) Definition of √n 2 √2 Not Well – defined 3 √3 Not Well – defined 7 √3 Not Well – defined 19 √19 Not Well – defined Hence, √n is an irrational number. Conclusion √n is either a natural number or an irrational number. Question 4: Prove that product of two perfect square numbers is also a perfect square. Solution: Let p and q be any two positive integers. Since both p and q are perfect squares, we can write p = a2 q = b2 Where a and b are any two integers. p × q = a2 × b2 = (a × a) × (b × b) = (a × b) × (a × b) = (ab) × (ab) = (ab)2 Hence, The result is a perfect square of ab. Conclusion The product of two perfect square numbers is also perfect square. Example: Input p = 4 and q = 9 Output pq= 4*9 = 36 = 62 Which is a perfect square. Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key/If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero/Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3
https://www.geeksforgeeks.org/prove-that-the-square-of-any-natural-number-is-either-a-multiple-of-3-or-one-more-than-a-multiple-of-3?ref=asr10
Mathematics
Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3
Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3, Mathematics, Maths, CBSE Class 12 Maths Term 1 2021 Answer Key, If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero
GeeksforGeeks
[0.00296444376, 0.0164277498, -0.0116900075, 0.0499811582, 0.0213131253, 0.0377945602, 0.0236752853, 0.03022491, 0.0561013, -0.00386199728, -0.00027031466, -0.0226284191, 0.0239571333, -0.0374187604, 0.00662008766, 0.0361034684, -0.0268829912, 0.0507327542, -0.0448273532, -0.00939495489, -0.0318086296, 0.00392574864, -0.0379556157, 0.0234202798, 0.00313724368, -0.0023353172, 0.0142534878, -0.0301712248, -0.0196354557, 0.0225344691, 0.00978417415, -0.0151661411, -0.006730814, -0.0135018919, -0.0227357894, -0.0218902435, 0.00557657657, 0.0254066419, -0.0248563644, -0.00506992, -0.00816018879, 0.0161861647, -0.0247355737, 0.015917737, 0.0245208312, -0.00221620267, 0.0307886079, 0.00325468066, 0.0117168501, 0.00610336522, 0.0216218159, -0.00667041773, 0.070972167, 0.00728780031, -0.0123073906, -0.0130656976, -0.0115088196, -0.0158372093, -0.00669726031, 0.00699924119, 0.0287754033, -0.0204138942, -0.0299564842, -0.00664693024, 0.00786491856, -0.00257857936, -0.0361034684, 0.0289901458, 0.00228330935, 0.00842861645, -0.00880441442, 0.000511689461, -0.00150067615, -0.0161324795, 0.0321307443, -0.0114819761, 0.012045674, 0.0509474948, 0.0243463535, 0.0282117054, -0.021111805, 0.0171659235, 0.00111984496, 0.0137837399, 0.0238363408, 0.0269366764, 0.00179510738, -0.061201416, 0.0405325182, 0.00975733157, -0.0315133631, -0.0168572329, 0.00321273878, -0.0195146631, -0.00527459569, 0.0127637163, 0.00570743484, 0.00104015565, -0.017286716, 0.0278090648, 0.00347277778, 0.016387485, -0.00330501073, -0.023567915, 0.0130791189, -0.0428141505, 0.00534170261, -0.003731139, 0.0160519499, 0.0198501963, -0.0194341335, -0.0159043148, -0.0221184064, 0.00481155887, -0.0381166711, -0.00746227801, 0.0103008961, -0.0694152936, 0.019648876, 0.0590003133, 0.0151258763, 0.00720056146, 0.00756293815, 0.0385461561, -0.0376335047, 0.0167095978, -0.00139498292, -0.00577789685, -0.0181322619, -0.0154345678, 0.00553966779, 0.0038351547, -0.0167767052, -0.0294196289, -0.0218768232, 0.0244805664, 0.0106834052, 0.0199575666, 0.000524272036, 0.00840848405, -0.0446662977, -0.0118980389, 0.0492295623, 0.0135287344, 0.0135689983, 0.0146829719, -0.0318354741, 0.0303322822, -0.0166559126, 0.0241047684, -0.0737638101, 0.0144950729, 0.0202394165, 0.00141595386, 0.000225436961, 0.00192261033, -0.00806624, -0.000213483567, 0.0181188416, -0.0395930223, 0.0146963932, -0.0206554793, 0.0152600901, -0.0139850611, -0.0119315926, 0.0044961567, -0.00210044347, -0.000468908896, 0.000508753583, 0.0257421751, -0.000249343779, 0.00716029759, 0.0171390809, 0.0197830889, 0.00973048899, 0.00137904508, 0.0109786754, -0.0321307443, 0.0148171857, -0.0125489747, 0.00236551533, -0.0365329497, 0.00871717557, 0.0228028968, 0.0201991517, -0.0263729785, 0.0350029171, -0.0180651546, -0.0155553604, 0.00613356335, -0.016575383, 0.0295538418, 0.0123879183, 0.00320099527, 0.00478807138, -0.0480484813, -0.0167364404, 0.0249503143, -0.0114417123, 0.0272722114, 0.0047612288, -0.0181054194, 0.0329091847, -0.00527459569, 0.0492027178, -0.0133072818, -0.0232189596, -0.00827427, 0.0245745163, 0.0271648392, -0.0314865187, 0.0159311593, -0.036881905, -0.0312449336, 0.0211923327, -0.00100995763, -0.0238631852, 0.0275406372, 0.00531821512, -0.033768151, 0.000409351574, 0.00449280161, 0.0179309417, -0.016011687, -0.0230444819, -0.0170853958, 0.0198904611, 0.0238094982, -0.0324528553, -0.0217157658, -0.00863664784, 0.0456057936, -0.0103411609, 0.0291243587, 0.00180517335, 0.0172464512, 0.00667712837, 0.0226821043, 0.0081669, 0.0363987386, -0.0328018107, 0.0244805664, 0.00314730965, -0.0259971805, -0.0227223691, 0.0125825284, 0.0104753738, 0.0520480461, 0.00785149727, 0.0293391012, -0.00632146234, -0.039807763, -0.000932784751, 0.00048442735, -0.0282117054, -0.0187093802, 0.000412497233, -0.0111128893, 0.0193938706, 0.0326676, 0.00932784751, 0.00189409, -0.0215815529, -0.00838835258, 0.0302785952, 0.0142534878, -0.00323287095, -0.0405325182, 0.0270440467, -0.00163656753, 0.0387877412, -0.0307349227, -0.0155956242, 0.00724753644, 0.00140085479, -0.00644896505, -0.00361370202, -0.0105827451, 0.0348687023, 0.00667712837, -0.0157432593, -0.023380015, 0.0155553604, -0.012985169, 0.00255844742, -0.0299296398, -0.00961640663, 0.0192999206, -0.0643688589, -0.029285416, -0.00443911599, -0.0456863232, 0.00120540615, -0.0104418211, -0.000906780886, 0.00633152807, -0.00108629162, -0.0236887075, -0.00780452276, 0.00465050247, -0.0107169589, -0.0366134793, 0.0115289511, 0.0200917814, -0.0221184064, 0.000923557556, 0.00150906458, -0.002254789, 0.00774412695, -0.0352981873, 0.023098167, -0.0177430417, -0.0335265659, -0.0796692148, -0.0259434953, 0.0177967288, 0.0661941618, 0.00356001663, -0.0105693238, 0.00786491856, -0.0281848628, 0.014025325, 0.00560677471, 0.0583024025, 0.0318086296, -0.00309865735, -0.0530143864, 0.0224270988, -0.0630267262, -0.0267890412, 0.0024158454, -0.019460978, 0.0020450803, 0.0202528369, 0.0207896922, -0.0690394938, 0.0649594, 0.00457333, -0.0381972, -0.00985799171, 0.0380093, 0.039485652, -0.0277016945, 0.00560341915, 0.0301443823, -0.0199441463, -0.00385528663, -0.00456326362, 0.00315066497, -0.00100408576, 0.00087658281, 0.0515917204, 0.0564770959, 0.00426799338, 0.00331843202, -0.0234873854, -0.0106028775, -0.0271648392, 0.0205481071, -0.00252321642, 0.0233665947, -0.00130858296, -0.0127033209, 0.00270440476, 0.0171256606, -0.0747838393, 0.00212225318, 0.0332044549, 0.0401567183, -0.0394588076, -0.0352981873, 0.0208568, 0.0552423336, -0.017380666, -0.0348955467, 0.0209239051, 0.0274735317, -0.00220613671, -0.000350004, 0.00723411515, -0.00746898865, 0.0407741033, 0.0131193828, 0.0255408548, 0.0155687816, 0.0163606424, 0.0150990337, 0.0112202596, -0.00286546117, -0.00787834078, -0.0412841141, 0.0396735519, 0.00997878332, -0.0254334845, 0.0469210856, 0.00351304188, -0.0454715788, -0.0313254632, 0.00427805958, -0.019031493, 0.0474579409, 0.010958543, -0.0360766239, -0.0154479891, 0.00695897685, 0.00483840145, -0.0436731167, -0.0349760726, 0.0543296784, 0.0228163172, -0.00583493756, 0.0157164168, -0.0457936935, -0.00448273541, 0.0269769412, 0.0369892791, -0.0310838781, 0.0326676, 0.00756293815, -0.00303322822, -0.0217426084, -0.0144145442, -0.0032798457, -0.00159210921, -0.0125489747, 0.00901915599, 0.0102405008, -0.00430154707, 0.0148037635, 0.0108444616, -0.0436194316, 0.0215278678, 0.0174209289, 0.0522091053, -0.0414451696, -0.0294196289, 0.0198904611, 0.0179846268, -0.0200783592, -0.0197696686, 0.0481021665, -0.0291512012, 0.0279164352, 0.00356672728, 0.00180014037, 0.0348150171, -0.0641541183, -0.0258227028, -0.0137703186, -0.00979088433, -5.42621528e-05, -0.0132603068, -0.0299027972, 0.00665364088, 0.0433510058, -0.0222123563, 0.0341171063, -0.0121396231, 0.0189509653, 0.0113477632, -0.0107840654, 0.0151929837, -0.00703279441, 0.0308959782, 0.0270172041, 0.0345734321, -0.00403312, -0.0346002765, -0.0083413776, -0.014642708, 0.000232357357, 0.00403647497, -0.0361839943, -0.0300638545, 0.0211789124, -0.0381703563, 0.0122268619, -0.0634025186, -0.00261045527, 0.00222794642, 0.0291512012, 0.0291780438, -0.00960298534, -0.00515380362, -0.00259703374, -0.0115289511, 0.0187899098, -0.0150319273, -0.0160251074, 0.00857625157, -0.0158774722, 0.0105626127, -0.0273124743, -0.00257186871, 0.0161593221, 0.00821387488, -0.0347344875, -0.0581950322, 0.019031493, 0.0446662977, -0.0153271975, -0.0472432, -0.0665162802, 0.0323454849, 0.00166760443, -0.00590204448, 0.00802597497, -0.0012171499, -0.00620738044, 0.00624093413, -0.0193267632, -0.0321844295, -0.00816018879, 0.0507327542, -0.0076367557, -0.0189778078, -0.023567915, 0.00316408649, 0.0198636185, 0.0226821043, 0.0217828732, -0.0346271172, -0.0236484427, 0.0114081586, 0.00236551533, 0.0114685548, 0.0288022459, 0.0142400665, -0.00784478709, -0.0327212848, -0.00225143367, 0.0349223875, 0.0360497832, 0.00629797485, 0.0104820849, -0.0106632737, -0.0121127805, 0.0332581401, 0.0196622983, 0.00199139491, 0.00737503916, 0.0128442449, -0.0205212645, 0.0107706441, -0.0199575666, 0.022198936, 0.0103612924, -0.0349223875, 0.0332312956, -0.00150990335, 0.00818032119, -0.0132737281, 0.0179175194, 0.0122402832, 0.000999052776, -0.00795215741, -0.00484175701, 0.00401969859, 0.02786275, -0.0045062229, 0.0015702995, 0.00237893662, 0.0081467675, 0.0244403034, -0.0108041978, 0.000499526388, -0.0206286348, 0.0143205952, -0.00411700318, -0.0172598734, -0.0263864, 0.0240913481, 0.0220647212, 0.0162801147, -0.0406667329, 0.0424115099, 0.0191120207, -0.0323454849, 0.0356203, 0.0180785768, -0.00893862825, -0.0226418395, -0.00857625157, -0.00188066857, 0.00339896022, 0.011146442, -0.0133207031, -0.0230847448, 0.000373701099, -0.027486952, 0.0161727425, 0.0328823403, 0.00839506276, -0.0143205952, 0.00344257965, 0.0205212645, -0.00207360066, -0.00246449793, 0.00279332139, -0.00754951686, -0.0224942043, 0.0130455652, 0.00883796811, -0.0224942043, 0.0422504507, -0.0210849624, 0.0116832973, 0.0265340358, -0.0112135494, 0.02550059, -0.0227223691, -0.00573763298, 0.00559335342, -0.000162838885, -0.0108578829, -0.0175148789, 0.00787834078, 0.00720727211, -0.0184543747, -0.0248697866, -0.00124147616, -0.0237423927, -0.0384656265, 0.00555644464, -0.00692542363, 0.0134079419, -0.0238900278, -0.00817361, -0.0155956242, -0.0456326343, -0.0361839943, -0.036318209, 0.0238900278, 0.000476458401, 0.00564032793, 0.00993180927, -0.00434181094, 0.00920705497, -0.0183604248, -0.00125825277, 0.0125221321, 0.0112940772, -0.0109853856, 0.0798839554, -0.00480149267, 0.0392709114, -0.0104820849, 0.0434315316, 0.0165485404, 0.0294196289, 0.00848901272, 0.014548758, 0.047270041, 0.0338755213, 0.00425792765, 0.0213131253, 0.0120792268, -0.0206957422, -0.00291411346, -0.0105156386, -0.0200515166, 0.00133626454, 0.0266414061, 0.00793202594, 0.0261985, -0.00739517109, -0.00647916319, 0.00590875512, -0.0107773552, -0.000279541826, -0.0272856317, -0.0376066603, -0.00508669671, 0.00438543037, 0.00238564727, -0.0216486584, -0.0490148179, -0.0248832088, -0.00284868432, -0.0197159834, -0.00266246288, -0.00250643957, 0.018279897, 0.00904599857, -0.0339292064, 0.00840177387, 0.00238396972, 0.00602283701, -0.0171390809, 0.00964324921, 0.023567915, 0.00495919399, 0.0188301727, 0.0234873854, 0.01279727, 0.00983785931, 0.0318891592, 0.0226552617, -0.00269937166, 0.00763004506, -0.0202796794, 0.00580138434, -0.0134951808, -0.00466392376, -0.00181691709, 0.0489879772, -0.00760320248, 0.0297685843, 0.000431580731, -0.00182866072, 0.0200649388, 0.0249771569, -0.00549269281, -0.000559083652, 0.0281848628, 0.011240392, -0.0147500783, -0.0316744186, -0.020829957, 0.00787163, 0.0181993693, 0.00446931412, -0.0120725166, -0.00487531, -0.00678449916, -0.039056167, 0.00461359369, -0.0200515166, 0.00479142694, -0.0101733934, -0.0237289704, 0.0405593589, -0.0051806462, -0.00426128274, -0.0179309417, 0.00736832852, 0.00742201414, -0.0159580018, -0.0423846655, -0.00717371888, -0.0375261307, 0.00048526618, 0.00237893662, -0.012562396, -0.023380015, -0.00285371742, 0.0266011432, -0.017998049, -0.0211654902, 0.0141595388, 0.00310872332, 0.0140387462, -0.00131445483, -0.0294733141, 0.0236618631, -0.0230310597, -0.0251919, 0.0108914366, 0.0210044347, -0.0017581986, 0.0255676974, 0.059322428, -0.041794125, 0.00274634641, 0.0192059707, -0.039485652, -0.0567455254, 0.0325333849, 0.00820716377, -0.0157969445, 0.0237692352, 0.00651271641, 0.016669333, -0.0222257785, 0.0243060887, -0.0346271172, -0.00473103067, -0.0178235713, 0.00170115777, 0.035325028, 0.00702608377, 0.00440891786, 0.016011687, 0.0473505706, 0.0124147609, 0.00431832392, -0.0115826363, -0.0365597941, 0.00244604354, 0.0314059891, 0.0225747339, -0.0157835241, -0.0262253433, 0.0495516732, 0.000477716647, -0.0223331489, -0.029285416, -0.0392172225, -0.0118376426, -0.0412035845, 0.010958543, -0.00238732505, -0.0170182884, -0.00877757184, 0.00441898406, -0.0157701019, -0.00195448613, 0.0134750493, 0.00417404389, 0.00901915599, -0.00873059686, -0.0100794444, -0.00324629224, 0.000316450576, 0.0254200622, 0.0128576662, 0.0160519499, -0.00193603174, -0.00425792765, 0.0563160405, -0.0133072818, -0.0129784588, 0.0159848444, -0.00695897685, -0.00931442622, 0.0115088196, 0.0361571535, 0.00507663097, 0.0543296784, 0.00276312325, 0.0200917814, -0.0304933377, 0.00836150907, 0.0168974958, 0.00542223081, 0.0176893566, -0.0288022459, 0.0243329313, 0.021393653, 0.0247221515, 0.00277151167, -0.00155520055, 0.0311107207, -0.00632146234, -0.0141595388, 0.0164814349, 0.00382844405, 0.0214070752, -0.00227995403, -0.0256884899, 0.0106095877, 0.0486121774, 0.0246416237, 0.0197562464, -0.0538196675, 0.00199475023, 0.0329628699, -0.0303054396, 0.0378750861, -0.0292048864, 0.0221720934, -0.0150587698, 0.0226015765, -0.0150453486, 0.0217828732, -0.00493906159, 0.00639863499, -0.0505448543, 0.00368751958, -0.00107287022, -0.0452299938, -0.00914666, 0.0294196289, -0.00686167227, -0.0110122291, 0.00763004506, -0.00597586203, 0.0330433957, -0.00187228026, 0.016669333, 0.0169914458, -0.0122067304, -0.00653284881, -0.0185617451, -0.0229907949, 0.0341439471, 0.00559670851, -0.0428678356, 0.0535780825, -0.0319428444, 0.0131797791, -0.0101331295, -0.0178235713, 0.00952916779, 0.0258898102, 0.0215412881, 0.00822729617, 0.0117302714, -0.00236719288, -0.00415055687, 0.020024674, -0.00339224958, -0.0130858291, -0.0168572329, -0.00306342612, -0.0270037837, 0.0405056737, 0.0116497437, -0.000655549695, 0.0175014585, -0.0296880566, 0.0184812173, -0.024561096, -0.0397272371, 0.0022648552, -0.0398614481, -0.0307080802, 0.00246953079, 0.0441562869, -0.00168186461, 0.00779110147, -0.00037453993, 0.00659324462, 0.0335534103, 0.0066402196, 0.00305671548, -0.0486121774, 0.000828769174, -0.00640199054, -0.0304396525, 0.00179510738, 0.0178504139, 0.0149916634, -0.000473522494, -0.00173638889, 0.0519138351, -0.00603290275, 0.0190180726, -0.0541149378, -0.00717371888, -0.0104887951, 0.0550275892, 0.0404519886, 0.00543900765, -0.00806624, 0.00769715197, -0.018749645, 0.0215949733, 0.00697910879, 0.021393653, -0.00466727931, -0.00366738765, 0.00233867252, -0.00432503456, 0.00535847945, 0.0115088196, 0.00294598937, -0.00268595037, -0.015112455, -0.00582487183, -0.00737503916, -0.0171927661, 0.00727437902, -0.00423779571, -0.0405593589, -0.00680798665, 0.0489611328, -0.0399688222, -0.0036908749, -0.00942850765, -0.0104753738, -0.0175148789, 0.0342781618, 0.0106297201, -0.0254871696, 0.00371436239, 0.0111397319, -0.0307617653, 0.000227953467, 0.0315670483, -0.017568564, -0.00896547083, 0.0160653722, 0.0118980389, 0.0177698862, -0.00227827649, 0.0163472202, -0.0176759362, -0.0270440467, 0.0300638545, -0.0224270988, 0.0112336809, -0.00653955946, -0.000426967134, -0.0153406188, 0.0288827736, 0.00459346175, -0.00643889932, -0.00881783571, -0.0197562464, -0.0308154505, -0.0170317106, -0.00629461929, -0.00670397095, 0.017380666, -0.0152735114, -0.00403312, 0.0250576865, -0.00169528602, -0.00236216, -0.0211386476, -0.0208568, 0.009871413, -0.0116497437, 0.0226015765, 0.0253261123, -0.0387072116, 0.0207896922, 0.0411230586, 0.0163203776, -0.0179175194, -0.0180114694, -0.0295001566, 0.00362376822, 0.00341405929, 0.00523433182, -0.00715358695, 0.0178638343, 0.0139447963, -0.00840177387, 0.0338218361, -0.00474109687, -0.00557322102, -0.0166559126, -0.0267621987, -0.0170182884, -0.0123476544, -0.0614698455, 0.020829957, 0.0332312956, 0.0162398499, -0.018749645, -0.0166961756, -0.00919363368, -0.00911981612, 0.0021658726, -0.00705292635, 0.00347277778, 0.0222794637, -0.00482498, -0.0078112334, 0.0113477632, 0.00113829935, -0.00647916319, -0.0206957422, 0.0155687816, 0.000307013688, -0.00491221901, 0.0288022459, 0.0114819761, -0.00701266248, -0.0181859471, -0.00120121206, 0.013367678, -0.00957614277, -0.00305168261, 0.00563361729, -0.0164143275, -0.00129096746, 0.0114484234, 0.0156224668, -0.0168035477, -0.012233573, -0.00899902452, -0.00791189354, -0.0225747339, -0.00858967286, 0.0102270786, 0.0192999206, -0.0182127897, -0.00173303357, -0.0212325975, 0.0424115099, 0.0481021665, -0.0205078442, 0.00850243401, 0.00326810195, 0.0154882539, 0.0125087108, 0.00491221901, -0.0190986, 0.0131395152, 0.0049256403, 0.0226552617, 0.0039156829, -0.00392910419, 0.0189241227, 0.0650130883, -0.0146829719, -0.0119785666, -0.00616376102, 0.0106230089, -0.0215681307, -0.0132938605, 0.0276211668, -0.000666454609, -0.0112672346, 0.00877086073, 0.0307080802, 0.00632481743, 0.0113544734, -0.010200236, 0.00813334621, -0.0096768029, -0.00157784903, 0.0152332475, -0.0220244583, 0.00455319742, -0.00258193491, 0.00133123144, 0.0303591248, 0.0164680127, 0.0166961756, 0.0144682303, 0.0131126717, -0.00208198908, -0.0159848444, 0.0267085135, 0.00196287432, -0.00725424709, 0.0109182792, 0.00842861645, 0.0303591248, 0.0315670483, 0.0145890219, 0.00182866072, 0.0202394165, -0.0240376629, 0.0194341335, 0.0117235612, -0.00486859959, 0.000199852497, 0.00561013, 0.00108796929, 0.0237960778, -0.0059657963, -0.0182933193, -0.0063852137, -0.0045901062, 0.00113913824, -0.0367745347, -0.00988483429, 0.00631475169, -0.0350834429, 0.0046706344, -0.00423779571, -0.00411029253, -0.00412035873, 0.00955601, -0.0364255793, 0.0027161485, 0.00754951686, 0.0357008278, -0.0277285371, -0.013461628, -0.0261448156, 0.017098818, -0.0165485404, 0.0391635373, 0.00820716377, 0.00185885886, 0.0142803304, 0.0140521675, -0.0246147811, 0.00481491396, 0.01043511, -0.00250308425, -0.0202394165, 0.00628790865, -0.0127301635, 0.0181054194, 0.000248504919, 0.000953755633, -0.00373784965, -0.00942179747, 0.00910639483, -0.0315670483, -0.0261448156, -0.0310570356, -0.0102539221, 0.037740875, 0.00388884, -0.0220110361, 0.00679792045, 0.0235410724, 0.0137233445, -0.00932113733, 0.00369758555, 0.0133408355, 0.00419082073, 0.00105106051, -0.00351304188, -0.0186020099, -0.00759649184, 0.0202259943, -0.00542558637, 0.00988483429, 0.0155956242, 0.018373847, 0.0148171857, 0.0184946395, 0.0189509653, -0.000339728256, 0.0057107904, 0.00722740404, 0.00447938, -0.0171659235, 0.0146292858, 0.0236887075, 0.0160385296, -0.016669333, 0.0122000193, 0.0123073906, 0.0200112537, -0.0202931017, -0.0199173037, -0.0108914366, -0.0153271975, 0.0448273532, 0.00258361246, -0.0176490936, -0.0162398499, -0.0175014585, 0.0044961567, 0.0034056711, 0.0162666924, -0.0192193929, 7.90602207e-05, -0.0109317005, 0.00312382239, -0.0119517241, 0.000282058347, -0.0122537045, 0.00251147267, 0.0191522855, 0.0184141099, 0.0116832973, -0.0179443639, -0.00400292175, 0.0142803304, -0.0103948461, 0.0142132239, -0.0350834429, -0.000147739847, 0.00598257268, 0.0232860651, 0.0139447963, 0.011475266, 0.0271514188, 0.0207896922, 0.00140421011, -0.0425188802, -0.0064556757, 0.0152466688, 0.00926074106, -0.0205078442, -0.00581145054, 0.00635501556, -0.0201588888, -0.0174477734, -0.0139179537, 0.0198770389, 0.0115893474, 0.0243195109, -0.0111061782, -0.00091516925, -0.00643554376, -0.0250979494, 0.0331776105, 0.0106297201, 0.0119785666, -0.0447736681, -0.0144816516, 0.00692542363, -0.00753609557, 0.013602552, 0.00844874792, -0.00599934952, 0.0246684663, -0.00787163, -0.00548598217, 0.00769715197, 0.00660666637, 0.0042411508, -0.0200917814, -0.013931375, 0.026923256, -0.0299027972, -0.0285875034, -0.000635417702, -0.0181725267, 0.0039861449, 0.00838835258, 0.00689858105, -0.00109300227, -0.0103210285, 0.00456326362, -0.00563361729, -0.00657982333, 0.00419417629, -0.0222257785, -0.0258495454, -0.00816018879, -0.00932113733, -0.0183067396, -0.0140790101, -0.00334695261, 0.0151527198, 0.0200515166, -0.0157029945, -0.0132938605, -0.00272453669, 0.0169511829, 0.024467146, 0.0195683483, 0.0109249903, 0.0411230586, -0.0140387462, 0.0266548283, 0.0254066419, -0.00477800518, 0.00960969646, -0.0417404398, 0.00472096447, -0.0229773745, -0.011193417, 0.0214607604, 0.0100727333, 0.0395393372, 0.000122679645, -0.00411700318, 0.00981101673, -3.69349618e-05, 0.0196220335, 0.00199475023, -0.0183604248, -0.00814005733, -0.000228792313, -0.0117436927, -0.00339728268, -0.0161861647, 0.0134482058, -0.00209373259, 0.0255811196, 0.040800944, -0.00445253728, -0.0119450139, 0.0285606608, 0.00393917039, -0.00361370202, -0.00095040031, 0.00924732, 0.00246617547, -0.0365597941, -0.0212728605, -0.0121664656, 0.00875072926, -0.00991838798, -0.0123812081, 0.0111061782, 0.0242792461, 0.00384857599, 0.0065966, -0.0115155298, -0.00580809498, -0.00991838798, -0.00314898742, -0.0088581, -0.0256482251, 0.0122134406, -0.00634494936, -0.00234370562, 0.00613356335, -0.00486188894, -0.0127771385, 0.00420088693, -0.0226284191, -0.0117705362, -0.0037948906, -0.0033201098, -0.0162130073, -0.0134884706, 0.0322649591, 0.0373919196, -0.010864594, -0.0299027972, 0.0294464715, 0.00226821052, -0.0169109181, -0.0107303802, -0.00504643284, 0.0186154321, -0.0254334845, -0.00641205627, -0.00243262225, 0.015018506, 0.00516051427, 0.00436194334, -0.0268964116, 0.0011903072, 0.000859806081, -0.0158506297, -0.0202931017, 0.00376469246, -0.00154597335, -0.00710661197, -0.00859638304, -0.0077307052, -0.0138105834, 0.029661214, 0.0177833065, -0.00271950383, -0.00760320248, -0.0194743983, -0.0161324795, 0.00350968656, 0.0074958317, 0.0194743983, -0.0225210488, -0.0279701222, 0.0110256504, -0.00903257728, -0.00324125937, -0.012045674, -0.0223331489, -0.00661673211, -0.018373847, -0.0101331295, 0.0285875034, -0.00899902452, 0.00102086249, 0.00430154707, 0.00131613249, 0.0169109181, 0.0236618631, 0.00190918893, 0.017756464, -0.0239302907, -0.00926745124, 0.0244000386, 0.0207896922, -0.00545578403, 0.00199307245, 0.0219170861, 0.0167767052, 0.0139179537, -0.0128375338, 0.0119383028, 0.0123543655, 0.00178000832, -0.00483169081, 0.0285606608, -0.0146024432, 0.012327522, -0.0150453486, 0.0279969648, 0.0126630561, 0.0143877016, -0.00762333442, 0.0158372093, 0.0144682303, -0.0214607604, 0.00907955226, -0.00235209404, -0.0148037635, 0.0171122383, -0.0157164168, -0.0113947373, 0.0246147811, -0.00722740404, 0.0114618447, -0.0447736681, -0.00128845091, -0.0153406188, 0.0417672843, -0.0220378786, 0.0290438309, 0.0106632737, 0.0246818867, 0.0157969445, 0.0214473382, -0.0149379773, -0.0231652725, -0.00481155887, -0.0157298371, -0.00733477529, -0.00138491695, 0.011998699, -0.014119274, -0.0263327155, 0.000835899322, 0.0104216887, -0.00399956619, -0.00224975613, -0.0304933377, 0.0039156829, -0.0203870516, -0.00853598677, 0.00115507608, -0.00714687584, -0.0045062229, -0.0187093802, 0.0113276308, 0.0116094798, 0.0375798196, 0.0136159733, -0.00597586203, 0.0127570061, 0.00524104247, -0.016293535, 0.0383314155, -0.0256616473, -0.0237155501, 0.0033251429, 0.0186020099, 0.014548758, -0.00480149267, -0.0303591248, 0.0208031125, 0.0149782421, -0.00121882756, 0.00646238634, 0.0125691071, 0.0122000193, 0.00156526652, 0.0167901255, -0.00497597037, -0.00540209888, -0.00558664277, -0.0182933193, 0.00168354227, -0.00803268608, 0.00656975759, 0.00738846045, -0.0128308237, -0.0246147811, -0.00255844742, 0.0158774722, 0.0164009053, 0.0131663578, -0.00281345332, 0.00638185814, 0.0145219155, 0.0129449051, -0.018749645, -0.0255676974, 0.00502630044, 0.0189778078, -0.0111263106, 0.0123342331, 0.0198636185, -0.00636843685, -0.0253797974, 0.00822729617, 0.000801087648, -0.00120288972, 0.0181725267, 0.00219774828, 0.0122201517, -0.00161895202, -0.0118376426, 0.00371771771, -0.0206286348, 0.00422437396, -0.00045632635, 0.00840177387, 0.00880441442, -0.020024674, 0.0290975161, 0.0165888052, 0.00480484823, 0.00288727088, 0.0871314928, 0.00161224126, 0.0135757094, 0.00423444, 0.0137837399, -0.00331004383, 0.00454984233, -0.0283459201, -0.0130656976, 0.00461359369, 0.0112068383, 0.000302819506, 0.0355129279, -0.00780452276, 0.00734819658, 0.00304832729, 0.000311627286, -0.00697239814, 0.0192596558, 0.00462701498, -0.00350968656, 0.0256884899, 0.0159043148, 0.00298457569, 0.00232525123, -0.0186422747, -0.019648876, -0.0164545923, 0.019125443, 0.0304664951, -0.00213902979, 0.00567052606, -0.00433174521, 0.0154077252, 0.0171256606, 0.0117705362, -0.00488537643, 0.0111061782, 0.00143105292, -0.00032798457, 0.00636172621, 0.00589197874, 0.0169243403, -0.0158908945, -0.00288894842, 0.0177967288, -0.00540545397, -0.00948219374, -0.0104149785, -0.0011995344, 0.0055262465, 0.0182530545, 0.00705292635, 0.0290169884, -0.00473103067, -0.00947548263, 0.00194777537, -0.0421967655, -0.00215748418, 0.0070462157, -0.00845545903, 0.00280338735, -0.0175551437, 0.0136830797, -0.0180517342, 0.0116094798, -0.00275473483, -0.00177329767, -0.0060362583, 0.00374456053, 0.00611007586, -0.0173404012, -0.00890507456, -0.0135757094, 0.00580138434, 0.0160251074, 0.0281580202, -0.00941508636, -0.0128174024, -0.0186288524, -0.0121664656, -0.000271153491, -0.0179175194, -0.0204944219, 0.00260542217, -0.00670061586, 0.0274466891, 0.013038855, 0.0199038815, -0.00944192894, 0.0184006896, 0.00217090547, 0.00981772784, -0.0117436927, -0.00517058047, 0.0221318286, -0.0120389629, 0.00768373068, -0.00412371382, 0.0332312956, 0.00231350749, 0.000878260471, 0.0155822029, -0.0289901458, -0.000195658315, -0.00054859824, 0.00770386262, 0.00166089379, -0.00082205853, -0.0209239051, -0.0154882539, 0.00862322561, -0.00632817298, 0.00140085479, 0.0120188314, 0.00177497533, -0.00714687584, 0.0128509551, -0.00789847225, -0.0189912301, -0.00324461469, -0.0114081586, -0.00448273541, -0.0282117054, -0.010294186, 0.000564955524, -0.00997207314, -0.00402976433, -0.0102270786, 0.0367208496, -0.00863664784, 0.000337002042, -0.00743543543, -0.0177698862, -0.00981772784, -0.0022598221, 0.00889836438, -0.0177027788, 0.0268024635, 0.00292082434, 0.0126966098, -0.00855611917, -0.0166424904, -0.0247892588, -0.0139179537, -0.0151527198, 0.00191589969, -0.0050162347, 0.00828098133, -0.0148842921, -0.0158908945, -0.0155822029, -0.0188838579, -0.0012800626, 0.00865006912, -0.00302819512, -0.026117973, 0.024842944, -0.00224640081, -0.012938194, -0.0168706533, -0.0104015563, -0.00558664277, 0.00804610737, -0.0139447963, 0.028480133, 0.0205346867, 0.0135824196, 0.0152735114, 0.0308154505, -0.0150856124, -0.000675262359, -0.0129516162, -0.013414653, -0.00236719288, 0.00609329902, 0.0238766056, -0.00174813264, 0.0206823219, 0.0101666832, 0.00524775311, -0.0190717578, -0.00338386116, -0.0014226645, -0.00368751958, 0.0171390809, -0.0185080599, -0.0369355939, 0.00911981612, -0.0163338, 0.0122067304, 0.0280238073, 0.0226955265, -0.000670648762, 0.0200783592, -0.00507998606, 0.0142132239, 0.0171390809, -0.0220915638, -0.0017498103, -0.0214204956, -0.0175417215, -0.00557993166, 0.0054457183, -7.02524485e-05, 9.09087685e-05, -0.00934798, -0.00085812842, 0.0121664656, 0.0127100311, -0.042653095, 0.015206405, 0.0111397319, 0.011475266, 0.00308355829, 0.00115843141, 0.00321441656, -0.00857625157, 0.00859638304, -0.00481491396, 0.00545913959, -0.00634159427, -0.019407291, -0.00829440262, -0.00250308425, -0.00357343792, 0.00527459569, -0.016293535, 0.00281680864, -0.0116564538, -0.0148574496, 0.0116967186, 0.00843532663, 0.00566381542, 0.0214741807, 0.00366738765, 0.00792531483, -0.00217761612, 0.000175526264, -0.00119785673, 0.0103008961, 0.00357679348, 0.00325300288, -0.00213902979, 0.00291746878, 0.00616040593, 0.017286716, 0.00809979253, -0.0173001382, -2.65412709e-05, 0.00244268822, 0.00750925299, 0.00413713511, -0.000362796243, -0.00638856925, 0.000247456395, 0.0157835241, 0.00448273541, -0.00328152347, -0.0287217181, -0.00275137951, 0.0235008076, 0.0221318286, 0.00714016519, 0.00551282521, -0.000412916648, -0.0153540401, -0.021393653, -0.0123342331, 0.0157029945, 0.00140253245, -0.0119450139, -0.00476793945, -0.00359021476, -0.0210446976, 0.0125691071, 0.00119617907, 0.0191388652, -0.0145756006, -0.00534505816, -0.0140521675, -0.00695226621, -0.00477129454, -0.0131797791, 0.0165888052, -0.00105609349, 0.0161593221, 0.0175819863, -0.0026356203, -0.0211923327, 0.0257019103, 0.00116849749, -0.0173940863, -0.0036908749, -0.0111799957, 0.0176893566, -0.0070462157, -0.00930100493, -0.00693213427, 0.0197025612, 0.00588191254, 0.00686167227, 0.00335030793, 0.00173135591, 0.0278895926, -0.0218365584, 0.0250442643, 0.0116698751, -0.00179510738, 0.016669333, -0.0259434953, -0.00873730797, 0.0142669091, 0.0149782421, 0.00868362188, -0.0206017923, -0.0203467868, 0.00791860465, -0.00936811138, -0.000977243064, -0.00528130634, 0.0136897909, -0.0175417215, -0.00636508176, -0.018279897, -0.00189576764, 0.00333856419, -0.0121396231, -0.0036908749, -0.00289733685, -0.00732806465, -0.0210044347, -0.00192261033, 0.0269903615, -0.00149564317, 0.0175283011, -0.00410358189, 0.0224405192, -0.00214238511, 0.0286143478, -0.0117034288, -0.0278359074, -0.00931442622, -0.000229211728, -0.00948890392, 0.00809308235, -0.0279164352, 0.00323287095, -0.0366940089, 0.00127754605, -0.00896547083, 0.0186825376, 0.0109786754, -0.0096969353, 0.000810314843, -0.0155150965, -0.00376804778, -0.0088581, 0.0206152145, 0.00525110867, -0.00542894145, 0.00349626527, -0.00542223081, -0.00415055687, 0.00290740281, -0.00329997786, 0.021299703, -0.00630804105, -0.0169243403, 0.0095358789, -0.0141595388, 0.0143474378, -0.00319931749, -0.00988483429, -0.0025198611, -0.0246147811, -0.0112471022, 0.00712003326, 0.00698582, 0.00503636664, -0.0114350021, -0.0434852168, 0.00930771604, -0.000476877816, -0.0151258763, -0.00334863015, -0.0226955265, 0.00225814432, -0.0135824196, 0.00615033973, 0.000526788528, -0.00443240535, -0.0137703186, -0.0262924507, 0.00929429382, 0.00764346635, -0.00265743, -0.0282653924, 0.00307684764, 0.0267621987, 0.00495248334, 0.017380666, 0.00664357515, -0.0144145442, 0.0119517241, 0.00891178567, 0.00801255368, 0.00918021239, 0.0126630561, 0.0127570061, 0.0131797791, 0.016293535, 0.00911310595, -0.00443576043, 0.0153137762, -0.0213265475, -0.015300354, 0.012280548, -0.00557993166, -0.0169780254, 0.00595237454, -0.00394252548, 0.00162566267, 0.0173940863, 0.00498268101, -0.0275406372, 0.00740859285, 0.00544907339, 0.0160653722, -0.0157566816, -0.00201656, 0.0026305872, 0.0361034684, -0.00377811375, 0.00201488216, -0.00292082434, 0.000884132343, 0.00165669958, -0.0184275322, 0.00421095267, 0.00414049067, -0.00128090137, 0.0195280835, 0.0152198263, 0.0133408355, -0.0117436927, -0.0113477632, -0.000305126305, -0.00369423022, 0.00762333442, -0.0151929837, 0.0228297394, -0.0285606608, 0.0208031125, -0.000175106848, 0.0182530545, 0.0246013589, -0.00807295, 0.00682811858, 0.0189643875, -0.0147500783, -0.00945535, 0.00772399455, 0.00409687124, 0.00748912105, -0.000785569195, -0.021017855, 0.0194475558, 0.000873227487, 0.00970364548, -0.0212728605, 0.00516387, 0.0081467675, -0.00188570155, 0.0220110361, -0.00522762118, -0.00205346872, 0.0191657078, -0.00712003326, 0.00619060406, -0.0272722114, -0.000191464133, -0.0124416044, -0.0208031125, -0.00414049067, 9.96116796e-06, 0.00677107787, -0.00630468549, -0.00685496163, 0.0198636185, -0.0164411701, -0.0113544734, 0.00243094447, -0.0197294038, -0.00645903125, 0.00847559143, 3.11679723e-05, 0.00506656477, -0.0115423724, 0.00760320248, -0.00435187714, -0.00818032119, -0.00881112553, -0.002810098, 0.00118275767, 0.00249301828, 0.00310704554, 0.00728108967, -0.00373449433, 0.0113880271, -0.0111128893, -0.0023806144, -0.00516387, -0.00477129454, -0.00530814938, 0.0189643875, 0.0241852961, 0.00303826109, -0.017568564, 0.00187899091, -0.0197025612, -0.0130053014, 0.00248966296, -0.000203627249, -0.00632481743, 0.0155150965, 0.00108964695, 0.0108377514, 0.00986470189, 0.00894533843, -0.0184006896, 0.0138642685, 0.00144447421, 0.0269769412, 0.00538532203, -0.00060312252, 0.000763340038, -0.0127637163, 0.00172800058, -0.0130522763, 0.0103411609, 0.000210652492, -0.0147232357, 0.025836125, -0.0146829719, -0.00495248334, -0.00392239355, 0.0171659235, -0.0277822223, 0.0193133429, 0.00632146234, 0.00325132534, -0.000461359363, -0.0201857314, 0.0109048579, -0.0101398397, -0.00096633815, -0.0074958317, 0.0324260145, -0.031218091, -0.00131864892, -9.51553666e-05, -0.00162566267, 0.019125443, -0.0153406188, -0.0194207132, 0.0108713042, 0.0202662591, -0.0171390809, -0.0128241125, 0.0222526211, 0.0159714222, 0.0105290599, -0.00720727211, -0.0121194916, -0.0140119037, -0.00943521876, -0.0123476544, 0.006801276, 0.00566717051, -0.0169511829, -0.00971035659, 0.00364390016, -0.0189241227, 0.00353652937, 0.00920034479, 0.0318086296, -0.00301645137, 0.00585507, 0.00831453502, -0.00146041217, 0.00450286735, 0.0150319273, 0.00149061019, 0.0163606424, -0.0107572228, 0.0120255416, -0.00505314348, -0.0183604248, -0.00641876692, 0.0135153132, 0.00364390016, 0.0064758081, 0.0134012317, 0.0221452489, 0.000101551486, 0.000705460436, -0.00211722, 0.0126898987, -0.00509005226, -0.000736497343, 0.00610000966, 0.0142534878, 0.0199038815, -0.0136897909, -0.0126831885, -0.00922718737, 0.00316911936, 0.00568730291, -0.00240577944, -0.0138776898, 0.00288727088, -7.37257494e-07, 0.0147232357, -0.0131999115, 0.0388951115, 0.00375462649, 0.00100073044, 0.0121530443, -0.00100073044, -0.00777096953, 0.0143474378, -0.0169377606, 0.0081669, -0.0058651357, 0.00991838798, -0.0236350205, -0.000810314843, -0.00546920579, 0.0142132239, 0.000891681819, 0.00862322561, -0.00787834078, 0.00999891572, 0.0162801147, 0.0141326962, -0.00909968466, 0.0124483146, -0.011569215, 0.00957614277, -0.0478874259, 0.026587721, -0.00211889786, -0.00582487183, -0.0100660222, 0.0221720934, -0.0010158295, 0.0164680127, -0.00871046446, 0.0152869327, -0.0188033301, 0.0176088288, 0.00377140311, -0.00117688579, 0.00944192894, -0.00773741584, -0.0280774925, -0.0210983828, -0.018373847, -0.0238900278, -0.0140521675, -0.0199978314, -0.0161593221, 0.0152466688, 0.00871717557, -0.0138776898, 0.00326474663, -0.00162482378, -0.00247959699, 0.00635501556, 0.0148574496, 0.00137904508, -0.00856283, -0.0314596742, -5.97997769e-06, -0.00442233915, 0.00939495489, 0.00298457569, 0.00591546576, -0.00680798665, 0.00115339842, 0.0128442449, -0.0165888052, -0.0186691172, 0.000559503096, -0.011005518, 0.00648251874, 0.0103277396, -0.0178369917, 0.0223734137, 0.00709990133, -0.0032211272, 0.00712674391, -0.012280548, -0.0180517342, -0.00197461806, -0.0136763696, -0.0106699839, -0.00509340735, -0.00575776491, -0.0212460179, 0.0074756993, -0.011193417, 0.00124231493, -0.0192193929, -0.00938153267, -0.0237960778, 0.0215144455, -0.00615705037, -0.00377475843, 0.000363005936, -0.00809308235, 0.0133005716, -0.0142534878, -0.0155016752, -0.00675094593, -0.0150856124, 0.00611007586, 0.0252053197, -0.00928758364, -0.0011232004, -0.00132955378, -0.011757114, -0.0199307241, -0.0204541571, -0.00493235094, -0.0261582378, 0.000398027303, 0.00326810195, 0.00384522066, -0.0036908749, 0.00734819658, -0.00881112553, -0.00267252908, 0.0134347845, -0.000533918617, -0.0069656875, -0.00769044133, -0.000518400164, 0.0123543655, 0.0169243403, -0.0126630561, 0.00592553196, 0.00807966106, -0.0158103667, -0.0231652725, -0.0205481071, -0.014830607, -0.0182127897, 0.0085158553, -0.0146158645, 0.0451763086, -0.0262387656, 0.000820380868, 0.00735490723, -0.00228330935, -0.0133609669, 0.0175551437, 0.0013824004, 0.000849740056, 0.0139447963, -0.000143231111, 0.0104552424, -0.000402431207, -0.00470083253, -0.0253797974, -0.00178336364, -0.00110474601, 0.000541048707, 0.0240108185, -0.00642883312, -0.0182262119, 0.00569401355, -0.0153540401, -0.00631139614, 0.00531150447, -0.0125825284, 0.00652949326, 0.000570407952, 0.000229840851, 0.000826672127, 0.0101465508, 0.000147844708, 0.021111805, 0.00124231493, -0.00699253054, 0.0102807647, -0.0124483146, -0.0148842921, 0.018749645, -0.00518400175, -0.0273258965, -0.0144011229, -0.0140655888, -0.000154240828, 0.0138776898, -0.00211889786, -0.012233573, -0.00597586203, 0.0209775902, -0.0239973981, 0.00980430562, -0.00104183331, -0.0140790101, 0.00828769151, -0.00746227801, 0.0118309315, 0.000919363403, -0.00495583843, -0.00430154707, -0.00913323741, 0.0168169681, 8.14194427e-05, -0.011428291, -0.0250711069, 0.00161895202, 0.00333856419, -0.00539203268, 0.00825413875, -0.0073012216, 0.000235083571, 0.00120540615, 0.00941508636, -0.011146442, -0.0051907124, 0.031030193, 0.0163203776, 0.0120054092, -0.00950903632, 0.00334191951, 0.00563697284, -0.00303658354, 0.00513031613, -0.0114685548, 0.0153271975, -0.00955601, 0.00449280161, 0.0159982648, -0.0237826556, -0.0138105834, 0.0141058527, -0.0078313658, 0.00812663604, -0.00158623734, -0.000477716647, 0.0204138942, -0.00250643957, 0.00176490925, 0.0146963932, -0.0096768029, -0.00795215741, 0.00450957799, 0.0149648199, 0.00810650364, 0.0231250096, 0.000815767271, -0.00754280621, 0.0148171857, 0.00244772108, 0.00933455862, -0.01043511, -0.0115490835, -0.00546249514, -0.0109115681, -0.0223734137, -0.00940837618, 0.0112068383, 0.0113947373, 0.000243262213, -0.00504978793, -0.0326139145, -0.0224002562, -0.0308422931, 0.0129516162, 0.0178101491, 0.0191791281, -0.0112739457, 0.000515464228, 0.0129449051, -0.0168438107, -0.000323370972, 0.00934798, -0.00832795631, -0.017286716, 0.0162264276, -0.0264669284, 0.00845545903, -0.00527459569, -0.00279499893, -0.0123141007, -0.00542894145, 0.0198233537, 0.0322649591, 0.000382718572, 0.00451628864, -0.00246617547, -0.00809308235, -0.00475787325, 0.0210715402, 0.0219707713, 0.00170367432, -0.0093614012, 0.00197294052, 0.00515715871, 0.003660677, 0.00611343095, 0.00609329902, -0.00647916319, -0.010200236, 0.0114953974, 0.0283459201, -0.00337379519, 0.00343922433, 0.0222794637, -0.0135018919, -0.0108243292, 0.0112001281, -0.022480784, 0.00195448613, -0.00550611457, 0.00113746058, -0.000708396314, -0.00809979253, 0.00916008092, -0.00718714, -0.00474780751, -0.0107505126, 0.00616040593, 0.015300354, 0.0030600708, 0.00981101673, 0.00518735684, -0.0103478711, -0.0155285178, 0.010864594, 0.00427470449, 0.00166508788, 0.00231350749, -0.0275406372, 0.00502294535, -0.0333118252, 0.0201588888, 0.00620067, -0.0144413868, 0.00224640081, 0.0233397502, 0.0154077252, 0.00971035659, 0.0297149, 0.00457668491, -0.00304161641, 0.00238396972, -0.00386870792, 0.00223969, 0.00473438576, -0.0106095877, -0.011475266, -0.0247758366, -0.0161593221, -0.0275674798, 0.0144950729, 0.0232726447, -0.00078514975, 0.0153674614, -0.0020400472, -0.0079857111, 0.00859638304, 0.0334728807, 0.0136428159, -0.00924060866, 0.00962311774, 0.0201052018, 0.00107538677, 0.00971706677, -0.00227324339, 0.0116765862, 0.0118846176, -0.00390226138, 0.00473774131, 0.00504978793, -0.0095493, 0.0232055373, -0.00675094593, 0.00828769151, 0.00499610277, -0.0257421751, -0.00693884492, 0.0152735114, -0.0062912642, 0.0278090648, -0.0218499806, 0.00711332262, -0.00438878592, -0.0239034481, -0.0109988078, 0.028855931, -0.0107102478, 0.00962982792, 0.0101197083, 0.0169914458, 0.00570743484, -0.0029711544, 0.0144548081, 0.00868362188, 0.00793873612, -0.0172598734, 0.00693213427, 0.0104015563, 0.0120523842, -0.00570407929, 0.0353787132, 0.00726766838, 0.0118242214, -0.000571246783, 0.00622415729, -0.0304128099, -0.00692542363, -0.0113007883, -0.00243262225, 0.00818032119, 0.00533834752, 0.00590204448, 0.000194295208, -0.00662679831, -0.00250811735, 0.000280800101, 0.00948890392, 0.0155956242, -0.00423108507, 0.0138642685, -0.0108377514, 0.00499610277, 0.00311543397, -0.0123409433, 0.0104955062, 0.00243262225, -0.00105525472, -0.0123677868, 0.0195146631, -0.0038250885, -0.00402305368, -0.0193536058, 0.00204340252, -0.00217090547, 0.00157617137, 0.00989825558, -0.015300354, 0.00378146907, 0.00777096953, -0.00297786505, -0.0165485404, -0.0147769209, -0.0178369917, 0.00171961216, 0.0204273146, -0.00636172621, 0.00471089873, 0.0159311593, -0.0193536058, -0.00611007586, 0.00328991166, 0.00540545397, -0.0101264184, -0.0206286348, -0.00928087253, -0.0263864, -0.000549856457, -0.00120288972, 0.0106162988, 0.0265474562, -0.00719385082, 0.00282351929, -0.00500281341, -0.0372845493, -0.000262765127, -0.0054457183, 0.0184275322, -0.00516387, -0.00635166047, 0.00434181094, -0.000652194372, -0.0218231361, -0.00183369382, -6.25980756e-05, 0.00644225441, 0.00185382587, -0.00445589283, -0.00683818478, -0.00478471629, -0.00658653397, -0.00742201414, -0.0243597738, 0.00223633461, 0.0164143275, -0.00449280161, 0.00689187, -0.000814509, -0.0201857314, 0.012656346, 0.00466056867, 0.00237390376, -0.00171709573, 0.00629461929, 0.00705963699, 0.0117034288, -0.014548758, -0.00297954259, 0.0177430417, -0.00589533383, -0.00670061586, 0.013837426, 0.000434936053, 0.00473103067, 0.000687006046, -0.00541887572, -0.000718462339, 0.0157835241, 0.0186422747, 0.0140655888, 0.00445924792, 0.00864335801, -0.00844874792, 0.0109384116, 0.0017447772, -0.00966338161, -0.00797900092, 0.00474780751, 0.0192059707, 0.0123610757, -0.00426799338, -0.00674759038, -0.0229639523, -0.00189409, 0.00884467829, -0.00367409829, 0.00134884706, 0.00799242221, 0.00256683584, -0.00166928209, 0.018038312, -0.00619395915, -0.00219271518, 0.0217157658, -0.00331843202, -0.0038653526, 0.000788505131, -0.00692542363, 0.00669726031, 0.00445924792, -0.00745556736, 0.00149815972, -0.00195280835, -0.00292753498, 0.0149648199, -0.0109920967, 0.0157835241, 0.00587184634, -0.0141863814, 0.0144682303, -0.00942179747, 0.00449280161, 0.0159982648, -0.0203333665, -0.0164411701, 0.0093412688, 0.0111598633, -0.00316576404, -0.0220915638, -0.00769715197, 0.00124063727, 0.00261884346, 0.00590875512, -0.0397272371, 0.0256750677, -0.0104619525, 0.00265575224, 0.00256348052, -0.0246147811, 0.00128174026, -0.0197696686, -0.00331004383, 0.00220110361, -0.00893191714, -0.00195113069, 0.00627784291, -0.0155687816, 0.00111481198, 0.00740188174, 0.00812663604, -0.0124147609, -0.0360229388, -0.00260206684, -0.00661673211, -0.0242389832, 0.00517729111, 0.0124952896, 0.00116094796, 0.00778439082, -0.015917737, -0.0123409433, 0.0110793356, -0.012656346, -0.00543900765, -0.042787306, -0.000776761386, -0.0254871696, 0.0032848788, 0.0237155501, -0.0111397319, -0.0019058336, 0.012750295, -0.000827510958, -0.00644225441, 0.0111128893, 0.0134414956, -0.0170317106, -0.0126764774, -0.000257312699, 0.0100928657, -0.0209507477, 0.0143474378, -0.0242792461, 0.0251919, 0.0332849808, 0.0237826556, -0.0148842921, 0.00453977613, -0.00187731325, 0.000401382655, -0.00592888752, -0.016011687, -0.00133458688, 0.00413378, -0.00151829177, -0.0102337897, 0.00721398275, -0.0124348933, 0.00398950046, -0.00883796811, 0.00017521171, 0.0196757186, -0.00829440262, -0.000579215703, -0.00705292635, 0.0289901458, 0.0044961567, 0.0186020099, 0.0179846268, 0.014830607, -0.00313724368, 0.000481491414, -0.0142266452, -0.00732806465, -0.000230050558, 0.0146963932, -0.0205615293, -0.0170182884, -0.0138642685, -0.0281311776, -0.0244403034, -0.0264400858, 0.0148708709, 0.00375127117, 0.017004868, -0.0106498515, 0.0170317106, -0.00689187, -0.0102807647, 0.00697910879, 0.00637179241, 0.0339292064, -0.00666035153, -0.0140655888, -0.00420424202, -0.00349626527, 0.00207360066, 0.0482900664, 0.00443576043, 0.0339292064, -0.0179041, -0.0112940772, -0.00553966779, -0.0181322619, -0.022480784, -0.0189107, -0.00804610737, -0.00873059686, -0.00868362188, -0.0118846176, 0.00350297592, -0.00536183454, -0.00843532663, -0.0115490835, -0.00353317405, -0.00648251874, -0.0338755213, -0.00740859285, 0.00942179747, 0.0017447772, 0.00476793945, 0.0142534878, -0.00566717051, -0.016575383, -0.030037012, -0.0214339178, 0.000674842915, 0.0227760542, -0.00397943426, -0.0120121203, 0.0189778078, 0.00264400872, 0.00514038233, -0.0026305872, 0.011146442, -0.00652278261, -0.000239068031, -0.0141863814, -0.00351975253, -0.0028553952, 0.00642883312, -0.0109384116, -0.00301477383, -0.0361303091, 0.00460352749, 0.0120054092, 0.000698749733, -0.00537190074, -0.00259200088, 0.0146829719, 0.00824071746, -0.00124650914, 0.0118309315, 0.0182127897, 0.00476793945, -0.00141092087, 0.00412035873, -0.0136428159, -0.00242255605, -0.0121664656, -0.00624428922, -0.00814005733, 0.000310788455, -0.0242658257, -0.00591211068, 0.00996536203, -0.0112739457, 0.0223599914, -0.0177833065, -0.014736657, -0.0102270786, 0.00348284375, 0.00252489396, 0.0104619525, 0.00371100707, -0.0137568973, -0.0106095877, -0.0418209694, 0.00192596565, 0.0240779258, 0.00783807598, 0.0407204181, -0.0221452489, 0.00751596363, 0.00526453, -0.00844874792, -0.0038754188, 0.00442905, 0.00948890392, 0.012045674, 0.0181456842, 0.0096768029, -0.00832795631, -0.00117940234, -0.0118242214, -0.0032983, -0.00439885166, 0.00107874209, 0.00915337, -0.0184275322, -0.00398279, 0.0123677868, 0.00239739101, 0.0270977337, -0.000406415667, -0.00413378, 0.0144279655, -0.0042411508, 0.00232357346, 0.00446260348, -0.00742872478, 0.0129650375, -0.00662344275, 0.00190080062, -0.00175148796, 0.00137149554, 0.0133878104, -0.0142937517, 0.0119718565, 0.0127234524, 0.0176088288, 0.0188570153, 0.0143742803, -0.0197696686, -0.0194743983, 0.0249503143, -0.0184275322, 0.0131395152, -0.0049256403, 0.020118624, 0.00790518336, 0.0146963932, 0.0168303903, 0.00813334621, 0.00093194592, -0.00846217, -0.00839506276, -0.00564703858, 0.0251516346, -0.0002237593, -0.0233397502, 0.00529472809, 0.0199978314, 0.00938153267, -0.00858296175, 0.00295102224, 0.0202259943, -0.00128341792, 0.0143877016, -0.00589868939, 0.0123208119, -0.000433677807, 0.00317079714, 0.0113477632, 0.0160787944, 0.00386199728, 0.00357343792, -0.0107035376, 0.0124885784, -0.00171122386, 0.00414384576, -0.00766359875, -0.0174075086, 0.00538196694, 0.00387877412, 0.00984457, 0.00720056146, 0.00182027242, -0.0123677868, 0.0011005518, -0.00858296175, 0.00661673211, 0.00226653274, 0.0128912199, 0.00220445893, 0.0035398847, -0.0292048864, -0.000576279766, 0.0563160405, -0.0109451218, 0.0128777986, -0.00494912779, -0.000491976854, 0.00370094087, -0.00901244581, -0.00202830345, 0.014830607, 0.00655298075, -0.0236752853, 0.00417404389, -0.0129046412, -0.00529808318, 0.0197696686, 0.00701266248, 0.00412035873, 0.0104619525, 0.0120993592, -0.00138323929, -0.0013782063, 0.00375798182, -0.000843029411]
08 Mar, 2024
Prove that √2 is an irrational number. 08 Mar, 2024 The √2 is an irrational number because it cannot be expressed as a fraction of two integers and does not terminate or repeat in its decimal representation.The proof that √2 is an irrational number typically follows a proof by contradiction. Assume, for the sake of contradiction, that √2 is rational. So, we have \bold{\sqrt{2} = \frac{a}{b}}​. Squaring both sides, we get \bold{2 = \frac{a^2}{b^2}}​. Rearranging, we find a2=2b2. This implies that a2 is even, and consequently, a must also be even (since the square of an odd number is odd). Let a = 2k, where k is another integer. Substituting this back into a2 = 2b2, we get 4k2 = 2b2, and simplifying gives b2 = 2k2. Now, this implies that b2 is also even, and therefore b must also be even. However, if both a and b are even, they have a common factor of 2, which contradicts our initial assumption that a and b have no common factors (other than 1). This contradiction arises from assuming that √2 is rational, leading to the conclusion that √2 must be irrational. Therefore, √2 cannot be expressed as a fraction of two integers, confirming its irrationality. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key/If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero/Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3/Prove that √2 is an irrational number.
https://www.geeksforgeeks.org/prove-that-%e2%88%9a2-is-an-irrational-number?ref=asr10
Mathematics
Prove that √2 is an irrational number.
Prove that √2 is an irrational number., Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3, Mathematics, Maths, CBSE Class 12 Maths Term 1 2021 Answer Key, If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero
GeeksforGeeks
[-0.00284394715, -0.0539937392, -0.0156495348, 0.0224101339, -1.68943843e-05, -0.00460096309, 0.0455486812, 0.0258814842, 0.0197810121, 0.0160592683, -0.0296146106, -0.0328924768, 0.0291138254, -0.0157861114, -2.40300378e-05, 0.00308438088, -0.000646966, 0.0556781963, -0.0457763113, 0.005562698, -0.0199858788, 0.0210443549, -0.0265871361, -0.00250250287, -0.0328924768, -0.0102945482, -0.0155129563, -0.00377011509, -0.0239921585, 0.00044209935, 0.0251758322, -0.000240433757, 0.00152085023, -0.0236279517, -0.0065102065, -0.0197582487, 0.000759002403, 0.0088604819, -0.0153308529, 0.0333022103, -0.00772802439, 0.0283171218, -0.0137374457, 0.0185404308, 0.0268830545, -0.00850765593, -0.010049846, -0.0409278, 0.00282687508, -0.0445926376, -0.00502492301, 0.0140106017, 0.0169584043, 0.0490314141, -0.00157775765, -0.00644760812, 0.000659414451, -0.0178120155, -0.00284537, 0.0102774762, 0.011045726, -0.0218296777, -0.0195192378, 0.00267322501, -0.020099692, -0.00172144873, -0.0121554201, -0.00713049714, -0.00342298, -0.00410302356, -0.0172884669, 0.0315722227, 0.0241970252, -0.0420659482, 0.0276114698, -0.0395392589, -0.00111680769, -0.0051131295, -0.0109319109, 0.0361020528, -0.0194964744, 0.0137943532, -0.0156495348, 0.00423960108, 0.0128724538, 0.0281805433, -0.0200314038, -0.0227743406, 0.0382417701, 0.00344289746, -0.00695408415, -0.00955475215, -0.0187680591, -0.0206687674, -0.00867268723, 0.0238555819, 0.0128496904, 0.0264277961, -0.0254489891, 0.0394937322, -0.00987912435, 0.0228995364, -0.0125651537, -0.0153877605, -0.011398552, -0.0559968799, 0.0454576276, 0.0378775634, 0.0588194877, 0.00460949913, 0.0287951436, 0.00282402965, 0.00344858831, 0.0147617785, -0.0674694106, -0.0475290604, 0.0186656266, -0.0289089587, 0.00495663425, 0.0317770913, -0.0280439649, 0.0239466336, -0.00668661902, 0.0196216702, -0.0210785, -0.000815909822, 0.0198834445, -0.025494514, -0.0114099337, -0.0127131129, 0.0163324233, 0.00354817626, -0.0128041646, -0.0388563722, -0.0235141367, 0.0173112303, -0.0198606811, 0.0199631155, -0.00237161573, 0.0295463204, -0.0305251274, -0.0398351774, 0.0151032237, 0.00282118423, 0.00627119513, 0.0128496904, -0.0525824353, -0.000250926067, -0.00782476738, 0.0189046375, -0.00224072882, -0.018381089, 0.0343948305, 0.00460949913, -0.0119619351, -0.0118253576, 0.00506760366, -0.0082970988, 0.0315722227, -0.0546311028, 0.0132025164, -0.0378775634, 0.0244929437, -0.00536067691, -0.0297511872, 0.00940679293, -0.0104254354, -0.00978238136, -0.0388791338, 0.02369624, 0.00215821317, 0.0250620171, 0.0213744193, -2.95651716e-05, 0.00623705098, 0.00938972086, 0.00640777312, -0.00539482152, -0.000584723486, -0.0146934902, -0.0375133567, 0.00523548061, 0.0215451401, 0.0357606076, -0.00907103904, 0.0233320333, 0.0300243422, 0.0230133515, -0.0199858788, -0.00211980054, -0.0198493, 0.0310031511, 0.0212492216, 0.0231385473, 0.0140219824, -0.0251075439, 0.0229223, 0.0447747409, 0.00645899, 0.0124285752, 0.0105392504, -0.0304113142, -0.0406546444, -0.0424756818, 0.0152739454, -0.0472559035, 0.00885479152, 0.0365345478, 0.0610047318, 0.0443194807, 0.00958320592, -0.0490314141, -0.0344403572, 0.0238328185, 0.00688579492, 0.0337574668, -0.0527190119, 0.0118936459, 0.0210443549, -0.0613234118, -0.0418155566, -0.020372849, 0.0353964, -0.0195875261, 0.00134799397, -0.0150121711, 0.0157747306, 0.0277025215, -0.0260635875, -0.0186201, -0.0214199442, 0.0217272453, -0.0312763043, 0.0169697851, -0.00079528091, 0.02799844, -0.0111367777, 0.00966856722, 0.0241515, 0.0407001711, 0.0234003216, 0.0294325054, -0.00644760812, -0.00361931045, 0.00282687508, -0.0167421568, 0.0475290604, 0.00346281519, 0.00474892231, 0.00133163307, -0.0287496168, -0.0269058179, -0.0237645302, 0.0297056623, 0.00539482152, -0.0246067587, 0.0240376852, -0.0084507484, 0.0463453829, 0.020179363, 0.0475290604, 0.00398351764, -0.0103628375, -0.0137715898, 0.0277708098, -0.000818043831, -0.00158629369, -0.0361931063, 0.0165600535, -0.00746055972, 0.0272700246, -0.0237190034, -0.00697115622, 0.0167193934, 0.0128041646, -0.014545531, 0.00717033213, 0.00401766226, 0.0122692352, 0.00850765593, -0.0251075439, -0.0406091176, -0.00377865112, -0.0107668797, 0.016582815, -0.00801256206, -0.00184664503, 0.018381089, -0.0686075613, -0.0157292038, -0.00857025385, -0.0264277961, -0.0173567571, 0.0291365869, -0.00547449151, 0.0202135071, 0.00200598571, -0.023423085, -0.0272017363, 0.0348273292, -0.00156922149, -0.0213630367, 0.0149097377, -0.0233547967, -0.00858732592, -0.0160023607, 0.0037188984, -0.0195306186, -0.00998724811, -0.0351915359, 0.0256766174, -0.017402282, -0.0236734767, -0.0288634319, -0.0141585609, -0.0233775582, 0.0621884055, -0.0141813233, -0.0073126005, 0.0295690838, -0.0171632711, 0.0199858788, 0.015956834, 0.0264960844, 0.0213402733, -0.00724431174, -0.0482119471, 0.0239921585, -0.014352046, -0.0335753635, 0.00756868394, -0.0232182182, -0.00647606188, -0.0153194712, 0.0139081683, -0.0613234118, 0.0245384704, 0.000618156628, -0.0360337645, 0.00136008684, 0.0335981287, -0.00125623075, -0.0155812455, 0.0113530261, 0.0284081735, -0.025653854, -0.00709635252, -0.0420204215, 0.0202135071, 0.0194054227, 0.000537774933, 0.0189501643, 0.0150007904, 0.0291593503, 0.0124627203, -0.0323006399, 0.0065102065, -0.0457535461, 0.0126220612, -0.00710204337, 0.0038241772, 0.0151487496, -0.0355102159, -0.0338257588, 0.00503915, -0.0541758426, -0.0321640596, 0.0391750522, 0.0295690838, -0.0147390161, -0.0273610763, 0.0266781878, 0.0814003423, -0.0185631923, -0.0106075387, 0.00525255268, -0.0195647627, -0.0144886235, -0.0111538498, -0.00986774266, -0.00941817462, -0.00234031677, 0.00183526357, 0.0275431797, 0.0173681378, 0.0161503199, -0.000369186746, -0.0202248897, 0.0101238256, 0.0108863851, -0.0179144479, 0.0313445963, -0.0177323446, 0.0025807505, 0.061778672, -0.00284821517, -0.000752600317, -0.0386970304, 0.00149808719, -0.0470282733, 0.00727276551, 0.030889336, -0.038127955, -0.00417131232, 0.00812068582, 0.0169242602, -0.0470738, -0.00517288223, -0.000853611, -0.00768818939, 0.013726064, 0.00351118646, -0.00640208228, -0.0361020528, 0.0223759897, 0.0447519794, 0.00580170937, 0.00631103059, 0.00254945131, -0.00954906177, 0.0169014968, 0.00555131678, -0.030889336, -0.00427659089, 0.0127358753, 0.0067093824, 0.0321412981, 0.009520608, 0.0001917068, 0.0420431867, -0.043636594, 0.0408139862, 0.0286130402, 0.0705196485, -0.0400855727, -0.0349639058, 0.00647606188, -0.00615168968, 0.0160365049, 0.0111310873, 0.0385376886, -0.000365630025, 0.006863032, 0.00974254683, -0.0103457645, 0.0318453796, -0.0591381676, -0.0318453796, -0.0190753601, 0.00723862089, 0.0145796752, 0.0106587559, -0.0235596634, -0.00938972086, 0.0265416112, -0.0150576979, 0.0166397225, -0.0233092699, 0.0431813337, 0.00544034736, -0.0115977274, -0.0101978052, -0.0295463204, -0.00984498, 0.044501584, 0.00250108, 0.034918379, -0.0222166479, -0.00981652644, -0.0211240258, -0.0241515, 0.0141699417, -0.0108180959, 0.0153422346, 0.0481208973, 0.0202817973, -0.0162982792, -0.0518084951, -0.0105904667, -0.0365117863, -0.0211240258, 0.00624843221, 0.0197696295, -0.00616307138, 0.0189956892, -0.0173112303, 0.0107384259, -0.0154901939, -0.00891738944, 0.047665637, -0.0105733946, -0.00927021541, 0.00564521365, 0.031594988, 0.027292788, -0.014898357, -0.00342867081, -0.0325965583, -0.001950501, 0.0380369052, 0.0239238702, -0.05654319, -0.0683799312, 0.00322664948, -0.0361703411, -0.013726064, 0.0205208082, 0.0247433372, 0.0190525968, -0.00567651307, 0.0161047932, -0.0112449015, -0.0354646891, 0.0400628075, -0.00167165475, -0.00570781203, 0.0012434267, 0.0252441224, 0.0101238256, 0.00973116513, 0.00545457425, -0.00791012868, 0.00479160296, -0.0112961186, 0.00420261128, 0.0499419309, 0.025221359, -0.0104254354, -0.0128041646, 0.00702237291, 0.006060638, 0.028977247, 0.0342354886, -0.0244474187, 0.0162527524, 0.0195420012, -0.00262627634, 0.0265871361, 0.0306617059, 0.00289374124, 0.00318681425, -0.0192574635, -0.0312763043, 0.0193826593, -0.00956044253, -0.00265188469, 0.00531799626, -0.0188135859, -0.0137146832, -0.0186087191, 0.0486672074, -0.0259497724, -0.00303600961, 0.0383555852, 0.0146593461, 0.0255855657, 0.00371036236, 0.00995310396, -0.0208281074, -0.0211467892, -0.00189217099, 0.0011914986, -0.00856456347, 0.0188135859, 0.013646394, 0.00319535029, 0.0223077, 0.0134642906, -0.0485761538, -0.0269513428, -0.000432851899, -0.000998724834, 0.0389929488, 0.00300755608, -0.00880357437, 0.0183697082, 0.00206716126, 0.0224101339, 0.0215337593, 0.0236734767, 0.00373027986, 0.000558048196, -0.0269513428, 0.0128383087, 0.0138967866, 0.013373238, -0.00362215587, -0.0171518903, 0.00795565452, -0.0147276344, 0.000382346567, 0.0213288926, 0.00833124295, -0.0099132685, 0.0457990728, 0.0303430241, -0.0329380035, -0.00833124295, -0.00933281332, 0.0156381521, -0.0273383129, 0.0317543261, -0.00144687062, -0.0241287369, 0.015091842, -0.010243332, 0.0276114698, 0.0422252901, 0.0165031459, 0.021818297, -0.0335298404, 0.0122692352, 0.0175616238, 0.00317258737, -0.0208281074, 0.00173852104, 0.0171177443, 0.00317543279, 0.00505053159, -0.0052866973, 0.013020413, 0.00483143795, -0.0325510316, -0.00699391915, -0.0141471792, 0.0230247322, -0.0114383865, 0.00781907607, -0.013179753, -0.0503061414, -0.0410416164, -0.0248116255, 0.0479843169, 0.0143634267, 0.0229792073, 0.00076896121, -0.00195903727, -0.019826537, 0.00176128396, -0.0137146832, -0.0125765353, 0.028817907, -0.00373881613, 0.035624031, -0.000282936468, 0.0101067536, 0.0255400408, 0.0491224639, 0.0143634267, 0.0325965583, 0.0183697082, -0.00899705943, -0.0110912519, 0.0111879949, -0.00154503586, 0.023070259, 0.00820035581, 0.00212406856, 0.0141813233, -0.0172657054, -0.00172144873, 0.0297284238, 0.0108636227, 0.0256993808, -5.35285217e-05, -0.00948077254, 0.0293186922, 0.0247660987, -0.00157206692, -0.0178575423, -0.0364662595, -0.0276114698, 0.00964580383, -0.0194850937, 0.00699391915, 0.00511028431, -0.0102604041, -0.00603787508, 0.00874666683, -0.0239238702, -0.0181876048, -0.00627688598, 0.0303202607, -0.0259725358, -0.00259070937, -0.0188249666, -0.0112164477, 0.00235454366, -0.0011715811, -0.00308438088, 0.0125879161, 0.0132366605, 0.00507329451, -0.0161047932, -0.027452128, 0.0267464761, 0.00550294528, -0.0161503199, 0.0091108745, -0.0274293665, -0.0631444454, 0.00452698348, 0.0197013412, -0.0304113142, -0.0213288926, 0.0169356409, 0.0116773983, 0.00486558257, -0.0250847805, -0.026313981, 0.0135894865, -0.0130317938, -0.0147617785, 0.0200541671, 0.0306844693, -0.00892877113, -0.0338029936, 0.00403473433, -0.00361077441, 0.0161844641, 0.0134073831, -0.0185859557, -0.00631672097, -0.00657280441, -0.00274578203, -0.0412009545, 0.0301609207, -0.025380699, -0.00736381719, 0.00085218827, -0.0202248897, 0.0579544939, -0.00403188914, -0.0106587559, 0.00526393438, 0.0334843136, 0.028430935, -0.0186428633, -0.018221749, 0.0230474956, -0.0274293665, 0.00817759335, -0.0311169643, 0.00156637607, -0.0147162527, -0.0129407421, -0.0356923193, 0.00609478215, 0.0148528311, -0.0157292038, 0.0187794417, 0.0182900373, 0.00747763226, -0.0258814842, -0.010675828, -0.0388791338, -0.00430789, -0.022956444, 0.0186997708, 0.000735528127, 0.0248116255, 0.0354646891, -0.00366483652, 0.00802394282, 0.00200740853, -0.0541303158, -0.0441146158, 0.0124513386, 0.0146934902, -0.0248799138, 0.0389701873, 0.00650451565, 0.00137715903, -0.0251530707, 0.0145569127, -0.00833693333, -0.0089458432, -0.0125423903, 0.0265643727, 0.0248343889, 0.0163438041, 0.001950501, -0.000263908063, 0.0341899656, 0.00767111732, 0.0126903495, 0.00108479732, -0.0261091143, 0.0203956105, -0.0110400347, 0.00513304723, 0.015797494, -0.000765404489, 0.0184038524, -0.0154674305, -0.021624811, -0.050442718, -0.0403587259, 0.00684026908, -0.034098912, 0.0242653135, 0.0225353297, -0.0336208902, 0.000953198934, -0.0231499299, -0.0136008682, 0.0285219885, 0.0112164477, 0.00195903727, 0.0101522794, -0.0206573848, 0.019667197, -0.0111993756, 0.022797104, -0.0145796752, -0.00260351342, 0.0140219824, -0.00998155773, 0.00189786172, 0.0175730046, -0.00413432252, -0.0295235571, 0.00709066167, 0.002131182, -0.00219520298, 0.0439097472, 0.0315494612, -0.00691993954, 0.0252441224, -0.01407889, 0.00483997399, 0.00522694457, 0.0132480422, 0.0169697851, 0.0164803825, 0.0031555153, 0.0146024385, 0.0261091143, 0.0373084918, 0.0160137415, 0.0187680591, -0.000295562786, 0.0248343889, -0.0414285846, -0.00668661902, -0.0231157858, 0.031708803, 0.0126106795, -0.0114725316, -0.0407001711, -0.0062142876, 0.00910518318, 0.0299788173, 0.0371719114, -0.0187908225, -0.0192802269, 0.00158060296, -0.0230133515, 0.0256993808, 0.00954906177, 0.0245384704, -0.0319819562, 0.0278618615, -0.0146024385, 0.0346907489, -0.0117343049, -0.00302462815, -0.0141357975, -0.00871252269, -0.0202704147, -0.0179258306, -0.0383328237, -0.00458673621, -0.0265188478, -0.00435910653, 0.00152511825, 0.00251103891, 0.0116887791, 0.00829140749, 0.00584438955, -0.00228340924, 0.00114597275, 0.00271875085, 0.0154788122, -0.0224670414, 0.0343720689, -0.0184607599, -0.0156609155, 0.0201224554, -0.000255549792, 0.0136236306, 0.0211240258, -0.0310714394, 0.0147276344, -0.00777355069, 0.0029933292, 0.0102148782, 0.0315722227, 0.0309803877, -0.0161617, 0.00481721107, 0.0326876082, 0.00380425947, -0.0246295221, 0.0180851705, -0.048530627, 0.00628257683, -0.00375873363, -0.00301609212, 0.0126334419, -0.0300015807, 0.0174819529, -0.0234913733, -0.0131456088, -0.0252441224, -0.0723406821, -0.0161389373, -0.015877163, 0.032414455, -0.0033746087, -0.00193342881, 0.000265686424, 0.015877163, -0.0057248841, 0.0116261812, -0.00879788399, -0.0248571504, 0.0303885508, 0.0031555153, -0.0210785, 0.0263822693, 0.00576187391, 0.00924745202, 0.0208622515, -0.0554050431, 0.0379230902, -0.00371036236, 0.017595768, 0.0198493, 0.010066919, -0.00140774681, 0.0230247322, 0.0243108403, -0.030229209, 0.00914501864, 0.0239466336, -0.000253237929, 0.024515707, -0.0118708834, 0.00515011931, -0.0152625637, -0.0191322677, -0.0311397277, 0.00390669284, 0.00484566484, -0.00534645, 0.000754734385, -0.00221654307, -0.0150804603, 0.0112505928, -0.0100896815, -0.0307982843, -0.0131456088, -0.0046749427, 0.031048676, -0.0155015755, 0.0328014232, -0.0338940471, 0.0182103664, -0.00510459347, -0.0171860345, -0.0298650023, 0.00623705098, -0.00460096309, -0.0431130454, 0.00711911544, 0.0131228464, -0.0349411406, 0.00926452409, 0.0214313269, 0.00102148775, -0.0102319503, 0.0268147662, 0.000855745, 0.000151160275, -0.0151146045, 0.0153649971, 0.0168218259, -0.0416562147, 0.0184038524, 0.000376300159, 0.0247888621, -0.0254034624, -0.0116091091, -0.0201338381, 0.00785891153, -0.0012277771, 0.0266326629, -0.0101864245, -0.0126789678, -0.0360792913, 0.007722334, 0.0263822693, -0.00669800071, 0.00450422056, -0.00311283465, -0.0326193199, 0.0236051884, 0.0018779441, 0.04652749, -0.0233547967, -0.00262769917, -0.019394042, -0.0168445893, 0.0276114698, 0.031321831, -0.0348273292, -0.0145682935, 0.0218410585, 0.0217613894, -0.0193371344, 0.0134756714, -0.0103173116, 0.0103457645, -0.00826295372, -0.00883771852, -0.0438186973, 0.00699961, 0.0181762222, 0.00128752983, 0.0369670466, -0.0164007116, 0.00489119068, -0.00859870762, -0.00204155291, -0.0270879213, 0.0100327739, -0.0080580879, 0.028430935, 0.040040046, 0.0070735896, -0.0156267714, 3.69008922e-05, -0.0062142876, -0.000855033635, 0.0321640596, -0.00545172859, 0.00946939085, 0.0249482039, -0.00429650862, 0.00618014345, -0.00949215423, -0.00628826767, -0.0253351741, 0.00689148577, 0.00555131678, -0.000322238135, -0.00519564562, 0.0281350166, -0.0148300678, -0.00224641943, -0.0361020528, 0.00178546959, 0.0321640596, -0.0171860345, -0.0178233963, 0.0086897593, -0.00208565616, -0.00586146209, -0.00154076784, 0.0217727702, 0.001009395, 0.0086897593, -0.03801414, -0.00497655198, -0.00958320592, -0.0628257692, -0.00680612493, 0.0277935732, -0.00846213, -0.00419407524, -0.023423085, 0.00246693566, 0.0399489924, -0.0163665675, 0.0189501643, 0.0184721407, 0.0294552688, 0.013293568, -0.00960596837, -0.0124285752, 0.0128383087, 0.0276114698, 0.0119050276, 0.00605494715, -0.0082117375, 0.0272700246, 0.03769546, -0.0405635945, -0.0184835233, -0.0118253576, 0.000968848472, -0.00721585797, -0.0350549556, 0.0427488387, 0.00053670787, -0.0149438828, 0.00782476738, -0.00079528091, 0.0114440778, 0.00179258303, 0.0117798317, 0.0291593503, 0.00253380183, 0.00792150944, -0.00105349824, -0.000770383922, 0.0121668018, -0.00744917849, -0.0133390939, 0.0320730098, 0.012553772, 0.0103400741, 0.0225125663, 0.0170380753, -0.0333022103, 0.00201736717, 0.0133504756, -0.00305877253, 0.0282943584, 0.0182558931, 0.0270651579, 0.0225467104, 0.0212606043, -0.013452909, 0.0365345478, 0.0430447571, -0.0226832889, 0.0241742618, 0.0369670466, -0.0152967088, 0.0115977274, 0.0201452188, 0.000577610102, -0.00378718739, 0.0275659431, 0.00621997844, 0.00222223392, 0.0182672739, 0.00661833026, -0.0321412981, -0.0194281861, 0.0172087979, -0.0205777157, -0.0111709218, 0.0223418437, 0.0196785778, 0.0104595795, -0.0142382309, -0.0422708169, 0.00475745834, -0.00030890046, 0.0345769338, 0.00115095207, -0.0166852493, -0.0287268534, 0.0194850937, 0.00125338545, 0.0198493, -0.00140134466, 0.0153080896, 0.0118936459, 0.000849342905, -0.0128383087, 0.0104652708, 0.013100083, 0.033666417, -0.0129293604, 0.00460380828, -0.00143050973, 0.000819466542, 0.00212549139, -0.01176845, 0.00290085468, -0.00762559148, 0.00174136634, -0.00913363695, -0.00901982281, -0.0209191591, -0.0250620171, 0.0335981287, -0.0247660987, 0.00809792243, -0.00207854272, 0.0100270836, 0.00916778203, -0.00975392759, 0.00197895477, -0.00461519, -0.00286671, 0.031048676, 0.00576187391, -0.00165173726, -0.00310145319, 0.0258814842, 0.0114896037, 0.00624843221, 0.00285248342, 0.0132480422, -0.00932712294, 0.0237872917, 0.016229989, 0.00985067058, 0.0118367383, -0.00185802649, -0.015091842, 0.00921330787, 0.0177323446, 0.00233035791, 0.000437119947, -0.0182900373, 0.0150463162, -0.0279756766, 0.0185518116, -0.00814914, -0.0234458484, 0.00949784461, -0.00412294082, 0.0358288959, 0.00493956218, -0.00519564562, -0.00798410829, -0.00953198876, 0.00613461761, -0.0105620129, 0.000292539597, -0.0167990644, 0.0232409816, -0.00703944499, 0.0188135859, -0.0229678266, -0.0169356409, -0.0010463848, -0.00725569343, 0.0202704147, 0.0211012624, 0.0219321102, -0.00736381719, 0.00535783172, -0.00172429415, 0.00599234877, 0.0197582487, -0.0219207294, 0.00504484074, -0.000450991123, 0.0050476864, -0.039220579, 0.025653854, 0.0256083291, 0.0257449076, 0.0139309308, -0.0513987616, -0.0024171418, 0.00252099778, -0.0132366605, -0.00680612493, 0.0121895643, 0.025221359, 0.0023616571, -0.00989050604, 0.0134984348, 0.0217500068, 0.0179485939, 0.0133618573, 0.01176845, -0.00192347006, 0.0022762958, -0.0200427864, 0.0485761538, 0.000416491, 0.0183697082, -0.0195533819, -0.0254717506, 0.00579317287, 0.0121668018, 0.0301153958, 0.00023332033, -0.0222849362, 0.0303430241, -0.00185375847, -0.00208565616, -0.00989619642, 0.00307015399, -0.00349411415, -0.0236734767, -0.0145113869, 0.0179258306, -0.0188135859, -0.0190639775, -0.000623847358, -0.0113075, 0.0006405639, 0.0277252849, 0.0158657823, 0.0151942754, -0.00300186523, 0.00265899813, -0.018494904, 0.0171746518, -0.0231613107, 0.00612892676, -0.0368532315, -0.0293869805, -0.00548871839, -0.0134301456, -0.00427659089, -0.0135211973, 0.0169014968, 0.0142496126, -0.0131683722, 0.00356809376, -0.0128724538, 0.00620859722, 0.00567935826, 0.0345086455, -0.0423163399, 0.0152056571, -0.00360223837, -0.00661833026, 0.0143179009, -0.00680043409, 0.0101807332, -0.0169242602, 0.000894157507, -0.0261091143, -0.0251075439, 0.0201907456, 0.0355785042, 0.0433406755, 0.00125694217, -0.0163210426, -0.0145113869, -0.00017196704, -0.00314697903, -0.00567366742, -0.0148755936, 0.00329209305, 0.00571065722, -0.00818897411, -0.00482005673, 0.00400912622, 0.000818755187, 0.00678336201, 0.00169299508, 0.0183469448, 0.000229763624, 0.0319591947, -0.000415068323, -0.0258359592, -0.00673214532, 0.00171433541, 0.0191095043, 0.00837107841, 0.00389815681, 0.00431642635, -0.0287268534, 0.0134301456, 0.0294097438, -0.0165600535, 0.0277708098, 0.0361020528, -0.000858590356, 0.00701668207, -0.01407889, 0.0192574635, -0.0199858788, -0.0064134635, -0.0029250402, -0.0272017363, 0.00878081191, -0.000361361977, -0.0096742576, -0.000333086122, -0.000883487344, -0.0197013412, 0.0261318777, -0.0109603647, 0.0105221774, -0.00369044463, 0.00252242037, -0.0101921149, -0.0001307981, 0.0488493107, 0.0206687674, 0.0299332906, -0.0272700246, 0.018028263, -0.0105107967, 0.0163210426, 0.00941248331, 0.0196558144, 0.0206004772, 0.00391807454, -0.0220117811, -0.0117229242, -0.00857594516, -0.0053236871, -0.000277423562, -0.0242197886, 0.00945800915, -0.0121781835, -0.00510743912, -0.00582162663, 0.0205208082, 0.00563383242, -0.00751177641, 0.0222735554, -0.00912225619, -0.00903689489, 0.0237645302, 0.00471762335, 0.00615738053, -0.00857594516, -0.0101522794, -0.0280212034, -0.0078873653, -0.00548871839, 0.027452128, -0.00825157296, -0.0351232477, 0.00933281332, -0.0148300678, 0.00257221446, 0.00430504465, -0.00542612048, -0.022910919, -0.0242197886, -0.0104595795, 0.0163438041, -0.00965718552, 0.0204752814, 0.0174364261, -0.0306844693, 0.00433634361, 0.0274976548, -0.00273440056, 0.0247205738, 0.0293186922, -0.00341444393, 0.00399489934, -0.00475461315, 0.00680612493, 0.00758575602, 0.0163324233, 0.0101978052, 0.0119391717, -0.00694270246, -0.0186770074, -0.0022563783, -0.000863569789, 0.00873528514, 0.00247404911, -0.00295633939, 0.00878650229, 0.000402264181, 0.0183697082, 0.012553772, -0.01884773, -0.00677767117, 0.00981083512, 0.00601511216, -0.0212492216, 0.013020413, 0.00672076363, 0.00841660425, 0.0218410585, -0.0324372165, 0.00784753, 0.0200769305, 0.0135439606, 0.00269456534, -0.00154219044, 0.00516719185, -0.0135894865, 0.0129179796, 0.00239295606, 0.0154674305, -0.00608909177, 0.0086328527, 0.0186201, 0.0167535376, -0.000399774464, -0.00604925631, -0.0110912519, -0.0232978892, -0.00804101489, 0.0165031459, 0.025494514, -0.0169014968, -0.0126562053, 0.00927590579, 0.0117456866, -0.0226832889, 0.0155812455, -0.0250620171, 0.0135325789, -0.00464079808, -0.0221938845, -0.00129179796, -0.0135098165, 0.014625201, 0.00824019127, 0.0132708056, 0.0197810121, 0.00510174828, 0.0394026823, -0.0122919977, 0.0142040867, 0.00574480183, -0.0177778713, 0.0167876817, -0.0288861953, -0.00638501, 0.00198322278, 0.00481152069, 0.0306617059, -0.0148073053, -0.000549867749, 0.0248799138, 0.0252896473, 0.00825157296, 0.0211012624, 0.0291365869, -0.0113302628, -0.0103969816, 0.0299788173, -0.0228084847, -0.00402050745, -0.00569358515, -0.00576187391, -0.00914501864, -0.00320388656, -0.015251183, 0.0167535376, -0.0110514164, -0.0288634319, -0.0047517675, 0.00935557578, 0.0145796752, 0.0153422346, -0.00553139905, 0.0022947907, 0.0116887791, 0.0127700204, -0.0109205293, -0.0145910569, 0.0176982, 0.022444278, -0.00178120157, 0.0176526755, 0.019826537, 0.0182900373, -0.00903120358, 0.0120643685, 0.0244246554, 0.00239580148, 0.0164690018, -0.0126220612, 0.0225467104, -0.00876373891, -0.0258131959, 0.0119050276, 0.00544603774, 0.0059752767, 0.00664678402, -0.0231157858, -0.0145569127, 0.00500500575, -0.0105221774, 0.0079727266, -0.000296274142, 0.022910919, 0.0456624962, 0.00451560179, 0.0011559315, 0.0114156241, 0.0041115596, -0.0091962358, 0.0025622556, -0.0319136679, 0.0125992978, 0.00766542647, 0.0173795186, 0.0021126871, 0.0237190034, -0.0147845419, -0.0200086404, 0.0111823035, 0.00404042518, -0.00726707466, 0.0254717506, -0.00411440479, -0.00483143795, -0.00480583, 0.00410302356, -0.00445015868, 0.021271985, -0.020179363, 0.00571919326, -0.00639639143, -0.00299617439, -0.00566228619, 0.00643053604, -0.00800687075, 0.0108465496, 0.0126789678, 0.0124399569, -0.0119733168, -0.0064248452, 0.0055740797, -0.0110172722, -0.00372458925, 0.00925883371, 0.0208167266, 0.000842940819, -0.0184266157, 0.0135781048, 0.00880357437, -0.0033063197, -0.00532653229, -0.0203842297, -0.000658347446, 0.00661263941, 0.00820035581, -0.00824588165, 0.0270651579, -0.00269029732, 0.00161332474, 0.00425951881, -0.0280894917, 0.00355386687, 0.00736381719, -0.0134756714, -0.00573911099, -0.0117570683, -0.00859870762, -0.0141244158, 0.0212378409, 0.00460096309, -0.00242283242, 0.0167421568, -0.00743210595, 0.000444589037, -0.0305478908, 0.00049509434, -0.0159682166, -0.00144260249, 0.0153649971, 0.0174819529, -0.00199602707, -0.00326648471, -0.00470908731, -0.000613177195, 0.00033255262, -0.00575049268, -0.0301381573, 0.00995879434, -0.0109262206, 0.0114839133, -0.00413432252, -0.000673641334, 0.0112449015, 0.0207029115, -0.00113885931, -0.0135894865, -0.00101864245, 0.00515011931, 0.0265416112, -0.0116887791, -0.0010463848, -0.00800118, 0.0121781835, -0.00607771, 0.0145000052, 0.000462016935, -0.0146707268, -0.00281833881, -0.00522409892, 0.00297910231, -0.00183526357, 0.00449283887, 0.000215536769, -0.00980514474, 0.000887044065, 0.00205862522, 0.00315266987, 0.00620859722, 0.0146365827, -0.00892877113, -0.000887044065, -0.0210671183, -0.0294780321, 0.0168787334, -0.0169470236, 0.00420545647, -0.0131114647, -0.0203614663, 0.00707928045, -0.0117570683, -0.00244132732, 0.00348557811, 0.0205890965, -0.00220231619, 0.00781907607, 0.00809792243, -0.0294552688, -0.0250392556, -0.00795565452, 0.00710773375, -0.00390384742, -0.00367337256, -0.0102091869, 0.0239466336, 0.0166055784, -0.0212264601, -0.00864423346, 0.00115024077, 0.0049509434, 0.00672645448, 0.00109475607, 0.00934419502, -0.022910919, -0.0282943584, -0.0133277122, -0.000118794196, 0.0180510264, 0.00787029322, 0.0105620129, -0.00111467368, 0.0117798317, -0.0190867409, 0.0049623251, 0.000311390177, -0.00623705098, 0.00185518118, 0.00568220345, -0.0231499299, 0.0175047163, 0.0131569905, -0.000993745402, 0.00259070937, 0.0300471056, -0.0293642171, 0.0136577757, -0.011125396, -0.00958320592, -0.0038241772, 0.00835969672, 0.0337347053, -0.0138284974, 0.00760282855, -0.00291081332, 0.00555416197, -0.00961166, -0.010066919, -0.0133277122, 0.00269314251, 0.0200883113, 0.000342867075, -0.00875235815, 0.0113871703, 0.0103059299, 0.0143975718, 0.042157, 0.0164803825, 0.035237059, 0.0137829715, 0.00921330787, -0.0128496904, -0.0102774762, -0.0233547967, -0.000160852316, -0.00665816572, 0.00944093708, -0.0271106847, 0.0083653871, 0.00182388211, 0.00444446784, -0.00265757553, 0.0117570683, 0.0218524411, 0.00931005, -0.0160592683, -0.00477453088, 0.00945800915, 0.00792150944, -0.00257221446, -0.0335753635, 0.0169014968, -0.0189046375, -0.0259497724, -0.0114611499, 0.0215792861, -0.00881495606, -0.0136350123, 0.00443308614, 0.00127045764, -0.0176526755, -0.00385547616, -0.0151942754, 0.00993034057, -0.00581024541, -0.00447007595, 0.0115294391, -0.0249937288, -0.0116660167, -0.0212036967, 0.00270452397, 0.00513589242, 0.0109945089, 0.00643622689, -0.0148642119, -0.0147731602, 0.0309576243, 0.0132821864, -0.0131911347, 0.00485420087, -0.00509605743, 0.00578748249, 0.0011004468, 0.00498793321, -1.06645793e-05, 0.0187908225, 0.00537774898, -0.0129635055, 0.0144089535, -0.00609478215, 0.000904116256, 0.012121276, -0.01184812, -0.00388962054, -0.0234003216, -0.00672076363, 0.0122578535, 0.0224101339, -0.012747257, -0.00433634361, 0.0184038524, 0.0130317938, -0.00661263941, -0.0245839953, 0.00781338569, -0.0127358753, -0.0223987512, 0.0217727702, 0.0114440778, -0.0105677042, -0.00375019759, -0.00290796813, 0.0161275566, -0.00257079164, -0.0311397277, -0.00477737607, -0.0129748862, 0.0194850937, -0.0237645302, 0.023070259, -0.00442739576, 0.0385604538, 0.0257676691, 0.00202305801, -0.0215337593, 0.0188022051, -0.00522978976, -0.00420261128, 0.00129322056, 0.00847351179, 0.0221938845, -0.015444668, 0.014352046, 0.013293568, 0.00572203891, 0.00353964022, 0.00507044932, 0.0133390939, -0.01407889, 0.0144317159, -0.0101807332, 0.0205435697, 0.0207939632, -0.0139423124, 0.00923038, -0.0345086455, -0.0115408199, 0.00940110255, 0.00425951881, 0.0135325789, 0.0135781048, -0.00282829767, 0.0181876048, 0.00145256135, -0.0104197441, -0.0167649202, -0.0149438828, -0.01884773, -0.0124171944, -0.0126903495, 0.0130545571, 0.000227629585, -0.0200086404, -0.00464364374, -0.0259953, 0.00340021704, -0.0129748862, 0.0256083291, 0.0106701367, 0.0182445124, 0.0152967088, 0.0106018484, -0.00546026463, 0.0111083239, 0.0269285813, -0.0230474956, -0.0157519672, -0.0214313269, 0.00710773375, -0.0231613107, -0.000431429216, -0.0306617059, 0.0156495348, -0.0152625637, 0.013566724, -0.00336038182, 0.0198151562, -0.0140219824, -0.00437902426, 0.0251075439, -0.00655573234, -0.00417700317, -0.00742072472, 0.0104709612, -0.00242567784, 0.00197895477, 0.022091452, 0.00436764257, 0.0196102895, 0.00709066167, -0.00283114309, -0.00138071575, 0.00439325115, -0.0111083239, -0.00280695735, -0.00469201477, 0.00280980277, -0.00116019952, 0.00670369156, -0.00266753417, -0.0112505928, -0.0159909781, -0.000833693368, 0.0164120942, 0.00533222314, -0.0338712819, -0.0330973417, 0.00791012868, 0.0232068375, -0.00627688598, 0.0082117375, -0.0218524411, 0.0109034572, -0.0103742182, -0.0078873653, -0.0247205738, -0.0117001608, -0.010499415, -0.028817907, -0.00169014966, -0.0132138981, 8.29158598e-05, -0.0341444388, -0.000807373726, 0.00820604712, 0.0355102159, 0.0198493, 0.0144658601, 0.00291650416, 0.0187566783, -0.00684596, 0.0228426289, 0.0247205738, 0.00411440479, -0.00963442214, 0.00033913253, 0.0279301517, 0.00210841908, -0.00825726334, 0.0128383087, -0.00333761889, -0.0186087191, -0.0221938845, -0.00201452198, 0.0176071487, 0.0163665675, -0.0106132301, 0.0180055015, -0.00308153569, -0.00287382351, -0.0211695526, 0.0107384259, -0.00604356546, 0.0088718636, -0.00845644, -0.00743210595, 0.00402050745, 0.0279301517, -0.000817332475, -0.00216532638, -0.0126334419, -0.0148300678, 0.00542896567, -0.0152739454, -0.0336208902, -0.00633379351, 0.000713832153, 0.00832555257, 0.0191208851, 0.00488834549, -0.0317315646, -0.0158999264, 0.00350549561, -0.0115123661, -0.00372743444, -0.0111709218, -0.000825157273, -0.0291138254, 0.00971409306, 0.0158088747, -0.00852472801, 0.00793289114, -0.00623705098, -0.0128041646, 0.0212036967, -0.00703375414, -0.00974254683, -0.00310429861, -0.00436764257, 0.00608909177, -0.00206716126, -0.0222735554, 0.00358232064, 0.00580455456, -0.00917916279, -0.0116375629, -0.00289374124, 0.00156495348, 0.0143179009, 0.0183355641, 0.0156609155, -0.00494525302, 0.0144430976, -0.000220694, -0.00799548905, -0.00442455, 0.0252896473, -0.0117570683, 0.00606632838, 0.0118025942, 0.0038810845, 0.0223873705, 0.00394083746, -0.0318453796, 0.0118936459, 0.00975392759, 0.0024939666, -0.0199744962, -0.000966003048, 0.0126562053, 0.0067093824, -0.00360508356, -0.00610047299, 0.0121895643, 0.000374877476, 0.00949784461, -0.00504199555, 0.00385263073, -0.0279529132, -0.0172315594, 0.0108806947, -0.00518141873, -0.0169925485, -0.00563667761, -0.0181534607, -0.00608340092, -0.0135439606, 0.00252099778, 0.00474038627, -0.000661192811, 0.010066919, 0.01077257, -0.00434203446, -0.0198379196, -0.00913932826, -0.0269513428, -0.0119391717, 0.00175986125, 0.000487980928, -0.0125879161, 0.00404896121, -0.00294495793, 0.00849058386, 0.00730121927, -0.0153877605, 0.0113814799, 0.0161617, -0.0120188426, 0.0241970252, 0.00843367632, -0.00807516, 0.00748332264, 0.0103685278, 0.0214996152, 0.00424244627, -0.0164462384, -0.021271985, -0.0287723802, -0.00338883558, -0.0272017363, -0.0103912912, 0.00742072472, 0.0200541671, -0.0058500804, 0.0145682935, -0.00547164632, -0.00791581906, 0.0116432533, 0.0087751206, 0.0231613107, -0.0267692395, 0.0027443592, -0.0124968644, 0.0190525968, -0.0158316381, -0.00228625466, 0.00337176328, 0.00956044253, 0.0117001608, -0.0199972596, -0.0126106795, -0.00650451565, 0.00721016712, -0.00938972086, 0.0150349345, 0.0199972596, 0.00218239869, 0.0012092822, -0.016229989, -0.0120302243, -0.00514158327, 0.00603787508, -0.00610616384, -0.0137943532, -0.0138740232, -0.0136008682, -0.00483428361, -0.00881495606, -0.0117115425, 0.0136008682, -0.0023616571, 0.0275887065, -0.00200456311, 0.0230247322, 0.00630533975, -0.0062142876, -0.00714187836, -0.00800118, -0.0209533032, 0.00275147264, -0.000957466953, 0.0240149219, -0.0326648466, 0.0215906668, 0.00765404478, 0.0098279072, 0.00681750616, 0.00117727183, 0.010226259, 0.00826864503, -0.021818297, -0.00751177641, -0.00549725443, 0.0174250454, -0.00127899379, 0.00767111732, -0.00697115622, -0.015171512, 0.00818328373, -1.58607145e-05, -0.00380141428, 0.015911309, -0.0092531424, -0.00649882481, -0.0299332906, -0.0148528311, 0.0018409543, -0.0106416838, 0.0285902768, -0.028112255, 0.0026191629, 0.0170153119, 0.0130773196, 0.00562529638, 0.00428512692, -0.0108977668, -0.0115863457, -0.0174933337, 0.00585577125, -0.0146934902, 0.00694270246, -0.00682888785, 0.020372849, -0.018494904, 0.0310031511, -0.00562529638, 0.0200541671, 0.000719167234, 0.0195078552, 0.00367052713, -0.00248400797, -0.00369329, 0.0242880769, -0.0160934124, 0.00439040596, -0.0532653257, -0.00941248331, -0.00738658, -0.00965149421, 0.00216959463, -0.00555985281, 0.00358801149, 0.0230588783, 0.0043505705, 0.011045726, -0.0144544793, 0.00564236846, 0.0110172722, 0.0071874042, -0.00850196555, -0.00268460647, -0.0239011068, -0.0248799138, -0.000634161814, -0.00168303633, -0.000943240128, 0.00785322115, -0.000724502315, 0.022603618, 0.00367906317, -0.00567935826, -0.000364207342, 0.00249112141, -0.00505906763, -0.0032494124, -0.0064134635, 0.00377580593, -0.0160934124, 0.00432780758, -1.11980862e-05, -0.0107042817, 0.000797414919, 0.0100270836, 0.00507329451, -0.0222394112, 0.0125196278, 0.00600942131, -0.0286358017, -0.0315267, 0.00402904395, 0.00470055128, 0.00271306024, -0.0153422346, -0.00210272823, -0.00442455, 0.0198948272, -0.0151032237, -0.00538913067, -0.0194623303, -0.00901982281, 0.00862716138, 0.0286585651, -0.0245839953, 0.00359085668, -0.00635655643, -0.0174819529, -0.00571919326, -0.012553772, 0.0130887013, 0.00492533529, 0.00266042096, -0.0221369769, 0.00487696379, 0.0101807332, 0.0257221442, 0.0163551867, -0.00784753, -0.010323002, -0.0183469448, -0.0216134302, 0.0123716686, -0.0240149219, 0.0122692352, 0.0121440385, 0.000869971816, -0.0099132685, -0.015877163, -0.0193712786, -0.0106132301, -0.0119619351, 0.00907103904, -0.0021496769, 0.00978238136, -0.00144544791, 0.0166852493, 0.00344858831, 0.0103571462, -0.00879788399, 0.0208508708, 0.00624843221, -0.00350265042, -0.0142382309, 0.0129976496, -0.0051928, -0.0103628375, 0.0419293717, 0.00404327083, 0.00313844299, -0.00110329222, 0.0131569905, -0.0149552645, -0.0179030672, -0.010243332, -0.0115351295, 0.0242653135, -0.00966856722, 0.0132594239, 0.0199403521, 0.00041755804, 0.0145113869, -0.0122919977, -0.00183953159, -0.00743210595, 0.0291138254, 0.0121440385, 0.032027483, -0.0120985126, 0.0119391717, -0.00558261573, -0.00057263067, 0.00105065282, 0.0127244946, 0.0138854049, -0.00438471511, 0.00628257683, 0.00899705943, -0.014545531, 0.00231470843, -0.0064248452, -0.00238299719, 0.00160336588, -0.00883202814, 0.000268887467, 0.00472615939, -0.018574575, 0.0247660987, 0.0116887791, -0.00539482152, 0.000834404724, -0.0148755936, 0.00665816572, 0.00560822384, -0.00341728912, -0.0272017363, 0.00590129709, 0.00655573234, -0.00794427283, -0.0256310925, -0.00364207337, -0.00356524857, -0.00619721552, -0.0174933337, 0.00526393438, -0.00385547616, 0.0086328527, -0.0193712786, 0.0051245112, -0.000831559359, -0.00903120358, 0.01399922, 0.019826537, 0.00879219268, 0.00549156405, -0.0227515772, 0.00767680816, -0.0173795186, 0.00129464327, 0.013726064, 0.0101238256, -0.0240149219, 0.0047972938, 0.00649313396, -0.0168787334, 0.00575902872, -0.0128383087, 0.00189928443, -0.010146589, 0.00533222314, 0.00350265042, -0.0123716686, 0.0513987616, 0.00990757812, 0.00360508356, 0.024242552, -0.00411440479, 0.00470339647, -0.00423675589, 0.00967994798, -0.0125992978, 0.0127017312, -0.00604356546, 0.00665247487, 0.00269314251, -0.0201452188, -0.0221938845, -0.00030890046, -0.00165173726, -0.00653866, -0.014625201, 0.00319535029, 0.029091062, -0.0178006347, -0.00596389547, -0.00847920217, -0.00292219478, -0.00915071, 0.00254945131, 0.0133846197, 0.0231157858, 0.00283398852, -0.00672076363, -0.00931005, -0.0143975718, 0.00511597516, 0.0325737931, 0.0105164871, -0.00881495606, -0.0297056623, -0.00941248331, -0.0031071438, -0.0216589551, 0.00678336201, 0.00644191727, 0.00117798313, -0.0321640596, -0.0118367383, -0.00873528514, -0.0446609259, 0.0198151562, 0.029796714, 0.0268830545, 0.00788167492, 0.0190525968, 0.0102091869, 0.00741503388, -0.00444446784, -0.00831417087, -0.0275204182, -0.0127017312, 0.00262627634, 0.00124769472, 0.0124171944, 0.00293073105, -0.00701668207, -0.00695408415, -0.00747194141, -0.00437333342, 0.0222052671, -0.00443308614, 0.00927021541, 0.0197127219, -0.0144317159, 0.00436479738, -0.00124556071, 0.00999293942, -0.0059354417, -0.0108579313, 0.00198322278, -0.00430504465, -0.00356809376, 0.00210130564, 0.00333477347, 0.00623705098, -0.00997017603, -0.00192489277, 0.0294552688, -0.0162982792, 0.00555416197, -0.00421968335, -0.0254262257, 0.00284537, 0.00690855831, -0.00815483, 0.0307527576, 0.00470908731, -0.00526108872, -0.00927021541, 0.000544888317, -0.0163551867, -0.00354248541, -0.00682888785, -0.0230247322, -0.00844505802, 0.0287040919, -0.00663540279, 0.0351687707, -0.0141130351, 0.0115066757, -0.00990757812, -0.0155926272, -0.0144317159, -0.0165259074, 0.0170949828, -0.0182331298, 0.0107270442, -0.016890116, 0.0160251241, -0.0101522794, 0.00639070058, 0.0249937288, 0.0121554201, 0.010402672, -0.0213858, 0.0170608386, 0.0161275566, -0.0088604819, 0.0100612277, -0.0175274778, 0.00405465206, 0.0202704147, 0.00118367386, -0.0235141367, -0.0331428684, 0.0124171944, -0.0173226111, 0.00780200399, 0.0131569905, 0.0188135859, 0.0282033067, 0.00334046432, 3.90349196e-05, 0.00231755385, 0.0024569768, 0.0131569905, -0.0120985126, 0.00501069659, -0.001065591, 0.0121895643, 0.0022364608, 0.0109148389, -6.98560552e-06, 0.00640208228, -0.0107668797, 0.0180396456, 0.0112961186, -0.0117115425, -0.00835400634, -0.00598096754, 0.00312990695, -0.00396929076, -0.038833607, -0.00232609, 0.0196216702, -0.0168218259, 0.00265899813, -0.0237417668, -0.00913932826, -1.65275978e-05, -0.0167193934, 0.0205663331, 0.0210443549, 0.00734674511, 0.0111310873, -0.0195306186, 0.0106359925, 0.0254717506, -0.00697115622, 0.00426805485, -0.011574965, 0.00428228173, 0.00765404478, -0.00162043818, 0.0118025942, 0.013293568, -0.00463795289, 0.0161617, 0.0281350166, 0.00740365265, 0.00389815681, 0.0203387048, -0.0114725316, 0.00326079386, -0.0103799095, -0.0124513386, 0.0239011068, 0.0172657054, 0.00294495793, 0.0114896037, 0.0147390161, -0.0169697851, -0.0175274778, -0.0271106847, -0.0100213932, 0.0097596189, 0.00993603189, -0.00402904395, 0.00380995031, -0.00250250287, 0.00423106505, -0.0154560488, 0.0196444336, -0.00769957108, -0.0111709218, 0.0119050276, 0.002849638, -0.0130317938, -0.0130659388, 0.0286358017, -0.00640208228, 0.0133504756, -0.0125651537, -0.0277935732, 0.0119277909, 0.0104766516, 0.00991896, -0.00562245073, 0.0047233142, -0.0131683722, 0.00735812634, 0.00805239659, -0.00850765593, 0.0334387869, -0.00165173726, 0.0117456866, -0.000904827612, -0.00708497083, 0.00218524411, -0.00587284332, -0.0194054227, -0.000701383688, -0.0116091091, -0.00777355069, 0.00293357624, 0.00257363706, 0.0108294776, -0.00464079808, -0.00368475402, -0.000350158341, -0.0312990695, -0.0163779482, 0.0223646071, 0.0269058179, 0.00470339647, -0.00386685762, 0.00637931935, -0.0082117375, -0.00133092178, -0.00792150944, -0.0272472613, 0.00640208228, -0.0301836841, 0.000781054, -0.0195533819, -0.0152398013, 0.00226633716, -0.0121554201, 0.00460380828, 0.00237161573, -0.00275431806, 0.00340021704, -0.0167193934, -1.93173946e-05, -0.0123147611, -0.0089458432, 0.0268375296, 0.00255229673, 0.0166397225, 0.0120871309, -0.00776786, 0.00439325115, 0.0210102107, -0.012280616, -0.0100839911, 0.00253522466, 0.0197013412, 0.0165714342, 0.00373027986, 0.0162982792, 0.0199175887, 0.0178006347, 0.015797494, 0.00927590579, 0.0384238735, 0.00721016712, 0.0153536163, 0.00565659534, -0.0129521238, 0.025221359, -0.00105207553, 0.0244246554, -0.009520608, -0.0116318725, -0.0102831665, 0.0134187648, -0.0190639775, -0.0103628375, -0.00220942963, -0.0154105229, -0.00123560184, -0.0138854049, 0.00690286746, -0.00154219044, 0.000285781833, 0.00240860553, 0.00814914, -0.010755498, 0.00995310396, -0.00351403188, 0.000756868394, 0.00665247487, 0.00102291047, -0.00628826767, -0.0069882283, -0.0176982, -0.019394042, 0.0187339149, 0.0187680591, -0.00430219946, 0.0105107967, -0.0277935732, -0.00305308192, 0.0182445124, -0.0169811677, 0.0277025215, 0.00122635439, 0.0165486708, 0.00822881, -0.00760851894, -0.0169356409, 0.00523263542, 0.0136350123, 0.000581166823, -0.0156609155, 0.00612892676, 0.0157064423, 0.012121276, 0.0113131907, -0.017709583, 0.0164462384, -0.011654635, -0.00211695512, 0.000279024098, -0.0113814799, -0.00937833916, -0.0207939632, -0.0041883844, 0.00611185469, 0.000221049675, -0.0332566835, -0.000136133167, -0.0126903495, 0.0138171166, -0.0022933681, 0.0158544015, 0.00397782726, -0.017709583, -0.0111140143, 0.00699961, -0.0287496168, 0.00486842776, 0.0212492216, 0.00146109739, 0.0163551867, 0.0189615451, -0.0309803877, -0.00558830658, -0.0130090313, -0.0027443592, -0.0228995364, 0.00237446115, -0.0241742618, 0.021624811, -0.00143406645, 0.00954337, 0.00897998735, 0.00112818915, 0.0343493037, -0.0133277122, 0.0107611893, -0.0109148389, -0.00383840408, 0.00793289114, -0.0103856, 0.00381848635, -0.0104880333, 0.0044729216, -0.00975392759, 0.00148386043, 0.0146707268, 0.00118509657, -0.00557123404, 0.000652656716, -0.0129635055, 0.00794427283, -0.00550863612, 0.0124285752, -0.0101750428, 0.0137374457, 0.00414570374, -0.00587853417, -0.0104709612, 0.00364491879, 0.015797494, 0.0141016534, -0.00938972086, 0.0118936459, -0.00588422501, 0.000919054495, 0.0023815746, 0.0122578535, -0.00962304138, 0.00509890262, 0.004262364, 0.0178347789, -0.0062142876, -0.0165600535, -0.0239466336, 0.00785322115, -0.0088718636, -0.00517857308, -0.026040826, -0.0124058127, -0.00825157296, -0.00465502497, -0.0236279517, -0.0026376578, 0.0105449408, -0.00611754507, 0.0187794417, -0.00221512048, 0.0204183739, -0.0154788122, -0.0211809333, 0.00495948, 0.0029051227, 0.00688010454, -0.00730121927, 0.012394431, 0.0121895643, -0.0023986469, -0.0237417668, 0.0289544836, -0.000144046848, -0.0016588507, -0.0267237145, 0.00218097609, -0.000625981367, 0.00397213642, -0.0137033015, -0.0191777926, 0.000781054, -0.00752884895, -0.0274976548, 0.00538344, -0.00624843221, 0.0117798317, -0.00912225619, 0.00165173726, -0.0069483933, -0.0165372901, -0.00724431174, -0.0140902717, 0.0212833676, 0.0196785778, 0.00276000868, 0.0114042424, 0.00661263941, -0.00658418611, -0.00104994152, 0.00969133, 0.00140419009, 0.0223873705, -0.0181420781, 0.0149325011, 0.00990188681, 0.00100654957, 0.00317543279, 0.00112249842, 0.012747257, 0.0020372849, 0.00644191727, -0.0117001608, 0.00571634807, 0.00197610934, 0.0175730046, -0.00342298, -0.0156267714, 0.00169441779, -0.00092189986, 0.00521840854, -0.0221483596, 0.015171512, 0.00702806376, 0.0122464718, -0.0122692352, 0.0093498854, 0.0172998495, 0.0268830545, -0.00715895044, -0.0120757502, -0.00269598793, -0.0111481594, -0.0086328527, -0.00754023, 0.001715758, -0.00700530084, -0.023229599, -0.0222166479, 0.00393514661, -0.00804101489, -0.0206573848, 0.0186201, -0.0102717848, -0.0201110747, -0.0203045588, -0.00433065277, -0.00383840408, 0.00627119513, 0.0125310086, -0.01868839, -0.00574764702, -0.0053236871, -0.0177778713, 0.00923038, 0.0133277122, 0.0156950597, -0.0108863851, 0.0154105229, 0.00291081332, -0.000504697498, -0.00290796813, -0.00170437654, 0.0196330529, -0.0128041646, 0.0267692395, 0.00223930599, 0.00587284332, -0.00653866, -0.0181079339, 0.00252099778, 0.00488265464, 0.0104425075, -0.0158657823, 0.0159909781, 0.00741503388, 0.00390669284, 0.00438186945, 0.0155812455, 0.0196785778, -0.0116773983, -0.00543181133, -0.00854749139, 0.00107697246, -7.26013895e-05, -0.0160365049, 0.0148073053, 0.00148812844, 0.00376726966, 0.0215792861, 0.0150121711, -0.00817190204, -0.0137488274, 0.0119050276, 0.0246978104, 0.00542612048, -0.000408310589, 0.00455543725, -0.0229336806, -0.014272375, 0.0247660987, -0.0223532263, 0.0153877605, 0.00341728912, 0.00141983957, 0.00434772531, 0.00247404911, 0.0153877605, 0.00770526147, 0.00368475402, -0.00499646971, -0.0158885457, -0.0106473742, -0.000488336605, 0.0069882283, -0.00170722196, 0.00875804853, -0.000497584057, -0.0041883844, -0.0100441556, 0.00714756921, 0.0154674305, 0.000908384332, 0.00973685551, -0.00185233576, 0.019473711, 0.0137943532, -0.0267464761, 0.0172770862, 0.00553709, -0.00948077254, 0.00409733271, 0.00311568, 0.0248799138, -0.00784753, -0.00768818939, -0.0049993149, -0.00998724811, 0.00402619829, 0.0147617785, 0.00198037736, 0.0309120975, 0.0107668797, -0.00216817181, -0.0195761453, -0.00679474324, -0.00111538498, -0.0103059299, 0.00449283887, -0.00572203891, 0.00774509693, -0.0112961186, 0.00750608556, 0.0499874577, -0.0121098943, 0.0119960792, -0.0188022051, -0.00407457, -0.000439253985, -0.00465787062, 0.00460096309, 0.01184812, 0.0465730131, -0.00115095207, 0.00370182632, 0.002131182, -0.000243101284, 0.00773371523, -0.00826295372, 0.00379287801, -0.000659414451, -0.0172543228, -0.00706789875, 0.0024939666, -0.0118822651, 0.0201566]
30 Aug, 2024
Is the square root of 12 an irrational number? 30 Aug, 2024 Is the square root of 12 an irrational number? Yes, the square root of 12 is an irrational number. As an answer, we can say √12 ≈ 3.464101615137754587054892683011744733885… Real numbers that cannot be expressed as simple fractions are known as irrational numbers. It can’t be represented as a ratio like p/q, where p and q are both integers, q≠0. It’s an inconsistency of rational numbers. Irrational numbers are generally written as R\Q, where the backward slash sign stands for ‘set minus.’ It may also be written as R−Q, which represents the difference between a collection of real and rational numbers. The computations based on these figures are a little more difficult. Irrational numbers include √5, √11, √21, and so on. If such numbers are utilized in arithmetic operations, the values beneath the root must first be evaluated. What are Rational Numbers? Rational numbers are of the form p/q, where p and q are integers and q ≠ 0. Because of the underlying structure of numbers, p/q form, most individuals find it difficult to distinguish between fractions and rational numbers. When a rational number is divided, the output is in decimal form, which can be either ending or repeating. 3, 4, 5, and so on are some examples of rational numbers as they can be expressed in fraction form as 3/1, 4/1, and 5/1. What are Irrational Numbers? Irrational numbers are any numbers that are not rational numbers. Irrational numbers may be represented in decimals but not fractions, which implies they can’t be stated as a ratio of two integers. After the decimal point, irrational numbers have an infinite amount of non-repeating digits. A real number that cannot be represented as a ratio of integers is called an irrational number. For example, √3 is an irrational number. An irrational number’s decimal expansion is neither ending nor repeating. The definition of irrational is a number that does not have a ratio or for which no ratio can be stated, i.e., a number that cannot be represented in any other way except by using roots. To put it another way, irrational numbers cannot be expressed as a ratio of two integers. Examples of Irrational Numbers √3, √5, and so on are some examples of irrational numbers as they cannot be expressed in form of p⁄q. Euler’s Number, Golden Ratio, π, and so on are also some examples of irrational numbers. 1/0, 2/0, 3/0, and so on are irrational because they give us unlimited values. Is the square root of 12 an irrational number? Solution: Irrational numbers are real numbers that cannot be written in the form p/q, where p and q are integers and q≠0. For instance, √3 and √5 and so on are irrational. A rational number is any number that can be written in the form of p/q, where p and q are both integers and q≠0. A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, √12 cannot be expressed in the form of p/q. Alternatively, 12 is not a prime number but a rational number. Here, the given number √12 is equal to 3.4641016… which gives the result of non terminating and non recurring digit after decimal, and cannot be expressed as fraction .., So √12 is Irrational Number. Similar Questions Is √2 a rational number? Irrational numbers are real numbers that cannot be written in the form p/q, where p and q are integers and q≠0. For instance, √3 and √5 and so on are irrational. A rational number is any number that can be written in the form of p/q, where p and q are both integers and q≠0. A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, √2 cannot be expressed in the form of p/q. Alternatively, 2 is a prime number or rational number. Here, the given number √2 is equal to 1.4121 which gives the result of non terminating and non recurring decimal, and cannot be expressed as fraction .., So √2 is Irrational Number. Is √7 a rational number or an irrational number? A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, √7 cannot be expressed in the form of p/q. Alternatively, 7 is a prime number. This means that the number 7 has no pair and is not divisible by 2. Hence, √7 is an irrational number. Determine whether 5.152152…. is a rational number. A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, 5.152152…. has recurring digits. Hence, 5.152152…. is a rational number. Is √11 a rational number or an irrational number? A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, √11 cannot be expressed in the form of p/q. Alternatively, 11 is a prime number. This means that the number 11 has no pair and is not divisible by 2. Hence, √11 is a irrational number. Determine whether 7.23 is a rational number or an irrational number. A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, 7.23…. has terminating digits. Hence, 7.23 is a rational number What do you understand by the term Rational and irrational number? Real number that can be written as ratio of two integers where the denominator is not zero i.e p/q where p and q are any two integers. When rational numbers are expressed in decimals they are of two types terminating or repeating decimals. π, however, cannot be expressed as a fraction that gives two integers when the numerator and the denominator are divided by their greatest common divisor. The decimal part of it (3. 14159. .. ) is non-recurring i.e it goes on to infinity and an infinite number of digits are worked out. Thus π is an irrational number. To what extend can one express √15 as a rational number? A Rational number can be represented using a fraction that is formed with two integers where the second integer or the denominator is not equal to zero. If a rational number is divided then it gives either a terminating decimal or a recurring decimal. As already established, it is impossible to write √15 in the format p/q. Also, the number 15 cannot be fashioned out as a square of any integer since the square of an integer is an integer, and no integer responds to the equation; 15 = a * a when a is an integer. This mean we get non–terminating, non–recurring decimal when √15 is expressed. Thus it can be concluded that √15 is an irrational number. Is 0. 333333. .. : Can you have a repeating rational or irrational number? A rational number, is a real number which can be expressed in the form p/q, where q ≠ 0. When a rational number is divided it will either produce a decimal that terminates or a repeating decimal. Here, 0. 333333. .. is a recurring decimal. It can be written as 0.33 if explained in fraction form it is expressed as one third which is a ratio of two integers. Therefore, 0. 333333. .. Now in proposition 7 of Definitions, it is stated that a repeating (repeating) is a rational number. Decide if the number ‘e’ or Euler’s number is rational or irrational. A rational number is in the form p/q where p and q belong to set of integers and q is not equal to 0. When expressed as decimals rational numbers are either terminating decimal or are repeating decimal numbers. The number e , which is equal to about 2. 71828 . . . cannot be expressed as a ratio of two integers. Its decimal representation goes on and on and never repeats. Consequently e is the irrational number. Is √20 a rational or irrational number? It is a number that can be written in the form p/q where p and q are integers and q ≠ 0. When divided, a rational number comes to a terminating decimal or a repeating decimal all the time. Once again √20 cannot be represented in the form of p/q. However 20 cannot be expressed as a perfect square because we cannot have a coefficient for the prime numbers hence it is a prime number 2 × 2 × 5. This means that √ 20 = a non – terminating , non –recurring decimal . Hence “ √20” is an example of an irrational number. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key/If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero/Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3/Prove that √2 is an irrational number./Is the square root of 12 an irrational number?
https://www.geeksforgeeks.org/is-the-square-root-of-12-an-irrational-number/?ref=next_article
Mathematics
Is the square root of 12 an irrational number?
Prove that √2 is an irrational number., Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3, Mathematics, Maths, CBSE Class 12 Maths Term 1 2021 Answer Key, Is the square root of 12 an irrational number?, If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero
GeeksforGeeks
[-0.0281730816, -0.0278965738, -0.0162986033, 0.0356695168, -0.00624062913, 0.00161488284, 0.0264986716, 0.0203694142, 0.0306923743, 0.0338261314, -0.0206612833, -0.0350857787, 0.0228887089, -0.0424285978, -0.00777678424, 0.0207380913, -0.00256537879, 0.0482352637, -0.0180498194, -0.0148315756, -0.0211067684, 0.0155228451, -0.0437189676, 0.00376741984, -0.0173585508, -0.000471167499, 7.98080509e-06, -0.00362340547, -0.0115365237, 0.00736970315, 0.0249471553, -0.00148046925, 0.0259610172, -0.0299550202, -0.000438764255, -0.0250086021, 0.00445100898, 0.000757996459, 0.00346786971, 0.0230730474, -0.0119743273, 0.0254540872, 0.00881752931, 0.017005235, 0.0119743273, -0.0171434879, -0.0270977728, -0.0238104016, 0.00967777614, -0.0531202368, -0.00993892178, 0.0125734275, 0.064764291, 0.0572064072, 0.0232113, -0.0085102981, 0.00954720285, -0.0296785124, -0.018971514, 0.0144321751, 0.00499250367, -0.00162448385, -0.0423978753, -0.00354083697, -0.00310303294, 0.0193862747, -0.0357616879, 0.00958560687, -0.0113675464, -0.0135796098, -0.0297553204, 0.0424900465, 0.0148776602, -0.0359153, 0.00894042198, -0.032412868, 0.00474287849, 0.00495025935, -0.00185202679, 0.0453780144, -0.0143323252, 0.0298628509, -0.0125119817, -0.00324128685, 0.017880844, 0.0230116, -0.000305790832, -0.06018655, 0.0473750159, 0.00242136419, -0.000597180217, -0.00562232686, -8.11281789e-05, -0.0216137, 0.0163600501, 0.0191097669, 0.0183263272, 0.0272360258, -0.0253619179, 0.0309074372, 0.0112446537, 0.0167594496, -0.00214869669, -0.0242866091, 0.011882158, -0.0482045412, 0.0169130657, 0.0186642818, 0.0471292324, 0.0120127313, 0.00228119013, 0.00972386077, -0.00740042608, -0.00296477904, -0.0600636564, -0.0502937101, 0.0243019704, -0.0486653857, 0.031107137, 0.0515226349, -0.0537961461, 0.00223510549, 0.000610621588, 0.0139713287, -0.0308613516, 0.020784175, -0.0219516531, -0.0195706133, -0.0142401559, -0.00924765225, 0.030016467, 0.00293597602, -0.0303851441, -0.0169437882, 0.00809553638, 0.0176965054, -0.018464582, 0.0357309617, 0.00127980905, 0.0200314596, -0.0378201343, -0.0393562876, 0.0296017043, -0.0131878899, -0.00203156495, 0.0130189126, -0.0271438565, 0.0308152679, -0.0106762769, 0.0309688821, -0.0159760118, 0.0204462223, 0.0148008522, 0.00782286841, -0.0318291299, -0.0290640499, -0.0334881768, 0.0248089023, 0.00645953137, -0.0656245351, -0.0190175977, -0.018679643, 0.0184184965, -0.00243672566, -0.00431659538, 0.0427051075, 0.0010426651, -0.0111448038, -0.0379430279, 0.0484196022, -0.0217212308, 0.0154690798, -0.00681668753, 0.0338568538, 0.0182341579, 0.0251007713, -0.00333537627, 0.00910171773, -0.00719304522, -0.0216751453, -0.0264218636, -0.0256230645, 0.0313068368, 0.021659784, 0.00390183344, 0.0138253942, 0.0481430963, 0.017082043, -0.0180037357, -0.0119512854, -0.00532661704, 0.0211835764, 0.0174353588, 0.0631666929, 0.0257613175, -0.029217666, 0.0115518849, 0.0533967428, 0.0142555172, 0.0200007372, 0.000725353137, -0.0345327631, -0.0121586658, -0.0158992037, 0.0353622846, -0.0370827802, 0.00434347801, 0.0268059038, 0.0180498194, 0.0307691824, -0.00815698225, -0.0235338937, -0.0125964703, -0.000663426879, -0.0126195122, 0.030231528, -0.0533352979, -0.0139022022, 0.0293559209, -0.0522599891, -0.0230269618, -0.0144014526, 0.0299703814, -0.0119128814, -0.0143246446, -0.00183378498, 0.0243787784, 0.019478444, -0.0232881084, -0.0272821113, 0.0126425549, 0.0376665182, -0.0113214618, -0.0044740513, -0.0186489206, 0.0175582506, -0.00549943466, 0.0176504198, -0.0124044511, 0.0496178046, 0.0021678987, 0.0391105041, -0.00739658577, -0.00373285636, -0.011083358, -0.0211374909, 0.0352393948, 0.0231959391, 0.0373285636, 0.00685893185, -0.0220745467, -0.0430123359, 0.00216597831, 0.00133645476, -0.0234263632, -0.0101539837, 0.020569114, -0.00259034126, 0.0279426575, 0.022535393, 0.0483274348, -0.000559256412, -0.0193555523, -0.00726985326, -0.00106762769, 0.0258534867, -0.0132954204, -0.0377894118, 0.013479759, -0.00598716363, 0.0647028461, -0.0168823432, -0.0151772108, 0.00994660333, -0.0210299604, -0.014140306, 0.000455325906, -0.00517300144, 0.0193248279, 0.0213832762, -0.0152232954, -0.0438418612, 0.00421290472, 0.00715848198, 0.0141863907, -0.0111371232, 3.52235511e-05, 0.0231652167, -0.065255858, -0.000252745493, -0.00240984303, -0.0191251282, -0.017220296, 0.0478973091, 0.0207380913, 0.0181880742, -0.0307845436, -0.0366219319, -0.0307845436, 0.0335496217, -0.00785359181, -0.0306155682, 0.0046123052, -0.00624447, -0.0230116, -0.00724297, 0.0108990194, -0.0402472578, 0.00153231446, -0.032197807, 0.0422135368, -0.0337339602, -0.0243019704, -0.0252543874, -0.00675524119, 0.00510771526, 0.0541341, -0.00901722908, -0.0229962394, 0.00968545675, -0.00690117572, 0.0375129022, 0.00481200544, 0.0226275623, 0.0187871754, -0.0332731158, -0.0217826758, 0.0151618486, 0.000110531146, -0.0452551246, 0.00543414801, -0.013441355, 0.00221398333, -0.00221590349, 0.0187257286, -0.047743693, 0.0294480901, -0.000416201976, -0.0511232354, 0.00169649103, 0.00953184161, -0.00768461498, -0.0164829418, -0.00764237065, 0.0155996531, -0.0256845094, 0.0143476864, -0.0263911411, 0.0158223957, 0.0253926404, 0.00140174141, 0.04709851, -0.0132493358, 0.0303236973, 0.0200929064, -0.0241790786, 0.0044740513, -0.0432274, 0.0110295918, -0.0131802093, 0.0130726779, 0.00344290724, -0.0437804163, -0.0167748109, -0.0226275623, -0.0541033745, -0.00937054493, 0.0445177704, 0.0595106408, -0.0132723786, -0.0178501196, 0.00955488347, 0.0747800171, -0.00157359871, -0.0166211966, 0.0143246446, -0.0157763101, -0.0260071028, -0.0329351611, -0.00825683307, -0.0257613175, 0.0255923402, 0.00202004379, 0.0425207689, 0.00970081799, 0.00658626435, -0.00637504272, -0.0217519533, 0.0354544558, 0.0215061679, -0.018679643, 0.0538268685, -0.0364990421, -0.003233606, 0.0295095351, 0.000957216544, -0.000559736451, -0.021521531, 0.0133184632, -0.056038931, 0.0178193972, 0.0322592519, -0.040493045, 0.0280348267, 0.0140865408, -0.0106225116, -0.0558545925, -0.0285571199, 0.0107069993, -0.00720456662, 0.00716232229, 0.00620606588, -0.0254540872, -0.019340191, 0.012465897, 0.0467605554, -0.00682820845, 0.0191097669, -0.0251161326, -0.0114750769, -0.0165290274, 0.0179269277, -0.0319212973, 0.0124505358, -0.00763084972, 0.0119128814, 0.00990051869, 0.00230807276, 0.0107454034, 0.0293559209, -0.0622757189, 0.042674385, 0.0240408238, 0.0510925129, -0.00979298726, -0.0177118666, -0.00167152856, 0.0318905748, 0.0170974042, -0.0163446888, 0.0126041509, 0.000611581665, -0.00475823972, -0.00103210413, 0.00464302814, 0.0320441909, -0.0591419637, -0.0295709819, -0.0290486887, 0.0210453216, -0.00693573942, -0.00716232229, -0.0289872438, 0.0319212973, 0.0508160032, -0.0177118666, 0.0307999067, -0.0316447914, 0.0266369265, 0.0288950745, -0.00741578778, 0.0141787101, -0.0285110343, -0.0055493596, 0.0436268, -0.00156975829, -0.00746955303, -0.0270056035, -0.0245477557, -0.0114904391, -0.0358231328, -0.0314297304, 0.014647237, 0.0388647206, 0.0353930108, 0.0173278265, -0.00884825271, -0.0313836448, 0.000571737648, -0.0263143331, 0.00129133021, 0.00937822554, 0.0408617221, -0.0247628167, 0.00761548802, -0.00417834148, 0.0163754113, -0.00165904732, 0.0302161667, 0.0300779138, -0.0211682152, -0.0130419554, 0.0137562668, 0.0185260288, 0.00344290724, -0.0192019362, -0.0298474897, -0.0520449281, 0.00289949239, 0.0434424616, 0.00792655908, -0.0636582598, -0.0874379352, 0.0507545583, -0.021444723, -0.0187103674, 0.0213986374, 0.0117669469, 0.0192172974, -0.0211221296, 0.0262068026, -0.00664771, -0.0211221296, 0.0447021089, 0.0022389458, 0.00325664831, -0.0157916732, 0.0237950403, 0.0118898386, 0.0188639816, 0.0110526346, 0.0100925379, -0.00300894352, -0.0077268593, -0.00645569107, 0.0284188651, 0.0178654809, 0.00329121179, 0.00274779717, -0.028710736, 0.0123276431, 0.00744651072, 0.0414454602, -0.00390183344, 0.0201236289, 0.0146318758, -0.0124198124, 0.0288489889, 0.034164086, 0.0169898737, 0.00700102607, 0.000407561107, -0.0331502222, 0.00327585032, -0.000874168123, -0.00589883467, 0.000151815315, -0.0242405236, 0.00576442108, 0.00406313, 0.0476822481, -0.0340411924, 0.0152770607, 0.0183416903, -0.0113061005, 0.0237028711, 0.00552631728, 0.0115134809, -0.0104151303, -0.0197242294, 0.012427493, 0.00192595425, -0.000426042971, 0.0289565194, -0.00397480093, -0.00695110112, 1.9111927e-05, 0.0175275281, -0.0185874738, -0.0187410899, -0.0128576169, -0.0185721125, 0.0336725153, -0.00672835857, -0.00180018158, 0.0288336277, 0.00900186785, 0.0174507201, 0.0325050391, 0.0253465567, -0.0147624491, 0.00477744173, -0.00932446, 0.0112753771, -0.000619262457, 0.010361365, 0.008648552, -0.0307384599, 0.00421290472, -0.0139636481, -0.00427051075, 0.0645799488, 0.0150082335, -0.0108606154, 0.0206152, 0.0376972407, -0.0128883393, -0.0107838074, -0.0073159379, 0.00903259125, -0.0403394289, 0.0256691482, -0.00545335, -0.00139502063, -0.0154153146, -0.0137946708, -0.00170705211, 0.0307384599, 0.0156687796, 0.0157763101, -0.0254080016, 0.0149851907, 0.00888665579, -0.00415145885, 0.00237911986, 0.000764237077, 0.00684357, 0.0131034013, -0.0168362577, -0.00230423245, -0.00600252533, 0.00576442108, -0.0287721809, -0.00263450574, -0.00359652261, 0.00974690262, -0.00838740543, 0.0062137465, -0.0150850415, -0.0504473262, -0.0291254967, -0.00602556765, 0.0179730132, -0.00738890516, 0.0284342282, 0.00930909906, -0.0169898737, -0.0052920538, -0.0132186133, -0.00815698225, -0.0148469368, 0.0216905065, 0.0227197316, 0.110480264, -0.0033872216, 0.0207995381, 0.0163446888, 0.041353289, 0.00876376405, 0.0192172974, 0.00943199079, -0.00644416967, 0.0038615095, 0.0259302948, 0.00255193724, 0.00743114948, 0.0111908885, -0.0221974384, -0.00715464167, -0.00427051075, -0.00101962278, 0.0130265933, 0.013594971, 0.0227965396, -0.0090556331, 0.00133645476, 0.029801406, 0.0384345949, 0.0082721943, 0.000305070775, -0.00619070418, -0.0379123, -0.00818770565, 0.00586043112, -0.0137025015, 0.00668995455, -0.00855638273, -0.0236414243, 0.00995428395, -0.0260071028, -0.0280194655, -0.00534197874, 0.0317369588, -0.0132570164, 0.0115749268, -0.0120818587, -0.0199392904, 0.00407465082, -0.0152847413, 0.00322208484, 0.0261914413, -0.00889433734, 0.0256077014, -0.0117285429, -0.0361918099, 0.00659010466, -0.00334113697, -0.0204001367, 0.00447789161, -0.0296938736, -0.0347171, -0.00579514448, 0.0109681459, -0.0311224982, -0.0106532341, 0.0198624823, 0.0162371565, -0.00387687096, -0.0327201, -0.00341026392, 0.0217519533, -0.0055493596, -0.00435115863, 0.0100541338, 0.00976226479, 0.000607741298, -0.0358845778, 0.0130342748, -0.00240408233, -0.00581050571, 0.0139636481, 0.000203900563, 0.00190195173, -0.0118667968, -0.00877144467, -0.0124505358, 0.0415376276, -0.00724297, -0.0106839575, -0.00679364521, -0.031107137, 0.0408617221, 0.0072890548, -0.0119820079, -0.0109527847, 0.0126502356, 0.0291562192, -0.0160528179, -0.01398669, 0.0190636832, -0.0226275623, 0.0011866797, -2.22622457e-05, 0.0188793447, 0.0127347242, -0.00564152887, -0.0168516189, -0.0100080492, 0.00229847175, -0.00150447176, 0.00927837566, 0.0116670961, 0.0142939212, -0.027036326, -0.00082760345, -0.0110910386, -0.0151464874, -0.0193094667, 0.00380390347, 0.0150543181, 0.0207073689, 0.0515840836, -0.0196474213, 0.0167594496, 0.0144475373, -0.034809269, -0.0557317, 0.00936286431, 0.0195245296, -0.0200929064, 0.0387725495, 0.0277583189, 0.0347478241, -0.0346249305, -0.00278236065, -0.0117669469, -0.005941079, -0.0135412058, 0.0120357741, 0.00887897518, -0.00744651072, 0.0290179662, 0.0116517348, -0.00748491473, -0.000183018463, -0.0141326254, 0.00627519283, -0.00903259125, 0.00858710613, 0.0147240451, 0.0128729781, -0.00451245485, -0.00638656411, 0.0239486545, -0.00493105734, -0.0158377569, -0.0392948426, -0.0423057079, -0.00556088053, -0.0259302948, 0.00808785576, -0.0017272142, -0.0210453216, 0.00436652033, -0.028126996, -0.00349475234, 0.00967777614, 0.013810033, 0.00141134229, -0.000162616401, -0.0171127655, 0.0112369731, 0.000304350688, 0.0345634855, 0.00471983617, -0.0140711786, 0.0197242294, -0.014570429, -0.0129958708, 0.0329966061, -0.00982371066, -0.0266983714, -0.00592187699, -0.0111678466, -0.0139636481, 0.0380351953, 0.0261607189, 0.019555252, 0.0241637174, -0.00456238026, 0.00711239735, 0.00305310776, -0.00439340295, 0.0199085679, 0.00994660333, 0.00890201796, 0.0113445036, 0.0228887089, 0.0287568197, 0.0317369588, -0.00650945632, -0.00700486638, 0.0203233287, -0.0107300421, 0.000903931155, -0.00526901148, 0.0193709135, 0.00793424, -0.0164675806, -0.0311532207, -0.00748107443, -0.00170225161, 0.0160220955, 0.0328429937, -0.0221667159, -0.0109297419, -0.00424746843, 0.00169073045, 0.031982746, -0.00859478675, 0.0162525196, -0.00922461, 0.0166826416, 0.00841044821, 0.0465147719, -0.0244248621, -0.00972386077, -0.0282191653, -0.0265908409, -0.034809269, 0.000454845867, -0.0392026715, 0.0040516085, -0.019478444, -0.0267137345, 0.00616766186, -0.0117439041, 0.0337954089, 0.0291869435, -0.00403240649, 0.00735050114, -8.26283358e-05, -0.0172356572, -0.00743114948, -0.0154690798, 0.0337032378, -0.00855638273, -0.0284956731, 0.00834132079, -0.00847189408, 0.00554167898, 0.0300779138, -0.0310610514, -0.0086792754, 0.00287645, 0.0167748109, -0.0151234446, 0.0256077014, 0.0073159379, -0.0133875897, 0.00638656411, 0.0237028711, -0.0134029519, -0.0137485862, 0.0270516872, -0.0568377301, 0.00985443406, -0.0235031694, -0.0239947401, 0.00923229102, -0.0506623872, 0.0018654681, -0.0368369929, -0.0388647206, 0.0121049006, -0.045347292, -0.0216290615, 0.0158070344, 0.0449478924, -0.0109681459, -0.00102922379, -0.0144628985, 0.00688965479, 0.0147394063, -0.0054111057, 0.00387111027, -0.0430430621, 0.0304158665, -0.0188332591, -0.0265754797, 0.0151311262, 0.0362532549, 0.034164086, 0.0208763443, -0.045500908, 0.0401550904, 0.0175736118, -0.0135412058, -0.0150159141, 0.000586139096, -0.0086178286, 0.0272821113, 0.0100464532, -0.024778178, -0.0137485862, 0.00917852577, 0.00740810717, 0.023687508, 0.0124505358, 0.00279580196, -0.0143016018, -0.0332731158, 0.000886649417, -0.00133165426, 0.0123046013, -0.0295709819, -0.0240715481, 0.00554551929, -0.0139406053, -0.00655938126, -0.0235338937, -0.0204001367, -0.0144321751, -0.0101155797, -0.000772877946, -0.0257459562, 0.0273281951, -0.0575136393, 0.00915548299, -0.0195245296, -0.0151848914, -0.0383731499, 0.020062184, 0.000480048417, -0.0226890072, 0.0125350244, 0.0119052008, -0.0519527607, 0.00193171483, 0.0157609489, -0.00878680591, -0.0184184965, 0.048819, 0.0152079333, 0.00556856161, -0.0310917757, 0.0105073, -0.00333537627, -0.0503551587, 0.0315526202, -0.0228733458, 0.0164214969, -0.0331195, -0.01199737, -0.0147470869, 0.0203079674, 0.00297245965, 0.0254540872, -0.00339298206, -0.0128960209, -0.0168055352, -0.0056991349, 0.013556567, -0.00107818877, 0.00813394, 0.00635584071, -0.00646721199, 0.00835668296, 0.00219094101, 0.0178962052, -0.0504780486, -0.011083358, 0.00611389661, -0.0218441226, 0.036775548, 0.0113061005, -0.0199700147, -0.00979298726, 0.0312146675, 0.00971618, -0.020784175, 0.0203079674, 0.00292061456, 0.00559544424, 0.00641728705, -0.00051269168, -0.0330580547, 0.00232343422, 0.00455853948, 0.0054264674, 0.0300318282, -0.0200160984, 0.00811089762, -0.0116901388, -0.0149083836, -0.0176350586, -0.00361572462, -0.034594208, 0.022535393, 0.020784175, 0.0167748109, -0.0114289923, 0.0260378253, 0.000736394257, -0.00392871629, 0.00797264371, -0.0133338245, 0.00932446, 0.0142017519, -0.00952416, 0.0109835071, -0.000567417243, 0.00659394497, -0.017588973, 0.0084795747, 0.0253772791, 0.00470831478, -0.0184492208, 0.0333038382, -0.00516148051, -0.00549943466, -0.0189254284, 0.00243864581, 0.0100003686, -0.0160989035, 0.00623294851, 0.0125119817, -0.0241176318, 0.00537270168, 0.00604092935, 0.0271592196, 0.0227350928, 0.000587099232, -0.0358845778, -0.00305694831, -0.0234570857, -0.0487575568, 0.001348936, 0.0261914413, -0.00264986721, 0.01536923, -0.0094934376, 0.0182956047, 0.0402779803, -0.0216290615, -0.0102384724, 0.014025094, 0.00299934251, 0.000290669297, 0.0107607655, -0.00703943, -0.0168362577, 0.0186489206, 0.0117976693, -0.0107684461, -0.00456622057, 0.0190483201, 0.0736739859, -0.0345634855, -0.0198624823, -0.00410537422, 0.0132570164, -0.0068781334, -0.0153001025, 0.0224432237, 0.0124505358, -0.0138023514, 0.0223203301, 0.00728137419, 0.00792655908, 0.0278197657, -0.00451629562, 0.0340104699, -0.00732361851, 0.0135104824, -0.016129626, -0.0164368581, 0.0140942214, -0.0109758265, -0.00814162102, 0.021152854, 0.0218287613, 0.0167901739, 0.015115764, -0.00187026861, -0.0370520577, -0.013518163, 0.0309227984, -0.00736970315, 0.0153845912, 0.0273128338, 0.021659784, 0.0175275281, 0.0364068709, 0.00818770565, 0.0224432237, 0.0329658836, -0.00705863163, 0.0246860087, -0.00561080594, -0.00411305483, -0.0103306416, 0.0288029052, -0.0169898737, -0.00099178, 0.00434731832, 0.00910939835, 0.00449325331, 0.0110372733, 0.00567225181, -0.0360996388, -0.0234263632, 0.0171895735, -0.0169898737, -0.0112676965, 0.0185260288, 0.022673646, -0.00698566437, -0.0253158323, -0.0259149335, -0.0273589194, 0.00156111747, 0.017220296, -0.00617918326, -0.00390183344, -0.0204154979, 0.00894042198, 0.0131725287, 0.0143400058, 0.00253081531, 0.0143323252, -0.00226006797, 0.0084795747, -0.0120511353, 0.00569145381, 0.0119128814, -0.00339106191, -0.0275893416, 0.011375227, -0.0240408238, 0.00976994541, 0.00156303763, -0.017512165, 0.00652481802, -0.00612925785, -0.00120876194, -0.0284035038, 0.0084795747, -0.0293098353, -0.0323821455, 0.0184184965, -0.0237950403, -0.00882521, 0.002707473, 0.00499634398, 0.0130880401, -0.00190195173, 0.00587963313, 0.00589499436, 0.0236107018, 0.0102000684, -0.00957792625, -0.00867159478, -0.00407081051, 0.0220284611, 0.0107991686, 0.0154998032, -0.00673219888, 0.0065017757, -0.000453885761, 0.0285263974, 0.025653787, 0.00198163977, 0.00978530664, 0.00567993289, 0.0116978195, 0.012719363, 0.00292253471, 0.0162678808, 0.0139175635, -0.0143630486, 0.0247320943, -0.0168362577, 0.0250546858, -0.00129613071, -0.026529396, 0.0185874738, -0.0216905065, 0.0268366262, -0.00344674755, -0.000218422021, -0.00574137876, -0.0109143807, -0.0202618837, 0.0149237448, 0.0203233287, -0.00537270168, -0.00336033874, -0.00300318282, 0.0108759766, -0.0388032719, -0.0111985691, -0.00694342, 0.00187506911, 0.00303966645, 0.0295402594, 0.0125964703, -0.00918620639, -0.00659778528, 0.0090556331, 0.00607549259, 0.0153461872, -0.0256230645, -0.0139098829, 0.0151080834, 0.00563384825, -0.0112216119, 0.0304312278, 0.0350550562, 0.0147778103, 0.0198317599, -0.027988743, -0.00093609438, 0.0176811423, 0.0120050507, -0.0172663815, 0.0106301922, 0.00844885223, -0.0144628985, 0.000242304435, 0.0041706604, 0.029079413, 0.0115058, 0.0187410899, 0.00206036773, 0.00904795248, 0.00476208, -0.0174660813, 0.0304773133, -0.00722760893, 0.0259917416, -0.0102768764, -0.0153077841, -0.00784207, -0.00790351722, 0.0303697828, 0.0259610172, -0.00205652742, 0.0185874738, -0.00535734044, 0.00275931833, 0.00858710613, 0.00828755554, -0.0142631987, -0.0104765762, -0.014862299, 0.0108759766, -0.0287875421, 0.00113387429, -0.00894810259, 0.00681284722, -0.00387687096, 0.0158992037, 0.003243207, -0.0106301922, -0.00586043112, 0.00888665579, -0.00819538627, 0.00182034355, -0.00972386077, 0.00321632437, -0.0385882109, -0.0335803479, 0.0128960209, -0.0200160984, -0.00458542258, -0.00547639234, 0.00288413092, 0.00711623766, -0.0047313571, 0.0121663464, -0.010576427, 0.00180978246, 0.0281423572, 0.0227658153, -0.0451015085, 0.00604476966, -0.00392871629, 0.000107770866, 0.0234263632, 0.00578362308, 0.00280540297, -0.0234263632, -0.00365220825, -0.0283574201, -0.020354053, 0.034379147, 0.0456238, 0.0373592861, -0.012680959, -0.00923997164, 0.0066361893, 3.88839217e-05, 0.0217365921, -0.00727369357, -0.0260378253, 0.0082721943, -0.0160220955, -0.00457006088, 0.0095702447, -0.0120511353, 0.0158838425, -0.00721224723, 0.00141038222, 0.015192572, -0.0201236289, 0.00634816, -0.0047313571, -0.0212296601, -0.0126502356, -0.00808785576, 0.0167440884, 0.00811089762, -0.00724297, -0.00604476966, -0.0286185667, 0.0129651474, 0.0177425891, 0.00333345612, 0.00346786971, 0.0173892733, 0.0026364259, 0.000760876748, -0.0102538336, 0.0206305608, -0.00127020804, -0.00777678424, 0.0040362468, 0.0168055352, 0.0123967705, -0.00492721703, -0.0128576169, 0.000231743368, -0.0100771766, -0.025807403, 0.0156611, -0.0108529348, 0.00876376405, 0.00523828808, 0.00762700895, -0.00313759642, 0.00927837566, 0.0378201343, 0.0244555864, 0.0131725287, -0.0268519875, 0.0074541918, 0.00179058057, -0.000625503075, -0.0104688955, 0.0100694951, 0.00411689514, -0.0220131, 0.000875608297, -0.0153231453, -0.0132109318, 0.00813394, 0.00802640896, -0.0555166379, 0.0011866797, -0.00133933511, -0.012719363, -0.0104535343, 0.0310303289, -5.01950599e-05, -0.00458542258, -0.00689733541, -0.0337646864, -0.00423978735, -0.00256729894, 0.0016216035, 0.00117995904, -0.00536502106, -0.018971514, -0.0264218636, -0.00475439942, -0.00884825271, 0.0196166988, -0.0265754797, -0.0371135026, 0.0047467188, -0.0187871754, 0.0127808088, 0.0332116708, 0.00339682261, -0.006486414, -0.0158684794, -0.0184184965, 0.00706631271, -0.0125427051, 0.00165616698, 0.0318291299, -0.0139943715, -0.00958560687, 0.0293251965, -0.001358537, 0.036345426, 0.00934750214, -0.0129267434, 0.0232881084, 0.0203079674, 0.0104996189, 0.0208149, -0.00496178027, 0.0253004711, 0.0118130315, 0.0209992379, -0.0187410899, -0.00269019138, 0.012934424, 0.00942431, 0.0148853408, -0.0251314938, -0.00931678, 0.0106762769, 0.00714696059, 0.0169898737, -0.0139943715, 0.00327201, 0.0167287271, 0.00571833644, 0.00240600272, 0.0125350244, 0.012934424, 0.009193887, 0.0295095351, -0.0313222, -0.0164829418, -0.00413225684, 0.00441644527, -0.00525365, -0.0214139987, 0.00563000795, -0.00296477904, 0.0378815793, 0.0122585157, 0.00911707897, 0.000196099776, 0.00914780237, -0.00483888807, 0.0083029177, -0.00365220825, -0.0209224299, -0.0199546516, -0.0108222114, -0.00859478675, 0.0187103674, 0.023549255, -0.0115058, -0.0152156139, 0.0090556331, -0.00314527727, -0.0186335593, 0.018310966, -0.032197807, 0.0210606828, -0.00785743259, -0.0167594496, -0.00822611, -0.0103920875, 0.00842580944, 0.0286032036, 0.00203924556, 0.018464582, 0.0142939212, 0.0193094667, -0.0112062497, 0.0078151878, 0.0156073337, -0.0203079674, 0.0142247947, -0.0293405596, 0.00503858831, 0.0090863565, 0.0152232954, 0.0121433046, -0.0367448255, -0.0121433046, 0.0149314255, 0.00600252533, -0.00510003418, 0.0101232613, 0.0177579504, -0.00517684221, 0.00592571776, 0.018971514, -0.0111064, -0.0128422547, -0.00187602919, -0.0160374567, -0.00770765729, 0.00407465082, -0.0158531182, 0.0139022022, 0.000843445072, -0.0239332933, 0.00753099937, 0.0292637516, -0.00931678, 0.0168977045, -0.00143246446, 0.00221782364, -0.00154767605, -0.00572985783, -0.016498303, 0.00797264371, 0.0328122675, 0.0190944057, 0.00802640896, 0.0141633479, 0.0158531182, 0.0246245638, 0.00368677173, 0.0211374909, 0.0186642818, -0.00178674015, 0.0195245296, 0.00128941, -0.0101078991, -0.0175428893, -0.0037117342, -0.00592571776, -0.00501170522, 0.00968545675, 0.0058373888, -0.00443948759, -0.01507736, 0.00322784553, 0.00770381698, 0.00676292181, -0.00243672566, 0.00990819931, 0.0405237675, -0.00158511987, 0.00119532051, -0.00282268459, 0.0122277932, -0.015914565, 0.0113291424, -0.031982746, -0.00149583083, 0.0103690457, 0.0105610648, 0.0165751111, 0.0183570515, -0.0230116, -0.0255923402, 0.0066054659, 0.00258842111, 0.0043396377, 0.0188639816, 0.0100848572, 0.0046123052, -0.0152463373, 0.00642112736, -0.0105303414, 0.00846421346, -0.00690117572, -0.00630207546, -0.00758476462, 0.0068781334, -0.000737354334, 0.00384998834, -0.0120511353, -0.000163696503, 0.00662850821, 0.00672451826, -0.00475055911, -0.00734282052, 0.00732745882, -0.0128192129, -0.0122124311, 0.00326240901, 0.0141863907, 0.00451245485, -0.0126502356, 0.00374629768, 0.0210606828, 0.00227158912, -0.00865623262, -0.0129881902, -0.0020238841, 0.0029801405, 0.00586811174, -0.00822611, 0.0310610514, 0.017297104, -0.00676292181, 0.00993892178, -0.0205844752, 0.019340191, -0.00465454953, -0.0116517348, -0.00237143924, -0.0130880401, -0.0140404562, -0.00549175357, 0.016068181, -0.0154537186, 0.013594971, 0.0139098829, -0.00632127747, 0.0106993187, -0.0323207, -0.00103402429, -0.0202926062, -0.00535734044, 0.0229962394, 0.00518068252, 0.00175313675, -0.00171569304, 0.0137869902, 0.0124966204, 0.0138714788, -0.0147854909, -0.0178040359, -0.000546295079, -0.00122796383, 0.00268635084, 0.00624062913, 0.00650561601, 0.0128499353, 0.0153001025, -0.00259802188, -0.00763853034, 0.00393639691, 0.00399784325, 0.0267137345, -0.022596838, -0.0109681459, -0.0152079333, 0.0243019704, -0.00472751679, 0.00220054202, 0.0198778436, -0.0253311936, 0.000464446843, 0.00121356233, 0.0077114976, -0.00545719033, -0.0118514355, 0.000712391862, -0.000318032078, -0.0137869902, 0.00536118075, 0.00163504493, -0.00357156014, 0.0107223615, -0.0245323945, 0.00364644779, -0.0181112662, -0.0127500854, -0.00304350699, -0.0302929748, 0.00456238026, -0.0188793447, -0.0205076672, 0.0104304915, -0.0284956731, 0.00242328434, -0.0102384724, 0.0233341921, -0.00782670919, 0.00431659538, 0.00196819846, -0.0379123, -0.0158531182, -0.00128845, 0.0112062497, -0.00151023234, -0.00740042608, 0.00267098937, 0.0101078991, 0.0037270959, -0.0181112662, -0.0226275623, 0.000394599803, 0.00567993289, -0.00163408474, 0.000347555033, 0.0159760118, -0.0181112662, -0.0142862406, -0.013441355, -0.0234417245, 0.0169591494, -0.00473903771, 0.00506931124, -0.00293021556, 0.010322961, -0.0148930214, -0.00568761351, -0.00487729162, -0.0121970698, 0.00118859985, 0.00142670388, -0.0096009681, 0.0132339746, 0.0162986033, 0.019340191, -0.00497330166, 0.0200314596, -0.00611389661, 0.0210606828, 0.0153461872, -0.000446205, -0.0151464874, 0.00019369954, 0.0308306292, -0.0123046013, 0.0247013718, 0.00490801502, 0.00158992037, 0.0056837732, -0.0121970698, -0.00477744173, -0.00245016697, 0.019478444, -0.00342178508, -0.0250393245, 0.0161449872, -0.00924765225, 0.0184031352, 0.0375743508, 0.0150005529, 0.0112446537, 0.0179115664, 0.000382118538, -0.00596796162, -0.0094934376, -0.039018333, -0.00404008757, -0.00573369814, -0.00487345131, -0.0110910386, 0.00752715906, -6.4626518e-05, 0.00211221306, 0.00722376863, -0.0135796098, 0.0115442043, 0.0101232613, -0.0209377911, -0.00749259535, 0.00311839441, 0.00685509108, 0.00598332332, 0.00586043112, 0.0117899887, -0.0287568197, -0.018387774, 0.00347171, 0.0133031011, -0.00738890516, -0.0132493358, 0.00196819846, -0.00259418157, -0.0199085679, 0.00405928912, -0.00511923619, 0.00713928, -0.00974690262, -0.0104996189, 0.0115442043, -0.00851797871, -0.00200660224, -0.000962017, 0.00917084515, -0.0071815243, 0.00670915656, -0.00127308839, -0.0295863431, -0.0162217952, 0.0127040008, -0.0122431545, -0.0111755272, 0.00868695602, -0.0218594838, 0.0345634855, 0.0124735776, -0.00673603918, -1.81368287e-05, 0.00724297, 0.0138407554, -0.0134029519, 0.0104688955, 0.00421290472, 0.0103767263, 0.0145397065, 0.00173105451, 0.00348899188, -0.0119896894, 0.00078583922, -0.00110699167, 0.0154537186, 0.000387159031, 0.00278620096, 0.0113521852, -0.00149679091, -0.00902491, -0.0161142647, 0.0124812583, 0.00330657349, -0.00232919492, 0.0266062021, 0.00428971276, -0.00178097957, -0.00643648906, -0.0172356572, 0.0181112662, 0.00571449613, -0.0212142989, -0.0161603503, -0.0212296601, 0.0155612491, -0.0240715481, 0.011590289, 0.00910939835, 0.0190483201, 0.0231498536, -0.0128652975, -0.0115442043, 0.0259763803, 0.00251929415, -0.00579898478, 0.00293021556, 0.000675908173, 0.000584699, -0.014355368, 0.0111217611, 0.0172510203, 0.0101232613, 0.0085102981, -0.00485040899, 0.0238104016, -0.00398248155, -0.00146606786, -0.0213218294, 0.0313068368, 0.031767685, -0.025146855, 0.0168362577, -0.0292791128, -0.0116824582, 0.00393639691, -0.00615614094, 0.0236567855, 0.00184050563, -0.0114443544, 0.0050040246, -0.0111371232, -0.0034486677, -0.0159452874, -0.00479280343, -0.0173431896, -0.0131955706, -0.0047313571, 0.00121452252, -0.0214908067, -0.0168516189, -0.00353699666, -0.0221820772, -0.00652481802, -0.00663234899, 0.0126655968, 0.00812626, 0.00154287554, 0.0206920058, 0.00120588159, 0.0137101822, 0.0130189126, 0.020277245, -0.0131418053, -0.0221667159, -0.0234263632, 0.000497810193, -0.0224432237, 0.00906331372, -0.0212450232, 0.0108452532, -0.0156380571, -0.00673603918, -0.0040516085, 0.0196627825, -0.00748875504, 0.018464582, 0.0234570857, -0.00223126495, 0.0033200148, -0.00320288306, -0.00752331875, -0.0100694951, 0.0115211615, 0.0224125, 0.00532277673, 0.00766925327, -0.00368869188, -0.00923997164, 0.0161142647, -0.00520372484, 0.00442028558, 9.10291783e-05, 0.00517684221, -0.0054303077, -0.0188486204, -0.0037213352, 0.012389089, -0.00466223, -0.0184492208, 0.0194477215, 0.0109681459, -0.00415145885, -0.0288182665, -0.021659784, 0.000338434125, 0.0116056502, -0.0117131816, -0.00325664831, -0.0256077014, 0.0115134809, -0.00829523616, 0.014900703, -0.0125657469, -0.0209685136, 0.00559160393, -0.0176196974, -0.0120588159, -0.00297822035, -0.0162217952, -0.0174046345, -0.0100848572, -0.00559544424, 0.0317062363, 0.027620066, 0.0179422889, 0.0122354738, 0.00801104773, 0.00917084515, 0.0172510203, 0.0123737277, 0.00898650661, -0.00809553638, 0.012135624, 0.0179730132, 0.00990819931, -0.0191712137, 0.00794192124, -0.00397480093, -0.0256384257, 0.000700870703, -0.0187257286, 0.00318752136, -0.00818770565, -0.00933982152, 0.0230116, 0.00572985783, 0.00993124116, -0.025868848, 0.00223702565, -0.00319328206, 0.00355427852, -0.0295709819, 0.0077114976, 0.00730825681, 0.00897114445, -0.00402088556, -0.00141230237, -0.00627903314, -0.0190790445, -0.00845653284, -0.0065171374, -0.0139175635, 0.00544950971, 0.00415529916, 0.00964705274, 0.0408309959, 0.0241022706, -0.0139175635, -0.00504626893, -0.00597948302, -0.00359076215, -0.0126886396, -0.00966241397, -0.00688581448, -0.0232113, 0.0130803594, -0.00193843548, -0.00910939835, 0.0231959391, 0.000437084062, -0.0157148652, 0.0202311594, 0.00834900234, -0.00990819931, -0.0101847071, 0.000409241271, 0.0120818587, 0.0184953045, -0.0423978753, 0.000873688085, 0.00143534469, 0.00251737377, -0.000458206196, 0.00644416967, -0.00125964708, 0.00708551472, 0.0199392904, -0.00824915152, -0.00297438, 0.0222128, -0.00718920492, 0.000124692568, -0.00577978278, 0.0184492208, -0.0236567855, -0.0014305443, 0.0119128814, -0.00874840189, 0.0185874738, 0.00549943466, -0.0309842452, 0.00753483968, 0.00546103064, -0.000627903326, -0.014608833, 0.00332769565, 0.00260186242, 0.0100541338, 0.0074541918, -0.00422442611, 0.00281308359, 0.00624062913, 0.0105073, -0.0127577661, 0.00318560121, -0.00928605627, -0.00267290953, 0.0110603152, -0.00301086367, -0.0122124311, 0.00293789618, -0.0231805779, -0.00606013089, -0.00737354346, -0.00462766644, 0.0047467188, 0.00368677173, 0.0132570164, 0.00724297, 0.00216597831, -0.010031092, -0.000933214091, -0.0159299262, -0.0228426233, 0.000760876748, 5.48755343e-05, -0.0160220955, 0.00672067748, 0.0101847071, 0.00250393245, 0.0119282426, 0.00525749, -0.00940126833, 0.0202926062, -0.0154229952, 0.0442719832, -0.00111755275, -0.00709319534, -0.00301470398, -0.00491185533, 0.0113291424, -0.0273435581, -0.0111448038, -0.000129013017, -0.0123353237, 0.000135013615, -0.0154613992, -0.0125734275, -0.000824243121, 0.00330657349, -0.0121970698, 0.0110065499, -0.0019662783, 0.00961632933, 0.00846421346, -0.000534293882, 0.0244402252, -0.0130189126, 0.00412457576, -0.0085410215, 0.0149160642, -0.0174199957, 0.00266330852, 0.000227302924, -0.000117071802, 0.0103767263, -0.000725353137, -0.0152079333, 0.0112753771, 0.00593723869, -0.0187871754, 0.00529973442, 0.0238257628, 0.0105610648, 0.00131149229, -0.0183416903, -0.0182802435, -0.00476208, 0.00741578778, -0.00631359685, 0.00452397624, 0.0034544284, -0.0228119, -0.00339682261, -0.0293405596, -0.031982746, 0.0245016702, -0.00322016468, 0.0316140689, -0.00362532563, 0.00263834605, 0.00186258787, -0.00940894894, 0.016498303, -0.0020430861, 0.00182802428, 0.00518836314, 0.00272283447, 0.0198624823, -0.0216751453, 0.00453165686, 0.00742730917, 0.00888665579, -0.00110027101, -0.00280156243, 0.0178347584, 0.011958966, -0.00460846489, 0.0150543181, -0.0109297419, 0.00405928912, -0.00205652742, 0.00711623766, 0.000639904523, -0.00551863667, 0.0128960209, 0.00343522639, -0.00374437752, 0.00432811631, 0.00505010923, -0.00694726035, -0.01536923, -0.0210760459, 0.00266714906, -0.0161603503, 0.0161449872, 5.88359326e-05, -0.0102154305, 0.0108068502, 0.00565689057, 0.00358500145, 0.0139559675, -0.00940894894, -0.00732745882, -0.022612201, 0.00165424682, 0.00354083697, -0.0102231111, -0.00826451369, 0.0109758265, -0.0121049006, 0.0226429235, -0.00327008986, -0.00549559435, -0.0123814084, 0.0103920875, 0.0149851907, 0.00676676258, -0.0116056502, 0.0111755272, -0.00543798832, 0.0151618486, -0.0352086723, -0.00317984074, -0.0146933217, -0.00952416, -0.0176965054, 0.00501554599, 0.00370213343, 0.0155305257, 0.00449709361, 0.0140404562, -0.00932446, -0.0110910386, 0.00400936417, 0.00474287849, -0.00425898936, 0.00619070418, -0.0270516872, -0.0255923402, 0.0031241551, -0.00564152887, -0.00304158661, -0.0017560171, -0.0054264674, 0.0243941396, 0.0078151878, -0.013594971, 4.61146519e-05, -0.000699430529, 0.00996964518, -0.000915452314, 0.00854870211, -0.00170609204, -0.000330273295, -0.00777294394, -8.05581203e-06, -0.0106071495, 0.00734666083, 0.0217519533, 0.03502433, -0.0168055352, 0.00840276759, 0.012465897, -0.0187718123, -0.0190022364, 0.00389223243, -0.0154613992, 0.0105457036, -0.000901530904, -0.015154168, -0.00901722908, 0.00965473335, -0.00247704983, 0.000440924458, -0.00911707897, -0.00768845528, 0.00516532082, 0.0234878082, -0.023411, -0.00476208, -0.00468527246, -0.00876376405, -0.0217673145, -0.00483888807, -0.000680708617, -0.00104554545, 0.0066208276, -0.0231191311, 0.00673987949, -0.00414761808, 0.0148699796, 0.0209070686, -0.00466991076, 0.000485328928, -0.00625983113, -0.020430861, 0.0198010374, -0.0126271937, 0.0127731282, 0.026821265, 0.00354275736, -0.0171895735, -0.0140865408, -0.0221052691, 0.0104688955, -0.0148238949, 0.00726601249, 0.00248281029, 0.0234263632, 0.000447645143, 0.00600636564, -0.00190483208, 0.0267598182, -0.0142785599, 0.0214754455, 0.0035312362, -0.0129881902, -0.000722472847, 0.00127020804, -0.0107300421, -0.00898650661, 0.0324743129, 0.0058066654, 0.000953376119, -0.000164896628, -0.00476208, -0.0239025708, -0.0162217952, 0.00551863667, -0.00763469, 0.0188947059, -0.0173585508, 0.010791488, 0.024716733, -0.0113982698, 0.015991373, 0.000489409373, -0.00245016697, 0.00375973922, 0.0151388068, 0.0126041509, 0.0290640499, 0.0020181234, 0.000872247969, -0.0198471211, -0.0237796772, -0.0114366729, 0.00647105277, -0.00367141026, -0.00565689057, 0.00862551, 0.00865623262, -0.0201082677, 0.0087560825, 0.00944735296, -0.00811857823, 0.00224854681, -0.0277890414, 0.000232943494, 0.0147163644, -0.00145646685, 0.0189254284, 0.0112753771, -0.00366564956, -0.00488113239, -0.0107300421, -0.0103536844, 0.0173431896, -0.0127040008, -0.0157763101, 0.0102922376, -0.00341986492, -0.019340191, -0.0221359916, 0.0106225116, 0.0148469368, 0.000608701375, -0.014608833, 0.00857174397, -0.00503474753, 0.0082721943, -0.011843754, 0.00798800588, 0.0164061338, -0.00424746843, 0.00310687325, 0.00918620639, -0.00645569107, 0.0133722285, -0.0195398908, -0.00721224723, -0.018310966, 0.00825683307, 0.00213141483, -0.00753868, -0.0135796098, 0.0205844752, -0.00109067, -0.0035926823, -0.00099466031, -0.0213986374, -0.00843349, -0.00341218407, 0.0149083836, 0.00956256408, -0.0120588159, 0.0365297645, 0.00158511987, 0.0110679958, 0.0262836106, 0.00175409683, 0.00815698225, -0.00564920949, 0.000436844042, -0.0242712479, 0.00451629562, 0.00253657578, 0.0112216119, 0.00185874745, -0.0261914413, -0.0153231453, -0.00563768856, 0.0117746275, -0.013011232, 0.00485040899, -0.00212565437, 0.0101616643, -0.00205844757, -0.0169437882, -0.00557240192, -0.00174353586, -0.00766157266, -0.00192691432, 0.0109374225, 0.0290640499, 0.00923229102, -0.00641344674, -0.0106609147, -0.0125657469, 0.0114443544, 0.0104458537, 0.00438956264, -0.00536886137, -0.0198010374, 0.000433003675, 0.000202580428, -0.0127884895, 0.0136103323, -0.0110526346, 0.00049589, -0.0225661155, -0.0292330272, -0.00577594247, -0.025146855, 0.0146395564, 0.0390490592, 0.0214908067, 0.00789583661, 0.00748107443, 0.00947039481, -0.021582976, -0.0086792754, 0.00883289054, -0.011628693, -0.00878680591, 0.00746187242, -0.00860246737, -0.00113675464, 0.0042052241, -0.00733898, -0.0126886396, -0.00902491, -0.000745515164, 0.0178040359, 0.00315295788, 0.0110987192, 0.013011232, -0.0390797816, -0.0067898049, 0.00768461498, 0.0232881084, -0.00523060746, 0.0113214618, 1.53765504e-05, 0.008103217, 0.00480816467, 0.015192572, 0.0100771766, 0.0190175977, -0.000974018243, 0.00404008757, 0.0174046345, -0.0113521852, 0.0212296601, 0.000724873098, -0.0178654809, -0.0176811423, 0.0219516531, -0.0126271937, 0.0157916732, 0.00139502063, -0.00155727705, -0.00947807543, -0.00679364521, -0.00374053721, -0.00374629768, 0.00279196166, -0.0151848914, -0.0143323252, 0.0186181981, -0.011336823, 0.0222281609, -0.0103690457, 0.0203233287, -0.0320134684, -0.00646337168, -0.0167440884, -0.0123122819, -0.00393639691, -0.0128499353, 0.00259802188, -0.0113521852, 0.0113982698, -0.0119359232, 0.00137005816, 0.0177579504, 0.0244709477, -0.00160048134, 8.9229e-05, 0.0128192129, 0.0100157298, 0.00621758681, 0.017880844, -0.00482736668, -0.00463534752, 0.0174046345, 0.00836436357, -0.0284956731, -0.0140020521, 0.0188793447, -0.0171742123, 0.0244555864, 0.00486577069, 0.0031087934, 0.0211989377, -0.00481968606, 0.00423210673, 0.00730825681, 0.000725353137, 0.0116056502, -0.0119896894, -0.000753195956, 0.0217826758, 0.0144168139, -0.00455469918, 0.00159184053, 0.00798032433, 0.00817234442, -0.00395175861, 0.0228733458, 0.000917372527, -0.00293789618, -0.0212911069, -0.0108222114, -0.00426667044, -0.00784975197, -0.0281884428, 0.0106378729, -0.00531893643, -0.0100541338, 0.00926301442, -0.0246706475, -0.00674372027, -0.00573369814, -0.0158531182, 0.00959328748, 0.0218902081, -0.00454701856, 0.00406697, -0.00468143215, 0.028710736, 0.0357924104, 0.00357732084, 0.0127347242, -0.000914972275, 0.00460462412, -0.0067744432, 0.00734282052, 0.00186162768, 0.01199737, -0.0111064, 0.0261760801, 0.0333038382, -0.000271467376, -0.0191712137, 0.00944735296, -0.00465839, -0.00607549259, -0.0276968721, -0.00980834942, 0.0136026517, 0.0102691958, 0.00305694831, 0.0097084986, 0.00627519283, -0.0154767605, -0.0170974042, -0.0192480218, 0.00259610172, 0.00627903314, -0.00801104773, 0.00347363017, -0.0108913379, -0.000282748515, -0.00631743716, -0.0105533842, 0.0102307918, 0.00589499436, -0.0134951212, 0.0145013025, -0.00763853034, -0.00867159478, -0.0228119, 0.0058220271, -0.00764621096, 0.00440876465, 0.00177617907, -0.0177733116, 0.00242136419, 0.0144475373, -0.0118591161, -0.00700870669, 0.0131878899, -0.0138868401, 0.00519988453, 0.0152616994, -0.00952416, 0.0145473871, -0.0063673621, -0.0027689191, -0.00246552867, -0.00938590616, 0.0147086829, -0.00373093621, -0.00783055, 0.0136871403, -0.00865623262, -0.0128268935, 0.00937054493, -0.00996196456, 0.00835668296, 0.0172049347, 9.7629847e-05, -0.00988515653, -0.0211682152, -0.014570429, 0.00729289558, 0.0112062497, -0.00519988453, 0.0017656181, 0.00150639191, -0.00156591786, -0.017005235, -0.00462382613, -0.00547639234, -0.00884057116, -0.0213986374, 0.0129651474, -0.00374629768, -0.0163139645, -0.00841044821, 0.000472847692, 0.00187506911, -0.00248857099, 0.0239947401, 0.000726793311, -0.00837204419, 0.0112369731, -0.00711623766, -0.00329121179, 0.00963937212, 0.0078459112, -0.00340066291, -0.00877144467, 0.00904795248, -0.00907099433, 0.0173431896, -0.0138330748, 0.000743114913, -0.00344098709, -0.0102768764, 0.00473903771, 0.00356195914, 0.0053995843, 0.00159472076, 0.00927069504, 0.0114213116, 0.00322592538, 0.0231805779, 0.0162371565, 0.0198624823, 0.00379046216, -0.0245323945, 0.0382809788, 0.00258842111, 0.00331425411, -0.00653249864, -0.0201543532, -0.0114750769, 0.0187410899, -0.00910171773, 0.00662850821, -0.0131187625, -0.00985443406, 0.0056991349, -0.0139790094, 0.0193862747, 0.00198548031, 0.00677828351, -0.00101482228, 0.00167152856, -0.00961632933, -0.000627903326, 0.0134720784, 0.00628287345, 0.0155151645, -0.000758476497, 0.00763469, -0.017158851, 0.001348936, -0.0152386567, 0.0176811423, 0.00854870211, -0.019478444, 0.0196166988, -0.0126195122, 0.0173124652, 0.0107300421, -0.0128192129, 0.0206152, -0.0111832079, 0.0130649973, 0.00644801045, -0.00381350447, -0.0146549176, -0.00132781395, 0.00335457828, 0.002171739, -0.0018558671, -0.00429739337, 0.0232266616, 0.0122892391, -0.0149391061, -0.0345327631, 0.0195706133, -0.00585275, -0.0033872216, 0.00699718576, -0.022965515, -0.0213525537, -0.031107137, -0.000727273349, 0.00339106191, 0.0142939212, -0.0228579845, -0.00853334088, -0.0207995381, 0.0126963202, 0.00149199041, 0.0213832762, 0.00350435334, -0.0159760118, -0.00911707897, 0.018310966, -0.023626063, -0.000808401499, 0.0316140689, 0.00318560121, 0.00121836283, 0.00646337168, -0.00897114445, -0.0203079674, -0.0302161667, 0.00511923619, -0.0138023514, -0.00387687096, -0.0214293618, 0.00864087138, -0.0016504064, 0.0141095826, -9.5829666e-05, -0.00615998125, 0.0335496217, -0.0027766, 0.0021678987, 0.00113579456, -0.00194515614, 0.00413993746, -0.0128115322, 0.00246936898, -0.00336033874, 0.00705479132, -0.0170513187, 0.00974690262, 0.0215676147, 0.0021102929, -0.00119436043, -0.00597564271, -0.00117803877, 0.00360804377, -0.00708935503, -0.00296861934, -0.000972578069, 0.0104612149, 0.00266522868, -0.00163504493, -0.00376357953, -0.00649409508, 0.0228733458, 0.00917084515, -0.0179883745, 0.00727753388, -0.0206612833, -0.00317408, 0.00179154065, 0.0296170674, 0.0011770787, -0.0109451041, -0.00126444746, 0.0137101822, 0.0191404894, 0.00489649363, -0.00962401088, -0.00478512235, -0.00762316864, 0.00324128685, -0.00761164771, -0.0137946708, -0.011413631, -0.0152232954, -0.0281730816, -0.0131648472, 0.00553015759, -0.0056837732, 0.0211067684, -0.0145550678, -0.00219094101, -0.0173124652, -0.0201082677, 0.00244248635, 0.07662341, 0.0150696794, 0.00696646236, -0.0233802777, 0.0105610648, -0.00418218179, -0.0288643502, 0.0525057763, -0.00160912226, 0.00456238026, -0.00765005127, 0.0103152804, -0.0234570857, 0.011336823, -0.0149314255, -0.0160835423, -0.0109527847, -0.00836436357, -0.0225814767, -0.000299310195, -0.00455853948, 0.00956256408, -0.000463486736, -0.00146990828, -0.0120895393, -0.0252697486, -0.0218902081, -0.0123583665, 0.0091631636, 0.0115058, 0.00452013593, 0.0198317599, 0.00986211468, -0.0043089143, -0.00972386077, 0.0167440884, 0.0211374909, 0.0156380571, 0.00468143215, 0.00335457828, 0.0123506859, -0.0101539837, 0.0138023514, -0.00440876465, 0.00902491, -0.0139098829, 0.0160220955, -0.0159452874, -0.00151695299, -4.18917261e-06, 0.00343330624, 0.00892506, -0.0304005053, -0.0196013357, 0.00279004127, -0.00223318511, -0.00569529412, 0.0136871403, 0.00570297521, 0.021874845, -0.0128806587, 0.00157167844, 0.0065017757, 0.0195706133, -0.0127270436, -0.0135796098, -0.00178482, -0.00816466287, -0.0111448038, -0.0161142647, 0.00134125527, -0.0127424048, -0.0136103323, -0.0163600501, 0.00331809465, -0.000462286611, -0.0288643502, 0.0155842919, 0.00482736668, -0.0196781438, -0.0309996065, 0.00154191547, 0.0013441355, 0.00610621553, 0.0176043361, -0.009193887, -0.0186335593, -0.016206434, -0.017158851, 0.0106532341, 0.00610621553, 0.023626063, -0.0167440884, 0.0199853759, 0.0166058354, -0.000228143, 0.00481200544, 0.00464686844, 0.0236567855, 0.0028937317, 0.0215368923, 0.00209301105, -0.00846421346, -0.0140020521, -0.00248281029, 0.0116978195, -0.0160528179, 0.0256384257, -0.00625983113, 0.0107838074, 0.0127884895, 1.11911286e-05, 0.0215522535, 0.0254848097, 0.0135028018, -0.00242904504, 0.0120127313, -0.0107684461, 0.0176504198, 0.00702790869, -0.0172663815, 0.0150389569, -0.0107684461, -0.0066361893, -0.00330081279, 0.00772301899, 0.00288029038, -0.0117746275, 0.00448557222, 0.00990819931, 0.0130035514, -0.00218518032, 0.00853334088, -0.0128883393, -0.0179576501, 0.0350857787, -0.0163139645, 0.0152156139, 0.00544566894, 0.00858710613, 0.0215676147, 0.00194515614, 0.0137332249, 0.00644032937, 0.0116517348, -0.0125503857, -2.00120176e-05, -0.00845653284, 0.0229501538, 0.0100464532, -0.00695878174, 0.0260839108, -0.00686661247, 0.000866967428, 0.010753084, 0.00276315864, 0.00204500626, -0.00507699186, 0.0279426575, -0.0100080492, 0.0220591836, 0.0220438223, -0.0073159379, 0.00920156762, -0.00125868688, -0.00423594704, -0.00523444777, -0.0175428893, 0.0168208964, 0.00476976112, -0.0107069993, -0.0017320147, -0.0144014526, 0.00826451369, -0.020062184, 0.0154844411, 0.0194630828, 0.0129421055, 0.00643648906, -0.0158223957, 0.00378278154, -0.000417642121, -0.00764237065, 0.0354237333, -0.0152079333, 0.011083358, -0.00943199079, -0.00180114165, 0.0547792837, -0.0034486677, -0.00251929415, -0.0120818587, 0.00168304972, 0.0085102981, -0.00789583661, 0.0133184632, 0.0196781438, 0.0427665524, 0.00705479132, 0.000106570747, 0.0198317599, 0.00755020138, 0.00720456662, 0.00188851042, 0.0118667968, 0.0111524845, -0.012934424, 0.00632895809, -0.00438188203, -0.00933214091, 0.0177886747]
04 Sep, 2024
Is √4 a rational or irrational number? 04 Sep, 2024 Real numbers that cannot be expressed as simple fractions are known as irrational numbers. It can’t be represented as a ratio like p/q, where p and q are both integers, q≠0. It’s an inconsistency of rational numbers. Irrational numbers are generally written as R\Q, where the backward slash sign stands for ‘set minus.’ It may also be written as R−Q, which represents the difference between a collection of real and rational numbers. The computations based on these figures are a little more difficult. Irrational numbers include √5, √11, √21, and so on. If such numbers are utilized in arithmetic operations, the values beneath the root must first be evaluated. What are Rational Numbers? Rational numbers are of the form p/q, where p and q are integers and q ≠ 0. Because of the underlying structure of numbers, p/q form, most individuals find it difficult to distinguish between fractions and rational numbers. When a rational number is divided, the output is in decimal form, which can be either ending or repeating. 3, 4, 5, and so on are some examples of rational numbers as they can be expressed in fraction form as 3/1, 4/1, and 5/1. What are Irrational Numbers? Irrational numbers are any numbers that are not rational numbers. Irrational numbers may be represented in decimals but not fractions, which implies they can’t be stated as a ratio of two integers. After the decimal point, irrational numbers have an infinite amount of non-repeating digits. A real number that cannot be represented as a ratio of integers is called an irrational number. For example, √2 is an irrational number. An irrational number’s decimal expansion is neither ending nor repeating. The definition of irrational is a number that does not have a ratio or for which no ratio can be stated, i.e., a number that cannot be represented in any other way except by using roots. To put it another way, irrational numbers cannot be expressed as a ratio of two integers. Examples of Irrational Numbers √2, √3, √5, and so on are some examples of irrational numbers as they cannot be expressed in the form of p ⁄ q. Euler’s Number, Golden Ratio, π, and so on are also some examples of irrational numbers. 1/0, 2/0, 3/0, and so on are irrational because they give us unlimited values. Is √4 a rational or irrational number? Solution: Irrational numbers are real numbers that cannot be written in the form p/q, where p and q are integers and q≠0. For instance, √2 and √3 and so on are irrational. A rational number is any number that can be written in the form of p/q, where p and q are both integers and q≠0. Here, the given number √4 is equal to 2; the number 2 is a whole number and whole numbers are always rational. Also, it can be expressed in fraction form as 2 ⁄ 1 which means it is a rational number. Hence, √4 is not an irrational number. Similar Questions Question 1: Is √5 a rational number or an irrational number? Answer: A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, √5 cannot be expressed in the form of p/q. Alternatively, 5 is a prime number. This means that the number 5 has no pair and is not divisible by 2. Hence, √5 is an irrational number. Question 2: Determine whether 4.152152…. is a rational number. Answer: A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, 4.152152…. has recurring digits. Hence, 4.152152…. is a rational number. Question 3: Is √11 a rational number or an irrational number? Answer: A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, √11 cannot be expressed in the form of p/q. Alternatively, 11 is a prime number. This means that the number 11 has no pair and is not divisible by 2. Hence, √11 is a irrational number. Question 4: Determine whether 7.23 is a rational number. Answer: A rational number is a sort of real number that has the form p/q where q≠0. When a rational number is split, the result is a decimal number, which can be either a terminating or a recurring decimal. Here, the given number, 7.23…. has terminating digits. Hence, 7.23 is a rational number. Related Articles: Irrational Numbers: Definition, Examples, Symbol, Properties What are Irrational Numbers? Is 12/4 a rational number? Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key/If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero/Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3/Prove that √2 is an irrational number./Is the square root of 12 an irrational number?/Is √4 a rational or irrational number?
https://www.geeksforgeeks.org/is-%e2%88%9a4-a-rational-or-irrational-number?ref=asr10
Mathematics
Is √4 a rational or irrational number?
Is √4 a rational or irrational number?, Prove that √2 is an irrational number., Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3, Mathematics, Maths, CBSE Class 12 Maths Term 1 2021 Answer Key, Is the square root of 12 an irrational number?, If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero
GeeksforGeeks
[-0.0291237757, -0.00704765879, -0.0126956087, 0.0436856635, -0.00483759167, -0.00700468523, 0.0159124844, 0.0171771348, 0.0316285193, 0.0192398634, -0.0293447822, -0.0266435891, 0.016465, -0.0309163854, -0.035385631, 0.0272083841, -0.0200624987, 0.0560865961, -0.0210324731, 0.00900602434, -0.022874197, 0.0414755978, -0.0269873776, 0.0139357019, -0.0229478646, -0.00990232918, 0.0085148979, -0.00744669884, -0.0251947679, 0.0048867045, 0.0301305838, -0.0130639533, 0.0270856023, -0.0186136775, -0.00893849414, -0.0243352968, 0.0112652043, 0.0287063178, 0.015151239, 0.0365643352, -0.0142426556, 0.0193135329, 0.00884640776, 0.0152617423, 0.001491028, -0.0105837667, -0.0261033494, -0.028313417, 0.0162562728, -0.0483268052, -0.00497572077, 0.0157651473, 0.038528841, 0.0392164178, 0.0165877827, 0.00515068462, 0.0109582506, -0.0152862985, -0.00490205223, 0.00121093274, -0.0112836212, -0.00319538894, -0.0209833607, -0.00273188879, -0.0190065783, 0.0180243272, -0.021953335, -0.0136041921, -0.0188101288, 0.000234052262, -0.00634780433, 0.0480075739, 0.0226409119, -0.0310391672, -0.00462579355, -0.0194731485, 0.00363740232, -0.0154581927, 0.00273802783, 0.061734546, -0.0118054431, 0.0333720148, -0.00733619556, 0.0138988672, -0.0143408813, 0.0251947679, 0.00659950636, -0.047712896, 0.0473199971, -0.00127922988, -0.00914108381, -0.00680209603, -0.00713974517, -0.0239301175, 0.0356803089, 0.000373332558, 0.00197524764, 0.0166860074, -0.0112222303, 0.0301796962, 0.0190802477, 0.00993916392, -0.0211429764, -0.0335193537, 0.0147215035, -0.0486460365, 0.0196818765, 0.0232179854, 0.0426543, 0.0155441398, 0.0131376218, 0.00120863051, -0.0082140835, 0.00647058571, -0.061734546, -0.0393391959, 0.0336912461, -0.0405670144, -0.0031769718, 0.0337158032, -0.0498984084, 0.0122044822, 0.0157651473, 0.015568696, -0.0139234243, 0.0310146101, 0.00653197663, -0.0214253739, -0.0184295047, -0.0146232788, 0.0501930825, 0.0110012237, -0.0262261312, -0.0148442853, 0.0160721, 0.016992962, -0.0284116436, 0.0306953788, 0.0211675335, 0.0247404762, -0.0493827239, -0.0542694293, 0.0166982859, 0.00234052259, -0.00835528225, 0.00509850262, -0.0160475448, 0.010442568, -0.0123272641, 0.0274048336, -0.0106083229, -0.0257104486, 0.016907014, 0.0136410268, -0.0170175172, -0.00663020182, -0.0222848449, 0.00489591295, 0.00611451967, -0.0517646857, 0.000489207625, -0.042605184, 0.00855173264, 0.00159615965, -0.0180979948, 0.0209096912, -0.00392900826, -0.0120694228, -0.0280187409, 0.0260296818, -0.00371414074, 0.0228619184, -0.00138896587, 0.0327581093, 0.0149179539, 0.015568696, -0.0142426556, 0.0206027385, -0.0134077417, -0.0250474289, -0.0188715197, -0.0332492329, 0.0268645957, 0.0357539766, -0.00744056, 0.007827322, 0.0418684967, 0.0073914472, -0.0121430922, -0.0131499, -0.0201852806, 0.0044201347, 0.0267418139, 0.0469270945, 0.022874197, -0.0337894745, 0.00798079837, 0.0204308443, 0.0161334909, 0.0121246744, -0.00517217116, -0.0226654671, -0.0136778606, -0.0230460912, 0.0322424248, -0.0464850813, 0.000836449093, 0.0272820536, 0.0252193231, 0.0437102206, 0.0231565945, -0.0154581927, -0.0112836212, 0.00720113609, -0.0174718089, 0.0103443423, -0.0608505197, -0.0200747773, 0.0231934283, -0.0417211577, -0.0293693393, -0.0156300869, 0.035950426, -0.00828161277, -0.016992962, 0.00152479298, 0.0128183905, 0.0238441695, -0.0444960222, -0.017410418, 0.00558655895, 0.0323160961, -0.0257104486, 0.0219165012, -0.0287554301, 0.0333720148, 0.00254464685, 0.0249983165, 0.00817110948, 0.0428753048, -0.0032260844, 0.0304743722, 0.012757, 0.0204676781, -0.0150898481, -0.0217323285, 0.0476637855, 0.0101110581, 0.022726858, -0.0113143167, -0.04842503, -0.0514208972, 0.00387375685, -0.00182177068, -0.0224567391, -0.0354101881, 0.0128306681, -0.00976727, 0.0371536873, 0.0372764692, 0.0526978262, 0.00618511904, -0.0258332305, -0.0114923501, -0.00169285014, -0.000983786886, -0.0239055604, -0.0491617173, -0.00437409151, 0.0262506884, 0.0496774, -0.0146969473, -0.018061161, 0.0140953176, -0.0121737877, -0.0048191743, 0.016465, 0.00590886036, 0.00316469348, 0.0105960444, -0.0284116436, -0.0321933143, -0.00400574692, -0.00707835425, 0.0107802171, -0.0120632835, -0.00151174737, 0.0230338126, -0.063748166, 0.0131376218, 0.00634166505, -0.0186136775, -0.0116274096, 0.0386270657, 0.00825091824, -0.010190866, -0.0295166764, -0.0170175172, -0.0257350057, 0.0558901466, -0.00889552105, -0.0316285193, 0.000610070652, -0.00411011139, -0.0145741655, -0.0109889461, -0.00551289, -0.024986038, 0.00612372812, -0.0295166764, 0.0434401, -0.0457975045, -0.0162685513, -0.00709677162, -0.0141075961, -0.0135673573, 0.0378658175, -0.0239792299, -0.0113020381, 0.0174840875, -0.0132112913, 0.0258086752, 0.0258577876, 0.0353119634, 0.0301305838, -0.034550719, -0.0314320661, 0.0121062575, 0.000232709339, -0.0248755347, 0.0100680841, -0.0140953176, 0.00578300934, -0.0127815558, 0.0251333769, -0.0424578488, 0.0260296818, 0.0166982859, -0.0190311354, -0.0157037564, 0.00603471138, 0.0167965107, -0.0112406481, 0.00883413, 0.0310882796, -0.0104732634, -0.00233591837, -0.0252193231, 0.018061161, 0.0253175478, 0.000805753691, 0.0290992185, -0.0214622095, 0.0309409425, 0.0204185657, -0.0113818469, 0.00768612279, -0.0447906964, 0.0139848143, -0.0148320068, 0.00587509573, -0.00438023079, -0.0458220616, -0.0331018977, -0.0281415228, -0.0700836927, -0.0152740208, 0.0569706224, 0.035950426, -0.00330282282, -0.0264962502, -0.00960765313, 0.0794642, -0.0118852509, -0.00834914297, -0.00257380749, -0.0413773693, -0.0218059979, -0.0122290393, 0.00235587033, -0.0239301175, 0.0395356491, -0.00325677963, 0.0410335809, 0.00312939379, 0.0131499, 0.0081956666, -0.012744721, 0.035950426, 0.0236722771, -0.0114002638, 0.0912512243, -0.0327826664, 0.00732391747, 0.0356066413, -0.00887096487, -0.000677984208, -0.0436365493, 0.00040249317, -0.0476637855, 0.0246913619, 0.0184417833, -0.0358767584, 0.0147460597, 0.00550675113, 0.00452449871, -0.0495791771, -0.0408616886, 0.0133586293, -0.00214100257, 0.00418071076, 0.0246054158, 0.00461965473, -0.0393883102, 0.00976113, 0.0515191257, -0.00938664656, 0.00122934987, -0.0100005548, -0.00900602434, -0.00173582369, 0.0215481557, -0.0261033494, -0.00113649643, 0.00563260214, 0.0237827804, 0.0160107091, 0.000434339599, 0.0168333463, 0.00710904971, -0.0549570061, 0.0413037, 0.0336912461, 0.0531398393, -0.00351769035, -0.0290009938, -0.00429121405, 0.00858856738, 0.0213394277, -0.010233839, 0.0189329088, 0.0114248199, -0.00543308211, 0.0152003514, 0.00196450413, 0.0450117029, -0.0462886319, -0.0333229043, -0.0136901392, 0.00334886578, 0.0179997701, -0.012744721, -0.0442504585, 0.00154397753, 0.0456992798, -0.00659950636, 0.033838585, -0.0346489437, 0.0264225826, 0.01029523, -0.00667317538, 0.00869907066, -0.0217691623, -0.0114984885, 0.0602120534, -0.0211184211, -0.00869293138, -0.032438878, -0.0198783278, -0.0135919135, -0.0279205162, -0.00725024845, 0.00334886578, 0.0310882796, 0.0160721, 0.0118054431, -0.0162317157, -0.0452818237, 0.00965062715, -0.0235126596, 0.00992074609, 0.00413773721, 0.0146478349, -0.00170819787, 0.0180120487, -0.0237827804, 0.033838585, -0.014291768, 0.0308918301, 0.0128552243, -0.00656267209, -0.0264471378, 0.0383569449, 0.00137285085, 0.0110748922, 0.00440171733, -0.0064828638, -0.0389708541, -0.00580756553, 0.0125482706, 0.0182084981, -0.0542694293, -0.0829511955, 0.0506350957, -0.02251813, -0.0236845538, 0.0357294194, 0.00587202609, 0.0080606062, -0.0135059664, 0.0257104486, -0.0190802477, -0.0282888617, 0.0350172892, -0.0201484468, -0.0143899936, -0.00334579637, 0.00601629447, 0.00445696898, 0.00958309695, 0.026054237, 0.00986549444, -0.0140953176, -0.00931911729, -0.012345681, 0.0202712286, 0.00986549444, -0.0100865019, -0.0101171965, 0.0104794027, 0.0289518815, 0.0166246165, 0.0733251199, -0.00400267728, 0.0202098377, 0.037964046, 0.00186014, 0.0409353562, 0.0180488825, 0.0240406208, -0.00509850262, -0.00555586349, 0.00202742987, 0.011111727, 0.00494195614, -0.00616056239, -0.00314627634, -0.0282397494, 0.00238656579, 0.00738530792, 0.0421631709, -0.0407389067, 0.0112774819, 0.0220270045, 0.00493581686, 0.0156178083, 0.00891393796, 0.0115291839, -0.016784234, -0.0194117576, -5.83212204e-05, 0.0216218252, -0.0196818765, 0.0216954947, -0.00714588398, 0.0106206015, 0.0149056762, 0.0160598215, -0.0226531904, -0.00193994795, -0.0143654374, -0.0132358475, 0.0333474614, 0.00350541226, -0.00258915522, 0.0122597339, 0.00104287546, -0.000963834871, 0.035950426, 0.024986038, -0.0116888005, -0.00112575304, -0.0138865896, 0.00947259367, -0.000985321705, 0.0126219401, 0.004604307, -0.0301305838, -0.00836142153, -0.0177296512, -0.00722569227, 0.0484004728, 0.0124377673, -0.00556507241, 0.0078457389, 0.0365888923, -0.00249553425, 0.00273035397, -0.00416536303, -0.00984093826, -0.0413037, 0.0312356167, 0.00438023079, -0.00339183933, -0.0030050776, -0.0239178389, 0.00788871199, 0.0415983759, 0.00907355361, 0.0319231935, -0.028878212, -0.00158695108, 0.00933139492, 0.00293754786, -0.0150407357, 0.00748353358, 0.00656267209, 0.0017741929, 0.00204431219, -0.00866223592, 0.000371222239, 0.00216555898, -0.021241203, 0.00358215068, -0.0104548456, 0.0198783278, -0.00929456111, 0.00707835425, -0.00863154, -0.0516664609, -0.0359258726, -0.0248878133, 0.0257350057, 0.0115046278, 0.0117379129, 0.013874311, -0.00561111514, -0.00383999199, -0.0285835359, -0.0149179539, -0.00845350698, 0.0174472537, 0.0197432674, 0.067971848, 0.00191692635, 0.0326107703, 0.0287308749, 0.0454046056, -0.0174472537, 0.00548833376, 0.017287638, -0.00460737618, -0.00603164174, 0.0221988987, -0.00525504909, 0.0164158884, 0.0168333463, -0.00807288475, -0.0129657276, -0.0187732931, 0.00844736863, 0.0253666602, 0.013100788, 0.00736689102, -0.00764928851, -0.00755106332, 0.0373501368, 0.0254648868, 0.0094050644, 0.0109398328, -0.0157405902, -0.0421631709, 0.00883413, -0.00895691197, -0.00562032405, 0.00223155413, -0.0200624987, -0.0195099823, 0.0101970052, -0.0228619184, -0.0268154833, -0.00320459763, 0.0209956393, -0.0132726822, 0.0122904293, 0.010129475, -0.0119527802, 0.0109950844, -0.00278714043, -0.0108477473, 0.0302288085, -0.00548219448, 0.0103627602, -9.29974049e-05, -0.0505859852, 0.0115476018, -0.011971198, -0.0115844356, 0.0130639533, -0.0314320661, -0.0481794663, -0.00482838321, 0.0214130972, -0.0306217093, -0.01720169, 0.0143899936, 0.0125666885, -0.00960765313, -0.0169561282, -0.00791940745, 0.0117379129, 0.00228987518, -0.0062802746, 0.0134445755, 0.0173735842, -0.00101141271, -0.0345261618, 0.00540238665, 0.00647672499, -0.0184540618, 0.0258332305, -0.00421140576, -0.0179015454, 0.0123947943, 0.0161948819, -0.0163790546, 0.0376939252, -0.0336421356, 0.00222694967, -0.0067345663, -0.0303515904, 0.0652215406, -0.00462579355, -0.0118484162, -0.0170789082, 0.0262506884, 0.012284291, -0.0299586896, -0.00448152516, 0.0151757952, -0.0326598845, 0.00433725724, -0.00837369915, 0.0200870559, 0.00787643436, -0.0166123398, -0.00436488306, -0.0126464963, 0.00722569227, -0.0186996255, 0.0174349751, 0.00217476767, -0.000399423618, -0.0276503973, -0.00952170696, -0.0153354108, 0.00417457148, -0.0233039316, 0.00195529568, 0.0208605789, 0.0259805694, 0.0386516228, -0.0207009632, 0.0048529394, 0.00371414074, -0.0644357428, -0.0586404502, 0.00809130166, 0.0224567391, -0.0169806834, 0.0531398393, 0.0251947679, 0.0268400386, -0.0276995096, 0.00980410445, -0.00446617743, -0.0118729724, -0.00693101669, 0.0118913902, 0.0185768437, -0.0119405026, 0.0192030296, 0.0223216787, -0.00522742281, -0.0060961023, -0.0105776275, -0.00126695179, -0.0169192925, 0.00295136077, 0.00250013871, 0.0295412317, -0.00526425755, -0.00795624219, 0.0342069305, -0.00482224394, -0.0126464963, -0.0405670144, -0.0371291302, -0.00360363745, -0.0116703827, 0.0162931066, -0.00117409823, -0.0136164697, 0.00787029509, -0.00953398459, -0.0123702381, 0.0180734396, 0.0307690483, 0.00667931465, -0.00381543557, -0.0269137081, 0.00922089163, -0.0189329088, 0.0206027385, 0.000825705705, -0.0067529832, 0.00276411884, -0.000994530274, 0.0233162101, 0.0331264511, -0.0176191479, -0.0182084981, -0.00301735569, 0.0041500153, -0.00551289, 0.0487442613, 0.028608093, 0.0205781814, 0.0281660799, 0.00538703892, 0.00521514472, 0.0111731179, 0.0136410268, 0.00674684439, 0.00296363886, 0.00995758083, 0.0178401545, 0.0261770189, 0.0506350957, 0.0155564183, -0.00481610512, -0.0122720124, 0.0239669513, -0.0228496399, -0.00909811072, -0.00338263065, 0.0165877827, 0.0168824587, -0.00247097807, -0.0366380028, -0.0152740208, -0.0118975285, 0.037816707, 0.0312601738, -0.0160598215, -0.0168087892, -0.0018233055, -0.0181716643, 0.0311373919, -0.0158756506, -0.00117793516, -0.0258086752, 0.0221743416, 0.00856401, 0.040223226, -0.0257350057, -0.00390138268, -0.0177419297, -0.0201238897, -0.0169806834, -0.00425437931, -0.0371291302, 0.00786415581, -0.0101847267, -0.0323652066, 0.0067345663, -0.0095769586, 0.0325862132, 0.0314075127, -0.000960765348, 0.0127324434, 0.0164772794, -0.0132358475, 0.00570013188, -0.00989005063, 0.0237582233, -0.00540545629, -0.0355575271, -0.0112713436, -0.00133217941, 0.00387375685, 0.0511753373, -0.0265699197, 0.00926386565, 0.0103443423, -0.00249706907, 0.00170512835, 0.03293, -0.0028700179, -0.0219410565, 0.0119466418, 0.0198169369, -0.0157651473, -0.0395356491, 0.0339122564, -0.0340350345, 0.00639691716, -0.00686962577, -0.0294184517, 0.0193503667, -0.0244089644, 0.00760631496, -0.0343788229, -0.0234512687, -0.00622809259, -0.0498738512, -0.009270004, -0.00701082451, 0.0498984084, -0.00715202326, -0.00622502295, -0.0209465269, 0.00989005063, 0.0122290393, 0.00186167471, -0.0103320647, -0.0479584597, 0.0176437031, 0.0114555154, -0.034820836, 0.0232425407, 0.0193135329, 0.0284361988, 0.014795173, -0.0285589807, 0.0355820842, 0.0114616547, 0.000613907585, 0.00248018652, -0.0138129201, -0.011719496, 0.018417228, 0.01720169, -0.021658659, 0.0078457389, 0.0237950571, 0.000241917951, 0.0132972384, -0.00722569227, 0.0136287482, -0.0101417536, -0.0316776298, 0.0017619147, -0.0149547886, 0.00882799085, -0.0195959304, -0.0120448666, 0.00571854925, -0.0274539459, -0.00651969854, -0.0115353232, -0.0207255203, -0.00558041967, -0.00335193542, 0.00690032123, -0.0231934283, 0.0324879885, -0.035950426, 0.0146355564, -0.0148565629, -0.021744607, -0.0290501062, 0.0148565629, 0.0214990433, -0.023856448, 0.0174472537, 0.0229724217, -0.0316776298, -0.00480075739, 0.0124500459, -0.0275030602, -0.019964274, 0.0431945361, 0.00868679211, 0.0194731485, -0.0233898796, 0.0229110308, 0.0010965924, -0.0447415859, 0.0343788229, -0.0236108862, 0.0178769883, -0.0356066413, -0.000677216798, -0.000514531275, 0.0139725367, 0.0252438802, 0.0319477506, -0.00776593108, -0.0168824587, -0.0426297411, 0.00307260733, 0.0200133864, -0.0088832425, -0.000641917111, -0.00659336755, -0.00834300369, 0.024003787, -0.0236845538, 0.0371045731, -0.0457238369, -0.0151021266, 0.00756948, -0.023291653, 0.0271592718, 0.0457238369, -0.0245563034, -0.00901216362, 0.0366871171, 0.0351646245, -0.0294921193, 0.0246299729, -0.00202742987, -0.00931297801, 0.00180181873, -0.0113511514, -0.032708995, -0.00954012387, 0.0125482706, -0.00123855856, 0.0392900854, -0.0204922352, 0.00671614893, 0.00275337556, -0.0191661939, -0.0106144622, -0.00796238147, -0.0441522337, 0.0172630809, 0.0364661105, 0.0152617423, -0.0156055307, 0.0106144622, 0.0149425101, -0.00621274486, -0.00445083, 0.00495116459, -0.0129043376, 0.00589965191, -0.02251813, 0.0166000612, 0.00909811072, -0.00548833376, -0.0170666315, 0.00982866064, 0.0283625294, 0.0159984306, -0.011719496, 0.0302533656, -0.00771067897, -0.016784234, -0.00760631496, 0.0119405026, 0.0165018365, -0.00521207554, 0.0054576383, 0.00869907066, -0.0211429764, -0.0027717927, 0.0174718089, 0.0208237451, 0.0295412317, 0.00731163938, -0.0185154527, -0.00672842702, -0.0111731179, -0.0579037629, 0.00243260874, 0.029737683, -0.0083000306, 0.00404565083, -0.0179506578, 0.0118484162, 0.0410335809, -0.0285835359, 0.0134691326, 0.0273557212, -0.000779662631, 0.00393821718, 0.00896919, -0.0172139686, -0.0120203104, 0.0148197291, 0.00622502295, 0.0063785, -0.00326905795, 0.0190311354, 0.0693961158, -0.033838585, -0.0282151923, -0.00055328419, 0.00117486564, -0.00936209, -0.0149547886, 0.0372519121, 0.0159615967, -0.00243260874, -0.00614521466, -0.00497572077, 0.0040978333, 0.0237705018, 0.0124377673, 0.0152371861, -0.00961379241, 0.0100128325, -0.0179506578, -0.0188224055, 0.0131621789, -0.0171157438, -0.00370800169, 0.0346489437, 0.0239792299, 0.00871748757, 0.0188469626, 0.00572161842, -0.0178892668, -0.011406403, 0.0309163854, -0.0122597339, 0.0202221163, 0.023856448, 0.0289027691, 0.00282704434, 0.0470498763, 0.00776593108, 0.0192889757, 0.038946297, -0.0135305226, 0.0371536873, 0.0131867351, -0.0082325, 0.0180488825, 0.018122552, -0.0141075961, 0.00304805115, 0.00679595675, -0.00183404889, 0.0149056762, 0.0279450733, 0.00828161277, -0.0286572054, -0.0257104486, 0.0165018365, -0.0105162365, -0.00113803113, 0.0261033494, 0.0419667214, -0.0105837667, -0.0273802783, -0.0233039316, -0.00556814158, 0.0143040465, 0.00863768, -0.00215788512, 0.00430349214, -0.027183827, -4.79855116e-05, 0.00863768, 0.00599480746, 0.0062342314, 0.00155472092, 0.0043526045, 0.0119343633, -0.0115537411, 0.0091226669, 0.0078457389, 0.0100373887, -0.0249246471, 0.00680823484, -0.00907969289, 0.00535020465, 0.00376325333, -0.0196450427, 0.018625956, -0.00560497632, -0.00835528225, -0.0160352662, -0.000308872259, -0.0112959, -0.0328317769, 0.00788257364, -0.0222848449, 0.00962607097, -0.00288843527, 0.00033649808, 0.0107924948, -0.0161334909, 0.00892621651, 0.00591499964, 0.0136287482, 0.017852433, 0.00501255551, -0.00469332328, 0.00595797319, 0.0225058515, 0.012075562, 0.0159124844, 0.00441706507, 0.0114309592, -0.000970741385, 0.0218305532, 0.0283625294, 0.0141567085, 0.0123518202, -0.00229294482, -0.00801763311, 0.0166982859, 0.00413466757, 0.0155318622, 0.00778434798, -0.0139234243, 0.0229110308, -0.00738530792, 0.0224935729, -0.00775365252, -0.0209342483, 0.0100865019, -0.0242370702, 0.0313338414, 0.00575231388, -0.00335807446, -0.000778127869, -0.0211307, -0.0060961023, 0.0129166152, 0.0178033207, -0.0110257799, 1.42385795e-06, 0.00697399024, 0.019190751, -0.0228496399, -0.0093559511, -0.00335807446, 0.00936823, -0.00798693765, 0.023561772, 0.00915336236, -0.0112406481, -0.00756948, 0.0142180994, 0.00181102741, 0.00699240714, -0.0339122564, -0.000650358328, 0.0104548456, -0.00393821718, -0.0135059664, 0.0213762615, 0.0161089357, 0.0119466418, 0.0349190645, -0.0225549638, -0.00568785379, -0.000999134616, 0.0207991879, -0.0129780062, 0.00613293657, 0.00909197144, -0.00750808977, 0.000493044499, 0.0127815558, 0.02477731, 0.0223707929, 0.0221375078, -0.0203694534, -0.00229447964, 0.00424210122, -0.0157037564, 0.0356803089, 0.00181716646, 0.0272329394, -0.0126464963, -0.0247650314, -0.0105346544, -0.00694329478, 0.036097765, 0.00411625, 0.000554818951, 0.021867387, 0.00280095334, -0.0043526045, -0.0104794027, 0.00338570029, -0.0132726822, -0.00284392689, -0.0271101594, -0.00497572077, -0.0256613363, -0.0185522866, -0.00720113609, -0.00383692235, -0.014021649, 0.0257841181, 0.0102092829, -0.00879729539, -0.0172999147, 0.00760017568, 0.000713283895, 0.00392593909, -0.0073055, -0.00269351946, -0.0352874063, -0.0401004441, 0.00936209, -0.0156423654, -0.0097918259, -0.0266927015, 0.000194052351, 0.00300968182, -0.00316162407, 0.014586444, -0.00631710887, -0.0082140835, 0.0138129201, 0.0183067247, -0.0530907288, 0.0145987226, -0.00111040531, 0.00310176797, 0.030302478, 0.00107357092, -0.0138006425, -0.0152862985, -0.00798693765, -0.0187364593, -0.0278468486, 0.0267172586, 0.0403705612, 0.0445942469, 0.00279174466, -0.014439106, -0.00312939379, 1.13429014e-05, 0.00613600621, 0.00246023457, -0.0115844356, 0.00439250888, -0.000419759308, 0.00244488684, -0.00896919, -0.0133586293, 0.0200993344, -0.0134814102, 0.00513840653, 0.0170789082, -0.0102583952, 0.0129780062, -0.00841053389, -0.0168701801, -0.0133586293, -0.000837983855, 0.0367853418, -0.00533485692, 0.000443164521, -0.00550061185, -0.0350664, 0.0114493761, 0.00996985938, -0.002317501, 0.0164527223, 0.0235986076, 0.0186013989, -0.0015639296, 0.00117256353, 0.0287554301, -0.0230706464, -0.0039198, 0.00460737618, -0.002317501, 0.00287769176, -0.012388655, 0.0015516514, 0.00132143602, 0.00619432749, -0.0279205162, 0.00602243328, -0.015507305, 0.0183190014, 0.0212043673, 0.0117686084, -0.00118023728, 0.017410418, 0.0358030908, 0.0424332917, 0.00785187818, -0.0229355879, 0.00525504909, 0.0110687539, -0.00196910859, 0.00755106332, 0.0252684355, 0.000554051599, -0.0215972681, -0.00417457148, -0.00482531358, -0.011111727, 0.00427586632, 0.0168579016, -0.0428261943, 0.0125605492, -0.00612679776, -0.00718271872, -0.0121308137, 0.0301060267, 0.0166000612, 0.0113388728, -0.0166246165, -0.0175332, -0.00920861401, 0.0311865043, 0.00398119073, -0.00380622689, -0.0035606639, -0.0126219401, -0.0258086752, 0.00434339605, -0.00974885188, 0.0236722771, -0.0130516747, -0.039093636, 0.00984707754, -0.0195222609, 0.0130393971, 0.021302592, 0.00953398459, -0.0131990127, -0.0129166152, -0.00596718164, 0.0195099823, -0.0124009326, 0.00236968324, 0.0154090803, -0.0163667761, -0.00433111796, 0.0277731791, 0.00544843, 0.0159124844, 0.0157160331, -0.0124500459, 0.0198046584, 0.00277332752, 0.000253428734, 0.0201238897, -0.00659336755, 0.00969973952, -0.00112882257, 0.0173735842, -0.0008065211, -0.000646521396, -0.00578607898, -0.00188469631, 0.00996985938, -0.0179138239, -0.0118484162, 0.00899374578, 0.00509236334, 0.00488363486, 0.0111178663, 0.00512919761, 0.0154950274, -0.00313706766, 0.0167351197, 0.00720113609, 0.01720169, 0.012075562, 0.0314566232, -0.0193749238, 0.0104916804, 0.000776976754, 0.0113450121, 0.00294982595, -0.0113757076, 0.0187241808, -0.0064521688, 0.0444714651, 0.000108393055, 0.0214622095, 0.00507701561, 0.0157283116, 0.00290531758, 0.00654425472, -0.00699854642, -0.0193135329, -0.0231934283, -0.0129411714, -0.00143270683, -0.000727096805, 0.00964448787, -0.00717044063, -0.00202282541, -0.000915489683, 0.00324450154, -0.0204676781, 0.00243874779, -0.03666256, 0.00237889192, -0.0103075085, -0.0115353232, 0.00431884, 0.00894463342, 0.0135428011, 0.0447415859, -0.00620353594, 0.00551595958, -0.00249553425, 0.0181962214, -0.00977954734, -0.00844122935, 0.0169315711, -0.0142426556, 0.0224812962, -0.0208728574, 0.00179107534, 0.00687576504, 0.0128183905, 0.0206518508, -0.0291974451, -0.0226286333, 0.0155809745, 0.0103259254, -0.00926386565, 0.00585053908, 0.00744669884, -0.0115905749, 0.0071213278, 0.0246176943, -0.0133831855, -0.00845350698, 0.00461658509, -0.0115844356, -0.00647672499, -0.00713974517, -0.0108723035, 0.00739758648, -0.00725638773, -0.0470498763, 0.0131499, 0.0283379741, -0.0108661642, 0.0111915348, -0.00619432749, 0.00609303266, 0.00296056923, 0.0071213278, -0.011928224, 0.00151174737, 0.0294675641, 0.0177910421, 0.00857015, 0.00649514236, 0.0189329088, 0.0199274402, 0.00399039919, 0.026619032, 0.0242984612, -0.000753955217, 0.0190188568, -0.0120632835, 0.00486214785, 0.00130071666, -0.00506166788, -0.00723797036, -0.00480382657, 0.014439106, 0.0066670361, -0.0111055877, -0.0134814102, 0.00801149383, -0.000299855485, 0.0111853965, -0.00617284048, 0.0174349751, 0.0643866286, 0.0059978771, 0.0037448362, -0.0126342177, 0.00164834189, -0.0192275848, 0.0188592412, -0.0235740505, -0.00195222604, 0.00229908386, 0.00751422858, 0.00756948, 0.015151239, -0.0246176943, -0.00961993169, 0.000202013965, 0.00257534231, -0.00149409752, 0.0309900548, 0.0159984306, -0.00338877, -0.00097764784, 0.00831844751, -0.0151757952, 0.0187855717, -0.0160721, -0.00414387602, -0.00494195614, 0.00907969289, -0.00729936128, 0.000465802383, -0.0158756506, 0.00583519135, -0.00450301217, 0.0143040465, -0.00304498151, -0.0128920591, -0.00223922799, -0.0047209491, -6.08212167e-06, -0.0116642443, 0.0079132691, -0.0093375342, -0.0032414319, 0.00937436894, 0.014291768, 0.00114647241, -0.0101785874, -0.0119220847, -0.00934367348, 0.00021179812, 0.0148197291, -0.0125482706, 0.0308427159, 0.00679595675, -0.00869293138, -0.00616056239, -0.0290746633, 0.0182207767, 0.00416229339, -0.00857015, 0.00799307693, -0.0102461176, 0.00388910458, -0.00128460163, 0.0209342483, -0.0132972384, 0.0117317736, 0.0115046278, -0.00880343467, -0.00056786451, -0.0255631115, 0.00309562893, -0.0237213895, 0.0105407927, 0.0170175172, 0.015151239, -0.0118545555, -0.00659950636, -8.45561735e-05, 0.0159002058, 0.0063662217, -0.0200624987, -0.0266435891, 0.0123027079, -0.00747125503, 0.00556200277, 0.00666089728, 0.0097242957, 0.0221006721, 0.0138006425, -0.0130271185, -0.0153845241, 0.0030802812, 0.0129902847, 0.0236722771, -0.0127324434, -0.00600401592, -0.00678981794, 0.023082925, -0.0110319192, -0.0105039589, 0.00861926284, -0.0280678552, -0.00219471962, -0.00975499116, 0.00914108381, -0.011780886, -0.00648900308, 0.0111669786, -0.00580449635, 0.0043341876, 0.0110994494, 0.0114800716, -0.0082140835, 0.0190679692, -0.0190434139, 0.0130025623, -0.00459509809, -0.0146601126, 0.00333351805, -0.0377430394, 0.0135550797, -0.0107065486, -0.0082140835, 0.0150161795, -0.0177050941, 0.00562032405, -0.00531030074, 0.0124377673, -0.0077597918, 0.00109045336, -0.00141198747, -0.0224199053, -0.0188715197, -0.00465955865, 0.0288536567, 0.0056295325, -0.00501255551, 0.00356987258, 0.0216832161, 0.0207500756, -0.00863154, -0.0243721306, 0.00283932243, 0.00786415581, -0.00156930124, 0.00983479898, 0.0221497845, -0.0155564183, -0.0161703248, -0.013518245, -0.0129411714, 0.0185031742, 0.00138359424, 0.0172139686, 0.00124009326, 0.00487135677, -0.0203080624, 0.00371414074, -0.0128429467, -0.000877887825, -0.00150714314, 0.010964389, -0.0177419297, 0.0177910421, 0.00370186265, 0.0173244718, -0.00677140057, 0.0202957839, -0.0170543529, 0.0138988672, -0.00093620905, -0.00992074609, 0.00181102741, -0.00523970136, 0.0325616561, -0.0150898481, 0.0138251986, 0.00281630107, -0.00466262782, -0.00459509809, -0.0162562728, -0.0231811497, 0.00874204375, 0.0154213579, 0.00171894126, -0.0170911867, 0.00999441557, 0.00458895927, 0.0034102567, 0.036834456, 0.0118484162, 0.0192030296, 0.014291768, 0.00117563305, 0.0037939488, -0.000725945691, -0.0357539766, 0.00318004121, 0.00451222062, 0.00229447964, -0.00321073667, 0.00176344952, 0.00211030734, -0.0140093705, 0.0100865019, -0.00445389934, 0.0095769586, 0.0159002058, -0.0139602581, -0.00291299145, 0.00395049527, 0.010190866, 0.0156914778, -0.00953398459, 0.00695557287, -0.0192889757, -0.0293693393, 0.00272881915, 0.0179874916, -0.0103688994, -0.0131499, 0.000383500388, 0.00293447822, -0.0180979948, -0.000272037782, -0.00582598289, 0.0147215035, -0.00748353358, 0.00422061468, 0.0189083535, -0.00402723392, -0.009877773, -0.0104302894, 0.00816497114, -0.0066670361, 0.00356680294, -0.00841667317, -0.0290009938, -0.0144268284, 0.00237582228, -0.0021670938, -0.0144145498, 0.0128306681, -0.0150775705, 0.0161580481, 0.0119343633, 0.00484373095, -1.89807761e-05, 0.00566943642, -0.000417457166, -0.0152494647, 0.00640919525, -0.00143884588, 0.00268277619, -0.00185246614, -0.0073914472, -0.0028961089, -0.000344555621, -0.00583519135, 0.00370186265, 0.0180243272, -0.00321687572, -0.00596104236, 0.0140093705, 0.0178033207, -0.00734233484, -0.00427586632, 0.00877887849, 0.00462272391, -0.00777207, 0.0220638383, 0.0161334909, -0.0191784725, -0.00465034973, -0.0152617423, 0.031161949, -0.0113204559, -0.0159738753, 0.0047025322, -0.00820794422, 0.00206579897, -0.0189206321, 0.0112959, 0.0209710822, 0.0305234846, 0.0216463804, 0.00392286945, -0.00963834859, 0.0204676781, 0.00603164174, -0.0146846697, 0.00744056, 0.00733619556, 0.00503097242, -0.0175086446, 0.0108170519, 0.0101847267, 0.0134077417, 0.00299893855, -0.00857015, 0.0120080318, -0.0157160331, 0.0104364287, -0.0216218252, 0.0179506578, 0.0397321, -0.0150530133, 0.0150775705, -0.0330282263, -0.0161334909, -0.00330589223, 0.00391059136, 0.00634780433, 0.0222357325, -0.00418684958, -0.00303423824, -0.00807288475, -0.00521514472, -0.0161580481, -0.00446003862, -0.00514761498, -0.0111792572, -0.00725638773, 0.0173858628, -0.0215727128, -0.0149302324, -0.0222111754, -0.0228619184, -0.00967518333, -0.0151757952, 0.0236599986, 0.016992962, 0.00321073667, 0.0139234243, 0.0117747476, 0.000244603812, 0.0139602581, 0.0350172892, -0.0154950274, -0.0176191479, -0.0118852509, 0.00447845599, -0.0228619184, 0.00785187818, -0.0333229043, 0.0249123704, -0.0142794903, -0.00265054591, -0.00468718447, 0.0142058218, -0.0105714882, 0.0103627602, 0.0196573213, -0.00555893313, 0.00353917712, -0.00710904971, 0.00264901109, 0.00111731177, 0.00118484162, 0.0175945908, 0.0193503667, 0.0175086446, -0.0168333463, -0.0122229, 0.0179629363, 0.00790099055, -0.00232210546, 0.00441092579, 0.0066363411, 0.00605312875, -4.43164536e-05, -0.000875585654, 0.00349620357, -0.0119220847, -0.0232302621, 0.0235126596, 0.020885136, -0.0103934556, -0.0372519121, -0.0162931066, 0.00588737382, 0.0200747773, -0.0332983471, 0.0116703827, -0.0169561282, 0.00903058052, -0.018625956, 0.00655653281, -0.0215972681, -0.00968746189, -0.00531643955, -0.00613600621, -0.000511845457, -0.0121062575, -0.0220024474, -0.0169192925, -0.00469332328, -0.0082140835, 0.0265699197, 0.0153722456, 0.0142426556, -0.00205045124, 0.0249492042, 0.012345681, 0.00399039919, 0.0170911867, 0.018417228, -0.0154336365, 0.00329668378, 0.0181593858, 6.35010656e-05, -0.0146478349, 0.0120878406, -0.00220085867, -0.0197678246, -0.000893235498, -0.0126833301, -0.00150100398, -0.010233839, 0.00579221779, 0.00923930947, -0.00432804832, 0.00740986457, -0.0219901688, 0.0109705282, -0.0116396872, -0.00606540684, -0.0250351503, 0.00462272391, -0.00442627352, 0.00826319586, -0.0229355879, 0.000574387261, 0.00359442877, -0.012744721, 0.00108431431, -0.00388603495, -0.0221743416, -0.00345629966, 0.0035084819, 0.0163176637, 0.038528841, 0.0211675335, -0.0145250531, -0.00664861919, -0.0149056762, -0.00522128399, -0.00666089728, -0.00750195049, -0.00575845316, -0.046583306, 0.0110994494, -0.00506473752, -0.00971815735, 0.0176928155, -0.000111654437, -0.0147706158, 0.0248878133, 0.00367423682, -0.00321380608, -0.00650742045, 0.00569706224, 0.00158081204, -0.00122321083, -0.0291483309, 0.0107618, -0.0030802812, 0.00896305, -0.00641533406, -0.0118852509, 0.00227452768, 0.0217937194, 0.0218919441, -0.00260450295, -0.0031401373, 0.00858856738, 0.00132527296, -0.0106697138, -0.0173981413, 0.0258577876, -0.0198783278, 0.00642147334, 0.0113879852, -0.000652276794, 0.0296885706, 0.00386147876, -0.0206027385, 0.00765542733, 0.0122658731, 0.00937436894, -0.00737303, 0.00364354136, 0.00500948587, 0.00250781234, 0.00522128399, -0.00683893031, -0.00407020701, 0.00977954734, -0.00359135936, -0.020234393, 0.000621197745, -0.0108231902, -0.0128552243, -0.00104057335, 0.00799307693, -0.017766485, 0.00523663172, -0.0228987522, -0.0128429467, -0.00761859305, -0.00771681825, 0.0186136775, -0.0143654374, 0.00976113, 0.0153476894, 0.00413773721, -0.00662406255, -0.00113956595, -0.0207623541, -0.0251210984, -0.00614521466, 0.00716430135, -0.0119343633, -0.00269965851, 0.00300968182, 0.0109582506, -0.00912880525, -0.000308680406, -0.00340718706, 0.00568171451, -0.0152371861, 0.0336912461, -0.00603778102, 0.00144958927, -0.00885868631, -0.00280095334, 0.0130516747, -0.00194301747, -0.00141505699, -0.0113941245, -0.0139970928, -0.00922703091, -0.0231565945, -0.0153722456, -0.00511998916, -0.00388910458, -0.0106328791, -0.00896919, 0.000912420161, 0.00225150608, -0.00159309013, 0.00887096487, 0.0235003829, -0.0241020117, -0.00611758884, -0.0114493761, 0.00763701042, -0.0192521419, 0.00151098007, 0.00715202326, -0.000904746295, 0.0113695683, -0.0108354688, -0.0170911867, 0.0102768131, 0.00389217399, -0.0110748922, 0.0158142596, 0.0312601738, 0.000171990047, 0.00191232213, -0.0239792299, -0.0194854271, -0.00704765879, 0.0103688994, -0.00294368691, 0.00359135936, 0.0021563503, -0.0175332, 0.00188162667, -0.0333474614, -0.0213639829, 0.00990846846, -0.00451836, 0.0320459753, -0.00760017568, 0.00387375685, 0.000245179341, -0.00563567178, 0.000953858893, -0.0031171157, -0.00448152516, 0.0155932521, 0.00742828147, 0.021093864, -0.0187855717, 0.00625878759, 0.00162378559, 0.00415615411, -0.00348085607, 0.000446234073, 0.0100005548, 0.00742828147, -0.01069427, 0.00415615411, -0.0108845811, 0.00585360872, -0.00222081062, 0.00549754221, -0.00674684439, -0.0156055307, 0.0104302894, 0.00906127598, -0.00936823, 0.0126833301, 0.00338263065, -0.00272574974, -0.00874204375, -0.0124193504, 0.0128061119, -0.0112959, 0.00712746708, -0.0157651473, -0.00578300934, 0.0126710525, 0.00758175878, 0.0112713436, 0.00998213701, -0.0100803627, -0.0154459151, -0.0248141438, -0.00798079837, -0.0077597918, 0.002610642, -0.0104487073, 0.0184417833, -0.0207255203, 0.026619032, 0.0028469963, 0.00605926756, -0.0108723035, 0.00011261367, 0.0162317157, -0.00325371022, -0.0027457017, 0.0212903153, -0.0125237145, 0.00853945408, -0.0503404215, 0.00125544099, -0.0082325, -0.012075562, -0.00688190386, 0.00119251548, -9.10070048e-06, 0.0184295047, 0.00344709097, 0.0131990127, -0.00274416688, -0.000293524557, -0.00189083535, 0.00149486493, 0.000483835902, 0.00266128941, -0.0246790852, -0.0272083841, 0.00177265808, -0.0169192925, 0.000267241645, 0.00731163938, -0.00606540684, 0.0324634314, 0.00280248816, -0.0188592412, -0.00361284614, 0.0019829215, 0.00498492969, 0.00250781234, 0.0101724481, -2.71941881e-05, -0.00391673, 0.00196450413, -5.69243412e-06, -0.0179138239, -0.000783499563, 0.0110994494, 0.023082925, -0.0241265669, -0.00525811827, 0.0151635176, -0.0321933143, -0.0208728574, -0.00240498292, 0.00422368431, 0.00825705659, -0.00336421351, -0.00955854077, -0.0035084819, 0.0268400386, 0.000710214314, -0.00436181342, -0.0107004093, -0.0178278759, -0.0031401373, 0.0242370702, -0.00952784531, 0.00455212453, 0.00267817173, -0.0224812962, -0.0196082089, 0.00515375426, 0.0141198747, -0.00164220273, 0.0136164697, -0.022223454, 0.00437102187, -0.00496958196, 0.0190925263, 0.0237213895, -0.0031769718, -0.0104855411, -0.00280248816, -0.0224690177, 0.019190751, -0.0101724481, 0.00964448787, 0.0186627898, -0.00211030734, -0.0201361682, -0.021093864, -0.0184295047, 0.00344709097, -0.00882185157, 0.00558962859, -0.00146416959, 0.0202589501, 0.00142042863, 0.0105100982, 0.00892007723, 0.018834684, -0.0057615228, 0.0113143167, -0.00227145804, -0.00468411483, 0.00375711429, 0.0198046584, -0.00634166505, -0.00170359353, 0.0267172586, 0.0156669207, -0.00291913049, -0.00747125503, -0.00142042863, -0.0310391672, -0.013665583, 0.00158541626, -0.0181348305, 0.0235372167, -0.0115046278, 0.0125973839, 0.0256613363, -0.0147706158, 0.0157283116, 0.00480996585, -0.0155318622, -0.00392593909, 0.0243230183, -0.0049051214, 0.0300569143, -0.00316776312, 0.0117379129, -0.0270610452, -0.0158879273, -0.0109091373, 0.000264172093, -0.0187732931, -0.0207991879, 0.00401495537, 0.0115967141, -0.0289764386, 0.00573389698, 0.0179261, -0.00926386565, 0.00585974799, -0.00256613363, -0.00548526412, 0.00593648618, -0.0078396, 0.0263734702, 0.019190751, -0.0014894933, 0.00170205871, -0.0114186807, -0.00374176679, 0.0187855717, -0.00632938696, -0.0145496093, -0.00715816254, -0.00650128117, -0.0180979948, -0.0137515301, 0.00602857256, 0.0133586293, -0.0138988672, -0.0154213579, -0.00256459881, -0.002929874, 0.0126710525, -0.00621581404, 0.013665583, 0.00411932, -0.00598559901, 0.00140124408, 0.0168579016, -0.00498799887, 0.00544843, -0.0241020117, -0.0102215614, -0.0212043673, 0.018061161, 0.00773523562, -0.0013168318, -0.0129657276, 0.0175332, -0.00180949259, -0.000591269752, -0.00155011658, -0.00939278584, -0.00366195873, 0.00793168601, 0.0194240361, 0.00239884388, -0.00902444124, 0.0318986364, 0.0149425101, -0.00895691197, 0.0203817319, 0.00458588963, 0.00605005911, 0.00170359353, 0.00386147876, -0.00674070511, 0.0104302894, 0.00747739431, 0.00188776583, 0.00953398459, -0.0231074821, -0.0171403, -0.0158265382, 0.0101171965, -0.00430656178, -0.00242953934, 0.00547605567, 0.00833072606, 0.00661178445, 0.00284546171, 0.000926233071, -0.00207654247, -0.0094234813, -0.0136778606, -0.00219932385, 0.0259805694, 0.0136287482, -0.0077597918, -0.00468104519, 0.000574770966, 0.00139433763, 0.0265944768, 0.0112713436, 0.0100619448, -0.0339613669, -0.00489591295, 0.00138819846, -0.00802377239, 0.00963221, -0.00163452898, 0.0132481251, -0.0257104486, -0.0154090803, -0.00650128117, -0.0333965719, 0.032438878, 0.0227145795, 0.0271101594, 0.00436795224, 0.00873590447, 0.00505552907, -0.0119834756, 0.00369265396, 0.0131744565, -0.00694943359, -0.0106144622, 0.000785801676, -0.0064521688, 0.00354224676, 0.00526118791, 0.0100312494, -0.00653811591, -0.00939892512, 0.00258148136, 0.0149793448, -0.0056632976, 0.00874204375, 0.0232548192, 0.0178892668, -0.000927000423, 0.00828161277, 0.0220392812, -0.00919019617, 0.0173858628, -0.00103750383, 0.00315855443, 0.0123395426, 0.00650742045, 0.00337342219, 0.0288291, -0.00453063799, -0.00388603495, 0.0163299423, -0.0164772794, 0.0133709069, -0.00364354136, -0.0254403297, -0.0107372431, 0.0123211248, -0.00724410964, 0.0111976741, -0.00934981275, -0.012757, -0.0209465269, -0.00325984927, -0.0115844356, -0.00469332328, -0.00127002131, -0.0147828944, -0.0157528687, 0.0153722456, -0.015863372, 0.0337894745, -0.0026474765, 0.0125421314, -0.0116826613, -0.00354224676, -0.004635002, -0.0195959304, 0.0098593561, -0.0146723911, 0.0042482405, -0.0130639533, 0.00807902403, -0.0125421314, 0.00936209, 0.0155564183, 0.0217568837, 0.0180366039, -0.00388603495, 0.0172139686, 0.00307260733, -0.00215174607, 0.019755546, -0.0172999147, 0.0159738753, 0.011363429, -0.00303270342, -0.0272574965, -0.0194854271, 0.00677754, -0.0134445755, 0.0175945908, 0.00658108946, 0.0121185351, 0.0203448962, -0.00327212736, -0.00114263548, 0.00534406537, -0.000327865, 0.00292526954, -0.00605926756, 0.00810971949, 0.0337894745, 0.0116581051, -0.00238656579, -0.00267817173, 0.013456854, 0.00186320953, -0.0110994494, 0.0220392812, 0.0133340722, -0.00922703091, -0.0116151311, -0.0114800716, -0.00434032641, -0.00447538635, -0.0343051553, 0.0187732931, 0.00422061468, -0.00053448329, 0.000961532758, -0.0184786189, -0.00483452203, 0.00498186, -0.0195959304, 0.00553130731, 0.0284116436, -0.00384306139, -0.0116151311, -0.0142058218, 0.0275521725, 0.030867273, 0.000921628729, 0.00605926756, -0.000764314958, 0.00228066673, -0.00650128117, 0.00387375685, 0.00815883186, 0.00556507241, -0.00964448787, 0.0224199053, 0.0291237757, -0.00547605567, -0.0199274402, 0.00515375426, 0.00339490897, 0.000181198659, -0.0159002058, -0.0149916233, 0.00371107133, 0.013100788, -0.00850875862, -0.000804218929, 0.00728708273, -0.0159738753, -0.0129411714, -0.0169438496, 0.0064828638, -0.00457975036, -0.00290992181, -0.0022162064, 0.0019338089, 0.0010474798, -0.0146846697, -0.00853945408, 0.0169315711, 0.00684506958, -0.0148933977, 0.018834684, -0.0100128325, -0.00179414486, -0.0256858934, 0.0189206321, 0.00371721038, 0.005964112, 0.00032268517, -0.0217200499, -0.00885254703, 0.0171034653, -0.00852717645, -0.00802991074, -0.00629869197, -0.0169315711, 0.00892621651, 0.0225426871, -0.0102399783, 0.0194977038, 0.0111608393, -0.00398426037, -0.00526118791, -0.00302502955, 0.0126342177, 0.00677754, -0.0180120487, 0.00113035738, -0.0142794903, -0.014586444, 0.0114493761, -0.0097918259, 0.000449303596, 0.0128429467, -0.0082140835, -0.00618511904, -0.0235249382, -0.0230583679, 0.0143654374, 0.0218182746, -0.00158081204, 0.00115798321, -0.00169745449, -0.00214253739, -0.0322669819, -0.00502790324, -0.0172139686, 0.0105714882, -0.013100788, 0.00358828972, -0.0139357019, -0.0231688712, -0.00514454534, -7.24698693e-05, -0.011510767, -0.000957695825, 0.00934367348, -0.00191385683, -0.0121062575, 0.0104057333, -0.00706607616, -0.0175454784, 0.00341332611, 0.00441706507, 0.00789485127, -0.000657264784, 0.00361284614, -0.0175823122, 0.0164527223, -0.0156792, -0.00887710322, 0.0043863696, 5.49639117e-05, 0.0150284572, 0.0123272641, 0.00918405689, 0.00447231671, 0.0134322979, 0.020615017, 0.00716430135, 0.0145004969, 0.0148933977, 0.00761245377, -0.00590272155, -0.0239301175, 0.0188469626, 0.00511385035, 0.00654425472, -0.0143899936, -0.0176559817, -0.0287799872, 0.0161826033, -0.0123395426, 0.0056080455, -0.00974885188, -0.00330589223, 0.00598866818, -0.0139111457, 0.0129780062, -0.0103873163, 0.00429735286, 0.00561418477, 0.00530109182, -0.0047209491, 0.0127078872, 0.0180488825, 0.00196143473, 0.0117870253, -0.0095094284, 0.00551902922, -0.021744607, -0.011111727, -0.0194363147, 0.00737916911, 0.0166982859, -0.00948487222, 0.0218796656, -0.0132235689, 0.0207009632, 0.0201852806, -0.0193503667, 0.0269382652, -0.00205198606, 0.013100788, 0.00789485127, -0.00856401, -0.00237121806, 0.00559883704, 0.0187119022, 0.00062158145, 0.000254196115, -0.00440478697, 0.0215727128, 0.0160352662, -0.00251395162, -0.0277977344, 0.00820794422, -0.00234819646, 0.00226071477, 0.00756334141, -0.00899374578, -0.0205659047, -0.0336175784, 0.000545994029, 0.00516296271, 0.00361898518, -0.0267418139, -0.00630483078, -0.0212166458, 0.0166860074, -0.00281016203, 0.0162071604, -0.00261678104, -0.0339613669, -0.00473015802, 0.00778434798, -0.027331166, 0.0106083229, 0.0234267134, -0.00148872589, 0.00173582369, 0.00492967805, -0.0153231332, -0.00310176797, -0.0221988987, 0.00910424907, -0.0178647097, -0.013100788, -0.00385533948, 0.0121860653, 0.00874818303, 0.0234881043, 0.00815269258, 0.005273466, 0.0386025086, 0.000701773097, 0.00244795647, -0.0023282445, -0.00219165, 0.0157651473, -0.00911652762, 0.00570627116, -0.00476392265, 0.00688190386, -0.0166737307, 0.0143899936, 0.0288045444, -0.0026474765, -0.00492046913, 0.000598176208, 0.00750195049, 0.0269137081, 0.00489284331, -0.00102829514, -0.00921475235, 0.0243966877, 0.00678981794, -0.00479154848, -0.00988391228, -0.00837983843, 0.0291237757, 0.00149563234, -0.011406403, 0.00445389934, -0.0182453338, 0.00706607616, -0.00833686534, 0.0210079178, 0.00399346882, -0.0187855717, 0.0138865896, 0.0233776011, 0.0166491736, 0.00398732955, -0.00452142954, -0.00702924188, 0.0016636895, -0.00134829455, -0.0180488825, -0.0266927015, -0.0037448362, -0.00666089728, -0.0359749831, -0.0015646969, 0.0150284572, 0.00698012905, 0.0284116436, -0.0159002058, 0.010025111, -0.0157651473, -0.0262752436, 0.00529802218, 0.0107802171, 0.0143777151, -0.00868065283, -0.0219410565, -0.0106451577, 0.00276104943, -0.0324634314, 0.0317758545, -0.00419298885, 0.00822022278, -0.0201852806, 0.00414694566, -0.0165877827, 0.00611145, -0.0140953176, -0.0143777151, -0.00771067897, -0.0102215614, -0.0128183905, -0.00252316, -0.00787643436, 0.00885868631, -0.00586895645, 0.00866223592, 0.000675298332, -0.0181593858, -0.0230092555, -0.026054237, 0.0197678246, 0.0126342177, 0.0179506578, 0.0183926709, 0.0162439942, -0.00681437412, 0.00130225148, 0.0220392812, 0.00969973952, 0.0229355879, -0.0123272641, 0.0173367504, 0.00341332611, -0.000153860587, -0.00533178728, 0.00872362684, 0.00598252937, 0.00625878759, 0.0153722456, -0.01295345, -0.00717044063, 0.00987163372, 7.91844868e-05, 0.00278407079, -0.0312356167, -0.00948487222, 0.00698626833, 0.00356987258, -0.000282013789, 0.0259560123, 0.00963834859, 0.0117870253, 0.000555586361, -0.000263596565, -0.0113143167, 0.0203080624, -0.00532257883, 0.00342253479, -0.0027717927, -0.0195713732, 0.00469025411, -0.0013912681, 0.00891393796, -0.0107802171, -0.0087666, -0.00464114128, 0.000918559206, -0.000796545064, -0.0341332629, 0.020885136, 0.00100373884, -0.013874311, -0.0263243578, -0.00755720213, 0.00685734767, 0.00570013188, 0.00931297801, -0.0248387, -0.0075756195, -0.00919019617, -0.0077597918, 0.000292373472, 0.00504939, 0.00455519417, -0.005964112, 0.0217200499, 0.010589906, -0.00648900308, 0.0050033466, -0.00474550575, 0.0171280205, -0.00432497868, 0.0168824587, 0.00306646829, 0.00538703892, -0.0135919135, -0.0199028831, 0.00662406255, 0.00280555757, 0.0308427159, -0.012744721, 0.0070353807, 0.00961379241, 0.0123211248, 0.00835528225, 0.0224690177, 0.00329975318, 0.000888631213, -0.00230368809, -0.00968132261, 0.0225549638, 0.0106021836, -0.0166737307, 0.0222111754, -0.00717657944, -0.00604085065, -0.00919633545, 0.0154336365, 1.77097954e-05, -0.0103259254, 0.000666089705, 0.0119220847, -0.00547298603, 0.0100005548, 0.0130393971, -0.021241203, -0.0341087058, 0.021302592, -0.0171280205, 0.0167596769, -0.000780813687, 0.00887096487, 0.0103504816, 0.00368651492, 0.0113941245, -0.00776593108, -0.00651969854, -0.0138251986, -0.000672996161, 0.0146232788, 0.0108723035, 0.00264440686, 0.00922703091, 0.0166491736, 0.00269965851, 0.00984707754, 0.00610531075, 0.00745283812, -0.00455212453, 0.00496651232, 0.019104803, -0.00934367348, 0.0213148706, 0.0147583382, -0.0135673573, 0.0039198, -0.00277486234, -0.00341946515, -0.00454598572, -0.00973043498, 0.0298113525, 0.000474243599, 0.00397198182, -0.00177726243, -0.00391673, -0.00382771366, -0.0152494647, 0.0102768131, 0.0129657276, 0.00946645439, -0.00593341654, -0.0116519658, -0.00930069946, -0.00782118272, 6.8489062e-05, 0.00879729539, -0.0224567391, 0.00968132261, -0.00687576504, -0.00629869197, 0.0526487157, -0.00466262782, 0.012284291, -0.00715202326, 0.00579528743, 0.000177649505, -0.00363126327, 0.0116335489, 0.0189943, 0.0382587202, -0.00250474294, 0.00310483761, 0.0174595322, 0.000858703221, 0.0116826613, -0.00510157179, 0.0160229877, -0.00440171733, -0.00556200277, 0.0100128325, -0.00382771366, -0.01295345, 0.0160107091]
25 Dec, 2023
Is the real number 1.21 rational or irrational? 25 Dec, 2023 The set of rational and irrational numbers is termed Real numbers. They can be both positive or negative and are represented by the sign “R.” This set includes all natural numbers, decimals, and fractions. This module includes all natural numbers, decimals, and fractions. In the number system, real numbers are essentially the combination of rational and irrational numbers. In general, all arithmetic operations may be performed on these numbers, and they can also be represented on a number line. Any number that can be represented as a fraction p/q is termed as a rational number. In this fraction the numerator value is written as ‘p,’ while the denominator value is represented as ‘q,’ where ‘q’ is not equal to zero.  Natural numbers, whole numbers, a decimal, or an integer all are part of rational numbers. Examples: 1/2, -2/3, 0.5, and 0.333 are all rational numbers. Irrational numbers are real numbers that cannot be represented as a fraction p/q, where ‘p’ and ‘q’ are integers, and the denominator ‘q’ is greater than zero (q≠0). Examples: (pi) is an irrational number π = 3.14159265… The decimal number, in this case, never ends at any point. Therefore numbers like √2, √-7, and so on are irrational numbers. Is the real number 1.21 rational or irrational? Solution: Any number that can be represented as a fraction p/q is termed as a rational number. when the number is simplified it gives the result in decimals which is either terminating or recurring after decimal. So, here given number real number 1.21 is rational number as it is terminating after decimal. Sample Questions Question 1: Determine whether -55 is a rational number. Solution: Any number that can be represented as a fraction p/q is termed as a rational number. when the number is simplified it gives the result in decimals which is either terminating or recurring after decimal. So, here given number -55 is rational number as it is terminating after decimal. Question 2: Is 23.25 a rational number or an irrational number? Solution: Any number that can be represented as a fraction p/q is termed as a rational number. when the number is simplified it gives the result in decimals which is either terminating or recurring after decimal. So, here given number 23.25 is rational number as it is terminating after decimal. Question 3: Determine whether 2/51 is a rational number or an irrational number. Solution: Any number that can be represented as a fraction p/q is termed as a rational number. when the number is simplified it gives the result in decimals which is either terminating or recurring after decimal. So, here given number 2/51 is in fraction form and rational number can be expressed as a fraction, Therefore, 2/51 is a rational number. Question 4: Is 7.656545 is a rational number? Solution: Any number that can be represented as a fraction p/q is termed as a rational number. when the number is simplified it gives the result in decimals which is either terminating or recurring after decimal. Irrational numbers are real numbers that cannot be represented as a fraction p/q, where ‘p’ and ‘q’ are integers and the denominator ‘q’ is greater than zero (q≠0). So, here given number 7.656545 is a rational number, as it is terminating after decimal at ending point. Question 5: Is 0.23224554… a rational number? Solution: Any number that can be represented as a fraction p/q is termed as a rational number. when the number is simplified it gives the result in decimals which is either terminating or recurring after decimal. Irrational numbers are real numbers that cannot be represented as a fraction p/q, where ‘p’ and ‘q’ are integers and the denominator ‘q’ is greater than zero (q≠0). So, here given number 0.23224554…. is not a rational number, its a irrational number as it is non terminating or non recurring after decimal. Question 6: Is Real number 2.8899898 a rational number? Solution: Any number that can be represented as a fraction p/q is termed as a rational number. when the number is simplified it gives the result in decimals which is either terminating or recurring after decimal. Irrational numbers are real numbers that cannot be represented as a fraction p/q, where ‘p’ and ‘q’ are integers and the denominator ‘q’ is greater than zero (q≠0). So, here given number 2.8899898 is a rational number as it is terminating after decimal at ending point. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key/If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero/Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3/Prove that √2 is an irrational number./Is the square root of 12 an irrational number?/Is √4 a rational or irrational number?/Is the real number 1.21 rational or irrational?
https://www.geeksforgeeks.org/is-the-real-number-1-21-rational-or-irrational?ref=asr10
Mathematics
Is the real number 1.21 rational or irrational?
Is √4 a rational or irrational number?, Prove that √2 is an irrational number., Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3, Mathematics, Maths, CBSE Class 12 Maths Term 1 2021 Answer Key, Is the square root of 12 an irrational number?, Is the real number 1.21 rational or irrational?, If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero
GeeksforGeeks
[-0.0298051406, 0.0164418668, -0.00882711634, 0.0395858027, -0.0223810989, -0.00212334376, 0.00375288678, 0.0189891979, 0.0480315, 0.0236343313, -0.0132338637, -0.034736339, 0.00681104651, -0.0261544194, -0.043972116, 0.0318757, -0.000472942047, 0.074867025, -0.00951503217, -0.0116264569, -0.00931070093, 0.0489305593, -0.00833672099, 0.0157471392, -0.0206919592, -0.0071243546, -0.0100735379, -0.0139762675, -0.0193297509, -0.00260181981, 0.0231711809, -0.00130772102, 0.0129478, -0.0135812275, -0.0106048, -0.0302138031, 0.0312763266, 0.00844569784, 0.0307314433, 0.0382508375, -0.0199563671, 0.0259909537, -0.0259909537, 0.0363437459, 0.0143440645, -0.0145892622, -0.0474593714, -0.0245742556, -0.00124897563, -0.0317939669, -0.0019683924, 0.00958314259, 0.0665303, 0.0516549796, 0.0199563671, -0.00201266422, 0.0335648395, -0.0163737554, -0.0155972969, 0.000515085412, 0.00257287291, -0.00990326144, -0.038468793, -0.0148072159, -0.0287698619, 0.0231166929, -0.0212504659, 0.000842441339, -0.014698239, 0.0194932148, -0.0097738523, 0.0265085939, 0.0182127394, -0.014752727, -0.00585750025, -0.0131998081, 0.0170276165, -0.0131385094, 0.00301218545, 0.0404303744, 0.000380567246, 0.023457244, 0.0114834243, 0.0142078437, 0.00483584311, 0.0535893142, 0.00570425158, -0.0570493266, 0.0298051406, 0.0031739478, -0.00866365153, -0.00362688233, -0.0082005, -0.01893471, 0.037106581, 0.0184988026, -0.00442377478, 0.0246968549, -0.0181582496, 0.0374335125, 0.0168505292, 0.00274314894, 0.000938221696, -0.0409752578, 0.01041409, -0.0441083387, 0.0315487683, 0.0261680409, 0.0179266743, 0.0153112328, -0.026821902, -0.00771691604, 0.00710392185, 0.00761475, -0.0546245947, -0.0573762581, 0.00574511802, -0.0571038164, 0.0396402925, 0.0211823545, -0.0436724313, -0.00388229662, 0.0119738197, 0.0139149679, -0.0251327623, 0.0254596919, -0.00956952, -0.0110270847, -0.0241655931, -0.0150524136, 0.0173954125, 0.00925621204, -0.0366979204, -0.0197111685, 0.0183489602, 0.00179981906, -0.00800298, 0.0231166929, 0.00921534654, 0.0177087206, -0.0386595, -0.0497206412, 0.0265903268, -0.0217544828, -0.000696003844, -0.000282658439, -0.0271352101, 0.0221359022, -0.0093924338, 0.0296689197, -0.010202948, -0.000839035783, 0.0238250419, 0.00445783, -0.0383870602, -0.0323116072, 0.00254052039, 0.0321208946, -0.0129205557, -0.0545973517, -0.0141533548, -0.0155291865, 0.0148753263, 0.00992369466, -0.00711754384, 0.058302559, 0.00452934625, 0.0132747302, -0.0317667201, 0.0326385349, -0.0127639016, 0.0233482681, -0.00220507639, 0.0270670988, 0.0263451282, 0.0178585649, 0.0249420535, 0.0175725, -0.00864321832, -0.0140852444, -0.0131929973, -0.0217681043, 0.0304317567, 0.0165917091, -0.0107069658, 0.00228170073, 0.0546518378, -0.00636151759, -0.0092698345, -0.0307586864, -0.0158697385, 0.0159514714, -0.00632746238, 0.0465058275, 0.0317939669, -0.017013995, -0.00266482192, 0.037106581, 0.00736274151, 0.0273940302, -0.0136289047, -0.0303772688, -0.0242745709, -0.0146573726, 0.0320936516, -0.0418470725, 0.00253541209, 0.0245197676, 0.0290695466, 0.0285246633, 0.00966487546, -0.0278980471, -0.0057962006, 0.0283067096, -0.0153793432, 0.0164146218, -0.0417380929, -0.0287698619, 0.024587879, -0.0476228371, -0.0127298459, -0.0151886344, 0.0442990474, -0.00172915449, -0.00869089551, 0.00325738313, 0.028742617, 0.0282794666, -0.0210325122, -0.0293964781, -0.00853424147, 0.0344638973, -0.000325866, 0.00586090563, -0.0322026275, 0.0187712442, 0.00553397555, 0.0255005583, -0.00630021794, 0.0424736887, -0.000541903893, 0.0104890121, 0.0261271745, -0.0174226575, -0.0300775822, -0.0222857445, 0.0376242213, 0.0302138031, 0.0191526636, 0.019670302, -0.0373517796, -0.0529082119, -0.00714478781, -0.0100599155, -0.0337827913, -0.0180492736, 0.0152567448, 0.0090518808, 0.0299686044, 0.00789400283, 0.0351722464, 0.00689959, -0.0245197676, -0.00856148545, 0.0022799978, 0.010359602, -0.0281704888, -0.0402396619, 0.00880668312, 0.0174907669, 0.0510283634, -0.00758069474, -0.0157880057, 0.0284701753, -0.00917448, -0.0171638373, 0.00794168, -0.0152976112, 0.00824817736, 0.0136970151, -0.0272714309, -0.0516822226, 0.0129886661, 0.012804768, -0.00890203845, -0.019302506, 0.00100973772, 0.0327747576, -0.0717611909, -0.00139456184, 0.00945373252, -0.0128728785, -0.00115191832, 0.0247377213, 0.0183080938, 0.0153657217, -0.0237160642, -0.0199018791, -0.013383707, 0.023852285, -0.0122666955, -0.049203, 0.0206238497, -0.0116537008, -0.0417380929, -0.0228306279, 0.00841845386, -0.0488215834, -0.0041206833, -0.0170276165, 0.0361802801, -0.0210188907, -0.00852743071, -0.0289060827, -0.014044378, 0.00862959586, 0.0359623246, -0.02797978, -0.00682466896, 0.00895652641, -0.00548289251, 0.0395313166, 0.0167824198, 0.00652498286, 0.0216046404, -0.0448166877, -0.00480519328, 0.0163873788, 0.00768967159, -0.0467510261, 0.0146165062, -0.00717203226, -0.0031569202, -0.00262225303, -0.00734230829, -0.0394768268, 0.0138332359, 0.0197520349, -0.01893471, 0.00669185352, 0.0193297509, -0.00491076475, -0.025718512, 0.0108499974, 0.0172455702, -0.0200244766, -0.0147391045, -0.0380328856, 0.0112586599, 0.037896663, 0.00096802, 0.0367251635, -0.00150694407, 0.0305679776, 0.0208962914, -0.0183762033, -0.0283339545, -0.0410842337, -0.00621167477, -0.0118716545, -0.00601074891, 0.0132611077, -0.0356898829, -0.000887990231, -0.0259637106, -0.0589019321, -0.00117405422, 0.046178896, 0.0625526533, -0.00734911952, -0.014752727, 0.0149298143, 0.076556161, 0.000986750354, -0.00889522675, 4.86883437e-06, -0.0432910137, -0.0335375927, -0.00934475567, -0.00271590496, -0.012307561, 0.0287698619, 0.00895652641, 0.0360440575, 0.0187712442, -0.00756707275, -0.00785994809, -0.0133087849, 0.0161421802, 0.00140222418, 0.0052411, 0.0561230257, -0.0412749425, 0.020119831, 0.00383121381, -0.00537051028, -0.0199972335, -0.0137651255, 0.0209371578, -0.0251872502, 0.0125800036, 0.0143985525, -0.0435907, 0.0155836744, -0.000589581206, 0.0113472035, -0.0497206412, -0.0503200144, 0.0119874422, 0.0289605707, -0.0105639333, 0.00347193098, -0.0304862447, -0.0335648395, 0.029559942, 0.0364254788, -0.0283611976, 0.00576895662, -0.0236615762, -0.0138536692, -0.0275302511, 0.0149434367, -0.0282249767, -0.00346682267, -0.0179130528, 0.00766242761, -0.000199010276, -0.0073286863, 0.0111701163, 0.029559942, -0.0387684777, 0.046887245, 0.0182399824, 0.0456885025, 0.00183387427, -0.0408935249, 0.00406960025, 0.0405393504, 0.00980790704, -0.0050197416, 0.0167960413, -0.00914723612, -0.0103391688, 0.00617080834, -0.00148395682, 0.0314670354, -0.0669662133, -0.026113553, -0.019697547, 0.0109589742, 0.010202948, -0.00545224268, -0.0194387268, 0.024560634, 0.0334558599, -0.00123875914, 0.0128252013, -0.0236070883, 0.00895652641, 0.00492779212, -0.0114561804, 0.032529559, -0.0255414248, 0.01151748, 0.0494482, 0.00122428569, 0.0147663495, -0.0279525351, -0.0163056459, 0.00617421372, -0.0576487, -0.0117899217, -0.00461448403, 0.0284429304, 0.0250374079, 0.0102983024, -0.0217272397, -0.0284701753, -0.0141533548, -0.0324750692, -0.00646368321, 0.00449529057, 0.0311401058, -0.0132883517, 0.0270262323, -0.00361326034, 0.0353902, -0.0175043903, 0.0232937802, 0.0359623246, -0.0205693617, -0.0292875, 0.0234436225, 0.0141805988, 0.00892247073, -0.0176406112, -0.0318212099, -0.0390681624, 0.000386314059, 0.0187576227, 0.0057008462, -0.0480587445, -0.0676745623, 0.0597737469, -0.0387684777, -0.0100054275, 0.0284429304, -0.00555440877, 0.0086704623, -0.0235253554, 0.00435906975, -0.00258819782, -0.00753982877, 0.0224900767, -0.00272441865, 0.000534241495, -0.0223402325, 0.000515511085, -0.00465535047, 0.0216863733, 0.0227216519, 0.00921534654, -0.0142487092, -0.0142623316, -0.0249965414, 0.0248467, 0.0138741024, 0.000409088476, -0.0247104764, -0.0282522216, 0.0159514714, -0.000725376478, 0.0539434887, 0.00341914548, 0.0251327623, 0.0296689197, -0.0177359655, 0.0335648395, 0.0275438726, 0.00615037512, 0.00178960257, 0.0165236, 0.00351790572, 0.00217272388, -0.0134245725, -0.0132202413, 0.0115651572, -0.030322779, 0.00548629789, 0.00637513958, 0.0192888845, -0.0301048271, 0.0190573093, 0.0216182619, -0.00591879943, 0.0195068382, 0.0184170697, -0.0220950358, -0.0106865326, -0.0236343313, 0.0074240407, 0.00711073261, -0.00109487574, 0.00824817736, 0.00133411377, -0.0105435, 0.00670207, 0.0198746342, -0.0290150587, -0.0149025703, -0.0137651255, -0.0117490552, 0.00263587502, -0.000392486574, 0.0025745756, 0.0138128027, -0.01041409, -0.00826861057, 0.0417108499, 0.00478476, -0.00633767899, -0.0108363749, -0.0142895756, 0.0148753263, -0.00242473255, 0.0102438144, 0.00332379085, -0.0343004316, 0.00299004954, -0.0344911404, -0.0182399824, 0.0479497686, 0.0127502792, 0.0121781519, 0.00361666572, 0.039313361, 0.0155019425, 0.00579279521, -0.0220405478, -0.0132883517, -0.0270943437, 0.0254869368, 0.00379375299, 0.0039265682, 0.00724695344, -0.022326611, 0.00950822141, 0.0426099077, 0.00779864844, 0.0237160642, -0.0267265476, -0.00678380253, 0.0384143032, -0.00357920513, -0.0150932791, -0.0155564304, 0.00505720219, -0.00316713681, -0.00734911952, 0.00488011492, 0.0127298459, -0.0130703989, -0.0227625184, -0.00346682267, -0.00997137278, 0.0228306279, -0.0102506252, -0.00180322456, -0.0101416484, -0.031003885, -0.0174090359, -0.0180356521, 0.0122735063, -0.00908593647, 0.0108908638, -0.000832224789, 0.00291172252, 0.0116741341, -0.0111360615, -0.0202015638, -0.0123961046, 0.00764880562, 0.000621508, 0.100912467, 0.00269887713, 0.0329654664, 0.0411932096, 0.0616808385, 0.0178449415, 0.0053432663, 0.0351177566, -0.0289333258, 0.0102506252, 0.0139490236, -0.033237908, 0.00833672099, 0.00313989259, -0.0263042618, -0.0124097271, -0.0311673488, -0.00213526306, 0.0187576227, 0.0118171657, -0.00626275735, 0.00852743071, 0.0107137766, 0.045334328, 0.0294782091, 0.00315862289, 0.00636151759, -0.0388229676, -0.0547335707, -0.00101399457, 0.0103936568, -0.00679401914, 0.00599372108, -0.0148753263, 0.000534667168, 0.00719927624, -0.031712234, -0.0402124189, -0.0202696752, 0.00623891875, -0.0252417382, 0.0114561804, 0.00611291453, 0.00476773269, 0.00788038131, -0.00935156737, -0.0229940936, 0.0261816625, -0.00340892887, 0.0339735, 0.00935837813, -0.0415473841, 0.0204740055, 0.00228170073, -0.0118035441, 0.00610269792, -0.0187848676, -0.043018572, -0.0137923695, 0.00847294182, -0.0277754478, -0.0101688923, 0.0217272397, -0.00102846802, -0.0141669773, -0.00925621204, 0.0138128027, 0.0225036982, 0.00392316282, 0.0022578619, 0.00867727306, 0.00744447391, 0.0108159417, -0.0282794666, 0.00462470064, 0.0104345232, -0.0243971683, 0.00927664526, 0.00806427933, 0.00728100911, -0.0186077803, 0.00554078631, -0.0135131162, 0.0344638973, -0.0220405478, -0.0162239131, -0.00832309946, -0.0338917673, 0.0381418616, 0.000857340521, -0.0177495871, -0.0129137449, 0.0272850525, 0.0142214652, -0.0258002449, 0.000469536521, 0.0204331409, -0.0288788378, -0.00432160916, -0.00709711062, 0.0322571173, -0.00795530248, -0.0192616396, -0.011939765, 0.000279040076, 0.00118086522, 0.00226467312, 0.0258819778, -0.00280955667, -0.00459405081, -0.0217681043, -0.00591879943, -0.0136289047, 0.00122683973, -0.0380328856, 0.00307689025, 0.0165099762, 0.000290959404, 0.0425281748, -0.00489033153, 0.00237535243, 0.0120623633, -0.0316849872, -0.0531806536, 0.00770329358, 0.0233346466, -0.0246287454, 0.031848453, 0.0154746976, 0.0388774537, -0.0202288087, 0.00605502026, 0.0109453518, -0.014044378, 0.000516788161, 0.013465439, 0.00806427933, -0.0148889478, 0.00590858283, 0.00741041871, -0.00409003347, -0.0120078754, -0.0108636199, -0.00307348487, -0.0172591917, 0.0262089074, 0.00296791364, 0.033210665, -0.00571787357, -0.0101416484, 0.0267265476, -0.0120896082, -0.00812557898, -0.0366706736, -0.0501565486, -0.00836396497, -0.0257866234, 0.0304045118, -0.00245367945, -0.0125868144, -0.0049073589, -0.0111701163, -0.0054249987, 0.0211959779, 0.0157198962, -0.0265630819, 0.00683147972, -0.0256504025, 0.00881349482, -0.0200244766, 0.016332889, -0.00833672099, -0.0306769535, 0.0122735063, 0.00356898853, 0.00234300015, 0.0378149301, -0.00166104396, -0.0181854945, -0.0112790931, -0.0172864366, -0.0175043903, 0.0291240364, 0.0240566172, -0.00210291077, 0.0414656512, 0.0101348376, 0.010202948, -0.00143372535, -0.000595966587, -0.00308029586, 0.0110611394, -0.00328973564, 0.0213185754, 0.018117385, 0.0329382233, 0.0152022559, -0.0134586282, 0.000131964029, 0.0119874422, -0.0114970468, -0.0183489602, -0.00877262838, 0.0141533548, -0.000205608478, -0.0327747576, -0.0285246633, -0.0162239131, -0.00992369466, 0.0307859313, 0.0291240364, -0.0176951, -0.0016108125, -0.0123620499, -0.0013256, 0.0151886344, -0.0243018139, -0.000944181345, -0.00436247559, 0.0113540152, 0.00657266, 0.0347635821, -0.0389591865, -0.0214275531, -0.0122190174, -0.0217544828, -0.0312490817, -0.00592220528, -0.028116, 0.00993050635, -0.0186895113, -0.0132611077, 0.0149025703, -0.00491076475, 0.0360440575, 0.0518184416, -0.00828223303, 0.014058, 0.000997818308, -0.0216318835, 0.0102506252, -0.00497887516, 0.0266448148, -0.0128388228, -0.0328292437, 0.0104685789, -0.0196294356, -0.000582770153, 0.0426099077, -0.023089448, -0.0072946311, 0.0157062728, 0.00274485187, -0.00971936341, 0.0381418616, 0.00546245929, -0.0123688607, 0.00390272983, 0.0275302511, -0.00134092476, -0.0271896981, 0.017381791, -0.0179130528, 0.0101484591, -0.0248330757, -0.0179130528, -0.00332379085, -0.0266311932, 0.00192071521, -0.0425826646, -0.0381963514, 0.00545905391, -0.0545156188, -0.0191799067, -0.00561570795, 0.0384143032, 0.00552716432, -0.00386526901, -0.00907912478, -0.00237024412, 0.00029819613, 0.00546245929, 0.00530921109, -0.0433182567, 0.00882030558, -0.0123688607, -0.0150115471, -0.00366434315, 0.0234163776, 0.0161694251, 0.0193706173, -0.0345728733, 0.0381146185, 0.011490236, 0.0202969182, -0.00674974732, -0.019302506, 0.00665779831, 0.00739679672, 0.00539775426, -0.0309221521, -0.0159378499, 0.00410706131, -0.0113540152, 0.00825498812, -0.00948778819, 0.0154610761, -0.00625254074, -0.0256367791, -0.0104004685, -0.00066833396, 0.00777821522, -0.0324750692, -0.0194795933, 0.0092221573, -0.00704262219, 0.00691661797, -0.000211993829, -0.0217817277, -0.00612313114, -0.00240089395, -0.0166870635, -0.0316849872, 0.0259364657, -0.0306769535, 0.00333400746, -0.0284974184, -0.00675996393, -0.0308949072, 0.0180628952, 0.0157062728, -0.0382780805, 0.0220405478, 0.0267265476, -0.0418743156, 0.0102710584, 0.000557654421, -0.0151069015, -0.0258547328, 0.0432092808, 0.0176406112, 0.031712234, -0.0392588712, 0.0198610127, -0.0038550524, -0.0360440575, 0.0376514643, -0.0221086573, 0.0222857445, -0.0314125456, -0.0117558669, -0.0160876922, 0.0114221256, 0.0235934649, 0.0208145585, -0.00146437506, -0.0100599155, -0.0483311862, -0.0154610761, 0.00941967778, -0.00042015643, 0.00208928855, -0.0130976429, 0.00898377, 0.0337555483, -0.0190164428, 0.0425009318, -0.0408662818, -0.00953546539, 0.0238659084, -0.0283884425, 0.0235798433, 0.0452525951, -0.0199563671, -0.0104072792, 0.0244925246, 0.0164554883, -0.00142095459, 0.032556802, 0.00496865856, -0.0114493696, -0.00081179163, -0.00272612134, -0.0327202678, 0.00796211325, 0.0108295642, -0.00901782606, 0.0369158722, -0.0162239131, -0.00237705535, -0.00559186935, -0.0119874422, -0.00526153343, -0.00993731711, -0.0448439308, 0.0214820411, 0.0218362156, 0.0156654082, -0.00448507443, 0.00368137076, 0.00912680291, -0.0167687964, 0.00464513386, -0.00986239593, -0.0170276165, 0.0144257965, -0.00969893, 0.0137038259, 0.00510487938, -0.00209950516, -0.0275711175, -0.000681956066, 0.0264677275, 0.00648752181, -0.0104345232, 0.0259773321, -0.0168505292, -0.0176133662, 0.0118103549, 0.00627978519, 0.0172047038, -0.0209916458, 0.00865002908, 0.0114834243, -0.0123211835, 0.000640238402, 0.0173136815, 0.00598350447, 0.0241792165, -0.0014362795, -0.0216999948, -0.00966487546, 0.0019224179, -0.063696906, -0.00199733954, 0.0232120473, -0.00371883158, 0.0321753845, -0.0101280268, 0.012804768, 0.037106581, -0.0218498372, -0.0066952589, 0.00504698558, 0.0111020058, -0.000331612828, 0.00706305541, -0.0173545461, 0.00245878776, 9.81216435e-05, 0.00851380825, 0.0103800353, -0.0232529137, 0.0182944722, 0.0642417893, -0.0299141165, -0.0222857445, 0.000674293609, 0.0197656583, 0.00050018623, -0.0101348376, 0.00959676504, 0.00651136041, -0.0158016291, 0.00690980675, 0.00665439246, 0.0144666629, 0.017381791, -0.0136561487, 0.0146028837, -0.0144121749, 0.00529218325, -0.0136084715, -0.0314670354, 0.00319267809, -0.00508104078, 0.011490236, 0.0373790227, 0.0131248869, 0.0299141165, 0.00738317473, 0.00252008718, -0.0173136815, -0.0119670089, 0.0366434306, -0.00319267809, 0.0236615762, 0.0155291865, 0.0247649662, 0.0185669139, 0.0351994894, 0.00410025, 0.0170684829, 0.035553664, -0.0194795933, 0.0227080304, 0.0067293141, -0.00858872943, 0.0238931514, 0.0107886977, 0.0107205873, 0.000576810504, 0.00741041871, 0.00215739897, 0.0156381633, 0.0143304421, 0.0108227534, -0.028742617, -0.0111428723, 0.0124982707, -0.0290695466, -0.00198201463, 0.0216727499, 0.0351994894, 0.00113233656, -0.0327475108, -0.0186214019, -0.0183217153, 0.00788719207, 0.0232120473, -0.0032386526, 0.0170003716, -0.0119193317, -0.00169169367, 0.00636492297, 0.016278401, -0.0217272397, 0.00637513958, 0.00533645507, 0.00873176195, -0.0188529771, -0.00363709894, 0.0130159101, 0.00339190126, -0.0348453149, 0.00104804977, -0.0162102915, 0.0207600705, 0.0029100196, -0.00323184161, 0.016251158, -0.0140988668, 0.0134518174, -0.024901187, -0.000176342248, -0.0167687964, -0.0204195175, 0.0122122066, -0.0258683544, 0.00151375507, -0.000444420788, 0.0067531527, 0.02082818, -0.0132066198, 0.00926302373, 0.00155462138, 0.000931410643, -0.00676336931, 0.0100939712, -0.0110202739, -0.00103953597, 0.0278299358, -0.002557548, 0.00536369905, -0.0019394455, 0.0156790297, -0.00626275735, 0.0214956626, 0.0242064595, 0.00924259052, 0.0163601339, 0.0116332676, 0.0133768953, 0.0305134896, -0.000737295777, 0.0249965414, 0.00436928635, -0.0114970468, 0.0225036982, 0.0105707441, 0.00521385623, -0.00634108437, -0.0295871869, 0.00645687245, -0.00950822141, 0.0383870602, 0.00597669324, -0.0144394189, -0.000406534353, -0.0134722507, -0.0195068382, 0.00594604388, 0.0149025703, -0.0194932148, -0.00514234044, -0.00809833407, 0.0115242908, -0.0103800353, -0.0113812592, -0.00099271, 0.00195817603, -0.00597669324, 0.0132134305, 0.0124029163, -0.0145483958, 0.00942648854, 0.0278708022, -0.00205012504, 0.00217612949, -0.033210665, -0.0116060236, 0.00680423575, 0.0161421802, -0.0152022559, 0.0153112328, 0.0216046404, 9.76959491e-05, 0.0229668487, -0.0177495871, -0.00194285112, 0.009440111, 0.0115311025, -0.018880222, 0.000614696939, 0.00670547551, 0.00385845802, -0.00640578941, 0.00753982877, 0.0232256688, 0.00755345076, 0.0107205873, -0.00976704061, -0.00645687245, -0.00514234044, -0.00504017435, 0.0192071516, 0.00174022245, 0.0236888211, -0.0132611077, -0.00926302373, -0.00865002908, 0.00255925069, 0.0311945938, 0.0102370027, -0.0111292498, -0.00193263451, -0.0035621773, 0.00985558424, -0.015515564, -0.00453615701, -0.0172183253, -0.015910605, -0.0141397333, 0.00238897465, -0.0148208374, -0.0137855588, -0.0132474862, -0.0113472035, -0.00719927624, 0.0334286168, -0.00642622262, -0.00874538347, -0.0125527587, 0.0213185754, 0.00625254074, -0.00457021222, 0.00438971957, 0.00590858283, -0.0246287454, -0.0222040117, 0.0157607626, -0.00563954655, 0.00362688233, -0.0126821687, -0.0153520992, 0.00384824141, 0.000446549238, 0.0131112644, -0.00172319484, -0.00698132301, 0.0101007819, 0.0115311025, -0.052935455, 0.0106524769, -0.0109589742, 0.0175725, 0.0325023159, 0.0014226574, -0.00455659, -0.0200381, -0.017776832, -0.0201879423, -0.0165644661, 0.0390954092, 0.0494754426, 0.0406755693, -0.00152397167, -0.0235798433, 0.00479497667, -3.85515887e-05, 0.012307561, -0.00575874, -0.0250782743, 0.00594263803, 0.00672590872, -0.00384824141, 0.0066952589, -0.0171910822, 0.0190436859, -0.0105366893, 0.00100633211, 0.00976023, -0.00923577882, -0.00241111056, -0.00432501454, -0.0182263609, -0.0116809448, -0.00529218325, 0.0121781519, 0.000928005087, -0.00498568639, 0.000124727288, -0.0265085939, 0.00478135468, 0.0102710584, 0.00201096153, 0.00545224268, 0.0248739421, 0.0224900767, 0.00345149799, 0.00537051028, 0.0227352735, -0.0235934649, -0.00594263803, 0.00600734306, -0.0126140583, 0.000440589589, 0.00121662323, 0.00531261647, 0.00710392185, -0.00356558291, -0.030322779, -0.00423987675, -0.00174703344, 0.00912680291, 0.0217681043, 0.0119806314, 0.0048494651, 0.0187712442, 0.0416018739, 0.0202696752, 0.031031128, -0.0231439359, 0.0025337094, -0.00807109, 0.00587452762, 0.00167466607, 0.0203377847, -0.00325227482, -0.0126276808, -0.0154202096, -0.0343276747, 0.00232256693, 0.0111224391, 0.032665778, -0.0391226523, 0.0138741024, -0.0132815409, -0.016332889, -0.015120524, 0.0258411113, 0.00431820378, 0.000349279, -0.0168777741, -0.00216080458, -0.00639216742, 0.0207328256, -0.00270909374, -0.00122513704, -0.0094332993, -0.0128796892, -0.0181037616, 0.000306071423, -0.0112177934, 0.0195613261, -0.007029, -0.0437541641, 0.0113540152, -0.0060720481, 0.0104958229, 0.0308949072, -0.00207396364, 0.00807109, -0.00114510721, -0.007029, 0.00184919918, -0.0163192675, 0.00294748042, 0.0211414881, -0.0217817277, -0.00124557014, 0.0135676051, -0.006429628, 0.0324478261, 0.00321992231, 0.00808471255, 0.0321753845, 0.00605161488, -0.00499930838, 0.00547948712, -0.00993050635, 0.00251157349, 0.0111292498, 0.00888160523, -0.0111837387, -0.00601415429, 0.00951503217, -0.0107682645, 0.00458042882, -0.0324478261, -0.0308949072, 0.00955589861, 0.0114561804, -0.00541818747, 0.0190164428, 0.0155972969, 0.016278401, 0.0116877565, 0.0266311932, 0.0144802853, 0.0205284953, 0.00501633575, 0.0190845523, -0.0143985525, 0.0107001541, 0.000359495549, 0.0162375346, -0.00418879371, -0.0238250419, 0.0191390403, -0.0138672907, 0.0488215834, 0.0187848676, 0.022272123, 0.0171229709, 0.0152976112, 0.0123552382, 0.00100207527, 0.0110883843, -0.0381691046, -0.0186077803, -0.0135744158, -0.0127570909, 0.00206034165, 0.013622093, -0.0179402977, -0.00433523115, 0.000196349705, -0.00296450802, -0.0273259189, 0.0285246633, -0.0228306279, -0.012702602, -0.00518320641, 0.00026648221, -0.0048256265, 0.0116605116, 0.0100258607, 0.0198610127, -0.0111769279, 0.00411727792, 0.0166325755, 0.0234163776, -0.00335954875, -0.016401, 0.0287153721, -0.0253370944, 0.00616740296, -0.0346001163, 0.00212334376, 0.0128252013, 0.020351408, 0.00449529057, -0.0548153035, -0.0218498372, 0.0163056459, 0.00778502645, 0.00055339752, 0.00580301182, 0.0134041402, -0.018539669, 0.00896333717, 0.00570765696, -0.00134433038, -0.00752620678, 0.0113403928, -0.00909274723, 0.00331357424, -0.00236173044, -0.0225854311, -0.00613334775, -0.00342084817, -0.0278163143, 0.0173136815, 0.0200381, 0.007757782, -0.000947586843, -0.00328292442, -0.00835715421, -0.00308880955, 0.00954908784, -0.00514234044, 0.0116060236, 0.027216943, 0.0264404826, -0.0031739478, 0.0153248552, 0.0249284301, 0.0253234711, 0.0150796575, 0.0262770187, 0.020065343, 0.0121372854, 0.0137310699, -0.0144939069, -0.00163294841, -0.00822093338, -0.00790081453, -0.00813920051, -0.0214820411, 0.013043154, 0.0148480814, -0.00299515785, -0.0331289321, 0.00370180397, 0.0213321988, 0.00710392185, 0.00314670359, 0.0122735063, 0.0600461885, 0.000162294469, 0.0131453201, -0.0098692067, 0.0146846166, -0.0322298743, 0.00553397555, -0.0255278032, -0.00732187508, 0.00609248132, -0.00460426742, -0.000962911698, 0.016278401, -0.0275983606, -0.016401, -0.00661012065, 0.0133019742, 0.00789400283, 0.022667164, 0.0176678542, 0.013043154, -0.0152976112, 0.00181344117, -0.0265085939, 0.0129818553, -0.0164554883, -0.00167977437, -0.0105843665, 0.0130703989, -0.00966487546, -0.00273122964, -0.00581322843, 0.00207566656, -0.0255550463, 0.0216182619, 0.00922896806, -0.00372223696, -0.00142095459, -0.00800298, -0.00974660739, -0.00230043102, 0.00627637934, -0.00367115415, -0.00496184733, 0.0217408612, 0.00958995335, -0.000520193717, -0.0161694251, -0.0138877239, -0.0168777741, -0.000996967, -0.000448677689, -0.0193433724, 0.0351177566, 0.00761475, -0.00396743463, 0.010597989, -0.0199563671, 0.0195749477, -0.00498909177, -0.00478476, 0.00391975744, -0.0243154373, -0.00588474423, 0.00077901344, 0.0110270847, -0.0195477046, 0.00301388814, 0.00650114426, 0.00500952499, -0.00984196272, -0.0220405478, 0.00399467908, -0.0202015638, -0.00164486782, 0.0227352735, 0.014779971, 0.00959676504, 0.00289469492, -0.0158288721, 0.00665439246, 0.00714478781, -0.0291240364, -0.0224219654, 0.0191662852, 0.00770329358, -0.0132474862, -0.000529984594, 0.013438195, 0.0146573726, 0.00837077666, 0.00497206394, -0.00270909374, -0.00177598046, 0.029450966, 0.0155291865, -0.0300230943, -0.0251872502, -0.0146573726, 0.0216046404, 0.0028742617, -0.0180492736, 0.0168369077, -0.0383598134, -0.00184919918, -0.0067293141, 0.000345873472, -0.00916085765, -0.000686638639, 0.0106456662, -0.00116979727, 0.00269206613, 0.0145347733, 0.0052411, 0.00778502645, 0.0137446923, -0.0157880057, 0.00662714848, -0.016251158, -0.00933113415, -0.0178449415, -0.0347908251, 0.0164418668, -0.0256504025, -0.0171365943, 0.0179539192, -0.0209780242, -0.00379034737, -0.0258956, 0.0159923378, -0.0181718729, 0.0118171657, 0.00380396959, -0.0472686626, -0.00545564853, -0.00281466497, 0.0295871869, 0.00121066358, -0.000545735122, -0.00877262838, 0.0106184222, 0.00865684077, -0.0051968284, -0.0163192675, 0.0142350877, -0.00294066942, -0.0162102915, 0.00730144186, 0.0105094453, -0.0216182619, -0.0210597571, -0.0161966681, -0.0165372211, 0.0149025703, 0.00333400746, 0.00527175, 0.000607460213, 0.00236854143, -0.0244789012, -0.00199393393, -0.00161166396, -0.0178040769, 0.00918810163, 0.000458468567, -0.0155972969, 0.0209371578, 0.0142350877, 0.012832012, -0.00165508431, 0.0219179485, -0.00749215111, 0.0221359022, 0.00963763148, -0.00776459323, -0.00587112224, 0.00954227615, 0.0162239131, -0.017041238, 0.013438195, 0.000144202626, 0.00618102495, 0.00273463526, -0.0181718729, -0.0092698345, 0.00731506431, 0.0183625817, 0.0152295, -0.0205284953, 0.0157471392, 0.00888160523, 0.00938562211, 0.034872558, 0.0131112644, 0.00961719826, 0.00818006694, -0.00263076671, 0.00606864272, 0.000525301963, -0.0433182567, -0.00930389, -0.00312627037, 0.00385845802, -0.0123348059, 0.00321651669, -0.00414792728, -0.00179981906, 0.0159650929, -0.0140307564, 0.0109317303, 0.0119738197, -0.00988282915, 0.00442718, 0.00122769119, 0.0178585649, 0.0240838602, 0.00342084817, 0.00637854543, -0.0200925879, -0.014698239, -0.000342893618, 0.0234027561, -0.0053024, -0.00916766841, -0.00131027505, -0.00501633575, -0.00377331977, 0.00148821366, -0.0110883843, 0.0041206833, -0.0131861866, -0.00509806862, 0.0164963547, 0.00553397555, 0.00517980102, -0.00119023037, 0.00206885533, -0.0092698345, -0.00686212955, 0.00395721802, -0.0194795933, -0.0177632105, 0.00160910981, -0.00448507443, -0.00784632564, 0.0102642477, -0.0097738523, 0.0193433724, 0.0192888845, -0.0132202413, -2.27212258e-05, 0.00392997405, 0.00873857271, 0.00756026199, 0.0141533548, 0.00730144186, -0.00272101304, 0.0145347733, -0.00303602405, -0.00325908582, 0.00277379877, -0.0100122383, 0.0125936251, 0.0223674774, 0.000104028099, -0.00558505813, 0.0159242265, 0.00610950869, -0.0195613261, 0.00339190126, 0.0106184222, -0.0034566063, -0.00965806376, 0.0213049538, 0.027244186, -0.0081460122, -0.00991007313, -0.0123484274, 0.0184306931, -0.0126617355, -0.0219588149, 0.00197009533, -0.0128183896, 0.00247411267, -0.0410842337, 0.0137583138, 0.00511850137, 0.031712234, 0.0270534772, -0.00935837813, -0.0181582496, 0.0237024426, -0.0208826698, 0.00659990404, 0.0143304421, 0.00122854253, 0.0139490236, -0.0335103497, 0.00269376906, 0.0172591917, 0.0201879423, 0.00963763148, 0.0037971586, 0.0111020058, -0.0150932791, 0.0124233495, -0.0324750692, 0.0209371578, 0.0283067096, -0.0206102263, 0.0204331409, -0.0213321988, -0.0180356521, -0.00496525317, -0.004444208, 0.0195613261, 0.00916766841, -0.0147663495, 0.00920172408, -0.0141669773, -0.010230192, -0.00325397751, -0.0166461989, -0.0150796575, -0.0125868144, -0.0165644661, -0.00206034165, -0.0286063962, -0.0101075936, -0.0180492736, -0.0140307564, 0.00216080458, -0.005666791, 0.00888841599, 0.0222448781, 0.00745128514, 0.0153929656, 0.0129273664, 0.0161830466, 0.0122666955, 0.0245197676, -0.027639227, -0.00822774414, -0.0125936251, 0.00932432245, -0.0203922745, 0.00888160523, -0.0127298459, 0.0247785877, -0.0263723731, 0.00794849172, 0.009440111, -0.00362007134, -0.0136152823, 0.0119670089, 0.00365412654, -0.0178721864, -0.00385845802, -0.00535348291, 0.00721289823, -0.00504358, 0.0137106366, 0.0164691117, -0.000686212967, 0.00812557898, -0.0131180761, -0.0142895756, -0.00496865856, 0.0316849872, -0.00108040229, 0.0178721864, 0.00897014886, 0.00804384612, -0.010257436, -0.00621848553, 0.0146301286, 0.0144666629, -0.00658968743, 0.0243835468, 6.77379867e-05, -0.00398105662, -0.0191799067, -0.0250782743, -0.0019019848, -0.00377331977, -0.0191254187, -0.00419219909, -0.0167687964, 0.0375969782, -0.0144939069, 0.00853424147, -0.00778502645, -0.00749896234, -0.00753982877, -0.0112382267, 0.000517213834, -0.0238386635, -0.00323013891, -0.020119831, 0.00169935613, 0.00488692615, 0.0346546061, 0.019670302, 0.021168733, -0.00236683874, 0.0184306931, 0.0208962914, 0.00631043455, 0.0213049538, 0.000230937047, -0.0057008462, 0.0125255147, 0.0213594418, 0.000464428245, -0.00525472267, -0.00160144735, -0.0082005, -0.0245061461, -0.00380056398, -0.0126140583, 0.0084116431, 0.00818687771, -0.00931070093, 0.0296144318, 0.00848656427, 0.00477113808, -0.031003885, 0.0034906615, -0.00598691, 3.91901231e-05, -0.0268900115, -0.0038380248, -0.0182263609, 0.00998499431, -0.0164282452, 0.000811365957, -0.00888841599, -0.0272850525, 0.0039265682, -0.00907231402, -0.019697547, -0.011149683, 0.00735593028, 0.0183353368, 0.0449801534, 0.0250782743, -0.0019241207, -0.00862959586, -0.00689277938, 0.000289682328, -0.00780545967, -0.0102778692, -0.00890884921, -0.0182944722, 0.0159923378, -0.00793486927, -0.00392316282, 0.0168777741, -0.00474729948, -0.0253234711, 0.0232937802, 0.0149706807, 0.00477454392, -0.00296621071, 0.00398105662, 0.0096035758, -0.00661352649, -0.0308131743, 0.0090042036, -0.003780131, 0.0192888845, -0.00420922693, -0.0118716545, 0.0104413349, 0.0126617355, 0.0097738523, 0.00731506431, -0.0117354337, 0.0202288087, -0.00598009909, 0.00156568934, -0.0123007502, 0.0105435, -0.0156381633, 0.00344979507, 0.00140733249, -0.000505294534, 0.0223674774, 0.00485287094, -0.021168733, -0.0153248552, 0.0132883517, 0.0101212151, -0.00954227615, 0.00233278354, 0.000375884643, -0.00743085193, 0.00648411643, -0.0071243546, -0.00153078279, 0.00114340452, 0.00178279146, -0.0113199595, 0.000163784382, -0.00675655808, -0.00110849785, 0.00644665584, -0.00234981114, -0.0133360298, -0.00596988248, -0.00817325618, 0.00688596815, -0.0156381633, -0.0175997447, -0.00390613521, -0.0151613895, -0.000843718415, 0.0243563037, -0.00470302766, -0.00365072093, -0.00389591861, -0.00410025, -0.0125595704, 0.0039265682, 0.00757388398, -0.0103391688, 0.00995094, 0.00845932, 0.0142623316, 0.0090042036, -0.00714478781, -0.0156381633, 0.0112382267, -0.0240838602, 0.0277073383, -0.0148753263, 0.00336635974, 0.00436247559, -0.00555100292, 0.0231166929, -0.010597989, -0.00514234044, -0.00428074272, 0.000654286181, -0.0151613895, -0.0214820411, -0.0218770821, -0.000251157355, 0.00143287389, -0.00410025, -0.00557484152, -0.00838439818, -0.000773905194, 0.0122462623, 0.00822093338, 0.0264677275, -0.0290695466, -0.0072946311, -0.0116809448, 0.00838439818, -0.0128660668, 0.00911999121, -0.00489714276, 0.00333400746, 0.0192343965, -0.0107001541, -0.0174090359, 0.00835715421, -0.00528537203, -0.0175725, 0.01138807, 0.0276800934, 0.0218770821, 0.00473027211, -0.0106184222, -0.0108363749, -0.00507082418, -0.000889693, -0.0055067311, -0.0075943172, 0.0014141436, -0.0117626777, -0.000218592031, -0.0213594418, -0.0260045771, 0.00988964, -0.014017134, 0.0372428037, -0.00245878776, 0.0051968284, -0.00466216123, -0.0187712442, 0.0221086573, 0.00618102495, -0.0113403928, 0.00242984085, 0.00790081453, 0.023797797, -0.0243835468, -6.76116088e-06, -0.003878891, -0.00865002908, -0.00308029586, -0.00362688233, -0.00331527693, 0.00543181, -0.00783270411, 0.00942648854, -0.0120827965, 0.0101552708, -0.0129001224, 0.00563614117, 0.0108023202, -0.00760793919, 0.00792805851, 0.00301899645, -0.0132679185, 0.0046962169, 0.0191117972, -0.00370520935, -0.023852285, -0.0137106366, 0.00369839836, -0.0128796892, 0.0172591917, -0.00157931144, -0.00765561638, 0.0116060236, 0.0139762675, -0.00253541209, 0.0202288087, -0.0134586282, -0.019697547, -0.0156381633, -0.00783951487, 0.000180173476, -0.00780545967, -0.0127502792, -0.00042654181, -0.00713116582, 0.0127707124, 0.00110083539, -0.00246900436, -0.0124846483, 0.00994412787, 0.00708348863, 0.0116400784, -0.00642622262, 0.0105571225, -0.0139285903, 0.0102778692, -0.0383325703, -0.00099271, -0.0153384767, -0.00828904379, -0.0122394506, 0.0112177934, -0.00591198867, -0.00715159904, 0.0110270847, 0.0159923378, -0.00889522675, -0.00238046073, -0.0044782632, -0.00396062341, -0.00698813377, 0.00105230673, -0.0318757, -0.0288788378, -0.00926302373, -0.00273293257, 0.017013995, 0.00504358, -0.0104209017, 0.0254052039, 0.00303261844, 0.00517299, 0.00758069474, -0.00903144758, 0.0137923695, -0.00052487629, 0.0206919592, 0.0019241207, 0.00651136041, -0.00293385843, -7.60921603e-06, -0.00345149799, 0.000154419206, 0.0182263609, 0.0216046404, -0.00367796514, -0.00713116582, 0.0285519082, -0.020800937, -0.0141261108, -0.0019683924, 0.00507082418, 0.0131453201, -0.00784632564, -0.0219724365, 0.00127281435, 0.0187167563, 0.000941627193, 0.00215229066, -0.0073763635, -0.00864321832, -0.011571968, 0.0106456662, -0.0283611976, 0.00485968171, 0.00496865856, -0.00822093338, -0.018117385, 0.00281636789, -0.00323184161, -0.00238727196, 0.00353152771, -0.0233346466, -0.00535348291, -0.0122462623, 0.0256776456, -0.00217442657, -0.0012821795, -0.00995094, -0.00844569784, -0.0205284953, 0.0122326398, -0.0161558036, 0.00898377, 0.012804768, -0.000574256352, -0.0141124884, -0.0122053958, -0.0148480814, 0.0156245409, -0.0137310699, 0.010754643, 0.000294364931, 0.0245197676, -0.00720608747, 0.00963763148, -0.00612653652, 0.0181582496, -0.00356898853, 0.0149843022, -0.00418198248, -0.0189210884, 0.0154610761, -0.00087521947, -0.00963082, -0.0132883517, 0.0211006217, -0.00146607775, 0.00486989832, -0.0077237268, -0.0014260629, -0.023852285, -0.00465194508, -0.0126617355, 0.00415133312, 0.0218498372, -0.0189210884, 0.0133768953, 0.0285519082, -0.027216943, 0.0126549248, 0.00322332792, -0.0092698345, -0.00952865463, 0.0178858079, 0.0144257965, 0.0222040117, -0.0156790297, -0.00226467312, -0.0255550463, -0.00892928243, -0.0115651572, 0.00414792728, -0.00827542134, -0.0102438144, 0.00343617308, 0.0120827965, -0.0216727499, 0.00919491332, 0.00736955227, 0.0042500929, 0.00611291453, -0.0134245725, 0.00859554112, -0.002222104, -0.0117081888, 0.0191117972, 0.0296416748, -0.0112314159, -0.000184749646, -0.00903144758, -0.0131725641, 0.0218498372, -0.011333582, -0.00745128514, -0.002557548, 0.00309732347, -0.00800298, -0.021509286, 0.0188665986, -0.00239919126, 0.00129154476, -0.0376242213, -0.00181854947, -0.00344809238, 0.0183353368, 0.00175214175, 0.0193978604, 0.00807109, -0.004549779, 0.00282999, 0.0154202096, 0.00075645186, 0.0232529137, -0.0291785244, -0.0128456336, -0.0223674774, 0.0163465124, 0.00483924849, -0.00602777628, -0.0130499657, 0.0180220287, 0.000910126138, 0.0146709941, 0.01001905, -0.0118784653, 0.00542159332, 0.00969893, 0.0041445219, 0.00193774281, -0.0114016924, 0.0339735, -0.010754643, 0.0064739, 0.0150387911, -0.0109044854, 0.0114970468, -0.00275506848, -0.00732187508, -0.0137855588, 0.0045838342, -0.000755600515, 0.000611717114, 0.00177938596, -0.0275574941, -0.0268355235, -0.010230192, 0.00657606544, 0.00498568639, -0.00218975148, -0.00231405301, 0.0123279942, 0.000899058185, -0.00679742452, 0.00594944926, -0.00682807434, -0.0146709941, 0.00404576166, 0.00458042882, 0.043808654, 0.00346682267, -0.0204740055, -0.0206102263, -0.00952865463, 0.00756707275, 0.0254869368, -0.00363709894, -0.00848656427, -0.0225718077, -0.00226467312, -0.0115242908, -0.0118444106, 0.00668163691, 0.00629340718, 0.00758069474, -0.0306224655, -0.030322779, -0.00365753216, -0.0360985473, 0.0197111685, 0.0240021292, 0.0243563037, 0.00638195081, -0.00257798121, -0.000429947308, -0.0192071516, -0.00956952, 0.0136629594, -0.0231848024, -0.0025626563, -0.0131453201, -0.015910605, -0.00155291869, 0.0176951, 0.0125323255, -0.0093924338, -0.0233891346, -0.00575874, 0.00917448, 0.00810514577, 0.00266993023, 0.0130295325, 0.0130499657, -0.0165099762, 0.00290661422, 0.028742617, -0.020800937, 0.00509466277, 0.00145671261, 0.0120487418, 0.00415133312, -0.000453786, 0.000966317253, 0.0169731285, -0.00863640755, 0.00505379681, 0.0150524136, -0.0232256688, 0.00852061901, -0.00779183721, -0.021591017, 6.55563272e-05, 0.0267265476, 0.0071243546, 0.0120827965, -0.00337146805, 0.00849337503, -0.0125459479, 0.00995094, -0.0038550524, -0.00372223696, -0.00736955227, -0.00421263231, -0.0158424936, 0.00616059173, -0.0152703663, 0.0141942212, -0.0106592877, 0.0203241631, -0.016673442, -0.00731506431, -0.023430001, -0.00991688389, 0.00476773269, -0.0163737554, 0.00706305541, -0.00658628205, 0.0136902034, -0.00756026199, 0.00835715421, 0.0074580959, 0.0240702387, 0.0149025703, 0.00138860219, 0.00687234616, 0.0111020058, 0.00414111651, 0.01548832, -0.00963082, 0.00571106281, 0.00290491129, -0.00603458751, -0.0197656583, -0.0121917734, 0.0176406112, -0.0127434684, 0.0280615129, -0.0129069332, 0.00283169257, 0.0155291865, -0.00242643547, 0.00717203226, 0.00967849698, -0.00116894592, 0.0106048, -0.0241111051, -0.00197860901, 0.0209916458, 0.0142895756, -0.00362347672, -0.00142010325, 0.0175725, -0.00371202035, -0.007029, 0.024247326, -0.00409003347, 0.00418198248, -0.00899058115, 0.00371883158, -0.00965806376, 0.000567871029, -0.0230213385, 0.024533391, -0.00968530867, -0.018485181, 0.0124301603, -0.0227080304, -0.0120896082, 0.00147969986, -0.0151886344, 0.0141261108, 0.0228170063, -0.00991688389, 0.00779183721, -0.0080234129, 0.0149706807, 0.0291785244, -0.00286404509, 0.00622529676, -0.00660331, -0.00609929208, 0.0173000582, 0.0140988668, 0.00815963373, 0.0136561487, -0.00893609319, 0.0225036982, 0.0232529137, -0.0111837387, -0.00962400902, 0.0047438941, -0.000223274619, -0.00710392185, -0.00430117594, -0.0298596285, 0.0116400784, 0.0180220287, 0.000999521115, -0.00563614117, 0.00281296228, -0.012096419, -0.0183762033, -0.0300503373, 0.0175316334, -0.00338509027, 0.00243324647, 0.00207226095, -0.00339871226, -0.0144530414, -0.0211142451, -0.0271760765, 0.00324205821, 0.000876070873, -0.0167960413, 0.0256504025, -0.00853424147, -0.0164827332, -0.0336193256, 0.0055305697, -0.00788719207, -0.00542840408, 0.016251158, -0.0101144044, -0.00800298, 0.0143713085, -0.00318927271, -0.000154844893, -0.00448848, -0.0102506252, 0.0109044854, 0.00521385623, -0.00382440281, 0.0189210884, 0.000467833772, -0.00563614117, -0.00177768315, 0.00395040726, 0.0256912671, 0.00317224488, -0.0179811623, 0.00731506431, -0.0305679776, -0.00726057589, -0.00911318, -0.00233789184, 0.00627978519, 0.0220133029, 0.000362475403, -0.00382780819, -0.00640919479, -0.0119193317, 0.00877262838, 0.0314125456, 0.00626616273, 0.000610014366, -0.00207226095, 0.00618102495, -0.030268291, -0.00768286083, -0.020460384, 0.00416836049, -0.0131861866, 0.006324057, -0.0198610127, -0.0138741024, 0.00253541209, -0.0145483958, 0.00329654664, -0.00352812209, 0.0290150587, 0.00180833286, -0.0114561804, 0.00676336931, -0.0103459796, -0.00809152331, 0.0172183253, 0.0120555526, 0.00342255086, 0.0028623424, -0.0060958867, -0.00738998549, 0.0274076518, -0.00608567, 0.00402532844, 0.00509806862, -0.0109794075, 0.00512190722, 0.0188121106, 0.00926302373, -0.0058302558, 0.00567360176, 0.0240566172, -0.0167279299, 0.000109721703, 0.00678380253, 0.014017134, -0.00877262838, -0.0240838602, 0.0055305697, -0.00134433038, -0.00238556904, -0.020065343, -0.014357686, -0.0143713085, 0.00546245929, -0.0149434367, 0.00837758742, -0.018594157, -0.00412408868, 0.012096419, -0.025296228, 0.0144257965, -0.0122871278, 0.0120078754, 0.00411387207, 0.00811876729, 0.000211036022, -0.0038380248, 0.034872558, 0.00167296338, 0.0107205873, 0.00177087216, 0.000112595117, -0.00127281435, -0.0101144044, -0.00315010897, 0.0158833601, 0.0141942212, -0.000976533804, 0.018199116, -0.0167960413, 0.024560634, 0.017436279, -0.016401, 0.0119057093, -0.0211414881, 0.0094809765, 0.00924940128, -0.0189483315, -0.00855467469, -0.00295769703, 0.0220677909, 0.00118341937, -0.002886181, 0.00376991439, 0.00991007313, 0.00206885533, -0.0081460122, -0.019697547, 0.00766242761, -0.000895652629, -0.0116809448, -0.00389251322, -0.0133087849, -0.0146846166, -0.0243835468, -0.00478135468, -0.00100037246, -0.00139115623, -0.0177632105, -0.00988282915, -0.0322026275, 0.00958995335, -0.00563614117, 0.0159923378, 0.00665779831, -0.022748895, -0.00958995335, 0.0159787163, -0.0120146861, 0.00430117594, 0.0380056389, 0.000563614129, -0.00105656357, 0.00251497887, -0.000537647, -0.00954227615, -0.0156245409, 0.0122598838, -0.0149570582, -0.0034974725, -0.00643984461, 0.0156654082, 0.00233959453, 0.00563614117, 0.0032267333, 0.0103051132, 0.0302138031, 5.88517e-05, 0.00297472463, 0.0119874422, -0.0024928432, 0.0058540944, -0.0220814124, -0.00118682487, -0.0128524452, 0.0226807855, 0.00184919918, 0.0177359655, 0.016332889, 0.00258138659, -0.00323695, 0.00166189543, 0.0126276808, 0.00732187508, -0.00526153343, 0.0014141436, -0.0106456662, 0.018144628, 0.0240838602, -0.0196158141, 0.0198337678, -0.0130772097, 0.00955589861, 0.00191220141, -0.00997818355, 0.00928345695, -0.0237296857, -0.00524450606, -0.010386846, 0.0317667201, 0.00380396959, -0.0169322621, 0.00825498812, 0.00606864272, 0.0244380347, -0.00878625, -0.0103323581, -0.00746490713, 0.00725376466, 0.00561230257, -0.0161830466, -0.0195068382, -0.00545224268, -0.0107205873, -0.0154338321, -0.0137310699, -0.000470387924, 0.0112518491, 0.0165644661, -0.0173681695, 0.00822093338, -0.0179675408, -0.0111428723, -0.000825839408, 0.0084116431, 0.00933794491, -0.00563954655, -0.0263859946, -0.0105298785, -0.00293556112, -0.0257457569, 0.0408662818, 0.0096035758, -0.00208077487, -0.0122053958, -0.00401170645, -0.0134858722, 0.00553397555, -0.00607545348, -0.019588571, -0.0105571225, -0.00502314698, -0.0234981105, 0.0156381633, -0.0076283724, 0.00827542134, -0.0129409889, 0.0137174483, 0.00512871798, -0.021986058, -0.0284156874, -0.00959676504, 0.00626956858, 0.014779971, 0.00596307125, 0.00989645068, 0.0138741024, -0.0103391688, -0.0134450058, 0.00771010481, 0.0190845523, 0.0221086573, -7.71031773e-05, 0.00548970373, 0.00264268601, -0.000482732925, 0.012307561, -0.0131861866, 0.015515564, -0.00817325618, 0.0115855904, -0.0325023159, 0.00748534035, 0.00400830107, 0.01548832, 0.00716522103, -0.0386595, -0.00436247559, 0.00760793919, -0.0028572341, -0.00971255265, 0.00307007926, 0.00591879943, 0.00895652641, -0.0019683924, 0.00714478781, 0.00895652641, 0.0150796575, -0.00968530867, 0.0135744158, 0.00656925468, -0.0167687964, 0.00235151383, -0.00901101436, 0.0117354337, -0.00839802064, -0.00967168622, -0.0206510928, -0.0031909754, -9.84409053e-05, -0.0318757, 0.0235526, -3.00377797e-05, -0.00719927624, -0.0209644, -0.0149025703, -0.00728782, -0.000235619649, -0.00382780819, 0.00429095933, -0.0177359655, 0.0015818656, 0.00804384612, 0.00449869642, 0.00277890707, 0.0169322621, 0.00471324427, 0.0236751977, 0.0243290588, -0.00518661225, 0.00157420314, -0.00610950869, 0.025350716, -0.000249667442, 0.0150524136, 0.000870536896, 0.000492949504, -0.0204467624, -0.0131998081, 0.0028504231, -0.00636151759, 0.0211959779, -0.00285382848, 0.00640578941, -0.0037971586, -0.00438971957, 0.0181718729, 0.0158288721, 0.00117064861, -0.0121100405, -0.00050231471, -0.00678380253, 0.0061299419, 0.00975341909, -0.0163465124, 0.021223221, -0.0177495871, -0.00209269417, 0.00875219516, 0.00698132301, 0.00660671527, 0.00478476, -0.00394019065, 0.0106048, 0.0116400784, -0.00441015279, 0.00961038657, -0.0137923695, -0.0198065229, 0.0129614221, -0.0121168522, 0.0170957278, 0.012859256, 0.00277039316, 0.0085001858, -0.00578939, 0.0174226575, -0.00285553141, -0.00520023424, -0.00906550325, 0.0021931571, 0.00432842039, 0.0150115471, 0.014044378, 0.00148651097, 0.0161966681, -0.00724695344, -0.0187712442, 0.0198746342, 0.0124233495, 0.00501293037, -0.00510487938, 0.034872558, -0.002215293, 0.0180628952, 0.0220541693, -0.016959507, -0.00284361187, 0.00301218545, 0.00380396959, -0.0133360298, -0.0119193317, 0.0167279299, 0.012832012, 0.00360644911, 0.0080234129, -0.0140035115, -0.00885436, -0.0134722507, 0.0205421168, 0.006994945, 0.0361802801, 0.0147118606, -0.0214820411, -0.00746490713, -0.00347874197, -0.00192922901, 0.00556803076, -0.0209507793, -0.00245538238, -0.0147935934, -0.0136289047, 0.0451708622, -0.00548289251, 0.00959676504, -0.018539669, -0.00391975744, 0.0102983024, -0.0150251687, 0.0116605116, 0.0194251053, 0.0274076518, -0.0176951, -0.00367455976, 0.012307561, -0.00557143614, -0.0103391688, 0.00448166858, 0.0209099129, -0.00867727306, -0.00462810602, 0.00135284418, -0.00468940567, -0.0035145, 0.0258411113]
29 Aug, 2024
Is 37.5 a rational or irrational number? 29 Aug, 2024 Number System A number system in mathematics is a system used to represent numbers on different bases. In real life, we use the number system of base 10 and in this number system, there are different types of numbers or it can be said the numbers are categorized based on their different properties. Rational and irrational numbers are different numbers in the number system, let’s learn about these terms in detail, Rational numbers Rational numbers are of the type p/q, where p and q are integers and q ≠ 0. Most people have difficulty distinguishing between fractions and rational numbers due to the underlying structure of numbers, the p/q form. When a rational number is divided, the result is in decimal form, which can be either ended or repeated. 3, 4, 5, and so on are instances of rational numbers since they can be written in fraction form as 3/1, 4/1, and 5/1. Below are some examples, The number 5 is expressed as 5/1, where 5 and 1 are both integers. 0.6 can be written as 3/5, 6/10, or 60/100, as well as in all termination decimal forms. √49 is a rational number since it can be reduced to 7 and expressed as 7/1. 0.66666 is a rational number with repeating decimals. Irrational Number Irrational numbers are real numbers that can’t be written as a fraction, p/q, where p and q are integers. The denominator q does not equal zero (q ≠  0). Furthermore, an irrational number’s decimal expansion is neither ending nor repeated. For example, √2 and √3, etc. are irrational numbers. 4/0 is an irrational number having a zero denominator. π is an irrational number with the value 3.142…and it generates a never-ending and non-repeating number as a result. 0.3131548525… is a irrational number since it is not repeating or ending. Is 37.5 a rational number? Solution: Yes, 37.5 is a rational number. Rational numbers are of the type p/q, where p and q are integers and q ≠ 0. Most people have difficulty distinguishing between fractions and rational numbers due to the underlying structure of numbers, p/q form. A rational number is a type of real number with the form p/q, where q≠0. When a rational number is divided, the outcome is a decimal number, which can be either ending or repeating. Here’s how 37.5 qualifies as a rational number: Expressing 37.5 as a Fraction: 37.5 can be written as 375/ 10 by multiplying both the numerator and the denominator by 10 to remove the decimal point. Simplifying: The fraction 375/10 can be simplified to 75/2 by dividing both the numerator and the denominator by 5. Checking the Form: Since 37.5 can be expressed in the form 𝑝/𝑞, where p=75 and q=2 are both integers and q ≠ 0, it fits the definition of a rational number. Thus, 37.5 is indeed a rational number. Here, Given 37.5 can be expressed as rational number in form of p/q. Therefore, 37.5 can be written as 375/10 or its showing 37.5 is terminating after decimal hence it is a rational number Related Articles: Understanding Rational and Irrational Numbers Difference Between Terminating and Repeating Decimals Introduction to Number Systems and Bases Sample Questions Question 1: How is 2 .57 a rational number? Answer: A rational number is a type of real number with the form p/q, where q≠0. When a rational number is divided, the outcome is a decimal number, which can be either ending or repeating. Here, the given number, 2 .57 can be expressed  in the form of p/q, and we can write 2.57 as 257/100. Hence, 2.57 is a rational number. Question 2:  Determine whether 5.22222… is a rational number. Answer: A rational number is a type of real number with the form p/q, where q≠0. When a rational number is divided, the outcome is a decimal number, which can be either ending or repeating. Here, the given number, 5.22222… has recurring digits. Hence, 5.22222… is a rational number. Question 3: Is 6.24  a rational number or an irrational number? Answer: A rational number is a type of real number with the form p/q, where q≠0. When a rational number is divided, the outcome is a decimal number, which can be either ending or repeating. Here, the given number, 6.24 can be expressed in the form of p/q as 6.24 = 624/100 = 312/50 and has terminating digits. Hence, 6.24 is a rational number. Question 4: Determine whether 8.25655848 is a rational number or an irrational number. Answer: A rational number is a type of real number with the form p/q, where q≠0. When a rational number is divided, the outcome is a decimal number, which can be either ending or repeating. Here, the given number 8.25655848 is an irrational number as it has non terminating and non recurring digits. Question 5: Is 7.89 a rational number or an irrational number? Answer: A rational number is a type of real number with the form p/q, where q≠0. When a rational number is divided, the outcome is a decimal number, which can be either ending or repeating. Here, the given number, 7.89 can be expressed in the form of p/q as, 7.89 = 789/100 Hence, 7.89 is a rational number. Question 6: Determine whether 9.196196… is a rational number. Answer: A rational number is a type of real number with the form p/q, where q≠0. When a rational number is divided, the outcome is a decimal number, which can be either ending or repeating. Here, the given number 9.196196 is an rational number as it has recurring digits after decimal. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key/If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero/Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3/Prove that √2 is an irrational number./Is the square root of 12 an irrational number?/Is √4 a rational or irrational number?/Is 37.5 a rational or irrational number?
https://www.geeksforgeeks.org/is-37-5-a-rational-or-irrational-number?ref=asr9
Mathematics
Is 37.5 a rational or irrational number?
Is √4 a rational or irrational number?, Prove that √2 is an irrational number., Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3, Mathematics, Maths, CBSE Class 12 Maths Term 1 2021 Answer Key, Is the square root of 12 an irrational number?, Is 37.5 a rational or irrational number?, If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero
GeeksforGeeks
[-0.0375027768, 0.0066475207, -0.0079923952, 0.0445217378, -0.0116043426, -0.0175217893, 0.0232983436, 0.0376564749, 0.0232727267, 0.0126610296, -0.022055937, -0.0294335317, -0.0123023968, -0.03435193, -0.0462124385, 0.0283063985, -0.0202243458, 0.055331964, -0.00390013517, -0.00401541, -0.0165227391, 0.033071097, -0.00541151734, 0.0170478802, -0.027486667, 0.00182998949, -0.000591184245, -0.0101890229, -0.00935648195, 0.0066475207, 0.0173296649, 0.00326772407, 0.0162665732, -0.0100225145, -0.0311754644, -0.0207366794, 0.0221840199, 0.0203524288, 0.0162025318, 0.0366318114, -0.0226579271, 0.0232727267, -0.0108038224, 0.0307655968, 0.0298690144, -0.0167148653, -0.0203268118, -0.04144774, 0.0174577478, -0.0173168555, -0.00206694356, -0.00780667411, 0.053897433, 0.0325075313, 0.0239003357, 0.0066155, 0.0403718427, 0.00190043531, 0.00835102797, -0.0189050883, -0.00336218532, -0.00434842659, -0.0194046125, -0.00748006208, -0.0407304764, 0.0283832494, -0.036119476, 0.0184567962, -0.0293310657, -0.00598789193, -0.0231062192, 0.0170222651, 0.0214795619, -0.0282807816, -0.0121358884, 0.0177523382, -0.00298433984, -0.00247520884, 0.000604392844, 0.0357352272, -0.0121422922, 0.0296128485, -0.00598148815, -0.00310441782, -0.0113866013, 0.0388604589, -0.00537309237, -0.052924, 0.0279477667, 0.0299714822, -0.000382248458, -0.0108358432, -0.00683964556, -0.0152803324, 0.0172015801, 0.0195711218, -0.00772982417, 0.0149345072, -0.00692930399, 0.0463917553, 0.0074672536, 0.00258087763, 0.018584881, -0.0235929359, 0.0162281487, -0.0339676775, 0.0189050883, 0.000622004329, 0.00526742404, 0.0175089817, -0.0164330807, 0.000875769241, -0.00902346522, -0.00653865, -0.0534875654, -0.045469556, 0.0340701453, -0.0537949651, 0.0225682687, 0.0180213135, -0.0479287542, 0.000624005625, 0.00874808617, 0.0343775451, -0.00132966426, 0.0225170366, 0.0010398759, -0.0217101108, -0.00774903689, -0.0323794484, 0.0360170119, -0.0138714164, -0.0389629267, -0.0132566169, -0.0206342116, 0.00268814736, 0.00326612289, 0.0183415227, 0.0128467502, -0.000319407613, -0.0347617939, -0.046955321, 0.0366830453, -0.0181622058, 0.0267694, -0.0129364086, -0.0238362942, 0.0286906492, -0.0102978935, 0.0322513618, -0.0108102262, 0.0195070803, 0.0227732025, 0.0300739482, -0.0302276481, -0.0257447343, -0.0108358432, 0.0347617939, -0.0280758496, -0.0564591, -0.0205445532, -0.00578295905, 0.0171247311, 0.0186745375, -0.0010775004, 0.035914544, 0.00890819076, -0.00402501645, -0.00597188156, 0.0312523134, -0.0256294589, 0.0273585822, -0.0116107473, 0.0358120762, 0.0352485105, 0.0302276481, 0.0300739482, 0.00611917768, -0.00730714947, -0.000879771833, -0.00719187455, -0.018764196, 0.0183159057, 0.0136664836, -0.0155236907, 0.00824215729, 0.0550758, -0.0243614353, -0.0300227143, 0.00227667973, -0.0314060152, 0.012827538, -0.00908750668, 0.0301507972, 0.0150113571, -0.0397570431, -0.004124281, 0.0322257467, 0.00831900723, 0.0248097256, -0.00419152435, -0.0298690144, -0.0351972766, -0.0215820279, 0.0428054221, -0.0428310409, -0.000886176, 0.0149985487, 0.0161641072, 0.0370160602, 0.000967028551, 5.2934407e-05, 0.00591104198, 0.026180217, -0.00559083419, 0.0194686539, -0.0487997197, -0.0227219686, 0.0275379, -0.0341726132, -0.0115979388, -0.0180085059, 0.0205061287, -0.00717906654, -0.00752489129, -0.0051585529, 0.0348130278, 0.0326612294, -0.0277940668, -0.0356839933, 0.0122191422, 0.0329430141, -0.0279989988, 0.00596227543, -0.0187513884, 0.0102466606, -0.00835743267, 0.0229781363, 0.0018556061, 0.0522835851, -0.00777465338, 0.00844068639, 0.0302532651, -0.00209416123, -0.0380663425, -0.0310986135, 0.0299458653, 0.0349411108, 0.0177139137, 0.0114250267, -0.0282807816, -0.0423443243, 0.0130388755, -0.013128534, -0.023413619, -0.0113353683, 0.0313291624, 0.00299394596, 0.0674742609, 0.00555881346, 0.0361707099, 0.0136024412, -0.0166892484, 0.00673077488, 0.00829339, 0.000295992388, -0.0112905391, -0.0464942195, 0.0109383101, 0.0212874375, 0.0490558855, -0.0143453246, -0.0109639261, 0.00711502461, -0.00508170296, -0.015792666, -0.00148496521, -0.0169966482, -0.0097279232, 0.0425236411, -0.0258087758, -0.0394496433, 0.0047134636, 0.00651303353, -0.0250402763, -0.0273842, -0.00260969624, 0.0156005407, -0.0650150627, 0.0228244364, 0.0134999752, -0.0313035473, -0.000355230906, 0.0393471755, 0.0285113323, 0.0104900189, -0.0233111531, -0.0279733818, -0.0263851508, 0.0230549853, 0.00627928134, -0.0253220592, -0.00796037447, -0.000324010616, -0.0295872316, -0.0374259278, 0.00258247857, -0.0614799634, -0.00445409538, -0.0304325819, 0.0645027235, -0.00309160957, -0.0341982283, -0.0205445532, 0.000387451844, 0.0112264976, 0.0384505913, -0.0239131432, -0.0181622058, 0.00728153298, 6.06018921e-06, 0.0395521075, -0.000666433189, 0.0113481767, 0.00161224802, -0.0439325571, -0.0227219686, 0.00262890873, 0.00302436575, -0.0364268757, 0.018687347, -0.0152547155, 0.00278420979, -0.0196479708, 0.000975033792, -0.0433946066, 0.0330454782, 0.0169069897, -0.0317646489, -0.00126402162, 0.0169582237, 0.00327412807, -0.02539891, 0.00445729727, 0.0331735611, -0.0124368835, 0.0114570474, -0.031943962, -0.000696452684, 0.0419344567, 0.000854155223, 0.0258472, -0.00671796687, 0.0367855094, 0.0248609595, -0.0240540355, -0.0147936158, -0.0298433974, -0.00378165813, -0.0118092764, 0.0177395307, 0.00616400642, -0.0226579271, 0.00947175641, -0.0205189381, -0.0685501546, -0.0153059484, 0.048364237, 0.0555881336, -0.0204420872, -0.0323538296, -0.00336218532, 0.0784381852, -0.00844068639, -0.0109319054, 0.0275122821, -0.0602503642, -0.0178676136, -0.0168557558, 0.00248641614, -0.00341341877, 0.052565366, 0.00398659147, 0.018559264, 0.0180085059, 0.0164586976, -0.000108070242, -0.00583739439, 0.0226579271, 0.0153571824, -0.000716065464, 0.0586108975, -0.0230293684, 0.00572211947, -0.00322929909, -0.00823575351, -0.00767218694, -0.0261930246, 0.0179188475, -0.0155236907, 0.0217869617, 0.0113866013, -0.0380919613, 0.0100545352, 0.0211721621, 0.00456296606, -0.0409866422, -0.0479543693, 0.0291261319, 0.0285625663, 0.00391294342, 0.0163818486, -0.0184824131, -0.00387451844, 0.0134359337, 0.0315084793, -0.0191996805, 0.0109895431, -0.0380407274, -0.0134231253, -0.01866173, 0.0396545753, -0.00983679388, -0.0250402763, -0.0035511083, 0.00472307, -0.00553639885, 0.00548836729, 0.0282807816, 0.0162921902, -0.0368879773, 0.0426261052, 0.0198400952, 0.0471346378, 0.00760174124, -0.0070701954, -0.0024800119, 0.0521042682, 0.0117644472, 0.000929404108, -0.00120078051, 0.00350627908, -0.0245279428, -0.00372081855, -0.000559163454, 0.0517200194, -0.0358633101, -0.0481336862, -0.0167917144, -0.00120238157, 0.00889538229, 0.00240636407, -0.0435226895, 0.0397058092, 0.0317646489, 0.00165227393, 0.0323282145, -0.0217229202, 0.0130068548, 0.00352549157, -0.0153315654, 0.0135127837, -0.0253732931, 0.0212490112, 0.0461868197, 0.00836383644, -0.00911952741, -0.0169710312, -0.0237722527, -0.00536668813, -0.0184824131, -0.0174961723, 0.00197088113, 0.0314060152, 0.0215436034, 0.0130644916, 0.00655466039, -0.0206085965, 0.0018668134, -0.0424724072, 0.0140507333, -0.00259848894, 0.0321232788, 0.00707659964, 0.0150497826, 0.000957422308, 0.029074898, -0.0207751039, 0.0281526987, 0.0333016478, -0.0087416824, -0.0301507972, 0.0204292797, 0.0110984137, -0.000208935802, -0.0141403908, -0.0179060381, -0.0324562974, -0.00185720716, 0.00307239708, 0.00558443, -0.052565366, -0.0626583248, 0.0375540107, -0.0301251821, -0.0116107473, -0.00980477314, -0.00165227393, 0.00428758701, -0.0253732931, 0.00708940811, -0.0105668688, -0.0158438981, 0.0302020311, -0.00224626018, -0.0114250267, -0.0308424477, 0.000405663683, 0.0114634512, 0.00861359853, 0.00934367348, 0.0185080301, 0.0121166762, -0.0019340571, -0.017880423, 0.022107169, 0.00285305455, 0.0122895883, -0.00924120657, -0.00675639184, 0.0374515429, -0.00263691391, 0.0465710722, -0.00295552099, 0.0242077354, 0.0288443491, -0.0119693801, 0.0179956965, 0.0202883873, 0.00769139919, 0.00669875415, 0.0110343723, 0.000969430141, -0.0174577478, -0.0189563222, -0.001810777, 0.0177907646, -0.0253092516, -0.00428758701, 0.00285145338, 0.0352228954, -0.0260265172, 0.00933726877, 0.00749287056, 0.0178291891, 0.00758893276, 0.00538910273, -0.0275379, 0.00237594428, -0.0158182811, -0.0155236907, -0.00101265823, -0.0101762144, 0.0175602138, -0.0237338264, -0.00460779527, 0.0105284434, 0.0163306147, 0.00252804323, -0.00796037447, -0.0014705559, -0.0166508239, 0.0229269024, -0.0134103168, -0.0148064243, 0.0193277635, -0.00216140482, -0.0143837491, 0.0365549624, 0.0224529952, -0.0108550554, -0.0273585822, -0.0107589932, 0.0051585529, -0.00204933202, 0.0104900189, -0.0104579981, -0.0260777511, -0.00652584201, -0.0346849449, -0.00815890357, 0.0691649541, 0.00122159405, 0.00553960074, 0.000645219407, 0.0243998598, 0.00910671894, 0.00107830088, -0.0138457995, -0.00555240922, -0.03732346, 0.0108806724, 0.00954220258, 0.00521939248, 0.0164202731, -0.0264363829, -0.0203011949, 0.0271536503, 0.00860079, 0.00883134082, -0.0356583782, 0.0163178071, 0.0238747187, -0.00883134082, 0.00217261212, -0.0146271074, 0.00924761128, 0.00866483245, 0.00407624943, -0.00107109617, 0.00385210384, -0.00167148642, -0.0260905586, -0.0141660077, 0.00509451143, -0.00264652027, -0.0117324265, -0.0120398263, -0.00281142746, -0.0549221, -0.0227860101, -0.0133078499, 0.00525781745, 0.00242557656, 0.0139226494, 0.0188666638, -0.0174961723, 0.00952299, -0.003621554, -0.0189307053, -0.0366318114, 0.00122079346, 0.00195166853, 0.111791067, 0.00141451939, 0.0208135284, 0.0275122821, 0.0478006713, 0.00849832408, -0.0272817332, 0.00392895378, -0.0336090475, -0.00077970681, 0.0176882967, -0.0101377899, -0.000530744961, 0.0186233055, -0.0113289636, -0.0110023515, -0.017957272, -0.00431320351, 0.0143837491, 0.0159591734, 0.0236057434, 0.00933726877, 0.00938209798, 0.0438557044, 0.0235545095, 0.013102917, 0.00535067776, -0.00735197868, -0.0543585345, -0.0143837491, 0.00673077488, 0.000335618155, 0.00942692719, -0.0185080301, -0.0121999299, 0.0127827087, -0.034428779, -0.0330967121, -0.00974713545, 0.00837664492, -0.0367086604, -0.00196287595, 0.00801160745, -0.0229909439, 0.0258215833, -0.0169326067, -0.015216291, 0.0430872068, -0.0121166762, 0.0252708253, -0.00951018184, -0.0357352272, 0.0266413167, -0.0286137983, -0.00208615605, 0.00145214389, -0.0235288944, -0.0504135676, -0.0106052933, 0.0071726623, -0.04703217, 0.00100225152, 0.0164843146, 0.00300515327, -0.0154724568, -0.024796918, 0.00033441736, 0.013128534, -0.0100737475, -0.00292670238, 0.00188122282, -0.00781307835, 0.00339420629, -0.0314828642, 0.00583099, -0.0121358884, -0.024220543, 0.0116491718, -0.0154724568, -0.00730714947, 0.00295872311, 0.0131669585, 0.00139290537, 0.0422162414, -0.00360874576, -0.0237466358, -0.00324851158, -0.0295616146, 0.0276403669, 0.00975354, -0.0121358884, -0.0120014008, 0.0379382595, 0.0164074656, -0.0189050883, -0.00732636219, 0.00827417802, -0.0336602777, -0.0073711914, -0.0147167658, 0.0123344176, -0.00625046296, -0.00755050778, -0.0216973033, 0.00542432582, -0.00758893276, 0.00260969624, 0.0164458901, -0.0119373593, 0.0120078055, -0.0224914197, 1.2464352e-05, -0.0146911489, -0.0240796525, -0.0184311811, -0.00618962338, 0.0167276729, 0.0198016707, 0.037246611, -0.00586301088, 0.0114954719, 0.0327380784, -0.0430872068, -0.0613262616, 0.00845349487, 0.0283832494, -0.0137561411, 0.0236313604, 0.0369648263, 0.0297409315, -0.0205701701, 0.0395264924, 0.0181109719, 0.00534107164, -0.00212458102, 0.00883774459, 0.00870966166, -0.0163434241, 0.00090698956, 0.0183287133, -0.0100225145, 0.007896333, -0.0129684294, 0.00561645068, -0.00538590085, 0.0173937064, 0.00999689754, -0.000776905, -0.007595337, -0.020749487, 0.0280758496, 0.00365677685, -0.0205317456, -0.022132786, -0.0368367434, -0.00252804323, -0.0165867805, 0.0146271074, 0.00446370151, -0.0141403908, 0.0273329671, -0.024220543, -0.00511692604, 0.0274610501, 0.0154980738, -0.0108230347, 0.0206214041, -0.0190459806, -0.00223665382, -0.00797318295, 0.00699974969, -0.00544674043, -0.0256935, 0.00852394, 0.0124817127, 0.0125329467, 0.0224017613, -0.0287674982, -0.0237850603, -0.00225906842, -0.0263595339, -0.0382968932, 0.0232727267, -0.00197248207, 0.00240156101, 0.0408585593, 0.0254885685, 0.0194046125, -0.00487677, 0.0116555765, 0.00825496577, -0.000586381124, 0.00775544113, -0.00683324179, 0.0197760537, 0.0285113323, 0.0175474063, -0.0175474063, 0.00676279562, 0.0132566169, -0.0050144596, -0.00824856199, 0.0029251012, 0.00984319765, 0.01109201, -0.0109575223, -0.0134999752, -0.0203140043, 0.00747365784, 0.0215948373, 0.0404999256, -0.000272977428, -0.0169582237, -0.00651623541, 0.0137433335, 0.0333016478, -0.0298177823, 0.00172111869, -0.0175089817, 0.00834462419, -0.00284344819, 0.0483386219, -0.0154084153, -0.0194558464, -0.0129171964, -0.0318414979, -0.0243102014, 0.0033749938, -0.0370416753, 0.0184567962, -0.0428822748, -0.0213386696, 0.00653865, 0.0051105218, 0.0329430141, 0.038604293, -0.00737759564, -0.00108630606, -0.00321809179, -0.030278882, -0.00349667273, 0.000791714643, 0.0228756685, -0.0169326067, -0.0315340981, 0.0114378342, -0.0261930246, -0.00928603578, 0.0364781097, -0.00466223061, 0.00685245404, 0.0219022371, 0.0110599892, -0.0222480614, 0.0241693109, 0.00547876116, -0.020045029, 0.00640736474, 0.035914544, -0.018687347, -0.0202627704, 0.0153571824, -0.0130004501, 0.0152675239, -0.0171631556, -0.0231702607, 0.0121038677, -0.0394752584, -0.0295359977, -0.0370929092, -0.0483386219, -0.00121839193, -0.0263851508, -0.017931655, 0.0195455048, 0.0439581722, -0.0101762144, -0.0252836347, 4.88067235e-05, -0.000417471369, 0.00543073, 0.0284600984, -0.0184183717, -0.0315084793, 0.019942563, -0.0139354579, -0.0337371305, 0.00734557444, 0.0271024164, 0.00568049215, 0.0102978935, -0.0507722, 0.0346080959, 0.00190683943, 0.00976634771, 0.00963826478, -0.00937569421, 0.00282103359, -0.000343623367, 0.0117836595, -0.0189435128, -0.00242397562, 0.0135512082, -0.00589823397, 0.0186233055, 0.00344543951, 0.00535388, -0.00343903527, -0.0422930904, 0.00408265367, -0.00563886529, 0.0202883873, -0.0118989339, -0.0272305, 0.0197504386, -0.00709581235, -0.00660269195, -0.00380407274, -0.0143965576, -0.00904267747, -0.00910031516, -0.0122063337, -0.0212105867, 0.0277428329, -0.0206342116, 0.03173903, -0.0275379, -0.00436443696, -0.0362987928, 0.0367598943, 0.0135384, -0.0310986135, 0.0204548948, 0.0280246157, -0.0363500267, 0.00671156263, 0.0157158151, -0.0052386052, -0.0225042272, 0.0355815291, 0.0260137096, 0.0241565015, -0.031867113, 0.00564847142, -0.00327893137, -0.0638366938, 0.0230293684, -0.00396417687, -0.0090746982, -0.0583034977, 0.00656426698, -0.0226066951, 0.0248865765, 0.0145886829, 0.023516085, -0.0121038677, -0.00303397211, -0.0433177575, -0.0322769806, 0.00998409, -0.00675639184, -0.017252814, -0.00476469705, 0.00754410354, 0.0256935, 0.00170831045, 0.0223889537, -0.0505672693, 0.00069925451, 0.0171247311, -0.0218253862, 0.0326356143, 0.0345824771, -0.0136792911, -0.00796677824, 0.0404999256, 0.00370480819, -0.0141788162, 0.0395264924, 0.0170222651, -0.0099200476, -0.00403462257, 0.000306799426, -0.0314316303, -0.00385530596, 0.0205317456, 0.00303557306, 0.0236697849, -0.0138457995, 0.0125649674, -0.0112393051, -0.00520658446, 0.0065034274, -0.00600070041, -0.0446498208, 0.0155877322, 0.0140507333, 0.0128851756, -0.00436443696, -0.0231190268, 0.0161000658, -0.0103939557, -0.00881853234, -0.00364717073, -0.0252452102, 0.00558763184, 0.0118541056, 0.00680762483, 0.0111752637, 0.00712142885, -0.0118092764, 0.00301315845, 0.0169197973, -0.00293470756, -0.00267213699, 0.0348642617, 0.00680762483, -0.0141660077, -0.00772982417, -0.0018219843, 0.00315084797, -0.00495041767, 0.000579176471, -0.00618321914, -0.00351268332, -0.0155621152, 0.00300355232, 0.0164202731, 0.0160360243, -0.00398659147, -0.0307912137, -0.00605193386, -0.024194926, -0.0502598695, -0.00956141483, 0.0123280128, -0.00753129553, 0.0316877961, -0.00930524804, 0.0232086852, 0.0435483046, -0.0224273782, -0.0126546258, 0.0144734075, 0.0100737475, -0.00354790618, 0.0111432429, -0.0256550759, -0.0056836945, 0.00373682892, -0.00369840395, 0.00567729026, -0.0161384903, 0.00278581074, 0.0861231834, -0.0340189114, -0.030458197, -0.00393856, 0.0152290985, -0.0121358884, -0.0099200476, 0.0137689495, 0.0139738834, 0.00444769114, 0.00959984, -0.0160104074, 0.0232983436, 0.0274098162, 0.00366318109, 0.0180725474, -0.0150753986, 0.00370480819, -0.0208903793, -0.0260649417, 0.00448611612, -0.00627287757, 0.0151266325, 0.0260905586, 0.0161384903, 0.0229269024, 0.0236185528, -0.0241052676, -0.0266413167, -0.00934367348, 0.0270255674, -0.00056036422, 0.00599429617, 0.0420113057, 0.026282683, 0.00130404765, 0.0512845367, -0.00115435035, 0.0108486516, 0.0020349226, -0.00997128151, 0.0134999752, -0.000571171287, -0.0196223538, 8.18031695e-05, 0.0107910139, 0.0031012157, 0.00495041767, 0.00817171205, 0.00313643878, 0.0173296649, 0.0170863066, 0.0206982531, -0.0431384407, -0.0188026223, -0.00118557061, -0.0197888631, -0.0056132488, 0.0162921902, 0.0227732025, -0.0112521136, -0.0270255674, -0.0269743335, -5.38850254e-05, 0.00788352452, 0.017880423, 0.00132486119, 0.0148064243, -0.0161256809, 0.0127699, 0.0125841796, 0.00834462419, -0.0123728421, 0.00542752771, 0.00977915619, 0.00785790756, -0.0103235105, -0.00581177743, 0.0136152497, -0.00803082, -0.037400309, 0.000320008, -0.017931655, 0.0179060381, 0.0021213789, 0.00349347084, 0.0247456841, -0.0141916247, 0.00333977095, -0.0306631308, -0.00715344958, -0.0164586976, -0.0280246157, -0.000167809078, 0.0012456096, -0.00365677685, 0.00378486025, 0.00343903527, 0.0144990245, -0.0118348924, -0.00185720716, 0.000432280969, -0.00297633465, -0.00462380564, -0.00424916204, -0.0240540355, 0.00409866404, 0.0238234848, 0.0119309556, 0.0336858965, -0.00641376898, -0.00631770631, 0.0044669034, 0.00711502461, 0.0270255674, 0.0089402115, 0.0136664836, 0.00521298824, 0.0168685652, 0.026205834, -0.00257447339, 0.0208007209, 0.000778506044, -0.000119877921, 0.0237850603, 0.0021213789, -0.00155220891, 0.00537309237, -0.0235801265, 0.020147495, -0.0155621152, 0.0272305, -0.0074672536, 0.00676279562, -0.00400900608, -0.018764196, -0.0139354579, 0.00680122059, 0.0223633368, -0.00692289975, -0.0177651476, -0.00526422169, 0.00678200833, -0.0180213135, -0.00450212648, 0.0017995697, 0.0113737928, -0.0111560514, 0.0301507972, 0.0282295495, -0.000854955695, 0.00788352452, 0.00104788109, 0.00319727813, 0.014434983, -0.0336346626, -0.00409866404, -0.00975354, 0.0135768251, -0.0139866909, 0.0287162662, 0.00892099831, -0.015216291, 0.0182262473, -0.0191740636, 0.00264011603, 0.0111624552, 0.0236954018, -0.014511833, 0.00626006909, 0.0073007457, 0.00158583082, 0.00810126588, 0.0154596483, 0.0051905741, 0.0180469304, 0.00854315329, -0.0108550554, -0.00441567041, -0.0054051131, -0.0167532898, 0.0257575419, -4.467904e-05, 0.0230421778, -0.0215692203, -0.0146271074, 0.00212618196, -0.00663471268, 0.0219278522, 0.0128211342, -0.00391294342, -0.0044669034, -0.00331735634, 0.00240636407, -0.00462380564, 0.0113481767, -0.0174321309, -0.0191612542, -0.015792666, 0.0102786813, -0.0305606648, -0.0102786813, -0.00277140131, -0.00910671894, -0.0154468408, 0.0302532651, -0.000311002164, -0.000134487418, -0.0317134149, 0.00589823397, 0.0208775699, -0.00311082206, 0.00975994393, 0.00177235203, -0.0297665484, -0.0131925754, -0.00137049076, -0.0191356391, -0.00959343556, -0.0241693109, -0.00383289135, 0.00651623541, -0.0172271971, 0.0240796525, 0.00396097451, -0.00644578971, 0.0150882071, 0.0161128733, -0.0389373079, 0.0293566827, -0.0152931409, 0.00694211246, 0.0473908037, 0.00266253063, 0.00550117576, -0.0178291891, -0.0150369741, -0.00431960775, -0.0174193233, 0.0440862551, 0.0521042682, 0.0449059904, 0.0173680894, -0.0204933211, 0.0066795419, -4.755591e-05, -0.00347746024, -0.00708940811, -0.0212105867, 0.00262730778, -0.022734778, 0.00151378394, 0.0106437188, -0.0216844957, 0.0245151352, -0.00325011252, 0.00240156101, 0.0108038224, -0.0105412519, -0.0217869617, -0.0198144801, -0.03435193, -0.0179444645, -0.00705098314, 0.0128851756, 0.00844709, -0.00760814548, -0.00881212763, -0.0302276481, 0.00959984, 0.00503367186, 0.0126738381, 0.0101057691, 0.0160872564, 0.0242333524, 0.0131669585, 0.015190674, 0.0107013555, -0.00784509908, -0.00929244049, 0.00645859819, 0.00761454925, -0.0198529046, -0.0150882071, -0.0153315654, -0.00815890357, -0.00990724, -0.0237082113, -0.00204933202, -0.00865842775, 0.000886976544, 0.0287931152, 0.0164586976, 0.0215436034, 0.0140635408, 0.0568177328, 0.026231451, 0.00869044848, -0.0310986135, -0.000241757138, -0.0175730232, 0.00183959573, 0.00682683755, 0.015895132, 0.00626006909, -0.00255686184, -0.0148960827, -0.0272561163, 0.00017871616, 0.0202499628, 0.017931655, -0.0334041119, 0.0153315654, -0.0183543302, -0.0117964679, -0.0130260671, 0.00736478716, -0.00123280135, 0.0188538544, -0.0125329467, -0.0130196624, -0.00327733019, 0.0204036627, 0.0106309103, -0.00128563563, 0.00233751931, 0.0119693801, -0.0210696962, 0.0112777306, 0.00011627558, 0.0127699, -0.00478070742, -0.0269231, 0.000307199691, -0.034480013, -0.00966388173, 0.0251811687, 0.00527703, 0.00495362, -0.015792666, -0.0185464546, -0.0037336268, -0.00505608646, -0.00793475751, 0.0107269725, -0.020851953, -0.0169582237, 0.0157286227, -0.00344543951, 0.0184439886, 0.0175474063, 0.00395457027, 0.0246047936, 0.0121038677, -0.00902346522, 0.0104323812, -2.91439428e-05, 0.011745234, 0.00429719314, 0.00902346522, 0.00448611612, 0.00549156964, -0.00401220797, -0.0217997693, 0.00634332327, -0.0254373346, -0.0354022123, 0.0146655329, 0.00210696948, 0.00384249771, 0.0120206131, -0.00331415422, 0.030483814, 0.0135127837, 0.0168301389, 0.0191612542, 0.00852394, -0.00237594428, 0.0182646718, -0.0222480614, 0.0129300049, -0.00717906654, 0.0178419966, -0.0245791767, -0.0313803963, 0.024015611, 0.000595987367, 0.0402437598, 0.0148320412, 0.0114442389, 0.0136664836, 0.0124112675, 0.00482873851, -0.00681402907, -0.0153315654, -0.0149345072, -0.0134231253, -0.00532506127, -0.00384249771, 0.00475188857, 0.0182134379, -0.0058021713, -0.0129876416, 0.00298754196, -0.0127699, -0.0276403669, 0.0321232788, -0.0238747187, 0.00451813685, -0.0143453246, -0.00660909573, -0.00799879897, -0.0121679092, -0.0060263169, 0.0335578136, -0.00681402907, 0.0120910592, 0.0246560257, 0.0227732025, -0.00688447477, -0.00851113256, 0.00708300387, -0.0416526757, 0.00945894793, -0.0574325323, 0.0186233055, 0.0189819392, 0.019942563, 0.0279989988, -0.0362731777, -0.0133462753, 0.00841506943, 0.0136536751, -0.00382648711, -0.0110343723, 0.0147679988, -0.00623445259, 0.00620883564, 0.026462, 0.00631130254, -0.0107205687, 0.0187001545, -0.00179796864, -0.00956782, 0.0100993644, -0.00262570661, 0.00488317385, -0.00196607783, -0.0243614353, 0.00983039, 0.0207366794, 0.00733276643, 0.00953579787, 0.00889538229, 0.0059782858, -0.00840226188, 0.0141531993, -0.00946535263, -0.00321649062, 0.0186745375, 0.0193789955, 0.00860719476, -0.000899784849, 0.020147495, 0.0183159057, -0.00178516039, 0.0126097966, 0.0137561411, -0.0100417268, 0.0120590385, -0.0117004048, -0.00327893137, -0.0119501678, 0.00853674859, 0.00351588521, -0.0183415227, 0.00974713545, 0.00595266931, -0.00970230624, -0.000126081955, -0.0019868915, 0.0127442842, 0.0147423828, 0.00114234257, 0.00829979498, 0.058149796, 0.00556201534, -0.000405463565, -0.0115915341, 0.00422674743, -0.0287418831, 0.00628248369, -0.038604293, -0.0073007457, 0.00792194903, 0.0007164657, -0.00123520289, 0.0240924601, -0.0199809875, -0.0121615054, -0.00129604246, 0.00845989864, 0.00435803272, 0.0205061287, 0.0261546, 0.0142556662, -0.0179060381, 0.00490238657, -0.0172400065, 0.00573492749, -0.0180469304, -0.00262250472, -0.0225554612, 0.00937569421, -0.014486216, -0.00418191822, -0.0108614601, 0.00565807754, -0.0131925754, 0.0142428577, 0.015792666, 0.00431960775, 0.0144990245, -0.0165099315, 0.00926682353, -0.000974233262, -0.00851113256, -0.00480952626, -0.022132786, 0.00918997359, 0.0203396212, -0.00440926617, -0.0107653979, -0.00131205283, -0.0127442842, -0.00285145338, 0.0066155, -0.00845989864, 0.04406064, 0.00314444397, -0.0150882071, 0.00059999, -0.0199809875, 0.0189819392, -0.00265932851, 0.000736078422, 0.00748646632, -0.0204420872, 0.00368879782, 0.00785790756, 0.00956782, -0.000722869881, -0.00278420979, 0.00705738738, -0.00801801216, -0.00504968222, -0.0303301141, 0.00548836729, -0.0335834287, 0.00674358336, 0.0230934098, -0.00160344224, 0.00739040365, -0.012750688, 0.00161384896, 0.00609035883, 0.0101890229, -0.0099200476, -0.0163562316, 0.0153699908, -0.00351908733, -0.00396417687, 0.00172111869, 0.00813969, 0.00662830845, 0.0112713268, 0.0111496476, -0.000217541397, -0.00387772056, 0.00826137, 0.0175345968, -0.0238747187, -0.030355731, -0.0161641072, 0.0360682458, -0.00670515839, -0.0100033022, 0.010310702, -0.0364268757, -0.00973432697, -0.00049792364, 0.00708940811, -0.00118236849, -3.36468693e-05, 0.00819732808, -0.012071847, -0.0009334067, 0.0156901982, 0.00499524688, 0.00298273889, 0.0137177166, -0.00626327097, 0.00787071604, 0.00240476313, -0.0129236, -0.0199169461, -0.0399875902, 0.0108870761, -0.016471507, -0.0161384903, 0.0226195026, -0.0217997693, -0.0140891578, -0.0164330807, 0.0226066951, -0.00911312364, 0.0148064243, 0.00772342039, -0.0273329671, -0.0145758744, -0.00165067299, 0.017380897, 0.00624405872, -0.0125777759, -0.0137177166, 0.0171503481, -0.00684605, 0.00695492048, -0.0148064243, -0.00541151734, 0.00674358336, -0.000855756225, 0.0066155, 0.0244510937, -0.0240924601, -0.0163306147, 0.00460459292, -0.0256935, 0.0247713011, -0.00414029136, 0.0012159904, -0.00398659147, 0.0120590385, -0.00606474187, -0.0095293941, -0.00321649062, -0.0163178071, 0.00462380564, 0.00609676307, -0.0119245509, 0.0227988195, 0.0121486969, 0.00380087062, 0.000309000839, 0.0211721621, -0.00749927433, 0.0280246157, 0.0129876416, -0.00663471268, -0.00493120542, -0.0109575223, 0.0284344833, -0.0236057434, 0.0152547155, -0.00268174312, 0.00367919146, 0.0012456096, -0.00459498679, -0.0154212238, 0.0019452644, 0.019289339, 0.00588862738, -0.0196095463, 0.00959343556, -0.00522899907, 0.00255366, 0.0291517489, 0.0179444645, 0.021428328, 0.0222480614, -0.00932446122, -0.000199829883, -0.00474228244, -0.0437532403, -0.0112905391, -0.000310802017, -0.00393856, -0.00367278722, -0.00544033619, -0.0213899035, -0.0138457995, 0.0141403908, -0.0106757395, 0.0192509126, 0.0110087553, -0.00849832408, -0.0054371343, -0.00354790618, 0.0127058588, 0.0249762349, 0.000128883781, 0.00904267747, -0.0199937951, -0.0190972127, 0.00398659147, 0.0283063985, -0.00225266418, -0.0021101716, 0.00535388, 0.00019672788, -0.0136536751, 0.0206214041, -0.00737759564, 0.0159207489, -0.0126866465, 0.00204613, 0.0246816427, 0.00849191938, 0.000788912817, -0.00280822534, 0.00820373278, -0.00727512874, 0.00511692604, 0.0042907889, -0.0127891125, -0.0149729326, 0.0133718913, -0.0136664836, -0.0115210889, 0.0144221745, -0.0118477009, 0.0277940668, 0.0182902887, 0.00111032173, -2.17891629e-05, 0.0018636114, 0.0115274927, -0.00496322615, 0.00738399941, 0.0183159057, -0.00222704769, 0.00468464522, 0.00813328661, -0.0203140043, 0.00171951763, -0.00528343441, 0.00343903527, 0.017252814, -0.000266773393, -0.0124176713, 0.0175345968, 0.00366638321, -0.00719187455, -0.00356391654, 0.0110279685, -0.0143837491, -0.00271856715, 0.0153571824, 0.0114314305, -0.00645219395, 0.0121551007, -0.0300739482, 0.024873767, -0.0134359337, -0.00771701615, -0.00692289975, -0.00381688098, 0.00698694168, -0.0317134149, 0.00294591486, 0.00993285608, 0.0186233055, 0.0263083, 0.00448291376, -0.0129876416, 0.0188922808, -0.0104451897, 0.0128659625, 0.00541471969, -0.00281623052, -0.000276779901, -0.0269999504, 0.020647021, 0.0153059484, 0.0180341229, 0.00520658446, -0.00631130254, 0.0201731119, -0.0103171058, 0.0100801522, -0.0218638107, 0.0178291891, 0.0310986135, -0.0278965328, 0.020019412, -0.0111560514, -0.0147551913, -0.0066475207, 0.0081909243, 0.00790914055, 0.0179060381, -0.0245791767, 0.0111560514, -0.0170222651, -0.00771701615, -0.00167308748, -0.0163306147, -0.00833181571, -0.00579896942, -0.00500485301, 0.0103299143, -0.0422930904, 0.00282263476, -0.00706379162, -0.0158182811, -0.00643298123, -0.00453414721, -0.000761294854, 0.0244382843, 0.019340571, 0.0125073297, 0.001159954, 0.0228500534, 0.0195198879, 0.0205445532, -0.0162793808, -0.006224846, -0.0118925301, 0.00942052342, -0.0190075543, 0.0108486516, -0.0183543302, 0.0257191174, -0.0232343022, -0.0029411118, -0.00334617496, 0.0053090509, -0.0180341229, 0.00153860007, 0.0136792911, -0.00947175641, 0.0149345072, -0.0109895431, -0.00535067776, -0.000938209821, -0.00415950362, 0.0196479708, 0.00203172071, 0.00339420629, -0.0178676136, -0.00490238657, 0.0119245509, 0.0174065139, -0.00403462257, 0.0114442389, 0.00668594567, -0.000423875521, -0.020851953, -0.000668434484, 0.0120846555, 0.00159863906, -0.0100417268, 0.0115915341, 0.0113033475, -0.0115082804, -0.0180213135, -0.0177267231, 0.00752489129, -0.00490879081, -0.0207622964, 0.00120318204, -0.0178291891, 0.0178035721, -0.00999049377, 0.0128339417, -0.00760174124, -0.00631450443, 0.00180117076, -0.00404743105, 0.00757612428, -0.00967669, -0.0190075543, -0.013832991, 0.00126242056, 0.00395777263, 0.0239259526, 0.0330967121, 0.0124689052, 0.00742242439, 0.0107205687, 0.024925001, 0.0178291891, 0.00471666595, 0.0129940463, -0.00946535263, 0.0133847, 0.0216716863, -0.00362475612, -0.0232343022, 0.00119277532, -0.00885695685, -0.0236954018, 0.0112841344, -0.0250915103, -0.00138249865, 0.00175153848, -0.00185240409, 0.0252067838, 0.00860079, 0.00145694707, -0.0285881832, 0.00542752771, -0.00808205362, 0.00602951925, -0.0176370647, 0.00193565816, -0.00505608646, 0.0194814634, -0.0201090705, -0.00464622024, -0.000805323478, -0.020070646, 0.00101265823, -0.00203972589, -0.0221455954, -0.00869044848, 0.0115595134, 0.0102210436, 0.0211849697, 0.0185208376, -0.015113824, -0.0188026223, -0.00909391139, 0.00484474888, -0.00292830332, 0.00257927645, -0.0123344176, -0.0137561411, 0.00746084936, 0.00699334545, -0.00813328661, 0.0237466358, -0.0101570021, -0.018636113, 0.024015611, 0.00510411756, -0.00973432697, 0.0122447591, 0.00529944478, 0.0113609843, 0.00622804835, -0.0179700814, 0.00402501645, -9.511182e-05, 0.0126610296, -0.00459178444, -0.00203332165, 0.00325331464, 0.0155877322, 0.0168685652, 0.0144990245, -0.00364717073, 0.0223249104, -0.0116555765, -0.0132694254, -0.0236441679, 0.0145246414, -0.0135640167, -0.00258728163, 0.00116235553, -0.00808205362, 0.0267694, 0.000686846441, -0.0228628609, -0.00579896942, 0.00891459454, 0.0173040479, -0.0155236907, -0.00791554525, 0.0120270178, -0.00425876817, 0.00687166676, -0.0130580878, -7.24971251e-05, 0.00287386798, -0.000263171067, -0.00731995795, 0.0119821886, 0.00447650952, -0.0011335368, 0.00720468303, -0.00610316684, 0.0102402559, -0.00423955591, -0.00439965958, -0.0170094557, -0.0130324708, -0.00906189065, 0.0125393504, -0.0190972127, -0.00222864863, 0.0311754644, 0.00325331464, -0.0143581331, -0.0089402115, -0.0168045238, -0.0179444645, 0.00620563375, 0.00873527769, -0.0140635408, -0.000585980888, 0.00705098314, -0.00170991139, -0.00270575867, 0.00461419905, -0.00511372369, 0.0125393504, -0.0202755798, 0.0296128485, -0.0178419966, 0.00660269195, -0.0139738834, -0.000990243629, 0.0161897242, -0.00722389575, 0.000531945785, -0.000670035544, -0.0109062893, -0.0101377899, -0.0302276481, -0.0120654423, -0.00629209, 0.0117004048, -0.0226323102, -0.0101698106, 0.00523540284, 0.00608715648, 0.0157030076, 0.00474228244, 0.0167276729, -0.0139226494, -0.000691649562, -0.0203268118, 0.0103427228, -0.0054371343, 0.0115659181, -0.0105924848, -0.00550758, 0.00227027573, -0.00864561927, -0.0189947467, 0.00591744622, 0.00432921387, -0.0212746281, 0.00472627208, 0.0287931152, 0.00476789894, -0.00380727462, -0.00642657746, -0.028998049, -0.00894661527, -0.00262250472, -0.00967028551, 0.00512653217, -0.00166348123, -0.0242589675, -0.00885055307, -0.0397058092, -0.0359657779, 0.00783869531, -0.00626327097, 0.0308168307, 0.00604552962, -0.00530584902, 0.00182518642, -0.0119565716, 0.0259624757, -0.00160104071, -0.00479351589, 0.0111432429, 0.00101826189, 0.0154852653, -0.0256294589, 0.00984319765, -0.00276659825, -0.00035002752, -0.0108614601, -0.00326452195, -0.00271056197, 0.00904267747, -0.00682043331, 0.00281462958, -0.00856236555, 0.0111816684, -0.0240412261, 0.00803082, 0.0100545352, -0.0113353683, 0.0182518642, 0.0120846555, -0.0240284186, 0.00207334757, 0.00121999299, -0.000102966929, -0.0348130278, -0.0143581331, 0.00798599049, -0.00126882468, 0.00919637736, 0.00132486119, -0.00702536665, 0.00800520368, 0.0138457995, -0.00810126588, 0.018764196, -0.0226066951, -0.0166380145, -0.0140891578, -0.0199553706, -0.0108422479, -0.00679481681, -0.00647781044, -0.00077890628, -0.00541471969, -0.00151858712, 0.00136488723, 0.00510091567, -0.0180981643, 0.0159975979, 0.00482233474, 0.010361935, -0.00526422169, 0.0080948621, -0.0127250711, 0.0150497826, -0.0301764142, 0.0100481315, -0.00545314467, -0.0126738381, -0.00188442483, 0.00803082, -0.0131413415, 0.00177235203, -0.0032469104, 0.00278260862, -0.000160004, -0.0035991394, -0.0153571824, 0.00424916204, 0.00824215729, 0.007595337, -0.0218510032, -0.0268718675, 0.00244639022, -0.0127058588, -0.00343263126, -0.0108550554, -0.00960624404, 0.0180853549, 0.000549157, -0.0244254768, 0.00698053744, -0.00397058111, 0.00610316684, -0.00351588521, 0.0142172417, 0.00258888281, 0.00542112393, 0.0144093661, -9.23725383e-06, -3.38344921e-06, -0.00637854589, 0.00772342039, 0.00947175641, 0.0111112222, -0.0209159963, 0.0190844052, -0.0194686539, -0.0325843804, -0.0114442389, -0.0101698106, 0.0107782055, -0.00680762483, -0.0135127837, 0.0043708412, 0.00968309399, 0.0175217893, 0.00249442132, -0.0163434241, -0.00235352968, -0.0174577478, 0.000812127895, -0.0130901085, -0.00358953327, -0.0183671378, -0.0136280581, -0.0252195932, -0.00432921387, 0.000295592123, -0.00235513085, 0.00392895378, -0.0173424724, 0.00307720015, 0.000983839505, 0.0175474063, 0.0177779552, 0.00524821132, -0.000369039888, -0.00352549157, -0.0130708963, 0.00679481681, -0.00655466039, 0.0141916247, 0.0190715957, 0.00691009173, -0.0155493068, -0.00921559054, -0.0221584029, 0.0105156349, -0.0124881174, 0.0163562316, 0.000301195774, 0.0206854455, -0.0115403011, 0.0122767799, -0.00288827741, 0.0118092764, -0.0170094557, 0.0306118969, -0.00426197, -0.0148832742, -0.00177235203, 0.00288347434, -0.00551718613, -0.0104323812, 0.0162793808, -0.00424916204, 0.0142172417, -0.0043932558, -0.0131797669, -0.024796918, -0.0120590385, -0.0073711914, -0.00220943615, 0.02072387, -0.0145758744, 0.0352485105, 0.0280246157, -0.0189563222, 0.00127923151, 0.00906189065, 0.000547555916, 0.0047358782, 0.0225298442, 0.0137561411, 0.0185720716, 0.00272977445, 0.00126722374, -0.0266157, -0.00751208281, -0.0365293436, -0.00354790618, -0.0122639714, -0.0207751039, 0.0106437188, -0.00179156451, -0.0156261567, 0.00917716511, 0.00471986784, -6.1227297e-06, 0.0171119235, -0.00786431134, -0.00260489318, -0.010009706, -0.00602311501, 0.0219790861, 0.0245151352, -0.0261930246, 0.00244478905, -0.0171887726, -0.012424076, 0.0192765296, -0.00876089465, -0.0202115383, 0.0194814634, 0.00426517241, -0.00260489318, -0.0271024164, 0.00975994393, 0.0143453246, -0.00322769792, -0.0166892484, 0.0109511185, 0.00305798766, 0.0253476761, -0.016676439, 0.00245599635, 0.00239996, 0.00432921387, 0.0057317256, 0.0102530643, -0.00414029136, 0.00241116737, -0.0326099955, -0.0033109521, -0.0299970973, 0.00812047813, 0.00489598233, -0.000902986969, -0.000794916705, 0.0124304798, 0.00407945178, 0.0107782055, 0.0108934809, 0.00525461556, 0.0100737475, 0.0268206336, 0.00381367886, 0.00693570822, -0.0097279232, 0.0341982283, -0.00965107325, -0.00858798251, 0.0133462753, -0.00658988347, -0.00453094533, 0.00471026171, 0.00199009362, -0.00108310406, 0.00510732, 0.00122479617, -0.00799879897, 0.00208615605, -0.0154852653, -0.0270255674, 0.00482233474, 0.00316685857, -0.0163306147, 0.000176014408, 0.0031012157, -0.00111512479, -0.0064233751, -0.0180341229, -0.00369520183, -0.0131925754, -0.00673077488, -0.00246560271, -0.000288987852, 0.0411915742, 0.0143453246, -0.0141531993, -0.00581177743, -0.0114762597, 0.00299074408, 0.0231830683, 0.000687246735, -0.00743523287, -0.021402711, -0.00942052342, -0.00770420767, 0.0150241656, 0.011770851, 0.000281583023, 0.00534427399, -0.0206214041, -0.0329686292, -0.00780667411, -0.0130196624, 0.0271024164, 0.0213386696, 0.0163306147, -0.00165547605, -0.00549156964, -0.0114442389, -0.00765937846, 0.00300675444, 0.0193149541, -0.0221584029, -0.00520978635, -0.0150241656, -0.0107653979, 0.00372402067, 0.0104003605, 0.00821654, 0.00426197, -0.0164330807, 0.0117772548, 0.0161512978, 0.00336858956, 0.0177395307, 0.00522899907, 0.0133078499, -0.0137689495, 0.0133334668, 0.0156005407, -0.0114506427, 0.00609676307, 0.0072687245, 0.0121358884, 0.0173937064, 0.0118669132, -0.0061768149, 0.0229012854, -0.00297313253, 0.0139738834, 0.0115915341, -0.0143965576, 0.00117196178, -0.013730525, -0.00899784826, -0.0133334668, 0.0148832742, 0.0119181471, 0.0175730232, -0.00592385046, -0.000169610241, 0.00448291376, -0.00925401505, -0.0142940916, -0.00538590085, 0.00145854801, -0.01866173, -0.0104195727, 0.00908110291, -0.0195583124, 0.0286650322, -0.0121615054, 0.0227860101, -0.0204292797, -0.00846630335, -0.0170606896, -0.0159463659, 0.000743683369, -0.0137945665, 0.00132646225, -0.022734778, 0.00405063294, 0.00116475706, -0.00435162848, 0.0132438084, 0.0152034825, 0.0132822338, -0.0154596483, 0.0148448488, 0.0035350977, 0.00476789894, 0.0177651476, 0.00296672829, 0.000604793138, 0.00938209798, 0.0016314605, -0.0362987928, -0.0119885923, 0.000471506472, -0.00742242439, 0.00520338211, -0.00720468303, -0.00150898087, 0.0133078499, -0.00424595969, 0.0117900632, -0.00284825126, 0.0017995697, 0.0124432882, -0.0139610749, -0.000878971303, 0.029074898, 0.00692289975, 0.00216140482, -0.00780027034, 0.00639455626, -0.00170991139, -0.00522579672, 0.0297409315, 0.00639455626, 0.00544033619, -0.0153571824, 5.8187823e-05, -0.0187129639, -0.00163946569, -0.0223249104, 0.0217869617, -0.0141788162, -0.0293310657, 0.0217741523, -0.030278882, -0.0182006303, 0.00232311012, -0.0239131432, 0.0112136891, 0.0218638107, -0.00733917067, 0.0102146398, -0.00833181571, 0.019942563, 0.0394496433, 0.00297153159, 0.0140251163, 0.000743283133, -0.0097279232, 0.00303557306, 0.0252580177, 0.0140891578, 0.00692930399, 0.00275859307, 0.0261289831, 0.0197376292, -0.00254085148, -0.0181878228, -0.00186841446, -0.00189243013, -0.0164843146, -0.0116747888, -0.0176242553, 0.0104003605, 0.0075697205, 0.000693250622, 0.0121679092, 0.00340061029, -0.00639455626, -0.0268206336, -0.0223761443, 0.00758893276, -0.00290909084, -0.00588862738, -0.00117436331, -0.00758893276, -0.0129300049, -0.00996487681, -0.0131157255, 0.0216332618, -0.00538269896, -0.00503047, 0.0171631556, -0.017880423, -0.0183799472, -0.0280502327, -0.00592385046, -0.00637854589, 0.00342622702, 0.00622164411, -0.00731995795, 0.00529624242, 0.0269231, -0.00849832408, 0.000405463565, 0.00233111531, -0.0209159963, 0.0140507333, 0.0150497826, -0.00911952741, 0.0125201382, -0.00965107325, -0.00480632391, -0.000517936656, 0.00975994393, 0.0141019663, 0.00330134598, -0.00886336155, 0.00814609509, -0.0108614601, -0.00900425296, 0.00241597043, 0.00241757138, 0.00687807053, 0.017175965, 0.00537629472, 0.0165611655, -0.0165611655, -0.0180469304, 0.0165227391, 0.0106821433, 0.000756091438, -0.00431320351, -0.00434522424, -0.00938850269, -0.0306631308, -0.00791554525, -0.0175089817, 0.00928603578, -0.0129876416, 0.0189435128, -0.00491519505, -0.00865202397, 0.00215019751, 0.00787712, 0.00488637621, -0.00608715648, 0.0226963535, -0.00825496577, -0.0129428124, 0.00291549508, -0.0211593527, -0.00713423733, 0.00899144448, 0.0176498722, 0.00442207418, -0.00369840395, -0.00507209683, -0.00889538229, 0.0159975979, -0.0273073502, -0.00564206718, -0.000902186439, -0.00703177042, 0.0221584029, 0.0111048184, 0.00204613, -0.00952299, 0.000541151734, 0.0305606648, -0.00420433283, -0.00351268332, 0.0108550554, 0.0186745375, -0.0177139137, -0.0131157255, 0.0130324708, 0.00633051479, 0.00127522892, -0.0124048628, -0.0205445532, -0.018687347, 0.0251939762, -0.028869966, 0.00931805652, -0.0181109719, -0.0125137335, -0.00189723319, -0.0143581331, 0.0100545352, 0.00660909573, 0.00951018184, 0.00819732808, 0.00239035371, -0.000270976132, -0.00644578971, 0.0159847904, -7.8100762e-05, 0.0053346674, -0.00332696247, -0.00850472786, -0.0175474063, -0.000833341677, -0.00913233589, 0.00382648711, 0.0152547155, 0.00143613352, 0.0206085965, -0.00968949776, 0.00951018184, 0.00995206926, -0.0164586976, 0.0135896336, -0.030278882, 0.0117004048, 0.0126097966, -0.0156389661, -0.00192765298, 0.000657627475, 0.0265132338, 0.00810126588, 0.00756331626, -0.00774903689, 0.0252964422, 0.0121679092, 0.00722389575, -0.0317134149, 0.012699455, -0.00194206228, 0.00050032523, 0.00443488266, -0.00801160745, -0.0120078055, -0.0315340981, 0.0115531096, -0.00638495, -0.0029891429, -0.010438785, -0.0137049081, -0.0268206336, 0.0175730232, -0.014460599, 0.0219662786, -0.00931805652, -0.0321488976, -0.00712783309, 0.00385850808, -0.00622164411, -0.00330134598, 0.0119309556, -0.00765937846, 0.0119309556, 0.00359593728, -0.0095293941, -0.00826137, -0.028869966, 0.0273585822, -0.00867764093, -0.0150497826, -0.00794756599, 0.0175217893, 0.00883774459, 0.0146271074, 0.00346785411, 0.00295712217, 0.0336602777, 0.00667313766, -0.00755691202, 0.01659959, 0.00120638416, 0.00627607945, -0.00821654, 0.000898183847, -0.0194302294, 0.0162793808, -0.00530264666, 0.0106949518, 0.0159079395, 8.76569757e-05, -0.00632411055, -3.20958607e-05, 0.0119373593, 0.00931165274, -0.00712142885, -0.000428678642, 0.000503527292, -0.000495922344, 0.00869044848, -0.0163434241, -0.000174013112, -0.0100289192, 0.000491519459, -0.0051105218, -0.0126546258, 0.0083830487, -0.028869966, 0.00849832408, -0.00987521932, 0.0324050635, -0.000103467253, -0.0225042272, 0.00715344958, 0.020070646, 0.028998049, 0.0112969428, -0.0189947467, -0.0119117424, 0.00174993742, -0.00618321914, -0.00671156263, -0.0268462505, -0.0155493068, -0.00414029136, -0.021325862, -0.00835743267, 0.0028130284, -0.0080948621, 0.0143453246, -0.0103171058, 0.00551718613, -0.00857517403, -0.00231190282, 0.00845989864, 0.00947816111, 0.016676439, -0.00302276481, -0.027589133, 0.000993445748, -0.0145758744, -0.0167020559, 0.0405511595, 0.0156645812, 0.00172432081, -0.00734557444, -0.00575414, -0.0234264266, 0.00133446744, -0.0273329671, 0.00138490018, -0.0168045238, -0.00529304054, -0.0158567075, -0.000467103615, -0.00146975531, 0.0152803324, -0.011393005, 0.00373042468, 0.0109383101, -0.0279989988, -0.0238106772, -0.00870325696, 0.00303237094, 0.00943973567, 0.0148448488, 0.018584881, 0.0153059484, -0.00680122059, -0.00426837429, 0.0073007457, 0.00433241623, 0.0248609595, -0.00446049916, 0.00592705281, 0.00232471107, -0.00358312903, 0.00926041882, 0.000246960524, 0.00882493611, 0.00109511183, 0.010035323, -0.00747365784, 0.00680122059, 0.0181365889, -0.00476789894, 0.000470305706, -0.0424980223, -0.00675639184, -0.00940771494, -0.00531865703, -0.00571891712, 0.0164843146, 0.00803082, 0.0198529046, -0.00376884965, 0.0036855957, 0.0153187569, 0.00940131117, -0.00691649551, 0.00476469705, 0.00512653217, -0.0183543302, 0.00292189931, -0.00264331815, 0.00454375334, -0.0173296649, -0.0147551913, -0.0101185767, 0.00531225279, -0.00404102681, -0.0332760289, 0.0180981643, -0.00481913239, -0.0129940463, -0.0186233055, 0.00157782563, -0.00801160745, -0.00643618358, -0.00840226188, 0.0128467502, -0.00783869531, 0.000133186564, 0.0044188723, -0.00375924353, -0.00548196305, 0.0166892484, -0.0019228498, 0.030381348, 0.0111432429, -0.00904267747, 0.00591104198, -0.00316365645, 0.00806924514, -0.00125441537, 0.011994997, 0.00195487076, 0.00669235, -0.0167404804, -0.0128467502, -0.00821013656, -0.00447010575, 0.0185080301, -0.00196767901, 0.0153827984, -0.00320528354, 0.00523220096, 0.0051905741, 0.0230677947, 0.0137945665, -0.00626006909, -0.00847911183, -0.0175474063, 0.0170991141, 0.00583099, -0.0199937951, 0.0241565015, 0.000573172583, -0.0104772104, 0.00414669514, -0.00162665732, -0.00236313604, 0.00679481681, -0.0101441937, 0.00419152435, 0.00981117692, -0.000920598395, 0.00892099831, -0.0194814634, -0.0174833648, 0.0165099315, -0.0121807177, 0.0119501678, 0.0153571824, 0.0218638107, 0.00942692719, 0.0127058588, 0.00256326608, -0.00974713545, 0.00267533888, -0.0143325161, 0.00524180708, 0.0049119927, 0.0298177823, 0.00499844877, -0.00318126776, 0.00127683, -0.00819732808, -0.0125329467, 0.0122383554, 0.00029579227, -0.0115915341, -0.00769780343, 0.0362475626, -0.0254629515, 0.0320464298, 0.00909391139, -0.0133847, -0.00238074758, 0.0167404804, 0.0081909243, -0.0103235105, -0.0278196819, 0.0133847, 0.00609996496, 0.00580537366, -0.0076657827, -0.00953579787, -0.00608395459, -0.0156645812, 0.0119501678, 0.0163946562, 0.011469855, 0.0190587882, -0.0199809875, -0.0048639616, -0.00791554525, -0.000642817817, 0.00586621324, -0.0313035473, -0.001298444, -0.0113801975, -0.0065514585, 0.0493376702, -0.00807564892, 0.0194558464, -0.0209416114, -0.00904267747, 0.00883774459, -0.0142556662, 0.00639775861, 0.00451173261, 0.031943962, -0.00269615254, 0.00646820432, 0.000384449901, 0.00192925404, 0.00115755235, -0.00290588872, 0.0109447138, -0.000627207686, -0.0211849697, 0.00627287757, -0.0117516387, -0.00151698606, 0.0137433335]
28 Mar, 2025
Number System and Base Conversions 28 Mar, 2025 Electronic and digital systems use various number systems such as Decimal, Binary, Hexadecimal and Octal, which are essential in computing. Binary (base-2) is the foundation of digital systems. Hexadecimal (base-16) and Octal (base-8) are commonly used to simplify the representation of binary data. The Decimal system (base-10) is the standard system for everyday calculations. Other number systems like Duodecimal (base-12), are less commonly used but have specific applications in certain fields. Various Number Systems What is Number System ? A number system is a way to represent and express numbers using a consistent set of symbols or digits. A number system uses a base (or radix) to represent values. The base refers to the number of unique digits, including zero, that a system uses to represent numbers. Most commonly used number systems are Decimal (base-10), Binary (base-2), Octal (base-8), and Hexadecimal (base-16). Each system has its own set of rules for representing. Digital systems primarily rely on the Binary system for data processing. Types of Number System There are four common types of number systems based on the radix or base of the number : 1. Decimal Number System The Decimal system is a base-10 number system. It uses ten digits: 0, 1, 2, 3, 4, 5, 6, 7, 8 and 9. Each digit’s place value is a power of 10 (e.g., 100, 101, 102). It is the standard system for everyday counting and calculations. 2. Binary Number System The Binary system is a base-2 number system. It uses two digits: 0 and 1. Each digit’s place value is a power of 2 (e.g., 20, 21, 22). The Binary system is the foundation for data representation in computers and digital electronics. 3. Octal Number System The Octal system is a base-8 number system. It uses eight digits: 0, 1, 2, 3, 4, 5, 6 and 7. Each digit’s place value is a power of 8 (e.g., 80, 81, 82). It is often used to simplify the representation of binary numbers by grouping them into sets of three bits. 4. Hexadecimal Number System The Hexadecimal system is a base-16 number system. It uses sixteen digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E and F (where A = 10, B = 11, etc.). Each digit’s place value is a power of 16 (e.g., 160, 161, 162). Hexadecimal simplifies binary by representing every 4 bits as one digit (0-F). Number System Conversion Methods A number N in base or radix b can be written as: (N)b = dn-1 dn-2 — — — — d1 d0 . d-1 d-2 — — — — d-m In the above, dn-1 to d0 is the integer part, then follows a radix point and then d-1 to d-m is the fractional part. dn-1 = Most significant bit (MSB) d-m = Least significant bit (LSB) Base in Number System 1. Decimal to Binary Number System Conversion For Integer Part: Divide the decimal number by 2. Record the remainder (0 or 1). Continue dividing the quotient by 2 until the quotient is 0. The binary equivalent is the remainders read from bottom to top. For Fractional Part: Multiply the fractional part by 2. Record the integer part (0 or 1). Take the fractional part of the result and repeat the multiplication. Continue until the fractional part becomes 0 or reaches the desired precision. The binary equivalent is the integer parts recorded in sequence. Example: (10.25)10 Decimal to Binary Conversion For Integer Part (10): Divide 10 by 2 → Quotient = 5, Remainder = 0 Divide 5 by 2 → Quotient = 2, Remainder = 1 Divide 2 by 2 → Quotient = 1, Remainder = 0 Divide 1 by 2 → Quotient = 0, Remainder = 1 Reading the remainders from bottom to top gives 1010. For Fractional Part (0.25): Multiply 0.25 by 2 → Result = 0.5, Integer part = 0 Multiply 0.5 by 2 → Result = 1.0, Integer part = 1 The fractional part ends here as the result is now 0. Reading from top to bottom gives 01. Thus, the binary equivalent of (10.25)10 is (1010.01)2. 2. Binary to Decimal Number System Conversion For Integer Part: Write down the binary number. Multiply each digit by 2 raised to the power of its position, starting from 0 (rightmost digit). Add up the results of these multiplications. The sum is the decimal equivalent of the binary integer. For Fractional Part: Write down the binary fraction. Multiply each digit by 2 raised to the negative power of its position, starting from -1 (first digit after the decimal point). Add up the results of these multiplications. The sum is the decimal equivalent of the binary fraction. Example: (1010.01)2 1×23 + 0x22 + 1×21+ 0x20 + 0x2 -1 + 1×2 -2 = 8+0+2+0+0+0.25 = 10.25 Thus, (1010.01)2 = (10.25)10 3. Decimal to Octal Number System Conversion For Integer Part: Divide the decimal number by 8. Record the remainder (0 to 7). Continue dividing the quotient by 8 until the quotient is 0. The octal equivalent is the remainders read from bottom to top. For Fractional Part: Multiply the fractional part by 8. Record the integer part (0 to 7). Take the fractional part of the result and repeat the multiplication. Continue until the fractional part becomes 0 or reaches the desired precision. The octal equivalent is the integer parts recorded in sequence. Example: (10.25)10 For Integer Part (10): Divide 10 by 8 → Quotient = 1, Remainder = 2 Divide 1 by 8 → Quotient = 0, Remainder = 1 Octal equivalent = 12 (write the remainder, read from bottom to top). So, the octal equivalent of the integer part 10 is 12. For Fractional Part (0.25): Multiply 0.25 by 8 → Result = 2.0, Integer part = 2 The fractional part ends here as the result is now 0. So, the octal equivalent of the fractional part 0.25 is 0.2. The octal equivalent of (10.25)10 = (12.2)8 4. Octal to Decimal Number System Conversion For Integer Part: Write down the octal number. Multiply each digit by 8 raised to the power of its position, starting from 0 (rightmost digit). Add up the results of these multiplications. The sum is the decimal equivalent of the octal integer. For Fractional Part: Write down the octal fraction. Multiply each digit by 8 raised to the negative power of its position, starting from -1 (first digit after the decimal point). Add up the results of these multiplications. The sum is the decimal equivalent of the octal fraction. Example: (12.2)8 1 x 81 + 2 x 80 +2 x 8-1 = 8+2+0.25 = 10.25 Thus, (12.2)8 = (10.25)10 5. Decimal to Hexadecimal Conversion For Integer Part: Divide the decimal number by 16. Record the remainder (0-9 or A-F). Continue dividing the quotient by 16 until the quotient is 0. The hexadecimal equivalent is the remainders read from bottom to top. For Fractional Part: Multiply the fractional part by 16. Record the integer part (0-9 or A-F). Take the fractional part of the result and repeat the multiplication. Continue until the fractional part becomes 0 or reaches the desired precision. The hexadecimal equivalent is the integer parts recorded in sequence. Example: (10.25)10 Integer part: 10 ÷ 16 = 0, Remainder = A (10 in decimal is A in hexadecimal) Hexadecimal equivalent = A Fractional part: 0.25 × 16 = 4, Integer part = 4 Hexadecimal equivalent = 0.4 Thus, (10.25)10 = (A.4)16 6. Hexadecimal to Decimal Conversion For Integer Part: Write down the hexadecimal number. Multiply each digit by 16 raised to the power of its position, starting from 0 (rightmost digit). Add up the results of these multiplications. The sum is the decimal equivalent of the hexadecimal integer. For Fractional Part: Write down the hexadecimal fraction. Multiply each digit by 16 raised to the negative power of its position, starting from -1 (first digit after the decimal point). Add up the results of these multiplications. The sum is the decimal equivalent of the hexadecimal fraction. Example: (A.4)16 (A × 160) + (4 × 16-1) = (10 × 1) + (4 × 0.0625) Thus, (A.4)16 = (10.25)10 7. Hexadecimal to Binary Number System Conversion To convert from Hexadecimal to Binary: Each hexadecimal digit (0-9 and A-F) is represented by a 4-bit binary number. For each digit in the hexadecimal number, find its corresponding 4-bit binary equivalent and write them down sequentially. Example: (3A)16 (3)16 = (0011)2 (A)16 = (1010)2 Thus, (3A)16 = (00111010)2 8. Binary to Hexadecimal Number System Conversion To convert from Binary to Hexadecimal: Start from the rightmost bit and divide the binary number into groups of 4 bits each. If the number of bits isn’t a multiple of 4, pad the leftmost group with leading zeros. Each 4-bit binary group corresponds to a single hexadecimal digit. Replace each 4-bit binary group with the corresponding hexadecimal digit. Example: (1111011011)2 0011 1101 1011 | | | 3 D B Thus, (001111011011 )2 = (3DB)16 9. Binary to Octal Number System To convert from binary to octal: Starting from the rightmost bit, divide the binary number into groups of 3 bits. If the number of bits is not a multiple of 3, add leading zeros to the leftmost group. Each 3-bit binary group corresponds to a single octal digit. The binary-to-octal conversion for each 3-bit group is as follows: Octal Binary Equivalent 0 000 1 001 2 010 3 011 4 100 5 101 6 110 7 111 Replace each 3-bit binary group with the corresponding octal digit. Example: (111101101)2 111 101 101 | | |7 5 5 Thus, (111101101)2 = (755)8 10. Octal to Binary Number System Conversion To convert from octal to binary: Each octal digit (0-7) corresponds to a 3-bit binary number. For each octal digit, replace it with its corresponding 3-bit binary equivalent. Example: (153)8 Break the octal number into digits: 1, 5, 3 Convert each digit to binary: 1 in octal = 001 in binary 5 in octal = 101 in binary 3 in octal = 011 in binary Thus, (153)8 = (001101011)2 Number System and Base Conversions – FAQs What is number system and its conversion? A number system is a method to represent numbers mathematically. It can use arithmetic operations to represent every number uniquely. To represent a number, we convert it requires a base or radix. How to do base conversions? For this, first take the number and then divide it by the given base. Then note down the remainder obtained after the division. Then, divide the quotient of the division obtained by the given base. How to calculate number system? There are 3 required steps to calculate the number system. STEP 1 – Divide the number with the given base of another number. STEP 2 – Note down the resulting remainder STEP 3 – Divide the quotient Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key/If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero/Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3/Prove that √2 is an irrational number./Is the square root of 12 an irrational number?/Is √4 a rational or irrational number?/Is 37.5 a rational or irrational number?/Number System and Base Conversions
https://www.geeksforgeeks.org/number-system-and-base-conversions/
Mathematics
Number System and Base Conversions
Is √4 a rational or irrational number?, Prove that √2 is an irrational number., Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3, Number System and Base Conversions, Mathematics, Maths, CBSE Class 12 Maths Term 1 2021 Answer Key, Is the square root of 12 an irrational number?, Is 37.5 a rational or irrational number?, If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero
GeeksforGeeks
[0.0066701686, 0.00991862733, -0.0177149288, 0.031473957, 0.029799195, 0.0188699365, 0.0273448043, 0.0358918607, 0.0397611335, 0.0188121852, 0.0117377639, -0.0230135247, 0.0333797187, -0.0188988112, -0.00339103, 0.00266373623, -0.027835682, 0.0406562649, -0.0134269623, -0.00804895908, 0.00561261456, 0.00769523764, -0.0142643433, -0.000249048491, -0.038635, 0.0263197348, 0.00321777887, -0.0197939426, -0.0137734646, 0.00478967186, 0.0167764854, 0.00109815947, -0.013520807, 0.000520204543, -0.0308098253, -0.0211222, -0.00106026081, 0.00275577581, -0.0529570952, -0.0113190738, 0.00918952841, 0.0235477164, -0.00167295628, 0.0260454193, -0.0148562845, 0.0137951216, 0.0215986408, -0.0336973444, 0.0103734117, -0.00741370441, -0.0148274088, -0.0126689887, 0.0578081273, 0.0405696407, 0.00256086816, 0.00509647094, 0.017050799, -0.00789736398, -0.00252838363, -0.00794067699, 0.0566242449, -0.0173539892, -0.0191153754, -0.00272148661, -0.0102506923, 0.0343037248, -0.0246016607, 0.0432839058, -0.00345058506, -0.0295537561, -0.0375088714, 0.0196640026, 0.0277201813, 0.0147985341, -0.00157820957, 0.0128205838, 0.0341304727, 0.0242262837, -0.00970928185, 0.0461714268, -0.00961543806, 0.0260598585, 0.0507048294, -0.00931946747, -0.0187255591, 0.0131670861, -0.0177871156, -0.0590497591, 0.0439480357, 0.0235188417, -0.0231290255, -0.00934112351, 0.00508925179, -0.0088141514, -0.0117882956, 0.0354587324, 0.00884302612, -0.00601325789, -0.0207756981, 0.0243417844, 0.0121420166, 0.0377976224, 0.0178737417, -0.0505893305, 0.0253379773, -0.0392702557, 0.00820777193, 0.0109364772, 0.0025446259, 0.00911734067, -0.0082799606, 0.00116493343, -0.00718270335, 0.0234610904, -0.0245005973, -0.0212521385, 0.00809227116, -0.0721302181, 0.0415513963, 0.0256700423, 0.0198228173, 0.0482793152, -0.0251069758, 0.0452474207, -0.0368447416, 0.026954988, -0.00731264148, -0.0442656651, -0.0139322784, -0.000935736578, 0.00774576934, -0.0210500117, -0.00991862733, 0.00272148661, 0.0158524793, 0.0286875, 0.013852872, 0.0222483333, -0.00229557743, -0.0106477253, -0.0199527554, -0.00980312657, 0.00905237161, -0.0174983647, -0.0096876258, 0.0310408268, 0.00470665563, 0.0359784849, -0.0190431867, 0.0375954956, -0.0413781442, 0.0204436332, 0.013961154, -0.0101496289, 0.00579308486, -0.0160690416, 0.0141199669, 0.0466334298, -0.0232589636, -0.0369891152, 0.00850374345, -0.00591219496, -0.00902349595, 0.0015015098, 0.00367436768, 0.0373356193, 0.0377398729, 0.00972372, -0.00168739387, 0.030087946, 0.00111530419, 0.0116150444, -0.00308062159, 0.028211059, 0.00474635931, 0.0044251224, 0.0291783772, 0.00517587736, 0.014668596, -0.00999081507, 0.0014771464, -0.0130732413, 0.0226237103, -0.000929420115, 0.025785543, -1.01937312e-05, 0.0153471623, -0.0171663, -0.0281966217, -0.00960821938, -0.02298465, 0.00231903861, 0.0432550311, 0.0265940484, 0.0296259429, -0.0329754651, -0.0295104422, 0.0238364674, 0.0175272394, 0.0200682562, -0.0304055735, 0.0156070394, -0.0167331714, -0.00171897607, 0.050820332, -0.019476315, -0.0349967293, -0.0145314382, 0.0155926021, 0.0161989816, -0.0130299293, 0.0183501821, -0.0168197975, -0.0234177783, 0.0140549978, -0.00697696721, -0.0334374681, 0.0146325016, 0.0126906456, -0.0348234773, 0.0109509155, 0.00538883219, 0.00212052162, -0.0225082096, -0.00847486779, -0.0649691746, 0.00657993369, 0.0107921017, -0.00664129341, -0.0221472699, 0.047730688, 0.051571086, -0.01830687, -0.0236776546, 0.000113526861, -0.0289906897, 0.0361228622, 0.0095360307, -0.0626591593, 0.0410316437, -0.0081788972, -0.0120987035, 0.0297414437, -0.0224360209, -0.0428219028, -0.0136507452, 0.0224071462, 0.036151737, 0.0157514159, 0.0180181172, 0.0287741255, -0.0105466628, -0.00216744374, 0.0198083799, -0.0336684696, -0.0367292389, 0.0158669166, 0.00375377457, 0.0119037963, -0.00507120509, 0.00893687084, -0.00895852689, -0.0102290353, -0.000179905954, -0.00725850044, 0.0135929948, 0.0208478868, -0.0184512455, 0.0143870628, 0.00200682553, 0.0596561395, -0.0248182248, 0.00626591593, 0.0226381477, 0.0280955583, -0.0199671928, -0.0183501821, 0.0126762073, 0.0131598674, 0.027460305, 0.0111097284, -0.00368519593, 0.0169208609, 0.00109184312, -0.0332064666, -0.0446410403, 0.00696974853, -0.0178737417, -0.0499252, 0.00116042164, -0.0184079334, -0.00928337313, -0.0075725182, 0.0120842662, 0.00230279635, 0.00989697129, -0.0199094433, -0.0349101, 0.00585083524, -0.0142354676, -0.0183213074, -0.044092413, -0.000951076508, -0.00437820051, -0.0319359601, -0.000337027595, 0.00877083838, -0.0117449826, -0.0167764854, -0.0146325016, 0.0392125063, 0.00713217165, -0.0593096353, -0.069704704, -0.0232012141, 0.00838102307, 0.0394146331, 0.000115613548, -0.036440488, -0.0125968009, 0.0358629823, -0.0101929419, -0.0174550507, 0.0609844, 0.0368447416, 0.00255004014, -0.0407428928, 0.0303189475, -0.0586166307, -0.0127123017, -0.0147768781, -0.0222050194, 0.00381874363, -0.00172980421, 0.00582196, -0.0374511182, 0.0265507363, 0.0373067446, -0.0166898593, 0.0235621538, 0.0244572852, 0.0314162038, -0.0300301965, -0.0305788238, 0.0117305452, -0.0015403108, 0.00872752536, 0.0119759841, -0.00252116495, 0.00986809563, 0.00145007588, 0.0169930477, 0.0385772511, 0.0181913693, 0.0236199033, -0.0113984803, -0.0278934315, -0.0520619638, 0.0063525415, -0.0178593043, 0.017888179, -0.0178737417, -0.0299724452, -0.00807061512, 0.0355453566, -0.0546029806, 0.0199960675, 0.0156647898, 0.0214253906, 0.00269802543, -0.00699501438, 0.0227103364, 0.0304922, -0.0295248795, -0.0514844619, 0.00437459117, 0.0105611, -0.0219307058, 0.00937721785, -0.00362564088, 0.000161971766, 0.0487124436, 0.0231001507, -0.00478606252, 0.0198805667, -0.0110014472, -0.00209886534, 0.0254534781, -0.0165599212, 0.0201693196, -0.0098392209, 0.0126545513, -0.0102290353, -0.000175281413, 0.0367292389, 0.022565959, -0.0223638341, -0.0157081019, 0.00397755718, -0.0236920919, 0.0464890525, -0.0354298577, -0.0244139712, 0.00515422132, -0.011911015, 0.00836658571, -0.0453340448, -0.0471820571, 0.0414647721, 0.0174983647, 0.00393785397, 0.00709607778, -0.0262475461, 0.0232734028, 0.0121420166, 0.028831875, -0.0678566918, 0.0522929654, -0.000819784647, -0.0115500754, -0.0280811209, 0.0228547119, 0.0235044025, 0.0051109083, -0.00152948266, -0.0168631095, 6.89733497e-05, -0.00295970682, 0.0147985341, 0.0347368531, -0.0348812267, 0.00390897878, -0.00540687889, 0.0352277309, -0.00650413614, -0.070744209, 0.0350256041, -0.00961543806, -0.0472975597, -0.0319648348, 0.0220028944, -0.00282074488, -0.0142354676, 0.0179170538, -0.0413492694, 0.0224504583, -0.0631789118, -0.0118965777, -0.0116078258, -0.0022432413, -0.0308675766, -0.0124091124, 0.00274675223, 0.00854705554, 0.044929795, -0.000944760046, 0.0136074321, -0.0442079119, 0.0212954506, -0.0295681935, 0.0392991304, 0.00791180134, -0.00799842738, 0.0250059124, 0.0375954956, 0.0209922623, -0.0025446259, -0.0245150346, -0.0394723825, 0.0179892424, 0.0240819063, -0.0440346636, 0.0469799303, 0.0343326, -0.00548267644, -0.0233311523, -0.000805347052, 0.00768080028, -0.0197795033, -0.0569996238, 0.0187977478, 0.00574255316, -0.0162422936, -0.00398116652, 0.0018119181, 0.0140766548, 0.0164299831, 0.021728579, 0.00534191, 0.000816175248, -0.0168053601, -0.00257530576, -0.0198950041, 0.0216130782, -0.000404027058, 0.000762485433, -0.0414647721, 0.00725128176, 0.0118027329, 0.0306943245, -0.0436592847, -0.029380504, -0.056248866, 0.030463323, 0.00491961045, 0.032051459, -0.0119398907, 0.0337262191, 0.0128711155, -0.0254534781, -0.00314198155, -0.0364116132, 0.00104943267, 0.0434282832, -0.0262619834, -0.0161267929, -0.0271715522, 0.0105899749, -0.0055981772, 0.0114995437, 0.0313007049, -0.0153760379, 0.0111963544, 0.0243129078, -0.0248471, -0.0068181539, 0.0310408268, -0.00479689054, -0.0150584104, -0.00443234155, 0.0201404449, 0.0199383181, -0.00375016499, -0.00329538085, 0.015043973, -0.0057966942, -0.0128422398, 0.0347079784, -0.00543936342, 0.0394723825, 0.00763026858, 0.0400787629, -0.00196170807, 0.00158813538, -0.0564509928, 0.0140189044, 0.0164155439, 0.00227031158, 0.01500066, 0.00537439436, 0.0402520113, 0.000977244694, 0.0123008303, -0.00413276115, -0.016675422, 0.000578857318, 0.0103734117, -0.0261031706, -0.00148707221, 0.01596798, -0.00631283829, 0.0181047432, 0.00894408952, 0.00877083838, 0.00432045, -0.0272726156, -0.000292586861, 0.0164588578, 0.0189854372, -0.0107704457, 3.27383714e-05, 0.0113551682, -0.0204869453, -0.00970206317, -0.0237065293, 0.0263919216, 0.00357149984, -0.00663768407, 0.005933851, 0.00838102307, -0.0122214239, -0.00733068865, -0.024948163, -0.011932672, 0.0086120246, 0.0210355744, -0.0265651736, -0.0189421233, -0.00320695061, -0.00123170728, 0.024948163, 0.0343326, 0.00338922534, -0.00359496102, 0.0116872322, 0.0180469919, -0.0108209765, 0.00174063246, -0.00338742044, 0.0118965777, -0.000145616679, 0.0120192971, 0.028803, 0.0146613773, 0.0311274529, -0.0160546042, -0.00159535417, -0.0155348517, -0.0457960479, 0.00563427107, -0.00641029188, 0.00950715598, 0.0436881594, -0.00473914, -0.0315894559, -0.021021137, -0.00707081193, 0.0164155439, -0.00197073165, -0.00758695556, 0.000643826439, -0.00829439797, -0.015881354, 0.0220173318, 0.00495209498, 0.00651857397, 0.0289329384, -0.0176716149, -0.00842433609, -0.0572883748, 0.00642472925, -0.00809949078, -0.00809949078, 0.023735404, -0.00426991843, 0.022565959, -0.0271715522, -0.00952881202, -0.0169064235, 0.0124452058, -0.0238942187, 0.00783239491, 0.00668099662, 0.12000528, 0.00738843903, 0.0520619638, 0.0110303219, 0.00643555773, 0.00747867394, -0.00872030668, -0.00496653235, -0.0277201813, 0.0142859994, 0.0215697661, -0.0208334476, 0.0033693735, 0.0264063589, -0.0113984803, -0.00701306155, -0.00799120869, -0.00863368157, -0.00970206317, 0.0456228, 0.00618650904, 0.0200682562, -0.0184368081, 0.0271571148, -0.0121420166, 0.00101875269, 0.0340438485, -0.0331775919, -0.0218729544, -0.00166393269, 0.0145603139, -0.0151450364, -0.009485499, -0.0280522462, 0.0229413379, 0.00934112351, -0.0134414006, -0.0221183952, 0.00343975681, 0.0147985341, -0.00143293128, -0.0242551584, -0.00840989873, -0.0180036798, -0.00401004171, -0.0169641729, -0.0208190102, 0.0299435705, 0.0406562649, 0.0191153754, -0.00675318483, 0.00122087903, -0.0161412302, 0.0188988112, 0.0181624927, 0.0225515217, -0.00649330812, 0.0274314284, -0.0152027868, -0.0247604735, -0.0338994712, -0.00337117817, 0.0542276055, -0.00848208647, -0.0104022864, -0.00351555413, -0.0102940043, 0.0107054757, 0.00779630104, 0.00585083524, -0.00525528425, 0.00619372772, 0.0291061904, -0.000259199936, -0.0164155439, -0.00181462511, -0.0361806117, -0.00565592758, -0.0261031706, -0.0109220399, -0.0111602601, -0.00505676726, -0.0237065293, -0.00718631269, 0.000697516254, -0.00750033, -0.0068867323, 0.0248471, 0.0101496289, 0.0170219243, -0.00395229133, -0.0136146517, -0.00482937507, 0.02298465, 0.0120192971, -0.0266373605, -0.00261139986, -0.0172818, -0.00634171348, 0.00291098, -0.022565959, 0.0113262925, -0.0137445899, 0.0285864361, 0.0132248364, -0.0268394873, 0.0154193509, -0.0149573479, 0.0183790568, 0.00251755561, -0.0111891357, 0.00254823547, -0.0204436332, -0.0383173749, -0.0141560612, 0.0216852669, 0.0376821198, 0.0116006071, 0.0463735536, -0.0122069856, 0.00101785036, 0.0451030433, -0.0235044025, -0.060349144, 0.0157514159, 0.0086409, 0.00222338946, 0.0187688731, 0.0252802279, 0.00188049662, 0.0149429096, 0.0235477164, -0.00348306959, -0.000423653168, -0.0402808897, -0.00786127, 0.0128711155, -0.0201404449, 0.0168919861, 0.0114201372, 0.0130876796, -0.006937264, -0.0161123555, 0.00109094067, -0.00501345471, 0.0162134189, 0.0440346636, -0.02629086, 0.0113262925, -0.0186678097, 0.0589631349, 0.00551516097, 0.000836929306, -0.0217718929, -0.0093988739, -0.0292072538, -0.0252513532, 0.0170219243, -0.0156070394, -0.0209633876, -0.0037862591, 0.0210788883, -0.0208767615, -0.0196928792, -0.00243093, -0.00791902, -0.00379347778, 0.0101640662, -0.00407140143, 0.0116727948, 0.0154337883, 0.0203281324, -0.0171951745, 0.00699862372, 0.011867702, 0.00464168657, 0.0686074495, -0.0217718929, -0.00864811894, 0.00753642432, -0.0157658532, -0.00368339126, 0.0279223081, 0.0321958363, -0.00661602756, 0.009550469, 0.0370468684, 0.0485391915, -0.0219884552, -0.0112901991, 0.0213532019, 0.00386927533, 0.028918501, -0.0101063158, 0.00754364301, 0.012683427, 0.018508995, 0.00190215302, 0.0113118552, 0.0474130586, 0.00269261142, -0.00347585091, -0.00229918677, 0.00448287278, -0.00466695242, 0.00125787535, -0.0130227096, -0.0049412665, 0.0265651736, -0.000998901087, 0.0365559869, -0.0170796737, 0.00308062159, 0.00854705554, -0.0103300987, 0.0267384239, -0.017801553, 0.0345347263, -0.0164155439, 0.00401365105, 0.0029687304, 0.0146036269, -0.00252657896, -0.0051109083, 0.00364729716, 0.00889355782, -0.0188988112, -0.017844867, 0.000687139225, 0.0259443577, 0.00283518247, -0.00713578099, -0.0201837569, -0.029005127, 0.0318204574, 0.0174839273, 0.0334952176, 0.0159391034, 0.000149677246, -0.00970206317, -0.0322535858, -0.000251078774, 0.00113966758, -0.0287596881, -0.0319937095, 0.0193319395, -0.026666237, 0.0219451431, 0.00442151306, -0.0197506286, -0.022695899, 0.020934511, 0.009550469, -0.0108065391, -0.0109436968, 0.0101568475, -0.00868421327, 0.00153579912, -0.0199816301, 0.0179892424, -0.0183934942, 0.00800564606, -0.0132609298, 0.00533469114, 0.0167620461, -0.0125534879, 0.0374222435, 0.00262583746, -0.0322535858, -0.0108209765, -0.019057624, 0.0264496729, -0.03661374, -0.0641029179, -0.00465612393, 0.00786127, -0.0123152677, 0.0151450364, -0.00705998344, 0.00454062317, 0.026666237, 0.0105250059, 0.00134901272, -0.0780207589, -0.00130660227, 0.010676601, -0.00190756714, -0.0280233696, -0.00341810053, 0.0101785036, -0.00493404781, -0.0419556499, 0.0357763581, -0.0083304923, 0.047470808, -0.0362672359, 0.00341088162, -0.00570645928, 0.0414358936, 0.0327155888, 0.0129360845, 0.0136796208, 0.0031654425, -0.0263197348, 0.0402808897, 0.0311274529, -0.0139467157, 0.000910921954, -0.0050928616, -0.00164408109, 0.00970206317, 0.00898018386, -0.0323690847, -0.0130082723, 0.0154049126, -0.044092413, 0.00872030668, -0.00337298284, -0.00470304629, 0.00411471445, 0.00610710215, -0.00307520758, -0.0270416141, 0.0275469292, 6.76198251e-05, -0.0210788883, 0.00360398437, -0.00769523764, -0.0217574537, 0.017888179, 0.013961154, -0.0103878491, -0.0140910922, -0.0238075927, -0.0236199033, -0.00543575408, -0.0117522012, -0.00600964855, -0.028831875, -0.0313584544, 0.0218873937, 0.0190864988, -0.0198661294, 0.0402808897, -0.0382885, -0.0252224766, 0.0256267302, -0.00271065836, -0.00334771723, 0.00813558418, -0.0312718302, -0.00717548421, 0.0214542653, -0.00529137813, -0.013477494, -0.00323763047, -0.0140044661, -0.0401653871, -0.0240963455, 0.00600603921, 0.000358232821, 0.0411760174, 0.0147046894, 0.0279656202, -0.00645721424, 0.00411471445, -0.02064576, -0.0235621538, -0.0588765107, -0.0173973013, 0.0133403372, 0.00200502085, 0.0253524147, -0.0152894119, -0.00153670146, 0.00397755718, 0.00890077651, -0.0115861697, 0.00417607417, 0.00754364301, -0.0168919861, 0.00223963172, 0.00318348943, -0.0141849359, 0.0025464308, 0.00512895547, 0.00332064671, 0.00519392453, -0.000831515179, 0.00458754553, -0.0116222631, 0.0170219243, 0.0113912616, -0.000530581572, -0.0811392814, 0.0147407837, 0.0134414006, 0.0043060123, 0.00110086659, 0.000730903179, -0.00509647094, -0.00550794229, -0.00215481105, -0.00225767889, -0.00818611588, -0.00165490923, -0.000458844792, 0.0117449826, 0.0165166073, 0.0131815234, 0.0136579638, -0.00287488592, -0.00157550245, -0.0124018937, -0.000654654636, 0.0106116319, 0.0147119081, -0.0149140349, -0.0194907524, 0.0168775469, -0.00935556088, -0.0187833104, 0.025785543, 0.0095360307, -0.00285864365, -0.0164155439, 0.015130599, 0.0196206905, -0.0197073165, -0.02532354, -0.0232589636, 0.000526069838, -0.0170941111, -0.0239952821, -0.00589053845, 0.000492682913, -0.00845321175, 0.0232300889, -0.0222194567, 0.045680549, 0.030925326, 0.00468139, 0.0016350575, 0.0200538188, -0.0245727859, -0.0149140349, -0.0295248795, -0.00366353942, -0.00182816037, 0.00601325789, 0.0197795033, 0.00167205383, -0.0156647898, 0.0235477164, 0.0830450431, -0.0128133651, 0.000744438439, -0.0142138116, 0.0197073165, -0.0125751449, 0.00654384, 0.0321380831, 0.0094494056, 0.00145819702, 0.0102145979, 0.0241396576, 0.013455838, 0.0148274088, -0.0139034037, -0.0078107384, -0.00450092, 0.0107704457, 0.00769523764, -0.00910290331, -0.0127989277, -0.0125895822, 0.036151737, -0.0164155439, -0.0033838111, 0.0172384884, 0.00995472167, -0.000640668266, -0.0351699777, -0.000162874116, 0.0448431671, 0.00770967547, 0.00659076171, 0.0118316086, 0.0200826935, 0.0205302592, 0.0219451431, 0.0137084955, -0.0200249441, 0.00957212504, -0.00694087334, -0.00321777887, 0.00199058326, 0.0258866064, 0.0359496102, 0.0052300184, -0.00122358615, 0.00574255316, 0.00764470594, -0.014733565, -0.00841711741, 0.00924727879, -0.00527333142, -0.0138167776, -0.00670987181, -0.00162693637, -0.0297703184, -0.00940609258, 0.0171518624, -0.00777464453, 0.0106910383, 0.008713088, 0.0189854372, -0.0126401139, 0.000154978552, 0.0331775919, -0.0236199033, -0.000771057792, -0.0416957736, -0.000743987272, -0.0180903058, 0.013917841, -0.00674235635, 0.029337192, 0.00608905545, -0.00161249877, 0.00393785397, 0.0258577317, 0.0135280257, -0.0101351915, -0.0153038502, -0.00580752222, 0.0126473326, -0.000473733555, 0.00288571417, -0.0172384884, -0.00751476781, 0.00526972208, -0.0106910383, -0.0249337256, 0.009601, 0.0089152148, -0.0176283028, 0.00837380439, 0.00568480277, -0.0108209765, 0.038201876, 0.0230568387, 0.0284131858, -0.00253560254, 0.00138059491, 0.0148562845, 0.00962987542, -0.00194005168, 0.00436737249, -0.00517226802, 0.00437820051, 0.00360759394, -0.0313007049, -0.00383318122, 0.0326578394, -0.00439985702, 0.0164155439, -0.011138604, 0.044092413, -0.00142661482, 0.0204291958, 0.0151594738, -0.00797677, -0.0119687654, 0.00230821036, 0.0067676222, 0.0132970242, -0.00584722543, 0.0163289197, 0.0104600368, -0.00285142497, 0.00504954858, -0.0213532019, -0.0257133562, -0.0348812267, 0.009485499, 0.00253560254, -0.00788292661, 0.000902349653, -0.00628035329, -0.00629479112, 0.0328310877, 0.0168342348, 0.00304272305, 0.00743536092, 0.00200682553, -0.00456227968, 0.00316363783, 0.00703471759, -0.0143076563, -0.00691560749, -0.0040389169, 0.000980854, 0.0147191277, 0.00218910025, 0.00255004014, 0.0175994281, 7.77148598e-05, 0.0286441874, -0.0371334925, 0.00250672735, 0.00802008342, -0.00252477429, -0.00567758409, 0.00882137, 0.0185811836, 0.00757973688, 0.011181917, -0.0214253906, -0.0228547119, -0.00554042682, -0.015130599, -0.0204869453, 0.0102940043, -0.0116078258, 0.00641751057, 0.0156936646, 0.00747867394, 0.0177726783, -0.00109364779, 0.0319648348, -0.0165021699, 0.00359857036, 0.00703471759, -0.0139683727, 0.00272509595, 0.00383679057, 0.00014809813, -0.0320803337, -0.00127862941, -0.000416885538, -0.0163722318, 0.0119759841, -0.00830161665, 0.00397755718, 0.011578951, -0.000822942879, -0.00325387274, 0.0127917081, -0.0106838197, -0.0119471094, 0.000515692809, -0.0176427402, 0.0121781109, -0.04363041, -0.00394868199, 0.00142571249, -0.00390897878, -0.00977425091, 0.00336576416, 0.0126040196, -0.0244861599, -0.0390103795, 0.00950715598, 0.00514700217, -0.0129072089, 0.0155492891, -0.00211149827, -0.00232264795, 0.0223205201, 0.00770245632, -0.0128061464, 0.00682898192, -0.00519753387, 0.00900905859, 0.0214687027, 0.00777464453, 0.00694809202, -0.00767358113, 0.0202559456, 0.011578951, 0.0184656829, 0.000746243168, 0.0339572206, -0.00287488592, 0.0169497356, 0.0408295169, -0.00935556088, -0.00286225299, -0.0352566056, 0.000812114682, -0.0127989277, -0.0204003211, 0.00060412311, -0.000246792624, 0.048481442, -0.0111602601, 0.0016323505, -0.0183934942, 9.41827457e-05, 0.00396312, -0.0121997669, -0.0220606439, 0.0123874554, -0.0108570708, -0.0321380831, 0.0142138116, -0.0107776644, -0.00804895908, 0.000715563248, 0.0341882221, 0.0236632172, -0.0105466628, -0.0302900728, 0.00520836189, -0.00375377457, -0.0149429096, 0.0141777173, 0.00741370441, -0.000655557, -0.0268394873, -0.00960821938, -0.0140116848, 0.00847486779, 0.0030517464, 0.017801553, -0.00748589262, 0.0479616895, -0.00201223977, 0.00202126312, 0.0209922623, 0.00364007847, -0.00192741887, -0.00163956929, 0.0157802906, 0.00802008342, 0.00516504934, -0.0171807371, -0.0143581871, -0.00901627727, -0.0266806744, -0.0114201372, -0.00914621633, 0.00258974335, -0.0176716149, 0.00465612393, 0.0171663, -0.0289618149, -0.0118388273, 0.0398477614, 0.0279800575, 0.00768801896, -0.0242840331, 0.0114634503, -0.0191298127, 0.0210644491, -0.0143870628, 0.0177582409, -0.00742814224, -0.0179026164, -0.00632366631, -0.0160257295, 0.0270416141, 0.0179170538, 0.00529498747, -0.0118749216, -0.00349570252, -0.0151161607, -0.0172240492, -0.0177004896, 0.01032288, -0.0228547119, -0.00169371022, 0.00039861296, 0.0202559456, -0.00908124633, 0.0141849359, 0.00670987181, -0.0115933884, -0.00449009193, -0.0246305354, 0.000507120509, -0.0167764854, 0.00663768407, 0.0117305452, -0.0119037963, -0.0215120148, 0.0411471426, -0.0306654498, -0.0234755278, 0.0107848831, -0.0124379871, 0.0210067, -0.0155492891, -0.0128711155, 0.00705276476, -0.0116944509, 0.00575699052, 0.00332245138, 0.00816446, 0.00853983685, -0.00158452592, -0.0127772707, 0.0478173122, -0.0150728486, -0.00801286474, -0.00730181346, 0.0185811836, -0.00675318483, 0.0165743586, -0.00968040712, 0.0436015353, -0.00603130506, -0.00292361272, -0.0101496289, 0.00170905027, 0.00856149383, -0.019100938, -0.00500262622, -0.0404830128, 0.0153904753, 0.00574255316, 0.0246449728, -0.0065005268, 0.00892965216, -0.00882858876, 0.00481132837, 0.0194185637, -0.0104167238, 0.0279944949, 0.00144105242, -0.0141488425, -0.0106044132, -0.0153904753, -0.0160401668, 0.00255906349, 0.00348306959, -0.0253524147, -0.0400210097, -0.0138600906, -0.0177438036, 0.032513462, 0.0311274529, -0.00386927533, -0.00108642899, 0.0086625563, 0.019100938, 0.0113190738, -0.0148562845, -0.00376821216, 0.00067766459, -0.0266229231, 0.0045767175, -0.0197217539, 0.0286441874, -0.0187111218, -0.00630561914, 0.00962265674, 0.00921118539, 0.00163866696, 0.000840087538, -0.0361228622, 0.0131959608, -0.0243417844, 0.000605025445, 0.00221617077, -0.0145458765, -0.00800564606, 0.021728579, -0.00334771723, 0.0279656202, 0.0103517547, 0.013917841, 0.0183357447, 0.0112324487, 0.0201981943, 0.00206999015, 0.0109870089, -0.0276046805, -0.0221183952, 0.00955768768, 0.0255112294, 0.0223349575, -0.00656188652, -0.0210644491, 0.00684702909, 0.0291350652, -0.00701306155, 0.0192597508, 0.00393063482, 0.0289762523, -0.0104455994, -0.0097886892, 0.0147046894, -0.00067946926, 0.0203858837, -0.0350256041, -0.0132176178, -0.00636697887, 0.00736678252, 0.00632366631, -0.00709246797, -0.0086120246, -0.0192164388, 0.0107632261, 0.0232445262, 0.0241974071, -0.00477884384, -0.0264063589, 0.0141560612, -0.00407862058, -0.00369963353, -0.000447791, 0.00913899671, 0.011492325, -0.0138239963, -0.0164732952, 0.0106044132, 0.0207901355, -0.0203714464, 0.00497014169, 0.00367436768, -0.00255364948, 0.00786127, -0.0228835866, 0.00384040014, -0.00521558104, 0.0065691052, 0.011181917, -0.00809227116, 0.0105827563, -0.00644638576, -0.0139467157, -0.0177149288, -0.00192200474, 0.0169208609, 0.00724406308, 0.000189267841, 0.0281966217, 0.0524373427, -0.0138167776, -0.0133547746, -0.00303911348, 0.0310985781, -0.00450813863, 0.00436015334, -0.0081788972, -0.0116150444, 0.00643194839, 0.0113984803, -0.00194727047, 0.0186100584, 1.10960809e-05, -0.0157225393, -0.0119615467, 0.0120048597, 0.0124524254, -0.0107848831, 0.0389237553, 0.0170652363, -0.0169352982, 0.00922562275, 0.00170453847, -0.0027647994, -0.009485499, -0.0324557126, -0.00840989873, 0.00817167852, 0.0209200736, -0.00926171709, -0.00524806557, 0.0102218166, 0.00272509595, 0.00286405766, 0.0392991304, 0.00695170183, 0.00593746081, -0.000106984829, 0.00156918599, 0.02532354, 0.00652579265, 0.00651135482, -0.00790458266, -0.0180758685, 0.0229557753, -2.05143551e-05, -0.00097453763, -0.00674957549, -0.016343357, 0.0209489483, -0.000417787873, 0.0016251317, 0.0161845423, -0.0219162684, -0.00103950675, 0.00935556088, -0.0244284086, -0.00917509105, 0.0179170538, -0.00609627413, 0.00654384, -0.00646443292, -0.00365090673, 0.00841711741, 0.00831605401, -0.0165021699, -0.0186678097, 0.00385844707, 0.00568841211, 0.00558373937, -0.00109184312, -0.00683620106, -0.0111746984, -0.00566675561, 0.0170652363, 0.0236487798, 0.0355164818, -0.00638502603, -0.0257566683, 0.00699862372, -0.00199780217, -0.0142859994, -0.0199238807, -0.0245150346, -0.0145675326, -0.00380430603, 0.00351374946, 0.00682537258, 0.00298677734, 0.0146758147, 0.00641390122, 0.00879971404, -0.0246594101, -0.00272329128, -0.00493404781, -0.00816446, -0.0200393815, -0.0108426334, 0.0279223081, -0.00153038499, 0.0169064235, 0.0206313226, -0.0263197348, -0.00286044832, 0.00294526923, -0.00773855066, -0.0190431867, 0.0266084857, -0.0210933257, -0.0199383181, 0.00292541762, 0.0158957914, -0.00713578099, 0.0139683727, -0.0151017234, -0.0268250499, 0.0265218597, -0.0217430163, -0.0150728486, -0.0466623046, -0.0401365124, 0.017050799, -0.0444677919, -0.00829439797, -0.00183447683, -0.00640668254, 0.000224572272, -0.0140116848, -0.00306437933, -0.0013923255, 0.0093988739, 0.00654023, -0.00443595089, -0.0168486722, 0.00602047658, 0.00729098497, -0.00538161304, 0.00667738728, 0.00182364858, 0.00645360444, -0.00360759394, -0.00297414442, -0.0224504583, -0.011889359, 0.0153760379, -0.00423021521, 0.0206601974, 0.000493585248, -0.0259299185, -0.00529859727, 0.0028478154, -0.0215697661, -0.00804174, 0.00580391288, -0.0069877957, -0.0160112921, 0.00744979875, -0.00365451607, -0.00381152495, -0.00506759575, -0.00362564088, 0.00612514932, -0.00364188314, 0.0268106125, 0.0120048597, -0.00440346636, 0.0148851592, 0.00192561408, 0.0173973013, 0.00572450599, 0.0103517547, 0.00193644234, -0.0124885188, -0.00280089327, -0.00621538423, 0.0348812267, -0.00925449748, 0.0262331087, 0.00130209047, -0.0102073792, -0.0082294289, 0.00849652383, -0.0134125249, 0.0179170538, -0.00867699459, -0.00838102307, -0.00588332, 0.00756529951, -0.0160834808, 0.0157802906, 0.0114057, 0.0108209765, -0.00801286474, 0.0168775469, -0.0132898055, -0.0140622165, 0.0108426334, -0.00534191, -0.00814280286, -0.0336973444, -0.0032159742, -0.000363421306, -0.00926171709, -0.00484742224, 0.00809949078, 0.0145458765, -0.00570645928, -0.0106260693, 0.0094494056, -0.0295104422, -0.00306437933, 0.0187688731, 0.0137806833, 0.0077602067, 0.019476315, 0.0101857232, -9.22652471e-05, 0.00037221922, -0.00098175637, 0.0181191806, -8.81482774e-05, -0.00260959519, 0.0105250059, -0.0109364772, -0.00988975167, -0.0054790671, -0.0116872322, 0.00498457951, -0.0165454838, -0.0154337883, 0.0108931651, 0.0147263464, 0.0184512455, 0.0073054228, -0.0233167149, -0.0215986408, 0.000230550329, -0.00473914, -0.00760139339, 0.0127989277, -0.00264929864, -0.0298858192, -0.0118604833, 0.00268178317, -0.0105466628, 0.0366714895, 0.0107921017, 0.00538522284, -1.41062628e-05, -0.0215986408, -0.00133547746, -0.0100269094, 0.0282688104, 0.0102940043, 0.0259299185, 0.00677845068, -0.0159391034, 0.00219270959, -0.0144231571, -0.00461281138, 0.0184801202, -0.00231362437, 0.0032358258, 0.0271282401, 0.00102597149, -0.0149573479, 0.005933851, -0.0181624927, 0.0156792272, -0.00288571417, -0.0317338333, -0.00670265313, -0.000829710509, -0.00882858876, 0.00114869105, -0.00118929683, -0.00932668615, 0.00737039186, 0.00562705239, -0.0166609846, -0.00172078074, 0.0213098899, -0.00708885863, 0.00322499755, 0.0163722318, 0.0086625563, 0.00913177803, -0.00909568463, -0.0175561141, 0.0212232638, -0.00129396934, -0.0131959608, -0.00171446428, -0.00838824268, 0.00168558909, -0.0182924327, 0.00177853112, -0.00645721424, 0.014690252, 0.00180830865, -0.00537439436, 0.0360939838, -0.00177672645, 0.0189998746, -0.014228249, 0.0196928792, 0.00404252624, -0.0111097284, 0.0142571246, -0.00477162469, -0.0209633876, 0.00083286874, 0.0319937095, -0.0100052524, -0.0131598674, -0.0202992577, -0.012264736, -0.00296512083, 0.0125101758, -0.0117882956, 0.0158524793, 0.00059916015, -0.016343357, -0.00669182511, 0.0017198784, -0.00680010673, -0.00533469114, -0.00623704074, -0.0039703385, 0.000847757503, -0.00231542927, 0.00911012199, 0.0176283028, -0.00294526923, 0.0299146958, -0.0042085587, 0.00578225637, 0.026666237, 0.0252513532, -0.0134125249, -0.00464890525, -0.0129721789, 0.00903071556, 0.0024110782, 0.00130118814, -0.0103517547, 0.00218188134, -0.0175561141, -0.0197217539, -0.00337659242, 0.0114057, 0.00208262308, 0.00569924, 0.0199383181, -0.00803452078, -0.00389454095, -0.00606018025, 0.0181191806, 0.00568119343, 0.00672791898, 0.005933851, 0.0018290627, -0.0123657994, -0.00428074691, 0.000508022844, 0.0137734646, 0.0129360845, 0.00228474918, -0.0109436968, -0.0135857761, -0.00578225637, -0.0195051897, -0.00853983685, 0.0133331185, -0.000372444803, -0.0057966942, -0.0110158846, 0.0225226469, -0.00260057161, -0.000480501185, -0.0216997042, -0.00260598585, 0.0054971138, 0.00416524615, 0.0036382738, -0.0337839723, 0.0225948356, -0.00279367459, 0.0247893501, -0.00660880888, -0.0174550507, -5.61853631e-06, -0.0080273021, 0.00424826192, -0.00193283288, 0.0128855528, -0.00798399, -0.000582466717, 0.00869143195, 0.016170105, 0.0189421233, 0.0114851063, 0.00784683228, 0.0179170538, 0.0182491187, 0.0261031706, 0.000766997167, -0.00422660587, 0.0241396576, 0.0106405066, 0.0214542653, -0.00634171348, -0.00178033579, 0.00429157494, -0.00851818081, 0.0133403372, 0.00646804227, -0.0037718215, -0.021396514, -0.0120409532, 0.0229990873, 0.0217141416, 0.00964431278, 0.0166609846, -0.0154915387, -0.00372489938, 0.0175994281, 0.0148129715, -0.00927615445, 0.0151883494, -0.00952881202, 0.00926893577, -0.0137806833, -0.00932668615, 0.0158669166, 0.01500066, 0.0141127482, -0.0136218704, 0.017050799, 0.00576060032, 0.0152461, 0.00692643598, 0.00682537258, 0.00404613558, -0.00622982206, 0.00458032684, -0.00806339644, -0.0110303219, 0.00876362, -0.0207901355, 0.0156936646, -0.00170814781, 0.01733955, 0.0045767175, -0.0135929948, 0.0259010438, -0.0096370941, 0.00502789207, 0.0182346813, 0.0133836502, 0.00465973374, -0.0113118552, 0.00738843903, 0.0018191369, -0.00718992203, -0.00693004532, 0.00853261817, -0.0027503618, 0.028124433, -0.0186678097, -0.00330981845, -0.00174604659, -0.00484742224, -0.0124668628, -0.000415532, -0.00653301133, 0.0242840331, 0.0100413468, 0.0125751449, -0.00952881202, -0.0123297051, 0.00374655565, 0.00308423117, -0.0152027868, 0.00889355782, 0.0132753681, 0.00305535598, -0.0191731248, 0.0221472699, -0.0109436968, 0.0180614311, 0.00295429281, 0.000404478225, -0.0131093357, -0.00261320453, -0.00901627727, 0.000895130855, -0.0137734646, 0.00521558104, 0.000395229144, 0.00603852374, 0.0100702224, -0.00428074691, -0.000838282809, 0.0124668628, 0.0103589734, 0.0173106752, -0.00257350109, -0.0166465454, -0.00758695556, -0.0142859994, -0.00626230659, 0.0199816301, -0.000389138295, 0.0177293662, 0.00793345831, 0.00141127489, -0.00477884384, 0.0170652363, -0.0260454193, -0.0382307507, -0.0102145979, 0.00679288805, 0.000877083861, 0.000151594737, 0.0133114615, -0.00587249128, -0.00300843362, 0.0048438129, -0.013015491, 0.00988975167, 0.00634532282, 0.0115284193, 0.0061828997, -0.0187688731, 0.0098392209, 0.00935556088, -0.0034343428, 0.000328906433, -0.00391619746, 0.029799195, -0.0109292585, -0.0039883852, 0.00463085854, 0.00789014529, -0.00793345831, 0.00770967547, -0.0420711488, 0.00555125484, 0.00199960684, 0.024240721, 0.0139034037, -0.0175561141, 0.0179892424, -0.0100052524, 0.0216563921, -0.00209525577, 0.0155926021, -0.0167909227, 0.0164011065, 0.0117522012, -0.0163722318, 0.000244987925, 0.00153850613, -0.0155492891, 0.0111963544, 0.00562344305, -0.0259443577, 0.00284059672, 0.00429518428, 0.0035191637, -0.011492325, -0.00723323459, -0.00965153147, -0.00372850872, -0.00535273785, -0.0180325545, -0.000169190564, 0.000417336705, -0.0232445262, -0.00902349595, -0.00321958354, -0.0242984705, 0.00131021172, 0.0177438036, 0.0178159904, 0.00150421681, 0.00794067699, -0.00342351454, 0.00293444097, 0.0227680858, 0.00701306155, 0.0117882956, -0.00170814781, 0.0043384973, -0.0141560612, 0.00305716065, -0.023865344, -0.00951437466, 0.010719914, 0.00734512601, 0.000248146156, 0.0120626101, -0.00089964259, 0.0013923255, 0.0188554972, 0.00473914, -0.0212088265, -0.0078107384, 0.000559456763, 0.00110808539, -0.0044070757, 0.0142499059, -0.0089152148, -0.0242551584, -0.00791180134, 0.0114057, 0.00674235635, -0.00853261817, -0.0189132486, -0.000124524246, 0.00645360444, 0.00947828, -0.00090641022, -0.00885746442, 0.000500804046, -0.00136345031, -0.00713578099, -0.0117882956, -0.00786848925, -0.000988072832, -0.0140622165, -0.0150728486, 0.0202848203, -0.00703110825, 0.00731264148, -0.0111963544, -0.00585083524, 0.00196531741, 0.00594467949, -0.0225370843, -0.0170652363, 0.0149284722, -0.00892965216, 0.0263630468, -0.00575699052, 0.00793345831, -0.0156936646, -0.00839546137, -0.0320803337, 0.0163144823, -0.0238942187, -0.00918231, 0.00127141061, 0.0212088265, 0.00469943695, 0.00973093882, -0.0155204134, 0.01830687, -0.0078107384, 0.00466334308, 0.00443234155, -0.00234249956, 0.00700223306, -0.0169930477, -0.00688312296, -0.011932672, -0.00983200129, -0.0259443577, 0.00159715884, -0.00345058506, -0.0159535408, 0.0206746347, 0.0152749745, -0.0182346813, 0.00621538423, 0.00929059181, -0.00149429101, -0.0156359151, 0.0129144285, 0.00510008028, 0.00835214835, -0.0209778249, -1.48887693e-05, 0.0065691052, 0.0165166073, 0.0129433032, 0.0114634503, -0.00864811894, -0.00660519954, 0.00996915903, -0.0143942814, -0.0128133651, 0.00373211806, -0.0172818, 0.00785405096, -0.00173251133, -0.00970206317, 0.015462663, -0.0187544357, 0.0201404449, 0.00184801209, -0.00541048823, -0.0199816301, -0.00888633914, 0.00175236305, -0.00437820051, -0.000885205, -0.00380430603, -0.0149862226, -0.0187688731, -0.00684702909, -0.00719353138, -0.0117449826, 0.000414855254, -0.0195196271, 0.029712569, -0.00152045919, 0.0208334476, -0.011138604, -0.00803452078, 0.0227536485, -0.0207035094, -0.0112829795, 0.0147480024, -0.00305896532, -0.00317446608, 0.029712569, 0.0104528181, 0.0128855528, -0.00857593119, -0.0248182248, 0.00853261817, 0.0105827563, 0.0277201813, 0.00666655926, 0.00522640906, -0.0160401668, 0.0194041263, -0.0230135247, 0.0130082723, -0.00503150141, 0.00810670946, 0.003066184, -0.0175994281, -0.00282074488, -0.00725850044, -0.0228691492, 0.00388010335, 0.0352566056, 0.0128783341, 0.0187399965, -0.00340907695, -0.0246738493, -0.00197253632, -0.00543936342, -0.0059843827, -0.0044756541, 0.00987531431, -0.0213820767, 0.0281821843, -0.00763748726, 0.0132609298, 0.00380430603, -0.00797677, -0.0128133651, 0.0115645127, 0.00812114682, 0.00310588744, 0.0165021699, 0.0139467157, 0.0172384884, -0.00147985341, 0.0110086659, -0.02616092, 0.0116439201, 0.00770967547, 0.00379708735, 0.00396672916, -0.0193752516, -0.00476079667, -0.00593024166, -0.000759327202, 0.00905237161, 0.00763026858, -0.00515422132, 0.0146758147, 0.0135063697, 0.0125101758, 0.0193752516, 0.0159246661, -0.0123802368, 0.00228835875, -0.00601325789, -0.00300662895, 0.00922562275, -0.0266229231, -0.0127339577, 0.0190720614, -0.0109364772, 0.00937721785, -0.0258866064, -0.00876362, -0.0182346813, 0.019202, 0.00550433295, -0.000533739803, -0.00619372772, 0.0140333418, -0.0220028944, 0.0144303758, 0.0062514781, -0.0181913693, 0.00151955674, -0.0158669166, -0.000231452679, -0.00536356634, -0.00934112351, -0.0120698288, -0.0144809075, 0.0257999804, 0.0030517464, -0.0190287493, -0.00994750205, 0.00423382455, 0.0147119081, -0.00629118178, 0.00395951, -0.0272437409, -0.0104239434, 0.0150295356, 0.0129793976, -0.0181191806, -0.00176228886, 0.00386927533, -0.00789014529, 0.00691199815, -0.000400868827, 0.00576420967, 0.00892965216, -0.00664129341, -0.000572089688, -0.0167620461, -0.00887912, -0.0115861697, -0.00641029188, 0.0236776546, -0.0201981943, -0.00763748726, 0.00159625651, 0.0124596441, -0.015130599, 0.00262583746, -0.00644638576, 0.0219451431, -0.0137157142, 0.0148995975, 0.000386882399, -0.0101857232, 0.00134089158, -0.00247063325, 0.00787570793, 0.017137425, 0.0103373174, -0.00644638576, -0.00975259487, 0.00791902, 0.0137157142, -0.0213387646, 0.00058562489, 0.000225023439, 0.00323763047, -0.00918231, -0.0288607515, -0.00146451348, 0.0192164388, 0.00731264148, -0.000288751879, -0.0167909227, -0.0271138027, -0.00347224134, -0.0119254524, -0.0052119717, -0.0102073792, 0.00255545415, -0.0184656829, -0.0319070816, 0.00675679417, -0.00622621272, 0.0116150444, 0.0212665759, -0.0144159375, -0.0177582409, 0.0140116848, -0.021396514, 0.00950715598, -0.0107921017, 0.00260598585, -0.00651496463, 0.000622621272, 0.0064030732, 0.0113118552, 0.00255545415, 0.00282435445, -0.00760861207, -0.0578658767, -0.0104672555, 0.00845321175, 0.014314875, 0.00897296518, 0.0176716149, 0.00267636892, 0.0118171712, 0.000419592572, 0.0231434628, -0.010633288, 0.000658264034, 0.0185667463, -0.010301223, 0.0268394873, 0.0013823997, 0.00287849526, -0.013102117, -0.00280991686, -0.0187111218, 0.0141993742, -0.0227103364, 0.00730903214, -0.00458393618, -0.0151017234, -0.0072548911, -0.00543936342, 0.0152316615, 0.0163577944, 0.00995472167, -0.0132392738, -0.0242984705, -0.000632547075, -0.0310697034, 0.00670987181, -0.00794789568, 0.0070058424, -0.0328888409, -0.015043973, 0.0106260693, -0.0183646195, 0.00188952009, -0.0047427495, -0.00807061512, 0.000673152856, 0.0220028944, -0.0121925483, 0.0106477253, -0.0131815234, -0.00332786539, -0.0202848203, 0.0307520758, -0.00467778044, 0.0161845423, -0.0253957286, -0.00218368624, -0.0048943446, -0.0188266225, 0.00570285, 0.00635615084, -0.0128133651, -0.0176138654, -0.0144375945, -0.030549949, 0.0119254524, -0.0106549449, -0.0242262837, 0.000451626, 0.0115717314, 0.0139250597, 0.00605296157, 0.00936999824, -0.00695892051, 0.00805617776, -0.00392702548, -0.00362925022, -0.00389454095, 0.00674235635, 0.0031022781, 0.0103878491, 0.0210067, -0.00473192148, 0.00529859727, -0.0187111218, 0.00521919038, 0.0120987035, -0.0126906456, -0.00854705554, 0.00537439436, -0.00728376629, 0.0167042967, 0.018220244, -0.00522279972, 0.033264216, -0.0180181172, 0.0243562218, -0.00834493, -0.0145314382, -0.00232806196, -0.00752920518, 0.0180903058, -0.000565773225, 0.0093988739, 0.0162856057, 0.0460559241, -0.017137425, -0.00220895186, -0.00480410969, -0.0169641729, -0.00227211649, 0.0318204574, 0.0133259, -0.00253921188, -0.00257711066, 0.0363538638, 0.0183213074, 0.0121636735, 0.00558013, -0.00417968351, 0.00287488592, -0.0098392209, -0.0241396576, -0.00556930201, -0.00552598899, 0.00755086169, 0.017801553, -0.0203858837, -0.0132681495, 0.00990419, -0.0160401668, 0.00659076171, 0.0186966844, -0.00169822201, -0.00809227116, -0.0104239434, -0.0127700521, -0.00704915542, 0.00697696721, 0.00460559269, 0.00304633239, 0.00680371607, 0.0045767175, 0.0133331185, -0.0104455994, -0.0131743047, -0.0300013199, -0.0108570708, -0.00184620731, -0.00012328352, -0.00508203311, -0.0169930477, -0.00551155163, 0.00165039743, 0.0232156515, -0.0357474834, -0.0124740815, 0.000358684, 0.0234755278, 0.00765192509, -0.00182725803, 0.024616098, 0.00741370441, -0.01356412, -0.0148418471, 0.00145458768, -0.00507120509, -0.0148418471, 0.00158272125, 0.000830612844, -0.0184656829, -0.00273411931, 0.0148707218, 0.0207756981, 0.0114851063, 0.000310408272, 0.0137734646, -0.0080778338, -0.0262331087, -0.0184801202, 0.00744979875, -0.00614680583, -0.00680732587, -0.0239230935, 0.0226381477, -0.0188266225, -0.0111746984, 0.0104961311, -0.00925449748, -0.00412915181, -0.0176283028, 0.00457310816, -0.0123585807, -0.0105899749, -0.00439263787, -0.0123152677, -0.000949271838, -0.0105755376, 0.0159824174, -0.00819333456, 0.00420134, 0.023735404, 0.00848208647, 0.00473553082, -0.000410343491, -0.00598077336, -0.0183646195, -0.0141632799, 0.0144303758, 0.0114634503, -0.0189998746, -0.0168919861, 0.0125318319, -0.0129721789, -0.0210355744, -0.00253560254, 0.00508925179, -0.00820055325, -0.0121275792, -0.00804174, 0.0114417933, 0.0159102287, -0.00208442775, 0.0191731248, 0.00532025332, 0.00404613558, -0.000298452156, -0.0112829795, 0.0180469919, 0.00515783066, -0.0088646831, 0.0101063158, 0.00818611588, 0.00292180805, -0.0106838197, 0.0130082723, 0.00164137396, -0.000862646266, 0.0231723394, -0.0115572941, 0.00756529951, 0.00819333456, -0.00323943514, -0.0141704986, 0.00711773382, -0.00373211806, 0.00848208647, 0.0120553914, -0.00726571912, -0.00329177151, -0.00311310636, 0.00681093521, 0.00596994534, 0.0094494056, -0.00472831214, 0.0177293662, 0.0135496818, -0.00856149383, 0.0141416239, -0.00570285, 0.0240674689, -0.00412554247, -0.0128711155, 0.0203136951, 0.00698057702, 0.0148851592, 0.0160546042, 0.00113876525, -0.0397322588, -0.0141777173, -0.00434932532, -0.00407140143, -0.00994028337, 0.00182455103, 0.0129360845, 0.00932668615, -0.00733429799, 0.00581113156, 0.0278212447, 0.0187977478, -0.00993306469, -0.0126401139, -0.0220606439, -0.0188699365, -0.0124163311, 0.0193752516, -0.000285368063, -0.00362203154, 0.00205194298, 0.000370640104, 0.000915433688, 0.0272581782, 0.00590136647, 0.0109870089, -0.0160690416, -0.00903071556, -0.0236776546, 0.01224308, -0.00620094687, 0.00283518247, -0.0134847127, 0.0111241667, 0.012726739, -0.0214831401, -0.00121817202, -0.0126473326, -0.0225082096, -0.0203425698, -0.0317049585, -0.00672791898, -0.00879971404, 0.00367075833, 0.0226670224, -0.0192886256, -0.00912455935, 0.00225046, 0.0086120246, 0.00539966, 0.00931224786, -0.000961904705, -0.0206746347, -0.0133836502, 0.00192922354, -0.0177871156, -0.00161971757, 0.012286393, -0.0275036171, 0.00399560435, 0.00493043847, 0.0119832028, -0.00602408638, -0.00359496102, 0.00552598899, 0.00515422132, 0.0102218166, -0.00208984176, 0.00938443653, -0.0106260693, -0.0127411773, 0.00336035015, -0.0146180643, 0.00925449748, 0.0168342348, -0.00147353695, -0.0114562307, 0.0276768673, -0.0122069856, 0.00708164, -0.0108281961, 0.0113768242, 0.00537439436, 0.0019941926, 0.00575699052, 0.0167476088, 0.0113840429, 0.00670987181, -0.0114778876, -0.00853983685, -0.000739475538, 0.00363285956, 0.0140766548, -0.0202415064, -0.0270704888, -0.0249626, 0.0062514781, -0.0023118197, 0.00750033, 0.0216708295, -0.00219451427, -0.0212810133, -0.00942774862, 0.000470124156, 0.011911015, 0.00179116405, 0.0767502487, 0.00988975167, 0.00662685558, -0.0179314911, 0.0101568475, -0.000151256361, -0.0156214768, 0.0448142923, 0.00983200129, 0.00934112351, -0.00734512601, 0.00882858876, -0.0188410599, -0.0172529258, -0.0367292389, -0.00185523089, -0.0140910922, 0.0159246661, 0.00729820412, -0.0166898593, -0.00609988347, -0.00840989873, -0.013455838, -0.0113190738, -0.00659437105, -0.0214975774, -0.0242118463, -0.0170363616, 0.0088141514, 0.00383679057, -0.00652579265, 0.00104762788, 0.000875279133, 0.00535634765, -0.0165454838, -0.0150295356, 0.0271571148, 0.020227069, -0.00691560749, 0.0142499059, -0.00788292661, -0.00365632074, 0.000690748624, -0.0104167238, 0.00402808888, 0.00333688897, -0.00379347778, -0.0086409, 0.00520836189, -0.0205158219, 0.00747867394, -0.0230568387, -0.00366353942, -0.0298569445, -0.00733790733, 0.0162422936, -0.00523723708, -0.0114778876, 0.00947106164, 0.00282615912, 0.00130299293, -0.0120409532, 0.00687229494, 0.0110231033, 0.00322499755, -0.0186100584, 0.00463446788, 0.00563788041, 0.00111079239, -0.00859036855, 0.01356412, -0.00473192148, -0.00261320453, -0.00307701225, -0.00713217165, 0.00661241822, -0.0103156613, 0.0277346186, -0.0150584104, -0.00853261817, 0.00250131311, 0.00969484448, -0.00102777628, 0.00975981355, -0.00121817202, -0.0051794867, -0.0223638341, -0.0294093788, -0.0110591976, -0.00685063843, -0.000895582, 0.0466045551, 0.014690252, 0.0166176707, 0.00830883533, 0.00259876694, -0.00539244153, 0.00291458936, 0.017050799, 0.0120842662, 0.0035173588, 0.00970206317, -0.00747867394, -0.00289112818, -0.00279006502, 0.0200682562, -0.00987531431, -0.00340907695, -0.00776742585, 0.0048943446, -0.00859758724, 0.000406057341, -0.0106621636, 0.043341659, -0.00728376629, 0.0183646195, 0.0100918785, -0.00570285, -0.00612514932, -0.00654023, -0.000367030705, 0.0138167776, -0.00450452929, -0.00287127658, 0.0113262925, 0.00361300795, 0.0219162684, 0.0192886256, 0.0169497356, -0.0140766548, 0.0157514159, 0.00483298488, 0.00707442127, -0.0325423367, -0.0119832028, 0.0304055735, -0.0393280052, -0.0162134189, -0.00539966, 0.0167764854, 0.0144231571, 0.016343357, -0.00270524411, 0.00255364948, -0.0220173318, -0.00525528425, -0.00569202146, 0.00137427845, 0.00827274192, -0.010719914, -0.0119759841, 0.00659798039, 0.0180614311, -0.00169641734, 0.00103409274, -0.0214253906, 0.00682176324, -0.00556569267, 0.00268539251, -0.0181769319, 0.00700945221, 0.000400417659, 0.00450452929, 0.00237317965, -0.00507120509, -0.0191731248, 0.00800564606, 0.00176228886, 0.0151161607, 0.0175272394, 0.0164444204, 0.00494487584, -0.0369891152, 0.0136290891, 0.00947828, 0.0282543711, 0.000578406092, 0.00846043, -0.0169786103, -0.0350544788, -0.011954328, 0.0126762073, 0.000877535, 0.0261464827, 0.00340546761, 0.00146361114, -0.0106693823, -0.0200826935, 0.0365271121, 0.00043786515, -0.000340862578, -0.0044756541, -0.0310408268, 0.01308046, -0.0116511388, -0.00366353942, 0.00271065836, -0.00215481105, -0.0211943891, 0.00243273471, -0.00970928185, -0.00516504934, 0.00918952841, 0.0107054757, 0.0104455994, 0.0155204134, -0.00573172513, -0.000183402561, 0.0128133651, 0.0119615467, 0.00357330451]
30 Apr, 2021
Connect a graph by M edges such that the graph does not contain any cycle and Bitwise AND of connected vertices is maximum 30 Apr, 2021 Given an array arr[] consisting of values of N vertices of an initially unconnected Graph and an integer M, the task is to connect some vertices of the graph with exactly M edges, forming only one connected component, such that no cycle can be formed and Bitwise AND of the connected vertices is maximum possible. Examples: Input: arr[] = {1, 2, 3, 4}, M = 2Output: 0Explanation:Following arrangement of M edges between the given vertices are:1->2->3 (1 & 2 & 3 = 0).2->3->4 (2 & 3 & 4 = 0).3->4->1 (3 & 4 & 1 = 0).1->2->4 (1 & 2 & 4 = 0).Therefore, the maximum Bitwise AND value among all the cases is 0. Input: arr[] = {4, 5, 6}, M = 2Output: 4Explanation:Only possible way to add M edges is 4 -> 5 -> 6 (4 & 5 & 6 = 4).Therefore, the maximum Bitwise AND value possible is 4. Approach: The idea to solve the given problem is to generate all possible combinations of connecting vertices using M edges and print the maximum Bitwise AND among all possible combinations. The total number of ways for connecting N vertices is 2N and there should be (M + 1) vertices to make only one connected component. Follow the steps to solve the given problem: Initialize two variables, say AND and ans as 0 to store the maximum Bitwise AND, and Bitwise AND of nodes of any possible connected component respectively. Iterate over the range [1, 2N] using a variable, say i, and perform the following steps: If i has (M + 1) set bits, then find the Bitwise AND of the position of set bits and store it in the variable, say ans. If the value of AND exceeds ans, then update the value of AND as ans. After completing the above steps, print the value of AND as the resultant maximum Bitwise AND. Below is the implementation of the above approach: C++ // C++ program for the above approach #include <bits/stdc++.h> using namespace std; // Function to find the maximum Bitwise // AND of connected components possible // by connecting a graph using M edges int maximumAND(int arr[], int n, int m) { // Stores total number of // ways to connect the graph int tot = 1 << n; // Stores the maximum Bitwise AND int mx = 0; // Iterate over the range [0, 2^n] for (int bm = 0; bm < tot; bm++) { // Store the Bitwise AND of // the connected vertices int andans = 0; // Store the count of the // connected vertices int count = 0; // Check for all the bits for (int i = 0; i < n; ++i) { // If i-th bit is set if ((bm >> i) & 1) { // If the first vertex is added if (count == 0) { // Set andans equal to arr[i] andans = arr[i]; } else { // Calculate Bitwise AND // of arr[i] with andans andans = andans & arr[i]; } // Increase the count of // connected vertices count++; } } // If number of connected vertices // is (m + 1), no cycle is formed if (count == (m + 1)) { // Find the maximum Bitwise // AND value possible mx = max(mx, andans); } } // Return the maximum // Bitwise AND possible return mx; } // Driver Code int main() { int arr[] = { 1, 2, 3, 4 }; int N = sizeof(arr) / sizeof(arr[0]); int M = 2; cout << maximumAND(arr, N, M); return 0; } Java // Java program for the above approach import java.util.*; class GFG{ // Function to find the maximum Bitwise // AND of connected components possible // by connecting a graph using M edges static int maximumAND(int arr[], int n, int m) { // Stores total number of // ways to connect the graph int tot = 1 << n; // Stores the maximum Bitwise AND int mx = 0; // Iterate over the range [0, 2^n] for(int bm = 0; bm < tot; bm++) { // Store the Bitwise AND of // the connected vertices int andans = 0; // Store the count of the // connected vertices int count = 0; // Check for all the bits for(int i = 0; i < n; ++i) { // If i-th bit is set if (((bm >> i) & 1) != 0) { // If the first vertex is added if (count == 0) { // Set andans equal to arr[i] andans = arr[i]; } else { // Calculate Bitwise AND // of arr[i] with andans andans = andans & arr[i]; } // Increase the count of // connected vertices count++; } } // If number of connected vertices // is (m + 1), no cycle is formed if (count == (m + 1)) { // Find the maximum Bitwise // AND value possible mx = Math.max(mx, andans); } } // Return the maximum // Bitwise AND possible return mx; } // Driver Code public static void main(String args[]) { int arr[] = { 1, 2, 3, 4 }; int N = arr.length; int M = 2; System.out.println(maximumAND(arr, N, M)); } } // This code is contributed by souravghosh0416 Python3 # Python3 program for the above approach # Function to find the maximum Bitwise # AND of connected components possible # by connecting a graph using M edges def maximumAND(arr, n, m): # Stores total number of # ways to connect the graph tot = 1 << n # Stores the maximum Bitwise AND mx = 0 # Iterate over the range [0, 2^n] for bm in range(tot): # Store the Bitwise AND of # the connected vertices andans = 0 # Store the count of the # connected vertices count = 0 # Check for all the bits for i in range(n): # If i-th bit is set if ((bm >> i) & 1): # If the first vertex is added if (count == 0): # Set andans equal to arr[i] andans = arr[i] else: # Calculate Bitwise AND # of arr[i] with andans andans = andans & arr[i] # Increase the count of # connected vertices count += 1 # If number of connected vertices # is (m + 1), no cycle is formed if (count == (m + 1)): # Find the maximum Bitwise # AND value possible mx = max(mx, andans) # Return the maximum # Bitwise AND possible return mx # Driver Code if __name__ == '__main__': arr = [1, 2, 3, 4] N = len(arr) M = 2 print (maximumAND(arr, N, M)) # This code is contributed by mohit kumar 29. C# // C# program for the above approach using System; class GFG{ // Function to find the maximum Bitwise // AND of connected components possible // by connecting a graph using M edges static int maximumAND(int[] arr, int n, int m) { // Stores total number of // ways to connect the graph int tot = 1 << n; // Stores the maximum Bitwise AND int mx = 0; // Iterate over the range [0, 2^n] for(int bm = 0; bm < tot; bm++) { // Store the Bitwise AND of // the connected vertices int andans = 0; // Store the count of the // connected vertices int count = 0; // Check for all the bits for(int i = 0; i < n; ++i) { // If i-th bit is set if (((bm >> i) & 1) != 0 ) { // If the first vertex is added if (count == 0) { // Set andans equal to arr[i] andans = arr[i]; } else { // Calculate Bitwise AND // of arr[i] with andans andans = andans & arr[i]; } // Increase the count of // connected vertices count++; } } // If number of connected vertices // is (m + 1), no cycle is formed if (count == (m + 1)) { // Find the maximum Bitwise // AND value possible mx = Math.Max(mx, andans); } } // Return the maximum // Bitwise AND possible return mx; } // Driver Code static public void Main () { int[] arr = { 1, 2, 3, 4 }; int N = arr.Length; int M = 2; Console.WriteLine(maximumAND(arr, N, M)); } } // This code is contributed by avanitrachhadiya2155 Javascript <script> // JavaScript program for the above approach // Function to find the maximum Bitwise // AND of connected components possible // by connecting a graph using M edges function maximumAND(arr, n, m) { // Stores total number of // ways to connect the graph let tot = 1 << n; // Stores the maximum Bitwise AND let mx = 0; // Iterate over the range [0, 2^n] for(let bm = 0; bm < tot; bm++) { // Store the Bitwise AND of // the connected vertices let andans = 0; // Store the count of the // connected vertices let count = 0; // Check for all the bits for(let i = 0; i < n; ++i) { // If i-th bit is set if (((bm >> i) & 1) != 0) { // If the first vertex is added if (count == 0) { // Set andans equal to arr[i] andans = arr[i]; } else { // Calculate Bitwise AND // of arr[i] with andans andans = andans & arr[i]; } // Increase the count of // connected vertices count++; } } // If number of connected vertices // is (m + 1), no cycle is formed if (count == (m + 1)) { // Find the maximum Bitwise // AND value possible mx = Math.max(mx, andans); } } // Return the maximum // Bitwise AND possible return mx; } // Driver Code let arr = [ 1, 2, 3, 4 ]; let N = arr.length; let M = 2; document.write(maximumAND(arr, N, M)); </script> Output: 0 Time Complexity: O((2N)*N)Auxiliary Space: O(N) Master Data Structures and Algorithms at your own pace with our DSA Self-Paced course. In just 90 days, you’ll cover core concepts, solve real-world problems, and sharpen your problem-solving skills. Take the Three 90 Challenge: complete 90% of the course in 90 days and get a 90% refund. Stay motivated, track progress, and achieve DSA mastery. Start today!
Mathematics/Maths/CBSE Class 12 Maths Term 1 2021 Answer Key/If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero/Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3/Prove that √2 is an irrational number./Is the square root of 12 an irrational number?/Is √4 a rational or irrational number?/Is 37.5 a rational or irrational number?/Number System and Base Conversions/Add two integers of different base and represent sum in smaller base of the two/Count of integers up to N which represent a Binary number/Count of ways to represent N as sum of a prime number and twice of a square/Count ways to represent an integer as an exponent/Represent Integer as sum of exactly X Powers of three. The powers can repeat/Express 2^N in exactly N+1 powers of 2/Minimum cost to form a number X by adding up powers of 2/Minimum cost to convert all elements of a K-size subarray to 0 from given Ternary Array with subarray sum as cost/Minimize cost to convert all 0s to 1s with cost of converting 0s group be X and that of 1 be X/3/Minimize cost to convert all occurrences of each distinct character to lowercase or uppercase/Check if lowercase and uppercase characters are in same order/Number of substrings having an equal number of lowercase and uppercase letters/Count Strings that does not contain any alphabet’s both uppercase and lowercase/Count of subarray that does not contain any subarray with sum 0/Connect a graph by M edges such that the graph does not contain any cycle and Bitwise AND of connected vertices is maximum
https://www.geeksforgeeks.org/connect-a-graph-by-m-edges-such-that-the-graph-does-not-contain-any-cycle-and-bitwise-and-of-connected-vertices-is-maximum?ref=asr10
Mathematics
Connect a graph by M edges such that the graph does not contain any cycle and Bitwise AND of connected vertices is maximum
Count of subarray that does not contain any subarray with sum 0, Is √4 a rational or irrational number?, Count of ways to represent N as sum of a prime number and twice of a square, Minimum cost to form a number X by adding up powers of 2, Check if lowercase and uppercase characters are in same order, Count of integers up to N which represent a Binary number, Prove that the square of any natural number is either a multiple of 3 or one more than a multiple of 3, Minimum cost to convert all elements of a K-size subarray to 0 from given Ternary Array with subarray sum as cost, Minimize cost to convert all 0s to 1s with cost of converting 0s group be X and that of 1 be X, Is 37.5 a rational or irrational number?, Add two integers of different base and represent sum in smaller base of the two, If m times the mth term of an A.P. is equal to n times the nth term, prove that (m+n)th term of A.P is zero, Connect a graph by M edges such that the graph does not contain any cycle and Bitwise AND of connected vertices is maximum, Count ways to represent an integer as an exponent, Express 2^N in exactly N+1 powers of 2, CBSE Class 12 Maths Term 1 2021 Answer Key, Is the square root of 12 an irrational number?, Number of substrings having an equal number of lowercase and uppercase letters, Minimize cost to convert all occurrences of each distinct character to lowercase or uppercase, Represent Integer as sum of exactly X Powers of three. The powers can repeat, Prove that √2 is an irrational number., 3, Number System and Base Conversions, Mathematics, Maths, Count Strings that does not contain any alphabet’s both uppercase and lowercase
GeeksforGeeks
[-0.00282675587, 0.00100905588, -0.0175282862, -0.00379233086, 0.0420295, 0.0376474299, -0.000824637071, 0.0359201916, -0.026260443, 0.0228859279, 0.0115069356, -0.0218303911, 0.0261165053, -0.01835992, -0.027907718, 0.00335652265, -0.00235296437, 0.0139938407, -0.00305865379, -0.0529047139, 0.025716681, -0.0102674812, -0.0445244052, 0.0131622069, -0.0163927861, 0.0290272236, 0.00805245619, 0.0126424357, -0.0331054293, 0.0110431397, 0.00984366797, 0.00127144041, 0.019783292, -0.0335532315, 0.0240534134, -0.00608132361, 0.0290911961, 0.00374435191, -0.0416136831, 0.013066249, -0.00090959965, 0.0144016612, -0.000952580769, -0.00294270483, 0.0146575486, 0.020646913, 0.00962776225, -0.0323057808, -0.0145855807, -0.0129143158, -0.00704090111, -0.040238291, 0.0301947109, 0.0315861, 0.00520570902, 0.032113865, -0.0145376017, 0.00830034725, 0.0182959475, 0.0258606188, 0.0433729105, -0.0155371614, -0.0189196728, 0.000189416634, 0.0414857417, -0.00998760387, -0.0521370545, 0.050153926, 0.000367588218, -0.0298908446, -0.0421574451, 0.0228379481, 0.0151933134, -0.0568389855, 0.0155851403, 0.0055175717, 0.011466953, 0.0108752139, -0.00565351173, 0.0396625437, -0.0182799548, -0.00668505765, -0.0142657217, -0.0245491955, 0.0390867963, -0.00306065287, -0.0200391803, -0.0562632382, 0.0492903069, 0.0284034982, -0.0179600958, -0.0171604473, 0.00488584954, -0.0219423417, 0.00554156117, 0.0265643075, 0.0549838, 0.00373635557, -0.0519451387, 0.0427971631, 0.0116828578, 0.0337131619, 0.0135540348, 0.00133041444, 0.0243572798, -0.0121706435, 0.0140977949, 0.00589340599, 0.0509215891, 0.0408140384, 0.0189676527, 0.0169365462, -0.0192395318, 0.0346727408, 0.0137299569, -0.00381831941, -0.00252488884, -0.0216544699, -0.00563352043, 0.00599336205, 0.0122745978, 0.00475790584, -0.0422214158, -0.00942785, -0.0457718559, 0.0185998138, -0.0228059627, 0.0148974434, -0.0090200305, 0.0071168677, 0.00543760695, -0.0415177271, -0.00353244529, -0.0418056, 0.00627723709, 0.0268042032, -0.0102035096, 0.0169525389, 0.018040061, 0.0179760884, -0.00411019102, -0.0255887378, -0.0206149276, 0.00239694514, 0.00653712265, 0.0245332029, 0.0201191455, 0.0789412558, -0.0208388288, 0.0327855721, -0.0474990942, 0.0206788983, 0.0194474403, 0.0135620311, 0.00776458252, -0.0195753835, -0.0151533308, -0.021926349, -0.0218623783, -0.0691535622, 0.0260525327, -0.0153692355, -0.0214305688, -0.00189916417, -0.0277637802, 0.0226140469, 0.00130142726, -0.00426212419, -0.0468273908, 0.0527127981, 0.0149854049, 0.0159209929, 0.0336172059, 0.059429843, -0.0195593908, 0.0277317949, -0.00724880956, 0.0046979324, 0.0336491913, -0.0121306609, -0.0180080738, -0.034992598, -0.00411818735, 0.00968373753, 0.0435648263, 0.0134340869, 0.0323537588, -0.00754068093, -0.00710887136, -0.00340650068, 0.0205349624, -0.00407220749, 0.047179237, 0.024757104, 0.00679301, -0.0102354949, -0.082075879, 0.0307704564, 0.00284074969, -0.00882811472, -0.0329774842, -0.00923593529, 0.0283395275, 0.0078205578, 0.0305465553, -0.0202950668, -0.0574787036, -0.0491943471, 0.0218463857, 0.0123305731, -0.0379033163, 0.0567430258, -0.0293470845, -0.0298748519, 0.0297309142, 0.0350885577, -0.0385750234, 0.0166326798, -0.0125864604, -0.0233017448, -0.0020730875, -0.0144496402, 0.0172723979, -0.000578745268, -0.0462836288, -0.0312182605, 0.0143936649, 0.0026748227, 0.0149854049, -0.0383831076, 0.0186957717, 0.0140977949, -0.00031811, 0.00928391423, 0.00767662143, -0.0118187983, -0.0146495523, 0.0191595666, -0.00248290715, 0.0196393561, -0.00878013577, 0.00814041682, -0.0394066572, 0.0105713475, 0.00479389029, 0.0168885663, 0.00950781535, 0.0268361885, 0.0385430381, 0.0137699395, 0.000270131102, 0.00675702607, 0.0115549145, 0.0129463021, -0.0357282758, 0.00738075143, -0.0181200244, 0.0140738059, -0.00972372, 0.0218303911, -0.00101155473, 0.0046979324, -0.0307704564, 0.0430850387, 0.00750869513, 0.0237335544, 0.00357642584, -0.0013454078, 0.00289472588, -0.0255567525, 0.00946783274, -0.0257646609, 0.00572148198, -0.0171444546, 0.0193834696, -0.0253648367, -0.00671704346, 0.00901203323, 0.0422214158, 0.00340849976, 0.0219423417, -0.00604933733, 0.0190796033, -0.000187042679, 0.00904401951, -0.0317300335, 0.00824437104, -0.00882011838, -0.107600644, -0.025668703, -0.0292831119, -0.0333293304, 0.0157130845, -0.00688896794, 0.019047616, 0.00191315799, -0.00245292042, 0.000976070412, -0.0243093017, -0.00609331811, -0.016536722, -0.0435328409, -0.0143216969, 0.00529367, -0.0498660542, 0.00724481139, 0.0178641379, -0.000804146053, 0.00815641, -0.0463156141, 0.0187757369, -0.00716084847, -0.0325136892, -0.0151773198, -0.0609011948, -0.0210947152, 0.0582143776, -0.00906001218, -0.0304026194, -0.0322578028, -0.00373035809, -0.0357282758, 0.00692895055, 0.0558154359, 0.019783292, 0.0154012218, -0.0136419954, 0.0373275727, -0.0274119359, -0.0344168507, -0.0225340817, 0.00359041966, -0.0256846957, 0.00588141149, 0.0104434034, -0.0566790551, 0.0205829404, 0.0161848757, -0.0161289014, 0.0202151034, 0.00294270483, 0.012034703, 0.0124425236, 0.0158570204, 0.00921994168, -0.0099716112, -0.00654511945, 0.0272999853, 0.058374308, -0.0142897107, 0.00166326796, 0.0269321464, 0.0157690588, 0.00693294872, 0.0122186225, 0.000146810387, -0.0185038559, -0.0210467372, -0.0110831223, -0.00309863617, 0.00647315104, -0.0228219554, -0.0169365462, 0.0322897881, -0.0043141013, -0.0108832102, -0.00898004789, -0.0114909429, -0.0033665183, -0.0193834696, -0.0214785468, 0.000461296964, -0.0001740484, -0.0098116817, -0.0360161476, -0.000874115271, 0.0457078815, 0.00177321956, -0.00633321237, -0.000512274564, -0.0176722221, 0.0385750234, 0.00964375585, -0.00893206894, -0.0272679981, 0.00999560114, -0.0280836392, 0.0176722221, -0.00535364356, 0.0335532315, -0.030786451, 0.0199272297, 0.00406421116, 0.0268042032, 0.044812277, 0.000765663, 0.0122186225, 0.00365239242, -0.00129642943, -0.0515293218, 0.031522125, 0.0190316234, 0.00594138494, -0.00313062221, 0.00337451487, 0.0245012157, -0.00187617424, -0.0245012157, 0.0188557, 0.0138978828, 0.0252368934, -0.003894286, -0.0610931106, -0.00313062221, -0.00680500502, 0.0221662447, -0.00898804422, -0.00618527783, 0.00282675587, -0.0155931367, 4.26374827e-05, 0.0137379533, -0.00020628421, 0.0121226646, -0.00523769483, 0.0145615907, -0.0167286377, 0.00578945177, 0.00343248923, 0.00733277248, -0.0107072871, -0.0135940174, -0.00694094505, 0.0245811809, -0.0502818711, -0.0370716825, 0.0253168568, 0.00774459122, -0.0440766, -0.021878371, 0.0259245895, 0.00768461777, -0.0235576313, -0.0321458504, -0.0265483148, 0.0150493765, -0.062852338, -0.0182639621, -0.023253765, 0.0106193265, -0.0528087579, -0.0223901458, -0.0315541141, -0.0446523465, 0.0372636, -0.0367838107, 0.0134820659, -0.0140098343, 0.0259245895, 0.00572548, 0.00582543621, 0.0418695733, 0.00612930255, -0.0129383057, 0.0138259148, 0.0210787226, -0.0145376017, 0.0168245956, -0.0126344394, -0.000447802915, 0.0195753835, -0.0128263552, 0.0570308976, 0.00800847542, 0.0213186163, -0.00200111931, -0.00694494322, -0.0559753627, 0.00016142895, -0.0225660689, 0.0320818797, 0.0386709794, -0.0057734591, -0.00305065722, -0.00731678, -0.00853224471, 0.0438846834, 0.00912398472, -0.00610931125, -0.0209507793, 0.0126024531, 0.0145535944, -0.0343208946, 0.0128423478, -0.0226620249, 0.0185518358, -0.019735314, -0.0160169508, 0.00696093636, 0.0330094732, 0.000761664764, -0.0597816892, -0.0269321464, 0.018136017, 0.0169845242, -0.0740793943, 0.00419415394, 0.0335852169, 0.00104054203, -0.0300347805, -0.00175522745, 0.0196553487, 0.0286753792, 0.0246771388, -0.000758166309, -0.00656910893, -0.0372636, 0.020375032, -0.0379672907, 0.00624125311, 0.0202151034, -0.0213346109, 0.0160169508, 0.0257006884, -0.0160649288, 0.00588540966, 0.0131861968, -0.0259725694, -0.00243692752, -0.0112750372, -0.0141057912, 0.0398864448, -0.0120426994, 0.00626924075, -0.0257486682, -0.0199752077, 0.00835632253, 0.00769661274, 0.00349846017, 0.0460277423, -0.0180080738, -0.000733677065, -0.0436287969, 0.0217664205, -0.00751669193, 0.00999560114, 0.0124665136, -0.000892607146, 0.00787653308, 0.0227100048, 0.0314901397, 0.00548158726, 0.00118547829, -0.00837231521, -0.0434048958, 0.000391077891, 0.00842829049, -0.0280996319, -0.0257966463, -0.0035144533, -0.0116668651, -0.0224541165, 0.0091399774, 0.0176722221, 0.00590140279, -0.000638718891, -0.0256527103, 0.0287873298, -0.0068609803, -0.00917196274, 0.020055173, -0.0158650167, -0.00229898817, 0.00337251578, 0.00780456513, 0.0353124589, 0.0274759065, 0.00389828417, 0.00575346779, -0.00305065722, 0.012674422, -0.00487785321, 0.0221662447, -0.0208228361, -0.00691295741, -0.0298428647, -0.0303226542, -0.026772216, -0.00153832289, -0.00842829049, 0.00119747291, 0.0546959266, 0.000586242, 0.006337211, -0.00425012922, 0.00628923206, -0.0124745099, -0.00844428316, -0.0103314528, 0.00745671801, -0.00776458252, -0.00151133479, 0.0142017491, -0.00730478484, -0.00262684375, -0.00836431887, -0.0124825062, 0.0302586816, -0.0191595666, -0.0379992761, -0.0147535065, -0.011738833, 0.0379672907, -0.00140738057, 0.0117308367, -0.00104953803, 0.00151433353, 0.000744672259, -0.0384470783, -0.0457398705, -0.0127383936, -0.022470111, 0.00598536571, 0.0247730967, 9.03352411e-05, -0.00310463365, -0.0348646566, 0.00903602317, -0.0173683558, -0.0128743341, 0.00548558543, -0.0126184467, 0.0216224827, -0.00283275312, -0.0160009582, -0.0209507793, -0.00273479638, 0.00400623679, -0.0331374146, 0.0348006822, -0.0204390045, -0.00420215074, -0.0434368812, 0.0949342176, -0.000865119218, 0.00330854394, -0.0183919054, -0.0202151034, 0.00822038203, -0.00406421116, -0.0015743071, -0.0147295175, 0.0428611375, 0.0292831119, 0.00400423771, -0.0307384711, -0.0168405883, -0.0181200244, -0.0247730967, 0.0287873298, -0.00245491951, -0.00125544739, 0.000845627801, -0.0154172145, -0.00245491951, -0.020375032, 6.22850857e-05, 0.0268361885, -0.00255687465, 0.0033505254, -0.00866818521, -0.0154412035, 0.00906001218, 0.0254767872, 0.0052616843, -0.0287233572, -0.0339370631, 0.041933544, -0.00441805553, -0.00984366797, 0.00946783274, -0.0119307488, -0.0103954244, -0.00104953803, 0.00864419527, -0.00761264935, -0.0303226542, 0.0203110613, -0.0223901458, 0.0126904147, 0.00706489058, -0.0141217848, -0.0115629109, 0.0280516539, -0.00920394901, 0.0143216969, 0.0122026289, -0.000913597876, 0.00975570641, -0.0103634391, -0.00120247074, -0.0162008703, -0.025348844, 0.0142817143, -0.0056455154, 0.0512734316, -0.00264683506, 0.0299228299, -0.0148734534, 0.00770860724, 0.0430210643, 0.00748870382, -0.0131462142, -0.0173683558, 0.0360481329, -0.014273718, -0.020646913, -0.0100115938, 0.01333813, -0.00606932864, 3.87954242e-05, 0.00513773877, 0.0259725694, -0.0287873298, -0.00204709894, -0.0156571083, -0.00470193056, -0.00225300831, -0.000815641, -0.00164027803, 0.00318659749, 0.0028767339, -0.00206908933, 0.00799248274, -0.0272999853, -0.0149934012, 0.024437245, -0.00915597, -0.0117308367, 0.00422214158, -0.00248490623, 0.0171604473, -0.00106053322, 0.0103154602, 0.0324817039, -0.00533765089, 0.0169685315, -0.005241693, 0.00621726364, 0.00590939913, -0.017496299, 0.0104993787, 0.0303866267, -0.013977848, -0.00235896185, -0.00774459122, 0.0115549145, -0.00536164036, 0.0395026132, 0.00240094331, -0.0049658143, 0.0147135239, -0.0278437454, 0.0320978723, 0.0237015691, -0.0111311013, -0.0489384606, -0.0184718706, 0.0122506078, -0.0156571083, 0.00373235741, 0.0166006945, 0.0113789914, 0.000928091526, -0.023797527, -0.0278917234, 0.00315261236, -0.0145376017, -0.023525646, 0.035632316, -0.0102834739, 0.0272200201, 0.0263723936, 0.0397585, 0.00361440913, 0.00535764219, -0.003642397, -0.00529367, 0.0465075299, 0.0299388226, -0.00324457209, -0.00285274442, -0.0241333786, 0.0118347909, 0.0120986747, -0.0308504216, -0.01304226, 0.00913198106, -0.0253008641, -0.0583103374, 0.017448321, -0.0344488397, -0.00749670062, 0.02160649, -0.0161528904, -0.0580224618, -0.0443964601, -0.00714485534, -0.0393746719, -0.00716884481, -0.00857222732, -0.00580944307, -0.0205989331, 0.0147055276, 0.00466194795, 0.0229818858, 0.00146535505, -0.0157290772, -0.0128503442, 0.0217184406, 0.0123305731, -0.00451001525, 0.0268841684, -0.00830034725, -0.00291071902, 0.0242133439, 0.0241493713, -0.0230138712, 0.00668905582, 0.00973171648, 0.0236056112, 0.00887609366, -0.0417416282, 0.0337451473, 0.0105313649, 0.00730878301, -0.00870017055, -0.00657310709, 0.0157290772, 0.0312182605, 0.0266762599, 0.00711286953, -0.0182959475, -0.0014193753, -0.012698411, 0.0277477875, -0.00818839576, 0.0084922621, 0.0220542941, 0.00951581169, 0.000821638387, 0.0256367158, -0.00519771222, -0.0138419075, -0.0163927861, 0.0116188861, 0.0128663369, -0.0244052578, 0.0137859322, -0.0105713475, 0.019319497, -0.0309143942, -0.0377433896, -0.0150973555, 0.0306744985, -0.00364639517, -0.0312822312, -0.0203430466, -0.00506177219, -0.0103714354, 0.00248490623, -0.0255407598, -0.0101795197, 0.0162168629, -0.00291671627, -0.0044620363, -0.0110191498, 0.0116028935, 0.016096916, -0.00785654224, 0.034992598, -0.0217344332, -0.0394386426, -0.0187437497, -0.0183279328, -0.000819139474, -0.00914797373, -0.0560393371, 0.00508576166, -0.0520730801, -0.0143296933, 0.00777257932, -0.0219583362, -0.0397265144, 0.0249969978, 0.0104274107, -0.0245491955, 0.00939586479, -0.00117548264, 0.0109471818, 0.0198632572, -0.0099716112, -0.00741673587, 0.0156091303, 0.00843628682, -0.0366238803, 0.0128263552, 0.0172564052, 0.0130982352, 0.00778457383, 0.0171924327, 0.0114909429, -0.0316500701, -0.0394706279, 0.00778857199, 0.0299708098, -0.0502818711, -0.0187437497, 0.0164727494, -0.00159529783, -0.00542561198, 0.0200711656, 0.00796049647, 0.0344808251, -0.0169365462, -0.017128462, -0.053128615, 0.00302666798, -0.00462996215, -0.0027487902, -0.0324817039, 0.0405901335, -0.0145455981, -0.00679301, -0.01835992, -0.0166166872, -0.0148654571, 0.00638918811, -0.03553636, -0.0298908446, -0.0292031467, 0.0201511309, 0.0405901335, -0.000518271874, -0.0171124693, -0.00554955751, -0.0145855807, -0.00275278836, -0.000672204129, 0.0175602715, 0.0201511309, -0.00308064418, 0.0241813567, -0.0112510482, -0.00556954881, -0.0292031467, -0.0241813567, -0.019271519, -0.00210507354, 0.0277957655, 0.00528967194, -0.0197193213, -0.0268361885, -0.015801046, -0.0181839969, 0.0175282862, 0.0225340817, -0.0299708098, -0.00743272854, -0.0114989392, 0.0437247567, 0.0141777601, 0.0471152626, 0.0245491955, -0.0295869783, 0.0294110551, -0.0149214324, -0.0269641317, 0.0134021016, -0.00608132361, 0.0100995554, 0.000191040919, 0.0280356612, -0.0131702032, 0.014593577, -0.0211746804, 0.0207108855, -0.0223581605, 0.0148254754, -0.0125624705, -0.0180240665, -0.00356043293, 0.0177521873, -0.0102115059, -0.0405581482, -0.00129243114, 0.00450601662, -0.0269641317, -0.0200871583, -0.0119947204, -0.0144736301, -0.0233977027, -0.000110326444, -0.00628123526, 0.0269641317, -0.0201831162, 0.00488185138, 0.0154571971, 0.00356243202, -0.0176882148, -0.0275878571, 0.0118187983, -0.000486285979, -0.00723281642, 0.00356243202, -0.0281316191, -0.022246208, 0.037871331, 0.0316020921, -0.0108992029, -0.000368337875, -0.0324657112, -0.0241973493, 0.00297069247, 0.0148334717, 0.019047616, -0.00691295741, 0.00889208633, 0.011418974, 0.0018191993, -0.0191115886, -0.0118987635, 0.000639218662, 0.0138658974, 0.00779257, -0.00321458513, 0.0195753835, -0.0282115825, -0.0100035975, -0.00332253776, 0.0247890893, -0.00455399556, 0.00020740871, 0.010187516, -0.0107312771, -0.0276038516, -0.0108992029, -0.00445803814, -0.0124585163, -0.00979568902, 0.00383231323, 0.00515773, -0.00829235, 0.0110831223, -0.0237655398, 0.0109551782, 0.0133221364, -0.0136260027, 0.0216544699, 0.00386829744, -0.00779257, -0.030370634, -0.0232697576, -0.00435408344, 0.0144176548, 0.0171124693, 0.0308984015, 0.0138339112, 0.0325616673, 0.0207268782, -0.0106033329, -0.029139176, -0.00708088372, -0.0344488397, 0.00843628682, 0.0131222242, -0.00534964539, 0.00265683071, 0.000264383649, -0.00353644346, -0.0188876875, -0.0401423313, 0.0353764296, 0.0174323283, -0.00521370536, 0.0047299182, -0.0106273228, 0.00474591134, -0.00070219097, -0.0319379419, 0.0079525, 0.0154971797, -0.0213346109, 0.00335652265, 0.0667226315, -0.0401423313, 0.0217824131, 0.0809243843, -0.00461796764, 0.00681300135, -0.03051457, -0.00462196581, -0.0226780195, -0.0326256417, 0.00454999739, -0.0199112371, -0.00240893988, 0.0177202, 0.00142337359, 0.0205189697, 0.00208508223, -0.00958778057, -0.0241013933, -0.0255727451, -0.0135380412, 0.00363040227, -0.00627323892, -0.00232697581, -0.00726080453, 0.00991563592, 0.00742073404, 0.039054811, -0.0198952444, 0.0125624705, -0.000756667, -0.0286114067, -0.00780456513, 0.00794850197, -0.00500179874, 0.00448202714, 5.17584704e-05, -0.00368637755, 0.0279237106, -0.0210307445, 0.011466953, -0.020327054, 0.0119787278, -0.0205829404, 0.000293121, -0.0232217796, 0.0201511309, 0.00248890463, -0.0157290772, -0.00130842417, -0.00676502241, -0.0125144925, -0.0185838211, -0.0100595728, -0.0122426115, -0.0235576313, -0.013633999, -0.00798048731, 0.00620526914, 0.0105633512, 0.000342099433, 0.0318579786, -0.0114589566, 0.00347846909, -0.0137059679, -0.00665707, -0.0122506078, 0.0165047366, -0.00742873037, -0.0452600792, -0.0355043747, 1.61179069e-05, -0.00535764219, -0.0201671235, 0.0269641317, 0.00339850434, -0.00504577905, -0.0116268825, 0.0036383986, -0.0120506966, -0.0247411113, 0.00755667407, -0.00817640126, -0.00613330072, 0.0233977027, -0.0175122917, -0.00704489928, -0.00627723709, -0.00882811472, -0.0200391803, -0.0115549145, -0.00530166645, -0.00284874626, -0.0072568059, -0.0106593082, -0.0435008556, -0.00882811472, 0.0190636087, -0.0116508724, 0.0235576313, 0.00318259932, 0.00945983641, 0.0185038559, -0.0100595728, -0.00957178697, 0.0035104549, -0.0122106262, -0.00190816016, 0.00703690294, 0.000657210767, -0.00474191317, 0.0170484968, 0.00378033612, 0.0108592203, 0.0257966463, 0.0213346109, -0.000668205903, 0.00462196581, 0.00117848127, -0.0030206705, 0.0141217848, -0.000618227874, 0.00433409261, 0.000744172488, 0.00745671801, 0.0325776599, -0.0231418144, 2.82688088e-05, -0.019463433, 0.00179620949, -0.0107952487, -0.0129383057, 0.00583743071, -0.0297149215, 0.00891607627, -0.00550157856, -0.0217344332, -0.0299548153, -0.0253328495, -0.0119307488, 0.0217024479, -0.000392577203, 0.0179920811, -0.0121386573, -0.00258286321, -0.0207588635, -0.0145376017, 0.00717684114, -0.0284034982, -0.0146735422, -0.0131781995, 0.00166926533, -0.0111390976, 0.000543260889, -0.0170644894, 0.0173683558, 0.0116828578, 0.0158410277, -0.0043260958, 0.0230138712, 0.0157210808, 0.02219823, 0.00860421266, 0.015505176, 0.00330454553, 0.0445563905, 0.0047299182, -0.0183279328, -0.0063172197, 0.00745272, -0.0100835618, 0.00735276379, -0.011418974, 0.00691295741, -0.0183279328, 0.000124445229, 0.0012194633, 0.0191275813, 0.0194474403, 0.043756742, 0.0106433155, 0.0316020921, -0.000158055438, -0.0136419954, -0.00245292042, -0.00543760695, 0.015777057, -0.0306265205, -0.0237175617, -0.0157850534, 0.000109076995, 0.00428611366, -0.011786812, -0.00379832834, 0.00642917026, -0.00378833269, 0.00890008267, 0.011714844, -0.000711686793, -0.00798848365, 0.00272280164, -0.0146975312, -0.00467394292, -0.0301307384, -0.0179600958, -0.0193994623, 0.00650113868, -0.00655711396, -0.00841229782, -0.0272679981, -0.00138039247, 0.00266682636, -0.00831634, 0.0129063195, -0.0105553539, 0.00564951357, -0.0295389984, 0.0024729115, 0.0123465657, 0.000329604925, 0.00246291608, 0.00734876562, 0.00454200106, -0.00811642781, 0.0243572798, -0.0102195023, -0.0202790741, -0.0248210765, -0.0294270478, 0.0450041927, 0.00735676195, 0.012698411, 0.0108992029, -0.0112350555, 0.018727757, 0.00472592, 0.00799248274, 0.00495781796, 0.00908400211, 0.0131142279, -0.0277797729, -0.043117024, 0.00273279729, 0.0146575486, -0.00178521429, -0.00231098291, 0.00742073404, 0.0258766115, 3.52032548e-05, 0.0091399774, 0.0147615029, -0.0225500744, 0.0280356612, -0.00155531545, -0.0108752139, 0.0185838211, -0.0175602715, 0.00632521603, 0.0162808336, 0.0132661611, 0.0115469182, -0.0276998095, -0.0446203612, 0.0172244199, -0.00658909976, -0.0210787226, 0.0212066658, 0.00660109473, 0.0212066658, -0.0202310961, -0.020007195, -0.00120047166, 2.46297841e-05, -0.0226460323, 0.0138259148, 0.0053696367, 0.000746671343, -0.00881212112, -0.0255887378, -0.00805245619, 0.023253765, -0.00330854394, -0.00316060893, -0.02219823, 0.0475630648, 0.00800047908, -0.00131542108, -0.0105793439, 0.0107472697, -0.0122106262, 0.00953180436, 0.0093159, -0.00533765089, 0.011738833, 0.00852424838, 0.0100675691, -0.0231897943, 0.00606932864, 0.0187437497, -0.00822837837, 0.0104753897, -0.0128583405, 0.0265003368, 0.00258686137, -0.000612730335, -0.00548158726, 0.0315861, -0.0200391803, -0.0195274055, 0.00410219468, -0.0358562171, 0.0384470783, 0.00770860724, 0.0170005169, -0.0320019163, -0.000128318527, 0.0247730967, 0.00361640821, -0.0375514738, 0.0205349624, 0.00947582908, 0.0153612392, 0.00958778057, -0.000218528818, -0.0285634287, -0.0287713371, -0.00926792063, -0.0156651046, 0.0324337259, -0.0300507732, 0.00350245857, -0.0113709951, -0.00422214158, 0.0148254754, -0.0309783649, -0.0113390097, -0.0326896124, -0.00723281642, 0.0023489662, -0.0162248593, -0.0131062316, 0.00861221, 0.0223421659, -0.0123385694, 0.00973171648, -0.0123305731, 0.00857222732, 0.0110191498, -0.023253765, 0.0168405883, 0.0283875056, 0.00299868, 0.0172723979, -0.0252848715, -0.0099716112, -0.00680900319, 0.0303546395, 0.00655311579, 0.0169525389, 0.0123385694, -0.00705689425, 0.00275478745, 0.0160489362, -0.00764863379, -0.0145296054, -0.0178641379, -0.00322657987, -0.00666506635, -0.0295549929, 0.00682899449, -0.0225500744, 0.0363679938, 0.0225500744, 0.00520970719, -0.00487785321, -0.0188716948, -0.000944084488, -0.0201831162, 0.00387429493, -0.01776818, 0.0112350555, -0.00746871298, -0.00960377324, -0.00475790584, -0.0129622947, 0.00662508421, 0.0163208172, -0.0125704678, -0.000375084928, -0.018407898, -0.000435308408, 0.00768461777, 0.0195274055, 0.0193674751, 0.0145056155, 0.0324177332, 0.0149854049, 0.00999560114, 0.0137139643, 0.00748070749, 0.0135860201, 0.00498980377, -0.0161289014, 0.018999638, 0.00259285886, 0.0146255633, 0.0080764452, 0.0220862795, 0.00522969849, -0.011466953, -0.00670504896, 0.0393746719, -0.0439166725, 0.0393746719, 0.0140578132, -0.00602134969, -0.0533205308, 0.0306585059, 0.0312182605, -0.00428611366, 0.0350565724, 0.011466953, 0.012010714, -0.0193354897, -0.0129862847, -0.0106033329, -0.00730478484, 0.00190016371, -0.00608532177, 0.0102274986, -0.000344598346, -0.00573747465, -0.0259405822, -0.0105713475, 0.0159849655, -0.0226460323, -0.007284794, 0.00433009444, 0.00591739547, 0.0076926141, -0.00617728103, -0.0253168568, -0.00530966325, -0.0150733655, -0.00523769483, -0.020694891, 0.0107392734, 0.015505176, 0.00697692949, 0.0325776599, 0.00141137885, -0.00181620067, -0.00556954881, 0.00122446113, -0.0079525, -0.0118267946, -0.0138019258, -0.0153932255, -0.000625724613, 0.0056455154, -0.00957178697, 0.0059333886, 0.00340450159, -0.00147135241, -0.00619327417, 0.00564151723, 0.0266762599, 0.0123705557, 0.00483387243, 0.0162488483, -0.00468593743, 0.0161049124, 0.00714485534, 0.0048578619, -0.0261804778, -0.014889447, -0.00712486403, 0.00181520113, -0.000513274106, -0.00825236831, -0.00993962493, 0.0071168677, -0.00578945177, 0.00557354698, 0.0155371614, 0.000776158413, -0.00745272, 0.00653712265, 0.0435648263, -0.0141777601, 0.0179920811, 0.000169675317, 0.0232857522, 0.0139138764, 0.00486186, -0.0263883863, 0.00106353196, 0.00934788585, -0.00560953096, -0.00105553539, -0.00815241225, -0.00640518079, -0.00763264066, 0.00712486403, 0.00691695558, -0.0103714354, 0.0177841727, 0.0192235392, 0.00718483794, -0.0026748227, 0.0223101806, -0.00152632827, -0.00266082888, 0.00567350304, -0.0184718706, -0.023845505, -0.0133701153, 0.00906001218, 0.0138898864, -0.0161289014, -0.018727757, 0.00707288692, 0.00657310709, 0.0167286377, -0.0102434913, -0.000258136395, -0.0091639664, 0.00760865118, 0.00452200975, 0.00145036168, 0.0122506078, -0.0156331193, 0.00894806162, 0.0193514824, 0.0303386468, -0.00606932864, -0.0131622069, -0.00036533922, -0.00322058261, 0.0249810051, 0.007136859, -0.0132101858, -0.00718083931, -0.00669705262, 0.0074047409, -0.0150173903, 0.0289312657, 0.00914797373, 0.0224221312, 0.000699692057, -0.00641717575, 0.0100195901, -0.00664507551, 0.0118347909, 0.0201351382, 0.0167126451, -0.0193674751, -0.0109711709, -0.00872416049, 0.00584142888, 0.00506177219, 0.0116508724, 0.0207908489, -0.0100435792, -0.0128263552, 0.00358842057, -0.00120446994, -0.00279676914, -0.00593738677, 0.00237095659, 0.00185018568, -0.00254887808, -0.0280676465, -0.00911598746, 0.0035844224, 0.0261644851, 0.010115548, 0.00127643824, -0.000849126256, -0.0127064073, 0.0158650167, -0.0106753018, -0.00299668103, -0.0123145804, -0.00334052974, -0.0214145742, -0.016536722, 0.0119787278, 0.00597337075, 0.020918794, 0.0239894409, -0.0108992029, 0.0267402306, 0.005241693, 0.00532965409, 0.00781656, -0.00434208894, -0.0324337259, -0.00810843147, -0.0273799486, -1.09404973e-05, 0.00486585824, -0.00291871536, 0.0115709072, -0.0119547388, 0.0196713414, 0.00157130847, -0.0128903268, -0.0256527103, 0.0164247714, 0.00121346593, -0.0332653597, -0.0104514, -0.0229818858, -0.00643316843, -0.00650913501, 0.0102115059, -0.0040921988, -0.0152892713, 0.00730878301, 0.0106193265, -0.0244052578, -0.00746871298, 0.0135620311, 0.00150933571, -0.000299868028, -0.0234936606, 0.0166006945, 0.00153832289, -0.00546959275, -0.00388229126, -0.0203910246, -0.00949981902, -0.0203430466, 0.0261804778, 0.0166486725, -0.0122586051, -0.000373085786, 0.0114589566, -0.00615329156, -0.0141857564, 0.00422613975, -0.00111350988, 0.010851224, 0.00367838098, 0.0218943637, 0.000110263973, -0.0169685315, 0.000632221752, -0.000518771703, -0.0020191113, -0.0144976191, 0.0115948971, 0.0186477918, 0.00977969542, 0.0096757412, -0.00377833704, 0.0203430466, -0.0265643075, 0.0153772319, 0.00445803814, -0.00695693819, 0.0247251187, 0.0163767915, -0.0125944568, 0.0229818858, 0.0259405822, 0.00993162859, -0.00168725743, 0.0240054354, 0.0208868068, -0.0103474455, -0.00360041531, -0.00526568247, -0.038415093, -0.0156970918, 0.00866018888, -0.0402702764, 0.00408220338, 0.0303546395, -0.00132141844, 0.000725680613, 0.0179760884, -0.0043260958, 0.001147495, 0.00146635459, -0.0048578619, 0.0216224827, -0.0277957655, -0.000195788831, -0.0158570204, 0.0045699887, 0.0088601, 0.00160229474, -0.00549358223, 0.00252089044, 0.015968971, 0.00306265196, -0.0188077223, -0.00359441806, 0.00734076928, -0.0040182313, -0.0103554428, 0.0232217796, -0.000124320286, -0.0193514824, -0.00704889745, -0.00561752776, -0.0114269704, -0.00598536571, 0.0106113292, -0.0100995554, 0.0194954202, 0.00247491081, 0.00381432124, -0.00213306118, -0.00180220685, -0.0108192386, -0.0157930497, -0.00262684375, 0.0070089153, 0.01361001, 0.00182619621, -0.0148014855, -0.00419815211, 0.0186957717, 0.0130502563, -0.0108672166, 0.0036543915, -0.0353764296, -0.0304026194, 0.0147535065, -0.0206309203, 0.00612530392, 0.0202950668, 0.00759665668, -0.00494982162, -1.34003521e-05, 0.00811642781, 0.00254887808, 0.0188237149, -0.00728879217, 0.00545759778, 0.0121546509, 0.0166486725, -0.00838830788, 0.0145615907, -0.0251729209, -0.0183759127, 0.0393426828, -0.00787253492, -0.0102834739, 0.0389908403, 0.0037663423, -0.0213346109, 0.00478989165, -0.0154172145, 0.0320339, 0.0114749493, -0.00544960145, 0.000255762425, 0.00710087456, -0.00165627105, -0.0141617674, -0.000984066864, -0.00884410739, -0.0165687073, -0.0166326798, -0.00563352043, -0.000738674891, 0.00203810306, -0.0105233686, 0.0116668651, 0.00256087282, -0.022518089, 0.018727757, 0.00836431887, -0.00687697344, 0.013681978, -0.00440606056, -0.0430210643, -0.00592539227, -0.00848426577, -0.0113789914, -0.00950781535, -0.0215745047, 0.0148574607, 0.00521370536, 0.0102195023, -0.00388429035, -0.0110191498, 0.0114509603, 0.00592939043, -0.0127224009, 0.0204230119, -0.00239894423, 0.00291471719, 0.00853224471, 0.0159449819, -0.00707688509, 0.0278117601, 0.0107872523, -0.00243292912, -0.0102354949, -0.00719683245, -0.00831634, -0.0157210808, 0.0193674751, -0.0145136118, 0.000424063357, -0.00404821848, -0.00677301921, -0.00182919495, -0.00543360831, 0.000287123636, -0.0148014855, -0.00770460907, 0.0139698517, 0.000696693372, -0.0112190619, -0.00275878585, 0.0135700274, -0.0386070088, -0.0156011339, 0.00889208633, 0.0114909429, -0.00459797634, -0.000219528374, -0.00719283428, -0.0094358474, -0.00489784451, -0.0150573729, -0.00283075403, -0.003346527, -0.00203110604, -0.0312662385, -0.0313941836, -0.0228219554, 0.0150893591, 0.016536722, 0.00316260802, 0.00736475876, 0.00447802898, 0.00871616416, 0.0121066719, 0.00396025693, -0.0179441031, 0.0259085968, 0.0137299569, -0.00558154332, -0.000698192685, 0.000367838104, -0.0169845242, -0.000807144737, 0.012082682, -0.00490983902, 0.00615329156, 0.0243093017, 0.00785254408, 0.0135140521, -0.0078205578, -0.0421894304, 0.0078205578, -0.019319497, -0.00868417788, -0.0132341757, -0.00075966568, -0.0148814507, 0.00302866707, -0.0268521812, 0.00352644781, -0.00252888701, -0.00533765089, 0.000182544652, -0.0236695819, -0.000754168082, -0.0113550024, 0.0236535892, 0.0175762642, -0.019591378, -0.00722881826, -0.0215105321, 0.000908100337, 0.0132661611, 0.0148974434, 0.0208868068, -0.00237295567, 0.006041341, 0.00568949571, 0.0234776661, 0.00611330941, -0.00244692294, 0.00174123363, 0.0114269704, 0.0224381238, -0.00668505765, 0.00281076296, 0.0110111535, 0.00748870382, -0.00584942568, 0.00661708787, -0.00733277248, -0.00308864051, -0.0185358413, -0.0166006945, -0.00998760387, -0.0119627351, -0.0244692303, 0.00595338, 0.000763663906, 0.00610531308, 0.00357642584, 0.0208068416, 0.0159209929, 0.0141137885, -0.00535364356, 0.0131702032, -0.0122346152, 0.0256047305, -0.0022050296, -0.0177202, -0.0103634391, 0.00442605186, 0.00975570641, -0.00818039943, -0.00580944307, -0.0184718706, 0.0207268782, 0.00266682636, 0.00410619285, 0.00680500502, 0.00318859657, -0.00803246442, -0.00542161381, 0.00772060174, -0.0112350555, 0.00558554148, -0.0057854536, 0.0160489362, -0.00562552409, -0.00767662143, 0.0334892608, 0.00360041531, -0.0100515764, 0.00878013577, -0.00546959275, 0.0136659853, 0.00648914417, -0.0324497186, 0.00957978331, -0.0267562233, -0.0145376017, 0.0043141013, -0.000835632207, -0.0199272297, 0.00329055171, -0.00855623465, -0.0161688831, -0.0357922465, 0.0145855807, -0.000349596143, -0.00720882742, 0.00124145357, -0.0119227525, 0.00594138494, -0.00794850197, 0.0175762642, 0.013977848, -0.0148014855, 0.0204070192, -0.00317660184, -0.0261964705, -0.0122825941, -0.0096917348, -0.0257006884, 0.00443005, -0.0191115886, 0.00718483794, -0.0328815281, -0.00762064615, 0.0044620363, -0.00326256407, -0.00867618155, 0.000350095914, 0.00151233433, -0.00191015925, -0.00732477615, -0.0107152844, -0.000532265753, -0.0158810113, -0.000527767697, 0.00928391423, -0.00580944307, 0.000292371318, 0.00399424182, -0.00191215845, 0.0146095697, -0.00838031154, -0.0196713414, 0.0346407555, -0.0142097464, 0.0280676465, 0.00622925814, 0.00508176349, 0.00054476026, 0.011738833, 0.0106353192, 0.0216224827, 0.00164227723, -0.0194314476, 0.0266922526, -0.0158490241, -0.0110511361, 0.0126664247, -1.11903873e-05, 0.00979568902, -0.00406421116, 0.0104993787, -0.0166966505, 0.00796049647, -0.00589340599, 0.030562548, -0.000837631349, -0.0156331193, -0.00579744857, 0.0160329435, 0.000619227474, -0.0293310899, 0.00441005919, 0.0181200244, -0.0186318, 0.00602134969, -0.014297707, -0.0166486725, -0.00456599053, 0.0169845242, -0.03051457, -0.00340849976, 0.000153182584, 0.0175282862, -0.0130982352, -0.00312262564, 0.0184558779, 0.015777057, 0.0161129087, -0.015553155, -0.0107872523, -0.0146975312, 0.0106513118, 0.00419015577, 0.00810843147, 0.00575746596, 0.0207588635, -0.00220902776, -0.0196713414, 0.0216864552, -0.0115469182, 0.000658210309, 0.011418974, 0.00569349434, 0.0135140521, 0.0212066658, 0.00450601662, 0.000736675749, -0.0206629056, -0.00907600578, 0.00165027368, -0.00277277967, -0.0164567567, -0.00153132598, 0.0100835618, -0.0199912023, 0.0237655398, 0.00959577691, 0.0164407641, 0.0117708193, -0.0176242422, -0.000604733825, 0.00910799112, 0.0133461263, 0.0135620311, 0.00860421266, -0.01331414, -0.00353644346, 0.00338850869, 0.00688896794, -0.0126824183, -0.000811642793, 0.0094198538, 0.00881212112, 0.00116948527, 0.0331054293, 0.00170125125, -0.0033125421, 0.0113629987, -0.00662908237, 0.0126184467, -0.00478189532, 0.00149834051, 0.00964375585, 0.0192235392, 0.00984366797, -0.0274599139, 0.0231897943, -0.00830834359, -0.00230098725, -0.00652912632, 0.0207108855, -0.00665307185, 0.00977169909, 0.015257285, 0.00947582908, 0.0159289893, 0.0110511361, 0.0238295123, -0.00910799112, 0.00405421574, -0.00688497, -0.00610931125, 0.0285154488, -0.00405621482, -0.0246131662, 0.012082682, -0.0131622069, -0.0205509551, 0.0215265248, -0.00669705262, 0.0185038559, -0.0128583405, -0.00538563, -0.0119307488, 0.0199272297, 0.0231418144, -0.000498530571, -0.00547359092, -0.00290672062, 0.0124745099, 0.0108832102, -0.00479389029, 0.0100115938, -0.00751269329, -0.0144496402, -0.0102115059, 0.018136017, -0.0109151956, 0.00586142, -0.000605233596, 0.0191755611, 0.000187292564, 0.0068729748, 0.00806844886, -0.00455399556, -0.0203430466, -0.00902802683, 0.0230778437, -0.0156091303, -0.0160889197, -0.0230138712, 0.00563352043, -0.0225980543, -0.00664907368, 0.0157690588, 0.0087481495, -0.0115948971, 0.000378583383, 0.0130502563, 0.000628723297, 0.020646913, 0.00532565592, 0.00221702433, -0.00679700868, -0.00299868, -1.64615049e-05, -0.016536722, -0.00636919681, 0.0207428709, 0.0206309203, -0.0121066719, 0.0155931367, 0.00881212112, 0.00892407261, 0.00587741332, 0.0258766115, -0.014913436, -0.00126344396, 0.00836431887, -0.00543760695, 0.00363440043, 0.00438606972, 0.0052257, -0.000361840735, 0.0147774965, -0.0145376017, -0.000827136, -0.0230938364, -0.00206509116, 0.0197193213, -0.00841229782, -0.0200711656, -0.00889208633, 0.00602134969, 0.0170644894, -0.0157370735, -0.012082682, -0.0156970918, 0.0143536823, -0.00274279271, 0.0090200305, 0.0145136118, -0.022246208, 0.0363679938, 0.000371086673, 0.00239494583, -0.0129063195, 0.0052616843, -0.0123465657, 0.021286631, -0.00937187485, 0.0120426994, 0.00577745726, -0.00957178697, 0.0104753897, -0.000299618143, 0.00464195712, -0.00808444154, 0.000362590421, -0.00746471481, -0.0188876875, -0.0237015691, 0.00845227949, -0.00701691164, 0.00202211, 0.0163048245, 0.00658110343, -0.00990764, -0.00697293086, -0.00452600792, 0.00524968933, -0.0201511309, 0.00527367881, -0.00288672955, 0.00933988951, -0.0328495428, 0.00120646902, -0.0125224888, -0.0125624705, -0.0170964748, -0.00663308054, 0.00520171039, 0.0301627237, 0.00305065722, 0.0148254754, 0.0112430518, -0.00151633262, -0.018040061, 0.0106832981, 0.0013204189, 0.00232097856, 0.0118587809, 0.0141697638, -0.00308464235, -0.00776058435, -0.00537363486, -0.0209987573, -0.0177042075, 0.00478189532, 0.010187516, 0.0113629987, -0.00716084847, -0.00858822, 0.010459397, -0.00717284298, 0.0071568503, 0.0162968282, -0.0116348788, 0.020007195, -0.00272480072, 0.00526568247, -0.00275478745, -0.00137339556, -0.00172624027, -0.000164927405, 0.00364839425, 0.0012754387, 0.0152412923, 0.00338451029, -0.00572148198, 0.0250609703, -0.00459797634, -0.00809643697, -0.0102195023, 0.00175322837, 0.00496181613, 0.0112430518, 0.00164527586, 0.00779656833, 0.0157050882, -0.000691195775, -0.00152732781, 0.021238653, -0.00944384374, -0.00638519, 0.024165364, -0.0259245895, 0.00136939727, -0.00227299961, -0.00194314483, -0.0108912066, -0.0060613323, 0.00734876562, 0.0154172145, 0.0087481495, 0.0222941879, -0.011099115, 0.0140977949, 0.0120426994, 0.00982767437, -0.018407898, -0.00639318628, -0.0103074638, 0.00243492844, 0.0134500805, 0.00454599923, -0.0109791681, 0.0234296881, 0.017816158, -0.011714844, 0.0264523569, 0.00479389029, 0.0038203185, -0.005241693, -0.00419815211, -0.0238135196, 0.00555355567, 0.00110351434, -0.0105313649, -0.0345767811, -0.00520570902, -0.00742873037, 0.00963575952, 0.0111630866, -0.000160054551, 0.0134260906, 0.00295869773, 0.0029127181, 0.0129862847, -0.00298068812, -0.0268201958, -0.000325856585, 0.00288872863, 0.00191815582, 0.0132341757, 0.0188876875, -0.000577245955, -0.0171924327, 0.00992363226, 0.00561352912, 0.00618527783, 0.0191915538, 0.00029711923, -0.00106353196, -0.00793250836, -0.00733677112, 0.017448321, 0.00792051386, -0.0132181821, 0.00744072534, 0.0068729748, -0.0252848715, -0.0256207231, -0.0124185346, 0.0197033286, 0.0101315407, 0.0173043832, -0.00468193926, -0.0154891824, 0.00711286953, -0.0220223069, 0.0134820659, 0.00639718445, -0.00195713853, 0.00824437104, -0.00111550908, 0.0188557, 0.00965974852, -0.00147235196, -0.00346647436, 0.0107472697, 0.0195114128, 0.00257886504, 0.00707688509, -0.000326356356, -0.0165047366, -0.0148334717, -0.0683859, 0.00560953096, 0.0356962904, 0.0216544699, -0.00259285886, 0.00818839576, 0.012378552, -0.0177202, -0.0103394492, 0.0224861037, -0.0084682731, 0.00035459394, -0.00640118262, 0.0262764357, 0.00176222436, -6.65332191e-05, 0.0113150198, -0.00528567377, 0.0207268782, -0.0063172197, 0.0160569325, -0.0257486682, 0.00616928469, -0.00021865376, 0.000153807312, 0.0115069356, -0.0126584284, -0.00810443331, -0.00183819095, -0.00270081125, -0.00896405429, 0.0187917296, -0.00642517209, -0.0248690546, -0.0282595623, -0.00281476113, -0.0142017491, -0.0290112309, 0.0229019206, 0.00206709024, 0.00175122928, 0.00508176349, -0.00721282559, -0.0192235392, -0.00281676021, 0.00417816127, 0.0123865483, 0.00493782666, -0.00920394901, 0.0300027952, -0.00937187485, 0.017448321, -0.0176722221, -0.0105233686, 0.0139458617, 0.0115869, 0.00361840753, -0.020694891, 0.0143296933, 0.00760465302, -0.012010714, -0.0249330271, -0.0132421721, 0.000915597, 0.0033505254, 0.0120267067, 0.00360241439, 0.00477389898, -0.00546959275, -0.0011005156, 0.00546559459, 0.0266922526, 0.00448202714, 0.00442605186, 0.00178421475, 0.00770860724, -0.00776058435, -0.00307264761, 0.00213905866, -0.0206788983, 0.014273718, 0.00748470565, 0.0275558718, 0.0136499926, -0.0175762642, -0.0112590445, 0.00588141149, -0.00803246442, 0.00552157, 0.00221302593, -0.00929191057, -0.00148934452, -0.0244212523, 0.011394985, -0.0066050929, 0.014569588, -0.01301827, -0.00984366797, -0.00209107972, 0.0126104495, 0.0153052639, 0.0008231377, -0.0141777601, -0.0100595728, 0.0170484968, 0.00914797373, -0.0128743341, 0.0118827699, 0.01331414, 0.00608132361, 0.0127623826, -5.64126713e-05, 0.0012754387, -0.00534164906, 0.0185678285, 0.023253765, 0.00771260541, 0.00641317759, -0.0100675691, -0.00433409261, -0.00326856133, -0.00531765958, 0.0138499048, -0.00842029415, 0.00736875692, -0.0145056155, 0.0184718706, 0.00374835031, -0.0221342575, 7.10937093e-05, 0.00884410739, 0.0350885577, 0.00106153276, -0.0131622069, 0.00393426837, -0.00559753645, 0.00788452942, -0.00517772138, 0.00692095375, 0.0136899743, -0.0187117644, 0.0105313649, -0.000395326, -0.013953859, 0.0011924752, -0.0248530619, -0.00761264935, 0.000807144737, -0.0192395318, -0.00321458513, -0.00518571772, 0.00325456751, 0.0131142279, 0.00562152592, -0.0109071992, -0.0318259932, 0.00460597267, -0.0057854536, 0.027635837, 0.000838630891, 0.00612930255, 0.000990064233, -0.0419655293, 0.00758066354, 0.0202630814, 0.0154971797, 0.00878813211, -0.0109791681, -0.0154891824, -0.00865219161, -0.00905201584, 0.00572148198, -0.00185418397, 0.0129782883, 0.00677701738, -0.00790851936, -0.0118587809, -0.021286631, 0.00276678219, 0.0218303911, 0.0124905026, 0.0119627351, -0.00988365, 0.0111390976, 0.00460997084, -0.01333813, 0.00613729889, 0.00634920551, -0.00200411794, 0.0222142227, -0.00238095201, 0.0070089153, 0.00336052105, 0.0203590393, -0.0109951608, -0.004442045, -0.00372236175, 0.0119227525, 0.0141377775, -0.0118667772, -0.000439556548, -0.00602934649, 0.00455399556, -0.0132661611, 0.00721682375, -0.0136899743, -0.0136739817, 0.0114509603, -0.0196713414, -0.00850825571, -0.00390428165, 0.0175602715, 0.00577745726, -0.010803245, 0.0040382226, -0.0135540348, -0.0204709899, -0.00286873733, 0.00729678851, 0.0121466536, 0.0104514, 0.00204709894, 0.0206149276, 0.0154172145, 0.0156331193, -0.00565351173, 0.0175442789, 0.0121466536, -0.0272200201, 0.0117708193, -0.0064451634, 0.0279876813, 0.00852424838, -0.0306105278, -0.00370436953, 0.0120506966, -0.00946783274, 0.00454599923, -0.00592939043, 0.0267402306, 0.0184718706, 0.0219743289, -0.0164407641, 0.00502178958, -0.00409819651, 0.00820438936, 0.0167286377, -0.023525646, 0.00290672062, -0.0147135239, 0.00148134807, -0.00471392507, 0.00654112129, 0.00918795634, 0.0117308367, -0.00473791454, -0.00134640746, 0.0155611513, -0.0076606283, 0.0247251187, 0.00478189532, -0.00459797634, 0.014641556, 0.0154092181, -0.00190516154, 0.0114829456, 0.00175722665, -0.0122745978, -0.00337251578, 0.00327655789, -0.00254088175, -0.0133701153, -0.00738874823, -0.00630922336, -0.0128663369, -0.0121706435, -0.00246091699, 0.000841629575, 0.00362440478, -0.00318259932, -0.0228699353, -0.0166326798, -0.000122196216, -0.00123345712, 0.00127743778, -0.0135300448, -0.00626124442, -0.0193035044, -0.00304665905, 0.0112190619, 0.0254288074, 0.0013633999, -0.0241013933, 0.0112350555, -0.031522125, -0.0269641317, 0.0163528025, 0.0017312381, 0.0126424357, -0.0251729209, 0.00325056934, 0.000325856585, 0.0104434034, 0.00480188662, -0.0238614976, -0.018407898, -0.00473791454, -0.0153692355, 0.00655711396, -0.00772859855, -0.0117308367, 0.0191435739, -0.0180080738, -0.018040061, -0.00859621633, -0.00969973113, -0.00762064615, -5.44760223e-05, 0.0037863336, -0.00493782666, -0.00678901188, 0.00124445232, -0.014937426, -0.00383231323, 0.000896105601, 0.00724481139, 0.0255887378, -0.0130342636, 0.0115309246, -0.00223101815, -0.00244292477, -0.00630922336, -0.0110431397, -0.00347447069, 0.00517772138, 0.0173843484, -0.00924393162, -0.00548158726, -0.00495382, -0.0163128208, -0.00665707, -0.000744172488, -0.00788852852, -0.00384830637, 0.0139938407, 0.00233697146, -0.00773259671, 0.00262684375, 0.0397904888, -0.00649314234, -0.00855623465, 0.00326456316, -0.00363440043, 0.0182319749, 0.00152432907, -0.0146815386, -0.0106593082, -0.00505377585, 0.0305465553, -0.00469393423, 0.0316340774, -0.0228219554, -0.0258286316, -0.0118587809, -0.00637719315, 0.0133701153, -0.0079445038, -0.00316260802, -0.0157850534, -0.0110191498, -0.00256886939, -0.00980368536, -0.000204659926, 0.089112781, 0.0102594849, 0.000837131578, -0.0241333786, -0.00724880956, -0.0137059679, -0.0105633512, 0.0480428562, -0.0180720463, 0.0196713414, 0.0112110656, -0.00749270245, 0.0247890893, 0.00753668277, 0.00889208633, -0.0154252108, 0.0051257438, -0.00537763303, 0.00456199236, -0.00095308054, -0.00796049647, -0.013362119, 0.00573747465, -0.0170644894, -0.0136499926, -0.00750869513, -0.0211426951, 0.03051457, -0.0243572798, 0.00284074969, -0.018136017, 0.0196553487, -0.00729279034, -0.0188557, -0.0322897881, -0.00982767437, -0.0017762183, 0.021238653, 0.0152972676, -0.00858822, 0.00917996, 0.0165687073, -0.0131382179, 0.00528167561, 0.00890008267, -0.0204230119, -0.0090200305, -0.00841229782, 0.00557754515, -0.00350645673, -0.0131062316, 0.00268681743, 0.00521770352, -0.0228539407, -0.0165207293, 0.0138259148, -0.0117948093, -0.016240852, 0.00697692949, 0.0109311892, 0.000906600966, 0.00183819095, 0.00674902974, 0.00965175219, -0.000146435545, 0.00097407127, -0.011171083, 0.00890008267, 0.0053816312, -0.0139698517, 0.0121466536, -0.0160649288, 0.0207428709, -0.00103754341, -0.00669305399, 0.000670205045, -0.00520970719, 0.00664107688, -0.0230938364, -0.00215904973, -0.0086282026, 0.0122426115, -0.0106113292, -0.0070089153, 0.0128903268, -0.00596137624, -0.0114749493, -0.000989064691, 0.00482187793, 0.00571348518, -0.0106033329, 0.0216384772, -0.0199912023, 0.0139938407, 0.0032965492, -0.00122146239, -0.0163767915, 0.0156171266, 0.0229339059, -0.0137539469, 0.0287713371, 0.0090040369, -0.013633999, 0.0112830345, -0.00213705935, 0.0190636087, 0.00219703303, -0.0043141013, 0.00524569117, 0.00574946962, 0.00726880087, 0.00439806422, 0.0143936649, 0.00834832527, 0.0169845242, 0.00391427707, 0.00961976591, 0.016096916, 0.010163527, -0.0008231377, 0.0193514824, 0.0161688831, -0.0184398834, 0.0105233686, -0.00501779141, 0.0170484968, 0.00302466867, 0.000346347573, 0.0214145742, -0.00936387852, 0.0244692303, -0.00148034841, 0.0198632572, -0.0095557943, -0.00176022528, 0.0105313649, -0.00500979507, 0.0068809716, -0.00413817866, -0.000879113097, 0.0164087787, -0.00859621633, 0.00348046818, 0.0228219554, -0.0104274107, -0.000950581627, 0.000883111323, 0.00720882742, 0.0205509551, 0.00261884741, -0.0142257391, 0.00279277074, 0.00270480965, 0.0192555245, -0.00254088175, 0.0140178306, -0.0107712597, -0.00680500502, 0.00763264066, 0.00247491081, 0.00278877257, -0.00420215074, 0.00859621633, 0.0221822374, 0.0149774076, -0.0154571971, 0.00457798503, 0.00888409, 0.000620726787, 0.00403622352, 0.0190156307, 0.00145835814, -0.00827635732, 0.00867618155, -0.01333813, 0.00814841408, -0.0199112371, 0.00634120917, 0.0158570204, -0.00706489058, -0.0205829404, 0.00438606972, -0.0143776722, 0.0408460237, -0.00980368536, -0.0040382226, -0.0271240622, -0.00957978331, 0.0245332029, 0.0136899743, -0.010803245, 0.00772859855, -0.013362119, 0.00127144041, -0.0248210765, -0.0114749493, 0.00495781796, -0.00953980163, -0.000343348889, 0.00706888875, 0.0149854049, -0.00518171955, 0.00491783535, 0.00819639303, 0.0022370154, 0.031154288, -0.000892607146, 0.00660909107, -0.00483387243, 0.0108912066, 0.000682699552]
29 Mar, 2023
Introduction to Programming Languages 29 Mar, 2023 Introduction: A programming language is a set of instructions and syntax used to create software programs. Some of the key features of programming languages include: Syntax: The specific rules and structure used to write code in a programming language. Data Types: The type of values that can be stored in a program, such as numbers, strings, and booleans. Variables: Named memory locations that can store values. Operators: Symbols used to perform operations on values, such as addition, subtraction, and comparison. Control Structures: Statements used to control the flow of a program, such as if-else statements, loops, and function calls. Libraries and Frameworks: Collections of pre-written code that can be used to perform common tasks and speed up development. Paradigms: The programming style or philosophy used in the language, such as procedural, object-oriented, or functional. Examples of popular programming languages include Python, Java, C++, JavaScript, and Ruby. Each language has its own strengths and weaknesses and is suited for different types of projects. A programming language is a formal language that specifies a set of instructions for a computer to perform specific tasks. It’s used to write software programs and applications, and to control and manipulate computer systems. There are many different programming languages, each with its own syntax, structure, and set of commands. Some of the most commonly used programming languages include Java, Python, C++, JavaScript, and C#. The choice of programming language depends on the specific requirements of a project, including the platform being used, the intended audience, and the desired outcome. Programming languages continue to evolve and change over time, with new languages being developed and older ones being updated to meet changing needs. Are you aiming to become a software engineer one day? Do you also want to develop a mobile application that people all over the world would love to use? Are you passionate enough to take the big step to enter the world of programming? Then you are in the right place because through this article you will get a brief introduction to programming. Now before we understand what programming is, you must know what is a computer. A computer is a device that can accept human instruction, processes it, and responds to it or a computer is a computational device that is used to process the data under the control of a computer program. Program is a sequence of instruction along with data. The basic components of a computer are: Input unit Central Processing Unit(CPU) Output unit The CPU is further divided into three parts- Memory unit Control unit Arithmetic Logic unit Most of us have heard that CPU is called the brain of our computer because it accepts data, provides temporary memory space to it until it is stored(saved) on the hard disk, performs logical operations on it and hence processes(here also means converts) data into information. We all know that a computer consists of hardware and software. Software is a set of programs that performs multiple tasks together. An operating system is also software (system software) that helps humans to interact with the computer system. A program is a set of instructions given to a computer to perform a specific operation. or computer is a computational device that is used to process the data under the control of a computer program. While executing the program, raw data is processed into the desired output format. These computer programs are written in a programming language which are high-level languages. High level languages are nearly human languages that are more complex than the computer understandable language which are called machine language, or low level language. So after knowing the basics, we are ready to create a very simple and basic program. Like we have different languages to communicate with each other, likewise, we have different languages like C, C++, C#, Java, python, etc to communicate with the computers. The computer only understands binary language (the language of 0’s and 1’s) also called machine-understandable language or low-level language but the programs we are going to write are in a high-level language which is almost similar to human language. The piece of code given below performs a basic task of printing “hello world! I am learning programming” on the console screen. We must know that keyboard, scanner, mouse, microphone, etc are various examples of input devices, and monitor(console screen), printer, speaker, etc are examples of output devices. main() { clrscr(); printf(“hello world! I am learning to program"); getch(); } At this stage, you might not be able to understand in-depth how this code prints something on the screen. The main() is a standard function that you will always include in any program that you are going to create from now onwards. Note that the execution of the program starts from the main() function. The clrscr() function is used to see only the current output on the screen while the printf() function helps us to print the desired output on the screen. Also, getch() is a function that accepts any character input from the keyboard. In simple words, we need to press any key to continue(some people may say that getch() helps in holding the screen to see the output). Between high-level language and machine language, there are assembly languages also called symbolic machine code. Assembly languages are particularly computer architecture specific. Utility program (Assembler) is used to convert assembly code into executable machine code. High Level Programming Language is portable but requires Interpretation or compiling to convert it into a machine language that is computer understood. Hierarchy of Computer language – There have been many programming languages some of them are listed below: C Python C++ C# R Ruby COBOL ADA Java Fortran BASIC Altair BASIC True BASIC Visual BASIC GW BASIC QBASIC PureBASIC PASCAL Turbo Pascal GO ALGOL LISP SCALA Swift Rust Prolog Reia Racket Scheme Simula Perl PHP Java Script CoffeeScript VisualFoxPro Babel Logo Lua Smalltalk Matlab F F# Dart Datalog dbase Haskell dylan Julia ksh metro Mumps Nim OCaml pick TCL D CPL Curry ActionScript Erlang Clojure DarkBASCIC Assembly Most Popular Programming Languages – C Python C++ Java SCALA C# R Ruby Go Swift JavaScript Characteristics of a programming Language – A programming language must be simple, easy to learn and use, have good readability, and be human recognizable. Abstraction is a must-have Characteristics for a programming language in which the ability to define the complex structure and then its degree of usability comes. A portable programming language is always preferred. Programming language’s efficiency must be high so that it can be easily converted into a machine code and its execution consumes little space in memory. A programming language should be well structured and documented so that it is suitable for application development. Necessary tools for the development, debugging, testing, maintenance of a program must be provided by a programming language. A programming language should provide a single environment known as Integrated Development Environment(IDE). A programming language must be consistent in terms of syntax and semantics. Basic Terminologies  in Programming Languages: Algorithm: A step-by-step procedure for solving a problem or performing a task. Variable: A named storage location in memory that holds a value or data. Data Type: A classification that specifies what type of data a variable can hold, such as integer, string, or boolean. Function: A self-contained block of code that performs a specific task and can be called from other parts of the program. Control Flow: The order in which statements are executed in a program, including loops and conditional statements. Syntax: The set of rules that govern the structure and format of a programming language. Comment: A piece of text in a program that is ignored by the compiler or interpreter, used to add notes or explanations to the code. Debugging: The process of finding and fixing errors or bugs in a program. IDE: Integrated Development Environment, a software application that provides a comprehensive development environment for coding, debugging, and testing. Operator: A symbol or keyword that represents an action or operation to be performed on one or more values or variables, such as + (addition), – (subtraction), * (multiplication), and / (division). Statement: A single line or instruction in a program that performs a specific action or operation. Basic Example Of Most Popular Programming Languages: Here the basic code for addition of two numbers are given in some popular languages (like C, C++,Java, Python, C#, JavaScript etc.). C++ // C++ program for sum of 2 numbers #include <iostream> using namespace std; int main() { int a, b, sum; a = 10; b = 15; sum = a + b; cout << "Sum of " << a << " and " << b << " is: " << sum; // perform addition operation return 0; } // This code is contributed by Susobhan Akhuli C // C program for sum of 2 numbers #include <stdio.h> int main() { int a, b, sum; a = 10; b = 15; sum = a + b; printf("Sum of %d and %d is: %d", a, b, sum); // perform addition operation return 0; } // This code is contributed by Susobhan Akhuli Python3 # Python program for sum of 2 numbers a = 10 b = 15 add = a + b  # perform addition operation print(f"Sum of {a} and {b} is: {add} ") # This code is contributed by Susobhan Akhuli Java // Java program for sum of 2 numbers import java.io.*; class GFG { public static void main(String[] args) { int a, b, sum; a = 10; b = 15; sum = a + b; System.out.println( "Sum of " + a + " and " + b + " is: " + sum); // perform addition operation } } // This code is contributed by Susobhan Akhuli C# // C# program for sum of 2 numbers using System; class GFG { public static void Main() { int a, b, sum; a = 10; b = 15; sum = a + b; Console.Write("Sum of " + a + " and " + b + " is: " + sum); // perform addition operation } } // This code is contributed by Susobhan Akhuli Javascript <script> // Javascript program for sum of 2 numbers let a = 10; let b = 15; let sum = a+b;  //perform addition operation document.write("Sum of " + a + " and " + b + " is: " + sum); // This code is contributed by Susobhan Akhuli </script> PHP <?php // PHP program for sum of 2 numbers $a = 10; $b = 15; $sum = $a+$b;  //perform addition operation echo "Sum of $a and $b is: $sum"; //This code is contributed by Susobhan Akhuli ?> Scala // Scala program for sum of 2 numbers object Main { def main(args: Array[String]) { val a = 10; val b = 15; val sum = a + b; //perform addition operation println("Sum of " + a + " and " + b + " is: " + sum); } } //This code is contributed by Susobhan Akhuli HTML <html> <head> <script> // HTML program for sum of 2 numbers a = 10; b = 15; sum = a + b; //perform addition operation document.write(Sum of " + a + " and " + b + " is: " + sum); //This code is contributed by Susobhan Akhuli </script> </head> </html> Cobol *> Cobol program for sum of 2 numbers IDENTIFICATION DIVISION. PROGRAM-ID. SUMOFTWONUMBERS. DATA DIVISION. WORKING-STORAGE SECTION. 77 B PIC 99. 77 A PIC 99. 77 SU PIC 99. PROCEDURE DIVISION. SET A TO 10. SET B TO 15. ADD A B GIVING SU. DISPLAY "Sum of " A " and " B " is: "SU. STOP RUN. *> This code is contributed by Susobhan Akhuli Dart // Dart program for sum of 2 numbers void main() { var a = 10; var b = 15; var sum = a+b; // perform addition operation print("Sum of ${a} and ${b} is: ${sum}"); } // This code is contributed by Susobhan Akhuli Go // Go program for sum of 2 numbers package main import "fmt" // Main function func main() { a:= 10 b:= 15 su:= a + b // perform addition operation fmt.Printf("Sum of %d and %d is: %d", a, b, su) } // This code is contributed by Susobhan Akhuli Julia # Julia program for sum of 2 numbers a = 10 b = 15 su = a + b # perform addition operation println("Sum of ", a, " and ", b, " is: ", su) # This code is contributed by Susobhan Akhuli Kotlin // Kotlin program for sum of 2 numbers fun main(args: Array<String>) { val a = 100 val b = 200 val sum = a + b // perform addition operation println("Sum of $a and $b is: $sum") } // This code is contributed by Susobhan Akhuli Perl # Perl program for sum of 2 numbers $a = 10; $b = 15; $sum = $a + $b; # perform addition operation print("Sum of $a and $b is: $sum"); # This code is contributed by Susobhan Akhuli Swift // Swift program for sum of 2 numbers import Swift var a = 10; var b = 15; var su = a+b; // perform addition operation print("Sum of", a, "and", b, "is:", su); // This code is contributed by Susobhan Akhuli Output Sum of 10 and 15 is: 25 Advantages of programming languages: Increased Productivity: Programming languages provide a set of abstractions that allow developers to write code more quickly and efficiently. Portability: Programs written in a high-level programming language can run on many different operating systems and platforms. Readability: Well-designed programming languages can make code more readable and easier to understand for both the original author and other developers. Large Community: Many programming languages have large communities of users and developers, which can provide support, libraries, and tools. Disadvantages of programming languages: Complexity: Some programming languages can be complex and difficult to learn, especially for beginners. Performance: Programs written in high-level programming languages can run slower than programs written in lower-level languages. Limited Functionality: Some programming languages may not have built-in support for certain types of tasks or may require additional libraries to perform certain functions. Fragmentation: There are many different programming languages, which can lead to fragmentation and make it difficult to share code and collaborate with other developers. Tips for learning new programming language: Start with the fundamentals: Begin by learning the basics of the language, such as syntax, data types, variables, and simple statements. This will give you a strong foundation to build upon. Code daily: Like any skill, the only way to get good at programming is by practicing regularly. Try to write code every day, even if it’s just a few lines. Work on projects: One of the best ways to learn a new language is to work on a project that interests you. It could be a simple game, a web application, or anything that allows you to apply what you’ve learned that is the most important part. Read the documentation: Every programming language has documentation that explains its features, syntax, and best practices. Make sure to read it thoroughly to get a better understanding of the language. Join online communities: There are many online communities dedicated to programming languages, where you can ask questions, share your code, and get feedback. Joining these communities can help you learn faster and make connections with other developers. Learn from others: Find a mentor or someone who is experienced in the language you’re trying to learn. Ask them questions, review their code, and try to understand how they solve problems. Practice debugging: Debugging is an essential skill for any programmer, and you’ll need to do a lot of it when learning a new language. Make sure to practice identifying and fixing errors in your code. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages
https://www.geeksforgeeks.org/introduction-to-programming-languages/?ref=outindfooter
Languages
Introduction to Programming Languages
Languages, Introduction to Programming Languages
GeeksforGeeks
[-0.0306175221, 0.00983781461, -0.0154653089, 0.0344735496, -0.012218995, 0.0127463145, 0.00842476171, 0.0253937561, 0.0057263663, 0.0275524743, 0.0202853438, -0.0301396381, 0.0304197762, -0.0523694754, -0.00540091097, 0.0121695586, 0.000303827, 0.0114856903, -0.0144930622, -0.0103074592, -0.0104557686, -0.0132818744, -0.0477224663, 0.00719709508, -0.0180112757, 0.0221804, 0.0150862979, 0.0227736346, -0.0258551612, -0.0143612325, 0.00677276729, 0.0123343458, 0.0209939294, -0.0575108454, -0.00748135336, 0.00614657439, 0.000438489282, -0.0531604551, -0.0263165664, 0.0183078926, 0.0147155253, 0.025294885, 0.0124002611, -0.027008675, 0.00889852643, -0.00566869089, 0.00375097594, -0.0327597596, -0.0108677372, -0.0381647907, 0.00116999145, 0.022542933, 0.084107548, 0.0382966213, 0.0533911549, 0.0113620991, 0.0310954042, -0.0684856921, 9.36585348e-05, -0.000598899671, 0.00942584593, -0.0187528189, -0.00700346939, -0.0357588902, 0.0341769308, 0.010464008, -0.0535889, 0.025591502, -0.0175169129, -0.00502601918, -0.00282816589, 0.0109666092, 0.0153499572, -0.0087996535, -0.00538031245, -0.00284464448, 0.00871725939, 0.0327268019, -0.00819405913, 0.0179453604, 0.00361708598, -0.00253978767, 0.0313590653, -0.0221309643, 0.0413616672, 0.00985429343, -0.00241001742, -0.0601474456, 0.032627929, 0.0190823954, -0.00749783218, -0.0156712923, 0.00938464887, -0.0253607985, -0.0301890746, 0.0117740687, -0.0163469221, 0.0134631405, -0.0201864708, 0.0421526469, 0.00840004347, 0.0210763235, 0.0324796215, -0.0626851693, 0.0175169129, -0.0338473581, -0.00789332204, 0.0342758037, 0.0255585443, -0.00599826593, -0.0101097142, -0.00750607159, -0.0117905475, 0.018456202, -0.0159679111, 0.00318657863, 0.0288542956, -0.0871396437, 0.0385273211, 0.0521387719, 0.00856895093, 0.0410320908, 0.0100108422, 0.00499718171, -0.0522376448, 0.0511830039, -0.00373037742, 0.00131418044, 0.0317545533, 0.0187198631, 0.0275195166, 0.00206499361, -0.0252619274, 0.0167012159, 0.0310789272, -0.00475000031, 0.0228725076, 0.02615178, -0.00570988748, -0.0148143983, -0.021208154, 0.00248005218, 0.00755550759, -0.0245203823, 0.00568516925, 0.0169566367, 0.00162315706, 0.0548412874, -0.00773677416, 0.0232679974, -0.0504908971, 0.00958239473, 0.0183408502, 0.00136979623, 0.0188187342, -0.0194119699, 0.019593237, 0.0436027795, -0.00327515206, -0.022163922, -0.0117905475, -0.0329739824, -0.0138668697, 0.0150121432, 0.000474536559, 0.017121423, 0.0173521265, -0.011180833, -0.0547094569, 0.0569505654, -0.020169992, -0.00972246379, 0.00039857981, 0.0153581966, -0.0355941057, -0.00118647015, 0.0262671299, 0.0114774508, 0.00327103236, -0.0104145715, -0.0263165664, 0.00209074165, 0.0125156119, 0.00990373, 0.0284093693, 0.0186539479, 0.0496340021, -0.00491066789, 0.00108244806, -0.00382307055, -0.00489830924, -0.0132077197, 0.0350008681, 0.0419549, 0.0161903743, 0.000795099768, -0.0520728566, 0.0680242851, 0.0155806597, 0.0337320045, -0.024075456, -0.0560277551, -0.0141140511, 0.0519080684, 0.0230372958, -0.00900563784, 0.00130388129, 0.024932351, 0.0428777114, 0.00381071144, -0.0354952328, 0.0268438868, -0.0243555959, -0.00705702556, 0.0185715538, -0.00273547275, -0.0233009551, 0.00185591949, -0.013034693, -0.0343087614, -0.0209444948, -0.000908391201, 0.0153252389, -0.00947528239, -0.0400433689, -0.0312437136, 0.00220403308, 0.00707350438, 0.00968126673, -0.013932785, -0.00303827, 0.0313425846, -0.0137103219, -0.010323938, 0.00255008694, 0.00504661771, -0.00281168707, -0.0136444066, -0.0400104113, 0.0468655713, 0.0205984395, 0.00174262805, -0.0232020821, -0.00798807479, -0.0446903743, -0.0104145715, 0.0349349529, 0.0555663519, -0.00154694286, 0.0141470088, 0.0190494377, -0.0360884666, 0.0192471817, 0.0297111906, -0.0516444072, 0.0428117961, 0.017121423, 0.010084996, 0.0312766731, -0.0181266274, 0.0159349535, 0.000479686161, -0.020829143, 0.0126639213, -0.000871829, 0.0109254122, 0.0279974, -0.0336496122, 0.00420208182, -0.0472610593, 0.0625863, -0.0266131852, 0.0322983526, -0.0106452741, -0.00900563784, 0.0108018219, -0.00375509565, -0.0101344325, 0.010084996, 0.0191812683, 0.0156795327, -0.0225264542, 0.037373811, 0.0205819607, 0.0227901135, -0.0608065948, -0.0227241982, -0.00115042285, -0.0575767606, 0.000421753066, -0.0166517794, -0.0249488298, -0.00938464887, 0.0325784944, 0.0484475307, 0.0241908077, -0.0164128374, -0.0069581531, -0.0341439731, 0.0210433658, 0.00903859548, -0.0474917628, 0.0142953172, -0.0202029496, -0.0183078926, 0.010702949, 0.0274206437, -0.0303044245, 0.0116422381, -0.015028622, 0.0332046859, -0.0296947118, -0.02957936, -0.0202029496, 0.00235234178, 0.0362862125, 0.0280138776, 0.00564809237, -0.0378022566, -0.0249653086, 0.00669037318, -0.00443278439, -0.0234163068, 0.0501283631, 0.0441300981, -0.0170719866, -0.0270910691, -0.000343993946, -0.021208154, -0.0294969659, -0.0332211629, -0.0193954911, -0.0208785795, 0.021208154, 0.0118482225, -0.0524353907, -0.0135455346, 0.0374067686, -0.00631960155, 0.000304599438, -0.0219661761, -0.0130923688, -0.0244874246, -0.0263989605, 0.0439982675, -0.0375056379, 0.000801794289, 0.00730420696, 0.0129770171, 0.00432567252, 0.0016921619, 0.0247840434, 0.0329080671, 0.0167094544, 0.0233503915, -0.00957415532, 0.0139987, 0.000133246154, -0.0116587169, 0.0406036451, 0.0238282755, -0.0131253256, -0.00311448425, 0.0254267137, -0.00131006073, -0.060971383, -0.00306092808, -0.0175169129, 0.0466019101, -0.0051702084, -0.00126680406, 0.00971422438, 0.0207632277, -0.0272723343, -0.0388239399, 0.0244874246, -0.000964521954, -0.00783152692, -0.0440641828, -0.00783152692, 0.0154570695, 0.0345065072, 0.014550738, 0.0521387719, 0.00656266278, -0.00517844781, -0.0175663494, -0.0224605389, -0.00101086847, -0.0166764967, -0.0251795333, 0.0307823084, -0.0395490043, -0.00537619274, -0.00417324388, 0.0249982662, -0.00465936726, 0.0120706856, 0.0304527339, -0.0221309643, 0.00875845645, 0.0271240249, 0.00254184753, 0.00931049511, -0.0296947118, -0.036055509, -0.0344735496, -0.016363401, 0.009129229, -0.0144353872, -0.00238117971, -0.0154405907, -0.0563243739, 0.0208126642, 0.00891500525, 0.0195108429, -0.0118399831, 0.0405377299, -0.0136032095, 0.0176157858, 0.0426470116, 0.0303538609, -0.00449457951, -0.00650498737, 0.00526084146, -0.00612185616, 0.000262501359, 0.0098295752, -0.015506506, 0.0052937991, -0.0370771922, 0.0103321774, 0.00336578512, 0.0273547284, -0.000391627837, -0.0308317449, 0.0233503915, 0.0346053801, -0.0150533402, 0.00751843071, 0.00102786219, -0.0221144855, 0.0172532536, -0.0239271484, -0.0603781492, 0.00388280605, -0.0520069413, 0.00164787518, 0.0202853438, -0.0102168266, 0.0019826, 0.0100190816, -0.0392853431, 0.0309800543, 0.0555663519, -0.00505073741, -0.0241413713, -0.0160173476, 0.0188516919, -0.0157372076, 0.00124620565, 0.0171873383, 0.0221474431, 0.0261847377, 0.0136361672, 0.0139657427, -0.023020817, -0.018835213, -0.0207467489, 0.00348319625, -0.0153746754, -0.0477554239, 0.0289696455, 0.0102168266, 0.0257562902, -0.00215871655, 0.00124620565, -0.0206643548, -0.014649611, -0.0257398114, 0.0372090228, 0.0400104113, 0.0259375554, -0.0688152686, 0.00561925443, 0.0100190816, 0.025591502, 0.00972246379, 0.034341719, 0.00767497858, -0.0394501314, 0.00692931516, 0.000553068123, 0.0147979194, 0.00652146619, -0.0193954911, -0.0470633171, -0.0320841298, 0.00171893986, 0.0518751107, -0.0209939294, -0.00575932395, -0.0354293175, 0.0449210778, -0.0328915901, -0.00297853444, -0.0521058142, 0.0154405907, -0.0084453607, -0.0175828282, -0.00971422438, 0.00258922391, -0.0202194285, 0.0364839584, -0.00418354338, 0.0204171743, -0.0107935825, 0.0290685184, -0.00531027792, 0.00643495284, 0.00585819641, 0.0287554227, 0.0333365165, 0.00600238563, -0.0121695586, -0.0181595851, 0.0373078957, -0.0242237654, -0.0206313971, -0.0379340872, 0.00166538393, 0.00195479207, -0.0191483106, 0.0052979188, -0.00271487446, -0.0175828282, 0.0150451008, 0.0128039904, 0.0147402436, 0.0143777113, -0.0382966213, 0.0342758037, -0.0452506542, 0.0149709461, -0.00114424329, 0.00179618399, 0.0112879453, -0.0142046846, 0.0194614064, 0.0142788384, -0.00505073741, 0.0340121426, 0.0299748499, 0.0308647025, -0.0100355595, -0.0116339987, -0.016305726, -0.0241578501, -0.0178629663, -0.0149544673, 0.00644319225, -0.00284258462, 0.0405706875, 0.0456461422, -0.00448634, -0.0128616663, -0.003328708, -0.00389516493, 0.0148143983, -0.0103486562, 0.0140398964, -0.0150039038, 0.0129770171, -0.0200546421, 0.0203677379, 0.0310294908, 0.0267450139, -0.00789744221, 0.0169072, 0.00699523045, -0.0159267131, 0.00239765854, 0.00620013056, 0.00291879894, 0.00470880326, 0.0100355595, -0.0146001745, 0.000224265517, -0.0166435391, -0.0238612331, -0.0113703385, 0.0480190851, -0.020549003, 0.000467327103, 0.00205366453, 0.0168742426, 0.0170225501, -0.0294640083, 0.00723829167, -0.00237706, 0.00573872542, 0.00500954082, 0.0326608866, -0.0124991331, -0.00504661771, -0.0030135517, -0.0134796193, -0.00305062905, -0.00328751095, 0.00875845645, -0.0142376414, 0.00226582843, 0.0294804871, 0.0147567224, -0.0128204692, -0.0198568963, 0.0140975723, 0.0130511718, -0.00427623605, 0.0104063321, -0.0320511721, -0.00424327888, -0.0232020821, -0.0236140508, 0.00285700359, 0.026448397, 0.00253772782, -0.00626604538, -0.00463464903, -0.0365828313, -0.0122272344, -0.0194778852, -0.00599002652, -0.00102631724, -0.0039940374, 0.0157701652, -0.0177640952, 0.00997788459, -0.00984605402, -0.0161574166, -0.0370112769, 0.009986124, -0.00563985296, 0.173751965, 0.00331840874, 0.0118564619, -0.00883261114, 0.0292827431, 0.0266461428, 0.000360730191, -0.000745148573, -0.0198404174, 0.0176981799, 0.0330398977, -0.0152098881, -0.00282198633, -0.00115454255, -0.0243391171, -0.0180112757, 0.0313096307, -0.00474588061, -0.00532675674, 0.0275689512, -0.0176981799, -0.00805810932, -0.0288378168, 0.0130923688, 0.0190000013, 0.00643907255, 0.0290685184, 0.0114115356, -0.0491396375, 0.0043627494, 0.0272558555, -0.0214553345, -0.00563985296, -0.0099119693, 0.0198898539, 0.00274989172, -0.000831147074, -0.0166847371, -0.0168577638, 0.0157701652, -0.00344817876, -0.0198239386, -0.0194778852, -0.0144436257, -0.0065297056, -0.0469644442, 0.00942584593, 0.000304599438, 0.0161903743, 0.0450199507, 0.00916218571, 0.0200711191, -0.0190494377, -0.00982133579, -0.0254102349, -0.00929401629, -0.0207467489, 0.0206643548, -0.0087254988, -0.0307823084, -0.000693652488, 0.00766261946, 0.0330728553, -0.0142953172, -0.00760906376, -0.030732872, -0.00472940179, 0.0400104113, 0.019313097, -0.0139904609, 0.00577168306, -0.0104392897, 0.0228725076, 0.00732892519, 0.00224934961, -0.0216201227, 0.0135949701, 0.00654618442, -0.0204666108, 0.0048653516, -0.0179288816, -0.0147814406, 0.000796644657, -0.00662445836, 0.0215542074, -0.0141058117, -0.0188187342, 0.0316556841, -0.0197250657, 0.0236964449, -0.0112467483, -0.00693343487, -0.0207632277, 0.0256244596, 0.0114774508, -0.0128287086, 0.00733716413, 0.0185715538, -0.00178279495, 0.00417736359, 0.022542933, -0.00828469265, -0.00248417188, 0.0137844756, 0.0128699057, 0.00588703435, 0.0042268, -0.0152758034, -0.00703230733, 0.0223287083, -0.0360225514, 0.00821053796, -0.000711161119, -0.00014058435, -0.00520316605, 0.0197085869, 0.0402081534, 0.0198898539, 0.0290685184, -0.00541739, -0.00355117116, 0.0348690376, -0.0144848228, -0.0250806604, 0.0082434956, 0.0147402436, -0.00797571614, 0.0308317449, 0.0147072859, 0.0653547272, 0.0107935825, -0.00055873266, 0.000854835263, -0.00989549048, -0.0428117961, 0.00935993157, -0.0019692108, -0.0466348678, 0.0185385961, -0.00261394214, -0.00931049511, 0.00802927185, -0.00356764975, 0.0283928905, 0.0203018226, 0.0148143983, 0.0294804871, -0.00337608438, 0.0151439728, -0.0019403731, 0.0385273211, 0.0172038171, -0.0276513454, -0.0275689512, -0.00342964032, -0.0056728106, -0.0335177816, 0.0198568963, 0.00222669146, -0.0284917615, -0.0103980927, 0.00729184784, -0.00551626226, 0.000816728163, -0.0434050336, -0.0190494377, 0.0222463161, -0.00377981365, 0.00104691577, -0.0142541202, 0.024734607, 0.0107194278, 0.0157289691, 0.0438334793, 0.00300119282, -0.0204666108, 0.0398456231, 0.0189670436, -0.0157207288, 0.0197250657, -0.0138751091, -0.0186045114, 0.0546435416, -0.00966478791, 0.0254102349, 0.0338144, 0.0158525594, 0.004185603, -0.024932351, -0.0268438868, 0.0294804871, -0.0216201227, 0.0229878593, 0.017780574, -0.00334106688, 0.00212369906, 0.0249488298, -0.0172532536, 0.00423091976, 0.0161326975, 0.0043133134, 0.00843712129, 0.0355281904, -0.00730008725, 0.0297935829, 0.00709410291, 0.0126721608, 0.0168742426, -0.00549566373, 0.0032009976, 0.0277172606, -0.0186209902, 0.0177146588, -0.0162892472, 0.000815183274, 0.0256738961, 0.00282816589, 0.0109501304, -0.0214553345, 0.0102085872, 0.000992329791, 0.0090550743, -0.0263989605, -0.027206419, -0.0233009551, -0.0223287083, -0.019494364, -0.00765026081, -0.0226582848, 0.0097307032, 0.0350997411, 0.0108842161, -0.0156136174, 0.00323189516, -0.00890676584, 0.00855247211, -0.000801279326, 0.032150045, -0.00810342655, -0.0141634876, 0.00168598234, -0.0289531667, 0.0217684321, -0.00970598496, -0.00587055553, 0.01056288, -0.0131582832, -0.00210310076, 0.00025567814, -0.0324301831, -0.02957936, 0.0275524743, 0.0192636605, -0.0117328716, 0.0282940175, -0.0106535135, 0.0180936698, 0.00678924564, 0.0163469221, -0.0021813747, 0.00211751973, 0.0141058117, -0.0275030378, 0.00272517372, 0.0237953179, -0.00779033, 0.00962359086, -0.0019826, 0.00888204761, -0.0177311376, -0.0563243739, 0.0395819619, 0.00471704267, -0.0335836969, 0.00248005218, -9.99024342e-05, 0.00251506944, 0.0253937561, 0.000460890093, 0.000487153098, 0.0197745021, -0.0102415448, 0.0135125769, -0.0239436273, 0.00558629679, -0.0137020824, -0.023020817, 0.0221968796, 0.0353963599, 0.0121118827, 0.00706526497, -0.0143200355, -0.0016004988, -0.024075456, 0.0481838696, -0.0463052914, -0.00247593247, -0.00132653955, 0.0211257599, -0.000327515183, -0.0238941908, -0.0451188236, -0.00163036655, 0.00954943709, 0.000166461148, 0.0131170871, 0.00686340034, -0.00183326111, 0.0125403302, 0.0258551612, -0.01227667, 0.00638139667, -0.0124908937, -0.0366157852, -0.00741543854, -0.0105134435, 0.00959887262, -0.00036356246, 0.00378393335, 0.0299089346, 0.00937640946, -0.00142026239, -0.00428447546, -0.00852775387, -0.029777104, 0.0128287086, 0.00650910707, 0.0172862113, -0.0139575033, 0.0225264542, -0.0015850499, 0.0157784056, -0.0188516919, -0.0262671299, -0.0502931513, 0.00548330462, -0.00655854354, -0.017401563, -0.0219826549, -0.00582935847, 0.0116010411, 0.0228560288, -0.0620919392, 0.0280797929, 0.0143200355, -0.018077191, 0.0311613195, -0.0165117104, 0.00128740247, -0.00654618442, -0.0105875982, -0.0251795333, 0.00931873452, -0.00312066358, 0.0167506523, -0.0079427585, -0.000413513684, -0.00896444079, -0.000312581338, -0.0107276672, -0.0174180418, 0.0426140539, 0.0494033, 0.0117905475, 0.0292827431, -0.00982133579, 0.0273876861, -0.00789332204, -0.038626194, -0.0128534269, -0.0230867323, 0.0383954905, -0.0106699923, -0.0322653949, -0.00533911586, -0.00222463161, -0.0303373821, 0.00231732451, 0.00408673054, 0.00990373, -0.0239271484, 0.000577786239, 0.016066784, -0.00865958445, 0.0102827409, 0.013693843, 0.0104392897, 0.00181884225, -0.00552862138, 0.00843300112, -0.0069622728, 0.00947528239, -0.0143035566, 0.00318863848, -0.052797921, 0.00787272397, 0.0200546421, 0.0198239386, -0.0177970529, -0.00203203619, 0.0188516919, 0.00848655775, -0.0170390289, -0.0271734614, 0.00636079814, 0.00593647035, 0.021208154, -0.000615893339, -0.011460972, -0.00778621, -0.0110407639, -0.00914570782, 0.015605378, -0.0128781451, 0.00452341745, 0.0130676506, 0.0121942768, -0.00766261946, 0.00106287946, -0.00376951462, -0.0115680844, 0.00697463192, 0.0352974869, 0.0233174339, -0.0127380751, 0.0029496965, 0.0012606245, 0.00919514336, -0.00108347798, 0.00966478791, -0.0128616663, -0.0064514312, -0.000292755343, -0.017220296, 0.0124167399, -0.00466760667, -0.00971422438, 0.00646379031, 0.00392812258, 0.0300407652, 0.0207137913, -0.0117328716, -0.0501942784, 0.000916115649, -0.0138339121, 0.0183738079, -0.009986124, -0.0147155253, -0.00192698406, 0.00482415454, 0.013174762, -0.00648026913, 0.011320903, 0.00550390314, 0.087996535, -0.0103156986, 0.0113456212, -0.0215377286, 0.000431537308, 0.0095576765, 0.0147155253, -0.000551523233, 0.00453165686, -0.0199392904, 0.0335507393, 0.00954119768, -0.00447810069, 0.00720533449, -0.0214553345, 0.0182749368, -0.0102003478, -0.00988725107, 0.00217107567, -0.000213580075, -0.0183573291, -0.0162315704, 0.0080704689, -0.0126227243, 0.0292662643, 0.0117905475, -0.00402905466, -0.00307122734, -0.043767564, -0.00800455362, 0.021686038, -0.0139822215, 0.0152346063, 0.00711470097, 0.0261682589, 0.0349349529, -0.0047376412, 0.0230537746, -0.00946704298, -0.0138998274, 0.0040125763, -0.0230702534, -0.0321170874, 0.00466760667, -0.00695403339, -0.00252536871, -0.0164622739, -0.00195994158, -0.0138256727, 0.0130923688, -0.0017086406, 0.0071352995, -0.00629900303, -0.0274041649, -0.00303415023, 0.0172697324, -0.000931564427, 0.00804987, 0.00535147451, -0.0176981799, 0.00373861683, -0.0189505648, 0.017978318, -0.0270251539, -0.000673569, 0.0238447543, -0.00798807479, -0.016124459, -0.0140234176, 0.00343581988, -0.00408055075, 0.0462723374, -0.00453989627, 0.0167506523, 0.00878317468, -0.0140151782, 0.00937640946, -0.0210433658, 0.00146866881, -0.0234822221, 0.00509193446, 0.0187528189, -0.0204336531, 0.00877493527, -0.00322365598, -0.00644731196, 0.00688399887, 0.0011246748, -0.0228395499, -0.0305845644, -0.00241413713, -0.0351656564, -0.0175828282, 0.00566869089, 0.0129275806, -0.00601062458, 0.00771205593, 0.0118976589, 0.00433803163, -0.0143200355, 0.001676713, 0.0158113632, 0.0174674764, -0.023020817, 0.00452753715, -0.00575932395, 0.0226912424, 0.00383748929, -0.014649611, 0.0311283618, 0.0406366028, -0.00344199943, 0.0115516055, 0.00804987, 0.0205654819, -0.0205654819, 0.0264813546, 0.0138833486, 0.0162068531, 0.00484475307, -0.00833412912, 0.0447233319, -0.00079870451, -0.0140481358, -0.0164457951, -0.0107359067, 0.0218508244, 0.022921944, -0.010464008, 0.0232679974, -0.0300902016, 0.0239601061, 0.0088738082, 0.00298677385, -0.0453824848, 0.0073866006, 0.00321953627, 0.023581095, -0.00395696051, -0.010604077, -0.00271487446, 0.0012801931, -0.0133477887, 0.0146166533, -0.00667389436, 0.0328586325, -0.026448397, -0.00196612114, 0.0177640952, 0.0119718136, -0.0105216829, -0.00565221207, 0.0111149186, 0.0100273211, 0.0144436257, -0.00817758, 0.0108594978, 0.0013965742, 0.00984605402, -0.0185550749, 0.00617953204, 0.0406695604, 0.00753902923, 0.00777797075, -0.0285906345, 0.00484475307, 0.00694579398, 0.00987901166, -0.000727639883, 0.0227077212, -0.00636903755, -0.00171790994, -0.000748753315, -0.0133313108, 0.00323189516, -0.00446162233, 0.0314085, -0.00767909829, 0.0183738079, -0.0026448397, 0.0024573938, -0.00971422438, -0.00888204761, 0.0183902867, -0.0081446236, 0.000471446809, -0.0131418044, -0.00289408071, -0.0230702534, 0.0166353, 0.0105464011, -0.0017045209, -0.00455637509, 0.0128863845, 0.00153767352, 0.0086266268, -0.0041217478, -0.00347289699, 0.00594059, 0.0217189956, -0.0314744152, -0.0103074592, -0.0163551606, 0.00805399, -0.012457937, -0.00581699936, -0.0181266274, 0.00172511931, -0.0070858635, -0.00223905034, -0.00398373837, 0.0041320473, 0.00097482116, 0.00681808358, -0.000777591136, -0.00924458, 0.00159019954, 0.00506721623, 0.0100602778, 0.00741543854, 0.0157866441, -0.00174159813, -0.00869254209, 0.016363401, 0.00462229, -0.0239930637, 0.00924458, 0.0100355595, 0.0248170011, 0.0262012165, -0.0398126654, 0.0038807462, 0.0218343455, -0.0117081534, 0.0219332185, -0.0115268873, 0.019972248, -0.0236964449, -0.00390340434, 0.0207797065, 0.0135372952, 0.0268438868, -0.0228725076, -0.000237911983, 0.0152263669, 6.88760338e-05, 0.0128204692, 0.00868430268, -0.0180442333, 0.00545858638, -0.0148803135, -0.0217519533, 0.0233339127, -0.0123673035, 0.0197415445, -0.00468820473, 0.00631136214, 0.0086266268, -0.0144518651, -0.0156136174, 0.00870902091, 0.00528967939, -0.000561307475, 0.0187857766, -0.00753079, -0.000391885318, -0.011938856, -0.0123755429, -0.013413704, 0.00861014798, -0.00395490043, 0.0515125804, 0.00760494405, 0.00612597587, 0.00212575891, -0.00211957959, 0.0183243714, 0.0132653955, -0.0263660029, -0.0161738954, -0.0183243714, 0.0221144855, 0.01307589, -0.00778209046, -0.0307163931, -0.00521140546, -0.0109171728, -0.0109254122, -0.000881098269, -0.0139987, 0.0111890724, 0.0127298357, -0.00396931916, -0.0150698191, 0.00081466831, 0.0511500463, 0.000176889109, -0.00897268, -0.00454813568, 0.0180112757, 0.00323395501, -0.00662033865, -0.0174509976, -0.00307534705, 0.0108677372, -0.00771205593, 0.0174674764, -0.00957415532, -0.0065832613, -0.0173686054, 0.00166538393, -0.0567198656, -0.0149297491, -0.0139657427, -0.0215706863, -0.0142953172, 0.00351821352, -0.0116010411, -0.0126062455, -0.00448634, 0.00338638364, -0.00460993079, -0.0178300105, -0.0188516919, -0.0081693409, 0.00391782308, 0.00224934961, -0.000342449057, -0.00846183952, 0.00616305321, -0.00624956656, -0.0175828282, -0.018835213, 0.0130923688, 0.00182399189, 0.00205572438, 0.00881613232, -0.00937640946, 0.0125650484, -0.0251795333, -0.0214718133, -0.00142644194, -0.00574696483, 0.0281127505, 0.0315073729, -0.00931873452, 0.0028364053, 0.0332376435, -0.00435451046, 0.0234327856, 0.00769969681, -0.0035058544, 0.0124085005, 0.0100437989, 0.00533499615, 0.0399774536, 0.0160255861, 0.0427458845, -0.0271240249, -0.0175004341, -0.0217519533, 0.0240589771, 0.00306504779, -0.00906331372, -0.0116339987, -0.0215871651, -0.0274700802, -0.0104475291, 0.036912404, 0.0121695586, -0.0048694713, -0.00720121479, 0.0377693, 0.00727124931, -0.00758846523, 0.0144683439, 0.0160008688, -0.0140810935, 0.00107832835, -0.0202194285, -0.026827408, -0.00954119768, -0.00802927185, -0.00512489211, -0.018835213, 0.0148308771, -0.00286936271, 0.0100520384, 0.00859366916, -0.00175086735, 0.00211751973, 0.00779444957, 0.0131500438, 0.0199557692, -0.0187692977, -0.016561145, -0.0283104964, 0.003009432, 0.000376436481, 0.0105793588, -0.00996140577, -0.00257686479, -0.018835213, 0.0081693409, 0.00497658318, 0.0094835218, -0.00132344977, -0.0194119699, 0.0126062455, -0.0095576765, -5.04983618e-05, -0.0223781448, -0.0225099754, -0.0123755429, 0.00475412, 0.00465112785, 0.011460972, 0.0085442327, 0.0109501304, 0.00481591513, 0.0070817438, 0.000245893869, -0.0136608854, 0.00852775387, -0.0282116234, -0.011180833, 0.0109748486, 0.00982133579, 0.00271075475, -0.00835884735, 0.00712706, -0.00996964518, -0.00555333961, -0.00679748505, -0.0170719866, 0.0205325242, 0.0110325245, -0.0286235921, -0.00404347386, 0.000466297177, 0.00134198833, 0.0130182141, -0.0209280159, -0.0169566367, 0.0182914156, 0.00758846523, -0.0046140505, -0.0103568956, -0.0199392904, 0.00799631421, 0.0159349535, 0.0022411102, 0.013891588, -0.00489418954, -0.0102580227, -0.00315362122, -0.0230372958, -0.0139410244, 0.0133725069, 0.00519904634, -0.0122107556, -0.0138009544, -0.017599307, 0.0114856903, 0.0154653089, -0.00735776266, 0.0143694719, 0.0179288816, -0.00359854754, 0.0206973124, 0.0188022554, -0.0234492645, -0.0213399846, -0.00583759788, 0.0268109292, -0.0163386818, 0.00512901135, 0.00465112785, 0.02443799, -0.00174262805, -0.00699111074, 0.0176157858, -0.00608477928, 0.0180936698, 0.0255585443, 0.0380000025, -0.00898092, 0.0039343019, 0.00638963608, 0.0147320041, 0.0181101486, -0.0207632277, -0.018456202, -0.0121942768, 0.00182502181, 0.0133065926, 0.0140481358, 0.00886556879, -0.0126886386, -0.020450132, -0.00778621, -0.0170555077, 0.0106864711, 0.0118482225, 0.0151934093, 0.0181925427, -0.019790981, 0.0174839552, 0.0134219434, 0.00726712961, 0.018637469, -0.0386591516, -0.0202029496, 0.0114939297, 0.0199228115, -0.0105875982, -0.00795511715, -0.00329163065, 0.0229054652, 0.00181060284, 0.0344405919, 0.000526805117, 0.0105546406, -0.0175498705, -0.0157701652, 0.00549978344, 0.0101261931, 0.00737012178, -0.00421650056, 0.00591587182, 0.0113126636, 0.00649674796, -0.002865243, -0.00898915902, -0.0124167399, -0.01056288, -0.00679748505, -0.00687163975, 0.00561101502, 0.00401051622, -0.00444926322, 0.0321665257, -0.0140810935, -0.000461147574, -0.0245368611, -0.00989549048, 0.0022163922, -0.00124414579, 0.00774913328, -0.00321747642, 0.016305726, 0.00177764543, 0.00465112785, -0.010941891, 0.014649611, 0.00585407671, -0.00282610604, 0.00729184784, -0.0123590641, -0.00435039075, 0.0204171743, -0.00989549048, 0.0103980927, -0.00590763241, -0.00470056385, -0.00790156145, -0.00616717292, -0.0129440594, -0.00938464887, -0.0179124027, -0.00806634873, 0.00646379031, -0.00394254131, 0.0153005216, 0.00367888133, 0.00483239396, 0.00164169562, 0.0031124244, -0.005042498, 0.00452341745, -0.00430095429, -0.0113703385, -0.0216695592, -0.0154982666, 0.0311942771, 0.0172038171, 0.0170884654, 0.0215212498, -0.0240424983, -0.00141511287, 0.00840004347, 0.00538031245, -0.0155394636, -0.0132489167, -0.0142953172, -0.013174762, -0.0255091079, 0.0060229837, -0.0123590641, 0.00179515406, 0.00310624484, -0.0281786658, 0.00141202309, -0.00174571783, 0.0017529272, -0.0236964449, -0.00857719, -0.0085442327, -0.0240589771, -0.012457937, -0.0024573938, -0.017978318, -0.0015850499, -0.00476647913, 0.000213708816, 0.00239559868, 0.00932697393, -0.0125980061, -0.00330604962, 0.00677688699, -0.00800867379, -0.00388280605, -0.00288378168, -0.00498070288, 0.00430507399, -0.0131994803, 0.0148143983, -0.0228065923, -0.00940936711, 0.00216901582, 0.0240919348, -0.00349349552, -0.0027375326, 0.0064061149, -0.0221968796, -0.0113044241, -0.011699914, -0.0296287965, -0.00803339202, 0.00735776266, 0.00307534705, 0.000430764863, 0.0198898539, -0.0177640952, 0.00198774948, -0.00234410237, -0.017599307, -0.000729184772, 0.0105793588, -0.00598590681, 0.023581095, 0.0292827431, 0.000218472211, -0.00216489611, 0.0192142241, -0.0272888131, -0.00269427593, 0.0161409378, 0.00308976602, -0.0117081534, 0.00919514336, 0.00651734648, -0.0106864711, 0.0106947096, 0.000213451334, -0.00327103236, 0.0169566367, 0.00287966197, -0.00973894261, -0.00913746841, 0.0115021691, -0.0114444932, -0.0312766731, -0.0131253256, -0.00564397266, 0.0188681707, 0.0260858648, 0.00191050535, -0.00344817876, 0.00867606327, -0.0190164801, 0.00630312273, 0.0100437989, -0.0206973124, -0.009129229, -0.018637469, -0.00704878615, -0.0172367748, 0.0166764967, -0.00320923701, 0.00436686911, 0.0135455346, -0.0207961854, -0.00542562921, 0.0100190816, -0.0530945398, -0.0293321777, 0.0180112757, 0.0153829148, 0.00671921112, 0.0431084149, 0.0177146588, -0.026448397, -0.00714765862, 0.0126392031, 0.0227736346, 0.00171276031, 0.0160915013, 0.0130594112, 0.00522376457, -0.00951647945, 0.00594470976, 0.00954943709, -0.0193460546, -0.00638139667, -0.0135702519, 0.0135949701, 0.0156218568, 0.0190329589, 0.0017683761, -0.00441218587, 0.00512901135, -0.0140810935, 0.0138009544, -0.0106123164, 0.00471704267, 0.0070858635, -0.0263000876, 0.0115845622, -0.0157619268, -0.00127813325, 0.0266791, 0.0154735483, -0.0176652223, -1.97938134e-05, 0.0195273217, 0.0095576765, 0.019790981, 0.00670273229, 0.00291673909, 0.0185221173, 0.0142953172, -0.00589115405, 0.000532469654, -0.00647614943, 0.0103980927, 0.0303703398, 0.00297647459, -0.0164622739, 0.0184067655, -0.00638139667, -0.0139245456, -0.0162150916, -0.000205855657, 0.0107771037, 0.0143282749, -0.0114032961, 0.0206808336, 0.000619498082, 0.0133230714, 0.00411762809, 0.0178300105, -0.00177661551, 0.00252742856, 0.0186539479, -0.0138091939, -0.0115516055, 0.00795511715, -0.012795751, 0.00505073741, 0.00445338292, -0.0190659165, 0.00961535145, -0.00475000031, 0.00030485692, 0.0354293175, -0.0179453604, 0.00171070045, 0.01307589, 5.88021103e-05, 0.00538443215, -0.0187692977, 0.00538031245, 0.021307027, 0.00828881189, -0.00547506521, -0.00365416333, 0.024635734, 0.0160420649, 0.0035017347, -0.00816522166, 0.0269592386, 0.0116834352, -0.0180277545, 0.0139492638, -0.00298677385, -0.0100108422, 0.00674392935, 0.00512489211, 0.00178279495, -0.00950000063, -0.0119306166, 0.0125073725, -0.00629900303, 0.00187445804, -0.0237129238, -0.00874197762, 0.00307122734, -0.00676452788, -0.0178300105, -0.00439570704, 0.0106617529, 0.000854835263, 0.0137103219, -0.0119470954, -0.00174777769, 0.0097307032, 0.018934086, 0.00340080238, -0.0110902, 0.0195767581, -0.00772441505, 0.0226582848, 0.00600238563, -0.00323395501, -0.0189176071, 0.00321129686, -0.00723829167, 0.00432155281, 0.0121613191, -0.002152537, -0.0168660022, -0.00918690395, -0.0140481358, -0.0264648758, -0.0020928015, 0.00669449288, 0.00528144, -0.0137185613, 0.010941891, -0.012037728, 0.0102333054, 0.00524436263, -0.0238941908, 0.0140069388, -0.00158196024, 0.0293651354, -0.00161800743, -0.0154817877, -4.12612499e-05, 0.0120130107, -0.00489007, 0.0150368614, 0.00176528632, 0.0151604516, -0.00489830924, -0.0228889864, -0.0141305299, -0.0273382496, 0.0197580233, 0.00978014, -0.0111643542, -0.00316598034, 0.0172367748, -0.00369742, 0.00638963608, -0.00909627136, 0.000724035141, -0.0156383365, -0.00617541233, -0.00154900271, -0.0114939297, 0.00758846523, 0.00538443215, 0.0253607985, 0.00403729407, -0.0208621, -0.00292085879, -0.0275359955, -0.0207632277, -0.00199907855, 0.00317833922, 0.00622072909, -0.010464008, 0.0224111024, 0.0126721608, 0.0363521278, 0.0166600179, 0.0161738954, -0.00154282316, 0.00928577688, 0.0383954905, 0.0102580227, 0.00437922822, 0.00247387262, -0.0011246748, -0.00678100623, 0.0114856903, -0.0214553345, 0.00954119768, 0.00339050312, -0.0104804859, 0.0281951446, -0.0112961847, -0.00899739843, -0.000762657262, 0.0043091937, 0.00461817, 0.0128122298, 0.00172099972, -0.0122601911, 0.0032648528, 0.0078686038, 0.0123920217, -0.0288048591, -0.00724653108, -0.00603122311, 0.00197848026, 0.00867606327, 0.0124167399, 0.00151913497, 0.0157289691, -0.017978318, -0.0136773642, 0.0245368611, 0.000269067124, -0.00461817, 0.0100190816, 0.0265802275, -0.00058448076, -0.010843019, 0.000404759339, -0.00140378368, -0.00730832666, -0.0154653089, 0.00276019098, 0.0194284488, 0.0163963586, 0.0160585437, -0.00409085024, -0.0102415448, -0.00839180406, -0.00151089556, 0.0267285351, 0.0177970529, 0.00395284081, 0.00834648777, 0.000327000249, -0.0105052041, 0.00540915038, 0.0236964449, -0.0185715538, 0.0308317449, 0.00931049511, -0.00373861683, -0.00826409459, 0.00782328751, 0.022361666, -0.00224317, -0.00148102781, 0.00017701785, -0.00513313105, 0.00734128384, -0.000896547106, 0.0186539479, -0.00956591591, -0.00353881205, -0.00530615821, -0.000890367548, 0.002152537, -0.0093022557, -0.00746899424, -0.00910451077, -0.0181431063, -0.00183017144, -0.0170719866, -0.00896444079, -0.000637521734, 0.00287760212, -0.0148061588, 0.00240795757, 0.00262424117, -0.0184067655, -0.00733304443, 0.00448634, -0.0114115356, 0.0163963586, -0.0148638347, -0.0138668697, -0.00884085055, 0.0102497842, -0.0060271034, 0.00389104523, -0.000412226276, -0.0304527339, -0.00338020409, -0.00289614056, -0.0124661755, -0.00165302481, 0.00968950614, 0.0104228109, -0.0153334783, -0.00319481804, 0.000664814666, 0.00255420664, -0.0120706856, -0.0064019952, 0.00938464887, -0.00394254131, -0.0160503052, 0.0144601045, 0.00846183952, 0.0101426719, 0.000522170449, 0.00523200398, -0.020351259, 0.0110490033, 0.00842888188, 0.0183078926, -0.00150368607, 0.000425357779, -0.00141511287, 0.00876669586, 0.0210928023, -0.0129522989, -0.01122203, 0.00614657439, -0.00798395555, 0.0183738079, -0.0114362538, -0.00449869921, -0.00744015677, 0.00637315726, -0.0186539479, 0.0088738082, 0.0153252389, 0.0186869055, -0.000762657262, -0.00706114527, 0.033946231, 0.000926414854, 0.00136052701, -0.0416253284, 0.00903859548, -0.00545034744, 0.0013244797, -0.0157866441, -0.019313097, 0.0163304433, -0.0023688206, -0.013133565, 0.0194778852, -0.00444926322, -0.0220815279, -0.00865134504, 0.0321665257, -0.00460993079, 0.0240424983, 0.00312066358, -0.0220980067, -0.00903859548, -0.00145116006, -0.0154900271, 0.0102580227, 0.00675216876, -0.0190000013, -0.019593237, -0.0239930637, -0.0362862125, 0.0202688649, 0.00221021264, 0.0161162186, -0.00927753747, 0.0159102343, -0.00356764975, 0.00267985696, 0.00820641872, 0.000196457622, 0.0176322646, 0.0119718136, 0.00996964518, -0.00244915462, -0.00960711204, -0.0170884654, -0.0182419792, -0.0206808336, 0.00917866454, -0.0108183008, 0.0173850842, 0.0166600179, 0.00212987862, 0.000179978873, -0.0120706856, -0.0164869912, -0.00697051222, 0.000181137526, -0.00744427601, 0.00759258494, 0.0220980067, -0.0324961, -0.0185056385, -0.00818582, -0.00627428479, 0.0193295758, -0.0174839552, -0.0101591507, -0.00970598496, -0.01570425, 0.0282116234, 0.0179947969, -0.00636903755, -0.000317988422, -0.0036047271, -0.00311654387, -0.00367476163, 0.0158525594, -0.0154488301, -0.0180607121, 0.00323395501, 0.0139163062, -0.00475000031, -0.00726712961, 0.00202585664, -0.00406407239, 0.0130594112, -0.0134054646, -0.030732872, -0.0199063327, -0.00896444079, -0.00376333506, 0.0210104082, -0.00590351271, -0.00277872966, 0.00365210348, -0.00312066358, -0.0219661761, -0.000577786239, -0.0205325242, 0.0122849094, 0.0232350398, 0.00409291, -0.00706938468, 0.00485711219, -0.00344817876, 0.0120212492, -0.0180112757, -0.014410669, -0.00146866881, 0.00737836119, -0.0245698188, -0.00910451077, -0.00212987862, -0.0117163928, -0.0168495234, -0.0106535135, 0.00538443215, -0.0210433658, -0.0125485696, 0.00843300112, -0.00212575891, -0.00825173501, 0.00140687346, -0.0165776238, 0.0156795327, -0.0106864711, 0.0151027767, 0.033105813, 0.0114280144, 0.00375303579, -1.49177768e-05, 0.00611361722, 0.0153252389, 0.0173521265, 0.0140234176, -0.00104331097, 0.00278490898, 0.00526084146, -0.00484063337, -0.0210433658, 0.00630312273, -0.0243061595, 0.0172862113, -0.0114115356, 0.00428035576, 0.0078892028, -0.0186869055, 0.00889852643, 0.0113373818, -0.000849685632, -0.00267573725, 0.00917866454, -0.0100520384, -0.0349679105, -0.0125238514, -0.0114362538, -0.0012884324, -0.018258458, -0.00945056416, -0.0140893329, -0.00793451909, -0.00101086847, 0.0071352995, 0.0134549011, -0.000315671088, 0.0331552476, 0.0203347802, -0.00171070045, 0.0248664375, 0.00842064247, -0.0307658296, -0.00690871663, 0.00324631413, 0.0068304427, 0.0370771922, 0.00616305321, -0.0186539479, 0.00162933662, -0.00502189947, 0.0197580233, -0.010225066, -0.0060271034, -0.00194449269, 0.0226418059, -0.00624544686, 0.00111334573, -0.00308564631, 0.0055986559, -0.0078892028, 0.0121530797, 0.0131582832, 0.00581699936, 0.0146413716, -0.0146331321, -0.0225099754, -0.0129440594, 0.0165364277, -0.00285288389, 0.00408055075, -0.00194861239, -0.019494364, -0.0150533402, 0.00875021704, 0.00168907212, 0.0113703385, 0.00492302701, -0.0118976589, 0.00270251534, 0.00985429343, -0.000360987673, -0.000834751758, -0.00484887278, 0.00148823729, -0.00102322747, 0.00341110164, 0.00937640946, 0.0039343019, 0.0155312242, 0.0139163062, 0.00811990537, 0.0190000013, -0.00535971392, -0.0114774508, 0.0251960121, 0.000825482479, 0.0199392904, -0.00454813568, 0.00571400719, -0.00195170217, 0.00209486135, -0.00765026081, -0.00437922822, -0.0243391171, 0.0120954039, 0.00451517804, 0.0137350401, -0.000530409859, 0.00911275, -0.00492302701, -0.00616717292, -0.00951647945, -0.0053473548, -0.00656678248, 0.00213193847, -0.00561513472, 0.0144271478, 0.0105711194, 0.0129687777, -0.00459345197, 0.0107523855, -0.00326279295, 0.0264154393, 0.017121423, 0.0106699923, 0.00503837829, 0.00829293206, -0.0204171743, 0.00535147451, 0.000689532782, -0.023399828, 0.000522685412, -0.00959887262, 0.00254802709, 0.00918690395, -0.0107771037, -0.0093022557, -0.00604358222, -0.0072094542, 0.0153581966, -0.0246686917, 0.00353675219, -0.00271693431, 0.0169731155, -0.00272723357, 0.0190494377, -0.040339984, -0.00586231612, -0.00670273229, 0.0161162186, 0.000156934359, -0.0255585443, 0.00305474875, 0.0039054642, 0.0121201221, -0.00821465813, 0.00535971392, -0.00358824828, -0.00544622773, 0.00519904634, -0.0199063327, -0.00513313105, -0.000147665065, -0.00697051222, 0.00840004347, -0.0237953179, -0.0150698191, -0.0116751958, -0.00885732938, -0.00236470089, 0.00408467045, -0.0149050308, -0.0025562665, -0.00802103244, -0.0109583698, 0.0160008688, -0.0296617541, -0.00291467924, 0.00783152692, 0.0214223769, 0.0210433658, 0.018934086, 0.00877493527, -0.00708998321, -0.00419796212, 0.00106802909, -0.00875021704, 0.00524436263, -0.00739895971, -0.0172532536, 0.0100685172, -0.0187692977, -0.00125856465, 0.0108924555, -0.00606006104, 0.000257609237, -0.000345538836, -0.0367146581, 0.0183738079, 0.0057263663, 0.00813226402, 0.0175333917, 0.011180833, -9.88886e-06, -0.0129687777, 0.00975542143, -0.0140975723, -0.0087007815, 0.0039446014, -0.00301767141, -0.0175004341, 0.0277831759, -0.00899739843, -0.00709822262, 0.011419775, -0.0195767581, -0.00404553348, 0.00256862538, 0.00119161978, -0.00363768451, 0.0126886386, -0.012556809, 0.00258716405, -0.0558959283, -0.0280303564, 0.00541739, 0.0193954911, 0.0232844763, -0.00225758902, 0.0108100614, 0.0300407652, 0.0280797929, 0.0236305296, 0.0131500438, 0.00309182587, -0.0194614064, 0.00767909829, -0.00223493064, -0.0156548154, 0.0187198631, 0.0118070254, -0.00679748505, -0.00357382931, 0.0153334783, -0.00661209924, 0.00732892519, -0.000746693462, 0.00805399, 0.00431743311, -7.58280075e-05, 0.00158196024, -0.00539679127, -0.000940318801, -0.0103074592, -0.0170555077, 0.0137350401, -0.00420826115, 0.0194284488, 0.000712706, 0.00222257175, -0.0203347802, -0.000108721142, -0.0114692114, -0.00551626226, -0.00761318346, 0.00081466831, -0.00311860372, -0.00701994821, 0.0217354745, 0.0065338253, 0.0181431063, 0.00912099, 0.0163469221, -0.00668213377, 0.0236964449, -0.00273547275, 0.00563985296, -0.00549566373, -0.00954943709, 0.00239765854, -0.0205160454, 0.01227667, -0.00415676506, -0.0230537746, -0.0209444948, 0.00324425427, -0.000897062069, 0.00467996579, 0.0018322313, -0.00974718202, 0.0151769305, 0.00800043438, 0.0162974857, -0.00815286301, -0.00169834134, 0.00985429343, 0.0103816139, -0.00357588916, 0.000245507661, 0.0109995669, -0.00250889, 0.00540091097, 0.0155559415, -0.00139451434, 0.00865134504, 0.0144848228, 0.000867709285, 0.0158196017, 0.0225594118, -0.0081981793, 0.008371206, 0.00174262805, -0.007563747, 0.0303044245, -0.00608477928, -0.00678512594, 0.0422844775, -0.00747723365, 0.00417530397, -0.00252948841, -0.0131006083, 0.0289037302, 0.00286730286, -0.0163798798, -0.00430507399, 0.00921162218, 0.0185880326, 0.0123508247, 0.00246975292, -0.00108862761, -0.00979661848, -0.00367270177, 0.0304856915, 0.0144848228, 0.00705702556, 0.00646791, -0.0115516055, 0.0144930622, 0.0138091939, 0.00867606327, -0.00591999153, 0.00241207727, -0.0219826549, -0.00766673917, -0.021883782, -0.00899739843, 0.00286318315, 0.0230043381, -0.00248829159, -0.00747311395, -0.00727948872, 0.00207426283, -0.0166105814, -0.00507545564, 0.0254596714, 0.0142870778, -0.0208126642, -0.00616717292, 0.00788508262, 0.0032895708, 0.0022843671, -0.00142541202, 0.00695403339, -0.0231361687, -0.00564809237, 0.00526496116, -0.00561101502, -0.0214718133, -0.0258551612, -0.0104557686, 0.00210104091, -0.0245039035, -0.00979661848, -0.00944232475, 0.0180112757, 0.00849479623, 0.0104557686, -0.0140646147, 0.00903035607, 0.0152098881, -0.00140790339, -0.00201967708, 0.00307122734, 0.00205572438, -0.010323938, -0.00750607159, -0.0156960115, 0.00218343455, 0.0166188218, -0.010225066, 0.0113044241, 0.00805399, -0.00809106696, 0.019593237, 0.0138174333, 0.00978014, 0.0158113632, -0.00472528208, 0.0154488301, -0.0116834352, -0.0101591507, 0.0156136174, 0.00236058119, 0.00151913497, 0.018258458, -0.00852775387, 0.00121015834, -0.00500130141, -0.0147814406, 0.00993668754, 3.16218247e-05, -0.00037952626, -0.00697875163, 0.0150945373, 0.00152943423, -0.0105216829, -0.00110922602, -0.00165096496, 0.0020011384, -0.010843019, 0.0228560288, -0.00565633178, 0.0101838689, -0.00873373821, -0.00134404819, 0.00816522166, -0.00373655697, 0.00259746332, 0.000459860166, -0.0116010411, 0.032627929, -0.00658738101, 0.000168392246, -0.0120047713, 0.00262836087, -0.0143777113, -0.0147072859, -0.0178135317, 0.000157449322, -0.0223946236, 0.00417324388, -0.00893148314, -0.00291055953, 0.00222669146, -0.00349967508, 0.0147567224, 0.00535147451, 0.0204336531, -0.00630724244, 0.0116257593, 0.0197415445, 0.0130017353, -0.000956797565, 0.00201040786, -0.00101344322, 0.0122025162, -0.0136279278, -0.0143859508, -0.00339256297, 0.00298677385, 0.0175663494, -0.0105546406, 0.0224111024, 0.0142541202, 0.015308761, -0.025492629, -0.0156712923, -0.00530203851, 0.00740307942, 0.00357176946, -0.0106864711, -0.00614657439, -0.00970598496, 9.63620769e-05, 0.00206293375, -0.00472528208, -0.0161903743, 0.00875021704, -0.00545446714, -0.00881613232, 0.0169401579, -0.00179927377, 0.00732480548, 0.000221561975, -0.0126309637, 0.00925281923, -0.0141222905, -0.00825173501, 0.0113291424, -0.00400639651, -0.0140151782, 0.0153993936, 0.0027086949, 0.0115516055, -0.0174180418, -0.00647614943, -0.00644731196, -0.00457697315, -0.0308317449, -0.0245039035, 0.00387662649, 0.000596839818, -0.00841240305, -0.0237953179, -0.0248664375, -0.00266337837, -0.00570576778, 0.0105464011, -0.0117411111, 0.00446574157, 0.00556157902, 0.00041119635, 0.0170555077, 0.016923679, -0.0105216829, 0.0078686038, 0.0191647895, -0.0111973118, -0.00333488756, 0.00411968818, -0.0117328716, -0.0209444948, -0.00318245892, 0.00773677416, -0.0166517794, -0.0138586303, -0.00308152661, -0.0157866441, -0.0210598446, -0.0123508247, -0.0183408502, -0.00953295827, -0.00846183952, -0.0167506523, 0.01293582, 0.0061012581, -0.00425975723, -0.00306298793, 0.00447810069, -0.00193110376, 0.00177146588, 0.0170719866, -0.0236140508, 0.00372419786, -0.00699111074, -0.0106205558, -0.021883782, 0.0123590641, -0.00452341745, 0.00657090219, 0.0127051175, -0.00836296659, 0.0121695586, 0.000213708816, -0.00231938437, -0.00563985296, -0.0149791855, -0.0231691245, -9.53321578e-05, -0.00558629679, 0.000599929539, -0.0115186479, -0.0107688643, -0.000328287628, 0.0218343455, -0.00296411547, -0.0134219434, 0.0192142241, -0.0162562896, -0.00561925443, 0.00506309653, 0.0325949714, -0.0195767581, -0.0141552482, -9.31435716e-05, -0.0102168266, 0.00439158734, -0.0114115356, -0.00215871655, -0.000130349508, -0.00379629247, 0.00338432379, 0.00361296628, -0.00678100623, -0.0253607985, -0.0143035566, -0.00944232475, -0.00631960155, 0.00113806385, -0.00285082404, -0.00324219442, -0.0142953172, -0.00744015677, -0.00667389436, -0.0175663494, -0.0185385961, 0.0911604539, 0.00783152692, 0.0133477887, -0.0321170874, 0.0103568956, -0.0142788384, -0.0155477021, 0.0542810075, 0.00584171759, 0.0214223769, 0.00349761522, 0.0081981793, -0.0193954911, 0.0122437123, -0.0106452741, -0.00482827425, -0.0209115371, 0.000546888565, -0.0143035566, -0.00797571614, -0.00815286301, -0.0202688649, 0.015028622, 0.0090550743, -0.00285082404, -0.00752667, -0.0132571561, -0.00814050343, -0.00568928896, 0.00752255041, -0.00705290586, 0.0228395499, 0.022065049, 0.00497658318, -0.0326608866, 0.0040578926, -0.00295999576, 0.0157124903, 0.0157701652, -0.0192801394, 0.0194449276, -0.00191977457, 0.0173356477, -0.0052937991, 0.0134301828, -0.0076873377, -0.00228848658, -0.0145013016, -0.0132489167, -0.0116092805, 0.0132159591, -0.00540091097, -0.00679336535, -0.0204995684, 0.0163551606, -0.0147237647, -0.0036047271, -0.0160091072, 0.000690047746, 0.0168165658, -0.00043977669, 0.00304650934, 0.00339462282, -0.0051660887, -0.00588291464, -0.00272723357, -0.00759670464, -0.00367682148, -0.0111561147, 0.00730832666, -0.0133642675, -0.0234163068, 0.0114115356, -0.00827233307, -0.00131212058, -0.00834648777, -0.0189505648, 0.00935993157, -0.00753902923, -0.00685516093, -0.0158937555, 0.0142788384, -0.0370442346, -0.0235646162, -0.00614245469, -0.00174880761, -0.0201370344, -0.00487359101, -0.0100685172, 0.00568104954, -0.00358618842, 0.0396149196, -0.021883782, 0.0198074598, 0.0132818744, 0.00441218587, -0.00542974891, 0.0167918485, 0.0258222036, 0.00160564843, 0.0182749368, 0.00894796196, -0.00843712129, -0.0118811801, 0.00557805737, 0.00105978979, -0.00561101502, 0.0148308771, 0.00896444079, 0.0166682582, 0.00624956656, -0.00427211635, 0.00833412912, 0.017978318, 0.00800867379, 0.000234822219, 0.00556157902, 0.0149379885, 0.0174839552, 0.000477883819, 0.0118976589, 0.0138174333, -0.00464288844, 0.000154359557, -0.00304032979, 0.0129193412, -0.0008162132, 0.0156548154, 0.0168330446, 0.0167176947, 0.0178464893, -0.00777385104, 0.00221021264, 4.45119404e-05, 0.0130676506, 0.0248499587, -0.0246027764, -0.0125732878, -0.00476235943, 0.0121695586, 0.00973894261, 0.000983575475, 0.0104475291, 0.0101344325, 0.0132818744, -0.00179927377, -0.000696227245, 0.00874197762, 0.00123693631, 0.0175169129, 0.00621248968, 0.00209074165, -0.004993062, -0.00676452788, 0.00652558589, -0.00234204275, -0.000502859417, -0.0114856903, 0.0211916752, -0.00944232475, -0.00648850854, 0.00387456664, 0.0116504775, 0.00742367795, 0.0125650484, -0.00742779765, 0.0328915901, 0.0154570695, 0.00933521334, 0.00815698225, 0.0327927172, 0.00510841329, 0.00655854354, 0.0133313108, -0.00926105864, 0.00740307942, 0.00719297538, -0.00655854354, 0.0232844763, -0.0177640952, 0.00195685192, -0.000774501357, 0.00425151782, 0.0285576768, -0.0158937555, -0.00707762409, -0.0182419792, -0.00593235064, 0.040801391, 0.0272558555, -0.0101756295, -0.01307589, -0.000613318523, 0.00748547306, -0.00580464024, -0.00309800543, 0.00235646148, 0.00165405474, -0.0282281023, 0.00155312242, 0.0059735477, -0.00449869921, 0.000861529727, 0.00655030413, 0.00855247211, 0.0162810069, -0.00798395555, -0.0117658293, -0.00820229854, 0.0104722474, -0.00459757168]
22 Sep, 2019
5 Most Difficult Programming Languages of the World 22 Sep, 2019 You might have written your first code in programming languages such as C/C++ or Java and might have faced difficulty learning these languages. Well, these languages are at least readable or understandable but what if we say to write a program printing ‘Hello World!‘ using spaces, tabs, and linefeeds only. We are not joking and actually there are some programming languages in the world where you need to write your code using some commands or syntax which is neither readable nor understandable. They are also considered as the most difficult programming languages in the world and maybe you will get to know about these languages for the first time so let’s discuss these languages one by one. 1. Brainfuck As the name suggests, this language is really complicated and coding in this language is really difficult. It was created in 1993 by Urban Muller and the main purpose to create this language was to write minimal lines of code. This language operates in an array of memory cells and there are only 8 commands defined in this language to write any program. Example: Hello World! Program ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>. Check the output of this code from here. 2. Cow We know that the name of this language sounds a funny name for you but it is actually a programming language and it was created by Sean Heber in 2003. This language consists of 12 instructions and the funniest thing about this language is the keyword ‘moo’ (sound of a cow) or it’s variations used in this language. Writing any other character or word considered as a comment in this language. It was based on the language used in Turing Machine. Example: Hello World! Program MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MoO MoO MoO MoO MoO MoO MoO Moo Moo MoO MoO MoO Moo OOO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOo MOoMOo MOo MOo MOo MOo Moo MOo MOo MOo MOo MOo MOo MOo MOo Moo MoO MoO MoO Moo MOo MOo MOo MOo MOo MOo Moo MOo MOo MOo MOo MOo MOo MOo MOo MooOOO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO MoO Moo Check the output of this code from here. 3. Intercal This language was created in 1972 by Don Woods and James M. Lyon and they both were students at Princeton University. This language doesn’t have any pronounceable acronym. Creators of this programming language included keywords like Read out, Ignore, Please, Forget, and likewise to make this language user-friendly. The funny thing about this language is that it expects 4 Please keyword in code to check programmers politeness. If it will be less the code won’t execute because it will consider the programmer is insufficiently polite. If it will be 5 or more than 5 then also it won’t execute because it will consider the programmer is overly polite. Example: Hello World! Program DO ,1 <- #13 PLEASE DO ,1 SUB #1 <- #238 DO ,1 SUB #2 <- #108 DO ,1 SUB #3 <- #112 DO ,1 SUB #4 <- #0 DO ,1 SUB #5 <- #64 DO ,1 SUB #6 <- #194 DO ,1 SUB #7 <- #48 PLEASE DO ,1 SUB #8 <- #22 DO ,1 SUB #9 <- #248 DO ,1 SUB #10 <- #168 DO ,1 SUB #11 <- #24 DO ,1 SUB #12 <- #16 DO ,1 SUB #13 <- #162 PLEASE READ OUT ,1 PLEASE GIVE UP Check the output of this code from here. 4. Malbolge This language was introduced by Ben Olmstead in 1998 and the amazing fact is that it took almost two years to write the first program so you can imagine the complexity of this language. Coding in this language looks like garbage or malfunction and it is said to be that Ben Olmstead has never written a single program in this language. Malbolge is a public domain esoteric programming language and considered as one of the hardest programming languages in the world. Example: Hello World! Program ('&%:9]!~}|z2Vxwv-,POqponl$Hjihf|B@@>,=<M:9&7Y#VV2TSn.Oe*c;(I&%$#"mCBA?zxxv*Pb8`qo42mZF.{Iy*@dD'<;_?!\}}|z2VxSSQ Check the output of this code from here. 5. Whitespace This language was introduced by Edwin Brady and Chris Morris on 1st April 2003 (April fools day). The day it was introduced people thought it was a joke but it wasn’t actually. You are allowed to use only spaces, tabs, and linefeeds to write your code in this language. Any other character will be ignored by the interpreter. Example: Hello World! Program. Don’t confuse as the source code only contains the whitespace and tabs. Check the output of this code from here. Other Difficult Programming Languages: Chef Shakespeare ArnoldC Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World
https://www.geeksforgeeks.org/5-most-difficult-programming-languages-of-the-world?ref=asr10
Languages
5 Most Difficult Programming Languages of the World
5 Most Difficult Programming Languages of the World, Languages, Introduction to Programming Languages
GeeksforGeeks
[-0.0255836751, -0.0294343326, -0.0176303592, 0.0218741447, 0.0399379544, 0.0194952041, 0.018356137, 0.022196712, 0.0017237229, 0.0529414751, 0.00184972596, -0.0126507143, 0.00793819781, -0.00685457047, -0.0296157766, 0.000600719941, -0.0082557248, -0.000166166632, -0.0138603449, -0.0352808759, 0.00813980214, -0.00522157, -0.0284867883, 0.00445043063, 0.0298173819, 0.0216120575, 0.000967074069, 0.0114310039, -0.0342728533, -0.0143038752, 0.0272166766, 0.0130035235, -0.00461171474, -0.013527696, 0.0273376405, -0.0102415346, 0.0107354671, -0.0116830105, -0.0294343326, 0.00917806849, 0.0407040529, 0.016944902, 0.00452099228, 0.00738882367, 0.00589694642, 0.00269394694, -0.0301601104, -0.0159267951, 0.00636063796, -0.0157554317, 0.00229325704, 0.0232248977, 0.0464094728, 0.0196665693, 0.0345349386, 0.0468933247, 0.00915286783, -0.0189105496, 0.0113503626, 0.00064041093, -0.0118846158, -0.0379823856, 0.00264606578, -0.0083867684, 0.0425789803, -0.00394641794, -0.0136083383, 0.0143441968, -0.0115015656, -0.00884038, -0.0143845174, 0.00309463684, 0.00397413876, -0.00251628249, 0.00501744496, 0.012388628, 0.0446756706, 0.0121567827, -0.010947152, 0.00222143531, -0.0120358188, -0.0264102574, -0.000421480479, -0.0399581119, 0.0365913101, -0.00599774905, 0.00106220646, -0.0573364645, 0.00715193758, 0.0390710495, 0.00349280681, 0.0208257977, 0.026128009, -0.00821540412, -0.012358387, 0.0225394405, -0.00513588777, 0.00277206884, -0.028527109, 0.0820935592, 0.025765121, 0.0308254063, 0.000922342937, -0.0512479953, 4.05966348e-05, -0.029514974, -0.00939479377, 0.0155135058, 0.00834644772, 0.0651587397, -0.0141425915, 0.0151203759, -0.0160376783, 0.00125121116, -0.00305683608, -0.0106044235, -0.0122172637, -0.0343534946, 0.000797599845, 0.0249788612, -0.00851781201, 0.00314251822, -0.0328616165, 0.00860349368, -0.0511270314, 0.0151203759, -0.00221765507, -0.0130236838, -0.00996936765, 0.0216523781, -0.0211282056, -0.0443127826, -0.023547465, -0.0136889806, 0.000672226714, 0.0137393819, 0.00396657875, 0.0129430415, -0.0130640045, 0.00937967282, -0.0256844778, 0.0078978762, 0.00669328636, 0.00511824712, -0.0284263063, 0.0133664124, 0.000553468766, 0.0585864149, -0.0112798, 0.0145054804, -0.0250393432, 0.0114209242, 0.0098181637, 0.0235071443, -0.00416566338, -0.00723761972, 0.019888334, 0.0247570947, -0.0278013311, -0.0328212976, -0.0384259149, -0.042740263, -0.00218363432, -0.0202310625, -0.00330128218, -0.0128422389, 0.038688, 0.0116326092, -0.0495948344, 0.0427805819, -0.0040321, 0.00505020563, 0.00164308085, 0.014727246, -0.027297318, 0.0382041484, 0.0312689357, 0.0142030735, 0.0278416518, 0.00402958039, -0.0305633191, 0.0141425915, 0.0275392439, -0.0179831665, 0.0357445702, 0.0156647097, 0.034797024, -0.00330632227, 0.0110277943, -0.0214507729, 0.0203217845, -0.0338293202, -0.00790291652, 0.023305539, 0.012388628, 0.0175497159, -0.0473771766, 0.0709649622, 0.01487845, 0.0454417691, -0.0083867684, -0.0334664322, -0.00817508344, 0.030865727, 0.0234063417, -0.00256164372, -0.0156344678, 0.0249788612, 0.0524979457, 0.0171565861, -0.043466039, 0.025704639, -0.00728298118, -0.0230232924, -0.00366921118, -0.0133059304, -0.0394742601, -0.012176943, -0.0133361714, -0.0338696428, 0.0115822079, -0.0164106488, 0.0124087883, 0.00551893702, -0.0498770811, -0.045562733, -0.0196665693, 0.0159368757, 0.00909238588, -0.0109975534, -0.0191625562, 0.0114511643, -0.0145558817, -0.0168945, -0.00202109036, 0.030744765, 0.0168340188, -0.00922847, -0.00334664318, 0.0493932292, 0.0162493642, 0.019646408, -0.0489496961, -0.0320753567, -0.0218943041, -0.00814988278, 0.00126003136, -0.0225797612, -0.00977784302, 0.00571550196, -0.00130665244, -0.0403814837, 0.028103739, 0.0558445901, -0.0661264434, 0.0449982397, 0.0391113721, 0.00975768268, 0.027115874, 0.0116729299, -0.0081650028, 0.00944519509, -0.00543325488, 0.0159267951, -0.0237490702, 0.00699065393, 0.028285183, -0.019888334, -0.00588686625, -0.0243740454, 0.0579816028, -0.0297367387, 0.00420598453, 0.0263296142, 0.0246562939, 0.0107253864, -0.0316116661, -0.00830108672, 0.0166928954, 0.016319925, 0.0169650614, 0.00297871395, 0.0466917194, 0.0131244864, 0.0284061469, -0.0150800552, -0.0101205716, -0.0127918376, -0.041127421, -0.0205233898, -0.013588178, 0.0381235071, -0.00323324045, 0.0374783725, 0.0117535722, 0.0314705409, 0.00476543838, 0.0132051287, 0.038063027, -0.0117334118, -0.0232652184, -0.0381436683, -0.00401949976, -0.0261884909, -0.0173682719, 0.000403210026, 0.0314705409, -0.029454492, 0.00266874628, -0.0323374458, 0.0305834804, -0.0409258157, 0.00757026812, -0.0108362697, -0.000384939573, 0.0165920928, 0.0356639251, 0.0155336661, -0.0660861209, -0.00823556446, -0.00536269322, 0.000526063086, -0.0234668236, 0.000488892139, 0.0516915247, 0.0136789, -0.0104028182, -0.00865893532, -0.00546853617, -0.0353212, -0.00868413597, -0.0289908014, -0.013376493, 0.000232160775, 0.0263699349, -0.0674570352, -0.0179025251, 0.026994912, 0.0104733808, -0.00802387949, -0.00841700938, -0.00244950084, 0.00328112161, 0.00226175622, 0.0190113522, -0.0468126833, -0.00705113541, 0.0120963007, 0.0256844778, 0.0214306135, 0.00190390728, 0.0361074582, 0.0421757698, 0.00567014096, 0.0171969067, -0.0341518894, -0.0308455676, -0.0143139558, -0.00815996248, 0.0547156, 0.0136990603, -0.0122172637, 0.00971232168, -0.0342728533, -0.0104733808, -0.059271872, 0.0469336472, -0.0188702289, 0.0256239977, 0.0185275, -0.00358856912, 0.0131849675, -0.0215918962, -0.0174489133, -0.0336478762, -0.0126910359, 0.00986352563, -0.00292075262, -0.0362485796, -0.00776179275, -0.00216347375, 0.0410266183, 0.0070662559, 0.0419741645, 0.00342728524, -0.0253014285, -0.031047171, -0.0315915048, 0.0157352705, -0.00982824434, -0.0280432571, 0.04907066, -0.0414499901, 0.0183662158, -0.0045713936, 0.0244748481, -0.00192028773, -0.00993408728, -0.0212491676, -0.0365711488, 0.0101760132, 0.0134268934, 0.0398774706, 0.00830612611, -0.00352808763, -0.0327406526, -0.028103739, -0.0269747507, 0.0150296539, -0.0229023285, -0.0202512238, -0.0235273056, -0.0424176939, 0.0367929153, 0.00512076728, -0.00184720592, 0.0102969762, 0.0443531, -0.0285069495, 0.0316116661, 0.0390105695, 0.0124995103, -0.00844725, 3.0417943e-05, 0.000672856753, 0.0107354671, 0.0102062542, 0.0294343326, -0.0167936981, 0.0003134328, -0.0204528291, 0.0101558529, 0.00481079938, 0.00922847, -0.0106346644, -0.0370348394, 0.000498972426, 0.051772166, -0.000878871826, 0.00280482974, 0.0128926402, -0.00616911333, 0.00273174793, -0.00640599942, -0.0500383638, 0.00906718522, -0.0391113721, 0.0119047761, 0.0215112548, -0.0315713435, -0.00190390728, 0.00169852225, -0.0127615975, 0.0348171853, 0.0584654547, -0.0316923074, -0.0193137601, 0.020604033, -0.0111487573, -0.0355832838, 0.00985848531, 0.00207905169, 0.0429418683, -0.018204933, 0.0140014682, 0.00589190656, -0.0150699746, -0.0210878849, -0.0249587, -0.0154933454, -0.0192835201, -0.0254223924, -0.0040321, 0.00466211606, 0.0189307109, 0.0207653157, 0.0212894902, 0.0041253427, -0.00386073603, -0.0445547067, 0.0261683315, -0.00830108672, 0.00899662357, -0.0246361326, 0.038304951, -0.0159167163, 0.0287488755, 0.00918814819, 0.0466110781, 0.0342930108, -0.0131648071, 0.0208056364, 0.0115015656, -0.0170053821, 0.00300391461, -0.013467215, -0.0454014502, -0.07411, 0.00309715699, 0.0692714825, -0.0161989629, 0.0129430415, -0.0333656296, 0.0536672547, -0.028285183, 0.00872445665, -0.0481029563, 0.0571751818, -0.00997944828, -0.0106850658, 0.0262288116, -0.000957623823, 0.004304267, 0.0186787043, 0.000635055767, 0.0217128601, -0.0319947153, 0.0516915247, 0.00714689773, -0.0102213742, -0.0105842631, 0.00305935601, 0.0149893323, 0.00291571254, 0.0099844886, -0.00916798785, 0.0466917194, -0.0119350171, 0.0103826579, -0.0341720507, -0.023486983, 0.0129833631, 0.0140921902, -0.0221160706, -0.0158763956, -0.0179226864, -0.000418960408, 0.0316923074, -0.00621447433, 0.0164610501, -0.0213701315, 0.00680920947, -0.0412887074, -0.00280230958, -0.0377606191, -0.0148683693, -0.0008039, -0.0149590923, 0.0130438441, 0.0164005682, -0.00890590157, 0.0367929153, -0.00307699642, 0.0240313169, -0.010886671, -0.00885046, -0.0116326092, -0.0232047364, -0.025886083, -0.0202512238, 0.0064009591, -0.0120862201, 0.0401194, 0.0411475822, 0.0083414074, 0.00103826576, -0.0111689176, 0.0120761404, 0.000645766035, -0.019616168, 0.0190516729, -0.00372213265, 0.017489234, -0.00398421893, 0.0229224898, 0.0334261097, 0.0137393819, -0.00621447433, 0.0161788017, -0.0164106488, -0.0154631045, 0.00181444513, 0.00142383541, -0.0048813615, 0.00126948161, 0.00127326162, -0.00498216366, -0.00124239083, -0.0104431398, -0.00720233889, -0.000442586, 0.0311681349, -0.0306439623, 0.00388089637, 0.0186887849, 0.00999960862, 0.0125196716, -0.023486983, -0.00268386677, -0.00685961032, -0.0234466624, 0.0231442563, 0.00600782922, -0.0230636131, -0.00957119837, 0.00487380102, 0.00821540412, 0.0119954981, 0.000768619124, -0.00411022222, 0.0115822079, 0.00578102376, 0.0090067042, 0.00793819781, 0.00477299886, -0.0297770612, -0.00731322169, 0.0103524178, -0.0187492669, -0.00240287976, -0.00349784689, 0.0149288513, -0.0372767672, -0.0188198276, 0.0167332161, 0.0410064608, -0.008699256, -0.0274384413, -0.000226648132, -0.0337486789, -0.00946031511, -0.000819020381, -0.0234466624, -0.0139409862, -0.0248377379, 0.0169852227, 0.00302155502, 0.00085745129, 0.00410266221, -0.0187492669, -0.01205598, 0.0141123505, -0.00302155502, 0.0805210397, -0.0112495599, 0.00899662357, -0.0133664124, 0.0232450571, 0.0425789803, 0.00568526145, 0.00456383359, -0.0105641028, 0.0334664322, 0.0388291255, -0.0115318066, -0.00125499116, -0.00291067245, -0.0486271307, -0.0136587396, 0.0191323161, -0.0161183216, -0.000527953147, 0.00579614425, 0.00714185741, -0.00940487348, -0.0041051819, -0.00950567611, 0.00887062, -0.00275946851, 0.0138704246, 0.0253820717, -0.033809159, -0.0248377379, 0.0148280486, -0.0213701315, -0.0183460563, -0.0130236838, 0.0295956153, -0.00943007413, 0.00752994698, -0.0287891962, -0.000973374175, -0.00754506746, -0.00593222771, -0.0260272063, -0.0300391465, -0.0115620475, -0.011219319, -0.0378009416, 0.0135075357, -0.00932423212, 0.0205637105, 0.0190819148, 0.0239909962, 0.0113503626, -0.000240823487, -0.0143744377, -0.0115519669, -0.00146415643, -0.00388089637, 0.00430174684, -0.00160906, -0.0195153654, -0.000853041187, 0.00616407348, 0.0454820916, 0.00455879327, -0.00704105524, -0.0230031312, -0.00380277447, 0.0414096713, 0.0322568, -0.00374229299, -0.0200899392, -0.0129833631, -0.0243337248, 0.0126103936, 0.0295351334, -0.0149288513, 0.0198076926, -0.00945527479, -0.0266521834, 0.00451091211, -0.00535261305, 0.00566510065, -0.0290714428, 0.0067134467, 0.0272569973, -0.0105943438, -0.0118039735, 0.0124894306, -0.0102868956, 0.00516612828, 0.00132303289, -0.0116023682, -0.0210475624, 0.0389299281, 0.00460667443, -0.0192835201, 0.029696418, 0.02933353, 0.0108765904, 0.00524677057, -0.00314755831, 0.0104532195, -0.00269898702, -0.00199714955, 0.0174993146, -0.0156848691, 0.0421757698, -0.00526693091, -0.00040825014, 0.0230636131, -0.0120862201, 0.0138704246, 0.00969216134, 0.0117938928, -0.0157251917, 0.026128009, 0.0129732825, 0.00178042427, 0.0466917194, 0.0171364266, 0.0079432372, 0.0297569, -0.0363695435, -0.0128119988, -0.0035154873, 0.0104834605, -0.0160175189, 0.0104128988, -0.00205007102, 0.0502802916, 0.0189609509, -0.0165719315, -0.0293738507, -0.0252006259, -0.070844, 0.0134168137, -0.0206141118, -0.020966921, 0.0352002345, -0.0150498142, 0.0287690349, -0.0059120669, 0.00619935431, 0.00610863185, 0.0142534748, 0.00586670591, -0.00406234106, 0.0111386767, 0.0320148766, -0.000343673542, 0.0169045795, 0.0023965796, -0.0381235071, -0.0103524178, 0.00938975345, -0.0262288116, -0.0237490702, 0.0280634183, 0.0242329221, -0.0175900366, 0.00936959311, 0.00141627516, -0.0132857701, -0.000478496891, -0.033083383, -0.00846741069, 0.0121063814, 0.00487884134, -0.00793819781, -0.00304171559, 0.0373977311, 0.00263598561, 0.044030536, 0.0443127826, -0.0371759646, 0.00435214816, 0.0304423571, 0.015896555, -0.0112999612, 0.01730779, -0.0150498142, -0.00632535713, 0.0587477, 0.00851277169, 0.0100802509, 0.00734346267, 0.0201000199, -0.00761562912, -0.0201907419, -0.0195657667, 0.0339704454, -0.038063027, 0.0471352525, 0.0230837744, -0.0113302013, 0.0133361714, 0.0148986103, -0.00246966141, -0.00131925277, 0.0130035235, -0.0160175189, 0.00348776672, 0.0157655124, -0.0204830691, 0.00970728137, 0.00659248373, 0.00173506315, 0.0307850856, -0.0078877965, 0.00185098604, 0.0411677435, -0.0171767473, -0.00417574402, 0.00015632264, -0.0131950481, 0.0130236838, 0.0074442653, 0.00326600112, -0.0120761404, 0.00889078062, -0.00209417217, 0.00839684904, -0.0155235855, 0.000716957846, -0.0264102574, -0.00185350608, -0.0448772758, -0.0100248093, -1.63213426e-05, 0.0177714825, 0.00795331784, -0.00300895469, -0.00774667272, -0.0409863, -0.00391617743, 0.0393734574, 0.0450385585, 0.0111084366, 0.0041253427, -0.0356840864, 0.00427654618, 0.00973752234, 0.00493932283, 0.013467215, -0.0181948524, -0.00289303204, 0.00313243782, 0.011310041, 0.0210878849, -0.0582235269, -0.0100298496, 0.0301399492, 0.00735858316, -0.0230636131, 0.00819020346, -0.0288899988, 0.0284867883, 0.00608343119, -0.0134470547, 0.00355328829, -0.0113302013, -0.00131673273, -0.019525446, 0.0119249364, 0.00620439416, 0.012358387, 0.000221293, -0.0132656097, 0.0069553731, -0.0155336661, -0.0470142886, 0.0255635157, -0.0172977094, -0.0533446856, 0.00183082547, 0.0232652184, 0.0193742421, -0.00636063796, -0.00426142616, -0.0215112548, 0.028285183, -0.0249183793, 0.01247935, -0.044030536, -0.00579614425, -0.0191423967, -0.0268941093, -0.00575078279, 0.0276803691, 0.00742410449, 0.00571046211, -0.00385065563, -0.00803396, 0.00399177941, 0.018356137, -0.0329422578, -0.0252006259, 0.00435214816, 0.00839180872, -0.00833132677, -0.00731322169, -0.0163703263, -0.00260574487, -0.009672, -0.00201353012, 0.0146163637, 0.0095409574, -0.00665296521, -0.00622959482, 0.0179630071, -0.00968208071, 0.00567014096, -0.0098181637, -0.0353413597, 0.00282751024, -0.0348373465, 0.0344744585, -0.0268941093, 0.00658240356, 0.00643624, 0.00466211606, -0.00431686733, 0.00170356233, -0.0296157766, -0.00819020346, 0.00843717, 0.0140317092, 0.00756018795, -0.00233735819, 0.0208661184, 0.0189609509, -0.0137595423, -0.0151808579, -0.0211282056, -0.0420951247, 0.017217068, 0.00215717359, -0.0116930911, -0.034071248, -0.00735354284, 0.012328147, 0.021954786, 0.0011132377, 0.0429015458, 0.0116830105, -0.0241119601, 0.0390307307, 0.0223579966, -0.000206330136, 0.000351863739, -0.0111386767, -0.0276602078, 0.0242127627, -0.0125398319, 0.0332849883, -0.00341720507, -0.0198076926, -0.00623967499, -0.0197774526, -0.00398421893, 0.0126204742, 0.0220354274, 0.0463288315, 0.00142383541, 0.0285069495, -0.0162997656, -0.00149565714, -0.0112394793, -0.00783235487, -0.0170053821, -0.0722552389, 0.0608847141, -0.0319947153, -0.0286883935, -0.000655846321, -0.0146264434, 0.0387283228, -0.0169751421, -0.0143643571, -0.00767611107, -0.0485061668, 0.0158864744, 0.0345551, -0.0171666667, 0.002774589, 0.0258457623, 0.01730779, 0.00040888018, 0.00670840684, -0.009672, 0.00981312431, -0.0239305142, -0.0179831665, -0.000106708903, -0.037317086, 0.0122878253, 0.0073787435, 0.0190919954, -0.0170457046, 0.0100600906, 0.0143542765, 0.00599774905, -0.0266118608, -0.0251804665, 0.00847245101, -0.000564494054, 0.0154530238, 0.00687977113, 0.00395145826, 0.0192331187, -0.00740898401, -0.00211307243, 0.0186383836, 0.000117812931, 0.00527701108, 0.0303415544, 0.0186182223, -0.00145281607, -0.0187291056, 0.0162796043, -0.0171465054, 0.0242127627, 0.0139409862, 0.00221765507, 0.00728802104, 0.00449831178, -0.0104834605, 0.00388845662, 0.01247935, 0.0113806026, -0.00976776239, -0.00383805553, 0.0229224898, -0.0106145041, 0.0043723085, 0.013557937, -0.0107354671, -0.029514974, -0.0161284, 0.029454492, 0.0246764533, -0.0125196716, -0.0356437676, 0.00739386398, 0.0130841658, 0.00792811718, 0.000325718109, -0.0170961041, 0.00662776455, 0.00417574402, 0.0179630071, -0.0027519085, 0.0084321294, 0.00781219406, 0.0747954622, -0.0155840674, 0.00211181259, -0.0180033278, 0.00404470041, 0.00383805553, 0.00326600112, -0.0119450968, 0.0214306135, -0.00922847, 0.030744765, 0.00120269984, -0.00099290465, 0.0101961736, -0.0215112548, 0.0153522221, 0.00295099337, -0.000568274118, 0.0188601483, -0.000359108933, -0.00742410449, -0.014636524, 0.0199891366, 0.00156999903, 0.00533245271, -0.0125902332, -0.0194448028, -0.0102969762, -0.0451192, -0.00713681756, 0.0372364447, -0.0116729299, 0.0170961041, 0.00287791155, 0.00546853617, 0.045804657, 0.00780715421, 0.0360066555, -0.0140317092, -0.0304221958, 0.00713681756, -0.0171061847, -0.0256239977, 0.0204528291, 0.00727794087, 0.0192835201, 0.011189078, 0.00563486, 0.00616407348, -0.00961655937, -0.00733842235, -0.0103826579, 0.0153119005, -0.0350389518, -0.0015762992, -0.00639591878, 0.0112999612, 0.0065118419, -0.00678400882, -0.00541309454, 0.0179529265, -0.00856821332, 0.0179428458, -0.0180436485, -0.0109169111, 0.0163703263, -0.0118342144, -0.0185879823, -0.0123483073, 0.0275795665, -0.00692009227, 0.0186686236, 0.00941999443, -0.00013639839, 0.00921334885, -0.00952079706, -0.00926879048, -0.014636524, -0.0143139558, -0.0184972603, -0.00258810446, 0.0299988259, -0.0180940498, 0.0186484642, -0.000336428377, -0.0058011841, 3.99075543e-05, 0.00182704546, -0.0154026225, -0.0181948524, -0.00220631482, -0.0117938928, -0.00706121558, -0.00937463343, -0.00345752598, -0.00641103927, -0.0046167546, 0.00579110393, 0.0105943438, -0.00354320812, -0.0239103548, -0.00171238254, 0.00794827752, -0.0292327274, 0.00659248373, 0.00245832116, 0.0119047761, -0.0103725782, -0.0114108436, 0.015866315, 0.0373574086, 0.019797612, 0.00202487037, 0.0107657081, 0.00709145609, -0.00523165, 0.0286077503, 0.0026082648, 0.00770635158, 0.00391617743, -0.00385821587, 0.00135579368, 0.0232652184, -0.0230434537, -0.0219144654, -0.0167533774, 0.010977393, 0.0113705229, -0.00798355881, 0.00610863185, -0.0107253864, 0.0144853201, 0.00311479741, 0.0111991586, -0.0363292247, 0.0190214328, 0.0120761404, 0.0279626157, -0.00672352733, 0.0051711686, -0.00379017415, 0.0211886875, -0.0233257, 0.0190012716, -0.0064312, 0.00659248373, -0.0249385405, -0.0112697203, 0.0433450788, 0.0051258076, 0.00904198457, -0.0200798586, -0.00100991514, -0.00339452433, 0.0129228812, -0.0061791935, 0.00486372085, -0.0100147286, -0.00924863, -0.0128321592, -0.00544333551, 0.0169045795, 0.0177916419, -0.00859341398, -0.0206241924, -0.000564179034, 0.00559957931, 0.043103151, -0.000344933564, 0.0157655124, -0.0250393432, 0.0114511643, 0.0106649054, 0.00670336653, 0.00509304646, 0.00851277169, 0.0336882, 0.00652696239, 0.0376799777, -0.0247570947, 0.0201705806, -0.0226200819, -0.00927887112, -0.00456383359, -0.00129153207, -0.0165820122, -0.0106346644, 0.00644128025, -0.0219749454, 0.0136083383, 0.00168088183, 0.0133160111, 0.0102516152, 0.0277610105, 0.00248226174, 0.012388628, 0.00847749, 0.00866397563, -0.00549877668, -5.2370051e-05, -0.0202814639, -0.00484104035, -0.0208056364, -0.00379017415, -0.0196060874, -0.00310975732, -0.0121567827, 0.0112294, -0.00158637948, -0.0237692315, -0.00819020346, -0.0145962033, 0.000369189191, -0.00587174576, -0.00739890384, -0.0132756904, 0.00765595026, -0.00605319068, -0.00215843366, 0.0208661184, -0.00344996573, -0.00507288612, -0.00498720398, 0.0163703263, -0.0191927981, -0.0524173044, 0.0265312195, -0.00245958124, 0.0153018208, -0.00233483803, -0.0205334704, -0.00774667272, 0.0174993146, 0.0077869934, 0.0260070469, -0.01247935, 0.0088756606, -0.0142433941, -0.00446807127, 0.0087849386, 0.0171565861, 0.0420548059, 0.00393885793, -0.0128624, 0.025765121, -0.000417070376, 0.0175698772, 0.0364905074, -0.038244471, 0.00143391569, -0.00870933663, -0.0192028768, 0.0206241924, -0.0274787638, 0.0100550503, -0.00921838917, -0.000624345499, 0.00291319238, -0.0101256119, 0.00397413876, 0.0258457623, -0.00581630459, -0.0254828744, 0.0136990603, -0.00698057376, 0.0132857701, -0.0120963007, -0.0128321592, -0.018719025, 0.00367677142, 0.00936959311, 0.0331438631, 0.0121063814, -0.00882525928, -0.0132353688, -0.0236079469, 0.02453533, 0.00330128218, 0.00259818463, -0.00601286953, -0.00183964579, 0.030684283, 0.0153320609, -8.24533e-05, 0.000812090177, -0.0271360353, 0.00659752404, -0.0056399, 0.00347768655, -0.0220757481, 0.0145861227, -0.0161788017, -0.00234365836, 0.0105338618, 0.00156495895, 0.0336680375, 0.0040598209, -0.00175018352, 0.0223579966, 0.0238700341, 0.0041278624, -0.00491412217, -0.0111386767, -0.00255156355, -0.0242127627, -0.0159267951, 0.0130337644, -0.0149086909, -0.0146869253, -0.014606283, -0.00200849, -0.0335873961, 0.00270150718, -0.0338494815, -0.0238901936, -0.0130942455, -0.00822548475, -0.0298980232, -0.0106850658, 0.00535261305, 0.0213096496, -0.01730779, -0.0158259943, -0.0173783526, -0.0314705409, 0.0162191223, -0.0139208259, 0.00662776455, -0.020785477, 0.00660760421, -0.0115519669, 0.0112999612, 0.00671848701, -0.0035154873, -0.00422866503, -0.0154429441, 0.0174388327, -0.015059894, 0.0127716772, -0.00990888663, -0.0639087856, 0.0120761404, -0.0266521834, 0.0250393432, 0.0151808579, -0.01970689, -0.00874461699, 0.035603445, 0.0112495599, 0.0121870227, -0.00795331784, -0.0254022311, 0.00780715421, 0.00561973965, 0.00388089637, 0.0424983352, 0.0209467616, 0.0234466624, -0.00819020346, -0.0165416915, -0.0243337248, 0.00141753524, -0.00114221836, 0.00211559259, -0.0117031708, -0.0185476616, -0.00870429631, -0.00251250248, -0.0060229497, -0.00334664318, -0.00953591708, -0.0126607949, 0.00922847, 0.0100953709, -0.0149187706, 0.0164509695, -0.000960773905, -0.00783235487, 0.038063027, 0.00746946549, -0.0287085529, 0.000720107928, 0.00231341762, 0.013527696, -0.0279626157, 0.0167432968, 0.00413290272, 0.0165719315, 0.00147171656, 0.0105540222, 0.0108665098, 0.00571550196, 0.00834644772, 0.0270957127, 0.00379521446, -0.0411072634, -0.0250998233, 0.00188878691, -0.0108261891, 0.0102616949, 0.00102125539, 0.00378009398, 0.000657736324, 0.0154026225, 0.00529717188, 0.00632535713, 0.00285019097, -0.0145861227, 0.00211055251, -0.0251401458, 0.0132857701, -0.0126204742, -0.0160376783, -0.0106044235, 0.00142257533, 0.00329372194, -0.0016682815, 0.0160578396, 0.0213902909, 0.0316923074, 0.00265866611, 0.00861357432, -0.0133059304, 0.00722753955, -0.0260675289, 0.0199891366, 0.0077113919, 0.00933935214, -0.00267882668, -0.0247570947, -0.00543325488, 0.00358856912, 0.00207023136, -0.0123785473, -0.0118644554, 0.0145054804, 0.0221160706, -0.00108929712, 0.0112495599, 0.0114511643, -0.0103171365, 0.0140821105, -0.00699569378, -0.00694529247, 0.0242934041, -0.0157352705, -0.00479063904, -0.0141325118, -0.0228418484, 0.0060683107, 0.0243740454, -0.00830612611, 0.00283759064, -0.0100298496, -0.0116830105, -0.0050602858, -0.0111084366, -0.00708641624, 0.00372465258, 0.00337940408, -0.0164610501, -0.0146163637, -0.00984840468, -0.00198832946, 0.0144651597, 0.00657232339, 0.0126204742, -0.00461927475, -0.00649168156, 0.0226200819, 0.0265312195, -0.00783739518, -0.00124365091, -0.00991896633, 0.0337083563, -0.0149994129, 0.00528709125, -0.00144399586, 0.0277811699, 0.00484104035, -0.010947152, 0.00879501831, -0.00280986982, 0.00513084745, 0.00656224322, 0.0314302221, 0.00758034829, 0.0129732825, 0.00593726756, 0.0189307109, 0.0156546291, -0.00492924266, -0.0219346248, 0.00200974988, 0.00373977306, 0.0263497755, 0.0139510669, -0.002452021, -0.00426646601, 0.00447563129, 0.00473771757, -0.0219749454, 0.00677392818, 0.0107354671, 0.0125599923, -0.00243312051, -0.0139611475, 0.0139913876, 0.0195153654, 0.00985344499, 0.028345665, -0.0239708368, -0.0195456054, 0.00151707768, -0.0102213742, -0.00727290101, -0.00911758654, 0.00208787201, 0.0183258951, -0.0123180663, 0.0314907022, 0.0116225285, 0.0177009199, -0.0335269123, -0.0159973577, 0.0160275977, 0.00828596577, 0.0255635157, -0.00876981765, 0.00946535543, -0.00938471314, -0.0101659326, -0.00613887282, -0.0161284, -0.0204729885, -0.0046822764, 0.00790291652, -0.000472196727, 0.0126507143, -0.010977393, 0.00664288504, 0.02933353, -0.0184166171, -0.00820028409, -0.00293839304, 0.000363834057, -0.000364149048, -0.0141325118, 0.00509304646, -0.00756522827, 0.0193540808, -0.0111084366, 0.00314755831, -0.00673864735, -0.00364905084, 0.0105439425, -0.00883534, 0.0015851194, 0.00754506746, 0.00479063904, 0.00159771973, 0.00405226089, -4.50854968e-05, 0.00334160309, -0.0141325118, -0.0102919359, 0.009672, 0.00153471821, -0.0137998629, -0.0140216285, -0.0145256408, 0.00770635158, 0.0177815612, 0.000119939235, 0.0073333825, 0.028466627, -0.00950567611, 0.00671848701, -0.0195456054, 0.0256844778, -0.00105149613, -0.0117334118, -0.0307246037, -0.011098356, 0.00304927584, 0.00553405751, 0.0260070469, 0.013648659, -0.0120156584, 0.00712673739, 0.00962159876, 0.0224991199, -0.00269142701, -0.00985848531, -0.000838550855, 0.00212315284, -0.034797024, -0.00638079876, -0.0151707772, 0.0142232338, 0.0123382267, -0.0140115479, -0.0120862201, -0.000919822895, 0.00239405944, -0.0281440597, -0.0129531221, 0.00531229191, -0.0142837148, -0.0185174197, -0.00123798079, 0.000320677966, 0.00192028773, -0.000874461723, -0.0240514781, -0.00115544873, 0.0278214924, -0.0116326092, -0.0125499116, 0.000432505767, -0.00395397842, -0.0174287539, -0.0134168137, 0.00111071765, 0.0143643571, -0.0108261891, -0.0194952041, -0.0109572327, -0.0206645131, 0.00576590328, 0.0161183216, 0.00358352903, -0.00658240356, -0.00443531, -0.0207048357, -0.00161788019, -0.0208257977, -0.0275997259, -0.00735858316, -0.0171061847, -0.0144248391, -0.000190737235, -0.00426142616, -0.0201605018, -0.0110479547, 0.00267126644, 0.00707633607, -0.0205838718, 0.00802892, 0.00853293203, 0.0206443537, 0.0176606, 0.00944519509, -0.00911758654, 0.0276803691, -0.0243337248, -0.001848466, 0.00983832497, -0.00047723687, 0.0208862796, 0.00881013926, -0.00224411581, -0.0167432968, 0.00214709342, 0.0187492669, -0.00382797513, 0.0386275202, 0.0066227247, 0.00362385018, 0.00732834218, 0.0308455676, -0.0172069874, -0.0261078496, -0.0129632019, -0.0141829122, 0.0174186733, 0.0137797026, -0.00399177941, 0.000456446345, 0.00993912667, -0.014606283, 0.0153219812, 0.00279222941, -0.0345147774, -0.00849765167, -0.0222773533, 0.00662776455, -0.0192532782, 0.0187795069, -0.0248377379, -0.0136284987, -0.00219245441, 0.016319925, 0.00231593754, 0.0111487573, -0.0311076529, -0.0350792706, 0.00099353469, 0.0112697203, 0.00508800661, 0.0393533, 0.0166626535, -0.0114713255, -0.00501996465, 0.00211433251, 0.00300643477, -0.00852285232, 0.00874965731, 0.0207451563, -0.0101356916, -0.0189911928, 0.0176908392, 0.00177286402, -0.0189710315, 0.00181444513, -0.000718847848, 0.0185174197, 0.0187996682, 0.0187492669, 0.0144147584, 0.013769622, 0.0184972603, 0.00386325596, -0.00952583645, -0.00157251908, 0.00066781661, -0.00962663908, -0.00977784302, -0.00616911333, -0.00802892, -0.002774589, 0.024353886, -0.00691505196, -0.00371961249, -1.14091899e-05, 0.00621951465, 0.0118241338, -0.00289807213, 0.00520644942, -0.00998952799, 0.0172069874, 0.0252409484, -0.0199084952, 3.23276799e-05, -0.0108161094, -0.0182250924, 0.00585662574, 0.010947152, -0.0196363274, 0.0204629079, -0.00639087893, -0.0206645131, -0.0210072417, -0.0127918376, 0.022196712, 0.00560965948, -0.0153421415, 0.0149590923, 0.0077869934, -0.00152589788, 0.00658744387, 0.0177513212, -0.00698057376, 0.00273174793, 0.00785755552, -0.0202310625, -0.00808436144, 0.0329422578, -0.029514974, 0.00106283638, 0.0153824622, -0.0174993146, 0.0218943041, -0.0237692315, 0.00280735, 0.0292528868, -0.0122273443, -0.00376749365, 0.0266118608, 0.0204528291, 0.0139913876, -0.0332043469, -0.00655216305, 0.0145357214, 0.00849765167, -0.0104128988, -0.0121668624, 0.00721745938, 0.000967704051, -0.00532237254, 0.00311479741, 0.0208056364, 0.0155034252, -0.00477299886, 0.0327406526, -0.00427654618, -0.0151707772, 0.0214306135, -0.00560965948, 0.0132152084, 0.00510816695, -0.00887062, 0.0128220785, -0.0019631288, -0.00811460149, -0.00183082547, -0.00150069734, -0.00139107462, -0.0145357214, -0.0105338618, -0.0305431597, -0.00802387949, 0.018446859, 0.00967704, -0.00149943726, -0.000446996099, -0.00430174684, 0.0332446657, 0.0314705409, -0.00487128133, 0.0111991586, 0.0120358188, 0.0220757481, -0.0102163339, -0.0031299179, -0.0246562939, -0.00188878691, 0.00445547095, -0.00667312602, 0.00490152184, -0.0029081523, -0.0244345274, -0.0181948524, -0.0292125661, -0.0392524973, -0.0079885982, 0.0148280486, -0.00783235487, -0.00269898702, 0.00217733416, -0.0166727342, 0.00852789171, 0.0069352123, 0.00509808678, 0.0299181845, -0.00636063796, 0.00749466615, 0.0028300304, -0.0115015656, 0.0144248391, 0.00337436399, -2.53975068e-05, 0.00952583645, -0.00634551793, 0.00334412325, 0.00432190765, 0.000728928135, -0.0176101979, -0.0229829717, 0.0108060287, -0.00250242231, 0.00388593669, -0.0101508126, 0.000351863739, -0.0133664124, -0.0115822079, -0.00593222771, -0.0112798, -0.0201907419, 0.00620439416, -0.0270352326, -0.021148365, 0.014938931, 0.00530221174, 0.0191625562, 0.00901678391, -0.0156143084, 0.0074896263, -0.024716774, -0.00272418768, 0.0179529265, 0.0124591896, 0.00644128025, 0.000303510053, 0.00220883498, 0.00703097461, 0.036712274, 0.02453533, -0.00981312431, -0.0051711686, 0.00719729904, 0.019646408, 0.00497712381, 0.00719225872, 0.0204830691, 0.00907726586, -0.0125095909, 0.0217531808, -0.0140921902, 0.00835148804, -0.00916294754, 0.0184569396, 0.00995928794, -0.0148986103, -0.0147171663, 0.0215717368, 0.00905710552, -0.00273174793, 0.0130539248, 0.00756018795, 0.00713681756, 0.0210475624, 0.00688481098, 0.0183762964, -0.0150901349, -0.0016040199, -0.0129228812, 0.00697049312, 0.00935447216, -0.00118946959, 0.004904042, 0.0314302221, -0.0233458597, -0.020845959, 0.0166424941, 0.00743418466, 0.00308959675, 0.00637071859, 0.0216523781, 0.00975768268, -0.00442523, 0.0039716186, -0.00973248202, -0.0139409862, -0.0108665098, 0.0232652184, 0.0181343704, 0.00933431182, -0.00268134661, -0.0166324135, -0.0134470547, -0.0094955964, -0.0116729299, 0.0224789586, 0.00579614425, -0.0107858684, 0.00348020648, -0.00791299716, -0.00511572696, 0.0027191476, 0.0155437468, -0.00513840793, 0.0107052261, 0.00469739689, -0.0170457046, -0.00160653994, 0.0201101, 0.0174489133, 0.0101760132, 0.00436222833, 0.011158837, 0.00384561555, -0.0114108436, 0.00411274238, 0.0225192793, -0.00875469763, -0.0201504212, 0.00866901595, -0.00628503645, 0.013557937, -0.0168945, 0.000598199898, -0.00988872629, -0.0131849675, 0.0213902909, -0.0183460563, -0.0120660597, -0.014817968, 0.0175497159, -0.0137595423, -0.00517620891, 0.00766603043, -0.0230434537, -0.00889582094, 0.00670840684, -0.0246361326, 0.00466967607, -0.00320803979, -0.00363141019, -0.0125499116, 0.00516612828, 0.000659626385, 0.00984336436, 0.0210072417, -0.0218136627, 0.00222017523, 0.018537581, -0.00825068541, 0.0106447451, -0.0149590923, 0.0183762964, -0.00824564509, 0.00294847321, 0.00468731672, 0.00285523105, -0.00776683306, 0.00405730074, 0.0233861823, -0.0195052847, -0.0223378353, 0.00833132677, 0.00467975624, 0.0267126635, 0.00122349046, 0.0110177137, -0.0236885883, 0.0216322187, 0.00561973965, 0.0208661184, 0.00163426064, -0.000174829343, 0.00117497926, 0.00908734556, -0.0126607949, -0.00872949697, 0.0041480232, -0.0110177137, 0.0207249951, 0.0188198276, -0.00715193758, 0.00621447433, 0.00497208349, -0.0111185163, -0.0144853201, 0.00203621062, 0.0130136032, 0.0143643571, 0.0115318066, -0.0078978762, 0.0202109031, -0.0094502354, -0.00118694955, -0.0215918962, 0.000930533162, -0.00369441183, -0.00431686733, -0.0113302013, -0.0363292247, 0.00823052507, 0.0219346248, -0.00253770314, 0.0162997656, 0.00989880599, -0.0151002156, -0.00669328636, 0.0214104522, -0.0052820514, 0.0110781956, -0.0187593456, -0.0101054516, -0.0141526721, 0.0119350171, -0.000644821033, -0.00457643392, 0.0209266, -0.0132353688, -0.0141224312, 0.0147675667, -0.0436676443, 0.0190315135, -0.0177815612, -0.00168844196, -0.0203721859, -0.00708137592, -0.00185476616, 0.0215112548, 0.00654712273, -0.00469991704, 0.00903190486, 0.0179831665, 0.0108463494, -0.00159645965, -0.0029081523, -0.0110177137, -0.0159066357, -0.0135982577, 0.009717362, -0.00578102376, 0.00728298118, 0.00209543202, -0.0136688203, 0.000569849159, -0.0134571344, -0.00444287062, 0.0123684676, -0.00228065671, -0.00929903146, 0.00979800336, 0.0240111575, -0.0266723428, 0.00676888833, -0.00596750854, -0.00679912884, 0.00745434547, 0.00931415148, 0.00431686733, -0.0144449994, 0.000464636541, 0.0132353688, 0.0198076926, -0.017711, -0.00487380102, -0.0126305539, -0.00489144167, -0.0186988655, 0.00544837536, -0.00619935431, -0.0239103548, 0.00617415365, -0.00194800843, -0.00996936765, 0.00293587288, 0.0165114496, -0.00325844111, -0.000332648284, -0.0133361714, -0.0124692703, -0.00150069734, -0.00273930817, -0.00763074961, 0.0113906832, -0.00136713404, -0.0116729299, 0.00412282255, 0.0136083383, -0.0117334118, -0.0169146601, -0.0154933454, 0.0121668624, 0.011037874, 0.00331136235, -0.00107480667, 0.0161284, -0.0129329618, 0.0204830691, -0.0178420432, -0.0129329618, 0.00133437314, 0.00768115092, -0.0293133687, -0.00513084745, 0.00374733307, -0.00342728524, -0.0144651597, 0.00466463575, -0.00213197293, -0.0431837924, -0.0172372293, 0.0217128601, -0.0122777456, -0.0246159714, 0.00677392818, -0.00961151905, 0.00138981454, -0.0133361714, 0.015987277, 0.0285069495, 0.00493680267, -0.0158159137, -2.86066479e-05, 0.0206645131, 0.0128724799, 0.0139813079, 0.016047759, -0.0148582896, 0.00119261967, 0.00165064109, 0.00192280777, -0.0144752394, 0.0155739868, -0.00981312431, 0.00674872799, -0.0238700341, 0.00215717359, 0.0110580353, -0.0125297513, -0.014727246, 0.00729306135, 0.0130035235, -0.00259566447, -0.0015851194, -0.0123987086, -0.026994912, 0.0172977094, 0.00791803654, -0.0082103638, -0.00311227748, -0.00112079782, 0.0031853593, 0.00964176, -0.0116426898, 0.00745434547, 0.015059894, 0.00355076836, 0.0213902909, 0.00888070092, -0.00433198782, 0.00538789388, 0.00743418466, -0.010886671, 0.00452099228, 0.00534253288, 0.0131144058, 0.0287488755, 0.00693017244, -0.0176505186, 0.00120143988, 0.0109370723, 0.043103151, -0.0156344678, -0.0208056364, 0.00707129575, 0.0193238407, -0.00284011057, -0.000589694653, -0.000274529331, 0.00145659619, -0.0223579966, 0.0207451563, 0.028345665, 0.016138481, 0.0136789, -0.00464447541, -0.031047171, -0.017186828, 0.0232450571, -0.00259566447, 0.00568022113, 0.0268941093, -0.0213902909, -0.0018207453, -0.0132756904, 0.00021074024, -0.00345248589, -0.00568526145, -0.0279424544, -0.00538789388, 0.00624975516, -0.0108463494, -0.004304267, 0.00072262797, -0.00522660976, 0.000956993783, 0.0108765904, -0.0106850658, 0.00819020346, -0.00466715591, 0.00289051188, 0.00822548475, 0.0197774526, -0.00912766717, 0.00209291209, 0.0206645131, 0.00297367387, 0.0239506755, -0.00521652959, 0.00243060035, 0.00809444115, 0.00300643477, -0.0180436485, -0.0231240951, -0.0093191918, 0.0193641614, 0.0013318531, -0.00189508707, -0.00104456593, 0.00924863, -0.00248100166, -0.00377757382, -0.0160275977, -0.00721745938, -0.0243135653, -0.016229203, -0.0124995103, 0.0345349386, 0.00222143531, 0.0152917402, -0.0122777456, 0.00576590328, -0.00989880599, 0.00938975345, 0.00514596794, 0.00262338528, 0.00251376256, 0.00697049312, -0.0177311599, -0.00360872969, 0.00802892, -0.016944902, -0.00110126741, -0.0108765904, -0.00584150525, 0.00928895082, -0.0108161094, 0.00377253373, 0.000352178758, 0.00493680267, 0.0200798586, -0.0327809751, -0.0118745351, -0.00310723716, -0.00338948425, -0.0071569779, 0.0115822079, -0.0239909962, -0.00852285232, -0.0157655124, -0.00695033278, 0.00913270749, -0.0330229, -0.00535765337, 0.0130841658, 0.0200496186, -0.0232853796, 0.000960773905, 0.00398169877, 0.000407620129, -0.010947152, -0.0128220785, -0.00101936539, -0.0106044235, -0.012176943, 0.023547465, -0.019646408, -0.0243740454, 0.00270150718, 0.00575078279, 0.00328868185, 0.003704492, -0.00344996573, -0.0118745351, 0.00464447541, -0.0195052847, -0.000946283515, -0.0277005285, -0.00722753955, -0.00314503815, 0.0186081417, 0.00586670591, 0.00430174684, 0.00947543513, -0.0234466624, -0.00497208349, -0.015866315, 0.00323072029, 0.00673864735, 0.00456131343, -0.018114211, 0.0037372529, 0.00274938834, -0.0241321195, 0.0199689772, -0.00949055608, -0.0187391862, -0.0139813079, -0.0163804069, 0.00425386569, -0.00273426808, 0.00939479377, -0.00215465366, 0.0177916419, 0.0189609509, -0.00814988278, 0.0177513212, -0.0113503626, -0.0102566546, -0.00202109036, 0.00271410751, -0.00863373466, 0.0020966921, -0.014848209, 0.004949403, 0.00466463575, -0.0327608138, -0.00334412325, 0.0275795665, -0.00792307686, 0.0145962033, 0.00654208288, -0.00594230788, 0.00664288504, -0.0579412803, -0.0172271486, -0.00077554927, 0.00139863475, 0.0150800552, 0.00915286783, 0.0114209242, 0.019646408, -0.00589190656, 0.0178521238, 0.015775593, -0.00764587, -0.0151909376, 0.00314755831, -0.00372213265, -0.00474275788, 0.0142030735, -0.016047759, 0.000685457, -0.00380781456, 0.00297619402, -0.00572558213, 0.0103826579, -0.0242127627, -0.00208535185, -0.00677392818, -0.00721745938, -0.00147549668, -0.0234668236, -0.00710153673, -0.0225394405, -0.00679408899, 0.00245958124, -0.0084321294, 0.00390105695, 0.0145861227, -0.00508548645, -0.0187492669, 0.000236885884, 0.00785755552, 0.00433702767, -0.00295603345, 0.0143038752, -0.00610359153, 0.00970224105, 0.0143845174, -0.00732330186, 0.0244345274, 0.00120395992, 0.00409762189, -0.00931415148, -0.00527701108, -0.0108463494, 0.0221160706, -0.00625983579, 0.00197950914, 0.0011636389, -0.0082557248, 0.0120761404, 0.00179428456, 0.00258054421, 0.00230585737, 0.0216523781, -0.00217859424, 0.00963672, -0.00899662357, -0.0177614018, 0.00933431182, 0.0177412406, 0.00240791985, 0.00714185741, -0.00850773137, 0.0260473676, 0.00785755552, 0.0144853201, 0.00866397563, -0.00269142701, 0.00270654727, 0.017217068, 0.0247974172, 0.0112596396, 0.0144853201, 0.00476039853, 0.00291823247, 0.0300189871, -0.00539797405, 0.0020412507, 0.00922342949, -0.0131446468, 0.00224663597, 0.0324584059, 0.0107757878, 0.0131043261, 0.0232047364, -0.0112394793, -0.00234869844, 0.00254274323, -0.0196564887, 0.0372566059, -0.0019631288, -0.0184972603, -0.00325340079, -0.00298627419, 0.0112999612, 0.0202310625, 0.00666304585, 0.00286027114, -0.0102364942, 0.00697553344, 0.000366669119, 0.0131144058, -0.00184342579, -0.00195682864, -0.00535765337, 0.00893110223, 0.00365409092, 0.00730818184, -0.00293083279, -0.00576086342, -0.00967704, -0.00964176, -0.0189307109, 0.00493428251, 0.0178823639, 0.0510463901, 0.00782227423, 0.000509367674, -0.0178218838, -0.000441325974, 0.00175270357, 0.00142509548, 0.0473771766, 0.0137998629, -0.0231240951, 0.0311882962, -0.0146566844, -0.00653200224, 0.015059894, 0.0309665296, 0.0130136032, -0.033889804, -5.65439041e-05, 0.00039564984, -0.00181948522, -0.0169650614, -0.0113906832, -0.0117737325, 0.0128321592, -0.0117838131, -0.0254223924, -0.00832124706, 0.00940487348, 0.011068115, 0.0130236838, -0.011098356, 0.00844221, -0.00826580543, -0.0240917988, -0.00855309237, -0.00153219805, 0.0127515169, -0.00792307686, -0.0186081417, -0.00634047762, -0.0104028182, 0.0082557248, -0.0103171365, 0.000916672812, -0.00418078387, -0.0066882465, 0.0253619105, -0.000485112047, 0.0153623018, 0.00960143842, -0.0115519669, -0.00168466184, -0.012176943, -0.00303667551, 0.00218993449, -0.00264606578, -0.000449201179, 0.011098356, -0.00783235487, -0.00802387949, 0.0105641028, -0.0125599923, 0.0062447153, 0.00573566277, -0.0138805052, 0.00324080046, 0.0317931101, 0.00690497179, -0.0182250924, 0.0196665693, -0.00963167939, -0.0128523195, -0.0115519669, 0.0185879823, -0.0126910359, 0.00272418768, 5.00468705e-05, -0.0108261891, -0.00331640244, 0.000472826767, 0.0139006656, -0.00292831287, 0.00318283914, 0.0193742421, -0.00491916249, 0.00326852128, -0.0170658641, -0.000928013062, -0.0291117635, -0.00772147207, -0.00387585629, 0.00112520799, -0.0325793698, 0.00118064939, -0.0139107462, -0.0148683693, -0.0182452537, -0.0126406346, 0.0174388327, -0.0079331575, 0.0202713832, -0.0100449696, 0.0246562939, 0.00772147207, 0.0176807605, 0.00019057974, -0.0077113919, -0.0131648071, 0.0101407319, -0.017489234, -0.00985848531, -0.00664288504, 0.0159066357, 0.0297972206, -0.0121567827, 0.0162695237, 0.00643624, 0.0226805639, -0.0235676263, 0.00421102485, -0.0224184766, -0.0164812095, 0.00441010948, -0.0115015656, -0.00751482695, -0.00886054058, -0.0070662559, -0.000925493, -0.0101810535, -0.0162997656, 0.0215112548, -0.00961655937, 0.0121063814, 0.00868917629, 0.00641103927, 0.0186988655, -0.0010924472, -0.00964176, 0.0300391465, -0.00809444115, -0.0151102953, 0.00985848531, -0.000834140752, -0.00549373636, 0.0120761404, 0.00175018352, 0.00826580543, 0.0064664809, -0.000614265271, 0.00409006188, 0.00860349368, -0.0417725593, -0.0329221, 0.0193137601, 0.00695033278, -0.00978792366, -0.0328616165, -0.0166424941, -0.00178798439, -0.00180436485, 0.00415306306, -0.0025629038, 0.00549373636, 0.0107556274, 0.00861357432, 0.0240917988, 0.0276803691, -0.00326348119, 0.015059894, 0.0143744377, 0.0151606966, -0.000615210272, 0.0163098462, -0.0121668624, -0.0111386767, 0.0027519085, -0.00698561361, -0.00395901827, -0.00699065393, 0.00791803654, -0.0204830691, -0.0158360731, 0.00475535821, 0.00060387, -0.00544837536, 0.00480827969, -0.0273376405, 0.00431182701, -0.00784747489, -0.00300391461, -0.0195960067, -0.00554917799, 0.00491160201, -0.00601286953, 0.00928391051, -0.0254627131, -0.00914782751, -0.00766099058, -0.0177513212, -0.0139309065, 0.00311731757, 6.17021578e-05, 0.0149288513, 0.0163703263, 0.0141728325, 0.00519636925, 0.00320551964, 0.00863373466, -0.00440506963, -0.00593726756, -0.0131345661, 0.0181242898, 0.00688481098, -0.0176202785, -0.0196665693, -0.0119350171, 0.00119198964, 0.0242732428, -0.0029963546, -0.012146702, -0.00911758654, -0.00320299971, -0.0240514781, 0.00595238805, 0.0442321412, -0.014817968, -0.015715111, 0.00266622636, 0.00938975345, 0.00836660806, -0.0129531221, 0.0153320609, 0.00621951465, -0.0071116169, -0.00151959783, 0.009808084, -0.000378639408, -0.0198580939, -0.0313495807, -0.00779203372, 0.00947039574, 0.0059574279, -0.0159469564, -0.00376497349, 0.00619935431, 0.000658996403, 0.0108060287, 0.0093191918, -0.0192028768, 0.0809242502, 0.014969172, 0.0128119988, -0.0219749454, 0.0203016251, 0.00656224322, -0.00665296521, 0.0720133111, 0.000826580566, 0.000498972426, 0.00887062, 0.00304423575, -0.02453533, 0.0231442563, -0.0121870227, -0.0128220785, -0.0155538265, -0.00507036597, -0.0176404379, -0.0060229497, 0.0199689772, -0.0111789983, 0.00418078387, 0.00133815326, -0.020785477, -0.0190113522, -0.00348524656, -0.00387333636, -0.00305431592, 0.00458399393, -0.018265415, 0.0153219812, 0.0239305142, -0.000955733762, -0.0257449597, 0.00959135871, -0.0159973577, 0.00925367, 0.011158837, -0.00512076728, 0.0151808579, -0.000305557594, 0.0236079469, -0.00209921226, 0.0118140541, -0.00817004312, -0.00904702488, -0.0141123505, -0.0063555981, -0.00791803654, -0.00442271, 0.00133311318, 0.00835652743, -0.0153119005, 0.0178118031, -0.00789283589, -0.00690497179, -0.00709145609, 0.0042815865, 0.0105137015, 0.00209795218, 0.0043269475, 0.0192734394, 0.00167080155, -0.00998952799, 0.00161032006, -0.0121063814, 0.00888070092, -0.00482844, -0.00116804906, -0.0302810725, -0.0226200819, 0.00402958039, -0.00521148974, 0.0201504212, -0.0144954007, -0.00714689773, 0.00220883498, -0.00360116945, -0.0140216285, -0.016047759, 0.00453863293, -0.0187593456, -0.0125297513, 0.0079885982, 0.00821540412, -0.0186988655, 0.00668320619, 0.00167206163, -0.00471755723, -0.00635055779, 0.0268739481, -0.00445547095, 0.0222975146, 0.000484797056, 0.00832124706, -0.00359108928, 0.0131748877, 0.000464321551, 0.00433198782, 0.00424378552, 0.0221765507, -0.0184065383, -0.00343736541, 0.00528709125, 0.0153623018, -0.00149943726, 0.0168945, 0.00283507048, 0.0192835201, 0.00968208071, -0.0156647097, -0.00126192137, 0.0213298108, 0.014757487, 0.00257802405, 0.00354068796, 0.0126406346, -0.00277206884, -0.0101054516, 0.0278013311, 0.0159973577, -0.0180234872, -0.00433450798, -0.0246159714, -0.00599774905, 0.00486120069, 0.0116628502, 0.0161485616, 0.0185275, -0.00138855458, -0.0220555887, -0.0043471083, 0.00186358637, 0.0101760132, 0.0237490702, -0.0176706798, -0.0176001173, -0.00667816587, 0.0190012716, -0.00298627419, -0.00563486, 0.0209064391, -0.00799363852, 0.027055392, -0.00678904867, 0.0180134084, 0.00476795854, 0.0485061668, 0.0138099436, -0.0047276374, -0.0161485616, -0.000533308252, -0.0225797612, 0.0123079857, -0.0129732825, 0.0104633, -0.00677392818, 0.0144046778, 0.0014654164, -0.00545845553, 0.00681928964, 0.0187895875, -0.00503508514, 0.0125700729, 0.00708641624, 0.0167836174, 0.0108362697, 0.00181066501, -0.00491664233, 0.0139510669, -0.00971232168, 0.027115874, 0.0123180663, 0.00334160309, 0.0254425518, -0.0082103638, 0.00767611107, 0.0104028182, -0.0157655124, -0.00911758654, 0.00358604919, 0.00925367, 0.0600379743, 0.000956993783, -0.0184065383, -0.0134571344, -0.00731322169, 0.00354068796, 0.00364149059, -0.0125700729, 0.00139611471, 0.00533245271, 0.00522660976, -0.00473267771, 0.000101826285, 0.0253014285, 0.000413605274, -0.00603807, -0.00272166776, 0.00356084853, 0.0167432968, 0.0157957524, 0.0153018208, 0.00669832667, 0.012418869, -0.000526063086, -0.00394389825, -0.0060683107, -0.00446807127, -0.00284515065]
29 Oct, 2020
Top Dying Programming Languages in 2020 29 Oct, 2020 If you’re a 90’s kid, you must have heard about LOGO – Language for Graphics Oriented (right, Turtle Graphics!!) that was particularly designed for children to teach them programming. Similarly, you must be familiar with other renowned languages like ALGOL, BASIC, COBOL, and many more. But do you know there is one thing common with all these languages that with the emergence of the technologies and the advent of various trending programming languages, these veteran languages have witnessed an unpredicted decline in their popularity & usage? And if you’re assuming that these are the only languages who have experienced such situations then you must know that there have been a lot of programming languages that just came, rule, and fade away. So, the point is there is nothing wrong with these languages that made them disappear (in fact, Programming Languages never die, they become outdated!!), it’s just they get replaced by the better alternative that came in the market. Hence, it’s up to you to analyze the demand of the tech market and be aware of all the latest trends in the programming world to survive in the IT world. You need to know about the current and future scope of the languages and need to adapt to the changes accordingly to grow in your career. Here, in this article, we’ve listed out 7 Programming Languages (based on various research parameters and standard resources) that are not worth learning in 2020 as these are going to die or fade away from the tech market in the future. 1. Objective-C The first name that comes here in the list of top dying Programming Languages is – Objective-C. The language that came around 36 years ago is a general-purpose, object-oriented language that follows the Smalltalk-derived syntax and is primarily used to develop applications for Apple platforms such as macOS, iOS, etc. The language single-handedly ruled the particular domain until the arrival of its alternative language Swift in 2014. Swift is comparatively being more preferred than Objective-C by the developers due to various remarkable features such as robustness, better memory management, etc. As per the reports, Objective-C has dropped by 10-12 positions from the list of top programming languages within the last few years and subsequently Swift climb the ranking list with rewarding points during the same period. However, the language has still some occupancy in the market and probably not going to fade away anytime soon, but if you’re looking forward to starting your journey particularly with the macOS or iOS domain, you’re recommended to go with Swift instead of Objective-C. 2. Haskell Haskell is one of the oldest general-purpose, statically typed functional programming languages. The language was particularly designed for handling symbolic computations along with list processing applications and it is considered to be much relevant to research and industrial application domain. Moreover, due to several worthwhile features such as better reliability, shorter lead times, etc., the language is being preferred by various big tech companies such as Facebook, GitHub, IBM, etc. in the past. However, if we take a look at the TIOBE popularity index, the language shows a consistent decline in its demand & usage in the last 8-10 years. There may be various reasons behind that such as difficult to learn, static-typing, etc. Hence, despite the major standard update of Haskell in 2020, you’re recommended to not majorly rely on Haskell and consider learning other trending languages as well such as Python, Go, etc. for better career opportunities. Though, learning Haskell along with the other programming languages would also be the best option as having an understanding of functional programming language is always appreciated. 3. Perl Perl, introduced in 1987, is a general-purpose programming language that incorporates Perl 5 and the latest sister version i.e., Perl 6 (also termed as Raku). The language is used for a wide range of tasks such as web development, text manipulation, GUI development, network programming, and many more. The language has enjoyed a good run in the tech world around 2004 but after the advent of several other prominent programming languages especially Python, Perl, and even its latest sister version is finding it difficult to make a strong command over the market. According to the TIOBE Index 2019 Reports, Perl was ranked in 19th position which was an all-time low for the language. However, the language is been doing quite well with the rankings in the current year but still, you’re recommended to diversify your programming language choice considering the average downward trend of Perl in the last few years. 4. Pascal Let’s move to another programming language that is not worth learning in 2020 – Pascal. The language is a general-purpose, procedural programming language that was specifically developed for teaching programming practices in a structured manner. The journey of Pascal Language is in such a way that it was developed on the model of ALGOL 60 language and then led to the development of Object Pascal. In general, Object Pascal can be considered as an object-oriented derivative of Pascal language. The language has indeed enjoyed its popularity and demand in the market due to various features such as easy to learn,  extensive error checking, strongly-typed, etc. But when it comes to the growth and demand of Pascal in the current day scenario, you must know that old Pascal is almost dead and even the Object Pascal is on the verge of vanishing from the market as there is no buzz of the language among the developers. 5. Erlang Erlang is a general-purpose, functional programming language that is primarily known for its support to concurrency, distribution, and fault tolerance. The language was initially used for huge telecommunication systems but then it expanded its implementation into various domains such as e-commerce, banking, and others. Though the language is still in utilization by some established organizations yet due to several factors such as steeper learning curve, availability of better alternatives like Elixir, Elm, etc. it is not being much preferred by the new developers and companies. As per the reports, Erlang is experiencing a consistent decline in its popularity in the last few years. However, the jobs for Erlang Developers are still existed in the market and not going to disrupt anytime soon but if you’re having a long-term career vision for yourself then you should opt for any other trending and relevant language rather than going with Erlang. 6. CoffeeScript Though the language, CoffeeScript, came into the existence in 2009 and is not that much old that it should be here in the list of top dying programming languages – yet it is!! It is a programming language that compiles to JavaScript with several additional features like list comprehension, destructuring assignment, etc. and provides better syntax & readability. The language became very popular in a very short span however that popularity doesn’t last long. As per Google Trends reports, CoffeeScript has witnessed a huge decline in the last 2-3 years in its popularity. Several major reasons behind the decreasing demand for CoffeeScript are additional compilation process, prone to change, etc. Hence, if you’re currently working with the CoffeeScript or looking forward to starting your career with the language, you’re recommended to explore several other alternatives as well for better career opportunities in the long run. 7. VB.NET Lastly, here comes one of the most renowned languages of its time – VB.NET!! The language is an object-oriented programming language developed by Microsoft and is implemented on the .NET Framework. Visual Basic was developed by Microsoft as a variant version of the BASIC and then Microsoft proposed VB.NET in 2002 as the successor of its initial Visual Basic language. Undoubtedly, VB.NET was the favorite child of the market for a longer period of time but it somehow gets on the weaker side against its competitor language C# which is also primarily built on the .NET framework. As per the TIOBE Index reports, C# has taken over the VB.NET in terms of demand & popularity and VB.NET is losing its charm according to Google Trends results also. Meanwhile, due to its strong command over the programming world in the past, VB.NET still has some adequate occupancy in the market but if you’re just about to start your career or in the beginner stage, you’re recommended to prefer other options. Again, you must take into account that the above-mentioned languages like Objective-C, Perl, etc. are not going to die or disrupt immediately in the upcoming times, but they’re not worth learning from scratch in the year 2020 as there are better and worthwhile alternatives available in the market. And, on top of that, this is not only about Programming Languages, you’re always required to stay updated with all the latest trends & technologies to do better in your career!! Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020
https://www.geeksforgeeks.org/top-dying-programming-languages-in-2020?ref=asr10
Languages
Top Dying Programming Languages in 2020
5 Most Difficult Programming Languages of the World, Languages, Introduction to Programming Languages, Top Dying Programming Languages in 2020
GeeksforGeeks
[-0.0279893391, -0.00743646361, -0.0198141541, 0.0433383323, 0.0161615852, 0.0226541273, 0.00354791549, 0.0129112117, 0.00601237267, 0.00920118764, 0.0237211697, -0.0318471082, 0.0247717965, -0.0350974835, -0.0107278787, 0.00293026213, -0.00624630135, 0.0010988483, -0.0174009968, -0.0132641559, -0.0151355844, -0.0315680355, -0.044782944, -0.0110151591, -0.0180083904, 0.0359511152, 0.0163339544, 0.0225228, -0.0309606418, -0.0237047542, 0.020897612, 0.00157080928, 0.0236719213, -0.0381180309, -0.0102518136, 0.0188291911, -0.00751444, -0.0346706659, -0.00665670214, 0.0130507471, 0.0303204153, 0.014848303, 0.0101040695, -0.014339406, 0.0100384047, 0.00879078638, 0.00593439629, -0.0299756788, 0.00558966, -0.0208483636, -0.00720663927, 0.00222642464, 0.0647776723, 0.0406789333, 0.0409744233, 0.00554451579, 0.011556888, -0.0432726666, 0.0112367757, 0.0199947301, -0.0162354577, -0.0108181667, 0.00485504232, -0.0268402174, 0.00939818, 0.01308358, -0.0369360782, 0.0154885286, -0.0149221756, -0.0180904698, -0.0356227942, -0.0057538203, 0.0248210449, 0.0254284386, 0.0119590815, 0.00569226, -0.0113598956, 0.0394969806, -0.0241479874, 0.0117785046, 0.0113598956, -0.00627502939, 0.0116471769, -0.0226705447, 0.0204215478, 0.015447489, 0.0311412178, -0.0536147691, 0.0132395318, 0.0164406579, -0.0209304448, -0.0122053213, -0.00210535643, -0.0261671599, -0.0432070047, 0.0330126472, -0.0137976771, 0.0053885635, -0.00649664551, 0.0715082437, 0.0112696076, 0.0379210413, 0.0341125205, -0.0335051268, 0.0291877091, -0.0291056298, -0.0195679124, 0.0217512455, 0.0191410966, 0.0308621451, 0.00656231, -0.00749802403, -0.0343423449, 0.00529827503, -0.0125910984, 0.0176636539, 0.0324380845, -0.0768270418, 0.0173845813, 0.0319127701, -0.00229208893, 0.00571278, 0.00152156118, 0.0286623966, -0.0409415886, 0.0209632758, -0.0241808183, 0.0019586382, 0.023918163, 0.0166622754, -0.00744056748, -0.0176636539, -0.0230481122, 0.0188784394, 0.0339155272, -0.00903702714, 0.0163832027, 0.0050684507, -0.000723844511, -0.00899598654, 0.0094474284, 0.00646791747, 0.0270536244, -0.0352944732, -0.00624219701, 0.00535162725, 0.00265324162, 0.0674370676, -0.00604520459, 0.013592477, -0.0337842, 0.00109371834, 0.0232451055, 0.0240494907, 0.0243778117, -0.0225556325, -0.00454313774, 0.0406461023, -0.00234133704, 0.00368950376, -0.0253299419, -0.0374942236, -0.0163667873, 0.00936534815, -0.000980345067, 0.0103338938, 0.0392343216, -0.00478527416, -0.0719022304, 0.0517105088, -0.0281699151, -0.00914373156, -0.00605751667, 0.0131492438, -0.0411385819, 0.0240494907, 0.0207991153, -0.0233107693, 0.0010988483, 0.00165494147, -0.013559645, 0.0205200426, -0.000666901411, -0.0115404725, 0.0406461023, 0.00262040948, 0.0515791811, 0.00399525231, -0.0194037538, -0.0230973605, -0.0176472366, -0.0264462326, 0.0290727969, 0.0195679124, -0.0086020017, -0.00448568165, -0.043502491, 0.0688160136, -0.00337759918, 0.0390701629, -0.0156198572, -0.0541729145, -0.0118195452, 0.0379210413, 0.0392343216, -0.00565942796, 0.0176144056, 0.0351631455, 0.0567009822, 0.0019966003, -0.0432726666, 0.0210617725, -0.0305994879, 0.0145281907, 0.00535162725, 0.00980037265, -0.0255761817, 0.0057333, -0.0384135209, -0.0117785046, 0.00404244848, -0.00180473784, 0.0128619634, 0.000396036834, -0.0283669084, -0.0289086364, 0.00266760564, 0.0276774336, 0.0208647791, -0.00623809313, 0.0328320675, 0.0194858331, -0.0268402174, -0.0352944732, -0.0097921649, 0.0165884029, -0.0178770609, -0.0129768755, -0.0555518605, 0.0311576333, 0.0255597662, 0.00182730984, -0.0158825144, -0.00567994779, -0.041795224, -0.00967725273, 0.0138387168, 0.0404819399, 0.00806437712, 0.0492481031, 0.0210946053, -0.0784029812, 0.0213244297, 0.0321261808, -0.0609691516, 0.0172204208, 0.00664028618, 0.0230316967, 0.047705, 0.00539677124, 0.0192231759, 0.0115815122, -0.020569291, 0.0645478517, 0.012722427, 0.0244763084, 0.0206349548, -0.00607393263, -0.00310878665, -0.0416310653, 0.0547310598, -0.0211274363, 0.00839680154, -0.0142655345, 0.00343300332, 0.0145281907, -0.00777709624, 0.00468267407, 0.0008023337, 0.020060394, 0.00462111365, -0.0188456085, 0.0327992365, 0.0210289396, 0.00803975295, -0.0309770573, -0.00799460895, 0.00714918319, -0.0413027443, -0.00902881939, -0.0182710458, -0.000119978125, -0.00070383749, 0.0260686632, 0.0329141505, -0.00164775946, -0.00647612568, 0.0164324511, -0.0358197875, 0.00059969828, 0.00984962098, -0.0216363333, 0.020388715, -0.0151437921, -0.0336036235, -0.00166212348, 0.0267417207, -0.0377240479, 0.00957875606, -0.0165555701, 0.018500872, -0.0201424751, -0.00865125, -0.0117785046, 0.0288922209, 0.0352288112, 0.0131902834, -0.00110603031, -0.0330126472, -0.0228182878, 0.0109823272, 0.0177293178, -0.0251821969, 0.00416146498, 0.0351303145, -0.00842963345, -0.0123776905, 0.00876616221, -0.0153489923, -0.0177129023, -0.0192560088, -0.0180904698, -0.0183038786, 0.0168592669, 0.0491167754, -0.014700559, -0.0192724243, 0.0280550029, -0.000459905481, 0.0150781274, -0.0242136512, 0.00696450286, 0.0142573258, -0.0172040034, 0.00377774, -0.0572591275, -0.0155295692, -0.00340017118, 0.0216199178, 0.0197977386, 0.00172368367, 0.0105965501, 0.0324052535, 0.0102271894, 0.0226705447, -0.00386392418, -0.00352329132, -0.0164981149, -0.0304845758, 0.0480333157, 0.0498719141, -0.0261179116, -0.00896315463, 0.0133954845, -0.0213080123, -0.0216363333, 0.0190261845, -0.0149714239, 0.0526954718, -0.00943101197, 0.00801512878, -0.0147169754, -0.0060082688, -0.014848303, -0.0601483509, 0.0258880872, -0.0208811965, 0.00272506173, -0.0333245508, 0.0156034408, -0.0062175733, 0.0294175334, 0.00269222958, 0.0426160246, 0.000950078, -0.0240166578, -0.0166869, -0.0406132713, -0.0147990556, -0.0127634667, -0.0367390849, 0.0446187817, -0.0318963565, 0.00666080602, -0.0148647195, 0.0129276272, 0.0286952294, 0.01221353, -0.00446516136, -0.0284654032, -0.0100548211, -0.00151437917, 0.0134283165, 0.0398909636, -0.0334230475, -0.00696450286, -0.024755381, -0.045833569, 0.0124597698, -0.00565942796, -0.00662386976, -0.019370921, -0.0418280549, 0.0337842, 0.00743235974, 0.013231324, 0.0285310689, 0.021554254, -0.00948846806, 0.0245091394, 0.0317486115, 0.0155706089, 0.0117538804, 0.00125787861, 0.0199454818, 0.00316829467, 0.0198634025, 0.0120986179, -0.0166786909, -0.0140603334, -0.0373957269, 0.00519157108, 0.0282848272, -0.00782634411, 0.00773605611, -0.0254448541, 0.00858558621, 0.0473110117, 0.00202430226, 0.0175487418, 0.0138058849, -0.0182874631, 0.00242341706, -0.00239674095, -0.0556503572, 0.0253299419, -0.0256746784, -0.0136991804, 0.00625450909, -0.0258880872, -0.0017298396, 0.0329305641, -0.00210330449, 0.0289578848, 0.0492152721, -0.0401536189, -0.0261999909, 0.0189276878, 0.0206842031, -0.0114173517, 0.0015933814, 0.023442097, 0.0181889664, 0.0271521211, -0.00317034661, 0.0211110208, -0.0217840783, -0.0349661522, -0.0294011179, 0.00158619939, -0.00624219701, -0.0442248, 0.0235734265, 0.0137648452, 0.0291877091, 0.0139536299, 0.00869229063, 0.00758010382, -0.0251493659, -0.00275789388, 0.0652044863, 0.0265939757, 0.0381836966, -0.0564711578, 0.0032544788, 0.0119590815, 0.0140275015, -0.00242546923, 0.032553, 0.0178278144, -0.0272342023, 0.00707941502, -0.00473192194, -0.0100630289, -0.00742415152, -0.0399237946, -0.0265118964, -0.0615601316, -0.0170726757, 0.030894978, -0.0091109, 0.00613138871, -0.0208483636, 0.041434072, -0.0374942236, 0.0159974266, -0.0371659026, 0.0466215387, 0.00359305949, 0.00521209091, 0.0126813864, -0.0030267064, 0.00648433389, 0.0150699196, 0.00822443329, 0.0598856956, -0.00525723491, 0.025806006, 0.00337554724, -0.0103831422, 0.00147539109, 0.00767449616, 0.020060394, 0.00659514172, -0.00308621442, 0.000566353207, 0.0292862058, -0.00567994779, 0.00917656347, -0.0372315682, -0.00328936288, 0.00720663927, -0.0138797574, -0.00117066852, 0.00289537804, -0.00269222958, -0.00342069124, 0.00776068028, 0.00961979665, -0.00575792417, -0.0245091394, 0.0463917144, -0.0287280604, 0.0256582629, -0.0139043815, 0.000911602925, 0.00471140211, -0.00145179301, 0.0171055086, 0.0149632152, -0.00700964686, 0.0409415886, 0.0170562603, 0.0396283083, -0.0245583877, 0.00369360787, -0.00383519614, -0.0256582629, -0.0328649022, -0.0137073891, 0.0159317609, -0.00138202496, 0.0321261808, 0.0196664091, 0.00539677124, -0.0280385874, 0.0387746729, -0.0161287542, -0.00267376169, -0.0284982361, 0.0180248059, -0.0247389637, -0.0165473633, -0.046555873, 0.00841321796, 0.0349661522, 0.00558145158, -0.0063981493, 0.00695629464, -0.00123325456, -0.0352616422, 0.0207334515, 0.00272300979, 0.020717036, -0.021078188, 0.010448806, -0.0102764377, -0.00116656441, 0.00254038139, -0.0422548726, -0.0257403422, 0.042090714, -0.0240330752, -0.0156034408, -0.00841321796, 0.040383447, 0.00633248547, -0.0152751198, -0.00202019815, -0.00650895759, 0.0203723, 0.0159645937, 0.0148072634, 0.00847067405, -0.0329962298, -0.00407733256, -0.00902881939, -0.0102189817, 0.0132641559, 0.0147498073, 0.00968546048, -0.00622167718, 0.024279315, 0.00241726101, -0.00501509849, -0.042747356, 0.0200768095, 0.0168756843, -0.0117456727, 0.00308211055, -0.0206021238, 0.00307390257, -0.0353929698, -0.0268402174, -0.00102702819, 0.0406789333, 0.00906985905, -0.0128455469, -0.00397883635, -0.0401536189, -0.0168921, -0.0104077663, -0.00448978553, -0.00352944736, -0.00909448322, -0.0097921649, -0.00856096204, 0.012722427, -0.00856096204, -0.015299744, -0.0241644029, 0.0206349548, 0.00187450601, 0.149320245, 0.00379005191, 0.0118934168, -0.0404819399, 0.0289250538, 0.0284818206, -0.0170890912, 0.0112531921, -0.0297458544, 0.0253299419, 0.0363779329, -0.0227033757, -0.0128619634, 9.63800776e-05, -0.0136171011, -0.0270372089, 0.0275789388, -0.00163852551, -0.024246484, 0.00730923936, -0.00415530894, -0.0197977386, -0.0322575085, 0.0239838269, 0.00731744757, -0.0146266865, 0.0188784394, 0.0155295692, -0.0305338241, 0.000757189584, 0.0363122672, -0.0359839462, -0.0184680391, 0.00811772887, 0.0140849575, 0.0224078875, 0.0185337029, 0.0053680432, -0.00291179423, 0.0138797574, -0.00466215378, -0.0308785606, -0.015299744, -0.025806006, -0.000364487263, -0.0333245508, 0.00485093845, 0.00289127417, 0.00767449616, 0.0231794417, 0.00194427406, 0.0333245508, -0.00333450711, -0.00176369771, -0.0349989869, -0.0236555059, -0.0494122654, 0.00383724808, -0.011286024, -0.0337842, -0.00769912032, -0.00740773557, 0.0447501093, 0.00932430755, -0.0249195397, -0.0275953542, -0.00107012026, 0.0373300612, 0.0113270637, -0.0250016209, -0.0148236789, -0.0196664091, -0.000283689587, 0.000959825, 0.0218661577, -0.0250016209, 0.0125746829, -0.00755137578, -0.014249118, -0.0032093348, -0.00968546048, -0.0311904661, -0.00272711366, 0.0124023138, 0.0320276842, -0.00577434, -0.00400961656, 0.0363779329, -0.00693577481, 0.00917656347, -0.00224899664, -0.005688156, -0.0310591385, 0.0253627729, -0.00163647346, 0.0199454818, 0.0135186044, 0.00945563614, -0.00819570571, 0.013231324, 0.0161615852, -0.00629144534, -0.0166212358, 0.0201260578, -0.000818236731, -0.000948026, 0.0384135209, -0.0118441693, -0.0153325768, 0.0301070083, -0.0389388353, 0.00128968467, 0.0116389683, -0.0122299455, 0.00100086513, -0.000113886243, 0.00696860673, 0.020388715, 0.0529252961, -0.00286254613, -0.00269633369, 0.0209632758, -0.00851171371, -0.0450456, 0.00793304853, 0.00965262856, -0.0038741841, 0.0294175334, -0.00145281909, 0.0510538667, 0.00312315067, -0.00258757756, 0.00800692104, 0.00894673914, -0.0390373319, -0.00150411914, -0.0169085152, -0.0213080123, 0.0300905909, -0.00824085, -0.00727640744, 0.00964442082, -0.000746929552, 0.0287608933, 0.021373678, 0.0266760569, 0.0315516181, 0.00978395622, 0.00934893172, 0.00361973559, 0.0173353329, 0.0158414729, -0.0381836966, -0.0195843298, -0.00528596295, -0.00574971596, -0.0354914665, 0.0122545697, -0.00170008559, -0.0143476147, -0.0190754328, -0.00608624471, -0.0274804421, 0.00316213863, -0.067634061, -0.013649933, 0.0210617725, -0.0204707943, -0.0260194149, -0.0145692304, 0.0264626481, 0.0132477395, 0.0159892179, 0.0276117697, 0.00344326324, -0.0134857725, 0.0387418419, 0.0226869602, -0.0211438518, 0.018500872, -0.0213900935, -0.0527283028, 0.0566681512, 0.00207149843, 0.0213572606, 0.00340017118, 0.00934893172, -0.00628323713, -0.0242629, -0.00763345603, 0.011556888, -0.0183531269, 0.00408554077, 0.0369032472, 0.00248908135, 0.00884003472, 0.0267088879, -0.00964442082, 0.00808900129, 0.0101697333, -0.00848709, 0.0228018723, 0.0347034968, -0.00222232076, 0.013649933, -0.00351303141, -0.00514232274, 0.0194694176, -0.0119837057, -0.00966904406, 0.0408102609, -0.0153736165, 0.0013615049, 0.0109741194, -0.00407117652, 0.00905344356, 0.00193709205, 0.0205857083, 0.000757702626, -0.00442822557, 0.0170234274, -0.000150950567, -0.0161615852, -0.0300085116, -0.0185993668, -0.0171219241, -0.0392999873, -0.00844605, 0.0146513106, 0.0246568844, 0.0145856468, 0.00980858, -0.0129276272, -0.00888107438, 0.0204543788, 0.0304353274, 0.00062380929, 0.0339811929, -0.0126978029, 0.00136253086, 0.00982499681, -0.00239058514, -0.000574048201, -0.0159235541, -0.00336323516, 0.00527365133, -0.00527365133, -0.00124454068, 0.0073831114, -0.0404162779, -0.0266432241, 0.0333081335, 0.00976754073, -0.00739542348, 0.0151684163, -0.0169741791, 0.0177621488, 0.00638994155, 0.02442706, -0.0141095817, -0.00820801686, 0.00649254164, -0.0261343271, 0.00542549929, 0.00642687734, 0.00316419057, 0.0195350815, -0.00719843106, 0.00027548158, -0.0121806981, -0.0429115146, 0.0335215442, 0.023950994, -0.0304353274, 0.00209304434, -0.00197095, -0.00413889252, 0.0217676628, 0.0185993668, -0.0107607106, 0.0090780668, -0.0109494952, 0.0250344537, -0.0140767498, -0.00960338, -0.0276610181, -0.023261521, 0.0229824483, 0.0311248023, 0.0063530053, -0.00650485372, -0.0168428514, -0.00629554922, -0.0327992365, 0.0673714057, -0.0408102609, -0.00148154714, 0.00297130225, 0.0294667818, -0.0155788166, -0.0150206713, -0.0457679033, -0.0105144698, 0.00939818, -0.0109659107, 0.0094474284, 0.00987424515, -0.0120493695, -0.0127388425, 0.0386105143, -0.0206842031, 0.0183038786, -0.010629382, -0.0401536189, -0.0134036923, -0.0184187908, -0.00115322648, -0.00297951023, 0.0100958617, 0.0257895906, 0.00243162503, 0.00861841813, -0.0132477395, -0.00459648948, -0.00451030536, 0.0180904698, -0.0064638136, 0.0137648452, -0.00259373337, 0.0307636485, 0.00194427406, 0.0114994319, -0.00285639, -0.0105883423, -0.0357869565, 0.0294503663, -0.0133954845, 0.00731744757, -0.00745287957, -0.0126403468, -0.00829830579, 0.0134693561, -0.0515135154, 0.0158250574, 0.00801923312, -0.00261425343, 0.0390044972, 0.00869229063, -0.0053228992, -0.000768475642, -0.0112367757, -0.0247225482, -0.0153325768, -0.0111546954, 0.0232943539, 0.00399730448, -0.0105144698, 0.00750623178, 0.0012506966, -0.010777127, -0.0213900935, 0.0420578793, 0.0396939702, 0.0079125287, 0.00856096204, 0.00341248326, -0.000201096424, 0.00159440737, -0.0575874485, -0.00484683411, -0.0261343271, 0.0374285579, -0.0180904698, -0.00222232076, 0.0101040695, -0.0138058849, -0.0229332, -0.00337965111, 0.00163647346, 0.0090780668, -0.0208319481, 0.0194365848, 0.0196828246, -0.00354175945, -0.00270454166, 0.0128783789, 0.013141036, -0.00360742351, -0.00763345603, -0.00919297896, -0.018500872, -0.00276815379, -0.00166417554, -0.000710506516, -0.0363779329, 0.00878257863, -0.00272506173, -0.00365256774, -0.0139536299, 0.0143147819, 0.00840500928, 0.0122299455, -0.019370921, -0.0106047587, 0.00625040522, 0.00923402, 0.011376312, 0.0150781274, -0.00847067405, 0.00210740836, 0.00259168143, -0.0187635273, 0.00554861967, -0.00852813, 0.00195556018, 0.0080931047, 0.0104652224, -0.00666901423, -0.020060394, -0.000547372154, -0.00290563819, -0.00238032499, 0.0231958572, 0.0281535, -0.0230973605, 0.00384956016, -0.00803154521, 0.0207006205, -0.00167853956, 0.00909448322, -0.0196335781, 0.0039008602, -0.00132559484, -0.012903003, 0.0107114622, -0.0175323244, 0.0154310726, 0.00780582428, 0.00483452203, 0.0378882065, 0.0277923457, -0.0199783146, -0.0487884544, -0.0163585786, -0.0157593936, 0.0276610181, -0.00762935216, -0.0139782531, 0.00138099887, 0.00480169, 0.0120165376, -0.0283176601, 0.00526954699, 0.011047991, 0.0943593681, 0.0151355844, -0.0105719259, -0.0287280604, -0.00537214754, 0.0164488666, 0.00370386778, -0.0044487454, 0.00139844092, -0.0324052535, 0.0423533693, 0.00791663304, 0.00374695985, 0.0105144698, -0.0412042476, -0.00147949508, 0.00204584841, -0.00810131337, 0.0036238397, -0.00457596965, -0.0136417244, -0.0134283165, 0.0130343316, 0.0101615256, 0.0112039438, 0.0070178546, -0.00606572488, -0.0167936031, -0.0274804421, -0.0175159089, 0.0171219241, -0.015299744, 0.0195350815, 0.00144768902, 0.0205857083, 0.012722427, 0.00210740836, 0.0304353274, -0.00948846806, -0.0262820721, -0.00175241171, -0.0186157841, -0.0186650306, 0.0166869, -0.00249934127, -0.000734104542, -0.0124351466, -0.00724357506, -0.0225392152, 0.0063530053, -0.0263313204, 0.0010649903, -0.00789200887, -0.0230973605, -0.00814235304, 0.0292205419, 0.0150042558, 0.0214229245, 0.0161780026, 0.00441591348, -0.0013420108, -0.012993291, 0.00868408196, -0.0274640266, 0.00876616221, 0.0225392152, -0.00926685147, -0.00755958399, 0.00591798034, -0.00762524828, 0.00299592642, 0.0370674059, 0.00971829239, -0.00390701601, 0.00976754073, 0.00438718544, 0.00174933369, -0.0100712376, 0.0113927284, -0.0124023138, 0.0152258724, 0.0212751813, -0.0236555059, 0.0106622148, 0.00133482879, 0.0153818242, -0.00700554298, 0.0046129059, -0.0164652821, -0.0205200426, 0.00242136512, -0.0116553847, -0.0297622699, -0.00739131961, -0.0030267064, 0.000390137313, 0.0230481122, 0.0147662228, 0.00194530014, -0.00666901423, 0.00065099838, 0.0190426, 0.0147744315, -0.0189276878, -0.00102087215, -0.00506434683, 0.0256910939, 0.00810541678, -0.00346788741, 0.0186486151, 0.0371330716, 0.0120822014, 0.0130753713, 0.00134406285, 0.0270536244, -0.0273819454, 0.040383447, 0.0206349548, 0.0119508728, 0.00868408196, -0.0225392152, 0.0286623966, 0.0104980543, -0.00822443329, -0.00634479756, -0.00425996119, 0.0154064484, 0.0226869602, -0.00042553441, 0.0128209228, -0.0154310726, 0.0169085152, -0.00638173334, -0.000887491857, -0.0379210413, 0.00345352339, -0.0197813213, 0.0228839517, -0.00249318522, 0.00147026114, -0.0106457984, 0.0221288148, -0.019009769, -0.00140357099, -0.00328731094, 0.0221944787, -0.0266268086, -0.010030197, 0.0197977386, 0.00963621214, -0.00810952112, -0.0248702932, 0.0171547569, 0.00560197188, 0.0175815728, 0.00569636421, 0.0218989905, -0.018500872, 0.0121150333, 0.00141383102, 0.00216281251, 0.0277759302, 0.0148400953, 0.0075924159, -0.0249031242, -0.0094474284, -0.0063530053, 0.00848709, 0.0169085152, -0.00122094259, -0.022095982, -0.0094474284, 0.00417582877, 0.00259373337, -0.00437487336, -0.000463752978, 0.00164878543, 3.37298225e-05, 0.0258552544, -0.0118687926, 0.0007966907, -0.00172265759, -0.0116882166, -0.00648843776, -0.00535983546, -0.0111793196, -0.0150945438, -0.00935713947, -0.0190590154, 0.0396939702, -0.0040609166, 0.0121396575, 0.00440770527, -0.00514642708, -0.00371412793, 0.0163914114, -0.00250549731, 0.0154803209, -0.00202327617, 0.0241808183, -0.00390701601, -0.000174805115, 6.00531894e-05, 0.00453492953, -0.0181561336, -0.0094966758, 0.00143640302, -0.00789200887, 0.0019165721, -0.0145446071, 0.000326012174, -0.00436256127, 0.0133298198, -0.0104323896, -0.00147846912, -0.00925864372, 0.00554041192, 0.00930789206, -0.0082121212, -0.00154105527, -0.000360896258, 0.000341145729, -0.0156608969, 0.0225556325, -0.000143127298, -0.0171711724, 0.0139782531, 0.0233928487, 0.0163175389, 0.0130261239, -0.0322410911, 0.00730103161, 0.0134365242, -0.000911602925, 0.023261521, -0.0138058849, 0.00278457, -0.0383806899, 0.00218128064, 0.0142327016, 0.010777127, 0.0229167845, -0.0110972393, -0.0156773124, 0.0123612741, 0.000101958962, 0.0201260578, -0.00379210408, -0.0166294426, 0.013592477, -0.0113188559, -0.0341125205, 0.0145281907, -0.00583179621, 0.00464163395, -0.00375722, -0.00524902716, -0.0174502451, -0.021373678, -0.00447336957, 0.00516694691, -0.00565532409, -0.00571278, 0.0201424751, 0.00500689074, 0.0117128408, -0.0140192937, -0.00332014309, -0.0238032509, 0.0113188559, 0.00956234057, 0.0517433397, 0.00749391969, 0.00512180291, 0.00584000442, -0.0179755576, 0.0244763084, 0.0166212358, -0.0291712936, -0.00948026, -0.0241644029, 0.0232779365, 0.00680034235, -0.0139618376, -0.0156691056, -0.00241931318, 0.00923402, -0.0166212358, 0.0030492784, -0.00356227951, 0.000880309846, 0.00672647031, -0.00643098168, 0.00687831873, 0.00905344356, 0.0330618955, -0.00592618855, -0.012722427, -0.0124761863, 0.011195736, 0.00357253943, -0.0137073891, -0.00990707707, -0.0158743057, -0.0053434195, -0.00914373156, 0.0144050708, -0.00274763373, 0.00176061969, -0.00389470416, 0.00346583524, -0.042419035, -0.0103010619, -0.00520798704, -0.021373678, -0.0017678017, -0.0032093348, 0.00439539319, -0.0159235541, -0.000550450175, 0.00183243991, -0.00332219503, -0.00956234057, -0.0230973605, -0.0135760605, -0.00205200422, 0.00589335663, 0.0037408038, -0.0069275666, -0.0112942318, -0.0248210449, -0.0251657814, -0.000253294274, 0.00432152115, 0.0235734265, 0.00521619478, 0.0113845197, -0.0148236789, 0.0145363985, -0.000483760028, -0.0142983664, 0.00684548635, -0.0109166633, 0.0152587043, 0.0209468603, -0.0225556325, -0.0209632758, 0.0254120212, -0.00623398926, 0.0138469255, 0.00838038605, -0.0174830761, 0.0162929147, 0.00624219701, 0.00196479424, 0.0336528718, 0.0192888416, 0.0223586392, -0.0198305696, -0.0131902834, -0.0268073846, 0.0155131528, 0.00379210408, -0.00254038139, 0.00584000442, -0.0196007453, -0.0315844491, -0.00804385729, 0.0301234238, 0.0277266819, -0.0163749941, -0.0282684118, 0.0393656492, 0.00651716581, -0.00742825586, 0.0114419758, 0.0251657814, -0.00657872576, 0.0116800088, 0.00270454166, -0.0372644, -0.0175979882, 0.000483760028, -0.00269428175, -0.0152340801, 0.0259045027, -0.00957875606, 0.0107114622, 0.00714507885, -0.00268196966, 0.00424354477, 0.0110315755, 0.0111629032, 0.0406461023, -0.0259537511, -0.0205200426, -0.0333902128, -0.00904523488, -0.00374695985, 0.0118277529, -0.0110397832, 0.00204379624, -0.00480579399, 0.00700964686, 0.00992349256, 0.02053646, 0.0131656602, -0.0207991153, 0.00661566202, -0.00806437712, -0.000201737683, -0.0199290663, -0.0466215387, -0.0125008104, -0.00894673914, 0.0236555059, -0.0127880909, 0.0220303182, 0.00804385729, 0.000880309846, -0.00728871953, 0.0144461105, -0.0114173517, -0.0156116486, -0.041434072, -0.00499868253, 0.0232943539, 0.01221353, -0.00605751667, -0.0219482388, 0.00377979199, -0.0075472719, -0.00616011722, -0.00909448322, -0.0225228, 0.00146718312, 0.0296473578, -0.0243778117, -0.0170726757, -0.011885209, 0.0120493695, 0.0120739937, -0.00984962098, -0.005778444, 0.0115076406, -0.00369360787, -0.00415736064, 0.00876616221, -0.0130097074, -0.00219974853, 0.00682086218, 0.0130425394, 0.00651306193, -0.001433325, -0.0224571358, -0.0144871501, -0.0233436, 0.000924427935, 0.0211766846, -0.00691525452, -0.00861841813, -0.029877184, -0.0296145268, -0.000967007, 0.0206513721, -0.0117374649, 0.0137566375, 0.00347404322, -0.000299079635, 0.0301890876, 0.0192560088, -0.0254284386, -0.0106047587, -0.0053885635, 0.0152915362, -0.00877437089, -0.00372849195, 0.0118605848, 0.0125746829, -0.0026840216, -0.00166930549, 0.0133462362, -0.00557324383, 0.00955413189, 0.0193873364, 0.0305502396, -0.00648843776, 0.00572509225, 0.0289907176, 0.0134447319, 0.0199783146, -0.00634069322, -0.0316172838, -0.0224899668, 0.0103010619, 0.0254120212, 0.00984141231, -0.00822443329, -0.0131328274, -0.00405476056, 0.00019981392, -0.0189276878, 0.0161944181, 0.0175979882, 0.0130507471, 0.0070383749, -0.0117292572, 0.0208483636, 0.0113598956, 0.000382185797, 0.00457596965, -0.0328484848, -0.0282191634, 0.00105473027, 0.0125828907, 0.00283997389, 0.00719432719, -0.00451440969, 0.0108181667, -0.00865125, 0.0308293123, 0.00877437089, 0.0187306963, -0.0236062575, -0.0116061363, 0.00489608245, 0.0142327016, 0.0295652784, -0.0125254346, 0.00153079524, -0.00926685147, 0.0121396575, -0.00420250464, 0.00617242884, -0.0140849575, -0.0182382148, -0.00612318097, 0.00206842041, 0.00125274865, 0.0215706695, -0.00458828174, 0.0167771876, -0.00897136331, 0.00957054831, -0.0223093908, -0.00117785053, 0.0134119, -0.00650895759, -0.00477706594, -0.00714097498, 0.0200768095, -0.00604110071, -0.0107525028, -0.00367924385, 0.0159317609, 0.00313341059, -0.0193873364, 0.00809720904, -0.00576202804, 0.0152176637, 0.000561223191, -0.0084624663, 0.0195350815, -0.0151848318, 0.0137566375, -0.00707941502, -0.000732565532, 0.0130097074, -0.00394395227, -0.0154064484, -0.000955721, 0.0150124636, 0.0144461105, 0.0165473633, 0.0208811965, -0.00343505526, -0.000216742963, 0.00293026213, 4.05591491e-05, 0.0116471769, 0.00165596744, -0.0113434801, -0.026003, -0.0186650306, 0.022243727, 0.00739542348, 0.0254612695, 0.015209456, -0.023918163, -0.00054121617, 0.00752264773, 0.00672647031, -0.00389880827, -0.00703427102, -6.66260166e-05, 0.00520798704, -0.0273326971, 0.00223052874, -0.00586462859, 0.0131082041, 0.00196787226, -0.013740221, 0.00673878239, 0.00576613238, -0.000358587771, -0.0205036271, -0.00848709, 0.00180473784, -0.0317486115, -0.0179098938, 0.000713071495, -0.0228182878, 0.000736669579, 0.00268812571, 0.00506434683, 0.00749802403, 0.0274147782, 0.0029815624, 0.00137586892, -0.00143537705, -0.0110562, -0.0134365242, -0.0187635273, -0.00421071285, 0.0020150682, -0.000838756794, 0.0363779329, -0.00831882562, -0.0159399696, 0.00189605204, 0.0134529406, 0.00143640302, -0.0137073891, -0.0087169148, -0.0377568789, -0.0138715496, -0.00895494688, -0.0386105143, -0.00202225032, -0.000786943652, 0.00621346897, 0.0149139678, -0.00584000442, -0.0184023753, -0.0020304583, 0.00725178327, -0.00856096204, -0.0102764377, 0.0188948568, -0.00531058712, 0.0355899632, 0.0178606454, -0.00234749285, -0.0142901577, 0.0210125241, -0.0183531269, -0.0099563254, 0.00788790453, 0.0016764875, -0.0151766241, 0.0120493695, -0.00523261121, 0.000232517734, 0.0153818242, -0.0107935425, -0.00929968338, 0.0319784358, 0.0017339437, -0.00771964, -0.00131328276, 0.0207991153, -0.023409266, -0.0196171608, 0.00357869547, -0.0195679124, 0.0226212963, 0.0401536189, -0.00849529821, -0.00471140211, 0.00531469099, -0.00682086218, -0.000147616069, -0.00169700757, -0.0218004938, -0.000280868087, -0.022424303, -0.000323960179, -0.0122299455, 0.00495353853, -0.0190590154, -0.00373259583, -0.00218333257, -0.001889896, -0.00628323713, 0.0067182621, -0.0293847024, -0.0239345785, 0.00522850687, 0.0236062575, -0.0104734302, 0.0288922209, 0.0145446071, -0.0155049451, -0.00346788741, -0.00478117028, 0.0158825144, -0.000826957752, 0.0101697333, 0.0274311937, 0.00350482343, -0.00508486666, -0.0134775648, -0.00792894512, -0.0138551332, -0.0135186044, -0.00976754073, 0.00680034235, 0.00538035529, 0.0206185393, 0.00277841394, -0.0128947953, 0.000194170905, 0.00522850687, -0.00283587, -0.00969366822, 0.0192724243, 0.000506332086, -0.0201260578, -0.00207457645, -0.0136171011, -0.0102271894, 0.0318142734, 0.0204872116, -0.0193052571, -1.91573836e-05, 0.0102600213, 0.00340837915, 0.00773605611, 0.00225720485, -0.00832703337, 0.0232286882, 0.0250344537, -0.0103256861, -0.0064186696, 0.0184187908, 0.00569636421, 0.0106047587, 0.0126239303, -0.00794536062, 0.0169085152, 0.00350482343, -0.00287075411, 0.00140459696, -0.0139946695, 0.0200768095, -0.00299182232, 0.00714918319, 0.0243778117, 0.00453082565, 0.00084952981, 0.0116718, 0.0197977386, 0.00580306817, 0.00676751044, 0.00372028374, -0.0135268122, -0.000812593731, 0.0119180409, -0.0166458599, 0.00640225364, 0.0140357092, -0.020717036, 0.0142901577, -0.010448806, -0.00772784837, 0.0269058812, -0.0166048184, 0.00374285597, 0.0175159089, 0.0141506223, 0.00427227281, -0.00629965309, -0.00175754167, 0.0097921649, 0.0140603334, 0.00225515268, -0.0234256815, 0.0355899632, 0.0201096423, -0.00108140626, 4.68434118e-05, 0.0315352, 0.0116307605, -0.0144707346, 0.0107032545, 0.00996453315, 0.000658693374, 0.00216896855, 0.014339406, 0.00020135293, -0.0088974908, -0.0103995577, 0.0109987436, -0.015447489, -0.014519983, -0.0184516236, -0.000242264767, 0.00545422733, -0.00930789206, -0.000133893278, -0.0118605848, -0.00938176364, -0.0128537547, 0.00740773557, -0.0119590815, -0.0161615852, 0.0141752455, 0.00827778503, -0.00422712881, -0.0093325153, 0.0167607721, -0.00410400843, 0.0255597662, -0.0019699242, 0.0036689837, -0.0135760605, -0.0160220489, -0.00361152762, -0.00227156887, 0.00966904406, -0.0052777552, -0.00335913105, -0.0113927284, -0.00498226658, -0.0259373356, -0.0129112117, -0.0020376402, -0.0184187908, 0.00282560987, 0.0298279356, -0.0112285679, -0.000466831, 0.00790432096, -0.0164652821, 0.00738721574, -0.00376337604, 0.0330290608, -0.0147251831, -0.0189276878, 0.00463752961, 0.00934072398, 0.00248087314, 0.00578665221, 0.012484394, 0.0262984876, 0.0025896295, -0.0228182878, -0.0118605848, -0.0223258063, 0.0126978029, 0.0152340801, -0.0160712972, -0.00540497946, 0.0100548211, -0.0158825144, 0.0095213, 0.00850350596, -0.0302547514, -0.0113106482, -0.00338375522, -0.0150945438, -0.0109084547, 0.0032544788, 0.00694398256, 0.0217184145, 0.0127142193, -0.0286459811, 0.00151745719, -0.0390373319, -0.00251370529, -0.0183859579, 0.00113783637, 0.00399730448, 0.00766218407, 0.00888107438, 0.000447593455, 0.0352616422, 0.0158496816, 0.0183859579, -0.00349866739, 0.00743235974, 0.0162354577, 0.00713276723, 0.00932430755, 0.00954592414, -0.0023844291, -0.0142983664, 0.00848709, -0.0255269334, 0.0114009362, 0.00906985905, -0.00370591972, 0.0356884599, -0.00713687111, -0.0158743057, 0.00662386976, 0.0157511849, 0.00280098594, 0.0233271848, 0.0155295692, -0.0134283165, -0.00283587, 0.00448978553, 0.00792484079, -0.0238525, -0.0152669121, -0.0104241818, 0.000422456389, 0.00793304853, 0.000387828826, -0.00324421888, 0.0193545055, -0.0265939757, -0.0174666606, 0.0159974266, 0.00625861343, 0.0107196709, 0.00709172711, 0.0164817, 0.0112778163, -0.00154721132, 0.00760472799, -0.00895494688, -0.0196828246, -0.0169577636, -0.00335092307, 0.0237375852, 0.0186978634, -0.0030718504, -0.0132395318, 0.0090616513, -0.0213900935, -0.0170562603, 0.0124761863, 0.00829009712, 0.00872512255, 0.00985782873, 0.00278867385, -0.0257075094, 0.00372643978, 0.0259701665, -0.0121150333, 0.0219646543, 0.00300823827, -0.011556888, 0.00927505922, 0.0154146561, 0.0190426, 0.00585231651, -0.00321754278, -0.00184372591, 0.00447747344, 0.00859379396, 0.00788790453, 0.0282191634, -0.0101779411, -0.00510949083, -0.0184680391, 0.0012055526, 0.00698502269, -0.0194201693, -0.0222765598, 0.000124723389, -0.0134775648, 0.00119529257, -0.0177129023, -0.0206349548, 0.00521209091, 0.0178278144, -0.0211110208, 0.00814645737, 0.0137238046, -0.00761704, -0.00546243554, 0.00451440969, -0.0190426, 0.0199947301, 0.00897957105, 0.0041265809, -0.00241315714, 0.0103913499, -0.0200439785, 0.0134857725, 0.00225925678, -0.0396939702, 0.00402398035, 0.00967725273, -0.019699242, 0.00160056341, 0.00545833167, 0.0124269379, -0.00178113976, -0.000344480213, 0.0109905349, -0.00219974853, -0.0012168386, -0.0091519393, 0.0311576333, -0.00043117741, -0.0127962986, 0.0142983664, 0.00634890143, 0.00707941502, 0.00691935839, 0.0207662843, -0.0107442951, 0.0121068256, 0.0141095817, 0.0272670332, -0.00998915732, -0.00539266737, -0.0111546954, 0.000917758909, 0.0165063236, -0.00274147769, -0.00241520908, 0.00183551782, 0.00998915732, 0.00424764911, -0.00293026213, -0.0121150333, -0.00155336724, -0.00282971398, -0.00246445718, 0.0070835189, 0.0164406579, 0.0219318215, 0.014700559, 0.0123694818, 0.0226377118, -0.000579178217, -0.00522850687, -0.0347691625, 0.00902061071, 0.000385776802, -0.0119180409, -0.0178934783, -0.0223093908, 0.0275625214, 0.0131820757, -0.00104806118, 0.0180904698, 0.00260399352, -0.0167115238, -0.012394106, 0.0271521211, -0.000333450706, 0.0283833239, -0.00638583768, -0.0274804421, 0.00161390146, -0.0173517484, -0.013592477, 0.0106047587, 0.0163667873, -0.0272342023, -0.0157593936, -0.0197320729, -0.0372315682, 0.00902061071, -0.0106786303, 0.00892211497, -0.0132067, 0.0247389637, 0.00155952328, 0.00737900753, 0.0130015, 0.0200439785, 0.0166130271, 0.0138387168, 0.0107032545, -0.00627913326, 0.00690294243, -0.00680855056, -0.0166048184, -0.0227690395, -0.00295899017, -0.0141752455, 0.0040157726, 0.0198305696, 0.00267170975, 0.00940638781, -0.0175159089, -0.0235734265, 0.000679213437, -0.010777127, -0.00314777461, 0.00248497725, 0.0271521211, -0.0189276878, -0.0116800088, 0.00241726101, 0.00646791747, 0.00769501645, 0.001912468, -0.00624219701, -0.012123242, -0.010686839, 0.0207827, 5.29673634e-05, -0.00829009712, -0.0088072028, -0.0050233067, 0.00913552288, -0.0118113365, 0.0176308211, -0.00798229687, -0.0135678528, -0.00167546154, 0.0116882166, -0.0190261845, -0.00882361829, 0.00653768564, -0.0053885635, 0.0211274363, -0.00721484702, -0.0268073846, -0.0220795665, -0.00410195673, 0.00220795674, 0.0158250574, -0.00318881474, 0.000905959925, 0.00916835573, -0.00413273694, -0.0269551296, -0.0147580151, -0.00961158797, 0.0024788212, 0.0247717965, 0.00157183537, -0.00815056078, 0.01428195, -0.00186527194, 0.0139125893, -0.0068824226, -0.0169905964, 0.00337965111, 0.00349456328, -0.00831882562, -0.00746929599, -0.00247266516, -0.0164817, -0.00739952782, -0.00885645114, -0.00488377037, -0.0245748032, -0.0172696691, 0.0143476147, -0.0130753713, 0.00118400645, 0.00351303141, -0.0140439179, 0.0184352063, 0.00335092307, 0.00188271399, 0.0243942272, 0.0175979882, -0.0157676, -1.51495633e-05, 0.0106129665, 0.0185665358, 0.00736669544, 0.00257731741, -0.0158086419, 0.0124105224, -0.00174112571, -0.0023844291, -0.012484394, 0.0075021279, -0.0142901577, 0.0105226785, -0.00900419522, 0.0208811965, 0.0124269379, -0.0116061363, 0.00604930893, 0.0007679626, 0.00582769234, -0.00730103161, 0.0120986179, -0.00448157731, -0.0232451055, -0.00257936935, -0.0160959214, -0.00806848146, -0.0194037538, -0.00938997138, -0.0125582665, -0.00327499886, -0.00473192194, 0.000174676868, 0.00286049396, 0.00278457, 0.0405804366, 0.0301890876, 0.0012506966, 0.0167607721, 0.00346788741, -0.0218497422, -0.0188784394, 0.00192580605, 0.0126157226, 0.0354258046, -0.00668543, -0.00797819253, -0.00132046477, -0.00191554602, 0.0199126508, -0.0112121515, -0.00533931516, -0.000150437569, 0.0103503102, -0.00561428396, -0.00510949083, -0.00544191571, 0.00306774653, -0.0218989905, 0.0107196709, 0.00595491659, 0.00480989832, 0.0062627173, -0.013502189, -0.0181397181, -0.0129276272, 0.0089877788, 0.0229824483, 0.0081669772, 0.0109166633, -0.0321261808, -0.0133626526, -0.00156567933, -0.00267376169, 0.00209714845, 0.0039193281, 0.00400140835, -0.0108838314, 1.55343132e-05, -0.00622578105, 0.0073379674, -0.000974702067, 8.04770461e-05, 0.00511769857, -0.0011563045, 0.0200768095, 0.0101122772, -0.00292000221, 0.0076129362, 0.0156280641, 0.0218661577, -0.00133585487, 0.014700559, 0.0230316967, 0.00163236947, 0.0211766846, -0.00244393712, -0.00175138575, 0.00411221664, 0.00434614532, -0.0116718, -0.0311576333, -0.0129686678, -0.00233312882, 0.0012394106, 0.018500872, -0.0109330788, 0.00640635751, -0.0159563851, -0.00551168341, -0.0204543788, -0.00461701, -0.00507665891, 0.0020643163, -0.0127552589, 0.0169413481, 0.0136745572, 0.0100137815, -0.0154556967, 0.00578665221, 0.000533521117, 0.0183695424, 0.0125090182, 0.00517515512, -0.000589438248, 0.0105308862, -0.0222601425, 0.00285639, 0.00123222859, -0.0170562603, 0.00730513548, -0.0011563045, -0.00225925678, 0.0139782531, -0.00346788741, -0.0106129665, -0.00715739094, -0.000544807175, 0.0107607106, -0.0287116449, -0.0101122772, 0.0106047587, 0.0174830761, -0.000556606159, 0.010957703, -0.0325694121, -0.0139946695, -0.0091109, 0.0116389683, 0.023409266, -0.0170398448, -0.0126895951, -0.00466625765, -0.00180884183, -0.0101943575, 0.00824085, 0.00383519614, -0.0159810092, -0.0143476147, -0.0177621488, -0.0143311983, 0.00436256127, -0.00838038605, 0.014249118, -0.0248210449, -0.0184844546, -0.00730513548, -0.00937355589, -0.00421071285, 0.00212177238, -0.012903003, -0.00112347235, -0.0145938545, -0.0237868335, 0.000216742963, -0.0212915968, 0.000551476143, -0.00460469769, 0.0120822014, 0.0145774391, 0.0233928487, 0.00584821217, -0.0185337029, -5.18451707e-05, -0.0057333, 0.00249523716, 0.00138818088, -0.00618474092, -0.00636531739, -0.00155234127, -0.0113434801, 0.00382493599, 0.0150206713, -0.0152751198, 0.00477706594, 0.00146923505, -0.024968788, 0.023080945, 0.00632427726, -0.0011480964, 0.0190918483, 0.0190754328, -0.001901182, -0.0106457984, -0.00363820372, 0.00145487103, -0.0196007453, 0.00309442263, -0.00145281909, -0.0176308211, 0.022900369, -0.00251165335, -0.00264503364, 0.0201424751, -0.0229332, 0.00851992238, 0.00266760564, -0.00242136512, -0.00408143643, 0.00598364463, -0.00494943466, 0.00365667162, -0.052006, -0.013649933, 0.00448157731, 0.0107935425, 0.0162354577, 0.00373259583, 0.00347404322, 0.0100466134, 0.0151602076, 0.0207006205, 0.00795356836, 0.00499868253, -0.00616422109, 0.0112285679, -0.0254612695, -0.00537214754, 0.0189441033, 0.00502741057, -0.00488377037, -0.00716970302, 0.00525313104, -0.00209509651, 0.00752264773, -0.00612728484, 0.00978395622, -0.00331398705, -0.00381467608, -0.00763756, -0.00917656347, 0.00325242686, -0.023950994, -0.0156773124, 0.0103995577, -0.00411016447, 0.0140521256, -0.00139023294, -0.000568918185, -0.0204379633, 0.00331193488, 0.00306569436, 0.00440770527, 0.0119508728, -0.0048140022, -0.00272300979, 0.0053680432, 0.0248046275, 0.00758420816, 0.00916835573, 0.0174009968, 0.0113434801, -0.00853633787, 0.0114583923, 0.00323395873, 0.00929968338, -0.00427227281, 0.00332014309, 0.00360742351, -0.00838859379, 0.00577023625, -0.00446516136, -0.0231794417, 0.00111116038, 0.00828599371, -0.00905344356, 0.00584821217, -0.0100055728, -0.0155131528, 0.00176472368, 0.0193216726, 0.00678803027, -0.000317034661, -0.00302465446, 0.015299744, 0.00735438336, -0.00362794357, 0.00894673914, 0.0123202344, -0.0130343316, 0.0156362727, 0.0224735513, -0.00254858937, 0.00395010831, 0.00892211497, 0.00211151247, 0.0117292572, 0.0159399696, 0.00517105078, -0.000754624605, -0.00296309427, -0.0152504966, 0.0277102664, 0.00429689698, 0.00169803353, 0.0335543752, 0.00842963345, -0.0066074538, -0.00549937179, -0.0164324511, 0.019453, 0.010777127, -0.0157840177, -0.00194940413, -0.0140275015, 0.0173189174, 0.0170398448, -0.00912731513, -0.0127798831, -0.0120411618, 0.0024295731, 0.0182218, 0.00744467182, -0.00271069771, 0.00955413189, -0.0114748087, 0.0173681639, 0.00199762615, -0.00661976589, -0.00255884929, 0.000100740588, -0.0233928487, -0.00385366403, -0.0184516236, -2.51210222e-05, 0.000174292116, 0.0253135245, -0.00195350801, 0.00230234885, -0.00764576811, -0.00787148904, -0.0233928487, -0.00717380736, 0.0357541218, 0.00872512255, -0.0331932232, -0.0112449834, 0.00417788094, 0.0078222407, 0.00833934546, 0.00258757756, 0.015447489, -0.0231466088, 0.00717791123, 0.00624219701, -0.0108263744, -0.020388715, -0.0286459811, -0.0103010619, 0.0154556967, -0.0146348951, -0.0093161, -0.00625450909, -0.00258347346, 0.00945563614, 0.0157019366, -0.0145281907, 0.00658693397, 0.00815056078, -0.00393164, -0.00600416446, 0.00606572488, -0.0053434195, -0.0190426, -0.0194201693, -0.013592477, 0.00134611479, 0.00330577907, -0.0206185393, 0.0097921649, 0.0175815728, -0.0159810092, 0.00985782873, 0.0131984921, 0.00769912032, -0.000510949059, 0.00280098594, 0.0164981149, -0.0228675362, -0.0129768755, 0.0144461105, 0.00121068256, 0.00427227281, 0.0171055086, -0.0074734, 0.00837217737, 0.00606162101, -0.00596722867, -0.00292615825, 0.00376748, 0.00778120058, 0.00740363169, 0.0209632758, 0.0267581362, -0.0189769361, 0.00638994155, 0.00248497725, 0.0041286326, -0.0174174123, 0.015447489, -0.00437487336, 0.00411016447, 0.00862662587, -0.00760883186, -0.00424764911, -0.011975497, 0.00463342573, -0.00352329132, 0.0125418501, 0.0207334515, -0.00783044845, 0.0103913499, -0.0102436058, 0.0148318876, -0.010686839, -0.0165063236, -0.0115650967, 0.00685779843, -0.0333409682, -0.00382288406, -0.0145117743, -0.00213613641, -0.0153325768, -0.00547064375, 0.00987424515, -0.0127634667, 0.00562249171, -0.0125090182, 0.0224078875, 0.0284325723, 0.0164324511, 0.00537625141, 0.00590566825, -0.00702606281, 0.0160056334, 0.00331809092, -0.000656641379, 0.000372438779, 0.00728871953, 0.0248210449, -0.000166853599, 0.0286788121, 0.0218004938, 0.0316336975, -0.0245748032, -0.0124926027, -0.0150452955, -0.00629554922, -0.0038393, -0.00936534815, 0.0086020017, -0.0201096423, 0.0092422273, 0.00356227951, -0.00556914, -0.020569291, 0.0124433544, -0.000753598579, 0.00977574848, 0.0165473633, -0.00202225032, 0.00595491659, -0.000817210705, -0.00657872576, 0.0182710458, -0.000669979432, -0.0163667873, 0.014790847, -0.00152566517, 0.000792073668, 0.00100240414, -0.0108017512, 0.00665259827, -0.0197156575, -0.022572048, -0.0195022486, 0.00755137578, -0.0296966061, -0.00602878863, 0.0115158483, 0.0111136558, -0.00232697302, -0.0295981113, -0.0187799428, -0.00526954699, -0.0164570753, 0.00302465446, -0.00688652648, 0.00902881939, 0.00541729154, 0.00982499681, 0.0218169093, 0.0101615256, -0.0146923512, 0.0153736165, 0.0128209228, -0.013920797, -0.000679726421, 0.0123202344, -0.0134283165, -0.0327992365, 0.0108427908, 0.0056307, -0.0134611484, -0.0130507471, -0.0104734302, -0.00607803697, -0.0128537547, -0.020897612, 0.000403475366, -0.00795356836, 0.000653563358, -0.0174666606, 0.0149468, -0.00408759248, 0.001399467, -0.00109987427, 0.00806027278, 0.0253463574, 0.00269017764, 0.00740773557, -0.0282027479, 0.00154618523, -0.0156608969, -0.0187306963, -0.0276117697, -0.00179550378, 0.0188456085, 0.0133626526, 0.00914373156, -0.00994811673, 0.0228018723, -0.00207662839, 0.0146513106, -0.00413273694, -0.0200111456, -0.022391472, 0.00105011323, -0.00516694691, -0.0130507471, -0.0103913499, -0.0179755576, 0.0115240561, 0.0179591421, -0.00281945406, -0.00908627547, 0.00870049838, -0.0171711724, -0.0137976771, 0.00161082344, 0.0435681567, -0.0181068871, -0.00636531739, -0.00132764678, -0.0105883423, 0.00879078638, -0.0240166578, -0.0114912242, 0.0136581408, -0.0179919731, 0.00586052425, 0.00281535, -0.00783865619, -0.0224899668, -0.00650895759, -0.0301562548, 0.00231260899, -0.00943101197, -0.0151027516, -0.00404655235, -0.0184516236, 0.00666491, -0.0101040695, -0.0109412875, -0.0119672893, 0.0856917, 0.00569226, 0.0222108942, -0.0361152776, 0.0159974266, -0.0118687926, -0.0076129362, 0.0552563742, 0.00427637715, 0.0139125893, 0.0103995577, 0.00879899412, -0.019453, 0.0164734907, -0.00341043109, -0.00890569855, 0.00393779622, 0.00512590678, -0.0100137815, -0.019370921, 0.0033037269, -0.0224407185, 0.00264092954, 0.000588925264, -0.0114009362, 0.00758831203, -0.0272177849, -0.0124351466, -0.0110315755, -8.74666875e-05, -0.00858558621, 0.0330783091, 0.020060394, 0.00242136512, -0.0364436, 0.0105555104, 0.00198428822, 0.00899598654, 0.0179263093, -0.0239345785, 0.00399935665, 0.000830548757, 0.0239674114, -0.00447747344, 0.010777127, -0.0114583923, 0.0104898466, -0.0199454818, -0.0111382799, -0.00172881363, -0.0037408038, -0.000594568264, -0.00231466093, -0.0238525, 0.0198634025, -0.0112531921, 0.00832703337, 0.00138715492, 0.00311494246, 0.021078188, 0.00940638781, 0.00730923936, -0.00632427726, -0.00843784213, -0.00185398594, 0.0140357092, -0.0152587043, -0.00376953185, -0.0105883423, -0.00677161431, -0.00332219503, -0.0179755576, 0.012993291, -0.0101861497, -0.00463752961, -0.00035114924, -0.0157429781, 0.00865125, 0.00183141383, -0.0103092697, -0.0204707943, 0.0180412214, -0.0270536244, -0.0153818242, -0.00477706594, 0.00588925229, -0.0231630243, 0.000774118642, -0.0150781274, 0.00247471733, -0.00498226658, 0.042747356, -0.0103503102, 0.0086020017, -0.000824392715, 0.0164981149, -0.00187963597, 0.00745698391, 0.00687011052, -0.000638686353, 0.0121889059, 0.0149550075, -0.0123612741, 0.00195658603, -0.0119590815, 0.0133380285, 0.0038782882, 0.00276815379, 0.0173681639, 0.0244434755, 0.00948026, -0.00461701, 0.00656231, 0.0116800088, 0.00346583524, -0.0108345831, 0.00121068256, 0.0057989643, 0.0274640266, -0.000797203684, 0.0204707943, -0.00443232944, -0.00548705971, -0.00989066064, 0.0041717249, 0.00423123315, 0.0142573258, 0.00701375073, 0.0158578902, 0.0230973605, 0.0105965501, 0.0106129665, 0.0112696076, -0.00437487336, 0.0252150297, 0.0169577636, -0.0132231163, -0.0227033757, -0.0168018118, -0.00117785053, -0.00230234885, 0.000205072181, 0.0159810092, 0.000547885138, 0.0251001175, -0.0143968621, -0.00160979736, -0.00423533702, -0.00600416446, 0.0126403468, -0.00482631428, -0.00408964464, -0.007576, -0.0174830761, 0.0171383396, -0.00735027948, 0.00812183321, -0.00636942126, 0.00215870864, -0.00501099462, -0.00235364889, -1.7682507e-05, 0.0121478653, 0.0070178546, 0.00425996119, -0.0176964849, 0.0182874631, 0.000493250554, 0.0122627774, 0.00295078219, 0.0369360782, 0.00250754924, 0.0151437921, 0.0173189174, -0.0237211697, -0.00469088182, -0.00927505922, -0.002889222, 0.0332917199, -0.0174174123, -0.0113024395, -0.000213921448, -0.00178113976, 0.0415654, 0.00432152115, -0.00452261744, -0.0126485545, -0.0139536299, 0.0174502451, 0.0127060106, -0.0195022486, 0.00201404234, -0.00464984169, -0.00473602582, -0.0120247453, 0.00598364463, 0.00628323713, -0.00504382653, -0.0191410966, -0.00230645295, 0.00238032499, 0.00368745183, -0.010957703, 0.02173483, 0.0156444814, 0.0202573873, 0.00769501645, -0.00529827503, -0.0133380285, -0.00613549305, 0.00738721574]
13 Jun, 2023
Top 10 Programming Languages of 2015 13 Jun, 2023 Programming world is growing exponentially with each passing year. There are tons of programming languages one can learn. The question which comes to everyone’s mind is which language is most relevant given the current and future market needs. Let’s see which languages are popular enough today to deserve your attention. Java: There isn’t any doubt, Java is holding its position as the most popular language from long time. It is still the most preferred language for building the backends for modern applications. According to Forrester analyst and long-time Java watcher Jeffrey S. Hammond, “It’s a good ‘server side’ language for implementing infrastructure,Large companies are comfortable deploying it into their data centers via middleware, and using it to integrate to all sorts of devices, including mainframes.” Java is actually backed by some of the most influential software companies including IBM and Oracle. The fact that native Android apps for smartphones and tablets are coded in Java gives it a further edge over other languages. Python: Python has replaced C & Java in most schools as the first programming language to be taught in the introduction to programming classes mainly because of its simple and straightforward syntax. One of the prime reasons as to why python became so popular is the tons of frameworks available for literally anything ranging from web applications to text mining. JavaScript: JavaScript is the ultimate scripting language. Every browser supports JavaScript and with the power of node.js, even the backend can now be written using JavaScript. It has a strong open source community supporting it with tons of popular web frameworks & libraries. JavaScript also gave birth to JSON, a universally popular data exchange format. PHP: Even with so many new languages for server side scripting, PHP is still a very popular choice for server side code. The reasons for its popularity are: Easy to start with, supported by a great community and documentation, all modern CMS are built on PHP, it’s secure and has all features of any modern programming language. C/C++/C#: C/C++ are the ideal starting point for any programmer. It is the foundation on which every other language is basically based. It is not a very high level language which in fact is good. C is still the preferred language to build software for embedded systems and system kernels. C++ is the most used language to teach students the concepts of Object Oriented programming which gives its popularity a big boost. Last, but not the least, C# is the primary language used by developers working with Microsoft technologies including Azure cloud, .Net and Windows phone apps. The popular game development engine Unity also uses C# as primary language. SQL: Data is the core of every application. Data is stored in Database. SQL (Structured Query Language) is still the preferred language to interact with databases like Microsoft SQL server, Oracle or MySQL. SQL is never used in solo, it gets invoked through another server side programming language.It is also the preferred language to be taught in Database Management Systems class at most colleges around the world. Ruby: Ruby (also known as Ruby on Rails) is another popular programming language which is being used to create web apps. Ruby skills are high in demand these days especially in beginner companies. The reason for popularity of Ruby is ease of learning and its power. Objective C: Objective C is the main programming language which is used to develop iOS apps. With more than 1000 new apps coming to apple’s app store every day, Objective C will remain one of the most popular languages at least for next few years. Perl: Perl is a very powerful language with all key component which any cyber security tool needs. Perl is also used for Web Application development, desktop app development, system administration and test automation. R: As the popularity of big data analytics and data mining increasing exponentially, R has become one of the most popular language. From science to social media analytics ,R is making its own big way. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015
https://www.geeksforgeeks.org/top-programming-languages-of-2015?ref=asr10
Languages
Top 10 Programming Languages of 2015
Languages, Top Dying Programming Languages in 2020, Top 10 Programming Languages of 2015, 5 Most Difficult Programming Languages of the World, Introduction to Programming Languages
GeeksforGeeks
[-0.0259361062, 0.0166574512, -0.0100508537, 0.0152723948, 0.0178218801, 0.015836224, 0.0219770502, 0.00869644, -0.00283752754, 0.0185818225, 0.00413678447, -0.0190598499, 0.0199546218, 0.00294477749, -0.013764767, 0.0190966222, 0.0145369666, -0.00831034, -0.026009649, -0.00237635267, -0.0203468502, -0.032309819, -0.0282404479, 0.00319298473, 0.00566586247, 0.0241220482, 0.0221854206, 0.00854322594, -0.0353741, -0.0246000774, 0.0176747944, 0.00768522592, 0.0110314246, -0.0488079265, -0.00637371233, 0.0163019951, -0.00721332617, -0.0363301598, 0.0233743638, 0.0248084478, 0.0367469, 0.0166574512, 0.0187289082, -0.01799348, 0.00758104026, -0.0152601376, -0.0206777938, -0.0221363921, 0.00212814566, -0.0411349572, 0.00171906373, 0.0156401098, 0.0358889028, 0.0541765541, 0.014304081, 0.000303364184, -0.00347489887, -0.00290340977, 0.0124777667, -0.00249432772, 0.0169761367, 0.00825518277, -0.0122755244, -0.0409633592, 0.0136544527, 0.0107188681, -0.0326039903, -0.00697431201, -0.00403872738, -0.00672916928, -0.0054084626, -0.00841452554, 0.00725009758, 0.0402034149, -0.00267512049, 0.0063982266, -0.00835324, 0.0277011339, -0.0107495105, 0.0148066236, -0.0156155946, -0.00816325471, 0.0121345669, -0.0295887329, 0.00462707, 0.00149460486, 0.0181037933, -0.0448366143, 0.0202733073, 0.0126248533, -0.0137402527, 0.0270147342, 0.00818776898, -0.014304081, -0.00485076243, 0.0195011068, -0.0294661615, 0.00241005979, 0.00450143404, 0.0844762, 0.0187534224, 0.0141079668, 0.0262547918, -0.021143565, 0.0141937668, -0.0457681566, -0.020604251, 0.0496659242, -0.0198688209, 0.0205674786, -0.0295151901, -0.0153336804, -0.00801616907, 0.0343690179, 0.0140466811, 0.000569956959, 0.0115768677, -0.104626939, 0.0128577389, 0.0193295069, -0.00199331716, 0.0345896445, -0.0346631892, 0.00715204049, -0.0563828386, 0.0311331321, 0.00025720839, 0.00357602024, 0.0260586776, -0.00778328301, 0.00834711175, 0.00425322726, -0.0303241611, 0.000669163186, 0.0215603076, 0.0346631892, 0.0393699296, 0.0265734773, -0.00334926322, -0.018079279, -0.0233130772, -0.0166697092, 0.00294784177, -0.0305693038, -0.00568731222, 0.0267205629, 0.0190598499, 0.0579027236, -0.0070539834, 0.000939203252, -0.0264263917, -0.0172457937, 0.0238156207, 0.0255929064, -0.00297082402, -0.0113562392, 0.0332903899, 0.0333639309, -0.0183244217, 0.00995892473, -0.033461988, -0.0297848471, -0.0170619376, 0.00587116927, 0.00229821354, -0.0163877942, 0.0544216968, 0.00702946912, -0.0698166639, 0.0133112529, -0.0148556521, 0.00227063498, -0.029245533, -0.0132744815, -0.0360605, 0.00146013161, 0.0347612463, -0.0365507863, -0.0136544527, 0.0167800225, -0.00590181211, 0.0181405656, 0.0164735951, 0.00510816276, 0.023031164, -0.0170741938, 0.0577066094, -0.0186431073, 0.0227860212, 0.0070723691, -0.0308389608, 0.00706624053, 0.00484157, -0.00627565524, 0.0243181624, -0.0151375663, -0.0285836477, 0.0620701499, 0.00716429763, 0.0607463792, -0.0302996468, -0.0410859287, -0.0242446195, 0.0305447895, 0.0192191936, -0.00343812746, 0.0373842716, 0.0167555083, 0.0808971152, 0.0125206672, -0.0238278769, 0.0376539305, -0.040767245, 0.0254213065, -0.0063798409, -0.00898448285, 0.00574859791, -0.0030504954, -0.020959707, -0.027799191, 0.00270882761, -0.00613776222, 0.00372923445, -0.000101504433, -0.0266470201, -0.0260586776, -0.0159342811, 0.0170987081, 0.0235949922, -0.0201384798, 0.0195256211, 0.0261322204, -0.0211680792, -0.0168290511, -0.0119874813, 0.032922674, 0.0160323381, -0.0248207059, -0.0429490134, 0.048317641, 0.0414046161, -0.00793649722, -0.0239136778, -0.0143653667, -0.0290739331, 0.0211558212, 0.00813874, 0.0278727338, 0.0313537605, 0.0216338504, -0.0126738818, -0.0823189467, 0.0308144465, 0.0222589634, -0.0638351813, 0.0186063368, 0.0224550776, 0.0202855654, 0.0313537605, -0.00412452733, -0.0169883948, 0.000977506861, -0.0014486406, 0.0295151901, 6.85633713e-05, 0.0166084226, 0.0474841557, 0.00368327019, 0.0411349572, -0.0354966745, 0.0413555875, -0.0161303952, 0.0343445, -0.00516944844, 0.00751975458, 0.0230924487, -0.0236440208, -0.0157136526, 0.0184347369, 0.0210577641, -0.0109211104, 0.00454739854, 0.0431696437, 0.0208493937, 0.014304081, -0.0249065049, -0.00636758376, -0.0159955658, -0.0182999074, -0.00620824052, -0.0101979394, 0.0115462244, -0.00514799822, 0.0204081368, 0.0222467072, 0.00404485594, -0.027088277, -0.0140466811, -0.004856891, 0.0397866704, 0.00182018511, -0.0173193365, 0.003778263, -0.00515719131, -0.0285101049, -0.0271618199, 0.0159710515, -0.0252987351, -0.00122801203, -0.0392228439, 0.00512348395, -0.0370165594, -0.00587729784, -0.00150839414, 0.0488324389, 0.0233130772, 0.00865966827, -0.00256021, -0.0339522734, -0.0169638805, 0.0192804784, 0.0175154507, -0.0268676486, 0.0249923058, 0.0170251653, 0.00588342641, -0.004856891, -0.0249432772, -0.0124716386, 0.000646947126, -0.020420393, -0.0208126213, -0.0446650125, 0.00263068848, 0.0349328443, -0.00889255386, -0.0250781067, 0.0223815348, 0.0114849387, 0.00883739721, -0.0216951352, -0.0232027639, 0.0215603076, 0.0167064797, -0.00448304834, -0.0614818074, -0.0151988519, 0.0188392214, 0.017723823, 0.029245533, 0.000908560411, 0.00533185527, 0.0358889028, -0.00483237673, 0.024195591, -0.0114849387, 0.0031408919, -0.0118036242, -0.020064937, 0.0301280469, 0.0354721583, 0.0212661363, -0.00528282672, -0.00231659925, -0.00434822, -0.0524115264, 0.0136912242, -0.00732976897, 0.0413801, -0.00896609668, 0.0312802196, -0.011877167, 0.0226879641, 0.00338297035, -0.0351044461, 0.0229698773, -0.044615984, 0.023925934, -0.0119139384, 0.00697431201, -0.00146549416, 0.0404485576, -0.0237543341, 0.0458907261, -0.00488447, -0.0362566151, 0.0113317249, -0.0406446718, -0.00400195597, 0.0170864519, -0.00748911174, 0.0263773631, -0.0245142765, 0.0205061939, 0.000815865817, -0.00375681301, 0.0202242788, 0.0195869077, -0.00295090606, -0.030226104, -0.0131886816, 0.0253232494, -0.00162100664, 0.028166905, -0.0364037, -0.0395905562, -0.0228963345, -0.0288287904, 0.0343690179, -0.0235459637, -0.0385854729, 0.0144634238, -0.0384383872, 0.00310718454, 0.00715204049, -0.0154807661, 0.00452901283, 0.0625604391, -0.00655756937, 0.0119323246, 0.0332413614, 0.00827969704, -0.0215970781, -0.0218544789, -0.0188147072, 0.0256664492, 0.0295397043, 0.0111968964, -0.015652366, -0.0182876512, 0.0117239533, 0.0244897623, 0.0130415959, -0.0153214233, 0.011337853, -0.0507935844, 0.00986086763, 0.0177483372, 0.00467303395, 0.00101198, -0.00192590291, -0.014034424, 0.00410307711, 0.0275540482, -0.0548139252, 0.0409633592, -0.00530121243, -0.00842065457, -0.0145614808, -0.028706219, 0.0324569046, 0.0253477637, -0.000556933752, 0.0264754202, 0.0437579863, -0.0208003651, -0.0451307856, 0.0264754202, 0.0235459637, -0.00945638213, 0.00765458308, 0.0299074184, 0.0287307333, -0.0110743251, 0.00236409553, 0.0189617928, -0.012869996, -0.0307409037, -0.0197707638, -0.00213121, -0.00674755499, -0.0603541508, -0.0163019951, -0.0113623673, -0.00207145652, 0.00402647024, 0.0314027891, -0.0218544789, -0.00531653408, -0.00594471209, 0.0371146165, 0.048856955, 0.0197707638, -0.0572163239, 0.0273089055, -0.0130906245, 0.0439295843, 0.0171599947, 0.0292700473, 0.0151865948, -0.00504381256, 0.0238769054, 0.0162039381, -0.0198320504, 0.00792424, -0.0107433824, -0.0371881574, -0.0484402105, -0.0229453631, 0.0388061, -0.0283630192, 0.00462094136, -0.0133847957, 0.0354721583, -0.0309615321, 0.0168903377, -0.0225163642, 0.0403259881, -0.0378990732, 0.0025111814, 5.08958547e-05, -0.0138383098, -0.0146472808, 0.019072108, -0.0138995955, 0.0518722124, 0.0134338243, 0.0154072233, -0.0223937929, -0.00711526908, -0.00710914051, 0.0300545041, 0.0245020203, -0.0123490673, -0.00572408363, -0.00473431963, 0.0414291285, -0.0132131958, -0.0107372534, -0.000603664084, -0.0252251923, 0.00648402655, -0.00889868289, -0.00842678268, 0.0051908982, 0.00179413869, 0.00332168466, -0.00753814029, 0.00688851206, 0.0144021381, -0.012955796, 0.0247961916, -0.0251761638, 0.0121897245, 0.00161487807, -0.0299809612, -0.00620517647, -0.0309125036, -0.00393760577, -0.0184469931, 0.00983022526, 0.0431451276, 0.0196727067, 0.0289023332, -0.0118403956, 0.00439724838, 0.00257399911, -0.0415026732, -0.0379726142, -0.0230924487, 0.0168903377, -0.00327265612, 0.0199913923, 0.0157994516, 0.0178218801, 0.00630016951, 0.0354231298, -0.0173806231, 0.0019979137, -0.0240117349, 0.0137157384, -0.00525218388, -0.00576085504, -0.0196727067, -0.00316540617, 0.0100140823, 0.0118955532, -0.0179812219, -0.000382652535, -0.0222712215, -0.0197830219, 0.0113930106, 0.011699439, 0.0082613118, -0.00908866804, 0.0176257659, 0.00663111219, -0.0160813667, -0.0178341363, -0.0288287904, -0.0150395092, 0.0262057632, -0.0217564218, -0.0082613118, -0.00528282672, -0.00560764084, 0.0163265094, -0.0280443337, -0.0119261956, -0.00686399778, 0.0311576463, 0.0232272781, 0.0463810116, -0.00956056826, -0.0111846393, 0.0187411644, -0.00016020464, -0.000936138968, 0.013948624, 0.0119874813, -0.000939969323, -0.00452288426, 0.0234111343, 0.00502849137, -0.0129067674, -0.0355211869, 0.0163877942, 0.0213274211, -0.00943186786, 0.00266899192, -0.0246858764, 0.00345651316, -0.0590794086, -0.0101121394, -0.019697221, 0.0198443066, 0.0178954229, -0.0166084226, 0.0162652228, -0.0300545041, -0.0113930106, -0.020604251, 0.0144021381, 0.00126938, -0.0255929064, -0.000586044451, -0.0039314772, 0.011245925, -0.00134368881, 0.00379358442, -0.0086719254, 0.00459336257, 0.00929703936, 0.113059849, 0.00226297416, 0.0214009639, -0.0280443337, 0.0129680531, 0.0106575824, -0.0231292211, 0.0132009387, -0.028338505, 0.0227982774, 0.00605809083, -0.0196236782, -0.00253416342, -0.014573738, -0.0317950174, -0.0177483372, 0.0184469931, -0.0128945103, -0.0105840396, 0.000866426504, -0.014573738, -0.0013069174, 0.00576391956, 0.0138873383, 0.0262302775, 0.00136054237, 0.0139241097, 0.00286970264, -0.0297358185, -0.00417355588, 0.0396886133, 0.00184469938, 0.00364343449, -0.012869996, 0.00593551947, 0.00679658353, 0.0397376418, 0.00688851206, -0.0295397043, 0.00438805576, -0.016645195, 0.00253416342, -0.00948702544, -0.0332413614, 0.0042011342, -0.0326285027, 0.00732976897, -0.00922962558, 0.0132989958, 0.0102285827, 0.0349083319, 0.0322607905, -0.00787521154, 0.000705168524, -0.0100631109, -0.0246368479, -0.0344180465, 0.0176012516, 0.00133373, -0.0315743908, -0.0214009639, -0.0249065049, 0.0566279814, -0.00388244865, -0.0152601376, -0.0252497066, -0.0198688209, 0.0267695915, 0.0154194804, -0.0211925935, -0.021780936, -0.0390022136, -0.00345957745, 0.0366733596, -0.000164896817, -0.0278727338, 0.0311576463, 0.00207758509, -0.0169025939, -0.0029738883, 0.022038335, -0.0167187378, -0.0130783673, 0.0224183071, 0.0116810529, 0.00901512522, -0.00694979774, 0.0337806754, 0.00186921365, -0.0205061939, -0.000553103397, -0.0309615321, -0.00311178109, 0.0251271352, 0.0255929064, -0.0014670263, -0.0172948223, 0.0206655357, 0.0125635676, 0.0113562392, 0.0225531347, -0.0177360792, 0.00696205487, 0.0181528218, -0.00386406295, -0.00447385572, 0.00370778446, -0.0125329243, -0.0183611941, 0.0279462766, -0.0413555875, 0.00435741292, 0.00698044058, -0.00315927761, -0.0271127913, 0.0183366798, 0.0433902703, 0.0162161943, 0.0563338101, -0.0136054242, -0.0118710389, 0.0111907674, -0.0227369927, -0.0247226488, -0.0127596818, -0.00188147079, 9.10188319e-05, 0.016375538, 0.0102469679, 0.0369185023, 0.036158558, 0.00113914779, -0.0102776112, -0.00846968312, -0.0307409037, 0.0237053055, -0.0263528489, -0.0110559389, 0.0047220625, -0.00316540617, 0.0177605934, -0.00789972581, -0.000320792315, 0.0280933622, 0.0128822532, 0.0181528218, 0.0240852777, 0.00456271973, 0.00858612545, -0.00389164151, 0.0165348798, 0.0192191936, -0.0320891887, 0.0173683651, 0.00833485462, -0.00618985482, -0.0370165594, 0.0253967922, 0.043537356, -0.00820002612, -0.0281914193, 0.0155297946, -0.0227737632, 0.0233253352, -0.0478763841, -0.0132622244, 0.0218299646, -0.00502542686, -0.044542443, -0.00594471209, 0.0406446718, -0.00386406295, 0.0159955658, 0.055157125, 0.000347413268, 0.0213396791, 0.00687012635, 0.0175644793, -0.0201384798, 0.00987312477, -0.000206456185, -0.0124409953, 0.0244529918, 0.00568424817, 0.0237298198, 0.0320156477, 0.0357663296, -0.00763006881, -0.0253232494, 0.00595084066, 0.0105043678, -0.00835324, 0.000639286416, 0.0486118123, 0.00957282539, 0.013764767, 0.0339522734, -0.000831953308, -0.00396212, 0.0271373056, -0.0133357672, 0.0224305633, 0.0132377101, -0.00657595508, 0.0113991387, 0.0092112394, 0.00692528347, 0.00881288294, -0.0144634238, -0.0191701651, 0.026009649, -0.0115033248, 0.0132744815, 0.00864128303, -0.023840135, 0.00449837, 0.00129083, 0.00892932527, -0.00624501193, 0.00789359771, 0.0174296517, -0.00015848098, -0.009713782, -0.0149537092, -0.0268676486, -0.00567199104, -0.0272108484, 0.00839614, 0.0467242114, 0.0134705957, 0.00218023849, 0.00876998249, -0.00954218209, -0.0237543341, 0.0293435901, 0.022038335, 0.00952379685, 0.0439541, -0.00805294048, -0.00403259881, 0.0066678836, -0.0163387656, 0.00761781167, -0.0247839335, 0.0121897245, 0.0207145642, -0.0114113959, 0.00388551294, 0.0156033374, -0.0307899322, -0.0236685351, 0.0285346191, 0.000537015905, -0.00841452554, -0.000322324457, -0.000265826704, 0.0259851348, -0.00483850529, -0.00207298854, 0.000423637364, -0.0243917052, 0.0132989958, -0.0114665534, -0.00443095574, 0.00676594069, 0.00266286335, 0.0222834777, 0.0148188807, 0.00504994113, 0.000904730055, -0.0198320504, 0.00840839744, -0.0131028816, -0.019966878, 0.000821228314, -0.0191211365, 0.0154685089, 0.0380216427, 0.0172580518, -0.00535943406, 0.00484463386, -0.00634919805, 0.0310595892, -0.028068848, -0.0135931671, -0.0164981093, -0.0141937668, 0.000955290743, 0.00970152486, 0.00845742598, -0.024918763, -0.00569037674, -0.0263283346, -0.0351534747, 0.0395170152, -0.0372617021, 0.00300759543, 0.010528882, 0.0163877942, 0.00315621332, -0.0234969351, -0.0404730737, 0.00995279662, 0.00731751183, -0.00265213847, 0.0211925935, -0.00328491325, -0.00103955856, -0.0075932974, -0.000178877614, -0.0164123084, 0.00851871166, 0.00656982651, -0.0300054755, -0.0081264833, -0.0274805054, 0.0088067539, -0.00526750553, 0.00670465501, 0.0518231839, 0.0111049674, 0.018618593, -0.0254458208, -0.0226389356, -0.0115217101, 0.0248452201, -0.00941961072, 0.0149291949, -0.000769901497, 0.0295397043, 0.00338297035, -0.00612244057, -0.020420393, -0.0144756809, -0.0409878716, 0.0365998149, 0.0171599947, -0.00928478222, 0.00234264554, -0.0368939862, -0.00204541, 0.0238523912, -0.0520192981, 0.0364037, 0.0289268475, -0.00381197012, 0.042385187, -0.0174051374, 0.0108230533, 0.0265734773, -0.020604251, -0.0230801925, -0.0185818225, -0.00953605399, 0.0365507863, -0.0404485576, -0.0157994516, -0.00264447764, 0.00454739854, -0.0249800477, -0.0199301075, 0.0506465, 0.0401298739, 0.0079916548, 0.00796101149, -0.0175522231, 0.0182876512, -0.00876998249, -0.0437579863, -0.0250535905, -0.0502542704, 0.0267205629, -0.00828582607, 0.00726848328, 0.0117055671, 0.00329410611, -0.0246368479, 0.0221731644, -0.000317345, 0.0065146694, -0.0377519876, 0.0104246968, 0.018618593, 0.00471593393, -0.000115580988, 0.0102224536, 0.0137034813, -0.00277624186, -0.00604276918, -0.0132131958, 0.0113868816, -0.012324553, -0.000711297092, -0.0131886816, -0.0237543341, 0.0216461066, -0.00975055341, -0.0173928794, -0.01619168, 0.0171599947, 0.00923575368, 0.0178831648, -0.0303241611, -0.00925414, 0.00318685616, -0.00658821221, 0.0329471901, -0.00611937651, -0.0195256211, -0.00388857722, -0.00259698136, 0.00555861229, -0.0237175636, -0.0157871954, 0.0298829041, -0.0184347369, 0.0104246968, -0.00297235604, -0.0191211365, 0.0158852525, 0.00248973118, -0.00672916928, 0.00913156848, 0.0120058674, -0.00869644, -0.0213274211, -0.00310258823, 0.0144634238, -0.0138873383, -0.00262915622, -0.000907028269, 0.0030765417, 0.0260586776, -0.0169271082, 0.0107004819, 0.00118894246, -0.0177851077, 0.00815099757, -0.0140099097, 0.020604251, 0.0117116962, -0.00447998429, -0.0326775312, 0.00367714162, -0.00722558331, 0.0191946793, 0.0133602815, -0.0108230533, 0.00756265456, 0.025200678, 0.0335845612, -0.0139118526, 0.0124655096, -0.00656982651, 0.0558435246, -0.00891706813, -0.0110498108, -0.0167432521, -0.00176656013, 0.00842678268, 0.00682722637, -0.0021005671, 0.011245925, -0.0363056436, 0.0265734773, 0.0139241097, -0.00723784044, -0.000674142619, -0.0360605, -0.00737266894, 0.012146824, 0.00919898227, -0.00319604902, -0.00626646215, -0.0194030497, 0.0090396395, 0.00243917061, 0.00303364173, 0.0197339933, -0.00821228325, -0.00758104026, -0.00221241359, -0.0421890728, -0.00932768267, 0.0217441637, -0.0277501624, 0.0237665921, -0.00332474895, 0.00896609668, 0.0146472808, -0.00145553518, 0.0233498495, -0.0194398221, -0.0220996216, -0.00216951361, -0.0239872206, -0.00731751183, 0.0213764496, -0.0112275388, 0.00295856688, -0.0199791361, -0.0025694028, -0.0117607247, -0.00411227, -0.00114604249, 0.00395599147, 0.00904576853, -0.0334129594, 0.00873934, 0.00440950552, 0.00667401217, 0.0304712467, 0.00228902069, 0.00869644, -0.00350860599, -0.0136912242, 0.0151375663, -0.0296377614, -0.00855548307, 0.0173561089, 0.00902125426, 0.00475270534, 0.0300054755, 0.0054084626, -0.0133357672, 0.027529534, 0.0103205107, -0.0126493676, 0.00675981212, -0.00730525469, -0.0252742209, 0.0190353356, -0.0132131958, -0.015836224, 0.012869996, 0.0102653541, -0.0199055932, -0.0126493676, 0.000821994385, -0.000981337158, 0.0182018504, 0.00359134167, 0.00154593156, -0.0156155946, -0.0133480243, -0.00737879751, 0.0129803102, 0.00838388316, -0.00964636821, 0.0205797367, 0.0416742712, 0.00978119671, -0.0170619376, -0.00733589754, -0.0120303817, 0.0124961529, -0.0119874813, -0.0203836225, 0.012600339, -0.0305447895, 0.0120487669, -0.00146549416, 0.0027624527, 0.0110498108, 0.0308879893, 0.0209351927, 0.018263137, 0.011423653, 0.0448611267, -0.00881901104, 0.0391738154, 0.0185818225, 0.0165226236, 0.0174173936, -0.00417355588, 0.0267695915, 0.0175277088, -0.0169516224, -0.0275050197, -0.0060642194, 0.021413222, 0.029245533, -0.0152601376, 0.0062511405, -0.000402187376, -0.00390083436, 0.000214116895, -0.00990989618, -0.0284855906, -0.0188759938, -0.00250198832, 0.0146350237, 0.0031991133, 0.00546361972, 0.0037384273, -0.00439418433, -0.0211925935, 0.0104430821, 0.00645951228, 0.00775876874, -0.0166697092, -0.00557393394, 0.0240852777, -0.00333087752, -0.0099773109, -0.00757491169, 0.00892932527, -0.00285438122, 0.012869996, -0.0213764496, 0.0269411914, -0.0344425589, 0.00563521963, -0.00544523401, -0.0316724479, 0.00442176266, 0.00682109781, 0.0116381533, -0.00341361319, 0.0063982266, -0.00903351139, -0.00478947675, 0.0176747944, 0.00681496924, -0.0157994516, -0.00752588315, -0.00726848328, -0.00685786922, -0.0310595892, 0.00859838258, 0.0011828139, -0.0266470201, 0.00559844822, 0.00388551294, -0.00211895281, -0.00588955497, 0.00509590562, 0.00770974, -0.0145492237, -0.0189985652, -0.0251271352, -0.00445853407, -0.0186553653, 0.0367223881, -0.00643499801, 0.0166329369, 0.0237053055, -0.00164552091, -0.00149077445, 0.0157013945, 0.00486914814, -0.00380584155, -0.0132131958, 0.0263283346, -0.00340442033, -0.00704785483, -0.0180915371, 0.0166942235, -0.0418949, -0.00298614544, 0.0109640108, -0.0113991387, -0.0118649099, -0.0134460814, -0.00775876874, 7.44525387e-05, -0.00396212, -0.00704785483, 0.0139731383, 0.00165624591, -0.00350247743, 0.00035239273, 0.00687625492, 0.012146824, -0.00124103529, 0.00755039742, -0.00293558463, 0.0340748467, 0.00584052643, -0.0406691879, 0.00748298317, 0.0146350237, 0.0110988393, 0.0299319327, -0.0135073671, 0.00938283931, 0.00350554171, 0.00697431201, 0.0468467847, -0.0152478805, -0.00301985256, -0.0192191936, 0.0116013819, 0.0287552476, 0.00139807991, 0.0178218801, -0.0019979137, -0.00873934, 0.027897248, -2.39157835e-05, 0.0123613244, 0.0146595379, -0.0155297946, 0.00714591192, -0.00843904, -0.00687012635, 0.0139731383, -0.0130048245, -0.00459336257, 0.000238056615, 0.00553103397, 0.003013724, -0.010890468, 0.0159097668, 0.0113930106, 0.00975055341, 0.0195991639, 0.0150149949, 0.0228718203, 0.0102285827, -0.0291229617, -0.023031164, -0.0410123877, 0.0157504231, 0.00410920568, 0.0286571905, 0.0119323246, -0.00275938842, 0.00728074042, -0.0145614808, 0.0172212794, 0.034001302, -0.0353495888, -0.0218912493, -0.0169025939, 0.0138383098, 0.00758716883, -0.0158117097, -0.00731751183, -0.0164858513, 0.027259877, 0.0036802059, 0.00935219694, -0.00126708171, 0.0201017074, 0.0045351414, -0.020873908, -0.000733513152, 0.0191946793, 0.0199423637, 0.00725622615, -0.00829195417, -0.00434515579, 0.0124716386, -0.00365262735, 0.00447385572, -0.00905189663, -0.0269411914, -0.00412759138, 0.000253952603, 0.00347796315, -0.0153214233, 0.00762394024, -3.64841399e-05, 0.0136544527, -0.0161303952, 0.00427467702, -0.020604251, -0.0186798796, -0.0171109661, -0.0128454817, -0.00126018713, -0.0149537092, -0.00699269772, 0.0154685089, -0.00259238482, 0.0151253091, -0.0171232224, -0.0231292211, 0.000925414, 0.00407243427, -0.00471593393, -0.0136544527, 0.0159587953, -0.0264509059, -0.00158576737, 0.0181283075, 0.00946251117, 0.0151253091, 0.00943186786, 0.0384874158, -0.0344915874, 0.0162407085, -0.00055118819, -0.0110743251, -0.0120732812, -0.0170864519, 0.0133112529, 0.0374578163, -0.0200159065, -0.00109778, 0.0370410718, -0.0127596818, -0.00770361163, 0.0137402527, -0.0197339933, -0.00252803485, -0.00585584808, -0.00373229873, 0.0295151901, 0.00951154, 0.00610711938, -0.0240117349, -0.0146717951, -0.0152356233, -0.0100876251, 0.0316479318, 0.00995892473, 0.0052092839, -0.0318685621, -0.00630016951, -0.00586810522, 0.0277501624, 0.00360053452, -0.00167003518, -0.0319175906, 0.0163632799, 0.00106790324, -0.00296316319, -0.00770361163, 0.0236685351, -0.00955443922, 0.00949928258, 0.0104185678, -0.0220260788, -0.00696205487, 0.00449837, -0.0144389095, -0.00953605399, 0.00396824861, -0.00577617669, 0.00700495485, 0.00345957745, 0.0255438779, 0.00922349654, 0.0147208236, 0.0183734503, 0.00258472422, -0.0293681044, -0.0213764496, -0.0423361585, -0.0239136778, 0.00943799689, 0.00889868289, -0.0069375406, 0.013225453, -0.0100018252, -0.00303057744, 0.00349941314, 0.0117484676, -0.0131519102, -0.0342709608, -0.0410369, 0.00744621176, -0.0027624527, -0.0058650407, -0.0232272781, 0.00398663431, -0.00392841315, 0.0166084226, -0.0205429643, -0.00667401217, 0.00737266894, 0.00350860599, -0.00756265456, -0.0109088533, -0.0126616247, -0.00905189663, -0.0247961916, -0.00566279795, 0.020702308, 0.00647176942, 0.0113317249, -0.0319666192, 0.0121345669, 0.0219402779, 0.00509284111, -0.000138946154, -0.00121115847, -0.00602744799, 0.0259851348, -0.0324323885, -0.00478028413, 0.00591713376, 0.000132817586, 0.00758716883, -0.014573738, -0.0222589634, -0.000829655095, -0.00746459747, -0.00197646371, 0.0069191549, -0.00790585484, 0.00818164, -0.0136299385, 0.0101243965, -0.000206456185, -0.0249432772, -0.0271373056, -0.00727461185, -0.00962185394, -0.00403872738, 0.0238891635, -0.0150885377, -0.00480786245, -0.0163265094, -0.0174051374, 0.000620900653, 0.0174296517, -0.0193662792, 0.019427564, 0.0190475937, 0.00805294048, 0.0247961916, 0.0121713383, -0.0187043939, 0.00130615139, -0.0110498108, 0.02968679, -0.0182386227, 0.000195731176, 0.0131151387, 0.0198688209, 0.0105962968, -0.00642886944, 0.0285346191, -0.00851871166, 0.0166819654, 0.0169638805, 0.0445914716, -0.015113052, -0.00767296879, 0.0216461066, 0.0210455079, 0.0058650407, -0.0209964793, -0.0122571383, -0.0194030497, 0.000838081876, 0.00965862535, -0.00566586247, -0.00394679885, -0.0136667099, 0.0120671531, -0.015922023, -0.0111233536, 0.0014233602, 0.031035075, 0.0184224788, -0.0018125244, -0.0267695915, 0.00519702677, 0.01169331, -0.000770667568, 0.025470335, -0.031035075, -0.0231292211, -0.00833485462, 0.00178801012, -0.00561683392, 0.0101182684, -0.00992215332, 0.02232025, 0.00419807, 0.0377765, 0.013764767, 0.0178341363, -0.0223692786, -0.00660046935, -0.00141646562, 0.0331187882, 0.0137892812, -0.00435741292, -0.00264141336, -0.0148066236, 0.0128209675, -0.00252497056, -0.0121529531, -0.00399276288, -0.0228840783, -0.0100324685, -0.00466997, 0.00864741113, -0.00378132728, -0.00150532986, 0.00806519762, -0.0169516224, 0.00653918367, -0.00279003126, -0.00511122681, 0.0225041062, 0.00141110306, 0.00100278715, 0.00145553518, -0.00596309779, -0.0236930493, -0.014757595, -0.0148679093, 0.0151743377, 0.0102898683, -0.00737879751, 0.00369859161, -0.0037384273, 0.0250658486, -0.00851258263, 0.0107004819, -0.000568041753, -0.00912543945, -0.00479560532, -0.0240852777, -0.0107004819, -0.00181405654, -0.0058650407, 0.00506526278, -0.00756265456, -0.00584359095, -0.00413984852, 0.0117729818, 0.028975876, -0.0107249962, -0.0130415959, -0.00403566286, 0.0164245665, 0.0126125962, 0.000502542709, -0.00446466263, -0.0228840783, -0.0060642194, 0.0282894764, 0.0346386731, 0.00777715445, 0.0106085539, -0.0268431343, 0.0145614808, -0.00541459117, -0.00260157767, -0.00558006251, -0.00832259748, 0.0153091662, -0.00220781704, -0.0207390785, 0.0145982523, -0.00150609587, 0.0327755883, -0.00251424569, -0.0194398221, 0.0093092965, 0.0108107962, 0.00393760577, -0.02681862, -0.0203591082, -0.00589568354, -0.0168535654, 0.000468452519, -0.00248973118, -0.00869031157, -0.00151222444, -0.00740331179, -0.00591406925, -0.0130415959, 0.0138995955, 0.00392841315, -0.00306888111, 0.00839614, -0.0133847957, -0.00791811198, -0.0152111091, 0.00717042619, 0.00926639698, -0.0165103655, 0.0251026209, -0.00556167681, -0.00735428324, 0.0115891248, 0.000346072658, 0.00184776366, -0.021952536, 0.00577311218, -0.0263528489, 0.00406017713, 0.00402953429, -0.0415271856, -0.0247226488, 0.00342893461, -0.00064503192, 0.00928478222, 0.00331862038, -0.0207268223, -0.00274253474, 0.0120732812, -0.0295397043, -0.00242691347, 0.0174664222, 0.00583439786, 0.0147698522, 0.0221854206, -0.0169761367, 0.00336764893, 0.0396641, -0.00484157, 0.0064166123, 0.0205674786, 0.00754426885, -0.0125329243, 0.0277746767, 0.00266133132, 0.00343506318, 0.000490668579, -0.00330942753, 0.010884339, 0.0187534224, -0.0145124523, -0.00471593393, 3.89738707e-05, 0.0100079533, -0.0147821093, -0.00339522748, -0.0119507099, 0.0133602815, 0.0292210188, 0.0227860212, -0.0147943664, -0.0193785354, -0.000681037258, -0.0212783925, -0.00253569568, -0.00363424164, -0.0223815348, 0.019427564, -0.0104982397, 0.00538088381, -0.0204939358, 0.0139241097, -0.0223325063, -0.0146350237, -0.00421952, 0.000500244496, 0.010706611, 0.020971965, -0.0270147342, -0.0369185023, 0.014843395, 0.0225653928, 0.000676057825, 0.0472880416, 0.0115829958, -0.000898601487, -0.00479867, -0.0132744815, 0.00200251, -0.0135441385, 0.0118832961, 0.00526137697, -0.0011943049, -0.00967701059, -0.00121728703, -0.000416742725, -0.0279217623, -0.0144021381, -0.00478334818, 0.00150226557, 0.00689464062, 0.0183121655, -0.0051908982, -0.010884339, 0.0229943916, -0.00640435517, -0.00912543945, -0.00464545563, -0.00642886944, -0.0053257267, -0.0120855384, -0.0130170817, -0.023840135, -0.00933381077, 0.0296132471, 0.00845129695, -0.0139608812, -1.75238783e-05, 0.00521847699, 0.0149904806, 0.010528882, 0.0179076791, -0.00155282626, 0.0208003651, 0.023300821, -0.031844046, 0.00247287774, 0.0149904806, 0.00424403418, -0.00801616907, 0.00979958195, -0.00550958375, 0.0115462244, 0.00242231693, -0.0222099349, -0.00379358442, -0.0141815096, 0.0174051374, 0.00266439561, -0.0154930232, 0.0138750812, -0.00389777, 0.0132867387, 0.0134460814, 0.0286326762, -0.00589874806, -0.00568731222, 0.030226104, -0.0210822783, -0.0116013819, 0.0120242527, -0.0061346977, 0.00277164555, 0.00357602024, -0.0131028816, -0.000555018545, -0.00268890988, 0.00103113183, 0.0218422208, -0.00295703462, 0.0107188681, 0.0341729037, 0.0160568524, 0.00194275647, -0.020150736, -0.00721945474, 0.0155543089, 0.0232640486, -0.00601519085, -0.0141202239, 0.0246736202, 0.0126125962, -0.00798552576, 0.00815099757, 0.0184224788, 0.0246858764, -0.0112581821, 0.0198565647, 0.00633694092, 0.00178034941, -0.000302023545, 0.0155052803, 0.0125880819, 0.0068027121, 0.00303517398, 0.000853403297, -0.0136176813, -0.00533492, -0.0132009387, -0.0120058674, -0.00143255305, -0.00394679885, -0.00889255386, -0.020162994, 0.0104063107, 0.0124471243, 0.00783844, -0.00423790561, -0.00538701238, -0.0068027121, 0.0188147072, 0.0203591082, -0.00670465501, 0.0166084226, 0.0166819654, 0.0222589634, 0.0131519102, 0.00331862038, -0.00704785483, -0.000275594095, -0.00698044058, 0.0138995955, -0.00376600586, -0.00392228458, -0.0119507099, 0.0070539834, -0.00763619738, -0.0273089055, -0.00819389708, -0.00394679885, -0.000561913184, -0.000304513291, 0.00477109104, -0.00455659116, -0.00397131313, 0.000527823053, -0.00186614937, 0.0104308249, -0.00126095314, 0.0178709086, -0.0141324811, -0.0134828528, -0.00122418173, 0.00332781323, -0.0164735951, 0.00442482717, -0.0189617928, 0.0346877, -0.00199638144, -0.0127841961, -0.00910092518, -0.0207758509, 0.0074768546, 0.00266286335, -0.0212538783, 0.00153214228, 0.0126248533, -0.00818164, -0.0123306811, 0.0327020474, -0.0349083319, -0.0179321934, -0.0169638805, -0.00787521154, -0.0108475676, -0.0124042239, 0.0116197672, 0.0103756683, -0.000166333208, -0.0115768677, 0.00961572491, 6.75579e-05, -0.00313476333, -0.0103940535, -0.0119323246, -0.00339829177, -0.00292485976, 0.00289115263, 0.00480786245, 0.0262547918, 0.0167800225, 0.0231905058, 0.022038335, 0.00837162603, 0.0178831648, 0.000113857328, 0.003217499, 0.0188392214, 0.00431144843, -0.0207513366, 0.00294324546, -0.0122571383, 0.00905802567, 0.00115906564, 0.0268431343, 0.0301035326, -0.017723823, -0.0179812219, -0.00140574062, 0.0157136526, -0.0210945364, 0.0330697596, 0.00744008319, -0.0218422208, -0.0153704518, 0.00864741113, 0.0172335375, -0.0116381533, -0.00511122681, 0.00133066566, 0.00193509576, 0.0133112529, 0.000251845893, -0.015027252, 0.0163142513, -0.0238646492, -0.0110498108, -0.00367101305, 0.00289268466, -0.0016194745, 0.0310841035, 0.009713782, 0.0198075362, -0.00284978468, 0.00482624816, -0.00983022526, -0.0128332246, -0.0070723691, -0.0102898683, 0.0137279956, 0.00715204049, 0.0198075362, -0.00416129874, 0.00385793438, -0.017184509, -0.0107740248, 0.0160936229, 0.0232272781, 0.00196114229, 0.0103879254, -0.00935219694, -0.019341765, 0.00191211363, 0.00936445408, -0.0189372785, 0.0200894512, 0.00225378131, 0.00311024883, -0.00932155363, -0.00134445494, 0.0258380491, 0.000281339628, -0.00420726277, 0.00285744551, 0.00329410611, 0.000578766747, 0.00837775413, 0.00435128435, -0.0112397959, -0.0033155561, -0.00244836346, -0.00503155543, -0.00440337695, 0.00444321288, -0.0198688209, -0.0164858513, -0.0120487669, 0.00932768267, -0.0099773109, -0.0170619376, 0.00488140527, 0.0268676486, -0.0148801664, -0.0233375914, 0.0224550776, 0.00810196903, 0.00632468378, 0.00940735359, -0.0170251653, 0.0120794103, 0.00455046259, -8.52733e-05, -0.0121652102, 0.0240117349, -0.00293405261, 0.00999569613, 0.00693141203, -0.0273089055, 0.0126493676, 0.00787521154, -0.0146227665, 0.0146717951, -0.00980571099, 0.0121223098, -0.0010081497, -0.0079977829, 0.0180179942, -0.00120196561, 0.00491511263, -0.00707849767, 0.0121835954, -0.0149537092, -0.0155420518, 0.0300790183, 0.00649628369, 0.0104859825, 0.0119323246, 0.00731751183, -0.0171477366, 0.0118587818, -0.00290953834, 0.0165716521, -0.011877167, 0.00309645967, -0.00499784807, -0.000913156837, 0.014757595, -0.0117178243, -0.017000651, -0.0108353104, 0.00410920568, 0.0153336804, -0.00222007418, 0.000911624695, -0.000221969123, -0.00793649722, -0.0128577389, -0.00431451295, 0.0368204452, 0.0185450502, 0.0334374756, 0.00360666309, 0.0104553392, 0.000267933385, 0.00495188404, -0.0281423908, -0.00138888706, -0.00607034797, -0.009444125, -0.0151007948, -0.0138137955, 0.033461988, -0.013764767, -0.00529508386, 0.0137034813, -0.0197830219, -0.0158484802, -0.00912543945, 0.027799191, -0.0277501624, 0.0274559911, -0.012502281, -0.029147476, -0.0115829958, -0.0207758509, -0.0179812219, 0.00329410611, 0.0151620805, -0.0210577641, -0.00733589754, -0.0188392214, -0.0395660438, -0.00706624053, -0.0203958787, 0.0190475937, 0.00482011959, 0.00603051204, 0.00496720523, 0.0117607247, 0.00129006384, 0.00532879122, 0.00320830615, 0.0118220104, 0.0141569953, 0.0100324685, 0.006116312, -0.00261996337, -0.00718268333, -0.0256419349, 0.0230189059, -0.00183857081, 0.0039498629, 0.00259085279, 0.0100998823, -0.0152601376, -0.0167187378, -0.0184592512, 0.0117974961, 0.0181283075, -0.00992828235, -0.00601519085, 0.0189127643, -0.0150885377, -0.0236440208, 0.00721332617, -0.00647176942, 0.0105840396, -0.00349634886, 0.0158607382, -0.0234479066, 0.00821841136, 0.0261322204, 0.00661272649, -0.00459029851, 0.00589874806, 0.00763006881, -0.000388015033, -0.00977506768, 0.00644112658, 0.000532419479, -0.015296909, -0.00125329243, 0.00852484, -0.0077281259, -0.00802842621, 0.00667401217, 0.00618372625, 0.000620900653, -0.0136299385, -0.0257154778, -0.0153949661, -0.00992215332, -0.0112030245, 0.0124838958, 0.00848194, -0.00115446921, -0.00186921365, 0.00450756261, -0.0203468502, -0.00454739854, 0.0029815489, 0.0105656534, 0.0380216427, 0.0110191675, -0.00281607755, 0.0213641934, 0.0167432521, 0.00916834, -0.00545136258, 0.00623581931, -0.00509590562, 0.0242813919, -0.0258135349, -0.00196727086, 0.0118526528, -0.0167064797, -0.0138995955, -0.00673529785, 0.00691302633, -0.0188147072, -0.00809584, 0.0151865948, -0.0137770241, -0.00176043157, 0.00845129695, -0.0171599947, 0.034540616, -0.00117745134, 0.0126493676, 0.0274559911, 0.0129925674, -0.0191088784, -1.4998237e-05, 0.0167432521, 0.024918763, -0.0171599947, -0.0177973658, -0.00788134057, 0.011429782, -0.00842065457, 0.00334007037, -0.0148924235, -0.00313323108, -0.0167677663, 0.0165226236, -0.0257890206, 0.00747072604, 0.0066494979, -0.0153581947, 0.000451215921, 0.0167555083, -0.00363730593, -0.0104308249, 0.0033339418, -0.00649015512, -0.0351779871, 0.000443172175, -0.000983635429, -0.0096095968, -0.0165348798, 0.00249126344, -0.0145614808, -0.0154194804, 0.00210209936, 0.00515412679, 0.0115891248, 0.00276858127, 0.0251271352, 0.0243059061, 0.00797326863, 0.0176870506, 0.0126248533, -0.0135073671, -0.0205184501, -0.0164000522, 0.00488447, 0.0286326762, -0.0052092839, -0.0155297946, 0.00641048374, -0.000101312915, 0.0310595892, -0.0120671531, -0.0115523534, 0.00103266397, 0.00140880491, 0.00513574108, -0.0121406959, 0.00717042619, 0.0040663057, -0.00692528347, 0.0161549095, 0.000512884639, 0.00200557429, 0.0141937668, -0.0206655357, -0.0089354543, -0.0197952781, -0.00231966353, 0.0195623934, 0.017454166, 0.00519396272, -0.00682109781, -0.0055432911, -0.00870869681, -0.0112214107, 0.00227829558, 0.000844976516, -0.00251271343, 0.000205881632, -0.0107801538, -0.0111968964, 0.00945025403, -0.0127474247, -0.00419500563, -0.0108414395, 0.00562909106, -0.0128945103, -0.00807745475, 0.0114788106, 0.0155788232, 0.0178463943, 0.0294661615, 0.00507752, -0.00432677, 0.0237053055, -0.00224612071, -0.00150379771, -0.00324814185, -0.00206532795, -0.0031087168, 0.0133357672, -0.0207513366, -0.00285131694, -0.00601212634, 0.00909479707, -0.00740331179, -0.0135073671, -0.0030903311, 0.0103205107, -0.00720106903, 0.00584971951, -0.00964636821, -0.0167922806, -0.00219402788, 0.0132377101, 0.00919898227, 0.021241622, 0.00664336933, 0.0204449072, -0.0112581821, 0.00510816276, -0.00179413869, 0.0143163381, 0.0100876251, -0.000376523967, 0.00851258263, -0.00298920972, -0.0292700473, 0.00550651969, -0.00675981212, -0.0363546722, -0.0102530969, 0.00437273411, -0.000944565749, -0.00544216949, -0.0123797096, -0.00120886031, 0.0173928794, 0.00406324165, 0.000255867781, -0.03238336, 0.00228748843, -0.00529508386, 0.0149414521, -0.00922962558, 0.016461337, -0.0434883274, -0.0207635928, -0.0154072233, 0.0135809099, 0.00290034548, -0.0289513618, 7.44525387e-05, -0.0119078103, 0.00352392741, -0.00326959183, -0.000307003, -0.00593245495, -0.0167187378, -0.00877611153, -0.0178709086, 0.00416436279, -0.001248696, 0.00216491707, 0.00317153474, -0.0113255959, -0.0101060113, -0.00377519871, 0.00338909891, 0.0127474247, 0.0130293388, -0.0308389608, -0.0148311378, -0.0113439821, -0.0181773361, -0.00600906229, -0.0121161817, 0.00312557025, 0.00327265612, 0.0123306811, 0.0146963093, -0.00264447764, 0.0121223098, 0.00456578424, -0.00954831112, -0.0252742209, 0.00791811198, -0.00369246304, -0.00152677984, -0.00487221265, 0.0167432521, -3.25819638e-05, 0.0155297946, 0.0153581947, -0.0223937929, -0.00948089641, 0.0146472808, -0.00795488339, 0.0170251653, 0.015113052, 0.0167922806, 0.0147943664, 0.00200863858, 0.00234264554, -0.0211680792, 0.00820002612, -0.00368939876, -0.0244407337, 0.0171477366, -0.0164490808, -0.0186553653, 0.0213764496, -0.00932155363, -0.0151743377, 0.021768678, -0.0223815348, 0.00748298317, 0.00564134819, 0.0042654844, -0.0182753932, -0.000388781104, 0.00326346327, 0.0166574512, -0.00750749744, -0.0226634499, -0.011245925, 0.0144756809, 0.0211190507, 0.00285438122, 0.0216951352, 0.0246981345, 0.0104614682, -0.00371391303, 0.0192069355, -0.00696205487, 0.000835017592, -0.00773425447, -0.0135563957, 0.00339522748, 0.0152233662, -0.00392534863, -0.0205919929, -0.0104001826, -0.0142550524, 0.0098792538, 0.0226266775, -0.0185205359, 0.00417049136, -0.00320830615, -0.000462323951, 0.00372310588, -0.00404485594, -0.0118710389, -0.0239014197, -0.00540233403, 0.00441563409, -0.000271189201, 0.0243671909, 0.012502281, -0.00375374872, -0.0201384798, 0.00423177704, 0.00229055271, 0.00848194, 0.00107403181, -0.00493043382, -0.00236409553, 0.00380890584, 0.0190843642, 0.0173193365, 0.00713365478, 0.0133970529, 0.0177973658, 0.000198029404, 0.0174786802, 0.0078629544, -0.00124409958, -0.0199546218, -0.00872708298, 0.000879449712, 0.0114604244, -0.0026858456, -0.00568424817, -0.00166850304, -0.00904576853, 0.0130293388, -0.00209750282, 0.00618679076, -0.00951154, -0.030765418, 0.0052092839, -0.00567505509, 0.00387019152, -0.0124287382, -0.0018017994, 0.0239381921, 0.00623275479, -0.00588342641, -0.00636758376, 0.0100692399, -0.00365262735, 0.0153704518, 0.0151007948, 0.00325427041, -0.00533492, 0.00983635336, 0.00687012635, 0.00856161118, 0.0188147072, 0.0082613118, -0.00217411, -0.0168535654, -0.00845742598, 0.0229698773, -0.0213396791, 0.0279953051, 0.0191211365, 0.00270882761, 0.0014777513, 0.00861676876, -0.0217931923, 0.0171477366, 0.00297542033, -0.00992215332, 0.00285131694, -6.96645948e-05, 0.0203836225, 0.0279462766, 0.00623581931, -0.00690689776, 0.00258472422, 0.00355457026, 0.0090396395, -0.0112152817, -0.00541459117, -0.00419807, -0.0142305382, 0.00437273411, 0.0110804532, 0.00729299756, -4.96031098e-05, -0.00383954868, -0.0286326762, 0.00924188271, -0.00686399778, -0.0100263394, 0.00727461185, 0.0249555334, 4.32830202e-05, 3.02358712e-05, -0.0044707912, -0.00888029672, -0.0240607634, -0.00526444102, 0.0320891887, 0.0199546218, -0.0357173, 2.99845033e-06, -0.00560764084, -0.00606115488, 0.00216032076, -3.83035585e-05, 0.0165961664, -0.0319666192, -0.000530121266, 0.0025954491, -0.0209842212, -0.0284610763, -0.0119752241, 4.43603094e-05, 0.012502281, -0.00102117285, -0.00677206926, 0.00180026726, 0.00450449856, 0.00846968312, 0.00546361972, -0.00924801081, 0.00587116927, 0.0125758247, 0.00159649237, -0.00710914051, 0.0122264959, -0.00120349776, -0.00422258442, -0.00698044058, -0.00659434078, 0.00106943538, -0.00361279165, -0.0240362491, 0.00246215262, 0.0116381533, 0.00953605399, 0.0113807535, -0.00157197809, 0.0201139655, -0.00357602024, -0.0120794103, 0.0204081368, -0.0192682222, -0.0216338504, 0.00779554, -0.00115293707, 0.00878224, 0.00479560532, -0.00991602521, -0.00851258263, 0.00724396901, -0.00755652599, 0.000613239943, -0.00897222571, 0.00297542033, -0.00134598708, 0.0214622505, 0.0138995955, -0.0152233662, 0.0108353104, -0.00245755631, -0.00814486854, -0.00962798204, -0.00242231693, -0.00465771277, 0.0101427827, -0.000891706848, -0.0220751073, -0.0160568524, -0.00514799822, 0.00318379188, 0.00396212, 0.0113439821, 0.00280994899, -0.0170987081, 0.00736041181, -0.0173315946, 0.00764845451, -0.0130415959, -0.00912543945, -0.0147208236, -0.00153061014, -0.0206287652, 0.000659204263, -0.00528282672, -0.0260341633, -0.0124042239, -0.00201323512, 0.019881079, 0.00107096753, 0.00365262735, 0.0106698396, 0.013225453, 0.0222834777, 0.00735428324, -0.00936445408, -0.00786908343, -0.0183244217, -0.000395675772, -0.00729299756, -0.00470367679, -0.00735428324, 0.0151988519, 0.0357908458, -0.0228718203, 0.0262547918, 0.00911318231, 0.0325794742, -0.0303731896, -0.0189617928, -0.00800391193, -0.00313629536, 0.0108230533, 0.0108046681, -0.00362504879, 0.00582214072, 0.000270231598, -0.00672916928, -0.005846655, -0.0256419349, 0.0270147342, -0.00463013398, -0.00824292563, 0.0162284523, 0.00108169252, 0.012869996, 0.00502236281, -0.0047864127, 0.0127229104, 1.41962564e-05, -0.0117423385, 0.013139653, 0.00176349585, 0.00405711308, 0.0153336804, -0.00169914588, 0.00896609668, -0.0170864519, 0.0107372534, -0.0145492237, 0.00964636821, -0.0316724479, -0.0272108484, 0.00520622, 0.0270147342, -0.00403259881, -0.0327265598, -0.00307500968, 0.00462094136, 0.0202855654, 0.0151498234, -0.00297235604, 0.019697221, 0.0263283346, 0.0156278517, 0.0213764496, 0.0266470201, -0.00666175503, 0.00740331179, 0.021682879, -0.0373842716, -0.0015650834, 0.00908254, -0.00558619108, -0.0337806754, 0.0153459376, 0.0157259088, -0.0213274211, 0.0048752767, 0.0103695393, 0.000773348846, -0.00674755499, -0.0187656786, -0.0101550398, -0.0181405656, -0.00519396272, -0.0184837654, 0.00528895529, 0.00197033514, -0.000622432795, 0.0106575824, -0.00115140493, 0.0164490808, -0.00249432772, 0.0144143952, -0.0330697596, 0.00609792629, -0.00190138863, 0.00976281054, -0.0143285953, -0.00143944775, 0.00740331179, 0.0011176978, 0.00876998249, 0.00384567725, 0.0208126213, -0.000633923919, 0.00694979774, 0.014034424, -0.00682109781, -0.00333700608, 0.00145476917, 0.011515582, 0.0011176978, -0.0033339418, -0.0196727067, 0.00180946011, 0.0235582199, -0.0133235101, 0.000940735394, 0.0029233275, -0.0207758509, -0.00433902722, -0.0028206741, 0.0314273052, -0.0219157636, -0.0164981093, 0.0118220104, -0.0165716521, 0.00206686, -0.0184347369, 0.00780779729, -0.000537398912, -0.00770974, 0.0182263646, 0.00552796945, -0.0220138207, -0.00172366016, -0.00331862038, -0.0113501102, -0.00818776898, -0.00712139765, -0.0123429382, -0.00349634886, 0.00737266894, -0.00347183459, -0.0136299385, 0.0102347108, -0.0220015645, 0.010976268, 0.00787521154, 0.0207881071, -0.0262057632, 0.017539965, -0.0238769054, -0.0172335375, 0.0308389608, 0.0104553392, 0.0190108214, -0.00832259748, -0.00128699956, -0.0202242788, 0.00301985256, -0.00793036912, -0.0109640108, -0.0165103655, 0.016730994, -0.0280198194, -0.0014126352, -0.0112888245, -0.0126125962, -0.00091545505, 0.0274314769, -0.00250964914, 0.0110927103, -0.00212048506, -0.00067988818, -0.0200159065, 0.0159955658, -0.015296909, 0.0157013945, 0.0198688209, 0.01349511, -0.0315743908, 0.00960346777, -0.000146798382, 0.0180179942, 0.0172948223, -0.0169638805, 0.00228135986, -0.00545442663, 0.0241588205, 0.0108107962, 0.013139653, -0.00115906564, -0.00143638346, -0.011245925, 0.00302138459, -0.0229208488, 0.000895537203, 0.0223815348, -0.00358827738, -0.026279306, 0.0282649621, 0.00531040551, 0.00987312477, -0.0170496795, 0.0134583386, 0.00663111219, 0.0219157636, 0.00371391303, -0.0109578818, -0.0143285953, -0.00889255386, 0.0125206672, -0.00594471209, -0.000618219434, -0.0126371104, -0.00509896968, -0.033388447, -0.019072108, -0.00641048374, -0.00655756937, -0.0182876512, -0.0146227665, -0.00419194158, 0.0204694215, 0.00182478153, -0.0139853954, -0.0247961916, 0.012232624, -0.0218299646, -0.0164490808, 0.0138260527, -0.00918059703, -0.0106882248, -0.00337684178, -0.00170987088, 0.00275632413, 0.00312863453, 0.0471654683, -0.0126371104, 0.0170864519, 0.0031408919, 0.00599680515, 0.00567505509, -0.00828582607, 0.00626033358, -0.000126114464, 0.00586810522, 0.0290003903, -0.0292945616, -0.0125329243, 0.00903351139, -0.00262456, -0.0120487669, 0.0110559389, 0.0219157636, 0.00331249181, 0.013948624, -0.0104308249, -0.00672916928, 0.00747072604, 0.0103266397, 0.0130293388, -0.014843395, 0.0222589634, 0.020334594, -0.00187227794, 0.0262547918, -0.0067843264, 0.000414444512, -0.0115646105, 0.0159097668, 0.0146350237, 0.0138383098, -0.00647789799, 0.0142795667, 0.0386590138, 0.0077281259, 0.00646564085, 0.0212661363, 0.00744008319, 0.0162897371, 0.028166905, -0.0300054755, -0.0351289585, -0.0122693954, 0.0132377101, 0.00740331179, -0.0059293909, 0.0305447895, -0.0117913671, 0.0203591082, -0.0170864519, -0.00730525469, 0.0145247094, 0.0170741938, 0.00924801081, 0.000437043607, -0.00264294562, -0.00371391303, -0.026548963, 0.0131641673, 0.0189372785, 0.0119323246, -0.0184837654, 0.00618679076, -0.0194153078, 0.00122264959, 0.00571795506, 0.00742782606, -0.00232732412, -0.00353312027, 0.0103572821, 0.0193172507, 0.000398740056, -0.00473125558, 0.0285591334, 0.033388447, 0.00909479707, -0.0102837393, -0.00101427827, -0.00989763904, -0.00932155363, -0.00216798135, 0.0157626811, 0.0181773361, -0.0130783673, -0.00536249811, 0.00155129412, -0.00719494047, 0.00711526908, 0.00995279662, -0.020334594, -0.0168780796, -0.0100631109, 0.00954831112, 0.034467075, -0.0101182684, 0.0110865822, -0.00891094, -0.00341667747, -0.000497180212, 0.0129680531, 0.0195991639, 0.000306811504, -0.0508916415, 0.00704172626, -0.0162039381, -0.00340748462, 0.00739105465, 0.0107004819, -0.00610099081, 0.000966015738, -0.0305693038, -0.00225837785, -0.000523226627, -0.010436954, 0.015382709]
07 Aug, 2024
Top 10 Fastest Programming Languages 07 Aug, 2024 There are approximately 700 programming languages in the world. In simple words, a programming language is used to give instructions to the computer to perform the task which we require. Have you ever wondered which is the fastest of all the programming languages in terms of execution speed? In most cases, speed is not the only metric to choose which language is the best. Every language has its specialty and every language is designed for specific functionalities. Even though some programming languages are slow they are easy to use and drastically reduce the development and labor costs and also reduce time. The speed of the programming language depends upon various factors like: Compiler Cross-Platform Security Statically typed and dynamically typed Compiler: The compiled languages are always going to be faster than interpreted languages. The compiler compiles all of the code into executable machine code at once, whereas the interpreter scans the program line by line and converts it into machine code. So it delays the execution time for interpreters. The compiler while compiling converts the high-level language into intermediary code which saves up most of the time during execution. The computer executes the intermediary code much faster than interpreters. Cross-Platform: In some object-oriented languages like Java and C#, the source code would undergo both compilation and interpretation. Because of cross-platform usage and conversion into byte code, speed will be compromised here, which makes the cross-platform languages slower than other languages. Security: Some languages like C are found to have a lot of vulnerabilities. Again it boils down to the compiler’s job to check for these vulnerabilities. Studies show that still, some popular languages are susceptible to many major errors. For example, C suffers from buffer errors, PHP is vulnerable to Cross-site scripting, and Python to input validation. In order to tackle these errors, some compilers are designed with additional security features. So the source code goes through various layers of security checks which makes the compilation process a bit slow. So the fastest language in this list is not the best in terms of security but better than others in execution time. Statically typed vs Dynamically typed: Statically typed means the variable type is known at the compile time. It checks for the correct assignment of variables. If a variable is initialized multiple times with different data types, the errors are shown at compile time. Dynamically typed means checking the variable type during run time. It notifies the error in run time. In statically typed languages, type checking occurs before execution at the compile time. Whereas in dynamically typed languages the type checking occurs during run-time along with execution. So it makes statically typed languages faster than dynamically typed languages. There may be cases in which one language might be faster than the other language but for the majority of the cases, the below list is acceptable. 10. Pascal Pascal is a procedural and high-level programming language. It runs on Windows, macOS, and UNIX/Linux. Even though Pascal is in 10th position among these languages, it is faster when compared with other programming languages which are not on this list. Since Pascal is a statically typed language, it makes it run faster but not faster than other languages on this list. 9. F# F# is an open-source, cross-platform programming language. F# is a .NET language and it can be used for creating web applications, mobile applications, data science, and cloud. It is almost similar in speed to C# but the asynchronous code runs faster in C# than in F#. The compiler is native in C# and optimized code can be generated. But in F#, the compilers are not native. This is the reason why F# comes below C#. 8. C# C# is a general-purpose multi-paradigm programming language. C# can be used for creating web applications, mobile applications, augmented reality/virtual reality (AR/VR) applications, and web services. C# has a garbage collector which is an efficient memory management technique but in the aspect of program execution, it takes more time when compared with C++. C# and Java are more or less of the same speed but the Java runtime is comparatively faster than C# in some cases.  Though C# has many good features and functionality, it is a bit lower in the aspect of speed when compared with a few languages. 7. Java Java is one of the widely used languages and it is very fast too. Despite using Java Virtual Machine, it is still faster than its counterparts like C#. It is not as fast as C or C++ because it is platform-independent. In java the source code is first converted into bytecode by the compiler, next java invokes the Java interpreter known as Java Virtual Machine. Then the class loader loads the byte code into the OS. Then the bytecode verifier of java checks the byte code for security issues. Then finally the execution engine converts the byte code into machine code. Since the languages like C# and java have to go through so many steps while compiling, they are comparatively slower than other languages in this list. Learn one of the most important programming languages, Java with Geeksforgeeks Java Programming Foundation – Self-Paced Course, which has been specially curated for beginners so that they can get knowledge of everything from scratch. Enroll now and get classes from our best mentor Sandeep Jain. 6. Ada Ada is a static, high level and object-oriented language. It supports concurrent programming and is more reliable. Even though it is very fast, it does not compromise the security aspect. Ada compilers can find the errors more efficiently. Some programmers say that programs written in Ada have fewer bugs and are executed faster. In order to achieve reliability, it compromises speed and that’s why it could not make it to the top of the list. 5. Julia Julia is a high-level, high-performance dynamic programming language. Julia can be used to build applications and microservices. Julia supports multiple platforms. Other programs can integrate Julia. It is fast because of its design decisions and JIT compiler. The reason why it does not top the list is that it is a dynamic language. 4. Fortran Fortran is a general-purpose language used for scientific calculations. It is known for its high performance and is used in ranking the fastest supercomputers. Fortran is widely used for numerical programming since it is faster. Since Fortran spends a lot of time reading and writing the data, it is slower than the three languages below on this list. 3. Rust Rust is a high-level, multi-paradigm language designed for performance and safety. Rust is very fast because it has no runtime or garbage collector. It is not slower than C++ because it is inherently safer. The same safety cannot be achieved in C++ by the use of pointers but rust is safer by default. So it undergoes various safety checks while compiling. The checks are only run time and have zero performance on the language. The motto of being zero cost abstractions. As a result, it is a safer language that is not slower by nature. Therefore it is as fast as C++ and C. 2. C++ C++ is one of the most efficient and fastest languages. It is widely used by competitive programmers for its execution speed and Standard Template Libraries(STL). Even though C++ is more popular, it suffers from vulnerabilities like buffer error. C++ executes at more or less the same speed as its predecessor C. The only thing which makes C++ below C in speed is that it is safer and more complex than C, therefore the C++ code undergoes security checks by default which makes it slower than C. Start your journey of learning the fastest and most efficient language C++ with Geeksforgeeks C++ Programming Foundation – Self-Paced and ace the basics of the language by studying interesting topics such as input/output in C++, flow control, operators, loops & more. 1. C The special thing about C is, that there is nothing special. It is simple and very close to assembly language. In C, a lot of instructions are directly mapped to assembly instructions. But the extreme speed of the C language comes by compromising security. C is known to have the largest number of vulnerabilities among popular languages. It executes unsafe instructions without cross-checking. Like C++ it also suffers from buffer error. Though C has these disadvantages, it still tops the list because of its fast execution speed. Start your journey of learning the fastest and most efficient language C with Geeksforgeeks C Programming Foundation – Self-Paced and ace the basics of the language by studying interesting topics such as input/output in C, flow control, operators, loops & more. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages
https://www.geeksforgeeks.org/top-10-fastest-programming-languages?ref=asr10
Languages
Top 10 Fastest Programming Languages
Languages, Top Dying Programming Languages in 2020, Top 10 Fastest Programming Languages, Top 10 Programming Languages of 2015, 5 Most Difficult Programming Languages of the World, Top 10 Programming Languages for Blockchain Development, Introduction to Programming Languages
GeeksforGeeks
[-0.00262474967, 0.00086338172, -0.0184372663, 0.022659013, 0.00989688095, 0.00919787, -0.00294830161, 0.0102152424, -0.00863727741, 0.0292061791, -0.0105751287, -0.00143349054, 0.0429095514, -0.0400858261, -0.0269776508, 0.048750788, 0.0142570455, -0.0138487127, 0.00254515931, -0.00364385149, 0.00424250914, 0.0159734264, -0.0267146565, -0.0167762507, 0.00628071278, 0.0463146344, 0.0124022448, 0.0197245535, -0.0285971407, 0.0126375556, 0.0323621072, 0.00538445683, -0.0196830276, -0.0418575779, 0.0118416529, 0.0130943349, 0.000662675768, -0.033635553, -0.0188386776, 0.0063672238, 0.0208734218, 0.0227697473, 0.0123330364, -0.00125181698, -0.0160011109, 0.0415530577, -0.00188421388, -0.00314381695, 0.0249152239, -0.0357671902, 0.00620112242, 0.0170530863, 0.042162098, 0.0327496789, 0.0160980038, -0.0171222966, -0.0115855793, -0.00743304193, 0.0225621201, 0.00186691165, 0.0203335918, -0.0213855673, -0.00445013586, -0.0243615527, 0.0223268103, 0.00292061805, -0.0481140651, 0.0264239796, 0.00898332242, -0.0214963015, -0.0466745198, 0.010339818, 0.0214686189, 0.00210741279, -0.0128659448, -0.00758530153, 0.0212056246, -0.00142570445, -0.00104332506, 0.0244861282, 0.0121807763, 0.00784137473, 0.00746764662, -0.0295107, 0.0429372378, -0.00956467818, -0.00635338202, -0.0255519468, 0.000476244139, 0.00979998801, 0.000670461741, 0.0128936283, 0.0253027938, 0.00525642047, -0.0210672058, 0.0162225794, -0.0160426367, -0.00634300103, -0.00436362484, 0.0755761787, -0.0027510561, 0.0271022283, 0.00128642144, -0.0329434648, 0.0242923442, -0.0272683296, -0.0224652272, 0.0253720041, 0.0265485551, 0.0343276411, -0.0206796359, -0.0155304903, 0.000517769484, 0.0077860076, 0.0085403854, 0.00541906152, 0.00711468095, -0.0878123268, 0.0172745548, 0.0187694691, 0.0109004108, 0.0596858039, -0.0185895264, 0.0228251144, -0.0560038872, 0.0485016368, 0.00331856939, -0.0227420628, 0.00999377295, -0.00319918408, -0.0059623518, -0.00403142162, -0.029150812, 0.0052287369, 0.025607314, -0.0166793577, -0.00152000168, 0.0285140909, 0.00994532742, 0.00270434, -0.0209979974, 0.00050955097, 0.0119385449, -0.0384248123, -0.000823586597, 0.00277873967, 0.00115405931, 0.0750778764, -0.0170530863, 0.0118831778, -0.0210948903, -0.0183126908, 0.0187694691, 0.00185306987, 0.00132275617, -0.00118174299, 0.00660599489, 0.0475603938, -0.00114108273, 0.000742266071, -0.0284033567, -0.0337739699, -0.0238909312, -0.0442660488, 0.00751609262, 0.0187971517, 0.0628971, 0.0184787922, -0.0684891865, 0.0355457217, 0.0344383754, 0.0301474221, -0.0174545, -0.00412139343, -0.0313931815, 0.039698258, 0.0209564716, -0.0153920716, -0.00377880898, 0.0133434869, 0.000458509341, -0.00845733471, 0.0320022218, -0.0207211617, -0.000588276132, -0.00272337254, 0.0159734264, 0.0241677668, 0.0189909376, 0.00782061182, -0.023198843, -0.00129766797, 0.0256488398, 0.0105128409, -0.0024517274, 0.00939165521, -0.0388400666, 0.0429095514, -0.013668769, 0.0755208135, -0.00270434, -0.0292615462, -0.0239878241, 0.0132119898, 0.0269361269, -0.027185278, 0.00356426137, 0.00626341067, 0.0290123951, 0.0506609567, -0.0366253816, 0.0561699905, -0.0315869674, -0.00629455457, 0.0157104339, -0.0106997043, -0.0204028, -0.00470620906, -0.0491106771, -0.0274482723, -0.011301823, 0.00645719562, 0.00289293448, -0.0114471614, -0.0228943229, -0.0499411821, -0.016056478, 0.00739843771, 0.0343553275, 0.00237040687, 0.0109280944, 0.0146999825, -0.0166655164, -0.0108934902, -0.0063706846, 0.00115319423, -0.00155893178, -0.0190463047, -0.0446813032, 0.068599917, 0.0273375381, 0.00331856939, -0.0160841607, -0.00394837093, -0.0181189049, 0.00325974193, -0.0142016783, 0.0293445978, 0.0134749841, 0.0304519404, -0.0206657946, -0.0599072725, 0.0410270691, 0.0228804816, -0.0652778894, 0.0297598522, 0.00187729299, -0.0107965972, 0.034576796, 0.0116063422, -0.00519759255, -0.0107550714, -0.00542944251, 0.0325558931, -0.0178420693, 0.018963255, 0.0364315957, -0.0191708803, 0.0105474452, -0.0390615351, 0.0585230924, -0.0262440369, 0.0203335918, -0.0192124061, 0.0223821774, 0.0233511012, -0.0461762175, 0.00749533, 0.0312547646, 0.00714236451, 0.00701778801, 0.0254688952, 0.0437677428, 0.0197107103, 0.0388954319, -0.0396705754, -0.0238770898, -0.0345491096, -0.025358161, -0.0290677622, -0.0180496965, 0.000226659336, -0.0220914986, 0.0586338267, 0.0195030849, 0.00480310153, -0.0109626986, -0.0369022153, -0.00405910518, 0.00177867024, 0.0180635378, -0.0121530928, 0.0350474156, -0.013322724, -0.030977929, -0.0385909155, -0.000929995382, -0.0172191877, 0.0200152304, -0.0258703083, 0.00729462411, -0.0152536537, -0.0006700292, -0.00274759554, 0.0167624094, 0.000311656593, 0.0104782358, 0.0205689017, -0.0122084599, -0.00955083594, 0.0323897935, -0.00744688371, -0.0295937508, 0.013495747, 0.0298152193, 0.0079867132, -0.00963388663, -0.0224513859, -0.0213302, -0.011108038, -0.00997301098, -0.0378434584, -0.0584123582, 0.0163194723, 0.0295937508, -0.0297598522, -0.0504948534, 0.0259810425, 0.00917710736, -0.000120683115, -0.0415253751, -0.0173991323, 0.00837428402, 0.0152121289, -0.0208180547, -0.0382310264, -0.0391169041, -0.000288947398, 0.0270607024, -0.00281507429, 0.00143349054, 0.0211779401, 0.0535123646, -0.00532216858, 0.0276697408, -0.00466122339, -0.00406256597, 0.000621150364, -0.00506955618, 0.0308395103, 0.0371236838, 0.00788290054, 0.00381341344, 0.00342584332, -0.0162225794, -0.0419959947, 0.0211502574, -0.0494428799, 0.0206934772, -0.00687937, -0.00463354, -0.0126306349, 0.0208734218, -0.00971693732, -0.0493598282, 0.00665444136, -0.0162225794, 0.0113156643, -0.0323897935, 0.0119662285, -0.0204443261, 0.0538168848, 0.0300643705, 0.0160149522, 0.000194866472, -0.0215793531, 0.00793134607, -0.0265762396, 0.00643297238, 0.0114471614, -0.0116824722, 0.013419617, -0.0327219963, 0.000199083894, -0.00491037546, -0.0013019935, 0.0281818863, -0.00295003178, -0.0148522425, -0.0325835757, -0.00567513425, 0.00168956362, 0.024084717, 0.00502803084, -0.0151982866, -0.00625995034, -0.018963255, -0.0136480061, 0.0301474221, -0.0034396851, -0.00277008838, -0.0207488444, -0.0498858169, 0.0175929163, 0.00149577856, -0.0070523927, -0.00201744121, 0.0302581564, -0.00607654639, -0.00380995311, 0.00157363864, -0.00367153506, -0.00560246501, -0.00298290607, 0.0140909432, 0.0162225794, 0.0246522296, 0.0344106928, 0.00805592258, -0.0204858519, -0.0116686299, -0.00632915925, 0.0138348704, -0.0105266823, -0.000104083781, -0.0506886393, 0.0406395, 0.0249290671, -0.0109073315, -0.00518029043, 0.0190186221, 0.00243615522, 0.0221745502, 0.00186518137, -0.0249429084, 0.0369022153, -0.000329607661, 0.00786905829, -0.0020485851, -0.0187833104, -0.00259706611, 0.00149837392, 0.00271818181, 0.0117239971, 0.069485791, -0.00632915925, -0.0144093046, 0.0256488398, -0.0171499792, -0.020292066, 0.0229358487, 0.0222022329, 0.0400304608, -0.0169423521, 0.0142985703, 0.0273790639, -0.0110111451, -0.0424389318, -0.0268946011, 0.00371998153, -0.0352135189, -0.0473112427, 0.0437123775, 0.00861651544, 0.0333864, -0.00759914331, 0.0251505356, -0.00117568718, -0.0152121289, -0.0191985648, 0.0388954319, 0.0269638095, 0.015364388, -0.0726970881, 0.0119108614, -0.0111841671, 0.0105474452, -0.011031908, 0.0107273879, 0.0126790805, -0.0212194659, 0.0257734153, -0.00771679869, -0.0208042115, 0.00938473456, 0.0167347249, -0.0473389253, -0.0480863824, -0.0213163588, 0.0341061726, -0.0156689081, -0.00375112542, -0.0178974364, 0.0214132518, -0.0126790805, 0.0205689017, -0.030977929, 0.0338016562, -0.0558101, -0.00708007626, 0.0107827559, -0.0202090163, -0.0115302121, 0.033192616, -0.00488615222, 0.0380926095, -0.0157658011, 0.024375394, -0.017925119, -0.0096823331, 0.00321994675, 0.0289570279, 0.0153228631, 0.00728078233, 0.0142016783, -0.00869264454, 0.0155581739, -0.0325835757, -0.0252059028, -0.027434431, -0.0266177654, 0.00149491348, -0.0227697473, -0.00638798671, -0.002271784, -0.0058377753, 0.0136272432, 0.0284587238, 0.0045747119, 0.0307010934, -0.0166101493, -0.0031853423, -0.015364388, 0.0194200333, -0.0233372599, -0.017288398, -0.0166932, -0.00874801259, 0.0170530863, 0.00351235457, -0.00663367845, 0.0603502095, 0.0195722934, -0.000202436204, -0.0211917832, 0.0142293619, 0.00339469942, -0.0498027653, -0.0243061855, -0.0189770963, 0.000211736158, 0.0129282335, 0.032112956, 0.0183403734, 0.0108173601, -0.0192677733, 0.0176759679, -0.029399965, -0.0219392385, -0.0272129625, 0.023240367, -0.0112879807, 0.0173991323, -0.0349920504, -0.00181327469, 0.0143124126, -0.00667174347, -0.0229358487, -0.00367499562, 0.0132950405, -0.00966157, 0.019946022, 0.019696869, -0.00279431161, 0.00760606444, 0.00649526063, -0.0208457373, 0.00387570169, -0.0101391124, -0.0298152193, -0.020582743, 0.0399750918, -0.00367153506, -0.0126444763, -0.0279604178, 0.00605924428, -0.0116547886, -0.00886566751, -0.0185756832, 0.0102844508, 0.0319745392, 0.0244030785, 0.0480587, -0.0169838779, -0.0202505402, 0.0195169263, -0.022216076, 0.013938684, 0.0045262659, -0.00025823593, 0.00623918744, -0.0285694581, 0.0254965797, 0.0149076097, -0.0026801168, -0.0286248252, 0.019946022, -0.0123330364, -0.0106512588, -0.000563620415, -0.00736383302, 0.000718475494, -0.0573603846, -0.00519413222, 0.0113848737, 0.0344660617, 0.00147328572, -0.0192539319, -0.0139940511, -0.0417745262, 0.0118070478, -0.0153228631, -0.0112533765, -0.00438784808, -0.000897121092, 0.00716312695, -0.00880338, -0.00587930065, -0.00127430994, 0.00791750476, -0.0179389622, 0.0193369817, 0.000615527155, 0.117267653, 0.0058377753, 0.0145892482, -0.0151982866, 0.014132469, 0.0176482834, 0.00129420753, 0.023392627, 0.00473735295, 0.0368468501, 0.0329157785, -0.0119662285, -0.0131012555, 0.00267146574, -0.0162779465, -0.0204166416, 0.0281542037, -0.0138002662, 0.00802131835, 0.0256211553, 0.00900408532, -0.00137120241, -0.0088241417, 0.0127136856, 0.00873417, 0.00133227243, 0.0487231053, -0.013149702, -0.0430756547, 0.0174268149, 0.0287355594, -0.0124922171, -0.0157796424, 0.0117170764, 0.0437954292, 0.0149491346, 0.0368468501, 0.00706623448, -0.0207626875, 0.0120700421, -0.0236833058, -0.00554017676, -0.0180081706, -0.0321960077, -0.0171915051, -0.0227143802, -0.00158402, -0.0286801923, 0.0124368491, 0.033580184, 0.0235864129, 0.0177036505, 0.00140494178, -0.0036888374, 0.019696869, -0.00557132112, -0.027822, 0.0358779244, 0.0166239906, -0.0103882644, 0.0015952664, -0.00820126105, 0.0276005324, -0.0146999825, -0.00412485376, -0.0172607135, -0.0340508074, 0.0369022153, 0.00252958736, -0.0038930038, 0.00773064047, -0.00586545886, 0.000879818865, 0.0202090163, -0.00392414769, -0.0162364207, 0.0290123951, 0.0164855737, -0.0129282335, -0.007633748, 0.00739843771, -0.015364388, -0.0303412061, 0.00242923433, 0.0357671902, -0.0323897935, -0.00357118226, 0.0318084359, -0.0202228576, 0.0272960123, -0.00617343886, -0.0230742656, -0.0360163413, 0.0466191545, 0.00865804, -0.00761990622, -0.0124022448, 0.0199875459, 0.0121946186, 0.00541906152, 0.0106097329, -0.000392544549, -0.00589660322, 0.0358502381, 0.0126583185, -0.0105682081, 0.0391722694, -0.0164717324, -0.00623226678, 0.0326389447, -0.0408886522, -0.0124091655, -0.0222852845, -0.00426673237, -0.022160707, 0.00373728364, 0.0208872631, -0.00239116955, 0.0368191637, -0.00525295967, -0.00811129, 0.000854298065, -0.0355734043, -0.0208042115, -0.00388954347, -0.00420098379, -0.0118001271, 0.0102982931, 0.0192400906, 0.0507993735, 0.00658869278, 0.0117793642, -0.000294354337, -0.000803689, -0.00361616793, 0.015364388, -0.00229254668, -0.0431310236, 0.0350751, -0.0164855737, 0.0190186221, 0.00502110971, -0.0106166536, 0.022160707, 0.0137448991, 0.027434431, 0.0375943035, 0.0193508249, 0.0237801969, 0.0171222966, 0.0329434648, 0.0112118507, -0.0307564605, -0.000517336943, -0.00156498759, -0.0279604178, -0.037372835, 0.00492767757, 0.0351027846, -0.0178835951, -0.0266177654, 0.0219392385, -0.0365700126, -0.0157242753, -0.0351304673, -0.017828228, 0.027434431, 0.00800055545, -0.00587930065, -0.00581701286, 0.0413315892, 0.00228389562, 0.0218700301, 0.0413869545, -0.0151152359, 0.000772112398, 0.0154335974, 0.00845041405, -0.00817357749, 0.0123676406, -0.0149629768, -0.0230050571, 0.0363208614, 0.0123814819, 0.0363485441, 0.0323621072, 0.0225759614, 0.00753685553, -0.0200705975, -0.00578586897, 0.0276005324, -0.0288739763, 0.013516509, 0.0430202857, 0.0167762507, -0.0011488687, 0.0237248298, 0.0142570455, 0.0162087381, 0.00695896056, -0.000625043409, 0.0036369306, 0.0302304719, -0.0274205878, 0.0133919334, 0.00366807473, -0.0150598688, 0.013911, -0.0214547757, -0.00134870957, 0.0169008281, -0.0153090209, 0.0122292228, -0.0279327352, -0.0354073, 0.00439130841, -0.0293445978, 0.00885874685, 0.00730154477, 0.0125129791, 0.00322340708, -0.00796595123, 0.0168316178, -0.0212609917, -0.0166239906, 0.00220949599, -0.0281403624, -0.00845733471, 0.0124783749, 0.0154197551, 0.0320022218, -0.00125787279, 0.000376756245, -0.00730846589, -0.0064918003, 0.0190186221, 0.0235725716, 0.0300366879, 0.00110042247, -0.0188109949, -0.0108519644, -0.0202782247, 0.0146030895, -0.0211087316, -0.0251643769, -0.0113433478, -0.0120077543, 0.0140840225, -0.0106443372, -0.0477818623, -0.0149906604, 0.0159457438, -0.00271299109, -0.00295349234, 0.0251366924, -0.00138158374, 0.0264655054, 0.000191297877, -0.0095785195, -0.0130943349, -0.0117101558, 0.00428057415, -0.0044743591, -0.00985535514, 0.0203059074, 0.00382379489, 0.0296768, 0.0013530351, 0.00520105287, -0.00471659051, -0.0279327352, 0.00457817269, 0.0234618355, -0.030534992, -0.0106651, 0.0131635433, 0.00644681416, 0.0232818928, -0.0169285107, 0.00517336931, 0.00340335048, -0.0162087381, 0.0414423235, -0.0453457087, -0.00082531682, -0.0126929227, -0.0129905213, 0.00533255, 0.0138556333, 0.0119039407, -0.025607314, -0.00952315237, -0.0160841607, -0.00655754888, 0.0191016719, -0.0442106798, -0.0143677797, -0.0186725762, 0.0151429195, 0.0183542147, -0.0331649333, -0.0215516686, -0.0259395167, 0.0131081762, -0.00599003537, 0.0157519579, 0.0179666448, 0.0121115679, -0.00126911921, 0.0213994086, -0.0189770963, 0.0112256929, -0.00340162031, -0.0241539255, 0.00736383302, -0.0245138127, 0.0200290717, 0.00693819812, 0.0123468777, 0.0423281975, 0.00135390018, 0.0245553385, -0.00937089231, -0.0212471504, -0.0177451763, -0.00377880898, -0.0105612865, 0.0157242753, -0.0143539375, 0.0455948599, 0.027475955, 0.00397605449, -0.0126652392, -0.0164025221, -0.0543428734, 0.0427434519, -0.0111634051, -0.00143435562, -0.00923939608, -0.0241124, 0.0137379775, 0.0207350031, -0.0450688712, 0.0477818623, 0.00402104, -0.00212990562, 0.0355457217, 0.0189494118, 0.00489307335, 0.0391169041, -0.0231573172, -0.0172607135, -0.00300020818, -0.0287632421, 0.0324728414, -0.0311440304, -0.0354073, 0.00919095, -0.0232265256, -0.0328327306, -0.00227351417, 0.0373451523, 0.0305073075, 0.00348121044, 0.0156965908, -0.0247906484, 0.00803516, -0.0214686189, -0.0346875302, 0.000573136669, -0.0136826104, 0.0420236774, 0.00423212769, -0.0135857183, 0.0103467386, -0.00422174623, -0.0243892372, 0.00539483828, -0.0268115494, 0.00672018947, -0.025316637, 0.0170946121, 0.0164025221, -0.00491037546, 0.00123364967, 0.012187697, 0.02348952, -0.0100975865, 3.70646412e-05, 0.00395529205, 0.0109903822, -0.0099868523, -0.00152865285, 0.01105267, -0.0394214205, 0.00816665683, -0.00747456728, -0.00674441271, -0.00562668825, 0.0218423475, 0.000668731518, 0.0324174762, -0.0435739607, -0.00685514696, -0.006574851, -0.00926708, 0.00446743798, 0.0138694746, 0.00555747934, -0.0112187723, -0.00336701586, -0.000758270617, -0.00367499562, -0.00943318103, 0.0116409464, -0.00332549028, 0.0217454545, 0.00150010409, -0.0109211737, 0.00517683, -0.00954391528, 0.00228562579, 0.019406192, 0.0106651, 0.00777216582, -0.0035608008, 0.0191847235, 0.0329434648, -0.0253996868, 0.00854730606, -0.0101598753, -0.00337047619, 0.0016912939, -0.00831891689, -0.00554709788, 0.00936397165, 0.00670288736, 0.0061146114, 0.000983632286, 0.0219115559, 0.0100076152, -0.0241124, -0.033192616, 0.00732230768, -0.00912866183, 0.0144646717, -0.00762682687, -0.00714928517, 0.0145200389, 0.0142570455, 0.000562322792, -0.00670634769, 0.0101944795, 0.00365077239, 0.0844349265, -0.0105197616, 0.00729462411, -0.0426880829, 0.00102688791, 0.0178005435, 0.0107965972, -0.00680324063, 0.00905945245, -0.0149352932, 0.0162779465, 0.00794518832, 0.0257318895, 0.02418161, -0.0183542147, 0.00939165521, 0.0149768181, -0.00623572711, 0.00267319591, -0.0241124, -0.00618036, 0.00203128299, 0.0271714367, -0.0124299284, 0.0258841496, -0.0114817657, -0.0210256819, -0.00115319423, -0.0213025175, -0.0115163708, 0.0329157785, -0.0261056181, 0.0152398124, -0.00738459546, 0.0150598688, 0.0164025221, -0.0101806372, 0.018174272, -0.0145200389, -0.0326389447, -0.00635684282, -0.0141601525, -0.0439892113, 0.00169042882, 0.00708353659, -0.000386921311, -0.0178835951, 0.00162814069, -0.0122223021, 0.00999377295, -0.0181881133, -0.00942626, 0.00536369393, -0.00867188256, 0.00338431797, 0.0192954578, 0.00867880322, 0.00986227673, 0.0313378163, -0.00256938254, 0.00499688648, -0.0225898027, 0.0117586013, -0.0196276605, -6.09903946e-05, 0.0176067594, -0.00504187262, -0.012879787, -0.0188386776, 0.0177867021, -0.00115059887, 0.0171776637, 0.0201259647, 0.00378226954, -0.0172330309, 0.00534639182, -0.0221053399, 0.00580663141, -0.0225344356, -0.0226036459, 0.0125683462, 0.0140563389, -0.00167745212, 0.00663367845, 0.00370613975, -0.00779292872, 0.0216900874, 0.00913558248, -0.0151844453, -0.0239601415, -0.00734307, -0.0234064683, -0.0101529537, 0.0060938485, -0.0157104339, 0.0200844388, 0.0318084359, 0.0159319025, 0.00846425537, -0.0100560617, -0.0093778139, 0.0352965668, -0.00919787, -0.0289016608, -0.00418368122, -0.0133019611, 0.0132604362, -0.000384325976, -0.0143400962, 0.0297044851, 0.0435462743, 0.00743304193, 0.0146030895, -0.00561976712, 0.0395044722, -0.0289847106, 0.0405841321, 0.0103882644, -0.00862343609, -0.00393798947, -0.0175652336, 0.0180081706, 0.00640874961, -0.0259118341, -0.0161810536, -0.0163748395, 0.00982075091, 0.02240986, 0.000113762224, 0.0195446089, -0.00585161708, 0.0044743591, -0.0107827559, -0.00299847801, -0.0333033502, 0.00482386444, 0.015364388, 0.0366253816, 0.00158402, 0.0160011109, 0.0140840225, 0.0390061699, -0.0266592894, 0.000485760364, -0.00615267642, 0.0141393896, -0.0127206063, -0.00341719226, 0.0187971517, -0.00938473456, 0.0118554942, -0.0225759614, 0.0192262474, 0.00474081375, 0.0265070312, -0.0193508249, 0.0271437522, -0.0191016719, -0.000787684461, 0.00350197311, -0.0168869849, 0.0183542147, 0.00794518832, -0.00554709788, -0.00549173076, -0.012166935, -0.0120838834, 0.00959236175, -0.00281161396, 0.0186864175, -0.00790366251, -0.0287078749, 0.00211087312, -0.0210672058, 0.00758530153, 0.0082358662, 0.0129489955, -0.0178143848, 0.025358161, 0.00113762228, -0.0143124126, 0.00091528846, -0.00461969804, 0.0159180593, -0.0111772465, 0.00383417611, -0.0279881023, -0.00654716743, -0.00388262258, 0.0266592894, -0.0179112777, 0.0225344356, 0.0167208835, 0.00276489789, 0.00956467818, 0.00491729658, 0.000529448502, 0.00167053123, -0.0301474221, 0.0182019565, 0.0121807763, -0.0181050636, -0.00433940161, -0.0118070478, -0.0324728414, -0.00869264454, -0.0230465829, 0.00138590939, -0.016153371, 0.00317842141, -0.00786905829, 0.00379957166, -0.00180981425, -0.0184511077, 0.0100560617, -0.011647867, -0.00024136623, -0.0122707477, 0.00183922797, -0.0105474452, -0.00912866183, -0.0110803535, 0.00360924704, 0.015267496, 0.0114679243, -0.041220855, 0.00547096785, 0.0208457373, 0.0149768181, 0.0215101428, -0.0100076152, 0.0133365663, 0.0259118341, -0.00660945522, 0.0347428955, -0.00482386444, -0.000778600748, -0.0131289391, -0.026493188, 0.0303688906, 0.0125752678, 0.009274, -0.0111772465, 0.00413869554, -0.00334798335, 0.00012890168, 0.0156412236, 0.00386532024, -0.0211364161, 0.0146307731, -0.00434632227, -0.0270191766, 0.0169561952, -0.00923247449, 0.0210533645, -0.0176759679, 0.00658869278, -0.01120493, -0.00401411951, -0.00331856939, 0.0288462937, 0.0154612809, -0.00732230768, 0.0321683213, 0.00404180307, 0.0113848737, -0.00989688095, -0.00698664412, -0.0156689081, 0.0140009718, 0.0083466, 0.0405010805, -0.0161810536, 0.00931552518, 0.00968925375, -0.0154612809, 0.0128174992, 0.0271575954, -0.0202366989, -0.0163886808, -0.023835564, 0.0116617093, 0.0282510966, -0.0058412361, -0.00902484823, -0.00367499562, 0.0175098665, 0.00274413521, 0.0113156643, -0.0110180657, 0.0243061855, -0.00533601036, 0.00935013, -0.00127950055, 0.0199321788, 0.023392627, 0.00133486779, -0.0212333072, -0.00158834551, 0.00270260987, -0.0205273759, -0.0079867132, -0.0060281, -0.0257457327, 0.00622188533, -0.00126479368, 0.0112810601, 0.00138331403, 0.0160426367, -0.00371652097, 0.000599522609, -0.0399750918, -0.0138556333, -0.00143435562, -0.0242231358, -0.0207765289, -0.0190878306, -0.0165547822, -0.00294138072, -0.0189909376, 0.0115025286, -0.00406948663, -0.00534293149, -0.00274067465, -0.011917782, 0.00531870825, -0.00387916202, -0.014381621, -0.0134334583, 0.00307979854, -0.00838120468, -0.0151844453, 0.00746764662, -0.000668299, 0.0168731436, 0.00109004101, 0.0227697473, -0.0028341068, 0.013862554, 0.0139456047, -0.0429095514, -0.00741227949, -0.00822202396, 0.0133434869, 0.0290677622, -0.014921451, -0.00321475603, 0.0274205878, 0.00428403448, -0.00619074097, 0.0043220995, -0.0334694497, -0.00079201, 0.00573050184, -0.00719773164, 0.0260640923, 0.0143677797, 0.0157104339, -0.012955917, -0.0262855627, -0.0249290671, -0.00106581789, 0.0317807533, -0.0230742656, -0.00392068736, -0.0291231293, -0.0119800707, -0.0201121233, 0.0474773459, 0.00766835222, 0.00974462088, -0.0269499682, 0.0213025175, 0.00397259416, 0.00558170257, -0.000301707798, 0.00714928517, -0.00529794581, 0.00470620906, -0.000869870069, -0.0161395296, -0.0268392339, -0.00742612127, -0.0138971582, -0.0175652336, 0.0149076097, 0.00451934477, 0.0295660663, -0.0130182048, -0.000465862802, 0.00746072549, 0.00726694055, 0.0339954384, 0.0273375381, -0.0146307731, -0.0072046523, -0.0360440239, -0.00743996305, -0.00234099291, 0.0104713151, -0.00117222674, -0.00254169898, -0.0024517274, 0.00926708, -0.00333933206, 0.00425289059, -0.00953699462, -0.0484185852, 0.00991764385, -0.00898332242, 0.000414388633, -0.00655062776, -0.0370406322, -0.0168039352, 0.0244446043, 0.0186033677, 0.0283479895, 0.00123105431, 0.0188248362, 0.0142155197, 0.00671672914, -0.00658523245, -0.0100006945, 0.00308844959, -0.0108104395, -0.0311993975, 0.00381341344, 0.000804554147, -0.00377880898, -0.0447366685, 0.00324763032, -0.00405910518, -0.00192227878, -0.0174545, -0.0127275269, 0.0120700421, 0.030728776, -0.0118070478, 0.00356426137, 0.0105266823, 0.00640182849, 0.00206069672, -0.016596308, -0.00919787, 0.0212886743, 0.00666482234, 0.000795903, 0.00777908694, -0.0202643834, -0.000832237711, 0.00759914331, 0.0186864175, -0.00152519241, -0.0204166416, -0.0174406562, -0.0147830332, -0.012187697, 0.0168039352, 0.0229635313, -0.0138002662, -0.0165409409, -0.0125199007, -0.00614575529, -0.00205204566, 0.012803657, -0.0124922171, 0.0146307731, 0.00847117603, -0.00975846313, 0.0154751232, 0.0219530817, -0.00802131835, 0.00673403172, -0.00804208, 0.0232265256, -0.0153367044, -0.00129074708, 0.00445359619, 0.00994532742, 0.00627725245, -0.011647867, 0.0335248187, -0.00623918744, 0.0226451699, 0.00639836816, 0.0455671772, -0.0135995597, 0.00609730929, 0.0227143802, 0.0251920596, 0.00660253456, -0.00465776259, -0.00503149116, -0.0169008281, 0.000439476862, 0.0183680579, -0.00369921885, -0.00465430226, -0.00336528546, 0.00943318103, -0.0074814884, -0.01236072, 0.00454702834, 0.00658869278, 0.0238770898, -0.00926015805, -0.0202228576, 0.0158350095, 0.0164855737, 0.00119125913, 0.0137518197, -0.0434355401, -0.0130943349, 0.00700394623, 0.00128296099, -0.0136756897, -0.00612499285, 0.00966849085, 0.0279465765, -0.00226659328, 0.0291231293, 0.0129420748, 0.0182157978, -0.0207488444, -0.00311440299, 0.00921171252, 0.026299404, 0.0173852891, -0.00648487918, -0.00272683287, 0.00697626267, 0.00461623725, -0.00518375076, 0.0148799261, -0.0171638206, -0.016596308, 0.00644681416, -0.000898851315, 0.00759914331, -0.00888643, -0.00295003178, 0.0146030895, -0.0250536427, 0.0221883915, -0.0158626921, 0.00837428402, 0.0115163708, -0.00533947116, -0.00569243683, 0.00494498, 0.0109419357, -0.0082151033, -0.0123745613, -0.00710776, 0.0169561952, 0.00871340744, -0.00514914654, -0.00783445407, -0.0057374225, 0.027282171, -0.0101183495, -0.0020745385, 0.0144369882, -0.00923939608, 0.0122776693, -0.0134819048, -0.0143539375, -0.00303308247, -0.00623572711, -0.0139179211, 0.00417676056, 0.00156239222, 0.00583085464, 0.017039245, 0.00710776, 0.00647795852, 0.00182365603, 0.00721157342, 0.0133573283, 0.00625302922, 0.00455741, -0.00244134595, -0.022063816, -0.0191016719, 0.014478514, 0.00575818541, 0.0213994086, 0.00383763667, -0.0239462983, 0.00239462988, 0.00758530153, -0.00278739072, 0.00531178759, -0.00684476597, -0.00261090789, -0.00396913383, -0.0298152193, 0.0217592958, -0.0156550668, 0.0131150978, 0.00506955618, -0.00974462088, 0.00174060522, -0.00415599765, 0.00779984938, -0.0386185981, -0.0041733, -0.00322859781, -0.00810436904, -0.0208872631, -0.0103259766, 0.00169648451, -0.0016653405, 0.00609730929, -0.0196415018, -0.0250813253, 0.00468544615, -0.0125752678, 0.00809744839, 0.00482732477, -0.00787597895, -0.00326493243, -0.0128867077, -0.0204304848, 0.0195722934, -0.00701778801, 0.0166516751, -0.0307841431, 0.00634992169, -0.00564399036, 0.0068482263, 0.000818395929, -0.00919787, 0.00251055486, -0.0195030849, -0.0172330309, 0.00365769328, -0.015267496, -0.0109903822, 0.00708699739, 0.00392068736, 0.000702038349, -0.00102256238, -0.015267496, -0.0147968754, -0.000146095786, -0.00627379213, -0.0161118452, 0.0151982866, 0.00278046983, 0.011917782, 0.0185203161, 0.00905253179, -0.00104419014, 0.0253027938, -0.025358161, 0.00679285917, 0.0154751232, -0.00673403172, 0.00358156348, 0.0138002662, -0.00870648678, -0.00675825449, 0.0031593889, 3.06506467e-06, 0.00396913383, 0.0262301955, 0.00883106329, -0.0154751232, -0.0195722934, -0.00164371275, -0.00561284646, -0.0187556278, -0.013149702, -0.0012509519, 0.0221330244, 0.0181327462, -0.0196276605, -0.0126167927, 0.0140009718, -0.0127690528, -0.0011869336, 0.0156412236, -0.0151290782, -0.00279950234, -0.0204581674, -0.00413869554, -0.019157039, 0.0197383948, -0.0242923442, -0.00502110971, -0.0177728608, -0.000423256017, 0.00672018947, 0.00414561667, -0.01058897, -0.0272129625, 0.00559900468, -0.0032112957, 0.0140909432, 0.0424943, 0.016153371, -0.0111703258, 0.00113070128, 0.00252958736, 0.000629801478, -0.00324763032, 0.0204028, 0.0138556333, 0.00464046048, -0.00267319591, -0.00761298509, 0.00646411674, -0.015613541, -0.0181465875, -0.0154059138, -0.0148660839, 0.0124091655, 0.0248598568, 0.0291231293, -0.00759222265, 0.0112672178, 0.00302616158, -0.0102982931, 0.0102913715, 0.0164440479, -0.0226451699, -0.0182988476, -0.00409717, -0.00862343609, -0.0199044961, 0.024818331, 0.0141117061, -0.0121323299, -1.18682547e-05, 0.00423212769, 0.0139663676, 0.0249013826, 0.0108242808, -0.00471659051, 0.0137379775, 0.0157242753, -0.0162087381, -0.0119869914, -0.00355388, -0.0159457438, 0.00624610856, 0.000458941882, -0.0188248362, 0.0280573107, -0.00264032162, -0.0187833104, -0.0187833104, -0.0183680579, 0.0164302066, 0.0104436316, -0.0128728664, 0.0150737111, -0.0138487127, 0.0275174808, 0.0112949014, 0.0195307676, 0.00178559113, 0.00450550299, 0.00909405667, -0.0185756832, -0.00665444136, 0.0193231404, -0.00939165521, 0.0144923553, 0.018464949, -0.00953007303, 0.0159595851, 0.00271991198, -0.00071631273, 0.0166655164, -0.00699356524, 0.0105682081, 0.0191155132, 0.00519759255, 0.0185064748, -0.0204720087, -0.00296041323, 0.00237732776, 0.0144231468, 0.00424596947, -0.00867188256, 0.0168316178, 0.0113641107, -0.0250398014, 0.0087203281, 0.0257042069, 0.0203751177, -0.011647867, 0.0155166481, 0.00656100921, 0.000949892914, -0.00103467389, -0.00616305741, -0.00447089877, -0.00309364032, -0.000610336487, 0.015613541, -0.0118900985, 0.000673057104, -0.00886566751, 0.0166932, 0.00708353659, -0.0101529537, -0.00484116655, -0.0223960187, -0.00481694331, -0.00690705376, 0.000962869613, 0.00250536413, -0.0236140955, -0.00164198247, 0.00547788898, 0.0188802034, -0.0028081534, 0.00969617441, 0.0169977192, 0.0261609852, 0.00460585626, 0.00320091425, -0.00825662818, 0.00850578118, 0.00878261682, 0.0229081642, -0.00289466465, -0.00673749205, -0.00923939608, -0.00764066866, 0.00502457, -0.0342722759, -0.00413523521, 0.0166239906, -0.00464392081, -0.00855422672, 0.0136272432, 0.0197383948, 0.00449166121, 0.021523986, -0.0229358487, 0.0270191766, 0.016305631, 0.0307841431, 0.00812513195, -0.0154889645, -0.00348813133, 0.0144646717, 0.000987957814, 0.0180912204, 0.0035348474, 0.0232680514, 0.00709391804, -0.00294830161, -0.0162502639, -0.0334694497, 0.00235483469, 0.00324936048, -0.0104713151, 0.00218700315, 0.00412831409, -0.0172468722, 0.00615959708, 0.00774448225, -0.00984151382, -0.0198214445, -0.00856806897, -0.00415253732, -0.0131358597, 0.00654024631, 0.00917018671, 0.0141255483, 0.0162641052, -0.0109211737, -0.0113710314, -0.00700394623, 0.00189459522, 0.000108463413, -0.00528756436, 0.0116686299, -0.0100283781, -0.00493805902, 0.00865112, 0.0225898027, 0.0023738672, 0.0096823331, -0.0123122735, 0.0185756832, 0.0142016783, -0.00113675708, -0.0014430068, 0.0165409409, -0.0141117061, -0.0156412236, 0.000555401901, -0.0239601415, 0.00595543068, 0.0151982866, -0.0047788783, 0.019849129, -0.0044743591, -0.0152813373, -0.000327877438, 0.0180635378, -0.0138002662, 0.0154197551, 0.0173299219, -0.0151290782, -0.00333068101, 0.0182434805, 0.0124645336, -0.0144369882, -0.0268946011, -0.0127759734, -0.0125891091, 0.0027822, -0.00782061182, -0.00166707078, 0.00732922833, -0.0134542212, -0.0256211553, -0.00306249643, 0.0057374225, 0.00930168387, 0.00529102469, 0.00683784485, 0.0249705911, 0.00336528546, 0.0056855157, -0.0107412301, -0.0116755506, 0.00183576753, 0.00266108429, 0.0163748395, -0.0147691909, -0.000699010445, -0.021966923, 0.00598311424, -0.0135649554, -0.000255856867, 0.0191708803, 0.00586545886, -0.0141670732, 0.00917710736, -0.00542252185, -0.0158765353, -0.005207974, 0.0245414954, -0.0200152304, 0.00886566751, -0.00141964876, 0.00616997853, -0.00104765058, 0.009703096, 0.0218700301, -0.00358156348, -0.00266627502, 0.00347082922, 0.0242369771, 0.00202955259, 0.00740535837, 0.019946022, -0.0104574738, 0.00149664364, 0.0203474332, -0.0156827495, -0.00829815399, 0.00486192899, -0.0022977374, -0.00560938613, -0.00235829526, 0.0173022393, -0.0131704649, -0.00703509059, 0.00211260351, 0.00818049908, -0.0231573172, -0.0182850063, 0.0220084488, -0.00896255951, 0.00039968174, 0.00176915398, -0.022659013, 0.0191847235, 0.00686898874, 0.00636376347, -0.0115717379, 0.0134265376, -0.0134126954, 0.00436708517, 0.00700740702, -0.0226728544, -0.00108917593, 0.00547788898, 0.011398715, 0.0259672012, 0.00642605172, 0.0264655054, 0.00445705699, 0.00539483828, 0.0146861402, 0.0207350031, 0.00347428955, -0.00887950882, 0.012014675, 0.000549346092, -0.0226728544, 0.0275866911, 0.00440861052, 0.0120285163, 0.00868572388, 0.0186310504, -0.018271165, 0.014727666, 0.0182434805, 0.0329157785, -0.00878261682, -0.00811129, 0.00685860775, 0.00825662818, 0.0201536473, -0.0015831549, -0.00728078233, -0.0148384, -0.0100906659, 0.0226174872, -0.0118347313, -0.0142155197, 0.00307460781, -0.00806976482, -0.0093778139, 0.000152908542, 0.0235864129, 0.0154059138, 0.00373036275, -0.00303481286, 0.00654716743, 0.00974462088, -0.00685860775, -0.0149629768, 0.0156412236, -0.0123953242, -0.012187697, -0.00861651544, -0.0169008281, 0.0258426238, 0.00739843771, -0.00784137473, 0.0192124061, -0.00589660322, -0.0245968625, -0.0263132453, 0.0356564559, -0.0183126908, 0.018464949, -0.0203474332, -0.0183265321, -0.0108519644, -0.00596581213, -0.0314485505, 0.0194892418, 0.0291231293, -0.0163886808, -0.0160011109, -0.0109765409, -0.0189909376, 0.0138002662, -0.00550557254, 0.0139732882, 0.000140256278, 0.0054329033, 0.00132362125, 0.0204858519, 0.000700740668, 0.00793826766, 0.0119316243, 0.00979306735, 0.000497006811, -0.0101183495, 0.00703509059, -0.00535677327, -0.0376219898, -0.0158350095, 0.0181465875, -0.0119039407, 0.00965464953, 0.0103882644, -0.00261436845, -0.00304173375, -0.00196899474, -0.019447716, 0.0126167927, 0.01182089, -0.000188053717, 0.00968925375, 0.0150321852, -0.0124368491, -0.0216900874, 0.0037649672, 0.00453664688, 0.00811129, -0.00221641688, -0.0117101558, 0.00260917773, 0.0124368491, 0.0180081706, -0.00346217817, -0.0100145359, 0.00712852273, -0.013149702, 0.00676863594, -0.0252059028, 0.00458163302, -0.00195688335, -0.0157242753, -0.0116340257, 0.00876185391, -0.00446743798, -0.0282510966, 0.020292066, -0.000737075403, 0.00977230445, 0.00440861052, -0.0203474332, -0.0186310504, -0.0112602971, 0.00342584332, 0.0204858519, 0.0216624029, -0.0160703193, 0.0165824667, 0.0270745438, -0.0325282104, -7.0290349e-05, -0.0201121233, -0.00831891689, 0.0221745502, 0.0103467386, -0.00438438728, 0.0220914986, 0.00378919044, 0.0118554942, -0.00704547158, 0.0139040798, 0.000940376718, 0.016748568, -0.00875493325, 0.0015831549, 0.002603987, -0.0118554942, -0.00324243959, -0.00373036275, -0.00513184397, -0.0336632356, -0.0123191942, 0.0245691799, -0.0129420748, -0.00796595123, 0.00605924428, 0.00987611804, 0.0310609806, -0.00757145975, 0.00940549746, 0.026202511, -0.00119644986, -0.0217316132, -1.7194101e-05, 0.0129005499, 0.0203335918, 0.00535677327, 0.0108242808, 0.000217683802, 0.0111703258, 0.00205723615, 0.00137293269, -0.0183957405, 0.00566821359, -0.00696588168, 0.00394145027, -0.0122499857, 0.013225832, 0.0187556278, -0.0197522361, -0.00514222542, 0.00928784162, -0.00249844324, -0.00646411674, -0.0197937619, -0.0151429195, -0.0371513665, 0.00288947392, 0.00629109424, -0.0100352988, -0.0234618355, 0.0100283781, -0.0145200389, -0.0295660663, -0.00398297561, 0.0116201835, 0.0113710314, 0.00582393352, 0.0135857183, 0.0212194659, -0.0133573283, 0.0221745502, 0.00272683287, -0.0104782358, -0.0015061599, 0.00876877457, 0.00606962573, 0.0297044851, 0.00298982696, -0.0115025286, -0.00296733412, 0.00997301098, 0.0181327462, 0.00437746663, 0.00455741, -0.00972385798, 0.0104367109, -0.00625302922, -0.0153505467, -0.0210672058, -0.0019465019, -0.00513184397, 0.00694165844, 0.0105682081, -0.00383417611, 0.00577548752, -0.0046785255, -0.0176067594, -0.014284729, 0.0301751047, 0.0188663621, -0.00865804, 0.0271714367, -0.0353796184, 0.0184372663, 0.0103328973, -0.00558862323, 0.00531870825, 0.00879645813, -0.00307633821, -0.0196415018, 0.00674095238, -0.00551941432, 0.0035608008, -0.0203335918, -0.00272683287, -0.00901792664, 0.00739151658, -0.00345006655, 0.00154335971, -0.0016272756, 0.0206519533, 0.0120769627, 0.0107412301, -0.0118485736, 0.0114471614, 0.0274897981, 0.00112810603, -0.00240847166, -0.00569243683, -0.00817357749, -0.0023219604, 0.0192954578, -0.0110872751, -0.0126790805, -0.0139940511, 0.0110042244, -0.0160149522, 0.00532562938, -0.00899716467, 0.00714928517, -0.0106720207, -0.000157991075, -0.00939857587, -0.00421482557, -0.000535071769, -0.0126721598, -0.0103328973, 0.0158350095, 0.00743996305, 0.0051076212, -0.0232126843, 0.00837428402, -0.00703855092, 0.018963255, -0.00656793, 0.00166361034, -0.00812513195, 0.000578759878, -0.0351858325, 0.0109488573, 0.00401758, -0.0221468657, -0.000136795832, -0.0116132628, -0.00783445407, -0.00367499562, -0.00541906152, -0.00785521697, 0.00176309817, 0.000387353881, 0.00474081375, -0.022700537, 0.0106720207, -0.00664406, 0.0316977, -0.00499342615, 0.0165686235, -0.0242092926, -0.00971693732, -0.00562668825, 0.0123745613, -0.00222506793, -0.0240293499, 0.000584383146, -0.00473389262, 0.000157234099, -0.0150045017, 0.0197245535, 0.0130320461, -0.0119593078, 0.00728078233, -0.013225832, -0.0107204672, 0.00279085129, -0.00716312695, 0.0350474156, -0.0093778139, -0.0215101428, 0.000346044777, -0.00321821659, 0.0103467386, 0.0182019565, -0.00741227949, -0.000475379027, -0.00539829861, -0.0153367044, -0.0021195244, -0.0253858455, 0.0120631214, 0.00842965115, 0.0089694811, 0.015904218, 0.0144231468, 0.00633954024, 0.000477541791, -0.00590698468, -0.000252180151, -0.000978441676, 0.00229081651, 0.0137448991, -0.0248044897, 0.0173160806, 0.00786905829, 0.00900408532, 0.0281403624, -0.00866496097, -0.0145477224, 0.00847117603, -0.019849129, 0.0113364272, 0.012533742, 0.0158626921, -0.00837428402, 0.0245691799, -0.00340681081, -0.0217039287, 0.016305631, -0.00760606444, -0.0152813373, 0.0230465829, 0.00125700771, -0.0215101428, 0.0187971517, -0.0064191306, -0.0034154621, 0.00788290054, -0.0307010934, -0.000488788239, 0.0114402408, 0.0222437587, -0.0109696193, 0.0119593078, -0.0128174992, -0.0127967363, -0.0625095293, -0.00840196759, 0.0128313405, 0.0308118276, 0.0160426367, 0.0116893928, -0.00426673237, 0.0164163653, 0.0123884035, 0.00398989627, 0.0302581564, 0.00892795529, -0.00302443141, 0.00148972275, -0.00913558248, 0.0109834615, 0.0329988301, -0.00140494178, -0.0214963015, -0.00790366251, -0.0131635433, -0.00863035675, 0.0204304848, -0.0093778139, -0.00670634769, -0.00183749781, -0.0129697584, -0.00257111271, -0.0102014, 0.00493805902, -0.00561284646, -0.00860959385, 0.0162225794, -0.0054121404, 0.00762682687, 0.0219253972, -0.0117655229, -0.0238909312, 0.0111218793, 0.0143954633, 0.0162364207, 0.0125821885, -0.00186518137, -0.00932244677, 0.00938473456, 0.0270468611, 0.0152121289, 0.0138002662, 0.0122015392, 0.00500034727, 0.0029552225, 0.0120354379, -0.00668212492, -0.00359540526, -0.00968925375, -0.0109973028, -0.00376150687, -0.00619766209, 0.00910097826, -0.0114956079, -0.0118416529, -0.00162641052, 0.0160841607, -0.0011488687, 0.0206519533, -0.00186691165, -0.00799363479, 0.00262647984, 0.0282234121, 0.0045228051, -0.00372344186, -0.0149352932, 0.0196691863, 0.00863035675, 0.000629368937, 0.00719773164, 0.01182089, 0.000256073137, 0.0103328973, 0.0150598688, 0.0177036505, 0.0126929227, 0.0152813373, 0.0120838834, 0.0238909312, 0.0147830332, 0.0164025221, -0.00296387356, -0.0218977146, -0.00260744756, 0.0305073075, 0.011647867, 0.0325558931, 0.0156965908, 0.00151394599, 0.000640615413, -0.00771679869, -0.0237940401, 0.0168316178, -0.00194823218, 0.0138556333, -0.000481434807, -0.00676863594, 0.00896255951, 0.0160287935, -0.000467593025, -0.0146307731, -0.00803516, 4.1687581e-05, 0.0102083208, -3.83217548e-06, 0.0132119898, 0.00227870489, -0.00145252293, 0.0136134019, 0.0126790805, -0.0165132564, 0.00700740702, -0.000691224472, -0.0244999714, 0.000524257834, -0.0116893928, -0.0172745548, -0.00384801789, 0.030092055, 0.00357464259, -0.0121046463, -0.0128521034, -0.00708699739, -0.0294553321, 0.0195307676, 0.0260087252, -0.000396437565, -0.0280019436, 0.0174406562, -0.0169700366, -0.00719081052, 0.0129628377, 0.005207974, 0.020139806, -0.0334417671, -0.00977922603, 0.00586199854, -0.00054112752, -0.000140580698, -9.28373265e-05, -0.0101045081, 0.027282171, -0.00456779124, -0.0149076097, 0.000266238203, -0.00125873787, 0.024084717, 0.0016523638, -0.0213302, 0.00796595123, 0.0146030895, 0.00868572388, 0.0121254092, 0.00273375376, 0.0119454656, -0.0123814819, -0.0170115624, -0.00554363756, -0.00668904558, -0.00279604178, -0.0175098665, 0.004197523, -0.00750225084, -0.019946022, 0.0118139694, 0.00198110635, -0.00523911789, 0.000458941882, -0.0228804816, 0.00802131835, -0.00073448004, -0.0182988476, -0.000675652467, 0.00441207085, 0.00967541244, 0.00634992169, -0.00164630811, -0.0171776637, 0.00476503652, -0.0151013946, 0.00169734971, -0.00648141885, -0.00470620906, 0.00554363756, 0.0211225729, 0.0068274634, -0.0164302066, 0.0204028, -0.00242923433, -0.0181465875, -0.0142570455, 0.020139806, -0.018022012, -0.00337739708, -0.0106720207, -0.0153228631, -0.00876877457, -0.000702038349, 0.00135649554, -0.00933628809, 0.0173576064, 0.0064918003, -0.016499415, -0.00773756159, -0.0135234306, 0.00333241117, -0.00341719226, -0.00912866183, -0.0067478735, -0.012014675, -0.037096, -0.00193785084, -0.025067484, -0.00594851, -0.0189078879, -0.0131566226, 0.026742341, -0.0127275269, 0.00476849731, -0.00102515763, 0.0195169263, 0.0302027892, 0.00370267918, 0.00572358072, -0.000352965668, -0.00528756436, 0.0101183495, -0.00730154477, 0.00923247449, 0.00470620906, 0.0130528091, 0.0389508, -0.00982075091, 0.0261748265, 0.0121600134, 0.0281126779, -0.0177728608, -0.0105197616, -0.009274, 0.00923939608, 0.00570281781, 0.00788290054, 0.00160045712, -0.00127517502, -0.00348986173, 0.000259317312, 0.00177867024, -0.00207107794, 0.0251228511, -0.00553671643, -0.00550903287, 0.00869264454, -0.00332029979, 0.0158350095, 0.00197591563, -0.00940549746, 0.0117516806, -0.0088449046, -0.00519067189, 0.0120562, -0.000149339947, -0.00853346474, 0.00975154247, 0.00880338, 0.00344314566, -0.0206934772, -0.0147968754, -0.016499415, 0.0101114288, -0.0249567498, -0.0174406562, -0.00654370664, 0.00535331294, -0.0113848737, -0.0219253972, -0.0168316178, -0.00684130518, -0.00827739108, 0.00815973617, -0.012609872, 0.0155720152, 0.00974462088, 0.00663713878, 0.0226036459, 0.0229081642, -0.000179402588, 0.00461277692, 0.0075299344, -0.0126929227, -0.000784656557, -0.00939857587, -0.0139317634, -0.0195722934, -0.0100214565, 0.0118278107, -0.0103675015, 0.00266800518, 0.00684130518, -0.0140563389, -0.00458163302, -0.0139248418, -0.0174268149, -0.0194200333, -0.0115925, -0.016790092, -0.00200532959, 0.00564053, -0.00238597882, -0.0133919334, 0.00544674508, 0.0168039352, -0.0213717259, 0.00404180307, -0.0303965732, 0.00116444065, -0.0125060584, -0.0169146694, -0.010838123, -0.000759135757, 0.00129680277, -0.000724531244, 0.0325282104, -0.00586891966, 0.0143954633, -0.0127759734, 0.00640874961, 0.00640528882, -0.0185064748, -0.00314727728, 0.00450204266, 0.0113295065, -0.0182988476, 0.000330040202, -0.0171638206, 0.00264032162, 0.0235864129, -0.00991072226, -0.0211779401, -0.00675479416, -0.0072046523, -0.0234618355, 0.00611807173, 0.0313101336, -0.0173299219, -0.0167624094, 0.00177347951, -0.0192262474, -0.00332549028, -0.00164803828, 0.00945394393, 0.0116547886, -0.00824970752, 0.0104782358, 0.00134092348, -0.00420098379, -0.0217039287, -0.0166793577, -0.014575406, -0.00168869854, -0.00324416975, 0.00534639182, -0.00081796333, -0.00350543368, 0.00166014989, 0.00322513748, -0.0163333137, -0.00524949934, 0.076738894, 0.023392627, 0.0236833058, -0.0124645336, -0.00290158554, -0.0294830147, -0.0247491226, 0.0406671837, 0.00747456728, -0.00113329664, -0.00215585902, 0.0063187778, -0.000919614, 0.0250536427, -0.0142016783, -0.00458855368, -0.00613191351, 0.000270131219, -0.0286525078, -0.00655408809, 0.00277873967, -0.00239116955, 6.35857286e-05, 0.00116444065, -0.00708007626, 0.0049830447, -0.0122015392, -0.0038687808, -0.0168039352, 0.00225967239, 0.00199148781, 0.0157381166, 0.00940549746, 0.0231296327, -0.0185895264, 0.00586545886, -0.0088103, 0.0196415018, 0.0053290897, -0.00993840583, -0.00240328093, 0.00581701286, 0.0183680579, 0.00466468371, 0.0118831778, -0.024624547, 0.00209184061, -0.00346736866, 0.00788290054, -0.0249844342, 0.00576164573, 0.00802823901, 0.0154059138, -0.0268946011, 0.0298152193, -0.0127136856, 0.0110803535, -0.00676517561, 0.0130528091, 0.00918402895, 0.0273513794, -0.00781369116, -0.00351235457, -0.0122292228, 0.0127828941, 0.00472697197, -0.0168593023, 0.0135234306, 0.00552979577, -0.0162364207, -0.00547442865, -0.00565783214, -0.00505917473, -0.000794605352, -0.0188386776, -0.00316457963, -0.0141117061, -0.00531178759, 0.00195688335, -0.0160011109, -0.0168593023, 0.0021766217, -0.0165824667, -0.0196691863, 0.00380303222, 0.0047996412, -0.0118347313, -0.00697280234, -0.00833967887, -0.0141393896, 0.00446051732, 0.0326943099, -0.00582393352, 0.0232265256, 7.31019609e-05, 0.00590006355, 0.000763028744, 0.0130112842, 0.0078067705, 0.00593812857, 0.0301751047, 0.0258703083, -0.0162641052, -0.00193612056, -0.00561976712, 0.0138141075, 0.00606962573, -0.00624610856, 0.00367845595, 0.0150598688, 0.0225205943, 0.000401411962, 0.00456433091, 0.00486192899, 0.00558170257, 0.00177520979, -0.0178143848, 0.0244030785, 0.0229220074, -0.0154335974, 0.0268253908, -0.000323119311, -0.00252439664, -0.00640182849, 0.00396567304, 0.00560592534, 0.00804208, 0.00349678262, 0.0115302121, 0.00941241812, 0.0223406516, -0.00363347027, 0.0150321852, -0.00455048913, 0.00822894461, 0.0257872567, -0.0188248362, -0.014727666, -0.0158626921, 0.0127898157, 0.0127206063, -0.00680670096, 0.0283064637, 0.00209530117, 0.0136756897, -0.0140009718, -0.011917782, 0.00950238947, -0.0121461721, 0.0126860021, 0.00814589392, -0.0089694811, -0.00479618087, -0.00173627969, 0.0142432032, -0.000260182424, 0.00804208, -0.0168593023, 0.00203993404, -0.0110042244, -0.00647795852, 0.00753685553, 0.0177590176, 0.00428057415, 0.0161395296, -0.00642951205, 0.0151013946, 0.00139802089, 0.00586545886, 0.0138071869, 0.0300090034, -0.00365077239, 0.00639490783, 0.0160011109, -0.00630839635, -0.0036888374, -0.00648141885, -0.0031836119, -0.00550211221, 0.00690359343, -0.00753685553, 0.00656100921, 0.00973078, 0.0372067355, 0.00486885, -0.00788982119, -0.0223960187, -0.0130320461, 0.0146861402, 0.033580184, -0.010685863, -0.00452972623, 0.00630493602, -0.00166793587, 0.00461277692, 0.000325930945, 0.0059623518, 0.00242231344, -0.0187556278, 0.00284794858, 0.010838123, 0.0161672123, 0.000429311796, 0.0221745502, 0.00306595676, 0.0166516751, 0.00184960943, -0.00365423295, -0.00241193222, 0.00304173375, -0.016056478]
18 Oct, 2021
7 Myths About Full Stack Development That You Must Know 18 Oct, 2021 There aren’t enough developers out there with the skills for full-stack development anymore. Full-stack is not a one-size-fits-all solution. A full-stack developer is someone who works with both front-end and back-end code. A headless web application is a piece of software that doesn’t have a user interface. Those terms are often tossed around as buzzwords, but they can be useful to keep in mind as you talk about this industry. Every technology has its own set of myths, some of which are more damaging than others. For example, the myth that full-stack development is complex and hard is not only incorrect, but it’s also dangerous. It’s not as hard as you might think. It’s the same as any other coding role – you just need to learn a lot of different skills to do it correctly. A lot of people think that they want to learn all of this on their own, but it’s usually too much for beginners. The best way to learn is by working with an expert who knows what he’s doing. Here are some of the most common myths we hear about full-stack development: 1. You Should Start with Front-End Skills The fact that frontend skills are in high demand doesn’t mean you should use them as your starting point. As you gain experience, you should focus on areas where you lack knowledge and expertise, such as back-end or data management. 2. A Full-Stack Developer only Needs Technical Knowledge It is wrong to assume that a full-stack developer only needs technical knowledge. There are other things to take into account as well, such as project management. Full-stack developers should have some knowledge of business aspects like marketing, sales, and operations. A full-stack developer should be able to write documentation for the product he/she is developing. In addition, a full-stack developer should have experience in handling all the stages of development from requirements gathering through deployment. They should also be familiar with different techniques and technologies used in each stage. 3. Full Stack Developers Should be Able to Write Code in any Language The most popular one is that full-stack developers should be able to write code in any language they want or need to. There are some instances where this might be true, but it’s not the case for all languages. Many programmers don’t know how to write code in every language, so they go for the ones they think are easiest or most familiar to them. You should always be learning. Even if you’ve been working as a developer for five years, there’s always something new to learn. The more you know about programming, the more tools you’ll have at your disposal to build great products for your customers. You can’t outsmart yourself, and that means leveraging everything at your disposal to build the best product possible. 4. A Full Stack Developer Should be an Expert Coder/Programmer A full-stack developer is a great, and very important, member of the team. But they’re not necessarily an expert coder or even a programmer. Full-stack developers can be responsible for coding the front end (the web pages and user interfaces), backend (database and server-side), and even marketing, design, and support. The most important thing they should be able to do is to code well. It’s true that many programming languages are becoming abstracted into what is known as “server-side” or “front end” languages that don’t require the user to know anything about programming whatsoever – but there’s still a lot of value in knowing how to code well. 5. All Full Stack Developers are the Same Full-Stack developers are the most coveted of developers. In some ways, they’re also the most misunderstood. There’s a perception that all full-stack developers do the same things and have the same skillset. The reality is that there are many different ways to build a full-stack application, depending on the technical approach and the project requirements. This is not to say that one approach or method is better than another; it’s just that each choice has its own pros and cons. 6. Only Learning JavaScript Can Make You Full-Stack Developer Front-end developers may use JavaScript as their primary programming language or as a secondary language, but it’s not the only one they use. They also use languages such as Python, PHP, and others to interact with back-end systems. A full-stack developer may write code in multiple languages or even develop an application in a different language altogether. 7. Coding is Everything The ability to write code is not enough. A junior developer may be able to write some very basic code, but if they don’t have the ability to communicate with the customer through design documents, they won’t be able to deliver a product. If there is no documentation for the front-end or the back-end, how do you know what you are building? Several other popular myths about Full Stack Development are Full Stack Developers should be experts in everything, Full-stack developers are more intelligent, Full stack developers should understand all the pieces of an app, etc. The myths about full-stack development are endless; there is no end. So, start with basics and never stop learning! Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know
https://www.geeksforgeeks.org/7-myths-about-full-stack-development-that-you-must-know?ref=asr3
Languages
7 Myths About Full Stack Development That You Must Know
Languages, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, Top Data Science Trends You Must Know in 2024, 7 Myths About Full Stack Development That You Must Know, Top 10 Fastest Programming Languages, Top 10 Programming Languages of 2015, Top 7 Web Development Myths That You Must Know, Top 10 Advance Python Concepts That You Must Know, Top 10 DevOps Programming Languages You Must Know, Top 10 Flutter Packages That You Must Know, Top 7 Database You Must Know For Software Development Projects, Top 10 Python Developer Skills That You Must Know in 2024, Top 5 Features of Java 17 That You Must Know, 5 Most Difficult Programming Languages of the World, Top 10 Programming Languages for Blockchain Development, Introduction to Programming Languages, Top 10 Backend Technologies You Must Know
GeeksforGeeks
[-0.00773284771, -0.000266509393, -0.0173565261, 0.0195342414, 0.0178520549, -0.0197820067, -0.00413048826, -0.00149228959, -0.0105299735, -0.0184649453, -0.00792193, -0.00115324405, 0.0429283865, 0.0070743165, -0.00526498677, 0.0318442062, 0.00157379091, -0.0192734376, -0.0443106517, -0.0318181254, -0.00739380205, -0.0145267993, -0.055968605, -0.014983207, -0.0323136523, 0.010745137, 0.0137704676, 0.00798713136, -0.0436064787, 0.00208643451, 0.0046488368, -0.000372664887, 0.0193908, -0.00454777479, -0.0162872281, 0.0047922791, -0.0102887293, -0.0302272178, -0.0161959473, 0.018686628, 0.0203948971, 0.0188300703, -0.00451517431, 0.00792193, 0.0203688163, 0.0320267677, -0.0232376624, -0.0299403332, -0.0166132338, -0.0387033597, 0.00482813967, 0.0199906491, 0.0453277864, 0.0416243672, 0.0191039145, -0.0106668957, 0.0331743062, -0.0605587587, -0.012916333, -0.00187779102, 0.00306282053, -0.0325483754, 0.00254610204, -0.00177346927, -0.0151136089, 0.0268367622, -0.00706127658, 0.03210501, -0.0169001184, -0.000424214493, -0.0233550258, 0.0233811066, 0.0110907033, 0.0444410518, -0.0127598504, 0.00480531948, 0.00297642918, 0.00773284771, -0.0237983931, 0.00244993041, 0.00530410744, -0.00730252033, -0.0188170299, 0.000395485287, 0.0197428856, 0.0207339413, -0.0134444619, -0.0484835207, 0.0485356823, 0.0148658454, -0.00263738353, -0.0246851277, 0.0026765042, -0.0433978364, -0.00788933, 0.0275930949, -0.0284537487, 0.0100735659, -0.00183052022, 0.01334666, 0.00271399482, 0.0164958723, 0.00169848802, -0.0215685163, 0.0209295452, -0.0206557009, 0.0364865214, 0.026562918, 0.0307227466, 0.0339828022, 0.0172913261, -0.0188691914, -0.0599328279, 0.0377905443, -0.0182693414, 0.0323658139, -0.00432609115, -0.0674439892, 0.0296534486, -0.0168349184, 0.0230029393, 0.0178650953, -0.0121208802, 0.0219858028, -0.0510394, 0.0223509278, -0.0107190572, -0.0444410518, -0.00340349623, -0.0205513798, 0.0502309091, 0.0405550674, 0.00662768912, 0.0191430356, 0.00649728719, -0.0115405908, 0.0109994216, 0.0381556712, 0.0121078398, 0.0334872715, 0.00915423129, -0.0205122586, 0.00584527664, -0.00311172125, -0.00512806466, 0.0521347784, 0.00403920654, 0.0474663824, -0.00850222, 0.00272703497, -0.0344000868, 0.01216, 0.0197168048, 0.0407897942, 0.036877729, -0.0375297405, 0.00603109971, 7.76809684e-05, 0.00725035975, 0.0105234534, 0.00196744245, -0.0394336097, -0.00808493327, 0.0102235284, -0.0179563761, 0.0217510797, 0.0306705851, 0.00841093902, -0.015517856, 0.0171739627, -0.0135227032, 0.0208643433, -0.0267063603, -0.00303022, -0.0170566011, -0.00966932, 0.0356258675, -0.0329395831, 0.00362844, -0.017187003, -0.0203296952, -0.0175651703, -0.00699607562, 0.00125512073, 0.0285580717, -0.00919335149, 0.0315312408, 0.00465209689, 0.000793415587, -0.00687871361, -0.0283755083, -0.0459537171, 0.0426936634, -0.0116579523, -0.00803277269, -0.01211436, -0.00600175885, 0.0147093628, 0.0292361621, 0.021425074, -0.0251284949, -0.0391988866, 0.00672223093, 0.0294448063, 0.0344000868, -0.0211381894, 0.00282157655, 0.0206557009, 0.050596036, -0.00097394106, -0.00786325, 0.0281147044, -0.00423481, -0.0106734158, -0.0234071855, -0.0194299202, -0.0131771378, -0.00186149066, 0.0137052657, -0.0576899126, 0.00773284771, -0.0148006445, -0.0118339956, 0.00129179633, 0.032809183, -0.00861958228, 0.0134183811, -0.00264879363, 0.00974756107, -0.0321310908, 0.00878910534, -0.00652988767, -0.00359909935, -0.0398508981, -0.0250241719, -0.0119057167, 0.0190908741, -0.0114297485, -0.0103408908, 0.0592025779, 0.0203427356, 0.0393032096, -0.043580398, -0.0185692664, 0.00181258994, -0.00279549602, 0.000592514756, -0.0244634431, -0.0114949495, 0.00722427899, -0.0108364187, -0.0122447619, 0.0125968475, -0.0100605255, -0.00259174267, -0.0142268743, 0.0154004944, -0.0181128588, 0.000564804301, -0.00184193044, 0.00332525489, -0.00549971079, -0.0146572022, -0.00824793614, 0.0159351435, -0.0149962474, 0.0395379327, 0.0059300377, -0.0238114335, -0.0425632633, 0.0304097813, -0.00545733, 0.0363300405, 0.0598806664, 0.021594597, -0.00989100337, 0.0132423388, 0.0381035097, 0.0256892238, 0.0215685163, 0.0599849895, -0.01695228, 0.0539343283, 0.0354693867, -0.00264716358, -0.00298946933, -0.000151083121, -0.01635243, 0.0040620272, -0.00390880462, -0.0285319909, 0.00618758192, -0.00842397939, -0.0105234534, 0.0670267045, -0.0134575022, 0.0287927948, 0.0464753248, -0.0260413103, -0.01515273, 0.0156091377, -0.0231463816, 0.0236940701, 0.00849570055, -0.0150484079, 0.0182171799, -0.000358402176, -0.00332688494, 0.00176694919, -0.0511437245, 0.00918031111, -0.0244243238, 0.000567249372, -0.0335655138, -0.000120621989, 0.0246720873, 0.00118013949, -0.0166914761, -0.0462666824, -0.0352346599, -0.0509611592, -0.0100540062, -0.0139269494, 0.02422872, 0.0535170436, -0.0103343707, 0.00828053616, 0.0131901773, -0.0245677661, -0.0396683328, -0.029601289, -0.0140443118, 0.00370668108, -0.00306119048, 0.0316094831, -0.00616476173, -0.0162350684, -0.0131771378, -0.0400334597, -0.0110841831, 0.00474011805, -0.00689175352, -0.01271421, -0.00786325, 0.0221553259, -0.0587852895, -0.0371385328, 0.0165480338, 0.0255588219, -0.00683959294, 0.00096579094, 0.0374254175, -0.00219075615, 0.0011695443, 0.0319485255, -0.0302793793, 0.00149962469, -0.0107712178, -0.00494550169, 0.0368516482, 0.029601289, -0.0298360121, 0.00472055795, 0.0176303703, 0.00322256307, -0.0329917446, -0.00252817175, -0.0354172252, 0.00869782362, -0.0323136523, -0.00601479923, -0.000368793582, 0.0246329661, -0.0362518, -0.0369298905, 6.89705121e-05, -0.0438412, -0.016652355, -0.00768068666, 0.0303837, -0.00592677761, 0.0568553396, -0.0137574272, 0.0394857712, 0.0268106814, -0.00952587742, 0.0201862529, -0.0172261242, 0.00559425214, 0.00354041834, -0.0457711555, -0.0209817067, -0.0160133839, 0.0014336087, 0.00277104578, -0.00682003237, -0.00568879396, -0.00582245598, 0.00444671325, -0.0508046784, 0.0181519799, 0.0557599589, -0.0110515822, 0.0240722373, -0.022559572, -0.0104582524, 0.0175521299, -0.0141095128, 0.0074850833, 0.00238961936, -0.0140312715, -0.0319224484, -0.0494484939, -0.00429675076, 0.0179954972, 0.0319485255, 0.0154265743, 0.0520565398, 0.00189898128, 0.0230290201, 0.0324701369, 0.0178259742, 0.0107060168, -0.0154917752, -0.0122252014, 0.0286363121, 0.0109929014, 0.0042087296, -0.0164697915, 0.00610934058, -0.0401899442, -0.0120817591, 0.0238114335, -0.0112080649, -0.0118991965, -0.0439976864, 0.0333307907, 0.00465209689, -0.00877606496, 0.00796105154, -0.0038175229, 0.0199776087, 0.0125772879, 0.0375297405, -0.0252197757, 0.0206296202, -0.0640535355, 0.000491453102, 0.0173304453, -0.0402942635, -0.00341653638, -0.0112928264, -0.04905729, 0.0180085376, 0.0200167298, -0.0448061787, 0.0295752082, 0.0199645702, 0.0306184255, -0.0296273679, 0.00532692764, -0.0133662205, -0.0011589491, 0.0355476253, 0.016652355, -0.0226247739, -0.0268889237, -0.0372167751, -0.0076089655, 0.0189474318, 0.00318996259, -0.0128315715, -0.00149880967, 0.028297266, 0.0211381894, 0.00908903, 0.00324701355, -0.0452756286, -0.00773284771, -0.0175260492, -0.00608652038, 0.0565423742, 0.0273583718, -0.0148006445, 0.0134835821, -0.00351433805, 0.0183997434, -0.00200004294, 0.0372167751, -0.00960411876, -0.0169914011, 0.0109668206, -0.00407506712, -0.0233550258, 0.0445192941, -0.0221683662, 0.0120230783, -0.0344000868, 0.0194820818, 0.0288188756, -0.0339045599, 0.0123230033, -0.0111950245, 0.0589939319, -0.0313747562, 0.00941503514, -0.0225204509, 0.0569074973, 0.0218162797, -0.00595611846, -0.0110059418, 0.0238505527, -0.0184779856, 0.0340610407, -0.0146572022, 0.0336698368, 0.0106212553, 0.0249850526, -0.0107386168, -0.0130728157, 0.00170989824, -0.0054736305, 0.0307488274, -0.00226573739, 0.00828053616, -0.0439194441, -0.00775240781, -0.0215293951, 0.0368255675, -0.0551340282, -0.0221683662, -0.0298620928, -0.0443106517, 0.0265498776, -0.00713299774, 0.00813057367, -0.00422502961, 0.0379991867, 0.0378687829, 0.00706779677, -0.0288188756, 0.00680699246, -0.0281147044, -0.00329917436, 0.0240461566, 0.0289753582, 0.0326005369, -0.0039642253, 0.0518739745, -0.0102365687, -0.00500744255, 0.0172391646, 0.00755680446, -0.0055160108, -0.0404246673, -0.0050791637, -0.00293893856, -0.0309053101, 0.0100800861, -0.0169262, 0.0182171799, 0.00410114788, 0.0173043646, 0.00392510463, 0.0162089877, 0.00298131909, -0.0326266177, 0.0293144044, -0.00652988767, 0.00211903499, 0.0176825318, -0.0280103814, -0.00249720109, -0.00244341022, 0.0231333412, 0.0318442062, 0.016521953, -0.0491355322, 0.0216728374, 0.00567901367, 0.0339306407, -0.0266411602, 0.0496571399, 0.0209947471, 0.00768720685, 0.0289753582, 0.0240461566, 0.0070286761, -0.0120687187, 0.00655922806, 0.0067613516, 0.0349738561, -0.0428501479, -0.0230420604, -0.0206426606, 0.0134444619, 0.00217119581, -0.0199124087, 0.00687219342, -0.00213533523, -0.00951283704, -0.0097280005, 0.038207829, -0.0137574272, 0.00438477239, 0.000618187711, -0.00442389306, -0.0017196784, 0.0143703166, -0.0122382417, -3.41923601e-06, 0.0172391646, 0.0189604722, -0.0247242469, 0.00211903499, -0.0237071104, 0.0124599254, 0.00508894399, -0.0302793793, 0.0365386829, -0.00326657388, -0.000452332461, -0.00326005369, -0.0133401398, 0.00388272409, 0.0405289903, 0.00154852553, -0.0243591219, -0.020225374, -0.0257153045, -0.0133336196, -0.00608978048, -0.0013716676, -0.0293926448, -0.000140487944, 0.00509220408, 0.0108429389, 0.0340871215, -0.0130728157, -0.044414971, -0.00938243512, 0.0362518, 0.00670919055, 0.110581025, -0.0118535552, 0.0415982865, -0.0104843332, 0.00672875112, 0.01641763, -0.0360170752, 0.00578333531, -0.0198732875, -0.00229344773, 0.0233811066, -0.0229898989, 0.0132423388, -0.00459993584, -0.0122447619, 0.00779804867, 0.00951935723, 0.00359583925, -0.0239679161, -0.00477923872, -0.0332786292, -0.00359257916, -0.0205122586, 0.00378492242, 0.0231333412, 0.000385908876, 0.0381817482, 0.005623593, -0.0243721623, -0.00882822555, 0.00925203227, -0.0333829522, -0.0493441746, 0.0165741127, 0.022859497, -0.0107516572, 0.00433913153, -0.0136791859, 0.0036121395, 0.0333829522, -0.00425437, -0.0294969659, 0.00577355502, -0.0195864029, 0.0220379643, -0.0128185311, -0.000242670256, 0.0166262742, 0.016717555, 0.0405289903, 0.00485096, 0.0160133839, -0.00749812368, 0.00144583383, -0.0227030143, -0.0120361187, -0.00543451, 0.0371124521, 0.0118079148, -0.0201080125, -0.0153352926, 0.0431891941, 0.0229246989, 0.000179812341, -0.008710864, -0.00228529773, -0.00115813408, 0.0248546507, -0.0153483329, -0.00339697604, -0.0186214279, 0.0175260492, 0.0142268743, 0.0133140599, 0.0172522049, -0.0184388645, 0.0153092127, 0.00248253089, -0.00811101403, -0.00672223093, -0.00315247197, -0.0339045599, -0.0266281199, -0.00845657941, -0.0127337696, -0.00797409192, -0.01701748, 0.0391988866, -0.0187648702, 0.0338263176, 0.00723079918, -0.02482857, -0.00573117472, 0.00188757118, 0.00506612379, -0.029966414, 0.0255197, -0.0265498776, -0.00579637568, 0.00176857912, -0.00161535665, -0.0129880542, -0.0286363121, 0.0317920446, 0.0400856212, 0.0107255774, 0.0251024142, -0.0255327411, -0.0149962474, 0.0371646136, -0.00982580241, -0.0228203759, -0.00387294381, -0.0031752924, -0.00644838624, 0.00955847744, 0.0119904773, 0.0435282364, 0.0070547564, 0.00552905118, -0.00341979647, 0.0269671641, 0.0231463816, -0.0310096312, -0.0265368372, 0.00784368906, 0.00951935723, -0.0170435607, 0.0152961724, 0.0250111334, -0.000498380745, -0.0037327616, -0.0198472068, 0.0155308964, -0.0454321094, -0.00761548569, -0.0104712928, -0.00342631643, 0.00682003237, -0.0175260492, 0.0108885793, 0.00297805923, 0.00113938877, 0.0160655454, 0.00541494926, 0.0145267993, 0.0175130088, 0.0291318409, 0.0296795294, 0.040216025, 0.02549362, 0.0210860278, -0.0369820483, 0.00101469178, -0.0211512297, -0.0268106814, -0.0304619428, 0.043789044, -0.0236679912, -0.00889342651, 0.00299761933, 0.00565945357, -0.0514827706, 0.00473033823, -0.0469969362, -0.017721653, 0.0193777587, 0.00541820936, 0.00482813967, -0.0120035177, 0.0329917446, 0.00287699746, 0.000985351275, 0.0319485255, 0.0298881736, -0.0184910242, 0.0487182438, 0.0206165798, -0.0239679161, 0.0134966224, -0.0166393146, -0.0227160547, 0.0258457065, 0.0219727624, -0.0265759584, 0.00581919588, -0.0192082375, -0.00861306209, -0.0437108, -0.035443306, 0.0206687413, -0.00931723416, -0.000664643478, 0.0109537803, -0.00503026275, 0.00656574825, 0.0434239171, -0.0240331162, -0.00994968414, 0.00786325, -0.00722427899, -0.00623322278, 0.0236549508, 0.034139283, 0.0225074105, 0.0447800979, -0.00598545885, 0.0255849026, 0.00666354969, 0.0113580273, 0.0264194757, -0.00388272409, -0.00596263818, 0.00440107239, -0.00764808618, -0.00154608046, -0.0142790359, -0.0104908533, 0.00619410211, 0.0271758083, -0.011879636, 0.0213207509, -0.0305662639, -0.00497810217, -0.0344261676, 0.00908903, -0.0291057602, -0.00356323877, -0.0157265, 0.0218162797, 0.0262890738, -0.0235375874, -0.0167305954, -0.0186083876, 0.0100409659, 0.00982580241, 0.0107842581, 0.0108298985, -0.0190517548, 0.017421728, 0.00511176419, 0.000116546922, 0.0182432607, -0.0260673892, -0.0198602472, 0.0183475818, -0.00630168384, 9.92788264e-05, -0.0143311964, -0.0122056417, -0.0272801295, 0.0364604406, 0.0237983931, 0.0226899739, -0.0143963974, -0.0230551, 0.029184, 0.0302272178, 0.0085674217, -0.0214511547, -0.0113841081, 0.00660486892, -0.008710864, -0.00359257916, -0.0158569012, 0.00764156599, 0.0182432607, 0.00557143195, -0.0188431107, -0.0266672391, -0.0188822318, 0.0369038098, -0.0249720123, -0.0256370623, 0.00213207514, 0.0102887293, -0.00898470823, 0.030435862, 0.0193386395, -0.0298881736, 0.00486400025, -0.0391988866, 0.0234071855, 0.00297805923, 0.0124599254, 0.0124338455, -0.0177086126, -0.00265857391, 0.0306705851, 0.0220249239, -0.0151005695, 0.0127533302, -0.00882822555, -0.0159481838, 0.0676526353, -0.0367994867, 0.00413700845, 0.0108038178, 0.00400334597, 0.00626908336, 0.0282711871, -0.017187003, -0.0281147044, -0.0329656638, -0.00628864393, 0.0106082149, -0.0127272503, -0.0015550456, -0.0114819091, 0.00996924471, 0.00175064884, 0.00409788778, -0.0185171049, -0.0104582524, -0.00458037574, -0.00486400025, 0.0062006223, 0.0365647636, 0.00271236477, 0.0360953137, 0.00945415627, 0.0285580717, 0.0243721623, -0.010947261, -0.0303837, -0.0399291404, 0.00528454734, 0.00698955543, -0.0270454064, 0.0206948221, -0.00744596263, -0.0025298018, 0.00255588209, -0.0117231533, -0.0216597971, -0.00253469171, 0.00994968414, 0.00565945357, -0.00224128691, -0.0417547673, 0.0119513571, 0.00917379092, -0.0320789292, 0.0383643135, -0.00416960893, 0.00671571074, 0.0139269494, -0.0210338663, -0.0149701666, 0.000676053634, 0.01154711, -0.0115340706, 0.00197722251, -0.0106277755, 0.0230942201, -0.0234202258, 0.00200656313, -0.0302793793, -0.00477597862, 0.00181422, -0.0281147044, 0.0312443562, 0.0320789292, 0.0242156796, 0.00991056394, -0.00455103489, 0.0162611473, -0.0221292451, -0.0229507778, -0.0206817817, 0.0052258661, -0.0157395396, 0.021724999, 0.00787629, 0.021125149, -0.0131249763, 0.00138552289, 0.0209817067, -0.0091477111, 0.0430587903, -0.0283233467, -0.000816235959, 0.0232376624, -0.0095845582, -0.0144094378, -0.0134444619, -0.00135455234, -0.0249720123, -0.0105169332, -0.0162089877, -0.00858046114, -0.00412722817, -0.0107972985, -0.0175651703, -0.0514827706, 0.0224552508, -0.00898470823, -0.00116791425, -0.0286363121, -0.0172913261, 0.0114949495, -0.0184910242, -0.0254023392, -0.0217380393, -0.00385664357, 0.0128380917, 0.00614194153, 0.00358279911, -0.0099757649, -0.0149049656, -0.0216989182, 5.23646122e-05, 0.0062234425, 0.00832617749, -0.0230290201, 0.0159351435, 0.0280103814, -0.00249068113, 0.0148528051, 0.00579311559, 0.0184258241, 0.000427882071, 0.00823489577, 0.00790237077, -0.0303837, 0.00294382847, -0.0113189071, -0.0155700166, -0.00715907803, 0.0311921947, -0.00536278868, 0.0183345433, 0.00191528164, -0.00267161406, -0.00496506179, -0.0208513048, -0.0153874541, -0.0199384894, -0.0134835821, 0.0134835821, 0.0415982865, -0.00395118538, -0.00972148, -0.0439976864, -0.0263673142, -0.0177086126, -0.00425437, -0.0230420604, -0.0109929014, 0.00831313711, 0.0324701369, -0.00130809657, 0.0193647202, 0.0172913261, 0.0828314498, -0.00676787179, 0.00793497078, -0.0240200758, 0.00987796299, -0.00550623098, -0.00577029539, 0.0187387895, 0.0321310908, -0.0261717122, 0.00341653638, -0.0107842581, -0.000625115295, -0.00499114254, -0.0308792293, -0.0150223281, -0.00931723416, -0.0103930514, -0.00588113721, -0.0236810315, -0.0235897489, 0.00931071397, -0.01154711, 0.00728948042, 0.0208773836, -0.00185660063, 0.00698955543, 0.00622996269, -0.00785672944, -0.0126359686, 0.0556556396, 0.0014816944, 0.0234984681, -0.00502700312, 0.0161307454, 0.0165349934, 0.000578252, 0.00695043476, 0.00957151782, -0.00548341032, 0.00476619881, -0.0373732559, 0.000637748046, -0.00855438132, -0.0157395396, 0.00411418779, -0.0257153045, 0.0187909491, 0.00738076167, 0.0173826069, 0.00454777479, -0.0230551, -0.00440107239, -0.00906295, 0.00896514766, 0.0132097378, -0.0380774289, -0.00426741038, 0.00696347468, 0.00593655789, 0.0136661455, 0.00861306209, 0.0287927948, -0.0278799795, -0.0136791859, -0.000724546961, -0.0317920446, -0.00506938342, 0.0177346934, 0.0300707351, 0.00187290087, 0.0155569762, 0.00418916903, 0.0122382417, -0.00344587676, -0.0204340164, -0.0112015447, 0.0154135339, 0.00457385555, -0.00601153914, 0.0172913261, 0.0266541988, -0.00898470823, 0.012446885, -0.00273029506, 0.0086521823, -0.00906295, -0.015583057, 0.00327635393, -0.0062006223, 0.0077784881, -0.00511828437, -0.00126571592, 0.0139530301, 0.0320528485, 0.00606696028, 0.016052505, 0.0254805796, -0.00326331379, 0.00851526, 0.00555513147, -0.0157004185, 0.0191430356, -0.00443041325, -0.00972148, 0.00253469171, 0.0112863062, 0.000500825758, -0.0213989932, 0.0339828022, 0.0137052657, 0.0136270244, 0.0101518072, 0.0151657704, 0.00365778035, 0.00983884186, 0.0159090627, 0.00599197904, -0.00276615564, -0.0086065419, -0.0115079898, 0.0378687829, 0.00234723883, -0.0347652137, 0.01515273, 0.00961715821, 0.0153874541, 0.0109733408, 0.0393292904, 0.0298099313, -7.85469238e-05, 0.01575258, -0.00415330846, 0.0210338663, 0.00777196838, -0.0124208052, -0.0192212779, 0.00472707814, 0.0244764835, -0.00157053093, 0.0167566761, 0.0427719057, -0.0215033144, -0.0302532986, -0.0160003435, 0.00353389839, -0.0136922263, 0.00696999487, 0.00547037041, -0.00610282086, 0.00488030072, -0.0142268743, 0.0028199465, 0.0102496091, 0.0158829819, -0.00774588762, 0.0276191756, -0.0163393896, 0.0164437108, -0.00250372128, 0.00674831122, 0.0162350684, 0.0191039145, 0.000262841844, -0.0228073355, -0.0139660705, -0.0163915511, -0.00880866498, 0.0349477753, -0.00145642902, -0.00212555495, 0.00771328714, -0.0179172549, -0.0412592404, -0.0178390145, -0.0182954222, 0.0393814482, -0.00170174812, 0.00256403233, 0.0151918503, 0.00188920111, -0.0145137599, 0.00818273518, 0.02432, -0.0285580717, -0.0016096516, 0.00368060078, -0.0181259, 0.00852830056, 0.0308009889, -0.0102300486, -0.019156076, 0.000219442372, -0.0309574716, 0.0229246989, 0.0152048906, 0.0188952722, 0.0256109834, -0.00444019306, 0.00786977, -0.00143197866, 0.0256761834, 0.00717211841, 0.00713299774, -0.0164045915, -0.0274105314, -0.0083587775, 0.0114101879, -0.0192864779, 0.0042087296, -0.00129098131, 0.0136009445, 0.0216728374, -0.0119448369, 0.00117198937, -0.00261945324, -0.00103914214, -0.00285417703, -0.00140263815, 0.00891950727, 0.0294187255, -0.0035241181, 0.0188431107, 0.0105560543, 0.00941503514, 0.0126229282, 0.0187648702, -0.00445649354, 0.0130662955, 0.0281668641, -0.0258587468, 0.038807679, 0.0157134589, -0.00230648811, 0.0437629633, -0.00451843441, 0.0111233033, -0.0309574716, -0.0218032394, -0.00376536208, 0.021020826, 0.0346087292, -0.0212555509, -0.0185171049, -0.00925203227, 2.15596519e-05, 0.0234463066, -0.0110189822, -0.00805233326, -0.0214641932, -0.0133923013, -0.0348695368, 0.014683282, -0.0132032176, 0.00459015556, 0.0210469067, -0.00106685259, 0.00700259535, -0.017486928, -0.0219206, 0.00373928179, 0.00884778611, -0.00453473488, 0.0190908741, 0.012049159, 0.0252719373, -0.00154282048, 0.0184779856, -0.0170696415, -0.0045021344, -0.00302369986, 0.0293144044, 0.00426089, -0.00487052044, -0.0146441618, 0.0110320216, 0.0304619428, -0.0122186812, -0.0446496978, -0.0158308204, -0.00237657921, -0.0109863812, -0.0100735659, -0.0347130522, -0.0288449563, 0.0175782107, -0.000953565701, -0.0143703166, -0.034243606, 0.0255457815, 0.0159612242, -0.00373928179, 0.00409136759, 0.0129032927, -0.0206296202, 0.00422502961, 0.0204470567, -0.0109537803, -0.000533018785, 0.00750464387, 0.0349999368, 0.0129424138, -0.0136400647, -0.0125446869, 0.0180606972, -0.0143572772, -0.00242221984, -0.00691131409, -0.00469447765, -0.00832617749, 0.00586483674, -0.0558121204, 0.0100800861, -0.0400856212, -0.0106994966, -0.00998880435, 0.00112634862, 0.0110972235, 0.0041044075, -0.00719167851, 0.00911511, 0.00426415028, 0.014083432, -0.0136270244, 0.0088543063, 0.0119187562, 0.0130010946, -0.00024042897, -0.00366104045, -0.003462177, -0.018386703, -0.0062234425, -0.00588439684, 0.00140100811, 0.0306705851, -0.0102300486, 0.01581778, -0.0154135339, 0.0300968159, -0.00161372661, -0.0182823818, 0.00567249348, 0.0100148851, -0.00964323897, 0.00272214483, -0.00788281, -0.0137704676, 0.0231985431, -0.0109929014, -0.0144746387, -0.00984536204, -0.0197950471, -0.0137704676, 0.024593845, -0.0160264242, 0.0202123336, -0.0140573522, 0.0325483754, -0.0150353676, -0.00212555495, -0.0324179754, 0.026862843, -0.026732441, -0.024998093, 0.00067320111, 0.0066374694, -0.00312476163, -0.0201732125, 0.0344522484, 0.0275409352, -0.00586809684, 0.0109537803, 0.023459347, 0.0133662205, 0.0208121836, 0.00660160882, -0.00864566304, 0.0164045915, 0.0348173752, -0.00837181788, -0.00927811302, 0.0139921512, -0.00213044509, 0.00452495459, -0.0264585968, 0.0189343914, -0.013548784, -0.0202384144, 0.0086065419, 0.0117818341, -0.020225374, -0.0234071855, 0.00657552853, 0.00993012358, -0.0237462316, -0.00982580241, -0.0162872281, 0.005105244, -0.0142790359, 0.0248807296, 0.00382404309, -0.0187779106, -0.00488356035, -0.00381100294, 0.0275670141, -0.0136270244, 0.0102626495, -0.0106538553, 0.0220118836, -0.0308792293, 0.00550623098, -0.000352085801, -0.0294448063, -0.00816317461, -0.0156352185, 0.0230681412, -0.0138617484, 0.0154917752, -0.00902382843, 0.0143181561, -0.0209034644, -0.0124794859, 0.0111885043, -0.0146572022, -0.0106538553, -0.0325222947, 0.0124599254, -0.00546385, 0.00215652562, -0.0283755083, -0.0263803545, -0.00306119048, 0.00702215591, -0.0092911534, -0.0131706176, -0.0160916261, 0.000180729228, -0.00425763, -0.0100931264, 0.0107972985, 0.0151005695, 0.020355776, 0.0127402898, -0.00530410744, -0.00192669174, 0.0064940271, 0.0204992183, 0.00446301373, 0.0153613733, -0.0184127837, 0.0126098879, -0.000921780185, -0.0163263492, 0.0109277, -0.0285580717, 0.00700259535, -0.0205122586, -0.0158308204, 0.0266541988, 0.00303185, 0.00428045075, -0.0204079375, -0.00247601094, 0.00111575343, 0.0249068104, -0.000907924958, -0.0139008695, 0.00606696028, 0.0105756149, 0.0184910242, 0.0132553782, 0.00597241847, -0.000867989322, 0.0153874541, -0.00060474, -0.0191039145, -0.00564967329, 0.0024792708, 0.0162611473, -0.00323886331, -0.00245482055, 0.0150875291, 0.00446627382, 0.0113189071, 0.0247112084, 0.0466578901, 0.00722427899, -0.0025998929, 0.0227551758, 0.0184127837, 0.0150353676, -0.00595285837, -0.00715907803, -0.014983207, 0.0159221031, 0.0084631, -0.020590499, 0.00385990366, -0.00650706748, -0.00449561421, -0.0225726124, -0.0104517322, -0.00884778611, 0.00784368906, -0.00642556604, 0.00509546418, 0.00765460636, 0.00237657921, -0.00703519583, -0.00104892231, 0.0227421355, -0.0337741561, -0.0261195507, 0.00145316892, 0.0031019412, -0.011879636, -0.000168402155, 0.0163785107, 0.0335133523, 0.00878910534, 0.0108624995, 0.0217510797, 0.00910859, -0.000888364681, -0.0157917012, -0.0134183811, 0.0323136523, 0.0272018891, 0.0284798294, -0.0166001935, 0.0161437858, -0.00612890115, -0.00265694386, -0.00570835406, 0.00248905108, 0.00564967329, -0.0196516048, 0.0129293734, 0.00820229575, 0.0156091377, -0.00911511, 0.00630494393, -0.00431305123, -0.00474011805, -0.00571161415, -0.029601289, 0.00336111546, 0.00785020925, 0.0133010196, 0.01151451, 0.0194299202, 0.00731556071, -0.0199384894, -0.00871738419, 0.0135618234, -0.0106212553, -0.0266672391, 0.0037947027, -0.00934983417, 0.00976060145, -0.00418264885, -0.00253143185, -0.00473359786, 0.000820311, 0.00360561954, 0.00531062763, -0.0132423388, -0.00411744788, -0.00784368906, 0.0137052657, 0.00632124441, 0.00899774861, -0.0158438608, 0.0178781357, 0.0390945636, 0.0219075605, 0.00181095989, -0.00846962, -0.00503352284, -0.01695228, -0.00541820936, 9.7343167e-05, -0.0184910242, -0.00830661692, 0.0162611473, 0.00645490643, 0.0156352185, 0.013046735, -0.00629190402, 0.0219075605, 0.0028818876, -0.00329265441, -0.0071786386, 0.0154004944, 0.00503678294, 0.00391858444, -0.0157134589, 0.0212816317, -0.00850874, 0.00259663281, -0.00419568922, -0.0140051907, -0.0104973735, -0.0193386395, -0.00478249881, -0.00739380205, -0.0309574716, 0.00345565705, 0.000956010772, -0.00405550702, 0.0150614483, -0.0280364621, 0.000521608628, -0.002185866, -0.00466187671, -0.00413048826, 0.0290535986, -0.000334766781, 0.00486400025, -0.00839789864, 0.00260478305, -0.00403594645, 0.0143311964, -0.000244911527, 0.00427067047, -0.0181519799, 0.030435862, 0.00156238081, -0.00709387707, -0.010347411, -0.0131510571, 0.020225374, -0.00401964644, -0.0129293734, -0.0107907783, 0.0112406658, -0.0224422105, -0.0454321094, 0.000936450437, -0.0152048906, 0.0179172549, 0.00594959827, 0.00437173201, -0.00832617749, 0.00279386598, 0.0109211802, 0.00605392, 0.00434565172, 0.00385664357, -0.00940199476, 0.00915423129, 0.0264325161, -0.0139399897, -0.00964975916, -0.002552622, -0.00917379092, -0.00970844, 0.00510198437, -0.0124534052, 0.0035241181, 0.00101306173, 0.0118405158, 0.00519652572, 0.00743944291, -0.00575399492, 0.00921943225, -0.00277104578, -0.00796105154, 0.00606044, 0.0301489774, 0.00202449341, -0.0221553259, 0.01214696, 0.01575258, -0.00360561954, 0.0192995183, 0.020420976, -0.000552986632, -0.021425074, 0.00438477239, -0.00887386594, 0.00674831122, 0.0246851277, -0.016821878, 0.00501722284, -0.0206817817, -0.00555513147, -0.0106082149, 0.00161454163, 0.001088858, 0.00406854693, -0.00255914219, -0.0175260492, -0.00240102969, -0.0257544257, -0.0460580401, -0.0257022642, 0.0309574716, 0.0381035097, 0.0149962474, 0.02429392, -0.00117850944, -0.000422176963, -0.00355019863, 0.00297153904, 0.0127533302, 0.03403496, 0.000994316419, 0.0357301906, -0.0104843332, -0.0405550674, -0.0238505527, -0.0240722373, -0.00585505646, 0.020225374, 0.00879562553, -0.0118013946, 0.0142268743, 0.0161829069, 0.0124729658, -0.00843049865, 0.0300185755, -0.0139530301, 0.00147191423, -0.0281929448, 0.00829357654, 0.0128120109, -0.00598545885, 0.0171739627, -0.00135618239, -0.0103995716, 0.0120882792, 0.0266281199, 0.00930419378, -2.608043e-05, -0.00548667042, -0.0149571272, -0.0259239469, 0.0175521299, -0.00781760924, -0.0134053407, 0.0164437108, 0.00348173734, 0.00236027897, 0.00912815053, -0.0115666706, -0.00199678284, -0.0117035927, 0.00793497078, 0.0101518072, 0.0091477111, -0.0124729658, -0.00467491709, -0.0288188756, -0.00492268102, -0.00442063296, -0.0144224782, 0.0271236468, -0.0107646976, -0.00936287455, -0.00915423129, -0.00691131409, 0.00155912072, -0.0174478069, -0.00656900834, 0.00115324405, 0.0120687187, -0.00645490643, -0.0162872281, 0.00691783428, -0.00306282053, -0.0106147351, -0.00809145346, 0.00313454168, 0.0155569762, 0.0237331912, -0.0188431107, 0.0160133839, 0.00665051, -0.00105870247, 0.00446301373, -0.010712537, 0.00195277226, 0.00234234869, 0.0115731908, 0.00588113721, -0.005639893, 0.00970192, 0.0146441618, -0.00230811816, 0.00882822555, 0.0286884736, 0.00511828437, -0.0133270994, 0.0138095878, -0.000546874, 0.00618106173, 0.00711995736, 0.0190647952, 0.00655922806, -0.0067613516, -0.0203166548, -0.024998093, -0.00708083669, -0.00810449384, -0.0126685686, 0.0150484079, 0.0116188312, -0.0331743062, -0.0221814066, 0.00109700812, 0.0071981987, -0.00809797365, -0.00693087419, -0.0117492341, -0.00854786113, -0.000130911532, 0.0347130522, 0.0153222531, 0.0123295235, 0.0277234968, -0.00685915304, 0.0130010946, 0.017721653, -0.00176857912, -0.0130858561, 0.0123034427, 0.00409462769, 0.02422872, -0.0102365687, -0.00874346402, -0.0132553782, -0.00291122799, -0.00699607562, -0.00876954477, -0.00403594645, -0.00866522267, 0.012583808, -0.00400334597, 0.0102952495, -0.0180737376, -0.00388272409, 0.0122447619, -0.0133401398, -0.00424785027, -0.0166001935, 0.0357562713, -0.0229638182, -0.0155960973, -0.00725035975, -0.0107972985, 0.00503026275, 0.024593845, -0.00274170516, 0.0372428559, -0.0197950471, -0.00743292272, -0.0214772336, 0.000988611253, 0.00272051478, 0.00178487948, -0.0169001184, -0.0107190572, 0.0159090627, -0.0144355185, -0.0122382417, 0.00298131909, -0.0153352926, 0.00114916894, -0.00141812337, -0.00785672944, -0.0270193256, -0.000931560353, -0.001824, 0.0108233783, -0.0171609223, 0.0125577273, -0.0105038937, 0.000688278873, -0.00163736206, -0.0070547564, -0.0169914011, -0.00381100294, -0.005623593, 0.0163915511, 0.0161437858, 0.0099170832, 0.00276289554, -2.30113947e-05, 0.00931071397, 0.00344587676, 0.0186083876, -0.00353063829, 0.00333829504, 0.0167827569, 0.00689175352, -0.0028085364, 0.000945415581, -0.0317920446, 0.00862610247, -0.0218814816, 0.0196124837, 0.0168479588, 0.00535952859, -0.0218162797, -0.00545407, 0.00824141596, 0.00880214479, 0.0228986181, -0.0117557542, -0.00224291696, 0.00301554985, 0.00805885252, 0.00957151782, -0.0226769336, -0.0219727624, -0.0277495775, 0.00530736754, 0.00968887936, 0.0221683662, -0.00908251, 0.00552579109, -0.00975408126, -8.87345886e-05, -0.01151451, 0.00332362484, 0.0112993466, 0.00858698133, 0.0127402898, 0.000665865955, -0.00085331907, -0.00311987149, 0.0014042682, -0.0125642475, -0.000442959805, -0.00401638635, 0.0197950471, 0.0242678411, 0.0172261242, 0.00860002171, -0.00404572673, -0.0258457065, -0.00582245598, 0.0327570215, 0.00803929288, 0.00994316395, -0.00471077766, -0.00698303524, -0.0263933949, 0.0162611473, -0.00676787179, -0.0137183061, 0.0112341456, 0.00430001086, -0.00448583392, -0.00813057367, 0.00472055795, 0.0257805046, 0.0158829819, -0.00305630034, -0.00412070798, 0.00595285837, 0.0225204509, 0.0114362687, -0.0130206551, -0.0114297485, 0.0165349934, -0.0213598721, 0.00483466, -0.0203427356, -0.0122838831, 0.0105756149, -0.0194168799, -0.0342957675, -0.00433261134, -0.00666029, -0.00216630567, -0.00474989833, 0.00140671316, -0.0209425855, -0.00946067646, 0.00605066, -0.00461949641, 0.00264716358, 0.0082740169, -0.0123099629, 0.0134705426, -0.0293926448, 0.00963671878, 0.00200493308, -0.00880214479, 0.0133923013, 0.016821878, 0.00445323344, -0.0222335663, 0.00358279911, -0.00944763608, -0.00564967329, -0.00375558203, 0.00691783428, -0.0103995716, -0.0124599254, 0.0218162797, 0.0196516048, 0.0125512071, -0.00710691744, -0.00197722251, 0.00603761943, 0.0179302953, 0.00706779677, 0.00835225731, -0.00386968395, 0.00398378586, -0.00923247263, 0.00695695495, -0.00854134094, 0.0035893193, -0.00438803248, 0.0194690414, -0.0173434857, -0.00741988234, 0.00426415028, 0.0162350684, 0.0220249239, -0.00847614, 0.016117705, -0.01271421, 0.0226769336, -0.00668311026, -0.0115862312, -0.000606777496, 0.00057091692, 0.000222294912, 0.00652988767, 0.0202384144, 0.0101648476, -0.00310683134, 0.0299403332, 0.0154787358, 0.00691131409, -0.00109374803, 0.00659508863, -0.0308792293, 0.00346869719, -0.0191430356, 0.0104908533, -0.0182823818, -0.0275670141, -0.00249557127, -0.00657878863, -0.00267976429, 0.0223639682, -0.0109081399, -0.0125707677, -0.00125838071, 0.031400837, -0.00494876178, 0.00909555, 0.0160133839, -0.00559099205, -0.00803929288, -0.00844353903, -0.00463905651, -0.00264390372, -0.00924551208, -0.0187909491, -0.0287406333, -0.0204079375, -0.0183997434, 0.000871249358, -0.0143181561, 0.00855438132, 0.000713951769, 0.0258587468, -0.0174086876, 0.00433261134, 0.0249589719, -0.00558773195, 0.00234071864, 0.0336176753, 0.00221846648, 0.00444019306, 0.0126164081, -0.0191299953, -0.00867174286, -0.029601289, -0.00407832721, 0.00603761943, 0.00552579109, 0.0312704369, 0.0112276254, -0.00892602745, 0.0311921947, 0.013281459, 0.00657226844, 0.0161307454, -0.00616150163, -0.00769372704, 0.0273062102, -0.0196907241, -0.012981534, 0.0150744887, 0.0154396147, 0.0195342414, -0.0033187347, 0.0107581774, -0.00270421454, 0.00303837, 0.0199124087, 0.00803277269, -0.00680699246, -0.00149799476, 0.0200167298, 0.0111754639, -0.0241374373, -0.0106408158, -0.00594307808, -0.0203688163, -0.0343740061, -0.0236679912, 0.0145137599, -0.00736772176, 0.00726992, -0.013848708, 0.0295230467, 0.000867174298, -0.00838485826, -0.0103082899, 0.000672793598, 0.0114167081, 0.0111167831, 0.00470425747, -0.00379144261, 0.00966932, -0.0128054917, -0.0143442368, -0.00930419378, -0.00288025755, 0.00693087419, 0.0196516048, 0.00622996269, -0.0252719373, 0.00228203763, -0.00787629, 0.00435869209, 0.0121274, 0.000945415581, 0.00221194653, 0.0170305204, -0.000235538886, -0.001334992, 0.000674423645, 0.0053530084, -0.002127185, -0.0280103814, -0.0098714428, 0.00294545852, -0.00683959294, 0.0105495341, 0.00842397939, -0.0114036677, 0.00642556604, 0.00171641831, 0.0249068104, -0.0104712928, -0.0160394646, 0.0105625745, 0.0164828319, 0.0154396147, -1.21615285e-05, 0.0196255241, 0.00723079918, 0.00397074549, 0.00298783928, 0.00218423596, 0.0231072605, -0.00663094921, -0.0146441618, 0.0190908741, 0.0142007945, -0.0133010196, 0.00939547457, -0.00290144794, 0.0150223281, -0.014983207, -0.00569531415, 0.00781760924, -0.00253958185, 0.00570509396, -0.0178390145, 0.00163247192, -0.0136531051, -0.00115405908, 0.0163915511, -0.00321441307, -0.000275474536, -0.02422872, -0.00693087419, -0.0107516572, 0.0172000434, 0.00476619881, -0.00370016112, 0.0153092127, -0.0142790359, 0.0313747562, 0.0184258241, -0.0149049656, 0.00899774861, 0.0126424888, -0.0189083125, -0.0156613, -0.012512086, 0.000764890108, 0.021790199, -0.0116253514, -0.00641578576, 0.0191430356, -0.0117622744, 0.0205774587, 0.00363822, 0.00343935681, 0.00317366235, -0.00867826305, -0.00954543706, 0.0167566761, -0.0194951221, 0.00592677761, 0.00706127658, 0.0117492341, -0.0100214053, 0.00459341565, -0.0160394646, -0.0230420604, -0.0231203, -0.0121926013, 0.0100735659, 0.00494224159, -0.0120687187, -0.0200428106, -0.00789585058, -0.012414285, 0.00236027897, -0.0262760334, 0.00384360342, -0.00474337814, -0.0196907241, 0.0284276698, -0.00301554985, 0.00742640253, -0.00878258515, -0.00480531948, 0.000907924958, -0.00339697604, 0.00192180171, 0.00298294914, 0.0171739627, 0.0128641725, 0.0160785858, 0.0120621994, 0.0241635181, 0.0121208802, 0.016821878, 0.0171348434, -0.014448558, 0.0178129338, -0.00680699246, -0.00791541, 0.00429023057, -0.0146050407, -0.024698168, -0.0109211802, -0.00482161948, 0.0153874541, 0.0041076676, 0.0252328161, 0.00543777, -0.00551275071, 0.00887386594, -0.0115601504, -0.00664072949, -0.00861306209, 0.00673527131, 0.00297805923, -0.000242670256, 0.0151136089, 0.0071981987, 0.00453473488, 0.0125772879, 0.00520956609, 0.00430327095, 0.0121274, -2.82707788e-05, 0.0063668848, -0.00572791463, 0.00222824677, -0.0175390895, 0.0232637431, -0.0206426606, -0.0187257491, 0.00511828437, -0.0126555292, -0.0139008695, 0.00854786113, -0.0175260492, -0.0272279698, -0.000198048263, -0.0107516572, 0.0180737376, -0.0259239469, 0.00126245583, 0.0108494591, -0.00385012361, 0.00242385, 0.0113645475, -0.00857394189, -0.00350129767, -0.00891950727, -0.00146783923, 0.0275670141, -0.00985840242, -0.0314269178, -0.0096628, 0.0137704676, -0.0178520549, -0.0165089127, 0.0199645702, 0.00880866498, 0.0159873031, -0.0134705426, -0.00117035932, -0.00951283704, 0.00112471858, 0.00895210728, -0.0170044396, -0.000525683688, 0.00382078299, 0.00338719599, 0.0130206551, -0.00768068666, -0.0141225532, 0.00741336215, -0.00559425214, 0.00940851495, 0.0100409659, -0.0195994433, 0.00587787712, -0.00751768379, 0.010810338, 0.00894558802, 0.00282646669, 0.0158829819, -0.0200036895, -0.00441085268, 0.00147435931, -0.00130076148, -0.0203427356, 0.00242711, -0.00426089, -0.0297838505, 0.00398052577, 0.00469773728, 0.0153874541, 0.00421524933, 0.0296273679, 0.00223150686, -0.0141877541, 0.016717555, 0.00357301882, 0.021894522, 0.0117948744, -0.0125903273, -0.0152048906, -0.0151918503, 0.0042087296, 0.010947261, -0.0198993683, 0.000561544264, -0.00178976951, -0.0137052657, 0.0172782857, -0.00193484197, 0.00299598952, 0.033539433, -0.00581593579, -0.00738076167, -0.000872879406, -0.00265857391, -0.0131901773, -0.0121339206, -0.00343283662, -0.000746144797, -0.000354327087, -0.00477923872, -0.00575073482, 0.00710691744, -0.00279875612, 0.0046455767, 0.0193516798, 0.0144615984, -0.000146396793, 0.00804581307, 0.00865870249, -0.00228855782, -0.0222726874, -0.00635710498, 0.00224617706, 0.0169262, -0.00769372704, -0.00482487958, -0.0294969659, -0.0088999467, 0.00726339966, 0.00666354969, -0.00768720685, 0.00184193044, 0.00121437, -0.00726339966, 0.0181650203, 0.00134884729, -0.00655270787, -0.0107712178, 0.000605962472, 0.0102691697, -0.000633265474, 0.00992360339, -0.0116709927, 0.00456407527, -0.00959759858, -0.0164567512, -0.0109994216, 0.0186344683, -0.00264879363, -0.0311400332, 0.00995620433, -0.0100279255, -0.00789585058, 0.0164828319, -0.0324179754, 0.00615824154, -0.0279060602, -0.003087271, -0.000755109941, 0.0156873781, -0.00258848281, 0.0100344457, 0.0105756149, 0.00188105099, -0.0156873781, -0.00944763608, 0.0095845582, -0.0125186061, -0.0142529551, -0.0157265, -0.0109211802, -0.0158047415, 0.026862843, -0.00726339966, -0.0215424355, -0.0134444619, 0.00906295, -0.00192017166, 0.00747856358, 0.00313943182, 0.00745248282, 0.00604087953, -0.0182954222, -0.0132097378, -0.00446953392, -0.00103099202, 0.00169522793, 0.0151136089, -0.000737179653, 0.00989100337, 0.0102952495, -0.000627560366, -0.00525194686, -0.0131640974, 0.00148658454, 0.0111167831, -0.0195472818, -0.0275148544, 0.0222466066, -0.00644838624, -0.00457059545, 0.021190349, 0.010947261, 0.000759185, -0.00334481522, -0.00327146403, 0.0154396147, 0.00503026275, -0.00596915837, -0.0272279698, 0.0240331162, 0.018386703, -0.00423155, -0.00662442949, -0.0108885793, -0.0204340164, 0.000513865962, 0.002603153, 0.0164437108, 0.00541494926, 0.0185040645, -0.0088999467, 0.0157786608, -0.0035273782, -0.0111493841, -0.00174738886, -0.00415982865, -0.0109537803, -0.0199906491, -0.0315834023, 0.00858698133, 0.0137965474, 0.00310357125, 0.00433913153, 0.000312353892, -0.0120687187, 0.0141095128, -0.0211773086, 0.00865870249, 0.0104321716, -0.00563337281, -0.0141877541, -0.0143311964, 0.0264455564, 0.00516066514, 0.00117361941, -0.00659182854, 0.00271888496, -0.00144420378, 0.0067613516, -0.00459993584, 0.0200167298, -0.0307488274, -0.0308009889, 0.0205644201, 0.00385990366, -0.00807189289, 0.00519000553, -0.00190224138, 0.0041076676, 0.00444671325, -0.00459667575, -0.00502700312, 0.00482813967, -0.0114558293, -0.0158829819, -0.0175390895, -0.000164021461, -0.00530736754, -0.0194429606, -0.00155178562, -0.00370342098, 0.00206198404, 0.00209458452, -0.0067809117, 0.000650380738, -0.0143963974, -0.0124925263, 0.0280103814, -0.00148984452, 0.00880214479, -0.00450539449, 0.00777196838, -0.00693087419, -0.0112667456, -0.00149391964, 0.0173565261, -0.0132292984, 0.00589743722, 0.00754376454, -0.0099757649, -0.0106668957, -0.00848266, -0.0223248489, 0.00453473488, 0.0138356686, 0.00329591427, 0.0185301453, 0.01641763, 0.0121860811, -0.0120556792, -0.0202123336, 0.00731556071, -0.0118991965, -0.00998228509, 0.0122121619, 0.0201862529, 0.0148006445, 0.00822185539, -0.00511176419, -0.0229898989, -0.0181389395, 0.00220542634, 0.0168740377, -0.00852178, -0.00212229509, -0.010979861, 0.00782412942, 0.0136139849, -0.00818925537, -0.0162481088, -0.00684611313, -0.010210488, 0.0142529551, -0.0182563011, -0.00642230595, 0.0116123119, 0.0101713678, -0.00215000543, 0.0117818341, 1.26199739e-05, -0.011045062, 0.00388924405, -0.00214185542, 0.0432935134, 0.0139791109, 0.0056627132, -0.010679936, 0.0103082899, 0.0087499842, 0.0155308964, -0.00438151229, -0.0168088377, -0.00655270787, 0.0138617484, 0.0292883236, -0.0220510028, 0.0127794109, 0.0190387145, 0.00899122842, -0.0182302203, 0.0083587775, -0.00824141596, 0.000440107251, -0.00554535165, 0.0064940271, -0.0134053407, -0.010510413, 0.013046735, 0.00723731937, 0.00364148, -0.000721694378, -0.0023977696, -0.00332362484, -0.0195603222, -0.0169392396, -0.00995620433, 0.0197820067, -0.00088591961, -0.00332362484, 0.0188039895, 0.00739380205, 0.00528780743, -0.00877606496, -0.00768720685, -0.0360953137, 0.0049357214, -0.0104843332, 0.00338393589, -0.00577355502, -0.0102691697, -0.0163393896, 0.0177607723, -0.00914119091, -0.00923899282, 0.0160003435, -0.000775077788, -0.0245547257, -0.0281929448, -0.0110320216, -0.015517856, 0.0106668957, -0.00297805923, -0.014618081, -0.0228725374, 0.0189995933, 0.0022592172, 0.0162089877, 0.00928463321, 0.00897818804, 0.0111363437, -0.00501722284, -0.037607979, -0.0158569012, 0.00298946933, -0.0174738877, -0.00693087419, 0.00360887963, -0.0050791637, -0.0143703166, -0.00207665423, 0.00233093835, -0.01216, -0.00668311026, -0.00608978048, -0.00183215027, -0.01515273, 0.000242670256, -0.0239679161, 0.0157134589, -0.00581919588, -0.0120556792, -0.0236027893, 0.0226378143, -0.0120817591, -0.00385012361, 0.0263673142, -0.00353715825, -0.0181519799, 0.0284798294, -0.00399356568, -7.63056305e-05, -0.00780456886, 0.00431957142, 0.00892602745, -0.00281831645, 0.00151674007, 0.0246851277, 0.0145789608, -0.00427067047, 0.0146441618, 0.0267585218, -0.0172913261, -0.00850874, 0.00989752356, 0.00614520116, 0.000554209168, 0.0100018447, 0.00751768379, 0.0372428559, -0.00370342098, 0.00105544238, 0.00790237077, -0.0076350458, -0.00713951793, -0.00898470823, 0.0327570215, -0.0279582217, 0.00924551208, 0.00677439198, 0.00787629, -0.0154396147, -0.0228725374, 0.00641904585, 0.017187003, -0.000231463811, 0.0269932449, -0.00665703, -0.0246068854, -0.00715907803, -0.00243689027, -0.0132553782, -0.0177607723, -0.00455429498, -0.00266346382, 0.00599197904, -0.00770676695, -0.009043389, 0.00697651505, -0.0192473568, 0.00695695495, 0.00923899282, 0.0307227466, 0.0121730408, -0.0140443118, 0.0148397647, -0.0180737376, -0.0127011696, 0.0438672826, -0.00266346382, 0.0238505527, 0.0311139524, 0.000924225256, -0.0115862312, 0.0105625745, -0.02432, -0.00703519583, 0.00417938875, -0.00901078898, 0.00749160349, -0.0246329661, -0.00578007521, -0.0047922791, -0.00257381238, -0.00898470823, -0.0143311964, -0.00826749671, -0.0042119897, -0.0165089127, -0.0169914011, 0.00605718, -0.00642556604, 0.0031720323, 0.0104191322, -0.0221162047, -0.0204600971, -0.0132423388, -0.0125577273, 0.00773284771, 0.0146963224, -0.0152700916, 0.00434239162, 0.00940199476, 0.0150223281, 0.0187387895, 0.0128511321, -0.00263086334, -0.00841093902, -0.0237071104, 0.0169914011, -0.00671571074, -0.0132292984, -0.0162872281, 0.0128706926, -0.0191039145, 0.0199645702, 0.0113841081, -0.00143442361, 0.00717211841, -0.00511828437, 0.0101192072, 0.0143051157, 0.0199124087, 0.00141812337, -0.0119839581, 0.00542798964, -0.00171641831, -0.00574421464, -0.0146702416, -0.0316616409, 0.0108885793, -0.0111819841, -0.0094802361, -0.000136718503, -0.0215424355, 0.013548784, 0.00814361405, -0.00214511529, 0.0168740377, -0.0125251263, -0.0244764835, -0.0100018447, 0.0108559793, -0.0216597971, -0.00492920121, -0.0101192072, -0.0389641635, -0.0359127522, -0.005105244, -0.00600827904, -0.00656248815, 0.01216, 0.0324179754, -0.00941503514, 0.0123621235, 0.0240852777, 0.0197428856, -0.00160883658, 0.00938243512, 0.0149571272, 0.00291611813, -0.00597241847, 0.0201732125, -0.00467165699, -0.0150092877, -0.0132684186, 0.00163980701, 0.000292793586, 0.0166393146, 0.0271758083, -0.0139530301, 0.00349803781, 0.00107989286, 0.0131249763, 0.00545081, -0.0107972985, -0.00452821469, 0.0182432607, 0.0265237968, 0.0363822, 0.0124077648, 0.0121274, 0.00800669193, -0.00469773728, -0.00339371595, 0.0086521823, -0.01151451, 0.000143340483, -0.00908251, 0.0184910242, 0.00994316395, 0.00887386594, -0.00754376454, 0.0177086126, -0.0168349184, 0.00813709386, 0.0254284199, -0.0143051157, 0.013046735, -0.0156873781, 0.0171348434, -0.00467817718, -0.0101844082, 0.0207991432, -0.00304815033, -0.002185866, 0.00905642938, 0.0181650203, -0.013046735, -0.00630168384, -0.0189083125, -0.0106538553, 0.0120426388, -0.0152048906, -0.00880214479, 0.00680699246, 0.0134053407, -0.0295752082, 0.000895699777, 0.000736772141, 0.0190647952, 0.0107255774, -0.00487704063, 0.0013382521, -0.0158308204, 0.00716559822, -0.000735549605, 0.00163491699, -0.012583808, -0.000323967834, 0.00629190402, 0.0179563761, 0.0119383167, 0.00795453135, 0.0305401832, -0.00226899749, 0.00354693853, -0.00286395731, -0.00548667042, 0.0163915511, -0.0047694589, 0.00920639187, 0.00959107839, 0.000741254713, 0.009043389, 0.00368712074, -0.00243200012, -0.00512806466, -0.00477271853, 0.0108429389, 0.00877606496, -0.00384360342, -0.0098714428, 0.0124077648, -0.0139530301, -0.00670267036, -0.000852504047, 0.00365452026, -0.0023945095, -0.018086778, -0.016052505, -0.00478249881, 0.0116514321, 0.00589743722, 0.00416960893, 0.0153744137, 0.00304, 0.0229638182, 0.000315410201, 0.00257544243, -0.0179824568, -0.0110841831]
05 Apr, 2022
8 DevOps Best Practices That You Must Know 05 Apr, 2022 Developing software is a very tedious process. In a traditional company setup, the software development process is undertaken by two main teams i.e. the development team and the IT operations team. As expected, having two separate teams that work on a single project can cause internal frictions between the teams and hence slow down the overall deployment process, leading to delayed software release and reduced profits. So what then can be an effective solution for it? Here’s when DevOps comes into play! What is DevOps? DevOps is an integrated process adopted by software development companies. This new approach involves the collaboration of both the Development Team and the Operations Team as one so that the whole software development process is streamlined as one, thus reducing delay and leading to increased profits. Importance of DevOps Why must companies follow DevOps over traditional team setup? Here are a few reasons: A streamlined software development process leads to faster new product feature deployment It takes far less time to market than the traditional way The main feature of DevOps is that it increases the productivity of the whole team DevOps leads to an increase in security and compliance Collaboration of teams leads to shorter development cycles for products Though DevOps seems like a dream come true for software development companies, integrating it into an existing system is not an easy task. Read on further to know what are the best ways to follow. 8 DevOps Best Practices To Follow 1. Have a Centralized Unit For DevOps In large organizations, a centralized unit is often used for DevOps. This centralized unit is responsible for creating DevOps tools like Jenkins, Docker, Ansible, Puppet, etc. This unit has ownership of all the DevOps tools that are developed and uses agile for each of the teams involved. Among all the different DevOps tools available, the centralized DevOps team is responsible for choosing the ones that are most relevant, beneficial, and important for the organization. This unit maintains these tools and provides guidance for developers to implement the processes involved. 2. Shift Left With CI/CD The most important process of DevOps is Continuous Integration (CI) and Continuous Delivery (CD). In short, CI / CD processes enable software companies to develop and deliver software in very short cycles. What does CI actually mean? CI or Continuous Integration is a continuous process in which any code changes that are from different contributors are integrated into the Central Repository. This allows developers to continuously merge any of the code changes at any time. Why is this process important? It is always easier to find out if there are any errors or issues when the code size is smaller, compared to finding any defects in a large code. It allows you to use some automated tools to detect if the code in the system is correct or not. It allows faster deployment of processes. What is CD? CD or Continuous Delivery is a process that begins after Continuous Integration (CI). All the codes that are from CI are taken for production. This is a very important process for shifting the left. The CD process begins by developing, building, and testing the CI. The CD process is not as much adopted and implemented as the CI process but is crucial for a wholesome DevOps integration. Why is Continuous Delivery (CD) Important? It makes the process of developing software almost painless. It makes the overall process low in risk. Deployment of large and complex applications is made simpler. All the activities become predictable. Software development can be done on-demand. Both Continuous Integration (CI) and Continuous Delivery (CD) are essential to make the life cycle  of software development 3. Always Take A ‘Security First Approach’ In today’s world, security is very important, especially for software that can be hacked and breached. So it becomes mandatory that all the processes are constantly monitored in real-time to detect the presence of security issues. Using a security-first approach will help detect any security threat and risk earlier so that a lot of consequences of delayed action can be prevented with low cost and loss of data. This also increases security. 4. Use the Right Tools For a DevOps approach to be successful, the processes have to be automated. In order to effectively automate software development processes, DevOps tools are absolutely necessary. There are so many DevOps tools available for different purposes, such as measuring different metrics, detecting security issues, etc. In order to save time and shorten the life cycle of software development, it is mandatory to use the right kind of tool. Here are some of the DevOps tools that you could use: Middleware is a Multi-cloud orchestration and management platform that helps DevOps deploy, manage and scale applications across any cloud infrastructure with just a click of a button. Jira and Bugzilla help view the progress of the development and collaborate with other teams effectively. 5. Monitor the Right Metrics In order to have DevOps be integrated into the organization effectively, it is important to monitor the right kind of metrics. These metrics are the ones that give information on the effectiveness of DevOps. The metric can range in different categories such as lead time, the severity of the issue, the average time it takes to detect an issue, and so on. There are so many metrics and one can get confused with all the data presented. The most important thing to determine is the metrics that are important for achieving your organization’s goal and focusing on monitoring only them. 6. Switch To Microservices Any work that is split into its smaller counterparts is much easier to finish than a single large chunk of work. The same principle is used in DevOps to make work easier using microservice architecture. The traditional method of working involves combining all the smaller counterparts into a single program which is harder to work with. The microservice architecture involves deploying all the smaller applications and services independently. 7. Decide Which Processes And Tests To Automate First Automating all processes in the software development life cycle is the ultimate goal for DevOps. It can be rather daunting to automate all processes at once. So an effective way of automating processes is to determine which is the most essential step for software development. Some important steps in software development that you can automate first include compiling codes, User Interface (UI) testing, functional testing, etc., based on the goal that you are trying to achieve. Automate processes that are most important and most frequently used before moving on to processes that are less important or less frequently used. 8. Build Only Once But Implement Continuous Deployment Building the source code a couple of times, again and again, takes a lot of time that could be saved to make the process shorter. Softwares need to be built, packed, and bundled before they are deployed. Building the software in a clean environment will minimize the errors from being created and hence shorten the development cycle. DevOps involves releasing software frequently in order to lessen the overall burden. In order to do so, the software must first be in a finished state and be tested in an environment that is similar to that of a production stage. It is impossible to test the software in a real production stage though. That’s why a deployment stage has to be introduced. Conclusion DevOps is not just a trend. It is a way of approach that can make a huge difference in the way your organization develops and releases software. To recap, here are some of the most important steps to implement DevOps effectively in your organization: Have all the DevOps tools been developed, maintained, and used from a central unit? Implement CI / CD processes to shorten the software development cycle Create a security-first approach to all your DevOps processes Use the right kind of tools for achieving the goals of your organization Only monitor the metrics that are important for an effective DevOps integration Use microservice architecture to deploy small applications frequently than use monolithic architecture to deploy large, complex applications Automate the processes one by one focusing on the most important ones at first Build the software only once but implement a continuous deployment process Boost your DevOps skills with our DevOps Engineering - Planning to Production course. Master DevOps principles, implement CI/CD pipelines, and gain hands-on experience. Take the Three 90 Challenge: Complete 90% in 90 days for a 90% refund. Start your journey to becoming a certified DevOps expert today!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know
https://www.geeksforgeeks.org/8-devops-best-practices-that-you-must-know?ref=asr9
Languages
8 DevOps Best Practices That You Must Know
Languages, Top 10 Fastest Programming Languages, Top 7 Database You Must Know For Software Development Projects, 7 VS Code Tricks That You Must Know, 8 DevOps Best Practices That You Must Know, 5 Most Difficult Programming Languages of the World, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, Top Data Science Trends You Must Know in 2024, 7 Myths About Full Stack Development That You Must Know, Introduction to Programming Languages, Top 10 Programming Languages of 2015, Top 5 Features of Java 17 That You Must Know, Top 7 Web Development Myths That You Must Know, Top 10 DevOps Programming Languages You Must Know, Top 10 Flutter Packages That You Must Know, Top 10 Python Developer Skills That You Must Know in 2024, Top 10 Programming Languages for Blockchain Development, Top 10 Advance Python Concepts That You Must Know, Top 10 Backend Technologies You Must Know
GeeksforGeeks
[-0.0256971084, -0.00580389891, -0.0136856902, 0.0168025307, -0.00948505849, 0.00922345277, 0.00562451221, 0.00964949559, 0.00615893444, 0.0152179496, 0.0173705872, -0.051513806, 0.0171613023, -0.0269827116, -0.0403918475, 0.0159504451, 0.00545260031, -0.0163989104, -0.0150684612, -0.002240462, 0.0156664159, -0.031243138, -0.0356381051, 0.0098214075, -0.0546829663, 0.0258167, 0.00199380564, 0.0299276374, -0.059885174, 0.0202258211, 0.0603336394, 0.0152702713, -0.0114433598, -0.0258615445, 0.00579642458, -0.00588985486, -0.00377832702, -0.0158009566, -0.0436507, 0.0139921429, -0.00109313615, -0.00186113431, 0.0254429765, 0.00578521285, -0.010972471, 0.0196727123, -0.0274909716, -0.0183273144, -0.00410720194, -0.00359894056, 0.00187795178, -0.0230511576, 0.0582407974, 0.0279394388, 0.0049966597, -0.00734736957, 0.0232753903, -0.034591686, 0.0240676813, -0.0228269249, 0.00710445037, -0.00620004395, -0.0273265354, -0.0260110348, 0.00606924109, -0.0187010374, -0.0369536057, 0.019478377, -0.0092683, -0.00377085246, -0.0456239507, -0.00268519088, -0.0173107926, -0.00115012866, 0.00508261565, -0.0310936496, 0.0312132407, 0.0206144918, -0.0197026115, 0.0191794, 0.00425295345, -0.0209433679, -0.0204052087, -0.0190897081, 0.00396145042, -0.00724272756, 0.0367742218, -0.0548324548, 0.0507364646, -0.00254691369, -0.0232753903, 0.0036979767, 0.0217506066, 0.013319443, -0.0324689448, 0.0113162948, -0.0200464353, 0.000396612217, -0.00453324476, 0.0224532038, -0.0109874196, 0.0200763326, 0.0329174139, -0.028642036, -0.00961959828, -0.032498844, -0.00287392037, 0.020061383, 0.00214329432, 0.0154720806, 0.0268930178, 0.000539093628, -0.0141640548, 0.0127065396, -0.0379701294, -0.0340834223, 0.0239929371, -0.0885571092, -0.026638886, 0.0174004845, 0.0209732652, 0.0270126089, -0.00479485, 0.0455342568, -0.0599748679, 0.0327081271, -0.00172192301, 0.0021694547, 0.00790795218, -0.00238434481, 0.0144331343, 0.0188505258, -0.0194484796, 0.0269528124, 0.0232155956, -0.0364154465, 0.0461621098, 0.0252187438, 0.00917860586, 0.0209284183, 0.0300322808, -0.0320802741, 0.00250580441, -0.0119815199, 0.00391660398, 0.0194484796, -0.00614398578, 0.060393434, -0.0330967978, 0.0318410918, -0.0552809201, -0.00671951706, 0.00312618259, 0.0302714612, 0.0490023978, -0.0264445506, -0.0118544539, 0.0280739777, -0.0229016691, -0.00314673712, 0.00908143818, -0.0384484939, -0.0102848224, 0.0113835642, 0.0214516278, 0.00358586013, 0.00432396075, -0.000407823856, -0.0393753238, 0.048165258, -0.0276554096, 0.0024684323, 0.00762392394, -0.00412215106, -0.0475374088, -0.00358399167, 0.00699233403, -0.00356717408, 0.00188542623, -0.0323792547, -0.0266538355, 0.000314627, -0.0207789298, -0.00979151, 0.0488828048, 0.00801259466, 0.0283879042, 0.0205845945, -0.0150908846, -0.00158364594, 0.00771361683, -0.0152926939, 0.0383588, 0.0423053019, 0.00678305, -0.00590480352, -0.0152254244, 0.00145564624, -0.00186300289, -0.0254429765, -0.0450857915, -0.0218552481, -0.0064579118, 0.0519921705, 0.0129382471, 0.00298603671, 0.0137903327, 0.0038867062, 0.0688843951, -0.030151872, -0.0318111964, 0.0292399898, -0.0093430439, -0.017086558, 0.0153524894, 0.0034046052, -0.0306152869, 0.0221392773, -0.0128784515, -0.0294642225, -0.0213918332, 0.0208985209, -0.0118469801, -0.00391660398, -0.0093430439, -0.0317812972, 0.0119590964, -0.00793785, 0.00198633107, 0.00304583227, 0.0316019133, 0.00714556, 0.0030551753, -0.0295688659, -0.00208536745, 0.00225167349, 0.000573662866, 0.00742211426, -0.0524107404, 0.00515736034, 0.0288662687, 0.00953737926, -0.0507663637, -0.0284925457, 0.00121833291, 0.013192378, 0.00197698805, 0.0873611942, 0.00190691522, 0.022782078, 0.00580389891, 0.0109350989, 0.0252037942, 0.0230511576, 0.018596394, 0.0155916717, 0.0016154123, 1.08758866e-06, 0.0304359, 0.00627478817, -0.00611782493, 0.0408403128, 0.0149264466, -0.00937294122, 0.0146648418, -0.0134614576, 0.0314524211, 0.0347112752, -0.00759776309, 0.00544512598, 0.0527097173, -0.00699233403, -0.00517978333, 0.031870991, 0.0225877427, -0.0019171926, 0.0113536669, -0.0138052814, 0.0180283375, 0.0412887782, 0.0419764258, -0.0504972823, 0.0332462862, 0.00696991058, -0.039405223, -0.0299276374, -0.00711192517, -0.0233800337, -0.0223336127, -0.0153823877, -0.0178639, 0.00607671589, 0.0342927091, 0.00589732919, 0.0601243563, 0.0193288885, 0.0109575214, 0.0129756192, -0.0267584771, 0.0260708295, 0.00755665405, 0.0155019788, 0.0220346339, 0.00433143508, -0.0262801144, 0.0303462073, -0.0190448612, -0.000598889135, 0.0241723228, -0.0175948199, 0.0230362099, -0.0295389667, -0.0168324281, -0.0487632155, -0.0260110348, 0.0509457514, 0.0362958573, -0.00651023304, -0.0480755679, 0.00983635616, 0.0137679093, -0.0364752449, -0.0608120039, 0.030151872, 0.0298827924, -0.000621312414, -0.0177443083, 0.0140818357, -0.0634430051, -0.0068129478, 0.0169968661, -0.0614099577, 0.030361155, -0.0108753033, 0.00801259466, -0.0321699679, -0.027775, 0.0174752288, 0.0127513865, 9.81603516e-05, 0.00865539629, -0.03082457, -0.0387474708, -0.0215562712, 0.0226923842, -0.0316617079, -0.040750619, 0.00386802014, 0.00692506414, -0.00464536157, 0.00138277048, 0.00503403181, -0.00450708438, 0.00355409388, 0.0106136976, 0.00849095825, -0.00115760311, -0.0111443829, 0.00956727657, 0.0144107109, 0.0525303297, -0.0798269659, -0.0788702369, 0.00117068342, 0.0327081271, 0.000272816891, 0.00417447183, -0.0349803567, 0.0137230633, -0.00339899934, -0.0187907293, 0.048165258, 0.0430527478, 0.003998823, -0.0241573751, -0.000925428467, -0.0256074145, 0.00527321408, -0.0489725, 0.0101801809, 0.0167277865, 0.01666799, -0.0329473093, 0.0406011306, 0.00719788112, -0.0237986017, 0.0191943496, -0.00538533041, 0.0213619359, -0.00866287, -0.0671503246, 0.0162643716, -0.00913376, 0.00979151, -0.0199567415, 0.00366434176, 0.0428135656, -0.0166978873, 0.0252336934, -0.0258914437, 0.0116974907, 0.0238135494, 0.0296585578, 0.0458332375, 0.00180320744, -0.0205397476, 0.0397042, 0.0208387244, 0.0278945919, -0.00203491491, 0.0211974978, 0.0238733459, -0.0108379312, 0.0199417938, 0.0130578382, 0.0154571319, 0.00994099863, 0.0496900454, -0.0106734931, 0.010344618, -0.0172061492, 0.0173705872, 0.0273564328, -0.0025338335, 0.00431274902, 0.00248151249, 0.0252336934, 0.0052919, 0.0329772085, 0.0337844454, 0.00105202675, -0.01243746, 0.0222738162, 0.00554976799, 0.025144, -0.0569252968, 0.028896166, -0.00173967471, 0.0216160659, 0.00372040016, -0.0176546164, -0.0337246507, 0.0261007268, 0.0279543865, -0.0517529882, 0.00306264986, -0.0614099577, -0.015412285, -0.015830854, -0.0447868146, -0.0335153677, 0.0222140215, -0.052350942, 0.00370545126, 0.01243746, -0.0178190526, -0.0168623254, 0.00586743141, 0.0284028538, -0.00862549804, -0.00599823426, 0.00732868351, -0.00596833648, 0.00433890941, 0.0204799529, -0.0136782164, -0.0754618943, -0.00238808198, -0.0151581541, 0.0113835642, -0.00148087251, -0.0234248787, 0.0557891838, 0.0341432206, 0.0164886042, 0.0398536883, 0.0102922972, -0.0307647754, -0.00625610212, -0.041378472, 0.0185664967, 0.0465507805, 0.0124897808, -0.0623068921, 0.00523210457, 0.0343525037, 0.037312381, 0.00553481933, 0.0217954535, 0.0144331343, -0.017714411, -0.0191495027, -0.0231558, -0.0148517024, 0.0245011989, -0.0107557122, -0.0175948199, -0.010763187, 0.0151357306, -0.0117423376, -0.0163391158, 0.0213918332, -0.0122057525, 0.0384783931, -0.00673820311, -0.0239480902, -0.00990362652, 0.00367181632, 0.0157262105, 0.0150011908, -0.0272816885, 0.0314524211, -0.00348308682, 0.0496601462, 0.00414083712, 0.038657777, -0.0162344724, 0.0451156907, -0.023245493, -0.00778836152, 0.0239181928, 0.0195232239, 0.0224382542, -0.0316916034, 0.00825177599, -0.0188355763, 0.0184768029, -0.00260297209, 0.0231259018, -0.010299772, -0.00762766087, -0.0095224306, -0.00313178822, 0.000779209833, -0.0122132273, -0.0316617079, 0.00531806052, 0.00921597891, 0.00976908673, 0.00991857518, -0.0190897081, -0.0068727429, -0.0271322, 0.0209134687, -0.00267771631, 0.0248898696, 0.0121833291, 0.0125570511, 0.0374020748, -0.00258428603, 0.00183497381, 0.017295843, -0.0104866326, 0.0304807462, -0.0343226045, -0.0152926939, 0.00659245159, -0.0215263739, 0.00290568662, -0.0322895609, -0.0142761711, 0.00984383095, 0.0290008076, 0.00501534576, 0.00506766699, -0.0330370031, 0.00650275871, 0.00836389326, -0.00574410334, -0.00190971815, 0.00588238053, -0.0205397476, 0.00126878533, -0.0258316472, 0.00243479712, 0.017086558, 0.0133418664, -0.0271620974, 0.0168174785, -0.0159504451, 0.0131849032, 0.00358212297, -0.00326072238, -0.00843863748, 0.0282832626, 0.00173220038, -0.006286, -0.0177443083, 0.000263707421, -0.00591975264, 0.0136856902, 0.0129606705, -0.0153524894, -0.0135661, 0.0160849839, 0.0291951429, 0.0148292789, -0.0146723157, 0.0176695641, -0.0112564992, 0.00769866817, 0.0123776644, 0.0426640771, 0.0291353483, -0.0112415506, 0.0110771125, -0.0157710575, 0.0128410794, 0.00574410334, -0.000455239817, -0.00471636839, 0.0120861614, 0.0223336127, 0.00333733531, 0.010217553, 0.00708950171, 0.000569925702, -0.00626357645, -0.0234248787, 0.030734878, 0.00544138858, 0.0248001758, 0.034591686, -0.0152179496, 0.0130503634, 0.0190000143, 0.0340834223, 0.004585566, -0.00481727347, -0.0206443891, -0.0118544539, -0.0228418745, -0.00430527469, -0.0292100925, 0.0257120561, 0.020270668, 0.0195232239, -0.00324951066, -0.00599823426, -0.0100830132, -0.0144331343, 0.0391660407, -0.00237126462, 0.144944251, -0.0167726316, 0.031870991, -0.0201959237, 0.0100306915, 0.0432919264, -0.0327978209, -0.000808173267, 0.0099933194, 0.00575157767, 0.0417372473, -0.031990584, 0.000340553961, 0.0164886042, -0.00245161471, 0.0109052006, 0.0159803424, 0.00879741, 0.0137380119, 0.0231109541, 0.0140818357, -0.00153225916, -0.0266986825, 0.0208387244, -0.00796774775, -0.0100755384, 0.0281636715, 0.0196577646, -0.0281038769, 0.0186113436, 0.033455573, -0.0272966363, -0.011473258, 0.0173556376, 0.0288064722, 0.0105763255, 0.00794532429, -0.0177293606, -0.0155318761, 0.0211825483, 0.0440393724, -0.00557219144, -0.00525079062, -0.0227073338, -0.00290194945, -0.00477990136, 0.0198371504, -0.012856028, 0.00421931874, 0.0139697194, -0.0150086656, 0.0135959974, -0.0275507681, 0.000212671031, -0.0429331549, 0.0304508489, -0.0147246374, 0.00509382738, 0.00776593806, -0.0381196178, -0.0106136976, -0.00414831145, 0.0114508346, 0.00896184798, 0.0145004038, -0.00858812593, -0.0183871109, 0.00778088672, 0.0393155292, -0.0025861545, -0.00946263503, 0.00962707214, 0.0350401513, 0.0106884418, 0.0101801809, -0.0236790106, -0.00630842336, 0.0123776644, -0.0304807462, -0.0229315665, -0.0252934881, -0.0363556519, -0.0352494344, -0.0276554096, 0.0169819165, -0.0361164697, -0.0123926131, 0.0310039576, -0.0160849839, 0.00159859483, 0.000639064179, 0.0122954454, -0.0302714612, 0.0242620166, -0.00843863748, 0.00439496804, 0.0216160659, 0.0364154465, -0.0156664159, 0.0306451842, 0.0235295221, 0.0167427342, -0.0239181928, 0.0385381877, 0.0229166187, 0.00789300352, -0.0272069443, -0.00483222213, -0.0155916717, 0.024291914, -0.0235295221, -0.00967939384, 0.0116152717, -0.0265940409, 0.0056955195, 0.0105987489, 0.00836389326, 0.00656629121, 0.0347411744, 0.00821440388, 0.00427163951, 0.0321699679, -0.020599544, -0.0368639156, 0.00495555066, 0.0102250269, 0.0114134625, 0.00782573316, 0.0282384157, 0.0474178158, 0.0105613768, -0.0297482517, 0.0137155885, 0.0199567415, -0.0344421975, -0.0289559606, 0.0148890745, 0.000282393506, -0.0149114979, -0.0400629714, -0.015367439, 0.0079901712, -0.00157617149, 0.0368041173, 0.0278198477, -0.012355241, 0.0403619483, 0.00327940844, 0.0366546288, -0.00292250421, 0.024456352, 0.0205397476, -0.00708576431, -0.0155468248, -0.00792290084, 0.00149675563, -0.0287616272, 0.0382093117, -0.0353092328, -0.0256821588, 0.007997646, -0.017460281, -0.0227073338, -0.0131774293, -0.0540551133, 0.0217655543, 0.0288214218, -0.0172360465, 0.00673072878, -0.0364453457, 0.00649902131, 0.00150703301, -0.00962707214, 0.0343226045, 0.0118619287, -0.013065313, 0.0236939602, 0.00886468, -0.020061383, 0.0202407707, -0.0340535268, -0.0326184332, 0.012728963, -0.00292810984, -0.00972424, -0.00650649564, 0.0141341565, 0.00409225328, 0.00970929116, -0.00996342208, 0.0225129984, -0.0180881321, 0.0223485604, 0.0365350395, 0.0114657832, 0.0409898, 0.0137454858, -0.00257681147, -0.0112116523, -0.00267397915, 0.00647659786, -0.00215076865, 0.00463788677, -0.0131998528, 0.00376150943, -0.00338405045, 0.00848348346, 0.0057627894, -0.0340535268, -0.015786007, 0.0198521, 0.0216459632, 0.0205397476, -0.0258764941, -0.001313632, 0.00186020008, 0.019014962, 0.0179087464, -0.00420063268, 0.0204949, -0.0224382542, 0.0217954535, -0.0119217243, -0.0438001901, -0.00820693, -0.0167427342, -0.000700261153, -0.0102325017, 0.0142612224, 0.0288064722, 0.0466105789, 0.0032962258, 0.00693253847, 0.00530684879, -0.0113387182, -0.019807253, 0.00622994173, 0.0217207093, -0.00231707492, -0.00904406607, 0.00303648924, -0.00038726916, 0.00529563706, -0.0162195247, -0.0207490325, 0.00145751482, -9.51822585e-05, -0.0220794808, 0.000702129735, -0.00300846016, -0.0197325088, 0.00296548218, 0.0092683, -0.0106809679, -0.0172061492, -0.00784815662, -0.00825177599, 0.00718666939, -0.00455193082, -0.0319008902, 0.00556097971, 0.00667093322, -0.0516035, -0.00414457405, 0.0154571319, -0.0101951296, 0.0337844454, -0.00603186898, 0.0189551674, 0.0135063045, -0.0339339338, 0.00412215106, 0.0331565924, -0.0217506066, -0.021944942, 0.000842742564, -0.00644296315, 0.029688457, 0.0182226729, 9.7459626e-05, 0.0227073338, -0.0200763326, 0.0229315665, -0.0185366, 0.0239032432, -0.00062084524, 0.00395771349, 0.011936673, 0.0242022201, -0.00887215417, -0.0279543865, -0.000252028607, 0.0194933265, -0.0149638187, 0.0440393724, -0.0265790913, -0.0168324281, 0.0244414024, 0.00888710376, 0.000697925396, -0.0155019788, 0.00338591915, -0.0257270057, -0.00208349875, 0.0296585578, 0.00909638777, 0.00690637808, -0.0121982777, -0.00639437931, 0.0364752449, -0.0140818357, -0.00194148452, -0.00819945522, -0.0191196054, -0.0102100782, 0.0107706608, 0.0198521, 0.0238434486, -0.00995594729, -0.0030551753, 0.0112415506, 0.00494060153, -0.0153823877, 0.0231259018, -0.0303013604, 0.00224606786, 0.00486585731, -0.015786007, -0.0430527478, -0.0108155077, 0.00947758369, 0.0108528798, -0.0196129177, -0.0245908909, -0.0358174928, 0.0161896273, 0.00381196197, 0.0263997056, -0.00165278441, -0.0200015884, -0.0108229816, -0.00745574897, -0.0525602289, 0.0150983585, -0.0122655481, 0.000756319379, 0.0264146533, -0.0196278673, -0.0025319648, -0.000790888676, -0.00967939384, 0.0133867133, 0.0082891481, 0.0015219819, -0.0127364378, 0.00541896559, -0.0447569191, -0.0137828579, -0.0283729564, -0.00825177599, -0.00392781571, 0.0177742075, 0.0504374877, 0.0037671153, 0.00343450299, -0.00991110131, -0.0182974171, -0.0232903399, -0.0290755518, -0.00784068275, 0.000630655442, 0.0307647754, 0.0241125282, -0.000267211057, -0.0167726316, -0.0144555578, -0.0391660407, 0.013483881, 0.00278235856, 0.0162045751, 0.00896932185, 0.0207191333, 0.0307647754, -0.0160102397, -0.00107258139, -0.0231707487, -0.0131026851, -0.0156514663, -0.0325885378, 0.0141341565, -0.0132073266, -0.00376337813, -0.0122879716, -0.00351485307, -0.0672101229, -0.00395397609, -0.00214329432, -0.00367555348, -0.0222289693, -0.0125122042, 0.00484343385, -0.00400256, -0.0111742802, -0.000517137465, -0.00318224076, 0.0142836459, 0.00241797976, 0.00130802614, 0.00275246077, -0.00322521874, -0.00191906118, 0.00143882877, 0.00983635616, -0.00892447587, -0.0164288078, 0.00331678055, 0.0432321317, 0.00591227831, -0.0139697194, 0.0248599704, 0.00929819699, -0.0095897, 0.00383064803, 0.0143583901, -0.03333598, 0.000841341098, -0.0213320386, -0.0101129105, -0.00568804517, 0.0156664159, -0.0115928492, 0.014612521, 0.0160700362, -0.0121982777, -0.00836389326, -0.0128336055, -0.0134988297, -0.0114134625, -0.00361949508, 0.0277600512, 0.00219374662, -0.00698859664, -0.00688769203, -0.00938041601, -0.0133493412, -0.0104567343, -0.0316617079, -0.0125944233, 0.0124225114, 0.00672699139, -0.000648407266, -0.0166231431, 0.00500787143, 0.00788552873, 0.0688843951, 0.00269453391, 0.00527695101, -0.0151432054, -0.0124823069, -0.000286597875, 0.00630842336, -0.0192391966, 0.0167128369, -0.0226026922, 0.00964202173, -0.00884225685, -0.00483222213, 0.0192840435, -0.0152777452, -0.00887215417, 0.0101727061, 0.00204612664, 0.0291203987, -0.0132970205, -0.0168922227, -0.00856570248, -0.00186580583, 0.0033522842, -0.00551987, 0.0214964747, 0.0203304626, 0.00143042, -0.0332462862, -0.0117423376, 0.0257270057, -0.0163690131, 0.00363444397, -0.000979151, 0.0174752288, 0.0184618551, -0.010553902, 0.00907396432, -0.0166829396, -0.00490696682, -0.000560115499, -0.0264146533, -0.0211974978, 0.0160999335, -0.0277899504, -0.000404553808, -0.0184170082, -0.00131176331, 0.0128859263, 0.0168174785, -0.0327380262, -0.0130503634, -0.00595712475, 0.0082891481, -0.00239555654, 0.0490023978, 0.00697738538, 0.0208686236, 0.00276554096, -0.00569178211, -0.00168361655, -0.0030009856, 0.00822187867, -0.00599823426, -0.0109052006, 0.00920850411, -0.019478377, -0.000550772413, -0.0171613023, -0.00197885674, 0.0180731844, 0.00186300289, -0.00899922, 0.00831157155, -0.0159653928, 0.00684658252, -0.00252822763, -0.0093505187, 0.0126841161, -0.019807253, -0.00393902743, 0.0423053019, 0.0127364378, 0.0217954535, 0.00868529361, -0.0124972556, -0.0112340758, 0.000979151, -0.00606176676, -0.0195232239, -0.0103072459, -0.0031112337, 0.00723899, -0.00860307459, -0.00575157767, 0.000159182106, 0.0151506802, -0.00836389326, 0.00667840755, 0.0010922018, 0.00865539629, 0.0145228272, 0.0180133879, -0.0121384822, 0.00950748101, 0.00171164563, 0.0117423376, 0.00321026985, -0.00470515667, 0.0139323473, 0.0321998671, 0.00215450581, 0.0027094828, 0.00955232792, 0.0214516278, 0.0158607513, 0.0190897081, 0.0103296693, 0.00902164355, 0.0136557929, -0.0294791721, 0.00566935912, 0.0121235335, 0.000199824353, 0.0239331406, 0.00907396432, -0.00402498338, 0.0160251893, 0.0165483989, 0.0167427342, -0.00608045282, 0.0182974171, -0.0152926939, 0.0150908846, 0.000565254129, 0.00606176676, -0.00877498649, 0.0297632013, 0.0188505258, 0.000412028225, -0.0205098502, 0.019642815, -0.0157262105, -0.00793785, -0.00361388945, -0.0103670415, -0.0369237103, 0.0122804968, 0.0108229816, 0.0107108653, -0.00420810701, -0.0122879716, -0.00215263735, -0.000466685044, 0.00831904635, 0.00516109727, 0.00494060153, -0.00459677773, 0.0144256596, -0.0202258211, 0.00810228754, 0.0277152061, 0.016040137, 0.0160251893, -0.0197026115, -0.00201622886, -0.00911881123, 0.034472093, -0.0032831456, 0.0072277789, -0.0135362018, -0.0165483989, 0.00334854703, -0.0125570511, 0.0260708295, -0.00950748101, 0.00495181326, -0.00280851894, 0.00738474168, 0.0170417111, -0.00290942378, -0.0275208708, 0.0179834906, 0.00626731385, -0.012355241, -0.000872640288, -0.0016677333, -0.0125944233, -0.00721656717, -0.00243106, -0.0219598897, 0.00505645527, 0.00691759, -0.0147844329, 0.0244414024, 0.0241723228, 0.00418942096, 0.0059347013, 0.006700831, 0.009171132, -0.0264146533, 0.00980645884, 0.00457435427, 0.00107818726, 0.00431274902, -0.00272816885, -0.0307647754, 0.00430153729, 0.00502655748, 0.00240303087, -0.0109052006, 0.00193214149, 0.0140369888, -0.0265192948, 0.0165483989, 0.0138650769, 0.0049966597, 0.00190691522, -0.0106211724, -0.00317102904, 0.0210181121, -0.00692880154, -0.0192092974, 0.00113517977, 0.0275806654, -0.00680547301, 0.00674194051, 0.00791542698, 0.0327978209, 0.0220944304, -0.0155019788, 0.0148591772, 0.0161148813, -0.00926082488, -0.00315234298, -0.0133044943, 0.0340834223, -0.0380598232, -0.0105763255, 0.00409599, 0.0322297625, 0.0276554096, -0.0205546971, 0.00224606786, 0.00496676192, 7.58538372e-05, 0.0016219524, 0.00692880154, -0.0224681515, -0.00378206419, -0.0230212603, -0.0251589492, 0.0309441611, -0.0200464353, 0.00868529361, 0.0140893105, -0.00368115935, 0.0196129177, -0.0135586252, -0.0169968661, 0.00289634359, -0.00738847908, 0.0141416313, 0.0152104758, -0.0227671284, 0.000753516506, -0.0195979681, 0.00533674657, 0.02512905, 0.00356717408, 0.00143509149, 0.0330071039, 0.00333546661, 0.00419315789, -0.0200314857, -0.0173406899, 0.00159859483, -0.000410159613, 0.00267958501, -0.0169071723, -0.00208349875, 0.0228418745, 0.0176845137, -0.0368639156, -0.00230212603, 0.0110920621, 0.0114956815, -0.012728963, 0.000447531813, 0.000703064, 0.0127588604, 0.00108379312, 0.0109575214, 0.0116302213, -0.0263249613, 0.0324390493, -0.00462293811, 0.00702596921, 0.000289167219, -0.00458930293, -0.0134240855, 0.0109425727, -0.0171463545, -0.00132484362, 0.019642815, -0.00652144477, -0.00409972761, -0.00541896559, -0.00809481367, -0.0061776205, -0.000885720539, -0.017549973, -0.000673166302, 0.00235631573, 0.0046939454, 0.00189383503, 0.00888710376, 0.0168174785, 0.00465283589, 0.00197511958, 0.00212087086, 0.0138127562, 0.0171613023, 0.0159354955, 0.00332051772, -0.0134913558, -0.0147919068, -0.0246506874, 0.0131176338, -0.0214516278, 0.00565441, -0.0313926265, -0.0104343118, -0.00143976312, 0.00747443503, -0.0165782962, 0.000977282412, 0.0120936362, 0.0277451035, -0.00554976799, -0.00766877038, -0.0224382542, 0.00751180714, -0.000338451762, 0.00549744722, -0.00535543263, -0.0132970205, -0.00978403538, -0.0155169275, 0.00618509483, -0.00825925078, -0.000710538472, 0.00301406602, 0.023664061, -0.00214142562, 0.0336050615, -0.0158607513, 0.0294791721, -0.0349504575, 0.0129158236, -0.025502773, -0.000712874229, 0.00251701591, -0.0146274697, -0.00256186258, -0.011600323, -0.0227970276, -0.00947758369, 0.0413485765, 0.0316318087, 0.00244787754, 0.00684284512, 0.0445177369, 0.00500787143, 0.00709697604, 0.0260558799, 0.0231856983, 0.0182675198, 0.0241424255, -0.0153524894, -0.0176247172, 0.0186412409, 0.00507514132, -0.0282982104, -0.0237687044, 0.00766129605, 0.00438749325, -0.00606924109, 0.0269976594, -0.018342264, 0.0173257403, -0.0157262105, 0.000794625899, 0.0281636715, -0.00233762967, 0.00353353913, -0.0215861686, 0.0151357306, -0.0197624061, 0.00432769815, -0.00392034138, -0.010135334, -0.014238799, -0.00350177288, 0.00990362652, -0.0330967978, 0.00174995209, -0.015203001, 0.0111294342, 3.03648922e-05, 0.0257419553, 0.00417820923, -0.0250094607, -0.0215263739, -4.69487968e-05, 0.00624489039, 0.0307647754, -0.0120039424, -0.00579642458, 0.0169819165, -0.0046490985, -0.0152104758, 0.00384185975, 0.0103894649, -0.00982888229, -0.0206593387, 0.0268780682, 0.00131082907, 0.0108603546, -0.010972471, 0.00387923187, 0.00204425794, 0.0112116523, -0.00925335102, -0.0153076435, -0.00454071909, 0.00945516, -0.0158458017, -0.00478363829, 0.00421931874, 0.0017023026, -0.00332986074, -0.0307946727, 0.0098737292, 0.00843116269, -0.0208387244, 0.00643548882, 0.0050003971, -0.00532179791, 0.00486585731, 0.0191046558, 0.0160251893, 0.00594965043, 0.0057627894, -0.00956727657, 0.0138052814, -0.0238135494, -0.0112490244, 0.0130279399, -0.00382691086, -0.0334854685, -0.00793785, -0.00767624471, 0.00927577354, 0.0159504451, -0.00656629121, -0.0142014269, -0.00449213572, 0.0113162948, 0.0059384387, 0.010262399, -0.0132372249, -0.0247254316, 0.00832652114, 0.00405488117, 0.00936546735, 0.011391039, 0.00516483467, 0.0021190024, -0.00837136712, 0.00101185171, 0.0231259018, 0.0020498638, -0.00721656717, 0.0424248949, 0.0593769141, 0.00455940561, 0.00858812593, 0.014530302, 0.0252336934, 0.0198371504, -6.23356209e-06, -0.0123402923, 0.00114358857, 0.00995594729, 0.00250206725, -0.0171164572, 0.00884973072, -0.0110696387, -0.0112041784, 0.00393155264, -0.00630468596, 0.0132222753, 0.0368340164, 0.0211526509, 0.0162045751, -0.00198259391, 0.0144630317, 0.00453698216, 0.00110061059, 0.0126691675, -0.0129307723, -0.000649341557, 0.0133717647, 0.0248151254, 0.00519473245, -0.00563198701, 0.0171463545, 0.0194634292, -0.0106062237, 0.0318111964, 0.00347561226, 0.00714929728, -0.0244862493, -0.00410346501, -0.0276255123, 0.0203005653, 0.033455573, 0.00312057673, -0.0221990719, -0.00556845404, -0.0136483181, -0.00368863367, 0.00669709407, -0.0246357378, 0.00435385853, -0.010053115, 0.0102698738, 0.0122356499, 0.0202407707, -0.000660086051, 0.00565067306, 0.00352045894, -0.0152403731, 0.000386802, -0.012856028, 0.0229614638, 6.45837936e-05, -0.00730626052, 0.00829662289, 0.0107332887, 0.00635327, 0.00556845404, -0.000600757718, 0.00562824961, -0.0136557929, -0.0137081137, -0.00151357311, -0.0014677922, 0.00142948574, 0.00237873895, -0.0252635907, 0.0188804232, -0.0162344724, 0.0239929371, 0.00562824961, -0.00477242703, -0.00110715069, -0.00785563141, -0.0100680636, -0.00548623549, 0.0270873532, 0.00445102621, 0.0258615445, 0.0147545347, 0.0197474584, -0.00725020189, 0.00533300964, 0.0077509894, -0.00126504817, 0.00952990446, 0.00129868311, -0.0190897081, -0.0096943425, 0.0193587877, 0.0290008076, 0.0227521807, 0.0025880232, -0.0303163081, -0.0112789227, 0.0103894649, 0.00754544232, 0.00248898682, -0.00924587622, -0.0143359667, -0.0189850647, -0.0388072655, 0.00056104979, 0.021900095, -0.00261231512, -0.00893195, -0.0346813798, -0.0142761711, -0.00467152195, -0.0068727429, -0.040122766, 0.0182226729, 0.00478363829, -0.0125421025, -0.00627105124, 0.0104417857, -0.00191158673, -0.00583753362, 0.000133371956, -0.00518725812, 0.000163503268, 0.0138052814, 0.00513867429, -0.00420810701, -0.00495928759, -0.00867781881, -0.00464536157, -0.00177984987, -0.000237313317, 0.0195082761, 0.0129232984, -0.0118170818, -0.00025880232, -0.000252262194, -0.00757534, -0.0147321112, -0.00132764655, 0.000330510171, 0.0028813947, 0.00205360097, 0.0130503634, -0.0145601993, -0.0306152869, -0.00213208259, 0.0107930843, 0.0276105627, 0.00237313309, -0.0155617734, -0.00456688, 0.0192391966, 0.00280851894, -0.00248711836, -0.0181628764, -0.00120898988, -0.00422679307, 0.0260409322, 0.0220047366, -0.00366060459, -0.00538906781, 0.017714411, -0.0107183401, -0.0135362018, 0.0102325017, 0.0304807462, -0.0101054367, 0.00162662391, 0.00967191905, -0.00479485, 0.010299772, 0.00852833, 0.00315234298, 0.024710482, 0.00104268373, -0.0142612224, 0.010972471, -0.0153823877, -0.01641386, -0.006700831, 0.00698859664, -0.00408477895, 0.0109126754, 0.00531058619, -0.00929072313, 0.00441739103, 0.0078107845, -0.02261764, -0.0144256596, -0.00878993608, -0.026384756, -0.00694375, -0.040122766, 0.00207415572, 0.0150535125, 0.00265155593, 0.00111929665, -0.0108977268, -0.000497984234, -0.0258167, -0.00525079062, 0.00872266572, -0.0436507, -0.0390464477, 0.015621569, 0.0123253437, -0.00596459908, 0.0317812972, 0.0180881321, 0.00549371, -0.0178340022, 0.0139846681, -0.000618042366, 0.00542270252, 0.00933556911, 0.0451754853, 0.0161148813, -0.0214665774, 0.00313178822, -0.00190971815, -0.0150385639, -0.0281188246, -0.0285822395, -0.00134072674, -0.00964202173, -0.00228904583, 0.0192989912, -0.00211526523, -0.0136408443, 0.00151824462, 0.00654760515, -0.0121982777, -0.0103894649, -0.00680173608, -0.00840126537, 0.0137454858, -0.00772856595, -0.0137753841, 0.0168174785, 0.00997837074, -0.017086558, -2.19269568e-05, -1.85547015e-05, -0.00656629121, 0.0019171926, 0.0120338406, 0.00692506414, 0.00921597891, -0.00425669085, -0.0144181857, 0.00193587865, -0.00314860581, -0.00063485984, 0.0187010374, -0.00699233403, -0.00668214494, 0.0198969468, -0.00220495835, -0.0265043471, 0.0283131599, -0.0270574559, 0.0106809679, 0.0129307723, -0.00945516, 0.0359968804, 0.00477242703, 0.0150535125, -0.00190037512, -0.0270275567, -0.00194895896, 0.000516203174, 0.0160102397, -0.0105912741, 0.0133642899, 0.0024123739, 0.0196876619, 0.00602439465, 0.00247216946, -0.0135063045, 0.0180731844, -0.000411327521, 0.0173855368, 0.0245460439, -0.0142761711, -0.00402124599, 0.00274685491, 0.0100456411, -0.00158177735, -0.0203304626, 0.000464349287, -0.0116974907, 0.00550118415, -0.0299276374, -0.0109425727, 0.0102698738, 0.0220196862, -0.00655881688, 0.00217506057, 0.0139846681, -0.000881049, -0.000590947515, 0.0258167, 0.000848348369, -0.0102848224, -0.01528522, -0.00227596541, -0.00717919506, 0.0186561905, -0.0299126897, -0.0103296693, -0.0258914437, -0.0110845873, -0.0137903327, 0.00601692032, 0.00605055504, -0.0174303818, -0.00201436016, 0.0175051261, -0.00689890375, -0.0292100925, -0.00638316758, -0.00599449687, 0.00328127691, 0.00193587865, 0.0193587877, 0.0176994614, -0.00519846939, 0.0210779067, -0.0212722421, 0.00824430212, -0.00074604206, -0.0110098431, -0.0199716911, -0.000561516965, -0.0086404467, 0.00393529, -0.00229465147, -0.00421931874, -0.00989615172, -0.0189402178, -0.00555350538, -0.00979898404, -0.00227596541, 0.00684658252, -0.0125794746, 0.0311235469, 0.0326782316, -0.011936673, 0.00282159913, 0.00918608066, -0.0253084376, -0.00284962845, 0.00673446618, 0.0132970205, 0.00241611106, -0.00594591303, -0.00597954821, 0.00217879773, 0.0104343118, 0.00979898404, -0.00547876069, 0.0253532846, -0.0218253508, -0.0137903327, -0.015786007, -0.00692880154, -0.00290008076, -0.0117797097, 4.54597466e-05, -0.00377085246, 0.00769866817, -0.00338031328, -0.00737726735, -0.0140519384, -0.00865539629, -0.000256700121, 0.00446971226, -0.0102250269, 0.0159803424, 0.0136333695, -0.00948505849, 0.019642815, 0.00147059513, -0.00794532429, -0.0051050391, -0.0251888465, 0.00477242703, 0.00513867429, 0.00054890383, 0.0113611417, 0.00290942378, -0.00283841672, 0.0015201132, 0.0228867196, 0.0183273144, 0.0214665774, -0.0181180313, 0.00354475086, 0.0133867133, 0.00850590691, -0.0163540635, 0.00238621351, -0.00813966, -0.00540401647, 0.0100605898, -0.0121384822, 0.000842275389, 0.0143882874, 0.0103670415, 0.0178489517, -0.00309628481, -0.0149114979, -0.00473879185, 0.00859560072, 0.0224681515, -0.00531806052, 0.0135362018, -0.023245493, 0.0101727061, 0.00693627587, -0.0166380927, -0.0220794808, -0.0138351796, -0.0230063107, -0.00596459908, 0.0117871845, 0.0069848597, 0.00284028542, 0.0239929371, 0.00215076865, -0.00826672558, 0.0227671284, -0.000275619794, 0.0146872653, -0.00413336279, 0.0376113579, 0.021735657, 0.00806491543, -0.00639437931, -0.0184618551, -0.00460425206, -0.00688395463, -0.00572915468, -0.00236379, 0.0118320305, 0.02462079, 0.00355035672, -0.0165334512, -0.0101203853, 0.00730626052, -4.1518153e-05, 0.0106211724, 0.00855075382, -0.00950000715, -0.0101502826, -0.0171463545, 0.00365313026, 0.0197474584, -0.00625983952, 0.00585995708, -0.00890952628, 0.00584874535, 0.0019433531, -0.00870771706, 0.0136483181, -0.0222588684, 0.0141192079, -0.0038867062, -0.0089917453, 0.00844611134, -0.00249085552, 0.0243965555, -0.0100605898, 0.0289559606, -0.00622994173, 0.0165483989, -0.0075304932, -0.0264445506, 0.00584500842, 0.0062897373, -0.0132073266, 0.021944942, -0.00874508917, -0.000346393354, 0.000115736955, 0.000136758797, -0.0150684612, 0.00560208922, 0.00128840574, -0.0201510768, -0.0167427342, 0.00235070987, -0.00371292559, 0.0136483181, -0.0133269178, 0.00259736623, -0.00445476314, 0.00492939, 0.0059421761, 0.00432396075, -0.000597020495, -0.0147545347, -0.00479485, 0.0102474503, 0.00678678695, -0.00115853746, 0.00378206419, 0.00776593806, -0.0115255788, -0.00161728088, 0.00145938341, 0.00543017732, -0.0303163081, -0.0230661072, 0.00944021158, 0.0049331272, -0.00105576392, 0.00351672177, 0.0197624061, 0.000408758176, -0.0130204661, -0.0188355763, 0.00803501811, -0.00509009045, -0.00503776921, 0.0126915909, -0.0212572943, -0.00622620434, 0.0144406082, -0.00577773852, 0.00344197731, -0.0266986825, 0.000444495323, 0.0254280288, -0.00168548513, -0.00333172944, -0.00404366944, 0.0035933347, 0.00267024199, 0.00337283895, 0.0102848224, -0.0151058333, 0.00098662544, 0.012228176, 0.0173107926, 0.00244414038, 0.00485838298, 6.05108062e-06, -0.00105856685, -0.00157056563, 0.000243386297, 0.000340320374, -3.88320259e-05, -0.00433517247, -0.00959717482, 0.00717172027, 0.0148068555, 0.00496302499, 0.0147171626, 0.00431274902, -0.0235145725, -0.0183123667, 0.0110023683, -0.00614398578, -0.00498544844, -0.0144331343, -0.00891700108, -0.00618509483, -0.00968686771, -0.00467525935, 0.0130802616, -0.00599076, -0.0136333695, -0.0100680636, -0.0253831819, -0.00255625672, 0.0204799529, 0.00646538613, -0.00606550416, 0.00338778761, 0.0129606705, -0.00723151583, 0.00404366944, 0.0302864108, 0.00166212756, 0.0321400724, 0.0035933347, 0.003057044, 0.00495928759, 0.0169370696, -0.0107706608, -0.0209882129, -0.00724646496, -0.0146723157, 0.00260484056, 0.00463415, 0.00292250421, 0.013947296, -0.00282346783, 0.0113985138, -0.0222588684, -0.0110696387, 0.00839379057, -0.0201959237, -0.000282860652, 0.0133119691, -0.00885720551, 0.0152179496, 0.000760990952, 0.0194634292, 0.0274909716, -0.00485464558, 0.00567683345, 0.014993717, -0.00128186564, 0.0382691063, 0.0203005653, -0.00088758918, -0.0132820709, -0.00333359814, 0.014321018, -0.0145527255, 0.00414083712, 0.0166081954, -0.00373534905, -0.0180881321, 0.0132671222, 0.00429032557, 0.00357278, -0.00397266215, -0.0124524087, 0.0141266827, 0.0017368719, -0.00787058, -0.00469020801, -0.00389418076, -0.00254504522, 0.0110098431, 0.0114807319, 0.00398013648, 0.000496582768, -0.0182226729, -0.0142911198, 0.00953737926, -0.00463788677, 0.000424407772, 0.00165839028, 0.00415578578, -0.0330967978, 0.00412588799, -0.00044286027, 0.0222140215, -0.0198819973, -0.0078182593, 0.00937294122, 0.00526573975, -0.00446971226, -0.0121758552, 0.00815460831, -0.00932062, -0.0181329791, -0.000669429079, -0.00166025886, -0.00929819699, -0.0202856176, 0.0101502826, 0.0114433598, 0.00296735065, 0.000164554367, 0.0210031625, 0.00557966577, -0.00796027295, 0.00933556911, 0.0169669669, 0.0142014269, 0.0173855368, -1.16934034e-05, 0.0122655481, 0.0173406899, -0.00483595952, 0.00900669396, 0.00866287, 0.0196278673, -0.0116750672, -0.0202856176, -0.00801259466, 0.00922345277, -0.0141341565, 0.0117797097, -0.0032831456, -0.00883478206, -0.0159354955, -0.00768371951, 0.00479858741, 0.000188262333, 0.0184618551, -0.00394276436, -0.0234398283, -0.0100232176, -0.0192391966, 0.00126224523, 0.00480979914, -0.00751554454, 0.00226662238, 0.00074417342, -0.0224532038, 0.00700728269, -0.0095897, -0.0265192948, 0.0170267634, -0.00475000357, 0.0262502152, 0.00790047832, -0.00658497727, -0.00109500473, 0.015576723, -0.0070483922, 0.00268892804, -0.00278796419, -0.0175200757, 0.0137454858, -0.00837884191, -0.0145900976, 0.0149114979, 0.00344571448, 0.00533300964, 0.00607297849, -0.00536664436, -0.0102325017, 0.00889457762, -0.00365686743, 0.0044099167, 0.00526947668, 0.00957475137, -0.0174752288, -0.000672699185, 0.0174901783, -0.00962707214, -0.0156365186, 0.0239480902, -0.0253084376, -0.0100157429, 0.0196727123, -0.0191644523, -0.016249422, -0.00744827464, -0.03082457, -0.0143434405, 0.0103296693, -0.00922345277, -0.00363818137, 0.0103745162, 0.00143228867, 0.0296436101, -0.000320933555, -0.00944768637, 0.0149563449, 0.0176396668, -0.00455566822, 0.00365686743, -0.00148087251, -0.00519473245, 0.00887215417, -0.00448839832, 0.015412285, 0.00398013648, -0.00403619511, -0.0155916717, -0.00720909284, 0.0126616927, 0.0114134625, 0.0285224449, -0.00880488474, -0.00178171846, -0.00769119384, -0.00132297503, -0.00635327, 0.00498171104, -0.00813966, -0.00445850054, 0.00526573975, 0.0407805182, -0.0011809608, 0.0206742883, -0.00160233199, 4.94597371e-05, -0.0020498638, -0.0148442285, 0.0102474503, -0.00426790258, -0.0145975715, 0.002345104, -0.00402872032, 0.00831157155, -0.00358586013, 0.0114657832, 0.00164063845, 0.0236341637, -0.00610661367, 0.00970181637, -0.00813218579, 0.00594591303, -0.0267285798, 0.00264968723, 0.00193961593, -0.0222588684, 0.0126168467, -0.0171613023, -0.0131624807, 0.00238434481, 0.00608045282, -0.0110621639, 0.00122020149, 0.00197698805, 0.019478377, -0.0243367609, -0.00744453724, 0.0208387244, 0.00785563141, 0.0195680708, 0.0171463545, -0.0290456545, -0.011099536, 0.0157710575, 0.00171631714, 0.0193139408, -0.0125346277, -0.010890252, -0.00744080031, -3.06568618e-05, -0.00692132674, 0.00424547913, 0.00301219733, -0.017714411, -0.0043426468, 0.000611969386, -0.0258465968, -0.00823682733, 0.0162643716, -0.0043426468, -0.00631216029, -0.00913376, -0.000258568733, -0.00767624471, -0.0259512383, -0.00144256593, -0.000518538931, 0.00900669396, -0.012983094, -0.00670830533, 0.0289709102, -0.0107482374, 0.000337050296, -0.00427537691, 0.018342264, 0.0115255788, 0.0105912741, 0.00240303087, -0.00162662391, -0.0214217305, 0.0110920621, -0.00974666327, -0.0144107109, 0.00378019549, 0.00101465452, 0.0111219594, -0.00982888229, 0.0126841161, 0.0201062299, 0.00630842336, 0.00807239, 0.00609540194, -0.00754170492, 0.0202856176, 0.00599076, -7.8948724e-05, 0.0323792547, 0.0156365186, -0.00395023916, -0.0174154341, 0.0121758552, 0.0131026851, -0.0161447804, 0.0062822625, 0.00354661955, 0.0131550059, 0.0102474503, -0.0227671284, -0.000664757565, 0.00580016151, 0.00178078411, 0.00942526292, 0.00505271833, 0.0163391158, -0.00297295651, 0.000286130729, -0.0123701897, -0.00412215106, -0.0306750815, -0.0151731037, 0.00349616702, 0.0112340758, -8.29779092e-05, -0.0131026851, -0.0124225114, -0.00415204884, -0.00156682846, 0.0162942689, 0.0185664967, 0.000673633476, 0.0121534318, -0.00477616396, -0.00479111308, -0.00089366216, 0.00884225685, 0.00819945522, -0.00882730819, -0.000512933126, 0.0156365186, -0.0236790106, -0.00292997854, 0.0148442285, 0.00850590691, -0.00536290696, 0.0136333695, 0.00863297284, -0.0156813655, -0.0173556376, 0.00470889406, 0.00870024227, 0.0127214883, 0.0062224674, 0.00913376, -0.00180227321, 0.000386334868, -0.0226624869, -0.0218402985, 0.00905901566, 0.00771361683, -0.0010791216, -0.0261007268, -0.00985130575, -0.00226849108, -0.00258989166, 0.00723151583, 0.0157112628, 0.000193751373, 0.0156365186, -0.0410197, 0.0227671284, -0.0207639802, 0.0150609864, 0.0234697256, -0.0137903327, -0.00654760515, -0.0247702785, 0.0118619287, -0.024082629, 0.00200688583, -0.0130204661, -0.0161447804, 7.0715163e-05, 0.00395023916, 0.00126971968, 0.00328688277, 0.00563572394, 0.0133941881, 0.00328688277, 0.0058749062, 0.00804249197, 0.00237873895, 0.0226923842, -0.00318224076, 0.00880488474, -0.00565441, -0.014866651, 0.00807986408, 0.00831904635, 0.00802754331, 0.0069848597, 0.0242769644, -0.0285971891, 0.00225541089, 0.0106884418, -0.0245310962, 0.00289821229, 0.0038717573, -0.0145601993, 0.0215114243, -0.00870024227, 0.00107258139, 0.0237986017, 0.000160349984, 0.00630842336, -0.0145004038, 0.00774351461, 0.0167576838, -0.00968686771, 0.00236379, -0.0128934, 0.000540027919, 0.0384783931, 0.015786007, -0.0139398212, -0.00418942096, 0.0137454858, 0.00748564675, 0.0141864782, 0.0373422764, -0.00335975853, -0.00390165509, 0.013947296, 0.0330071039, 0.00617388356, 0.0115779, 0.0086927684, -0.00176490098, 0.000677370699, -0.00117628917, -0.0324390493, 0.00757534, -0.000149021551, 0.0304359, 0.00181909068, -0.00559461489, 0.000784815697, 0.00102212897, -0.0243965555, 0.00772109162, 0.0143359667, 0.0019022437, -0.0138501283, 0.0118170818, -0.00557219144, -0.00226849108, -0.00388296903, -0.0262651648, -0.00543765165, 0.00982888229, 0.0104044136, 0.0169071723, 0.00680547301, -0.0400629714, -0.000995968468, -0.00359894056, 0.00546007464, -0.00885720551, -0.00113517977, -0.0102399765, 0.0143060684, 0.00250954158, 0.00288513186, -0.0299724843, 0.00112770544, 0.00130615756, -0.0142462729, 0.000146569, 0.0124823069, -0.000775472668, -0.0183123667, 0.00528068841, 0.018970117, -0.00618135789, 0.00787805486, -0.0156813655, 0.0180133879, 8.64231552e-05, -0.00432396075, 0.0347710736, -0.00643548882, 0.0096943425, 0.00752301887, 0.0127439117, -0.00305143814, 0.0124000879, -0.00681668473, 0.0182376225, 0.000355736382, -0.00684658252, 0.00163036119, -0.00862549804, -0.00682042213, -0.0184170082, -0.0233501345, 0.00180974754, -0.00718293199, 0.00727636274, 0.0168623254, 0.0122655481, 0.0144107109, 0.00323269307, 0.00304583227, -0.00498918537, -0.00958222616, -0.00216384907, 0.00220682705, 0.013192378, 0.0131400572, 0.0226026922, 0.00774351461, -0.0118395053, -0.0146797905, 0.00409599, -0.0103670415, 0.000626451103, -0.0050003971, -0.0262950622, 0.00013745953, 0.00471636839, -0.000387736334, -0.0181180313, 0.00094131165, 0.0032980945, 0.0218552481, -0.0230661072, 0.00966444425, -0.00821440388, 0.0241723228, 0.012018892, -0.0218851455, -0.00738847908, -0.0179087464, 0.00766877038, -0.0269528124, 0.0229764134, 0.0183572117, 0.0298229959, -0.0168473758, 0.00633458374, -0.0101801809, 0.0163092166, 0.00179666735, 0.00815460831, 0.0121384822, -0.0230810549, 0.0107033914, -0.00208723592, 0.0317514, 0.0240078848, 0.00750059541, -0.0121982777, -0.0116451699, 0.00112396816, -0.00334480964, -0.0102549251, -0.00133325241, 0.00489949202, -0.0172210988, 0.0168922227, 0.00228904583, 0.0159205459, 0.00815460831, 0.0118619287, -0.00726515101, -0.00188168907, 0.00823682733, -0.0126691675, 0.0267734267, 0.00100250856, -0.019224247, 0.0111144846, -0.000519006106, -0.00180320744, -0.006286, 0.00201062299, 0.00512746256, 0.00825925078, -0.00623367867, 0.00697738538, -0.0139398212, -0.0154421832, -0.00902164355, -0.00294305873, -0.0179984402, -0.0127439117, 0.0152104758, 0.0103520928, -0.00862549804, -0.0249496643, -0.00457061687, -0.0275358185, 0.0154421832, -0.0103221945, -0.0115779, -0.0119740451, -0.00704091787, -0.00925335102, 0.0208387244, 0.0324091502, 0.00492939, 0.0162793193, -0.00299164257, -0.0147246374, -0.0343824029, -0.00846106093, -0.00377085246, -0.0201062299, -0.00078247994, 0.0163391158, -0.019014962, -0.0170417111, -0.00226101652, -0.0322895609, -0.0172061492, -0.00754917925, -0.000695122464, -0.0130129913, -0.0119441468, -0.0191495027, 0.0152777452, 0.00714929728, -0.0128037073, -0.0057665268, 0.0252486411, 0.00381196197, 0.00692132674, 0.00515736034, -0.00790047832, -0.0191345531, 0.00935799256, -0.00200128, -0.00805744063, 0.00244787754, 0.00503776921, 0.012145957, 0.0095149558, 0.0196727123, 0.00578895, -0.00303835794, 0.0114508346, 0.00562451221, -0.00231146906, -0.00794532429, -0.0139323473, -0.00620378135, -0.0210330598, 0.00771361683, -0.00617014617, -0.00259176036, 0.0188505258, -0.00953737926, -0.0137081137, 0.00980645884, -0.0122580733, -0.0257120561, 0.00981393363, 0.00608419, -0.0199417938, 0.00470141973, 0.0100232176, 0.00352793327, 0.00776593806, -0.00862549804, 0.00262352661, 0.0278198477, 0.00659618899, 0.0166978873, 0.0109649962, 0.0258316472, -0.0314524211, -0.0120338406, -0.0023469727, -0.0227222834, 0.0132446988, 0.0171762519, -0.00778836152, 0.00030224747, -0.0109874196, -0.00474252924, -0.02261764, 0.017460281, 0.0771361738, 0.0137604354, 0.00021430607, -0.00495928759, 0.00707455259, -0.0117348628, -0.00527321408, 0.0492116809, 0.00213581976, 0.00131269766, -0.00200875453, 0.000144933962, -0.0124524087, 0.00505271833, -0.00326072238, -0.0207639802, 0.0271919947, -0.00714182295, -0.00384933408, -0.0127588604, -0.00202183472, -0.0148591772, -0.00321961287, -0.017460281, -0.00415204884, -0.00682042213, -0.00668961927, 0.00433143508, 0.0113835642, 0.0177891552, -0.00144443463, -0.00802754331, -0.00215450581, -0.000438188756, -0.0198371504, 0.00813218579, -0.0307946727, 0.0219897889, 0.0152403731, -0.00685405685, 0.00724272756, -0.0024665636, 0.0218851455, -0.0112863965, 0.0186860878, -0.00241797976, 0.0145078786, -0.0208237767, 0.0182824675, 0.00473879185, 0.0151506802, -0.0163989104, 0.0115330536, -0.030151872, 0.00854327902, 0.0021713234, 0.0371329933, -0.00703718048, -4.5372155e-05, -0.01130882, 0.00806491543, 0.00759776309, 0.0024123739, -0.00433143508, -0.0298080463, -0.014074361, -0.013192378, 0.00603560638, -0.00911133643, 0.0112714479, -0.00567683345, -0.0139996167, 0.0100755384, -0.00482101087, 0.0115255788, 0.00531058619, -0.0173107926, 0.0235295221, -0.00839379057, -0.0260708295, -0.014029515, 0.00973171461, -0.0267883763, -0.0172061492, 0.00480979914, -0.0129531957, -0.0124673573, 0.01277381, -0.002827205, 0.00844611134, -0.0034064739, 0.0243666582, -0.0252785403, 0.00418568356, -0.00221617, 0.0330370031, -0.0236042663, 0.0210031625, 0.0193737354, -0.00512746256, 0.0136258956, 0.00840873923, 0.00220308965, -0.0198521, -0.00466031, 0.00556097971, 0.0129905678, 0.018342264, 0.00962707214, 0.00429780036, 0.00219374662, 0.00902164355, 0.0167277865, 0.0276255123, 0.0101577574, -0.00376150943, 0.0188804232, 0.0103371441, 0.0376412533, 0.00536290696, 0.0124150366, -0.00215076865, -0.00729878573, -0.00506766699, 0.00113517977, 0.00253943936, -0.00941031333, -0.00379514438, 0.0175350253, 0.00602813205, 0.0132671222, -0.0208237767, 0.0295838136, -0.00617388356, 0.0187458824, 0.0369536057, -0.0271471478, 0.00124729634, -0.00890952628, 0.00473879185, 0.000660553225, 0.016503552, 0.0216908101, 0.0162344724, -0.00144350028, -0.0195381735, -0.000836669584, -0.00337657612, -0.0147171626, 0.000625516812, 0.00461920071, -0.000153926652, -0.0107557122, -0.0176546164, 0.000538159336, 0.00843863748, -0.00566935912, -0.00626731385, 0.00381009327, 0.0133418664, -0.000430480752, -0.00669709407, 0.0215263739, -0.00435759546, -0.0124673573, 0.0174453314, -0.0136782164, -0.016040137, 0.00950748101, 0.0101502826, 0.019388685, -0.0025880232, 0.00346626923, 0.0162643716, -0.024710482, -0.00411841366, 0.00261792098, -0.01666799, -0.0143359667, -0.00610287627, -0.00412962539, 0.0142089007, 0.014866651, 0.0452352799, -0.0109649962, -0.00670830533, -0.0022255131, -0.00701849442, -0.00879741, 0.0239480902, -0.0146274697, -0.00315234298, -0.00559835183, -0.00415952317, 0.00890205242, 0.00894689839, 0.00309441611, 0.0237388052, -0.0127364378, -0.0168174785, 0.0155617734, 0.019642815, -0.0126542188, 0.00365313026, 0.0154272337, 0.0346215852, -0.00442486536, -0.010135334, -0.00976908673, 0.0192092974, -0.00610661367]
01 Feb, 2025
DevOps Prerequisites [2025] - Things to Learn Before DevOps 01 Feb, 2025 In the rapidly evolving world of technology, DevOps facilitates the collaboration of development and operations teams, enabling companies to produce software more quickly and consistently. To help teams remain adaptable and swiftly satisfy customer demands, DevOps emphasizes collaboration, automation, and process improvement.DevOps PrerequisitesThis post will outline the fundamental abilities and information required to study DevOps in 2025. Comprehending these crucial ideas will prepare you to start your DevOps adventure and establish a solid career in this expanding industry.Table of ContentWhat is DevOps?Who is a DevOps Engineer?Prerequisites For DevOps1. Strong Understanding of Operating Systems and Networking2. Version Control System (VCS)3. Programming and Scripting4. Cloud Computing Fundamentals5. Continuous Integration and Continuous Deployment (CI/CD)6. Containerization and Orchestration7. Security Practices in DevOps8. Collaboration and Communication ToolsWhat is DevOps?DevOps is a method of working that combines two teams: operations (who ensures that the program functions properly) and development (who creates the product). It facilitates their tight collaboration to produce software more quickly and with fewer issues. To complete tasks more quickly, DevOps emphasizes collaboration, communication, and responsibility sharing in addition to tools and systems.DevOps's core concept is to gradually improve things through automation and frequent feedback. It includes techniques like Continuous Deployment, Continuous Integration, and maintaining organization with tools like code and system monitoring. DevOps lets companies swiftly deliver the software users require in today's rapidly evolving environment while lowering errors and enhancing quality.To learn about DevOps in-depth, read this article: DevOps TutorialWho is a DevOps Engineer?A DevOps Engineer implements DevOps principles and practices within a company. They are the link between development and operations teams, making sure to communicate and collaborate easily. Automating repetitive tasks, streamlining workflows, and then creating systems that are reliable and scalable to the company's goals are DevOps Engineers' core tasks.Moreover, a DevOps Engineer should also possess some technical knowledge. They should understand development workflows, infrastructure management, and tools such as version control systems and CI/CD pipelines, cloud platforms etc. Additionally, they mentor the team by leading the way for a culture of collaboration and continuous improvement.Prerequisites For DevOps1. Strong Understanding of Operating Systems and NetworkingDevOps relies heavily on operating systems, particularly Linux. A large portion of your work as a DevOps specialist will entail server configuration, system process management, and system-level problem handling. Because it offers the reliability and adaptability required for large-scale applications, Linux is extensively utilized and is therefore a crucial skill to master. For automating processes and configuring systems, knowledge of the Linux file system, process management, and shell scripting are essential. Additionally, for certain use situations, having a rudimentary understanding of Windows systems can be beneficial.Networking is equally crucial because it guarantees that systems can interact efficiently. In order to manage cloud infrastructures and distributed applications, DevOps workers must be familiar with networking fundamentals including IP addresses, DNS, and HTTP/HTTPS protocols. To guarantee the safe and effective delivery of applications, concepts like firewalls, load balancers, and VPNs are also crucial. These abilities are essential for overseeing and preserving contemporary infrastructure.Key areas to focus on:Gain proficiency in Linux/Unix, particularly commands and shell scripting.Learn networking concepts like TCP/IP, DNS, HTTP/HTTPS, and load balancing.Explore system administration basics, such as managing processes and user permissions.2. Version Control System (VCS)In DevOps operations, version control is essential for controlling code changes and encouraging teamwork. Git and other tools facilitate change tracking, allowing engineers to collaborate on a project without interruption. For effective teamwork, it is essential to comprehend Git commands like cloning repositories, committing changes, and merging branches. GitLab and GitHub are two more systems that help with collaboration and interact with CI/CD pipelines to automate deployments.Beyond the fundamentals, it is essential to understand more complex Git techniques like branching and conflict resolution. Collaboration across teams runs well when team members are familiar with Git practices like Trunk-Based Development and Git Flow. With the help of these abilities, you may oversee big codebases while preserving consistency and lowering development faults.Key areas to focus on:Master Git commands: cloning, branching, merging, and resolving conflicts.Learn Git workflows, such as Git Flow and Trunk-Based Development.Explore Git platforms like GitHub, GitLab, and Bitbucket for collaboration.3. Programming and ScriptingIn DevOps workflows, programming and scripting are necessary for automation and tool integration. Python is popular because of its ease of use and large library, which make it perfect for jobs like log analysis and infrastructure automation. Likewise, Go is gaining popularity due to its dependability and performance in creating contemporary DevOps solutions. Learning a programming language will enable you to create unique tools and scripts that are tailored to the requirements of your company.Automating repetitious activities requires scripting just as much. Shell scripting, such as PowerShell or Bash, is especially helpful for activities like application deployment, system command execution, and server management. You can create reliable automation workflows and increase productivity across the development and deployment lifecycle by combining your programming and scripting abilities.Key areas to focus on:Learn programming languages like Python or Go for tool development.Practice shell scripting (Bash, PowerShell) for automation tasks.Understand key programming concepts: loops, conditionals, and file handling.4. Cloud Computing FundamentalsA key component of contemporary DevOps procedures, cloud computing has revolutionized how companies function. Scalable infrastructure is provided by cloud platforms like AWS, Azure, and Google Cloud, allowing businesses to effectively deploy apps. DevOps engineers need to understand cloud services such as serverless computing, storage, and virtual machines. With this understanding, you may create and oversee scalable, reasonably priced solutions.It is equally critical to comprehend cloud-native technologies like containerization, auto-healing, and elastic scalability. Understanding how to integrate and manage hybrid or multi-cloud setups is essential for many enterprises. Obtaining certifications from cloud providers can help increase your knowledge and credibility.Key areas to focus on:Explore cloud services: virtual machines (EC2), storage (S3), and serverless computing.Learn cloud-native concepts like scalability and auto-healing.Get hands-on experience with AWS, Azure, or Google Cloud.5. Continuous Integration and Continuous Deployment (CI/CD)The foundation of DevOps is CI/CD, which helps teams produce software more quickly and consistently. The goal of continuous integration is to automatically test and integrate code changes to make sure the application is not broken. By automating the distribution of tested code to production settings, continuous deployment goes one step further. Popular options for creating and overseeing CI/CD pipelines include Jenkins, GitHub Actions, and GitLab CI.A well-thought-out CI/CD pipeline lowers errors, expedites releases, and requires less human interaction. Building and maintaining pipelines, integrating them with testing tools, and keeping an eye on their performance are all skills that a DevOps engineer must possess.Key areas to focus on:Learn to set up CI/CD pipelines using tools like Jenkins, GitHub Actions, and GitLab CI.Understand pipeline stages: build, test, and deploy.Integrate CI/CD with testing frameworks for automated quality assurance.6. Containerization and OrchestrationApplication deployment has been transformed by containerization, which makes it lightweight, uniform, and portable. You may package apps and their dependencies together using Docker, the industry-leading solution for container creation and management. However, Kubernetes is essential for large-scale settings because it simplifies the deployment, scaling, and maintenance of containerized applications.A DevOps engineer needs to be able to install Kubernetes clusters, manage container networking, and create Docker images. You can ensure that your applications are scalable, reliable, and easy to manage in a range of environments by mastering these tools.Key areas to focus on:Learn Docker: building, running, and managing containers.Understand Kubernetes basics: pods, deployments, and services.Practice container networking and scaling applications.7. Security Practices in DevOpsSecurity, often called DevSecOps, is an important part of DevOps. Instead of thinking about security only at the end, this approach makes sure security is included at every step of creating software. DevOps engineers need to know simple ways to keep systems safe, like protecting SSH keys (special passwords for servers), encrypting important data so no one can read it without permission, and using firewalls to block unwanted access.It’s also very important to check for security problems automatically during the development process. Trivy and OWASP ZAP are two examples of tools that can identify problems early and solve them before they become more serious. You can prevent attacks on your apps and systems and lower the likelihood of data breaches or system failures by integrating security into everything you do.Key areas to focus on:Learn security basics: encryption, SSH, and firewalls.Use vulnerability scanning tools like OWASP ZAP and Trivy.Integrate automated security checks into CI/CD pipelines.8. Collaboration and Communication ToolsCollaboration is just as important to DevOps as technology. While Slack and Microsoft Teams provide real-time communication, Jira and Trello are tools that assist teams manage projects and monitor progress. By keeping everyone in agreement, these tools minimize miscommunications and boost productivity.Another essential component of collaboration is documentation. Teams may share knowledge, record procedures, and keep decisions in one place with the help of tools like Confluence and Notion. Good teamwork and communication abilities simplify procedures and promote a positive DevOps culture.Key areas to focus on:Use project management tools like Jira or Trello.Communicate effectively using Slack or Microsoft Teams.Document workflows and decisions using Confluence or Notion.ConclusionDevOps offers endless opportunities to improve the way businesses create and deliver software. By building a strong foundation in the essential skills and staying open to learning, you can grow a successful career in this exciting field. As tools and practices continue to evolve, staying adaptable will help you drive innovation, improve processes, and contribute to the success of any organization you work with.FAQs - DevOps PrerequisitesDo I need programming skills to start with DevOps?Yes, DevOps requires the ability to program and write scripts. Programming skills are not necessary, but knowing a language like Python or Go will help you automate processes, integrate tools, and effectively manage workflows.Is knowledge of cloud computing necessary for DevOps?Indeed, a key component of contemporary DevOps is cloud computing. Applications can be deployed and managed with the use of scalable infrastructure and tools from platforms like AWS, Azure, or Google Cloud. It is strongly advised to have an understanding of the fundamental cloud services and ideas, such as storage, serverless computing, and virtual machines.Can I learn DevOps without prior IT experience?Learning DevOps does not require prior IT experience, though it might be helpful. Novices might concentrate on fundamental subjects like version control, operating systems, and networking fundamentals. The abilities necessary to succeed in the DevOps industry can be progressively developed with commitment and ongoing education. Boost your DevOps skills with our DevOps Engineering - Planning to Production course. Master DevOps principles, implement CI/CD pipelines, and gain hands-on experience. Take the Three 90 Challenge: Complete 90% in 90 days for a 90% refund. Start your journey to becoming a certified DevOps expert today!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps
https://www.geeksforgeeks.org/devops-prerequisites?ref=asr9
Languages
DevOps Prerequisites [2025] - Things to Learn Before DevOps
Languages, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Top 10 Fastest Programming Languages, Top 7 Database You Must Know For Software Development Projects, 7 VS Code Tricks That You Must Know, 8 DevOps Best Practices That You Must Know, 5 Most Difficult Programming Languages of the World, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, Top Data Science Trends You Must Know in 2024, 7 Myths About Full Stack Development That You Must Know, Introduction to Programming Languages, Top 10 Programming Languages of 2015, Top 5 Features of Java 17 That You Must Know, Top 7 Web Development Myths That You Must Know, Top 10 DevOps Programming Languages You Must Know, Top 10 Flutter Packages That You Must Know, Top 10 Python Developer Skills That You Must Know in 2024, Top 10 Programming Languages for Blockchain Development, Top 10 Advance Python Concepts That You Must Know, Top 10 Backend Technologies You Must Know
GeeksforGeeks
[-0.0454710051, -0.0116230473, -0.0156014049, 0.0315999389, 0.000818630564, 0.00264160149, 0.00366633036, 0.00449604122, -0.00905590691, 0.00021961637, 0.0181118138, -0.0484494567, 0.0204378404, -0.0269620642, -0.0282669105, 0.0365072899, 0.00106461858, -0.00464496389, -0.0116372304, -0.0251182634, 0.0408756807, -0.0194166582, -0.0335288383, -0.000561118708, -0.0481374264, 0.0159276165, 0.0101125473, 0.0251182634, -0.0575266369, 0.00695680827, 0.0410742462, -0.00312559982, -0.0154595748, -0.0277846847, 0.0130839059, -0.026068531, -0.015487941, -0.0147504192, -0.0335572064, -0.00304050115, 0.0014697233, -0.000573528931, 0.0365356542, -0.0118712513, -0.009062998, -0.0058186152, 0.000161221906, -0.0411877111, -0.00383298169, -0.0224518403, -0.0202534609, -0.0392588079, 0.0899775624, 0.0208491515, 0.00610936852, -0.0100558149, 0.00891407579, -0.0570727773, 0.0172608271, 6.86993735e-05, 0.00120201742, 0.0229340661, -0.0485912859, -0.0338125, 0.0108429771, -0.0109706242, -0.0262954589, 0.0238701496, -0.0368193164, -0.0206789542, -0.0335004739, -0.0244942065, 0.00404572813, 0.00385780213, -0.00298908749, -0.0182110947, 0.000877579034, 0.0206789542, -0.000247760967, 0.00015723292, -0.00289157871, 0.00648167497, -0.0115095824, -0.00897080824, 0.0087793367, 0.00312205404, 0.0317134038, -0.0609305799, 0.0429747812, -0.0048364359, -0.00597108342, -0.00214342028, 0.0288200509, -0.00313623715, -0.0349471495, 0.0172750112, 0.0140838139, -0.0115095824, -0.0175870396, 0.0177714191, -0.0107295122, 0.0133037437, 0.0322523601, -0.0156297721, 0.00726883672, -0.0273166429, -0.00976506155, 0.02543029, -0.00532220677, 0.0226787701, 0.023288643, -0.0274017416, 0.00787871, 0.021274643, -0.0142752863, -0.0152184619, 0.000409093656, -0.0651287735, 0.0132966526, 0.00632566074, 0.0353442729, 0.0268911496, -0.00609873142, 0.0143603841, -0.0621219613, 0.0197712351, 0.00594626274, -0.00448894966, 0.0124456668, 0.0110557228, 0.00967287179, 0.0146936877, -0.0539241284, 0.0246502198, 0.0285505727, -0.0296426695, 0.0453291759, 0.0490735099, -0.00410955213, 0.0198705178, -0.00645685429, -0.0278130509, -0.00267705927, 0.00701708673, 0.0122683775, 0.0276286714, 0.00230829883, 0.0634268075, -0.0227496848, 0.0324509218, -0.0506903827, 0.00864459667, 0.00546403788, 0.0194450244, 0.0310609806, 0.00107082375, -0.0259976145, 0.0486763865, -0.02015418, 0.00133675674, 0.0067334245, -0.0447618514, -0.0156439543, 0.0190620814, 0.0058824392, -0.00436130213, 0.000119780678, -0.00613418873, -0.0295575708, 0.0422939919, -0.0321388952, -0.0236148536, 0.015232645, 0.00139348919, -0.0156723205, -0.0085382238, 0.00964450557, -0.013977441, 0.0277563184, -0.0219979808, -0.0346634872, -0.005226471, -0.00220547151, -0.00687525561, 0.0546049178, 0.00759504782, 0.0304085575, 0.00113553414, -0.0415281057, -0.0114386668, 0.0161545463, -0.0154737579, 0.0321388952, 0.045073878, 0.0025813235, -0.0236574039, -0.00407054834, 0.0253877416, -0.00205654884, 0.00233134627, -0.0372164436, -0.0314581059, -0.0180976298, 0.0426627509, -0.00398190413, 0.0157857854, -0.012722237, 0.0167644192, 0.0502081588, -0.0254444741, -0.0318836, 0.0221114457, 0.0106231384, -0.0152042788, 0.0152042788, 0.00974378642, -0.0319119655, -0.0100558149, -0.0264798403, -0.0181685463, -0.024806235, 0.0271606278, 0.0162254609, -0.0127931526, -0.0158141516, -0.00899208244, -0.0109422579, -0.00798508339, -0.00792125892, 0.0116230473, 0.0527327508, 0.02845129, 0.0057654283, -0.0198705178, 0.00663768873, 2.34492e-05, 0.0037514288, -0.00716955494, -0.0483076237, 0.0211611781, 0.0191046298, 0.0158850681, -0.0351740792, -0.028706586, -0.0195726715, 0.0155872218, 0.0119067086, 0.10217502, 0.0134172086, 0.0417834, 0.0304936562, -0.00141919602, 0.0201683622, 0.0164382085, 0.00207605073, 0.000638239319, -0.000121110344, -0.0127789695, -0.0010486627, -0.00591789652, -0.00817655493, 0.00528674899, -0.00123481581, 0.018381292, 0.00573706208, -0.00110007636, 0.0327345841, 0.0223525595, -0.0069248965, -0.0320537947, 0.0666605532, -0.00835384335, -0.00568742119, 0.0267635025, 0.00130927702, -0.0459815972, 0.0127080539, -0.0139278, 0.0179132503, 0.0227355026, 0.0355428383, -0.064561449, 0.0485061891, 0.00401736191, -0.0148071516, -0.00446058344, 0.000562005152, -0.036904417, -0.0182394609, 0.00155127607, -0.0250047985, 0.00156900496, 0.0185514893, 0.0263521913, 0.0561083257, 0.0277988669, -0.0107862446, 0.0240828972, -0.0245083887, -0.0059533543, -0.00341103459, -0.0210618973, 0.0311460774, 0.0240828972, -0.0173884761, 0.0119918073, -0.0230758972, 0.00115946808, 0.0318836, -0.033358641, 0.0161545463, -0.0345783867, 0.0061448263, -0.0412160754, 0.00977924466, 0.0633133426, 0.0418685, -0.0106869629, -0.0346351191, -0.0143603841, 0.000289423799, -0.0202109106, -0.0504350886, 0.00810563937, 0.0462368913, -0.0221539959, -0.0416415706, 0.0250331648, -0.0272882767, -0.0160978138, -0.00136866875, -0.0256004874, -0.00481870677, -0.00276038493, 0.0357130356, -0.0318268687, -0.0346067548, 0.0205796715, 0.0421237946, 0.00557041075, 0.00591435097, -0.0620652288, -0.0384078249, -0.0158708841, 0.0277988669, -0.0258274172, -0.0119563499, 0.00785034336, 0.00369469635, 0.0160127152, 0.00138639763, -0.00529738609, -0.00801344868, -0.0110982722, 0.00704545295, 0.00508464, -0.0169487987, -0.00807018112, -0.0184522085, 0.0278556, 0.0312595442, -0.0456695668, -0.0303234588, 0.0157716032, 0.00387198525, 0.00397835858, -0.00314510148, -0.0330466144, 0.00570515031, -0.00985725131, 0.0039535379, 0.0291888118, 0.0395708382, -0.011835793, -0.0363087244, -0.00582570676, -0.0275010224, 0.0191046298, -0.0397410356, 0.0219412483, -0.00447122101, 0.0332735442, -0.0162254609, 0.0263947416, 0.0270755291, -0.0177430529, 0.019388292, -0.0196152218, -0.00780779403, -0.0165800396, -0.0508038476, 0.0160978138, -0.0131548215, 0.0073893927, -0.0180125311, -0.0158567019, 0.0110982722, -0.00663414318, 0.0378405, -0.0165233072, 0.0121832797, 0.0283945575, 0.0119776241, 0.05488858, -0.000477793044, -0.0355712026, 0.0132399201, -0.0112684695, 0.0255721211, -0.00373015413, 0.00585761853, 0.0208917, -0.0305220224, 0.022281643, 0.0128002437, 0.0320254304, 0.0110628149, 0.04030836, -0.00720855827, 0.023288643, -0.0297561344, 0.00198031473, 0.0221823622, -0.000106428619, -0.0081694629, 0.00390744302, 0.000495078682, 0.033869233, 0.0403367244, 0.0171331801, -0.000200890252, -0.0162538271, 0.0485629216, -0.00276747649, 0.0445916541, -0.0577252, 0.0472013429, -0.0144242086, 0.0508889481, 0.0299830642, -0.0317417681, -0.0158425178, -0.00821201224, -0.00637530163, -0.0616113693, -0.000692755566, -0.0634835362, 0.00151847769, -0.00721565, -0.0306922197, -0.0257990509, 0.0130129904, -0.0399679653, 0.0446200185, 0.00950267445, -0.0210760795, 0.0099707162, 0.00105575414, 0.0147787854, -0.0069142594, -0.0088006109, 0.00720855827, -0.00276747649, 0.0239127, 0.0283803754, 0.00936084334, -0.080446519, -0.0339543298, -0.0118499761, 0.0171331801, 0.0372164436, -0.0327629521, 0.074546352, 0.042549286, 0.0209342502, 0.0331033468, -0.0107082371, -0.000665275846, -0.0366774872, -0.0348053165, 0.0314297415, 0.0292455442, 0.0184096582, -0.0646181852, 0.00469460478, 0.0394857377, 0.0145376734, 0.00822619535, 0.0345783867, 0.0107649695, -0.019132996, -0.0161970947, -0.0296143033, -0.0113110188, 0.0232177284, -0.0232744608, -0.0177572351, -0.0113890255, 0.015487941, -0.00645685429, -0.0217426866, 0.0471162423, -0.000181166892, 0.0128002437, -0.000276127132, 0.00150872685, 0.00475488277, -0.00279407, 0.0230617132, 0.0126938708, -0.025061531, 0.0169204324, 0.0095806811, 0.060817115, 0.0126938708, 0.0287916847, -0.0154453916, 0.0382092595, -0.00396772102, -0.00242530927, 0.0212037284, 0.00936084334, 0.015743237, -0.0175161231, 0.0169204324, -0.0170764476, 0.00145642669, -0.0101763709, -0.0013137093, 0.000329978589, -0.00283307349, 0.000616078207, -0.00270542549, -0.00631856918, 0.00852404069, -0.0168920662, -0.00813400559, 0.0144525748, 0.0147504192, 0.00507754833, -0.0284087416, 0.0121478215, -0.0476552024, 0.000660843623, -0.00781488605, 0.00140501291, -0.00146883691, 0.00941757578, 0.0439675972, 0.00538957631, 0.00233134627, 0.0107224202, 0.00846730825, 0.0207356866, -0.0227071363, -0.0167218708, 0.020778235, -0.0236432198, 0.00242530927, -0.0120627228, -0.020522939, -0.0113677513, 0.0202250946, -0.00040089406, 0.00736102695, -0.0145234903, 0.0420386977, 0.00442512566, -0.00961613934, -0.00649585808, 0.0019696774, -0.0198279675, -0.00880770292, -0.00217533228, 0.00398545, 0.0336423032, 0.0283661913, -0.0378121324, -0.00813400559, -0.0283378251, 0.0145234903, 0.0146653214, 0.00537184766, -0.0121620046, 0.0136512294, -0.00953813177, -0.0146511383, -0.0174026582, 0.00497826654, -0.0119492579, 0.0166651383, 0.0132611943, -0.0217285026, -0.0130697228, 0.0132328281, 0.0346918516, 0.00615191786, -0.00126229553, 0.0107862446, -0.0187075026, 0.028465474, 0.0191613622, 0.026196178, 0.0178423338, -0.00848149136, 0.0069993576, -0.0104245758, -0.000453637447, 0.00636466406, 0.0120839979, -0.0269904304, 0.0063965763, 0.0099707162, 0.0161261801, 0.0147362361, -0.00218951539, -0.0020778235, 0.00707027316, -0.0156155881, 0.00631856918, -0.00796380825, 0.0335572064, 0.0203243755, 0.000994589645, 0.00948849134, 0.0393722728, 0.0241254456, -0.0192180946, -0.0136866877, -0.0258983336, -0.00701354071, -0.0180550814, -0.0117010539, -0.0245651212, -0.000255517341, 0.0158567019, -0.00784325227, -0.00910554733, 0.00412728079, -0.0115379486, -0.0150198983, 0.0231184456, 0.00975796953, 0.147504196, -0.009821794, 0.0329047814, -0.00162041874, 0.00158141518, 0.017501941, -0.0147929685, 0.0160694476, -0.00432939, 0.00130484486, 0.0444214568, -0.0113677513, -0.000137066323, 0.00062671554, -0.0247778688, 0.00163814751, 0.0220688973, -0.0120414486, -0.0147362361, 0.0173884761, 0.0122967437, 0.00144047069, -0.0199272502, 0.0321105272, 0.0112826526, -0.0173884761, 0.0414997377, 0.0250189807, -0.0365640223, 0.000109863591, 0.0414997377, -0.0268911496, -0.00214164751, 0.0211611781, 0.0157290529, -0.00563423475, 0.00431166124, -0.0255153887, -0.00311673526, 0.0256714039, 0.0332168117, 0.00119935803, -0.00529738609, -0.017118996, 0.00144313, -0.0143036516, 0.0287491344, -0.00679370295, 0.00957359, 0.0241112635, 0.00528320298, -0.0115024904, -0.0265649389, 0.0139207086, -0.0351173468, 0.014977349, -0.0166651383, 0.0191046298, -0.0136441384, -0.0414997377, 0.0128002437, 0.0270613469, 0.0094317589, 0.00843894202, 0.00240048906, -0.0148213347, 0.0171615463, 0.00512718922, 0.0274017416, -0.00653131539, -0.00890698377, 0.0180125311, 0.0351740792, 0.0228064172, 0.00967996288, -0.00207605073, -0.00737520959, 0.00370533369, -0.0279832482, -0.0281108953, -0.0135874059, -0.0368760489, -0.0446200185, -0.0209342502, 0.033869233, -0.0252600927, -0.0133108357, 0.0275152065, -0.0189769827, 0.000442335295, 0.00398545, 0.00882188603, -0.0220547132, 0.0218136013, -0.00414855545, 0.0232602768, 0.0147929685, 0.0348620489, -0.0112542864, 0.0209200662, 0.0218703337, 0.00850985758, -0.0242247283, 0.0306071211, 0.0112401033, 0.014232737, 0.0011736512, -0.000493305793, -0.0249338821, 0.00480452366, -0.00299263326, 0.00741775893, 0.0303518251, 0.00915518869, 0.00831129402, 0.0106373215, 0.0138214268, 0.0371029787, 0.0338975973, 0.00936084334, -0.0111195473, 0.0173033774, -0.0191046298, -0.0427478515, -0.00710218539, 0.00538603077, -0.0103891175, 0.0196719542, 0.0157006867, 0.0675115362, 0.0190195311, -0.0287207682, 0.0217143204, -0.000477793044, -0.0390886106, -0.0226504039, 0.0213739257, 0.00216469495, 0.00570869585, -0.0148638841, -0.0232177284, 0.000291196688, -0.00826165359, 0.0594555363, 0.0318268687, 0.00104334403, 0.0322807245, 0.00170729018, 0.0341812596, -0.00402090745, 0.0280399807, 0.0199697986, -0.00246431283, -0.0235013906, -0.0219554324, 0.00138373824, -0.0505769178, 0.04558447, -0.00875806157, -0.0127009619, 0.0149631659, -0.0265649389, -0.0211044457, 0.00708091073, -0.0608738475, -0.0189202502, 0.00854531489, -0.0192464609, 0.00126761419, -0.0420103297, 0.0239552483, -0.00489316788, -0.0180125311, 0.0211895443, 0.0165658556, -0.0196719542, 0.0375284702, 0.00977215264, -0.00518746721, -0.0109706242, -0.0203101933, -0.0190195311, 0.0254444741, -0.00503145345, -0.00937502645, -0.0145093072, -0.00714828027, 0.0151191801, -0.00248204172, -0.00515555544, 0.0352308117, -0.00410246057, 0.0232744608, 0.0169062503, -0.00587889319, 0.0178565178, 0.0341812596, -0.0123818424, -0.0130129904, -0.0173884761, 0.00755249849, -0.00816237181, 0.0038471648, -0.0173175596, -0.00796380825, 0.00282420893, 0.0232319105, 0.0176721364, -0.0268769674, -0.0287775, 0.0235155728, 0.0117365122, 0.0154312085, -0.016750237, 0.00583989, 0.00173211063, -0.00310255215, 0.0196861364, -0.00327629503, 0.0114812162, -0.0103111109, 0.0141689125, -0.0161970947, -0.0424358211, 0.0107366033, -0.0221681781, -0.00658804784, -0.0229482483, -0.00280648, 0.02442329, 0.0384645574, -0.0201116297, 0.0135661308, -0.00946721621, 0.00717310049, -0.0114173917, 0.00230652606, 0.0163956583, 0.00826165359, -0.0110699059, 0.0190478973, 0.0129420748, -0.0116655966, -0.0299830642, -0.00586471, 0.0231609959, 0.0168637, -0.000639568956, 0.00576188276, -0.0216717701, -0.00775106205, 0.00879352, 0.0307489522, -0.00263805571, 0.0213739257, -0.0208917, -0.0174310245, 0.00148390641, 0.0201825462, -0.0344081894, -0.0107578784, 0.0188493337, -0.0409324132, -0.00134296191, -0.00321069825, -0.00601008674, 0.0190904476, 0.00467687566, 0.0361668952, -0.00568742119, -0.033869233, 0.0122967437, 0.0250331648, -0.0242530946, 0.004531499, 0.0233595595, -0.0304936562, 0.0225653052, 0.0129846241, -0.00425492879, 0.0339259654, -0.00411309768, 0.0114812162, -0.0228773337, -0.0110273566, 0.015360293, -0.0154595748, -0.00786452647, 0.0252742767, -0.0109848073, -0.0148355179, -0.0192180946, -0.0058186152, -0.0266216714, 0.0214732066, -0.0261110794, -0.0165516734, 0.0255863052, -0.00953104068, 0.00790707581, -0.0245793052, -0.00309546059, -0.00429393211, 0.0118641593, 0.0323941894, -0.00210087118, -0.00637175562, -0.00824037846, -0.00668023806, 0.0206789542, -0.0232744608, 0.00692844251, -0.0106727798, -0.0311460774, -0.0345216542, 0.0176012218, 0.000153908753, 0.0167644192, 0.00555977365, 0.00392162614, 0.00221256283, 0.0236999523, -0.000353690964, 0.0261394456, -0.0459532291, 0.00968705397, 0.0124243917, 0.00208491506, -0.0267918687, 0.0248771496, 0.00219838, 0.0121974628, -0.00919773802, -0.0327913165, -0.0349755138, 0.0116726877, 0.000196679655, 0.00222851895, -0.00826165359, -0.00649585808, 0.0122329202, -9.29103553e-05, -0.0534135401, 0.0200407151, -0.0185940377, -0.018891884, 0.0241396297, -0.0143603841, 0.00510946, -0.0102827447, -0.0216150377, 0.0197712351, 0.00776524516, 0.0212179106, -0.00306000281, -0.0109777162, -0.0228915159, -0.0178565178, -0.00522292498, -0.00564841786, 0.0107507864, 0.0162963774, 0.0430031456, 0.00923319533, -0.0195868555, -0.01145285, -0.0023597125, -0.0378405, -0.0443647243, -0.0331600793, -0.0118499761, 0.0225227568, 0.00149720302, -0.00153354718, -0.0252884589, -0.0123251099, -0.0471162423, 0.000675026735, -0.00150429457, 0.0373299085, 0.00846021622, 0.0200265311, 0.0287775, -0.00532220677, 0.00148036063, -0.00790707581, -0.00576188276, -0.00650649518, -0.0150057152, 0.0040670028, -0.0321672596, 0.0100132655, -0.0144667579, -0.0166084059, -0.07931187, -0.00878642779, -0.00698162895, -0.0154737579, -0.0233595595, -0.0089495331, 0.0119492579, -0.000843450951, -0.00578315742, 0.00820492115, -0.00655968161, 0.0148071516, -0.0064710374, 0.0303801913, -0.0139278, -0.00346776703, -0.00565550942, -0.00853113178, 0.0234446581, 0.00397126703, 0.00249445206, 0.0164665747, 0.0256997701, -0.0200974476, -0.00914100558, 0.0218136013, 0.0111762797, -0.00237389561, 0.00829711091, 0.00766596338, -0.043683935, -0.0170906298, -0.0350606143, 0.00457050279, 0.00382589013, 0.0169629827, -0.00593562564, 0.0133604761, 0.0121974628, -0.0072404705, -0.00501017878, -0.0106869629, -0.00525129121, 0.0119492579, 0.00465560099, 0.0237708688, 0.00322842714, -0.0103749344, -0.0132682864, 0.00161864585, -0.0200548973, 0.0135874059, -0.00118872069, -0.00611291407, 0.000939630088, 0.00670505874, 0.0192606449, -0.0190478973, 0.00734684383, -0.00278875115, 0.0652989745, -0.004910897, 0.00336848525, -0.0261678118, -0.00241821795, -0.00980761088, 0.0251749959, -0.00986434333, 0.0150198983, -0.0130129904, 0.00862332247, -0.00320006092, 0.000448983628, 0.0197712351, -0.0341812596, -0.00268946961, 0.0140483566, -0.00560232298, 0.01145285, -0.00371597102, -0.0119138006, -0.00358832325, -0.00449958723, 0.00151847769, 0.0155163072, 0.0216717701, 0.016367292, -0.00565550942, -0.0330182463, -0.00473715411, 0.02442329, -0.0169062503, 0.00743194204, 0.00655613607, 0.0281392615, 0.0103891175, -0.00357768591, 0.010197646, -0.0156723205, -0.0190620814, -0.00846730825, -0.0277988669, -0.0112259202, 0.0219412483, -0.0163105596, -0.000285656424, -0.0202818271, 0.018381292, 0.0224376582, 0.00996362511, -0.0200123489, -0.0146369552, -0.0255153887, 0.00173565629, -0.0127364201, 0.0373015404, -0.00544985477, 0.014097997, 0.000711814093, 0.00711636851, -0.000433027657, 0.00022161087, 0.0140058072, -0.0235723052, -0.0124953073, 0.01145285, -0.0278272331, -0.0242247283, -0.0222532768, -0.000687880151, 0.023047531, 0.00318765081, -0.0155163072, 0.00989980064, -0.0129208006, 0.0175161231, -0.00255295727, -0.0162112787, 0.00803472381, -0.0218987, 0.00590725942, 0.0399963297, 0.0157290529, 0.00722983293, -0.00543567166, -0.00930411089, -0.00676179072, -0.00196081307, -0.00784325227, -0.0175444894, -0.0221256297, -0.0131831877, 0.010190554, 0.0180834476, 0.0080205407, -0.009949442, -0.00113021547, 0.000995476, -0.00127736502, 0.00275861216, -0.00217355951, 0.0110344486, 0.0195868555, -0.00609518541, 0.00441094302, -0.0129066175, 0.0219837986, 0.00588953029, -0.010821702, 0.0124173006, 0.02771377, 0.00135448563, 0.00777233671, -0.00576188276, 0.0236574039, 0.0189769827, 0.0124740331, 0.021529939, 0.0177714191, 0.0280967131, -0.0267776847, 0.0134101175, 0.0165658556, 0.00240403484, 0.0172040947, 0.00385071058, -0.0112968357, 0.0240687132, 0.0135874059, 0.00444994634, -0.00022559987, 0.0357981324, -0.00707027316, 0.018381292, -0.0154028423, -0.0019714504, -0.00391808, 0.0425776541, 0.0106869629, -0.00202463684, -0.0492437072, 0.00777942827, -0.00794962514, -0.012594589, -0.0156439543, 0.00634693541, -0.0257990509, 0.010318202, -0.00343940081, 0.0266074874, -0.0151759125, -0.00203527417, 0.0118499761, 0.00701708673, 0.0133604761, 0.00572287897, -0.000220059592, 0.00608809385, 0.0173033774, -0.000784502481, 0.0162254609, 0.0173884761, 0.0146653214, 0.0112968357, -0.027954882, -0.0128215188, -0.00476906588, -0.00107082375, -0.00429038657, 0.00163903402, -0.0212888271, -0.00704190694, 0.00557041075, -0.00973669533, 0.0187216867, -0.00547467498, 0.0285931211, 0.0122541944, 0.0259692483, 0.00423719967, 0.00658095628, -0.0228915159, 0.0271748118, 0.0018597584, -0.00913391355, 0.000651979179, -0.00829711091, -0.018395476, -0.0152751943, -0.00211682706, -0.013346293, -0.0262670927, 0.0107720615, -0.0214590244, 0.0060810023, 0.00269301538, -0.00682916073, 0.0182820112, -0.000234907522, 0.0201683622, -0.0102969278, 0.00465560099, -0.00504209055, -0.00991398375, 0.00289335148, -0.00376561191, -0.00742485048, 0.00169576635, 0.0178707, 0.000787605066, 0.00640012184, -0.00225333939, 0.0263238251, -0.017118996, 0.022026347, 0.0102756526, -0.0069887205, -0.012842793, 0.000453194225, -0.0220972635, 0.0142114619, 0.0132966526, -0.00302277226, 0.00491444254, 0.031486474, 0.00774397049, 0.0176012218, 0.0180408973, 0.0393439084, 0.0191188138, -0.0376135707, 0.0130342655, 0.0130058993, -0.0149631659, -0.000345712964, -0.0261394456, 0.0189344324, -0.0135377645, -0.00529029453, -0.0069993576, 0.0236290377, 0.0314013734, -0.004279749, -0.00597817497, -0.00134296191, 0.000154019552, 0.00499599567, -0.00304582, -0.0212462768, 0.00280470727, -0.00736102695, -0.020778235, 0.0354293734, -0.0224376582, 0.00393580925, 0.0159701668, 0.0152468281, 0.0192464609, -0.0202818271, -0.0286782198, -0.00519810477, -0.00206364039, 0.0154170254, 0.00750994915, -0.0303801913, -0.0116797797, -0.0236574039, -0.0149064334, 0.0140767228, 0.00324792904, 0.00493926322, 0.0357697681, 2.23688476e-05, -0.00318587781, -0.0193741079, -0.0203385595, 0.0100416318, 0.000799572037, -0.0187358689, -0.0125804059, -0.0102685615, 0.0339826979, 0.0261536278, -0.023799235, -0.0137576032, -0.00883606821, 0.00444640033, -0.0219412483, 0.000303163659, -0.00999908242, 0.0214448404, 0.00228525139, -0.00543567166, -0.00713409716, -0.0121620046, 0.0312879086, 0.0208633337, -0.0199839827, 0.00533639, -0.00293767382, 0.0103891175, 0.014232737, -0.0113748424, -0.00382943591, 0.0120343566, -0.0223667417, 0.00234021083, -0.0126016811, 0.00195372151, -0.00213101017, -0.0145376734, -0.0118145188, -0.0175870396, -0.00924737845, -0.00626538275, 0.00219306117, 0.0168495178, 0.00233489205, 0.00195372151, -0.0119138006, -0.00777942827, 0.000740623509, -0.00412373524, -0.014346201, -0.00669087563, -0.0188209675, -0.013970349, -0.0384361893, 0.000580620486, -0.00763759715, -0.00934666, -0.0261394456, 0.00439321389, 0.0118003357, -0.00736811804, -0.00233843783, 0.00760923093, 0.00253522838, 0.0106515046, -0.000128201893, 0.00110184925, -0.0168495178, 0.00755249849, 0.000352361298, 0.000839905231, 0.0150908139, -0.011332294, 0.0116868708, -0.0290469807, 0.0208491515, -0.00279761571, 0.00958777312, 0.011325202, 0.0234588403, 0.0205654893, 0.0272882767, 0.00526902, 0.0320537947, -0.02845129, 0.00503145345, -0.0357130356, 0.00271074427, -0.00417692168, -0.0266500376, 0.00371597102, -0.000495078682, -0.0211895443, -0.0123818424, 0.0347769521, 0.0303801913, 0.0048364359, 0.00651713274, 0.030720586, 0.0125236735, 0.0148638841, 0.0248771496, 0.0351457112, 0.00520165032, 0.0107507864, -0.00190585351, -0.0294441078, 0.0141263632, -0.0145944059, -0.0236715861, -0.0188209675, 0.0128002437, 0.00118783431, -0.0212037284, 0.0377270356, -0.00245367549, 0.015104997, -0.0283945575, 0.00111780525, 0.0459815972, -0.0258983336, 0.0102472864, -0.0214448404, 0.00939630065, -0.00879352, 0.0138214268, -2.75974799e-06, -0.0226929542, -0.0194308404, 0.00112844259, 0.00608454831, -0.0236999523, 0.0070525445, -0.0228489675, 0.0214732066, -0.0060810023, 0.00843894202, -0.0151191801, -0.0457546674, -0.0257706847, -0.00743194204, 0.00312382681, 0.00506336521, 0.0145802228, -0.00236857706, 0.0270755291, -0.015104997, 0.0123109268, 0.00883606821, 0.00290398882, -0.0254019238, -0.0190904476, 0.0250047985, 0.00407409435, 0.00202818261, -0.0133108357, 0.013601589, -0.0162254609, 0.00357059436, -0.0180267151, -0.0119776241, -0.0012029038, -0.00262741861, -0.0178565178, -0.034379825, -0.0141334552, -0.00796380825, 0.0203669257, -0.0179983489, 0.0176012218, 0.00711636851, -0.0312028099, 0.01145285, 0.00799926557, -0.0177430529, 0.000913036813, 0.0199556164, 0.0232460946, 0.0122896526, -0.000888216367, -0.0108926175, 0.00330643426, -0.0256997701, 0.000777854177, 0.0113819344, -0.0119067086, -0.0168637, -0.0166935045, -0.0171757285, 0.00623347051, -0.00183316518, -0.00689298473, -0.00346776703, -0.000456518406, 0.0184805747, 0.0112471953, 0.00605618209, -0.00586116454, -0.01814018, 0.0238843337, 0.00743194204, 0.00128002441, 0.000337734964, 0.009949442, 0.00838221, -0.0051236432, -0.00298199593, 0.0205513053, -0.00651713274, 0.0064604003, 0.0305787548, 0.0416415706, -0.00983597711, 0.0141972788, 0.00483998144, 0.0202818271, 0.0148922503, -0.00923319533, 0.00223915628, 0.000253079605, -0.00983597711, 0.01814018, -0.00626892829, 0.0106302304, -0.000946721644, -0.0111053642, 0.00307241315, -0.00520165032, 0.0197003204, -0.00505627366, 0.0299546979, 0.0169771649, 0.0018757144, 0.0205371231, 0.0107791526, 0.0078928927, 0.0202818271, -0.0152468281, -0.00364860147, 0.0140767228, 0.0275152065, -0.0146511383, -0.00608454831, 0.0169346165, 0.0183529258, 0.0125378566, 0.0206080377, -0.00704899849, -0.00509882299, -0.0063433894, 0.000779183814, -0.013225737, 0.0177005026, 0.0278272331, 0.0224802066, 0.00231539039, -0.0185231231, -0.00676179072, -0.00295717549, -0.000960904756, -0.0163531099, 0.000980406534, -0.00132346014, 0.0011736512, 0.0121265473, 0.00185089395, -0.00225865794, 0.0176579542, 0.0151475463, -0.0179274324, 0.00582216075, -0.00580088608, 0.00813400559, -0.00634693541, 0.0171899125, 0.0163247436, 0.00843894202, -0.0200265311, 0.00156634569, -0.00302277226, 0.0119492579, -0.00754540693, -0.00513428077, 0.000462280266, -0.0164665747, -0.00539666787, 0.0203669257, -0.0359683298, 0.0155872218, -0.0241821781, 0.00980051886, 0.00249445206, 0.000926333421, 0.00054604921, 0.010566406, -0.0199839827, -0.00521937944, 0.0265223887, 0.0116017722, 0.0172182787, 0.0114244837, 0.0170906298, -0.0174735747, -0.0056909672, 0.00878642779, -0.00743194204, 0.00186507707, -0.00609518541, -0.0238276012, -0.0106018642, 0.0347769521, 0.00517328409, 0.0168211516, 0.00571578741, -0.0320254304, 0.013098089, 0.0153744761, 0.00989271, -0.00772978738, -0.0135732228, -0.0240970794, -0.0181543622, -0.0372164436, 0.00926156156, 0.0257706847, 0.00681143161, -0.00594626274, -0.0213881079, 0.00502790743, -0.00838221, -0.020778235, -0.045215711, 0.00509173144, -0.00901335757, -0.0191897284, -0.0142752863, 0.0141760046, -0.0163105596, -0.00388262258, -0.00609518541, 0.0116443215, -0.0210477132, 0.00480806967, -0.00789998472, -0.0126016811, -0.0103536602, -0.00860204734, -0.0040670028, -0.0159418, 0.000748601509, 0.0233311933, -0.00223206473, -0.0104316669, -0.00462014368, -0.00365923881, -0.00543567166, 0.00991398375, -0.0106018642, 0.0171331801, 0.000817300868, -0.00372306257, 0.0124811241, -0.00776524516, -0.032848049, -0.00731138606, -0.000329535367, 0.0138214268, -0.0082829278, -0.015360293, -0.00959486421, 0.0199272502, 0.0100912731, -0.016367292, 0.00170640368, -0.0116797797, -0.00802763179, 0.0193457436, 0.0176579542, -0.0013447348, 0.00800635759, -0.00905590691, -0.0220830794, 0.0104316669, 0.00967287179, 0.028195994, -0.0235864874, -0.00683625229, 0.000714473426, -0.00577961141, 0.0053753932, 0.00992107578, 0.0098430682, 0.0223667417, 0.00429393211, -0.0152751943, 0.0153886592, -0.0125094904, -0.0159134343, -0.00269478816, 0.00354400114, -0.0021079625, 0.0109777162, 0.013225737, -0.0136441384, 0.00385780213, 0.00755249849, -0.0273875576, -0.00243062805, -0.0143816592, -0.0188067853, -0.000448540406, -0.0352875441, 0.00482225278, 0.00271074427, 0.0190762635, 7.1331e-06, -0.00627956586, -0.00580088608, -0.0224802066, -0.0143107437, 0.00839639269, -0.0521654263, -0.0331033468, 0.015743237, 0.0188777, -0.00591435097, 0.0306071211, 0.0124314837, -0.0041414639, -0.00104068464, -0.000263938535, 0.012218737, -0.0196010377, -0.00939630065, 0.0488182157, 0.0108075188, -0.0275719389, 0.0104742162, -0.00189698907, -0.00531511521, -0.0193599258, -0.029841233, -0.00981470197, 0.00571933342, 0.0156297721, 0.000667048735, -0.0143249268, -0.0116159553, -0.000558016181, 0.00686816406, -0.0185798556, -0.00823328737, -0.00475133723, -0.0182394609, 0.00768014649, -0.00262741861, -0.00882897712, 0.0437690318, 0.00694262516, -0.0116443215, -2.03189466e-05, -0.00312205404, 0.00403154502, 0.000720235344, 0.0122967437, 0.00610936852, 0.0179416165, 0.00668732962, -0.000276570354, 0.00546758343, -0.00847439934, -0.00298022293, 0.0252317283, -0.00450313278, 0.00586116454, 0.0182110947, -0.0100345407, -0.00583279831, 0.013346293, -0.00429747812, -0.0157574192, 0.0037514288, -0.00512009766, 0.0290327966, 0.00908427313, 0.0187216867, -0.00951685756, 0.000957359, -0.0118499761, -0.0049853581, 0.0229766145, 0.0102260122, -0.00488962233, 0.00615191786, 0.0106231384, 0.0151191801, 0.00629374897, -0.00672987895, 0.00898499135, -0.0112401033, 0.00973669533, 0.0295008384, 0.00397481257, 0.0132328281, 0.00845312513, 0.0125874979, 0.00343762781, -0.0114883073, -0.00342167192, -0.00255118427, -0.004279749, -0.00480806967, -0.0223241933, 0.0163814761, 0.0171615463, -0.00406345678, -0.0119350748, 0.015360293, 0.00970123708, -0.00967996288, 0.0288342331, -0.0106160473, -0.00471942499, -0.00907009, 0.00578670297, -0.00914809667, 0.00129863969, -0.0146936877, 0.00950976554, -0.00374433724, -0.00685398094, -0.0138781592, -0.00347308558, -0.00306354859, -0.0107224202, -0.00884316, 0.0160694476, -0.00469105877, -0.00860913936, -0.000571312848, -0.0198705178, 0.00496408343, -0.00185798551, 0.0146511383, -0.00754540693, -0.00736811804, 0.0190762635, -0.0229907986, 0.00280470727, 0.00674051605, -0.0081694629, -0.00340748881, -0.000713143789, 0.00968705397, 0.00750994915, -0.00210441672, 0.0118996175, -0.00798508339, -0.0150766307, -0.026692586, -0.00672633341, -0.00824747048, -0.00363087258, -0.0112471953, 0.0253168251, 0.0353442729, -0.0237141363, 0.0114953993, 0.0166509543, -0.0196577702, 0.00388262258, -0.00614837185, 0.00973669533, -0.00593917118, -0.0179274324, -0.0132611943, 0.0152468281, 0.0144525748, 0.0150340814, 0.00656322762, 0.0126300463, -0.0142965605, -0.0232319105, -0.0188209675, 0.00119403936, -0.00723337894, -0.0102898357, 0.00190585351, -0.00424074568, 0.0117719695, -0.0115095824, -0.00953104068, -0.00807018112, -0.0130129904, -0.00306709437, 0.0163105596, -0.0136725046, 0.00393580925, 0.0204094741, -0.0107933357, 0.0134384837, -0.00053807121, -0.000539844099, -0.00222497317, -0.0154028423, 0.00870842114, -0.00152202346, -0.00505627366, 0.0155730387, -0.0060810023, 0.000748601509, -0.00576188276, 0.0210618973, 0.0174452085, 0.00900626555, -0.0197145026, 0.00238807872, -0.00181720918, 0.0101692798, -0.0177288689, -0.000608543458, -0.00274797482, -0.00322842714, 0.0146936877, -0.019132996, 0.00501372432, 0.00572642498, 0.0166084059, 0.0121832797, -0.0128357019, -0.00516264699, 0.00113642053, -0.00111780525, 0.0377554, 0.0169062503, 0.0180834476, -0.0242814608, 0.00863041356, 0.000397569907, -0.0119421668, -0.0226787701, -0.0249055158, -0.0212888271, -0.0102331033, 0.0118428851, 0.00700644916, -0.00042261192, 0.0160978138, 0.0102260122, -0.0106231384, 0.0225794893, 0.0032372917, 0.0143816592, 0.00257245894, 0.032848049, 0.00202818261, -0.00186507707, -0.00302809104, 0.00192535529, -0.0116797797, -0.0147078708, -0.0147787854, 0.0107153291, 0.00559523143, 0.0264514741, -0.00390389701, -0.0268769674, -0.0105167655, -0.00108412036, -0.00323197292, 0.0151900956, 0.0030777317, -0.00450667879, -0.0081481887, -0.00683625229, -0.000320449326, 0.0063965763, -0.00605263608, 0.0108926175, 0.000196458044, 0.012970441, 0.00486125611, -0.00601008674, 0.00402799901, -0.0158992503, -0.00688943872, 0.00194662984, -0.00997780822, 0.00346244825, -0.0207215026, 0.0426060185, -0.00782197714, 0.00919773802, -0.0140199903, 0.00946721621, -0.00989271, -0.0299263317, 0.0106018642, 0.0133392019, -0.0224518403, 0.00140146713, -0.0111833708, -0.0166367721, -0.00135005347, 0.0053753932, -0.0204520244, -0.0118570682, -0.00291817193, -0.0296426695, -0.00705609, 0.00193067396, -0.000912150368, 0.00989271, -0.00287030404, 0.00553140743, 0.00115149014, 0.0255153887, 0.0107507864, -0.00237744139, -0.0111904629, -0.0125236735, 0.0167360529, 0.0138214268, 0.0130200824, -0.00938921, 0.00308659626, 0.0065986854, -0.0178423338, -0.00834675226, -0.000639125763, 0.00991398375, -0.0310609806, -0.0177288689, 0.00139880786, 0.0248629674, -0.00890698377, 0.00361668947, 0.0154737579, 0.00174806651, -0.00286321249, -0.0103891175, -0.00386843947, 0.00102118286, -0.00481870677, 0.0113039277, -0.0125662228, 0.00456695678, 0.0127718775, 0.00961613934, -0.00179150223, -0.0207924191, -0.00636111852, 0.0218845159, 0.00987852644, -0.0144029334, 0.0010788017, -0.00911263935, -0.00548176654, 0.000403996615, 0.0116655966, 5.91147e-05, -0.00512718922, 0.00346599403, 0.00794962514, 0.009062998, -0.000289202202, 0.00486125611, 0.00979342777, -0.00374433724, -0.00561296, -0.00641430495, -0.004531499, -0.0240119807, -0.020267643, 0.00405281968, 0.0105876811, 0.00537184766, 0.0150624476, -0.00644976273, -0.0196577702, -0.0155021241, 0.0057654283, -0.00772269582, 0.00695680827, 0.00203527417, -0.00922610424, -0.0196294039, -0.0106798708, -0.00757377315, -0.00408827746, 0.00548531208, -0.0186507702, -0.00432939, -0.034237992, -0.00787871, 0.0123747513, 0.000501727, 0.00891407579, 0.000351031631, 0.00952394865, -0.0101692798, 0.0109706242, 0.0153461099, -0.00512718922, 0.0291604456, 0.00141919602, -0.011204646, 0.00109032553, 0.0184947569, -0.00689653028, -0.0384929217, 0.00392517168, -0.0080205407, -0.0140128983, 0.00608809385, 0.00670505874, 0.0119776241, 0.00257600471, 0.00863750558, -0.0199839827, -0.00572997052, 0.00365214725, -0.020778235, -0.00361314369, 0.022281643, -0.00858786423, 0.00606681919, 0.00480806967, 0.0111550046, 0.0253310092, 0.00230298028, 0.0156723205, 0.0029394466, -0.00160889491, 0.0289760642, 0.0196152218, -0.011332294, -0.0192748271, -0.00292703649, 0.0023597125, -0.022026347, 0.00524419965, 0.0226645879, -0.00059923582, -0.0197570529, 0.00413437234, -0.00230298028, -0.005038545, 0.00632566074, -0.00570515031, 0.00300858915, 0.009949442, -0.00962323, -0.0182536449, -0.013594497, 0.00245899428, 0.0157290529, 0.00784325227, 0.00223206473, 0.0166367721, -0.015984349, -0.0152893774, -0.00512009766, -0.00372306257, -0.00183671096, 0.00760923093, 0.00052211521, -0.0332451761, -0.00153620658, 0.00156279991, 0.024806235, -0.0155588565, 0.00554913608, 0.0198279675, 0.0105876811, -0.0020139995, -0.0103891175, 0.0122258281, -0.00446058344, -0.00190230773, -0.00821201224, 0.00236680405, -0.0145518566, 0.00247672317, 0.00274442905, 0.01094935, 0.00547822053, -0.00749576604, 0.00844603311, 0.00321247126, 0.00972251222, -0.00810563937, 0.0116797797, 0.0237283185, 0.00273201894, -1.41276932e-05, 0.00814109668, 0.0213313755, -0.0017817514, 0.00224979362, 0.0146795046, 0.0166084059, -0.0158567019, -0.0122471033, -0.0167927854, 0.0139348917, -0.0210902635, -0.00416983, -0.00943885, -0.00524774566, -0.00363796414, -0.0165091231, 0.00720501272, 0.0228631496, 0.0176154058, 2.83661921e-05, 0.00164878485, 0.00386843947, -0.0117861526, -0.0154170254, -0.000956472533, 0.00410600612, -0.00850985758, -0.00885734335, -0.0190337151, 0.0137788774, -0.0198137853, -0.00609164, 0.00792835094, 0.000643114734, 0.0408756807, 0.00579024898, 0.0010327067, 0.0108146109, 0.00348195, -0.025557939, -0.0104742162, -0.00362023525, -0.00508464, 0.0165516734, 0.00130573125, -0.00546758343, 0.0112755615, -0.0139916241, 0.0146653214, 0.00103447959, 0.0157148708, -0.00152734213, 0.00870132912, 0.00904881489, 0.00744612515, 0.00738230115, -0.00711636851, -0.0114032086, 0.010318202, 0.0147787854, 0.00014094451, -0.00507045677, 0.0126442295, -0.01814018, -0.00770851271, 0.0104103927, -0.0133959344, -0.0154028423, -0.0138852503, -0.00250154361, -0.027458474, 0.0140767228, -0.00427265745, -0.00351740769, 0.0164665747, 0.0104103927, 0.0201683622, -0.0110982722, -0.00337203103, 0.0132044619, 0.02845129, 0.00637530163, 0.00458114, -0.00296958559, 0.0114741242, 0.00850985758, -0.00241467217, 0.0053753932, 0.00450313278, -0.00475488277, -0.0216717701, 0.00928992778, 0.0288200509, 0.00861623, 0.0241679959, -0.00598881207, 0.0182961933, -0.00143692491, 0.00238985172, 0.00721210428, 0.00422656257, -0.0214164741, 0.0152042788, 0.0119138006, 0.0256146714, -0.00762341404, 0.00731138606, -0.00275683915, -0.00662350561, 0.00520874187, -0.022026347, 0.0111975539, 0.00565905543, -0.0144100254, 0.00162662379, 0.00232070894, 0.0197145026, -0.00629374897, 0.00263273716, 0.00421237946, 0.0241396297, 0.0184380244, 0.00757377315, -0.0131831877, 0.00403154502, -0.0124527579, 0.00964450557, -0.00953813177, -0.033358641, 0.00392871769, -0.00493926322, -0.00463078078, 0.0185231231, -0.00747449137, -0.0109138926, 0.00512718922, -0.00120113092, 0.0133037437, -0.0298128668, -0.0116655966, 0.00339685148, 0.0167927854, 0.0156723205, 0.0148071516, -0.0170764476, -0.0105593149, 0.00657031918, 0.00794962514, 0.0319970623, -0.0121974628, -0.00961613934, -0.0183103774, 0.00599590363, 0.00267351349, 0.0209909827, 0.00361314369, -0.0107649695, -0.0116230473, 0.00335962093, -0.0422656238, 6.95858107e-05, 0.00897789933, 0.0019076264, -0.028195994, 0.00741775893, -0.00342167192, 0.0139419828, -0.00674406206, 0.000830597535, -0.00267174072, 0.00300149759, -0.00196790462, -0.00847439934, 0.022295827, 0.00313446415, 0.0056165061, -0.00870842114, 0.0150057152, 0.0275152065, 0.0162254609, 0.0115308566, -0.0161261801, 0.00203527417, -0.00234375661, -0.00581152365, -0.00883606821, -0.0247778688, -0.00581506919, -0.00412373524, -0.0105238566, 0.0120839979, 0.0184380244, -0.0114244837, -0.00117896986, 0.00284371059, -0.0143320179, 0.0287633184, 0.0055030412, 0.00377624924, 0.0243665595, 0.0169771649, -0.0217568688, -0.0104103927, -0.00175161229, 0.00789998472, -0.0152468281, -0.00437903078, 0.00114794436, 0.0102047371, 0.0161970947, -0.022792235, -0.000167537815, 0.00711636851, -0.00740357582, 0.00694971671, 0.00352627225, 0.00011390799, -0.00594980875, -0.00423365412, -0.0061448263, 0.00315928459, -0.0217143204, -0.0120201735, 0.00486125611, 0.00614837185, 0.00190408062, -0.0134455748, 0.00116035447, 0.00357768591, -0.00245190272, -0.000450978114, 0.0236432198, -0.0024235365, 0.00690716784, 0.00253700116, -0.00805599801, -0.00716246339, -0.00259727938, 0.00502436189, -0.0145376734, 0.00630438607, -0.00205123029, -0.0240119807, -0.00490380544, 0.0156723205, 0.00178352429, -0.00016443526, 0.00092810631, 0.00717310049, 0.000412639434, -0.00787161849, -0.000628931681, -0.0135803139, 0.00938211754, -0.00429747812, 0.03046529, 0.00659159385, 0.000570869597, -0.0196294039, -0.0203101933, 0.000668821624, 0.00147681485, -0.0174735747, -0.0109635331, -0.0076305056, -0.000513694, -0.0194875728, 0.00633275229, 0.0170906298, -0.00166740024, 0.0134172086, -0.0491869748, 0.0171048138, -0.00782906916, 0.000780956703, 0.0259125158, -0.0146227721, 0.00142983336, -0.00783616, 0.0140696308, -0.0232602768, -0.0110628149, -0.000377181714, -0.0177856013, -0.0116726877, 0.00230298028, 0.000330643408, 0.00416273857, 0.0170622636, 0.00894244201, 0.0147929685, 0.00986434333, 0.00558104832, 0.00206718617, 0.0187926013, -0.00614128029, 0.00354577391, -0.0112471953, -0.0197286867, 0.0124882162, 0.0165516734, -0.000926333421, 0.00210087118, 0.0208349675, -0.0199130662, 0.000827938202, 0.00897789933, -0.00942466687, -0.00651004119, 0.0221539959, -0.0118003357, 0.0146369552, -0.018891884, 0.00234907516, 0.0393439084, -0.00246963161, -0.00521583343, -0.00789998472, -0.00772978738, 0.0021079625, -0.00568742119, 0.00237034983, -0.026692586, -0.00165499, 0.0373299085, 0.0282243602, -0.0142043708, -0.00806309, -0.00638593873, 0.0129349837, 0.0137717864, 0.0284371078, -0.0131264552, -0.00422656257, 0.0124314837, 0.0264940225, 0.00549949519, 0.000642671541, 0.013225737, -0.00813400559, 0.00193067396, -0.00786452647, -0.0274868403, -0.000172634871, 0.00753831537, 0.0308907833, 0.00128357019, -0.0197996013, 0.00763759715, 0.0111975539, -0.0128286099, 0.0145944059, 0.0265791211, 0.00799217448, -0.0195301231, 0.0100061744, 0.00215405761, -0.0056909672, 0.00752413226, -0.0218561515, -0.00350854336, 0.00466623856, 0.0153177436, 0.00415210146, 0.0021717865, -0.0456695668, -0.0113181109, -0.00565196387, 0.0154028423, -0.00733975228, 0.00101231842, 0.0109564411, 0.0149631659, -0.0191755462, -0.0190053489, -0.0155304903, 0.00159027963, 0.00307418592, -0.0143178347, 0.00652422383, -0.00258486927, -0.00702417828, -0.0253310092, 0.0133108357, 0.0126725957, -0.0249622483, 0.0139845321, -0.00371597102, 0.0105451318, 0.00207250495, -0.0081694629, 0.0250189807, 0.000611202791, -0.000998135423, 0.00548885809, 0.00743194204, -0.00151581841, -0.0075666816, -0.00196613162, 0.0181685463, 0.00499599567, -0.0144242086, 0.00437903078, -0.00938211754, -0.00457404833, -0.00525483722, -0.0213171933, 0.004974721, 0.0103465682, 0.00935375132, 0.0077581536, 0.0113181109, 0.014849701, 0.00978633575, -0.00440385146, -0.004343573, -0.00527611142, -0.0030351826, 0.00627602, 0.0135661308, 0.00603845296, 0.0168637, -0.00800635759, -0.0160694476, -0.00666605495, 0.00591435097, -0.00963741355, 0.00594271719, 0.0138923423, -0.0223241933, -0.00603136141, 0.00882897712, 0.0078928927, -0.015743237, -0.0108146109, 0.00560232298, 0.0136441384, -0.0230191648, 0.0195301231, 0.0103536602, -0.00787161849, -0.00314332871, -0.0116726877, -0.00850276556, -0.0076305056, 0.0035954148, -0.00914809667, 0.0161403622, 0.0277279522, 0.0158850681, -0.00322488137, -0.00447831256, -0.0160836298, 0.0170480814, 0.00110539503, 0.00170817657, 0.00244658394, -0.0243949257, 0.0251040794, -0.0075028576, 0.026947882, 0.0155021241, -0.00362023525, -0.0170197152, -0.00462723523, 0.00842475891, 0.0109280758, -0.00980761088, -0.00204945728, 0.0056909672, -0.0200548973, 0.00996362511, 0.00986434333, 0.0101338215, 0.00670860428, 0.013346293, 0.014097997, -0.012466941, 0.00872260425, -0.0118499761, 0.0319403335, -0.00123127, -0.023302827, 0.00901335757, -0.00211859983, 0.00310077937, 0.00250154361, 0.00366278458, -0.00133321097, 0.00326920347, -0.0153035605, 0.0122471033, -0.0287349522, -0.0236148536, -0.0253735576, 0.00457050279, -0.0270755291, -0.0103323851, 0.0148355179, 0.0162538271, 0.0014378113, -0.020267643, -0.0138710681, -0.017884884, -0.00099902181, 0.00358832325, -0.0107153291, -0.010694054, 0.000161775941, -0.00885734335, 0.0234021079, 0.0163814761, 0.00993525889, 0.0115521317, 0.00695326272, -0.0258557834, -0.0208066013, -0.00273024593, -0.0106869629, -0.0283661913, 0.00335430214, 0.00193244684, -0.0177005026, -0.019643588, -0.00615900941, -0.0125236735, -0.0109918993, -0.000360782491, -0.00400672434, -0.0152042788, -0.0090417238, -0.0128073357, -0.000950267422, -0.0129562579, 0.00640012184, -0.0147504192, 0.0187784191, 0.00624410808, 0.014353293, 0.0130342655, -0.0129066175, -0.0153177436, 0.00338621414, -0.00317701348, -0.0170764476, 0.0114457579, 0.00831838604, 0.0233595595, 0.00237566861, 0.00863750558, -0.00271074427, 0.0102685615, 0.0104103927, -0.00316992193, -0.00683979783, -0.00693198806, 0.00950267445, 0.00129863969, -0.00302986382, 0.00807018112, 0.000396683463, -0.00172147329, 0.00986434333, -0.00304582, -0.00806309, 0.0128924344, -0.0142469201, -0.00671924185, 0.0119138006, 0.0177288689, -0.0117152371, 0.0129420748, 0.00753831537, 0.016877884, 0.0127293281, -0.0139987152, 0.00870842114, 0.0223241933, 0.000162219163, 0.0231751781, 0.00537893921, 4.72585198e-05, -0.0124811241, -0.00243771961, -0.008559498, -0.00659159385, 0.0177288689, 0.0069248965, -0.0153035605, -0.00682561472, -0.00393580925, -0.0119350748, -0.00992107578, -0.00709154783, 0.0776666328, 0.00545340031, 0.00170551729, -0.00438966835, 0.0108429771, 0.0095594069, -0.0231468119, 0.0449036807, 0.00181454979, -0.000532752543, -0.00698517449, 0.009318294, -0.00307950471, 0.00999908242, 6.24388631e-05, -0.0171757285, 0.0143036516, -0.0211469959, 0.00772978738, 0.00028366191, 0.00930411089, -0.0157716032, -7.47382655e-05, -0.0154312085, 0.00185089395, -0.000809766119, -0.00112135103, 0.00434711901, 0.00149188435, 0.0188635178, -0.00622992497, -0.0161829125, -0.00090638845, -0.004595323, -0.0296994019, 0.0097083291, -0.0227071363, 0.0180267151, 0.0158850681, -0.00733975228, -0.000805333897, -0.00693198806, 0.00339862425, -0.00170551729, 0.0148638841, 0.00259196083, 0.00850276556, -0.0128995255, 0.0189060662, 0.00321778981, 0.000559345819, -0.0113748424, 0.00549949519, -0.0278130509, 0.0169629827, 0.00810563937, 0.0351173468, -0.00403154502, 0.010573498, -0.0147362361, 0.00407764, 0.00894244201, 0.0116585046, -0.00849567447, -0.0300965291, -0.00658804784, -0.00907009, 0.00659513939, -0.00402090745, 0.00785034336, 0.0075666816, -0.0133746592, -0.00298908749, -0.00509882299, 0.0188067853, 0.0157857854, 0.0109564411, 0.0218136013, -0.004847073, -0.00660577696, -0.00253877416, 0.0149631659, -0.0242530946, -0.00565905543, -0.00166385446, -0.00800635759, -0.0248771496, 0.00464141788, -0.00227815984, 0.010694054, -0.00603136141, 0.023288643, -0.0177856013, 0.00362200802, 0.00274442905, 0.0272740927, -0.0231893621, 0.0154312085, 0.0221539959, 0.0073042945, -0.00469460478, 0.00960195623, -0.00381170702, -0.0149631659, 0.00126672769, -0.000849212869, 0.00570515031, 0.0102543784, -0.000880681619, 0.0138143357, 0.00369469635, 0.020778235, 0.0181969125, 0.0188635178, 0.000347929075, -0.0168211516, 0.00982888509, 0.00532220677, 0.0324509218, -0.00259196083, 0.00361137069, 0.0113748424, -0.00831129402, -0.0187075026, 0.0080418149, 0.0104316669, 0.004974721, 0.0013757603, 0.00558459386, 0.0178281516, -0.000271473313, 0.00209909817, 0.0227213185, 0.00105929992, 0.0262529105, 0.0364221893, -0.00366987614, 0.00425492879, -0.0111691877, -0.00158052868, 0.00846730825, 0.0129066175, 0.0201683622, 0.00841766689, 0.0105096744, -0.00806309, -0.00263982872, -0.0124953073, -0.0114315748, -0.00660577696, 0.00252281828, -0.00227815984, -0.00772269582, -0.0199414324, -0.00300681638, 0.014105089, -0.0100487238, 0.000785388926, -0.00291285338, 0.00310255215, -0.00144933513, -0.00325679337, 0.0423790887, -0.00726174517, -0.0149064334, 0.00346244825, 0.0109351669, 0.0055136783, -0.00183493807, 0.00690362183, 0.0302383602, 0.00535411853, -0.00997780822, 0.0119421668, -0.02643729, -0.00381170702, -0.00583279831, -0.00927574467, -0.00249799783, -0.000928992755, 0.00212391862, 0.0188209675, 0.0165942218, 0.0401381627, -0.00143160624, -0.0108926175, -0.00381170702, -0.000339286256, -0.00399254169, 0.0204662066, -0.00936793443, -0.00869423803, -0.0105380397, 0.000303606881, -0.000233134633, 0.0116797797, 0.00683270628, 0.0109848073, -0.0257848687, -0.00930411089, 0.00228525139, 0.0120981811, -0.00741066737, 0.0162254609, -0.00103979826, 0.0125307655, 0.0108358851, -0.0167786032, -0.0131831877, 0.0098430682, -0.000768989732]
03 Jan, 2023
Mongoose Document Model.inspect() API 03 Jan, 2023 The Model.inspect() method of the Mongoose API is used to get the model’s name in the database. This method works on any model object which is defined using mongoose. Syntax: Model.inspect() Parameters: The Model.inspect() method does not accept any parameter. Return Value: The Model.inspect() function returns string. The result contains the model name. Setting up Node.js application: Step 1: Create a Node.js application using the following command: npm init Step 2: After creating the NodeJS application, Install the required module using the following command: npm install mongoose Project Structure: The project structure will look like this: Example 1: In this example, We have established a database connection using mongoose and defined model over userSchema, having two columns or fields “name” and “age”. In the end, we are using Model.inspect() method on the User model that returns the model name in the String format. app.js: Write down the below code in the app.js file: Javascript // Require mongoose module const mongoose = require('mongoose'); // Set Up the Database connection mongoose.connect( 'mongodb://localhost:27017/geeksforgeeks', { useNewUrlParser: true, useUnifiedTopology: true }) const userSchema = new mongoose.Schema( { name: String, age: Number } ) // Defining userSchema model const model = mongoose.model('User', userSchema); const output = model.inspect(); console.log(output) Steps to run the program: To run the application execute the below command from the root directory of the project: node app.js Output: Model { User } Example 2: In this example, We have established a database connection using mongoose and defined model over studentSchema, having three columns or fields “name”, “class”, and “school”. In the end, we are using Model.inspect() method on the Student model which will return the string having the name of the model. app.js: Write down the below code in the app.js file: Javascript // Require mongoose module const mongoose = require('mongoose'); // Set Up the Database connection mongoose.connect( 'mongodb://localhost:27017/geeksforgeeks', { useNewUrlParser: true, useUnifiedTopology: true }) const studentSchema = new mongoose.Schema( { name: String, class: Number, school: String } ) // Defining userSchema model const model = mongoose.model('Student', studentSchema); const output = model.inspect(); console.log(output) Steps to run the program: To run the application execute the below command from the root directory of the project: node app.js Output: Model { Student } Reference:- https://mongoosejs.com/docs/api/model.html#model_Model-inspect Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API
https://www.geeksforgeeks.org/mongoose-document-model-inspect-api?ref=asr7
Languages
Mongoose Document Model.inspect() API
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[0.00522704283, 0.0107007334, -0.0203895774, 0.0461168736, 0.0197697952, 0.0243991911, 0.0115798125, 0.0101947887, 0.0117379203, 0.0321275, -9.45188e-05, -0.0200986601, 0.0201998483, -0.0296483692, 0.0566658229, 0.0249683782, -0.0289653428, 0.0498608649, 0.0245003793, 0.0208575763, -0.006416013, 0.00181507715, -0.00264672399, -0.00150281435, -0.0253225397, 0.0419681258, 0.00689349882, 0.000403965329, -0.0405261815, -0.0249051359, -0.0219959524, 0.0175309889, -0.0186820142, -0.0135719711, -0.00359220849, -0.0220338982, -0.0156969391, 0.0158360731, -0.0132051604, 0.00555274496, -0.00586579833, 0.000551400823, -0.0299772322, -0.0148241846, 0.00567290653, 0.0101125725, -0.0443207696, -0.00799392909, 0.00823425222, 0.0207943339, 0.000808325945, 0.0042847204, -0.0238300022, 0.0139514292, -0.0290159378, 0.0297495574, -0.00515431305, 0.0065899319, 0.0233367067, -0.0648621321, 0.00522388052, -0.0445990376, 0.0275739953, -0.0171262324, 0.0497090816, 0.05615988, -0.0488742739, 0.010656463, -0.000465232093, 0.022830762, 0.00743738934, 0.0557551235, 0.0292942077, 0.02807994, 0.00380407297, -0.0230078418, -0.010068303, -0.00235264353, -0.023071086, 0.0179736912, 0.0210726038, -0.0254869722, -0.0037503161, 0.0258917287, 0.00853782, -0.0329876058, 0.00726663275, -0.0488742739, 0.0213888194, 0.00516379951, 0.00760182133, -0.000714647118, 0.000267597381, 2.4099083e-05, -0.00970781688, 0.00233367062, -0.011276246, -0.00364280283, -0.00929673668, 0.00256292685, 0.0368580818, 0.0211484954, 0.0236782189, -0.0148621304, -0.0102264099, -0.0152542377, 0.0395395905, 0.00129332149, 0.0210726038, 0.027371617, 0.0597014911, 0.00415823422, -0.00399696454, 0.0217429809, 0.0120478114, 0.0361497588, -0.00680495845, 0.00888565648, -0.00903744, -0.0145206172, -0.00679863384, -0.00701366039, 0.0175689347, 0.0402479135, -0.061877057, 0.0489501655, 0.00957500655, 0.0342777632, 0.0271439422, 0.0160384513, 0.0120857572, -0.0294206925, 0.000766427373, 0.0169870984, -0.011156084, 0.0162408296, 0.0318239294, 0.00775992917, -0.00581520377, -0.0284341015, -0.0315962546, -0.0226663295, 0.00497090816, 0.0178345554, 0.0180369336, 0.0204528198, 0.00136367953, 0.0386035927, -0.0187579058, 0.00159056415, -0.0300025288, -0.023969138, 0.0274981018, 0.0308120418, -0.0152162919, 0.0203010365, -0.010258032, -0.00067077222, -0.0348596, -0.00106327469, -0.00181191496, -0.0466734134, 0.00764609175, -0.00344991148, 0.0314697698, -0.00618833816, 0.0154945608, -0.0210473053, 0.0074500381, 0.000101090154, -0.0248798374, 0.0127814319, -0.00210757647, 0.00364280283, -0.0221097898, -0.04631925, 0.00791803654, -0.0347837098, 0.00764609175, 0.0154186692, -0.0132178096, 0.00543258293, 0.0203010365, -0.00901214313, 0.052567672, 0.0307614468, 0.0447508208, 0.0231090318, 0.000122039433, -0.0150771569, -0.0128004048, -0.00222299527, 0.0429041237, -0.028029345, 0.00356691121, 0.0287376679, -0.0158993173, 0.025853781, -0.00873387326, -0.00322065526, 0.044523146, -0.0561092831, 0.00862635951, -0.0187579058, 0.0393878073, -0.075689353, 0.0175942332, -0.02321022, 0.0490766503, -0.0307614468, -0.00398747809, 0.0193397421, -0.0328358226, -0.0265368074, 0.0136858085, -0.000285384507, 0.00793700945, -0.0439160131, 0.0342018716, -0.0354414359, 0.0005055496, -0.00920819584, 0.00618201355, 0.00513534, -0.0386288911, -0.0117315967, 0.0205793064, 0.0150518594, 0.0435112566, 0.0222868714, -0.00415191, 0.0577283092, 0.010378194, 0.00633695908, -0.0125790536, 0.0065899319, 0.0178472046, -0.00975841098, -0.0330634974, 0.0144953197, 0.0204528198, 0.0147735896, 0.0153807234, -0.0265115108, 0.047735896, 0.00833544135, 0.00426891, -0.00801290199, 0.0331646837, 0.0132051604, -0.00679863384, -0.035922084, -0.00988489762, 0.0217682775, 0.0127181886, -0.0209334679, 0.0246015675, 0.0482924357, 0.0063812295, -0.00904376432, -0.0200733617, -0.00467050355, -0.0637996495, 0.00122296356, -0.0160763972, -0.00904376432, 0.016923856, -0.0624841899, -0.00209334679, -0.0194915254, 0.0179230962, -0.0204022266, 0.0274728052, 0.00278743985, -0.0529724248, -0.00983430352, -0.0369339734, 0.0307614468, 0.0157475341, -0.0294712875, -0.0122565143, 0.00349418167, -0.00581836561, 0.01160511, 0.0320010111, -0.0266885906, 1.83676748e-05, -0.0111624086, 0.0030688718, 0.0416645594, -0.0173033141, -0.0218947642, 0.0360232741, 0.00417088298, 0.0155325066, -0.0262585375, -0.0183152035, 0.0208449271, -0.0027779534, -0.00874019694, -0.022261573, -0.0208196305, -0.0370351635, 0.0249304324, 0.0140652666, 0.0285605863, 0.0115228938, 0.00814571232, 0.00762079423, -0.0283582099, 0.027321022, -0.0370351635, -0.00824690145, -0.0406779647, -0.0187705532, 0.0191626605, -0.000428867323, -0.00582785206, -0.0169365034, 0.0114786234, -0.0190108772, -0.0368833803, -0.0293701, -0.0214014668, 0.0202883892, -0.00882241316, 0.0114533268, 0.0108714905, 0.0102706803, 0.0121616498, -0.0282570198, -0.0271945354, 0.0150139136, 0.0498355664, -0.00144747656, 0.0053155832, -0.0187452566, -0.0558563098, -0.0199215785, 0.0357703, -0.00537250191, -0.00901214313, -0.0383000262, -0.012313433, 0.0433341749, -0.000790538848, 0.0139767267, 0.0211864412, 0.00375664048, -0.0167720728, 0.000815045554, -0.00828484725, 0.0275992919, 0.00297875027, 0.0246395152, 0.0303819887, 0.00493612466, -0.0328864157, -0.0160890464, 0.0280546416, -0.0159625597, -0.0343283564, 0.0445737429, 0.00754490262, 0.0373387299, -0.00794333406, -0.018859094, 0.00142850366, -0.0228813551, 0.00226568431, 0.0105426256, 0.048545409, -0.00283171, -0.0477611944, 0.00655198563, -0.0338730067, 0.042018719, 0.0178598538, 0.0199215785, 0.0296483692, 0.0327599309, 0.0210979, -0.00995446462, 0.0176701248, -0.0421452075, 0.0139261317, -0.00500885397, -0.000830856327, 0.00360801932, 0.0203136858, 0.00929041207, -0.0277510751, 0.00809511729, -0.0441436879, 0.0421705022, -0.0136225652, 0.00326018222, -0.0111497594, 0.0163167212, -0.0195800662, 0.00648241863, -0.0429547168, -0.0143561848, 0.0241715144, -0.0143435365, -0.0500632413, 0.0179989878, -0.00827852264, 0.00797495618, -0.0240703262, -0.00115102448, 0.0356691107, 0.0317733362, 0.0254490264, 0.0318745263, -0.0173918549, 0.0120731089, 0.0281558316, -0.0206804965, -0.0171641782, 0.0266632941, 0.00113047054, 0.00670376932, -8.32042133e-05, -0.0498102717, 0.00999873504, -0.0515051857, -0.0147862379, -0.0561092831, -0.0121110547, -0.0460915752, -0.00467366539, 0.0286870729, 0.0063843918, 0.0154692642, -0.0309385285, 0.0153933717, -0.0175056923, -0.0100556538, 0.0172147732, 0.00722236279, 0.00100951805, 0.00899316929, 0.000645474938, -0.0385277, 0.0342271701, -0.0701239556, -0.0284341015, -0.0042657475, 0.00815836061, -0.0173792057, 0.00245067035, -0.0357197076, -0.000908329093, 0.026612699, -0.0432076901, -0.0151909944, 0.00347520877, 0.0380217545, 0.00802555, -0.0014601252, -0.00645712111, -0.00972679, 0.0138122942, 0.0142676448, -0.0076903617, 0.00948646571, 0.0403744, 0.000645079708, 0.0256261062, 0.0198456869, -0.00296452059, 0.00794965867, 0.0335188471, 0.00137949025, -0.00420566648, -0.0140146725, -0.0346319266, 0.0195547678, 0.0289400462, 0.0284593981, 0.0311662033, -0.0274981018, 0.0409815349, -0.00325385784, -0.00946116913, 0.046749305, 0.0346572213, -0.0226410329, -0.0222236272, -0.0203895774, -0.0281305332, -0.0117505696, -0.0372881368, 0.00171705033, -0.0219580065, -0.0171515308, -0.00918289926, 0.00670376932, 0.0244497843, 0.0126928911, -0.0164305586, -0.0181381237, 0.0187579058, -0.0158107765, 0.0414874777, -0.0443207696, -0.0123513788, 0.0361497588, 0.00886668358, -0.009429547, 0.00405388325, -0.00867695455, 0.0173159633, 0.0152289402, -0.0097900331, 0.035112571, 0.0321022, 0.00627687853, 0.0188843925, -0.0205034148, -0.000389142748, 0.0106374901, -0.0168859102, -0.0118264612, 0.00757652428, -0.00393688353, -0.0356944092, -0.00228781928, 0.00278585893, 0.00296135852, -0.0225271937, 0.0225651413, 0.0289400462, -0.0294965841, -0.0198709834, -0.0172780175, 0.0101758158, 0.00943587162, -0.0269668605, 0.0236908682, -0.0319504179, -0.0352643579, 0.0264356192, -0.0153680751, 0.00376296486, 0.0264356192, -0.0136984568, -0.0357197076, 0.00707690371, 0.0136225652, 0.00669744518, 0.0165443961, -0.00119134202, -0.00411712611, -0.0261573493, -0.0194409303, -0.0263850242, -0.0111434357, 0.0275992919, -0.00500253, 0.041740451, 0.0121363522, 0.008910954, -0.0019178472, 0.0226410329, -0.0181001779, 0.0119213257, -0.0269162655, 0.0411586128, 0.0205793064, 0.0050468, -0.0144953197, -0.00511636725, 0.0373893231, -0.0158487223, -0.00248229201, 0.0128762964, 0.0595497079, -0.0126928911, -0.016923856, 0.0164558571, -0.0115418667, 0.00874652155, -0.0114533268, 0.0020032255, -0.0261573493, 0.002339995, 0.00730457902, -0.0304578803, 0.0536301546, 0.0206046049, -0.0497596748, 0.0081204148, 0.00305306097, -0.00474639516, -0.0231722742, -0.0201492533, 0.0085694408, 0.00338350609, -0.0194788761, 0.0201239567, 0.0104224635, 0.0167973693, 0.00786111783, 0.0129648373, 0.028788263, -0.012054136, -0.0247786492, 0.0108398683, -0.0181254745, -0.00443966594, 0.00099528837, 0.0042467746, 0.00738679478, -0.0104667339, -0.00365545158, 0.0173033141, 0.00916392636, -0.00329496595, 0.00909435842, 0.02807994, 0.0166708827, 0.0236655697, -0.0120920818, 0.00285700732, -0.0206931438, 0.0151530486, -0.00729825441, -0.00913230423, -0.00494244881, -0.0175436381, -0.0289147478, 0.00832279306, 0.0123450542, 0.0390589423, 0.0109473821, -0.0161396414, 0.00388628896, -0.0165570453, 0.00952441152, 0.00127513916, 0.0128952693, 0.0533771813, -0.00922084507, -0.00258031883, -0.00132099038, 0.0171009358, 0.000244474126, -0.0268403739, -0.00845560338, 0.00931571, -0.0110548949, 0.00691879587, -0.0174045023, -0.000100744292, 0.01559575, 0.0229446, 0.00571401464, 0.00220244122, 0.00296452059, -0.0438654199, -0.00148463191, 0.0214900076, 0.0158487223, -0.0018988743, -0.0298001524, 0.0203769282, -0.0149253728, 0.0135087278, 0.00143324689, -0.03412598, -0.00929673668, -0.0174045023, 0.0118454341, -0.0160637498, -0.0605615973, 0.0053313938, -0.00945484452, 0.0040254239, -0.0159372631, -0.013989375, -0.0231343284, 0.0465975218, -0.0190108772, 0.00413293717, -0.0528206415, -0.0317986347, -0.0140273208, -0.0257019978, -0.0285099931, -0.0192765, 1.40814727e-05, 0.0460156836, 0.0296989623, -0.0207690354, 0.00138265244, -0.0119719198, 0.00188306347, 0.00109963957, -0.00616620295, 0.0174424481, -0.0329876058, -0.0232481658, -0.0142423473, 0.0534783714, -0.00153285475, 0.00953073613, 0.0205793064, -0.0055400962, -0.0148115354, 0.0444219597, -0.00393688353, 0.0154945608, -0.00910068303, 0.00822792854, 0.00563496072, -0.0162281804, -0.012262838, 0.0075006322, 0.0332152806, -0.0344295464, 0.0234884899, 0.0102011133, 0.0121363522, 0.00563496072, 0.0150771569, 0.00159135472, 0.0156589933, -0.00195579301, 0.0021613331, 0.00651404, 0.000288941956, 0.016304072, -0.013281052, 0.0182519611, 0.0110232737, -0.0059511764, -0.0108525166, 0.0126802428, -0.0149506703, 0.00447761174, -0.0133948904, -0.00517328596, -0.00926511548, 0.0155325066, -0.0138881858, -0.00322381733, -0.0373134315, -0.0136731593, 0.00517012412, -0.00965089817, 0.00937895291, -0.0116557041, 0.00196369854, 0.0103971669, 0.0291424226, -0.00468631415, 0.0182393119, -0.0114027318, 0.0141538074, 0.000316017889, -0.0100050597, 0.0169618018, -0.0375411063, 0.0121869463, -0.025714647, -0.0100493301, -0.00448709819, 0.0222236272, 0.0123766763, 0.0538831279, 0.0183910951, 0.0207057931, 0.0080698207, 0.0138122942, 0.0217809267, -0.00241904892, -0.00592904119, -0.0154819125, 0.00801290199, 0.00166961807, 0.0396154821, 0.00064468442, -0.00673539098, 0.0113584623, 0.012503162, -0.00803819858, 0.0384771042, -0.0114786234, -0.00208702241, 0.0035099925, 0.0134454845, -0.0220465474, -0.0141158616, -0.00708322786, 0.0192385521, -0.00127988239, -0.00667214766, -0.0376422964, 0.0152036427, -0.0467746034, 0.047457628, -0.0081204148, 0.0169870984, -0.018011637, 0.00276530487, -0.0305084754, -0.00273052114, -0.0200986601, 0.00491082715, 0.0060049328, -0.0275234, 0.0271186437, -0.00247438648, -0.00980268139, 0.00226410315, 0.006570959, 0.0199215785, -0.00798128, 0.006416013, -0.028408803, -0.00864533242, -0.0197950918, 0.00173918542, -0.0145079689, 0.0492790304, 0.0200354159, -0.013281052, -0.0155831017, -0.0124082975, 0.00107750448, -0.0283329114, 0.0487983823, -0.000805163814, 0.0142549966, 0.022451302, 0.0298001524, 0.0288641546, 0.0216164943, -0.000757731497, 0.000417009229, 0.0108525166, -0.0062104729, -6.39348291e-05, 0.0150518594, 0.0424993671, 0.00612193253, 0.0294712875, 0.00664685061, -0.0103149507, -0.023918543, 0.0153048318, 0.0102706803, 0.0225271937, -0.00675436389, -0.0276245885, -0.0217429809, -0.00683657965, 0.00763344299, -0.0322539844, 0.016304072, -0.0149000762, -0.0213761702, 0.0168985575, 0.0187326074, -0.0297242608, -0.0244118385, -0.0441689864, -0.0121553252, -0.00111624086, -0.047735896, 0.0241588671, 0.014887427, 0.00507525913, 0.0121426769, 0.0150645077, -0.00187357701, 0.00499936752, -0.0408044532, 0.0102390591, -0.0143182389, -0.00678598555, -0.0137996459, -0.00112968, -0.000813464459, 0.0192132555, -0.0317733362, -0.00438590953, -0.0228687078, -0.0115861371, -0.00539463712, 0.0349607877, 0.00101821404, 0.0015344359, 0.0180875286, 0.0222489256, 0.00236054906, 0.0037313432, -0.0201113075, 0.0164179113, -0.0422463939, 0.032051608, -0.0313938782, 0.0346825197, 0.0149506703, 0.0311662033, 0.0155325066, -0.00994181633, -0.00707690371, -0.0206046049, 0.0244750828, -0.00126407156, 0.027371617, 0.0437642299, 0.000492505671, 0.0327599309, 0.0037313432, -0.00722868694, 0.0128193777, -0.0188337974, -0.0011043828, 0.0130407289, 0.0401214249, -0.00318587152, 0.00525234, -0.00274000759, -0.00901214313, 0.00526182633, 0.0237161648, -0.02321022, 0.0264609158, 0.0116620287, 0.00473058457, 0.0334935486, -0.0241841637, -0.0129901338, 0.0239058938, -0.0124399187, 0.00441753119, 0.0223627631, 0.018011637, -0.000367798202, 0.0174803939, -0.0160131548, -0.000373331975, -0.0439666063, 3.57471763e-05, -0.0135846194, -0.00514166476, 0.0137237543, -0.0133063495, -0.0196053628, 0.0400202386, 0.0178472046, -0.0257272962, 0.0107197063, -0.00640652655, 0.0089299269, 0.00573298754, 0.0228560586, -0.00580571732, 0.00348469522, -0.00571085233, 0.00384201878, 0.0128257023, -0.00371869467, -0.00189729314, 0.00687452545, -0.0213508736, -0.0152036427, -0.0133569445, -0.00233683269, 0.00721603865, -0.00715911947, -0.0142170507, 0.00940424949, -0.0227801669, 0.013660511, -0.0129268905, 0.000103165316, -0.0367568918, -0.00594801409, -0.0153427776, 0.0230837334, -0.0182013661, 0.0171515308, -0.000338350626, -0.0139767267, 0.0176448263, 0.0224766, -0.00717809238, -0.0263091326, -0.0144826714, -0.0142549966, 0.0057614469, 0.0266632941, 0.0146724, -0.0151530486, -0.00458196318, -0.0126233241, -0.00170914491, 0.0157222357, -0.026562104, 0.0278269667, 0.0105995443, 0.0377434865, -0.0247280542, -0.051859349, 0.0172147732, -0.00251233252, -0.000629664166, -0.0137364026, -0.0332152806, -0.0167847201, -0.00464836834, 0.0167214777, 0.00382937, 0.0207943339, 0.0276498869, -0.0256387554, -0.00816468522, -0.0117695425, -0.0333417654, 0.00168542878, 0.0169744492, -0.0182393119, -0.00788009074, 0.0371869467, 0.00424045045, -0.00137158483, -0.0278775617, -0.00723501155, 0.034556035, 0.0268909689, -0.0129142422, -0.0280546416, -0.0220086016, 0.0287376679, -0.0125600807, 0.0106185172, 0.00999873504, 0.00521439407, 0.0150518594, -0.0256261062, 0.00717809238, -0.00496142171, 0.0293953959, -0.00666582352, 0.0228940044, 0.00177871238, 0.0246142168, 0.000494086766, 0.00810776651, -0.0187452566, -0.00770301046, -0.0114659751, -0.0168859102, 0.022071844, 0.0106627876, -0.00787376706, -0.0137111051, -0.00597647345, 0.0101947887, -0.0240829755, 0.00554325851, -0.0165823419, 0.0100303562, 0.0124082975, 0.00550215039, -0.0168985575, -0.0203642808, 0.0283076148, -0.00744371349, 0.0144826714, 0.0219074115, 0.0215659, 0.019048823, 0.00854414329, -0.011415381, 0.00172021252, 0.00516379951, 0.0119023528, 0.0327852257, 0.0301796105, -0.00496458402, 0.00559701491, -0.00988489762, -0.00327599281, -0.0129648373, -0.00899316929, 6.85298364e-05, 0.012762459, -0.00281906151, 0.0240323804, 0.0111750569, 0.0242853537, 0.0648621321, -0.0100872759, -0.00350683019, 0.0036681, -0.0166708827, -0.0194662288, -0.0145206172, 0.00562231196, 0.00418985588, -0.00558120431, 0.00858841371, -0.000258308573, 0.0173412599, 0.00868327823, -0.0299772322, 0.00208544149, 0.00646344526, 0.00379142421, 0.0132304579, -0.0280040484, -0.0229193009, -0.00334872259, 0.00474007102, 0.0393119156, -0.0333670639, 0.00571401464, -0.0263597276, 0.00621679751, 0.00260719704, 0.0191753097, 0.00672274223, 0.00731722731, 0.00862635951, 0.0148621304, 0.0310144201, 0.020655198, 0.0135846194, 0.0144194281, 0.0020490766, 0.0169112068, 0.00326018222, 0.00307677709, 0.0134834303, 0.00808879361, -0.0104730586, 0.00269889948, 0.00435745, -0.0465469249, -0.00558436615, -0.00863900874, 0.0280546416, -0.0126486216, 0.00329812802, -0.018011637, -0.0106817605, -0.0049392865, 0.00792436115, -0.0472805463, -0.0184796359, -0.0275234, -0.0102453837, 0.0159119647, 0.011364786, -0.0111813815, 0.00451239571, 0.0230078418, -0.0326334424, 0.0223627631, -0.0296736658, 0.0121363522, -0.0160637498, -0.00987224933, -0.0081710089, 0.001098849, -0.000350406335, -0.0141032124, -0.00123086898, -0.0164811537, -0.0155325066, -0.00833544135, -0.0124462433, 0.0012024095, -0.0293195043, 0.00344042503, -0.00642866176, 0.00874019694, 0.00909435842, -0.0130280796, -0.0111054899, 0.011813812, 0.00164748298, 0.0516063757, 0.00618833816, -0.0266379956, 0.000437563256, -0.00606817612, 0.0222742222, 0.00875284616, -0.013989375, 0.0194535796, 0.0183531493, 0.0270427521, 0.039134834, 0.0270174555, 0.0170882866, 0.0121806227, -0.0133189978, 0.00206646859, 0.00765241589, 0.0152289402, 0.0143561848, -0.00691247173, 0.0225398429, 0.0347584113, 0.00844927877, -0.00376296486, -0.00570136588, 0.00174234761, -0.0121742981, -0.00965089817, 0.0106817605, 0.00695041753, -0.00377245131, 0.000341117498, 0.0211358462, 0.0117695425, 0.00251075136, 0.0124968374, 0.00971414149, -0.0174171515, 0.00226726546, 0.0029834935, 0.00350366812, 0.000825322524, -0.0349101946, -0.0147103462, -0.0272957254, 0.00394320767, 0.0293953959, -0.0355173275, 0.0299772322, 0.00852517, -0.00857576542, -0.0360232741, -0.000255739316, -0.00965089817, -0.00418353127, -0.0162534788, -0.000883031869, -0.00298981788, -0.017632179, 0.00488869194, -0.00319061475, -0.00747533515, 0.0346066281, -0.0255122688, 0.0312673934, -0.00508474559, -0.0277510751, -1.06105135e-05, 0.00503415149, 0.0264103208, 0.0289653428, -0.011674677, 0.0214647111, 0.0142423473, -0.0198836327, -0.0229319502, 0.0187452566, 0.0172274224, 0.00948646571, 0.0311915, 0.00554325851, 0.0124968374, -0.00765874, -0.00772198336, 0.0236023273, 0.0252719447, -0.00328864157, -0.00940424949, 0.00378509983, -0.0017866178, -0.0289147478, 0.0186567158, -0.0274475086, -0.0102833295, -0.00284277764, 0.0213002786, 0.00777257793, 0.0219580065, -0.0114343539, 0.0267644823, -0.00437009847, 0.004076018, 0.0109726787, 0.0118770553, -0.0106880851, -0.0115418667, -0.0120794335, -0.0182393119, -0.0491272435, 0.00284752087, 0.00534088025, 0.0176195297, 0.0208575763, 0.00614406774, -0.00458828732, 0.00379774859, 0.0138122942, 0.00394004537, -0.0085694408, 0.00873387326, 0.0103086261, -0.0370857567, 0.0127181886, -0.0321022, -7.36189322e-05, 0.0147229955, -0.0236908682, 0.0025724133, 0.00622312166, 0.000461279415, 0.00839868467, 0.0104351128, -0.0168100186, -0.0166329369, 0.00714647118, 0.0276498869, -0.00894257519, 0.00495193526, 0.00798760448, 0.00606501382, 0.0137617, 0.0308373384, -0.00361750578, 0.0310144201, -0.0208702255, -0.0397925638, -0.0027510752, 0.0153554259, 0.0339994952, 0.00103876798, 0.00675436389, 0.0247154068, -0.00408866676, -9.72856869e-05, 0.0142549966, -0.0231849235, -0.0132178096, -0.00324753346, -0.0175309889, 0.00380091066, -0.00603339216, -0.0227042753, -0.000511873921, -0.022830762, -0.00825955, 0.00563496072, -0.0033044524, 0.0124019729, 0.0122248922, 0.0187705532, 0.0168606117, -0.0161522888, -0.0288388561, 0.00492663821, -0.0217682775, -0.00057551224, -0.00831646845, 0.0209461171, -0.00248229201, -0.00197792822, 0.0382494293, -0.0102517074, 0.00163325318, 0.00318745268, 0.0136984568, -0.00708322786, -0.00218504923, -0.00355742476, -0.0179989878, -0.0157981273, 0.00568555528, 0.0301796105, -0.026612699, 0.0113078672, 0.00138739566, -0.00307519594, 0.00050594483, -0.00409182906, 0.0151530486, -0.0393878073, -0.00300088548, -0.0156589933, -0.00444915239, 0.0101188971, -0.00926511548, 0.00862635951, 0.0280040484, 0.0196939036, 0.00757652428, 0.0187326074, 0.0213508736, 0.01706299, 0.0112825707, 0.0057614469, 0.00829117093, 0.0124905137, -0.00261826464, -0.0102200862, 0.0085820891, -0.000244474126, 0.0214267652, -0.0185934734, -0.0344295464, -0.0113837589, -0.0191247147, 0.000240126174, -0.00471793581, 0.0212117378, -0.0147862379, -0.0501138382, -0.00398115348, -0.00656463439, 0.00320642558, -0.00388945104, -0.00310997968, -0.00732987607, -0.0196939036, -0.0188211482, 0.00458828732, -0.0015589426, -0.0158234257, 0.0123640271, 0.00195263093, 0.0214520618, 0.0158613715, -0.0171388816, 0.0200607125, -0.00479698973, -0.0193270929, 0.035213761, -0.0055400962, -0.00248229201, 0.0237541106, -0.000954970892, 0.00198583351, 0.00147277385, -0.0150012644, 0.0064002024, -0.00876549445, -0.00862003583, 0.0119655961, -0.0119972173, -0.0385782942, -0.00506893499, 0.000307717244, 0.0348848961, -0.000444678095, -0.0128193777, 0.0112193273, -0.0126359724, -0.0127371615, -0.00129964587, -0.00453136861, -0.00338034402, -0.00430369331, 0.0134834303, 0.0238300022, -0.0145965088, -0.0300531238, -0.00126802432, 0.0419175327, -0.0149633186, 0.0157475341, 0.0263344292, -0.0106374901, 0.0161269922, 0.00661522895, -0.0161396414, -0.043157097, -0.0284341015, 0.0201113075, -0.0013344296, -0.00246648118, -0.00226884638, 0.00294080446, -0.0168859102, -0.000792910461, 0.0203136858, -0.0291930176, -0.00157633447, 0.0355426259, 0.0038546673, -0.0248545408, -0.0354667343, 0.0148368329, 0.0167594235, 0.0120478114, 0.00808879361, 0.0231216792, -0.0128699718, -0.00993549172, -0.0040443968, -0.000523732, 0.0202504434, -0.00940424949, -0.0100936, -0.00235422468, -0.0119655961, -0.0143308882, -0.0185681768, 0.0139261317, 0.0114723, 0.000897261547, -0.0101188971, -0.00482861139, 0.00663420185, -0.00133759168, 0.0235390849, 0.00172179355, 0.0138755376, -0.0221350864, 0.022312168, -0.0138755376, -0.0175562855, 0.0238932464, 0.0326840356, 0.0172021259, 0.0170503408, -0.00879711658, -0.0155704524, -0.0208702255, 0.00109805842, -0.00919554755, 0.0236655697, -0.0100872759, 0.0242474079, -0.0359473825, -0.00538831251, 0.0249430817, 0.0163293704, 0.00356058683, 0.00339615485, -0.0174424481, 0.0131292688, 0.014368834, -0.000789353042, 0.0278269667, -0.0074816593, -0.000237754561, 0.0157601815, -0.00910068303, 0.0223248173, -0.0126802428, 0.00313211489, 0.0259802677, -0.0315962546, 0.02155325, 0.0124209458, 0.00259296736, 0.00341196568, 0.00984695181, 0.0188843925, -0.00932835788, 0.00588793308, -0.00842398219, 0.0103402482, -0.00834809, 0.0153427776, -0.0134328362, -0.0117126238, -0.01385024, -0.00864533242, -0.0145332655, 0.0162028838, 0.0339994952, -0.00531242089, -0.00829749554, -0.0257652421, 0.0182646085, 0.0140526183, 0.0158740189, -0.00720339, 0.0103149507, 0.0152289402, -0.0336453319, -0.00251865666, -0.0215785485, 0.00925879087, 0.00486971904, 0.0165823419, 0.00293289917, -0.00327283074, 0.0167088285, -0.0127498107, -0.00288862898, -0.0214900076, -0.0200733617, 0.00416772068, 0.0222489256, 0.0129205668, -0.018859094, 0.00613458129, -0.000841133296, 0.0100177079, -0.0150518594, 0.00818998273, -0.0049203136, 0.0183025543, -0.00914495345, -0.0198962819, -0.0109853279, 0.0177080706, 0.0261067543, -0.0343789533, 0.00885403529, -0.00429104455, 0.0177839622, -0.00607450027, 0.00316847954, -0.0277004801, 0.0103149507, 0.00279850746, -0.0187326074, 0.00128462561, -0.0196433086, -0.00728560565, -0.00946749281, 0.00265621045, -0.00372185674, 0.002789021, -0.00209492794, 0.0326840356, 0.0215279534, -0.0156842899, 0.000227477547, -0.0101758158, 0.0244497843, 0.0207690354, 0.00240640016, 0.0226283837, 0.0148747787, 0.00230837334, 0.000239335626, 0.0147609413, -0.00323014171, -0.0115671642, -0.0214394126, 0.014558563, 0.0230331402, -0.00455982797, -0.00667214766, 0.0270427521, -0.016923856, 0.00896787271, 0.0215911958, 0.00218979246, 0.0163673162, 0.02486719, -0.0227548704, 0.00770301046, 0.017632179, 0.00859473832, -0.00424361229, -0.0141411582, 0.00960662775, -0.0077093346, 0.0044365041, -0.00966987107, -0.00564444717, -0.0105995443, 0.0229066536, -0.000779076, -0.00891727768, 0.0184543394, -0.00998608675, -0.0125664053, -0.0150012644, 0.0123640271, -0.0154692642, 0.00968251936, 0.0281305332, 0.00132968626, -0.00885403529, -0.00248229201, 0.000277874409, -0.00593220349, 0.00283487234, 0.0339741968, 0.0122438651, -0.00351631665, 0.0108082471, 0.030533772, 0.00676068803, 0.00821527932, -0.00171863136, 0.0128889447, 0.0191120673, -0.0115165701, 0.00432266621, -0.0232481658, 0.00541044772, -0.00429420685, -0.0135846194, -0.00892360229, -0.0123007838, 0.0263344292, 0.00461990898, 0.0163926128, -0.00627687853, -0.0102200862, 0.0042467746, 0.00523969159, 0.0289400462, -0.00846825168, 0.00175499625, 0.00814571232, -0.000760893628, -0.0057993927, 0.0015945168, 0.00780419912, 0.00472742226, -0.00633063493, -0.0155704524, 0.0217176825, 0.0232987609, 0.00793700945, -0.0290918294, 0.00875284616, 0.00330129, -0.00063480268, -0.011484948, 0.00805717148, -0.00116604473, 0.0173665565, -0.00258822413, -0.00191468501, 0.000675910676, -0.0108904634, -0.0132937012, 0.00865165703, 0.0147229955, -0.0179357454, 0.0347078182, -0.000158404218, 0.0201239567, 0.0200480651, -0.00820895564, 0.0170250442, 0.00461358484, 0.00949279, 0.000552191399, 0.00317954714, 0.0139261317, -0.00722236279, 0.0199595243, -0.0158234257, -0.00503415149, -0.00752592972, -0.000983430305, 0.0140526183, 0.016025804, -0.0159625597, 0.0131925121, -0.00930306129, 0.013331647, 0.012503162, -0.00626739208, 0.00634644553, -0.00462623313, -0.00758284843, -0.0188843925, 0.010517329, 0.00389261311, -0.0244118385, 0.0161775872, 0.0155831017, 0.0037155326, 0.0189223383, 0.0021423602, 0.0204907674, 0.00302776368, 0.00809511729, 0.00953073613, -0.0149759678, 0.00851252209, 0.00565709593, -0.0275486968, 0.00666582352, 0.00912598055, -0.0157475341, -0.0158613715, -0.0130660255, 0.00433847727, -0.0126802428, -0.00970149226, 0.0174045023, 0.029774854, -0.00597331161, 0.0184163917, -0.00548001518, 0.000253170059, 0.00388628896, 0.00308942585, 0.00603023032, 0.032051608, 0.0143561848, 0.0123197576, 0.00927776378, 0.000885403482, -0.00260719704, 0.000896471, -0.0044712876, -0.0116810016, -0.0234378949, 0.0156083982, 0.0152542377, 0.00594169, -0.0175309889, -0.010327599, 0.0314191766, -0.0218315199, -0.00218663039, 0.016354667, 0.00854414329, 0.0146471038, -0.00083955226, -0.00720971404, 0.00753225386, 0.000596461527, 0.0551479906, 0.0109094363, 0.0189476348, -2.09616319e-05, 0.00302460161, 0.000428867323, 0.0148747787, 0.0137743484, 0.0137364026, -0.00799392909, 0.0199215785, 0.0117695425, -0.0122059193, -0.00245699473, -0.00721603865, 0.00928408839, -0.00653301273, 0.00431001792, 0.0132051604, -0.00240481901, -0.0274981018, 0.00687452545, -0.0123577034, 0.0282064248, 0.00834809, 0.00224987348, 0.0134960786, -0.00238584611, -0.0272957254, 0.0028743993, 0.0271692388, -0.0189982299, -0.00648241863, -0.00293764239, -0.021224387, 0.00463255774, -0.000463651028, -0.0247027576, -0.00930938497, -0.0186820142, 0.00834809, -0.00213919813, 0.0421452075, -0.00333923614, -0.00931571, 0.00455982797, 0.0149000762, -0.00164590182, 0.0176827721, 0.0104793832, -0.0196433086, 0.00173444219, 0.0265115108, 0.024576271, -0.00639704, 0.0179357454, -0.0335188471, 0.0112319756, -0.0193017963, -0.0214647111, -0.00808879361, 0.0231090318, 0.0108208954, 0.0187579058, 0.0022435491, 0.00194314448, -0.000234197127, 0.0309385285, 0.00494561112, -0.00849354919, -0.0111118136, -0.0321275, -0.0292689092, 0.0030989123, 0.000630059454, 0.0107260309, 0.00725398446, -0.0162787754, -0.0140273208, -0.0100556538, 0.0243991911, 0.0165696945, 0.0055590691, -0.00875284616, 0.00330761448, 0.00176290155, 0.014748292, 0.00801922567, -0.012832026, 0.00163009111, -0.0226410329, 0.0116873262, -0.0174045023, 0.0252466481, -0.0137869976, -0.000542309659, -0.0325069577, -0.0316974446, -0.0127687836, -0.0136099169, -0.014609158, -0.00239533256, 0.00113995699, -0.002339995, 0.011484948, -0.0059701493, -0.0103023024, -0.0012956931, 0.0205413606, 0.00915760174, 0.0240197312, 0.000149411833, 0.0208955221, -0.00630217558, 0.0153933717, -0.0171009358, 0.00236371113, -0.000245659932, 0.0152542377, 0.0110169491, -0.00156605744, -0.00758917257, -0.00755122676, -0.0153301293, -0.00690614711, -0.0179736912, -0.0166708827, 0.00739944354, 0.00655198563, 0.00539779896, 0.00148542249, 0.00936630368, -0.00179452309, -0.0336200371, 0.00327283074, 0.00772830751, 0.0151909944, 0.00981533, 0.00333923614, 0.0229319502, -0.0199595243, -0.00987857301, 0.0286617763, 0.0118327849, 0.00909435842, -0.00688717421, -0.00556223141, -0.0275992919, 0.0120035419, -0.006416013, -0.0218694657, -0.00384201878, 0.00972679, 0.0188843925, 0.00146486843, -0.015975209, 0.00609031133, 0.00796230696, 0.00384201878, 0.00177555019, 0.0170756392, 0.0144320773, -0.0115292184, 0.00567923114, 0.008152036, 0.0187452566, 0.0192132555, -0.0187326074, 0.0216164943, -0.0235011391, 0.0124715408, 0.0210726038, 0.0198330376, 0.00394953182, 0.0222109798, -0.00242695422, 0.0248418916, -0.0124399187, 0.000105339299, 0.000505154312, 0.0211611427, -0.00222457619, 0.00954338443, 0.00725398446, 0.00238426519, 0.0102643566, 0.0137111051, -0.00770301046, -0.00270364271, 0.00580887916, -1.37726684e-05, -0.0130533772, -0.0101252217, -0.00548317749, 0.00729193026, -0.0173539091, 0.0337212235, -0.0016411586, 0.00663420185, 0.0118960282, 0.00360801932, 0.0128383506, 0.0136858085, 0.0312420949, -0.00101505185, 0.0262079425, -0.0111877052, 0.024057677, 0.011364786, 8.37477055e-05, -0.0210093595, -0.00982797891, -0.00843663048, 0.000824532, 0.0143055907, -0.0105679231, -0.00711484952, 0.00582785206, -0.00912598055, -0.023349354, 0.00612193253, 0.00368707301, 0.00366177596, -0.00745636225, -0.00281589921, 0.019668607, 0.0161016956, -0.00824690145, -0.0118897036, 0.00476536807, -0.0430812053, -0.0209587663, -0.00351631665, -0.00864533242, 0.00773463212, 0.0125158103, 0.0202883892, 0.0135087278, 0.00956235733, 0.00304041244, 0.0280546416, 0.0194662288, 0.00767771294, 0.0251201615, 0.0166835319, 0.00715911947, 0.00310049322, -0.0171641782, 0.00234631915, 0.00310207438, 0.0283835065, -0.0224133562, 0.00621995935, 0.00161744247, 0.0140526183, 0.00197634706, 0.00122691621, 0.0182519611, -0.00285700732, 0.0110738678, 0.0036301543, -0.00572033878, -0.000993707334, -0.00371869467, -0.0351884663, 0.0216923859, -0.0040412345, 0.0197065528, 0.00850619748, -0.00621679751, 0.0203642808, -0.0170503408, 0.0109284092, 0.0141032124, -0.00775360502, -0.0034246142, 0.0230584368, 0.00410763966, -0.0217050333, -0.0222868714, 0.00498355692, -0.000434401096, -0.00517961057, -0.0113205165, -0.0205413606, -0.00183563121, -0.0023210221, -0.0210473053, 0.0155578041, -0.0160005055, 0.008980521, -9.59516474e-05, -0.00960030314, 0.0103528965, 0.0155451559, 0.00206804951, -0.0237414613, 0.0408044532, 0.00343093858, 0.00893625058, 0.00794333406, -0.00888565648, 0.00445863884, 0.00865165703, 0.00494561112, 0.0199848209, -0.0133569445, 0.000579860236, 0.0293701, 0.0129648373, 0.0203389823, -0.00694409292, -0.016025804, 0.004230964, -0.00507842144, 0.0233873017, -0.00548001518, 0.0030989123, 0.00365228951, -0.00412977487, -0.0148368329, 0.00523652928, 0.00907538552, 0.00808246899, 0.0215406027, 0.00506577268, 0.0249304324, 0.0227548704, 0.00563812302, -0.0107323555, -0.00642866176, -5.28672826e-05, -0.000449026062, -0.00873387326, -0.000632035779, -0.014887427, 0.00761447, 0.00669112056, -0.00949279, -0.010707058, 0.0172147732, -0.00834176596, 0.00330761448, -0.00896787271, 0.00845560338, 0.00761447, 0.008152036, 0.0260561593, -0.00806349609, 0.00527763739, 0.0045092334, 0.0150645077, 0.0127814319, 0.0189982299, -0.0125600807, 0.00867695455, 0.014368834, 0.0158107765, 0.0113711106, -0.00785479415, 0.0259549711, -0.0164938029, -0.0236149766, -0.00209809, -0.0201366059, 0.0125917029, 0.0107703013, 0.0272957254, -0.0160763972, 0.000931254763, 0.00210599555, 0.0353655443, 0.0153427776, -0.00183879328, 0.0194156338, 0.01257273, 0.0072792815, 0.0153933717, 0.0174424481, 0.00176290155, -0.0119466232, 0.00284752087, 0.00672906637, -0.0113774352, -0.0201492533, 0.0206678472, -0.00985327642, -0.0151403993, -0.00573931169, 0.00852517, -0.00760814594, 0.0197318494, 0.0046610171, -0.0254869722, -0.00576777151, -0.0121047301, 0.0101694912, -0.0189855807, -0.00362383, 0.0100999242, -0.00480331387, -0.014887427, 0.0184543394, 0.0283076148, -0.0125158103, -0.029876044, -0.00143719965, -0.00564760948, 0.00108699093, -0.0115608396, 0.00177396915, -0.0301543139, -0.0177207179, 0.0114786234, -0.00672906637, -0.00808879361, -0.0355679244, -0.0174930431, -0.00704528205, -0.0117885154, 0.0200354159, -0.0073362, -0.0228687078, 0.00353845186, 0.0311156083, -0.00457880087, -0.0162534788, 0.00853782, 0.0185934734, -0.022830762, 0.00605552737, -0.0173539091, -0.00560650136, 0.0156589933, -0.0182013661, 0.0272198338, 0.0154819125, 0.0097520873, -1.47484898e-05, -0.0240323804, -0.00758917257, 0.0100050597, 0.0108082471, 0.0207690354, -0.00276372372, -0.0114786234, -0.00259929174, 0.0192259047, -0.00610295963, -0.00343093858, 0.00835441425, 0.000731643697, 0.0176448263, -0.00966987107, 0.00902479142, -0.00763344299, -0.00523020513, -0.0192765, 0.00541993417, -0.0219200607, -0.00612509483, -0.00774095627, 0.00350366812, -0.0331646837, -0.00878446735, -0.0145459147, -0.00488869194, 0.0159372631, -0.0183405, -0.0097900331, 0.000452583481, -0.0113078672, -0.00654566148, 0.00194946874, 0.0264609158, -0.00571717694, 0.00968884397, -0.000532032631, 0.004455477, -0.00909435842, -0.0156716425, -0.00774728041, -0.0112825707, 0.00138186186, -0.00302460161, 0.0178598538, -0.0138122942, -0.00315424986, 0.0196306594, -0.0264103208, 0.0102896532, -0.000355149561, -0.0104034906, -0.00335820904, -0.011086517, -0.00732987607, -0.00308942585, 0.0140905641, 0.00796863157, -0.00750695681, 0.0167088285, -0.0175689347, -0.00875917, -0.00256292685, -0.00591323059, 0.00143878069, 0.00282696681, -0.0333923586, -0.0196939036, -0.0116999745, -0.00372818112, 0.0154060209, -0.0163926128, 0.0271692388, -0.0184669867, 0.00067116745, -0.0278775617, 0.0119213257, 0.0097900331, 0.00943587162, -0.0162281804, -0.00863268413, 0.0113394894, 0.012383, 0.0149000762, -0.00667847227, 0.0115861371, -0.00169017201, -0.0173539091, -0.0076713888, 0.00445231469, -0.0220212489, -0.0227928162, 0.00452188216, 0.00349418167, 0.00994814094, 0.0101125725, 0.0213888194, -0.00806349609, 0.00328864157, -0.0153427776, 0.0249177832, 0.00046286048, -0.0232861117, 0.000547052885, 0.00925246626, -0.00185460411, 0.00420882879, -0.00192417146, -0.0114470022, 0.00205381983, -0.0364786237, -0.0261573493, 0.00119450421, -0.00868327823, 0.0131545663, 0.030533772, 0.0055590691, -0.0165696945, -0.000468394253, 0.0173412599, 0.00773463212, 0.00282854796, 0.0162028838, 0.0133442953, 0.014609158, -0.00671641808, 0.0201492533, 0.0232355166, -0.00478117866, -0.0116430558, -0.0175689347, 0.00612193253, -0.000659704674, -0.00616304064, 0.0124019729, -0.00233525177, -0.0379964598, 0.00325702, 0.0209208205, 0.000566816365, -0.00330129, -0.0220086016, -0.0122818109, -0.00148700352, 0.0190235265, 0.00710220076, 0.0101125725, -0.0188337974, -0.00357323559, 0.0346066281, 0.0123766763, 0.00673539098, 0.00190203649, 0.0122881355, 0.0155578041, 0.0119529469, -0.0215659, -0.018669365, -0.00698203873, -0.0199215785, 0.027270427, 0.0362762474, -0.0116240829, 0.020414874, -0.00645395881, -0.0150265619, 0.000182416828, 0.00147198327, 0.0188211482, 0.00894257519, 0.0198456869, -0.0387300774, 0.0094105741, 0.00560333906, -0.0203895774, 0.0256261062, -0.000908329093, 0.0163293704, -0.00973943807, 0.00846825168, 0.0165696945, 0.0119402986, 0.00788641535, -0.000266806863, -0.00550531223, -0.0217682775, 0.0172021259, 0.00148067926, -0.00897419639, -0.0107133826, 0.00183879328, -0.00237477873, 0.020414874, -0.0055369339, 0.00183879328, -0.0291930176, 0.0150518594, 0.0289653428, 0.000473532768, -0.0204401724, -0.00753225386, 0.00418036943, -0.011415381, -0.00456615211, 0.0254996214, 0.00944219623, 0.00189729314, 0.0208069813, -0.0185428783, -0.0016055844, -0.00719074113, 0.00554958265, -0.00568871759, 0.00689982297, 0.000768799, -0.00103797752, 0.00293289917, -0.0187326074, -0.0259296745, -0.0274222102, -0.00527447509, -0.00106011261, 0.0162534788, -0.0220338982, 0.0240070838, -0.0321022, 0.00256925123, -0.012762459, 0.0384518094, -0.00184827973, -0.00745636225, 0.0160131548, 0.0287123695, -0.0291930176, 0.00986592472, 0.00193523907, -0.00610612193, -0.0020221984, -0.0236529224, 0.00198741467, 0.0237667598, -0.0115861371, -0.00715911947, 0.0264356192, -0.0103149507, 0.0300278272, 0.00383253233, -0.0225904379, -0.0272451304, -0.00640652655, 0.000488157733, -0.00267044012, 0.00624209456, 0.00166171265, 0.00987857301, 0.0266379956, -0.0184796359, 0.00181823934, 0.00684290426, -0.0021312926, -0.0102390591, 0.0158234257, -0.00460409792, 0.0194409303, -0.00867063, 0.00693144463, 0.00941689871, -0.0116999745, -0.00183721224, 0.00693144463, -0.0131166205, 0.00396850472, 0.0036111814, -0.00392423477, 0.00775992917, 0.00771565922, -0.0221477356, -0.0235643815, -0.00184986088, -0.00546420459, -0.00575512275, -0.0055559068, 0.0283329114, 0.0108714905, -0.00286965584, -0.00584682543, 0.0237667598, -0.00370920822, 0.0472552478, -0.00366493803, -0.00770301046, -0.0327599309, -0.00453769276, 0.00845560338, -0.012383, -0.00344991148, 0.00940424949, 0.00833544135, -0.0117315967, 0.0110548949, 0.00905008893, 0.00401909929, -0.00444282824, -0.00507209729, 0.0198962819, -0.00665317476, 0.0310397167, -0.00146803062, -0.00763344299, -0.00567606883, -0.00190677971, 0.00140478753, 0.0413609929, -0.0171388816, -0.00489817839, -0.000631640549, -0.0112066781, -0.00556539325, -0.01091576, -0.00927143916, 0.012642297, -0.0137237543, -0.0211864412, 0.00522071822, 0.0093410071, -0.0121616498, 0.0186820142, -0.0101631675, 0.00089568051, 0.0194662288, 0.000407522777, 0.0272957254, -0.00270048063, -0.00708955247, 0.00558436615, 0.00987857301, 0.000706346473, -0.0172021259, -0.0246395152, 0.0165696945, -0.010378194, 0.0116683533, -0.0478623845, 0.0137869976, -0.00890462939, 0.010656463, -0.011864407, 0.00679863384, 0.00169175304, -0.0332152806, -0.0172780175, -0.0123513788, 0.00915127713, 0.00294870976, -0.00458828732, -0.0160890464, -0.0134075386, -0.000426890969, -0.0100872759, 0.00552428514, -0.00775992917, -0.00589425769, 0.00173444219, -0.00260719704, -0.0173918549, 0.0173033141, -0.0180495828, -0.0257272962, -0.00917657465, -0.0198962819, 0.0168606117, -0.0111054899, 0.00790538825, 0.00411396427, -0.027371617, -0.0336706303, 0.00504047563, -0.00514798891, 0.0242221095, -0.0057993927, -0.0124209458, 0.00311156083, 0.00577093335, -0.022451302, -0.0153301293, -0.000864058966, -0.0221603848, -0.0162787754, 0.0231849235, 0.0257778894, 0.00714647118, -0.00717176823, 0.00280799391, -0.00691879587, -0.0212623328, -0.00901214313, -0.00861371122, 0.0207437389, 0.0124778645, 0.00506261084, 0.00700733624, -0.0136352135, 0.0287376679, -0.0038546673, -0.0221983306, 0.0114027318, 0.00855679251, -0.00340880337, -0.00748798391, -0.00495825941, 0.0304578803, -0.0220338982, -0.00653301273, -0.0145206172, -0.000910700706, -0.0162408296, -0.017821908, 0.00146961166, -0.0263850242, 0.0222236272, -0.0212370344, 0.00418985588, 0.00541361, 0.0188843925, -0.00872122403, -0.00543890707, -0.00418036943, -0.0247154068, -0.00998608675, -0.0263850242, -0.00868960284, -0.0217050333, 0.000834018458, 0.00308468263, -0.00116604473, -0.000290325377, 0.0319757164, 0.00368391094, 0.0314191766, -0.00696939044, 0.0194662288, 0.0159372631, -0.00465469249, 0.006570959, -0.0084998738, 0.00818365812, -0.0258411337, -0.0063654189, 0.0221477356, 0.0149633186, -0.00142771308, 0.0278016701, 0.00664685061, -0.00648241863, -0.0131292688, 0.00963192526, -0.00094548444, -0.0113837589, 0.00665317476, 0.0155325066, 0.0131039713, -0.0178472046, -0.0173665565, -0.00483809784, 0.0203642808, -0.00487288134, -0.00251865666, 0.0230837334, 0.00360485702, -0.0134328362, -0.00554325851, -0.00601758156, 0.00251707574, 0.0138122942, -0.00119450421, 0.0104287881, -0.0171641782, -0.0030989123, 0.00958133, 0.0259802677, -0.0105046798, 0.00343726273, 0.0132431062, -0.00320326327, -0.0164558571, 0.0108525166, -0.0408803448, -0.0223627631, 0.019048823, -0.00290602073, 0.0173159633, -0.00844927877, -0.0147609413, 0.0222236272, -0.00556855556, -0.0104034906, -0.0237414613, -0.000994497794, -0.000923349347, -0.0100936, 0.0100619784, -0.00244750828, 0.0118264612, -0.00900581852, 0.0254490264, -0.019807741, -0.01160511, 0.0176195297, -0.0172274224, 0.0201113075, -0.0290918294, -0.000193385567, 0.0201998483, -0.0328611173, -0.00676701218, 0.00633063493, 0.0055400962, -0.00737414602, 0.00185618515, 0.0187958516, -0.0133189978, -0.010966355, 0.00741209229, -0.0192259047, -0.0168226659, -0.0290412344, 0.0132051604, 0.00713382242, 0.00611877069, -0.0166455861, 0.00922084507, -0.00845560338, -0.017910447, -0.0153301293, -0.00877814274, -0.000647451321, -0.000671958, -0.00550531223, -0.0024649, 0.00232576532, 0.0063843918, 0.0101821404, -0.010966355, -0.0134960786, -0.0196559578, 0.0171009358, -0.0134075386, -0.000825322524, 0.00161111809, -0.0126233241, -0.00923981797, 0.0192132555, -0.0169997476, 0.00881608948, -0.00739311893, 0.00559701491, -0.0171894766, -0.0149886161, -0.0246395152, -0.0254110806, -0.0253098905, 0.00110359222, 0.0105552748, 0.0345307365, -0.00387996458, 0.00378826214, 0.0220971406, 0.0296230707, 0.00423412584, -0.00105615985, -0.039514292, 0.0229446, 0.00811409, -0.0241715144, 0.0149886161, -0.0336706303, -0.0186061226, 0.00760814594, -0.00851884671, 0.0197065528, 0.0247786492, -0.0233746525, -0.00208386034, -0.00323646609, -0.00262775109, 0.0108525166, -0.00264198077, -0.00175657729, -0.021224387, -0.016114343, -0.000266806863, -0.018150771, 0.0101188971, 0.0162914246, 0.0219959524, -0.00722236279, -0.0109220846, 0.0137869976, 0.00930938497, 0.0302302055, -0.00877814274, 0.00149965216, -0.0104224635, -0.0403491035, 0.0175562855, 0.0102390591, -0.0296989623, -0.0140020242, 0.0219074115, -0.0169997476, -0.0100746267, 0.000264830509, -0.0161775872, -0.0186440684, 0.00239375164, -0.0220338982, 0.00718441699, 0.00423728814, -0.00480015157, 0.0131039713, 0.0154313184, 0.0157222357, 0.0108082471, 0.0219074115, 0.00688717421, -0.00142534147, -0.00770301046, 0.00910700765, -0.0108019225, 0.00349101936, -0.00742474059, 0.0229446, -0.0143435365, -0.00372818112, -0.0103655448, -0.00183563121, 0.0172021259, 0.00452820631, 0.00800025277, -0.032709334, -0.0126865674, 0.00498671876, 0.00921452, -0.0328611173, -0.00376612693, -0.00356374914, 0.0110928407, -0.0111624086, -0.00583101436, 0.00160795602, 0.00272419676, 0.000500015798, 0.00470844936, -0.0204022266, 0.0109284092, -0.0180369336, 0.0202251449, -0.00905641261, -0.00337718194, 0.00725398446, 0.0140526183, 0.011984569, -0.00264356192, -0.00649506692, -0.00355110038, 0.00118501775, -0.0311409049, 0.02193271, 0.000587370363, -0.000256727479, 0.00218188716, -0.00586263603, -0.013331647, -0.00425309874, -0.00925879087, -0.00703263329, 0.00608082488, -0.00369023532, -0.0231090318, -0.0170882866, -0.00312737166, -0.0127687836, -0.000822160393, 0.0238932464, -0.00380407297, -0.00270522386, -0.00388628896, 0.0072603086, -0.0238553, 0.00690614711, 0.0108651659, 0.00425626105, 0.00926511548, 0.0136731593, 0.00650771568, 0.000200599228, 0.0020490766, 0.00249177846, -0.00605236506, -0.0105110044, 0.00188780669, -0.0021233873, 0.0148494812, 0.0151024535, -0.00422780169, 0.0128509989, -0.00216765748, 0.0138375917, 0.00900581852, 0.00970781688, 0.00357007328, 0.00370288384, 0.00788009074, 0.00999241, 0.00574879861, 0.0200227667, 0.0267138891, -0.00297400705, 0.00636858074, 0.0154945608, 0.0208828729, -0.0220086016, 0.000788167235, -0.00451555802, 0.0159499124, -0.0223754104, -0.00284752087, 0.0169997476, 0.0232355166, -0.0120161902, 0.0110801924, 0.00183721224, 0.0236402731, 0.00513534, -0.0187579058, 0.00776625331, -0.0120794335, -0.00563179841, -0.00403807219, 0.00727295736, 0.027371617, -0.00588160893, -0.0318998247, 0.00296610175, 0.00628636498, 0.01082722, 0.00677966094, 0.00400012638, -0.00658360729, 0.0192765, -0.00262617, -0.000558515661, -0.00612825714, -0.00234315707, 0.0077093346, 0.00486023258, -0.00408866676, -0.0139008351, 0.00785479415, -0.00139134831, 0.031621553, 0.0195041746, -0.00194314448, 0.0261320509, -0.00763344299, -0.00598279806, 0.00143719965, 0.0120731089, -0.0177460164, 0.00561598781, 0.0344042517, -0.020516064, -0.00931571, -0.0204401724, -0.0185049325, 0.0274475086, -0.0132178096, 0.00605868967, -0.00461042253, -0.00273210229, 0.0219200607, 0.00502782688, 0.0388818607, -0.00738047063, -0.00363964075, 0.00273052114, -0.00415191, 0.010517329, -0.0105615985, -0.00832911674, -0.0397166722, -0.00330761448, 0.0194662288, -0.00596066285, 0.00522071822, -0.0256261062, -0.000816626591, 0.00756387552, 0.00540728541, 0.00451555802, 0.00154629396, 0.0148747787, -0.00637490535]
28 Sep, 2022
Mongoose Document Model.listIndexes() API 28 Sep, 2022 The Model.listIndexes() method of Mongoose API Lists the indexes currently defined in MongoDB, whether they are the promise, undefined or void. Syntax: Model_Name.listIndexes() Parameters: The Model.listIndexes() method accepts one optional parameter: callback: It is a callback function that will run once execution is completed. Return Value: The Model.listIndexes() function returns undefined if callback is specified, else it returns a promise. Setting up Node.js application: Step 1: Create a Node.js application using the following command: npm init Step 2: After creating the NodeJS application, Install the required module using the following command: npm install mongoose Project Structure: The project structure will look like this: Database Structure: The database structure will look like this, the following documents are present in the collection. Example 1: In this example, we have established a database connection using mongoose and defined model over userSchema, having two columns or fields “name” and “age”. In the end, we are using listIndexes() method on the User model to list the indexes of schemas. app.js: Write down the below code in the app.js file: App.js // Require mongoose module const mongoose = require('mongoose'); // Set Up the Database connection mongoose.connect( 'mongodb://localhost:27017/geeksforgeeks', { useNewUrlParser: true, useUnifiedTopology: true }) const userSchema = new mongoose.Schema( { name: String, age: Number } ) // Defining userSchema model const User = mongoose.model('User', userSchema); console.log(User.listIndexes()) Steps to run the program: To run the application execute the below command from the root directory of the project: node app.js Output: Promise { <pending> } GUI Representation of the Database using Robo3T GUI tool: Example 2: In this example, we have established a database connection using mongoose and defined model over studentSchema, having three columns or fields “name”, “school”, and “class”. In this example, we are passing a callback function so this method will return undefined in that case. app.js: Write down the below code in the app.js file: App.js // Require mongoose module const mongoose = require("mongoose"); // Set Up the Database connection mongoose.connect("mongodb://localhost:27017/geeksforgeeks", { useNewUrlParser: true, useUnifiedTopology: true, }); const studentSchema = new mongoose.Schema({ name: String, school: String, class: Number, }); // Defining studentSchema model const Student = mongoose.model("Student", studentSchema); function abc(){ return"Hello"; } console.log(Student.listIndexes(abc)) Steps to run the program: To run the application execute the below command from the root directory of the project: node app.js Output: undefined GUI Representation of the Database using Robo3T GUI tool: Reference: https://mongoosejs.com/docs/api/model.html#model_Model-listIndexes Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API
https://www.geeksforgeeks.org/mongoose-document-model-listindexes-api/?ref=next_article
Languages
Mongoose Document Model.listIndexes() API
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.000705735, 0.0275776181, -0.0187597331, 0.0563603118, -0.00639615348, 0.0448194258, 0.00867883861, 0.0240551, 0.00545758754, 0.0431972109, -0.0122940559, 0.00374847045, -0.00203355961, -0.00305613317, 0.0313087068, 0.0096695479, -0.0651666075, 0.0290839598, 0.0039946991, 0.00867304485, -0.0300804619, 0.00644250261, 0.0311464872, 0.0199995674, -0.0233366918, 0.0337420292, 0.029153483, -0.0200459156, -0.0187481456, -0.0366156623, -0.0167203806, 0.0111121582, -0.0107123982, 0.0336725041, -0.00464937789, -0.0238465294, -0.00928137545, -0.0212973375, -0.0392575525, -0.0193738565, 0.00894534495, -0.0261871498, -0.0358045548, 0.0127807204, 0.00547496835, -0.0228732023, -0.0197562352, -0.0181224346, -0.00280990452, 0.0296401475, 0.0111179519, 0.0076765432, -0.0312160105, -0.013139924, 0.0121781835, 0.0149127711, -0.0233366918, -0.00497961417, 0.0121434219, -0.0274617467, 0.0157934017, -0.0282265041, 0.0286899935, 0.0104980348, 0.0279947594, 0.0511228815, -0.0238465294, 0.0332090147, -0.00176125974, -0.00904383697, 0.000643815729, 0.0233946275, 0.0199995674, 0.00400628662, -0.0213784482, -0.0182962436, 0.00615861546, 0.0174503755, 0.0112685859, 0.0162684768, 0.0186322741, -0.0374499448, 0.0111005707, 0.0162916519, -0.005408342, -0.0292461812, -0.00189016771, -0.0443327613, -0.00427569, 0.00272300025, 0.014263886, -0.0236495454, -0.0195940137, 0.0226066951, -0.0133484947, -0.000983466511, 0.000593483681, -0.0100345453, 0.00109282113, 0.00197996874, 0.00736368774, 0.0090901861, 0.00607171096, -0.0328150503, -0.0201038532, -0.0317953713, 0.0526060462, -0.0210887678, 0.0478784554, 0.00965796, 0.0296633206, 0.0135223027, -0.0106544625, 0.0129197668, 0.0282960273, 0.0397905633, -0.0111237457, 0.00406132592, -0.0107355732, 0.000772723695, -0.00888740923, 0.00550683355, 0.0174735505, 0.0260249302, -0.0597437844, 0.0244490653, -0.00160338357, 0.0442168899, 0.00334581407, 0.0241941456, 0.000501872099, 0.0150981667, -0.0273458734, -0.0143334093, 0.00896272622, 0.0269519091, 0.0261176266, 0.0158976857, -0.000727823179, -0.0267433375, -0.0407870673, -0.0281801559, -0.00655258121, -0.0178791042, -0.0040873969, 0.0386318415, -0.00549524603, 0.00282438844, -0.0029866097, 0.0024231805, -0.0079893982, -0.0334871076, 0.019686712, -0.0119927879, -0.0104864473, -0.0146115031, -0.0211003553, -0.026928734, 0.0272763502, 0.0336725041, 0.0227805041, -0.0201617889, 0.025283346, 0.0312160105, 0.00762440031, 0.0453756116, 0.0017554661, -0.00387593, -0.0261176266, -0.00801836606, 0.0029866097, 0.0215406697, 0.0130008776, -0.0123635791, 0.0107008116, -0.0244258903, 0.0307061728, -0.0136613501, 0.0300572868, -0.034576308, 0.00733471941, -0.0171838701, 0.00897431374, 0.00449005328, 0.0337188542, -0.00803574733, -0.00118117372, 0.000392155489, -0.00707400683, 0.0150170559, -0.0220968574, -0.0204282943, 0.0599755272, -0.013313733, -0.000487388053, 0.000647798821, -0.00419457909, 0.0168478396, 0.00109789055, 0.0130935749, 0.0115292985, -0.0295242742, 0.00972748362, -0.0193738565, 0.031749025, -0.0416908711, 0.0371486731, -0.0486663878, 0.0282960273, -0.0175314862, -0.0435448289, 0.0278557129, 0.00042329618, -0.0383305736, 0.0329077467, 0.0271141287, 0.0260249302, 0.00224502664, 0.0320271179, -0.010167799, 0.00148171769, 0.00202776608, 0.0110368412, 0.00674956432, -0.0259090569, -0.0219346359, 0.00957685, 0.0191189367, 0.0305207763, 0.0165233966, -8.83526664e-05, 0.00720146624, -0.00376585126, -0.00562560232, 0.000856731145, 0.00511286734, -0.000995778, -0.0411346853, -0.0111295395, 0.0109789046, -0.00644829636, 0.0332090147, 0.0186670348, 0.0106718428, 0.0243100189, -0.0123519925, -0.034553133, 0.0062455195, 0.0139046814, 0.0295474492, 0.00660472363, -0.0334871076, -0.0305671263, 0.0102952579, -0.00724202162, -0.017461963, 0.0120970728, 0.00684805587, -0.0153299114, -0.00566326082, 0.0184468776, -0.00301268115, -0.0479248, 0.0127343712, 0.00242607738, 0.00747376634, -0.00106892246, -0.0359436, 0.0033139491, -0.00752590923, 0.0142407119, -0.0186786223, 0.0345067866, 0.035248369, 0.000735789421, 0.0100751007, -0.0112280305, 0.025005253, 0.0135338902, -0.00657575577, 0.0245417636, -0.012514214, 0.00489271, -0.0124215158, -0.0190146528, -0.0344140865, -0.0145999156, -0.0181687847, -0.00293301884, 0.021135116, -0.0275080949, 0.016986886, 0.0455841832, 0.0206716266, -0.00117827696, -0.00942621566, -0.0277630147, 0.0375889912, -0.0150865801, 0.00846447516, -0.0325833037, -0.00807630271, -0.0488981307, -0.00169897836, 0.00122535008, -0.00059131108, 0.0299877636, -0.0173576772, -0.00757225789, -0.0241477974, -0.0162221286, -0.0500568561, -0.014090078, -0.0483882912, -0.0300109386, 0.0152024524, 0.0193970315, 0.0254455674, 0.0130356392, -0.012189771, -0.0204167087, -0.0190146528, -0.0411810316, -0.00576464925, -0.0022044715, -0.0375889912, -0.010515416, -0.0152719757, -0.00675535807, -0.0128502436, -0.0144724566, -0.000182408417, 7.47738741e-05, 0.0416908711, 0.0200575031, -0.0137308734, -0.050983835, -0.0348080546, -0.00438576844, 0.0181571972, -0.000842247158, 0.00174967246, -0.00989549886, -0.0150518185, 0.0338579, -0.00316331512, -0.0433826074, 0.0554796793, 0.0203703586, -0.0243331939, 0.000670249108, -0.0132094473, 0.0195244905, -0.0262335, 0.0326991752, 0.0118247727, -0.00370212155, -0.0179833882, -0.0203703586, 0.05765808, -0.028852215, -0.0271141287, 0.0125837373, 0.00829066616, -0.0108456519, -0.0444949828, -0.000386723957, -0.0222474914, -0.0487590842, 0.00344720227, -0.0305903, 0.0198257584, 0.0447035506, -0.00815741345, -0.0128850052, -0.0100287516, 0.0182151329, -0.000966809923, 0.0373108946, 0.0113496967, 0.0332321897, 0.0543673076, -0.00474207569, 0.0142870601, -0.0222590789, 0.0300109386, -0.0103995437, -0.0232671667, 0.0213205125, -0.0092002647, 0.00590369618, 0.0199416317, 0.0216449555, -0.0250516012, 0.0720726, -0.0123983417, -0.00957685, 0.00836598314, -0.00981438812, -0.0305671263, 0.0117842183, -0.0270909555, -0.0069871028, 0.0183425918, -0.0298950654, -0.0307988692, 0.019211635, -0.0301036369, -0.0205094051, -0.00774606643, -0.00363259809, -0.00629766192, -0.00127749261, 0.0583996624, 0.042965468, 0.0315868035, 0.00408160361, 0.0435448289, 0.00637297938, -0.0179718, 0.0273922235, -0.0274849217, -0.0196403638, 0.00932193082, -0.0292461812, 0.0013477403, -0.058306966, -0.0390258059, -0.0581679195, 0.00673218351, -0.0361521728, 0.00545179378, -0.00541123888, -0.00942621566, 0.0167667288, -0.0376353376, 0.0305207763, 0.000219614303, -0.0284582488, -0.00433941931, -0.000832108315, 0.0538574681, 0.00117827696, 0.0282496791, -0.0389099345, 0.025306521, -0.0704040378, 0.00678432593, -0.0126184989, 0.00670321519, -0.000857455365, 0.0231049471, -0.021784002, 0.00239276397, -0.00891637709, -0.0551088899, 0.039095331, 0.00622813869, 0.0197794102, -0.00420326926, 0.00273893261, 0.0121665969, -0.0108514456, 0.00569512602, 0.0064251218, -0.0167435538, 0.0214016233, 0.0585850589, -0.00779241556, 0.0258858819, 0.0265347678, -0.0143797584, 0.0370559767, 0.0450975187, 0.0106254946, -0.00156572508, -0.0242868438, -0.00719567295, -0.00413374603, 0.0335798077, 0.00325601292, -0.00712035596, -0.0288985632, 0.0403235778, -0.0187481456, -0.00703924522, -0.0138351582, 0.0438229218, -0.0241709724, -0.0286668185, -0.0117262816, -0.0188408438, -0.0245417636, -0.014090078, -0.00383247784, -0.041296903, 0.00270561944, -0.00707980059, 0.00903224945, 0.0395356454, 0.0159903839, -0.00478842482, -0.0532085821, 0.0269519091, -0.0304049049, 0.0142870601, -0.0316563249, -0.0192811582, 0.03842327, 0.00105950783, -0.0344604366, -0.0143565843, -0.0103763686, -0.0141016645, 0.00564588, 0.0070971814, 0.00628607487, 0.00427569, 0.0266274661, 0.00568643538, -0.0303353816, -0.013464367, 0.0159092732, -0.00836598314, 0.00113627326, -0.0096058175, -0.0278557129, -0.00366446306, -0.0260712784, -0.0103937499, -0.0115466798, 0.00617599627, 0.0403699279, 0.02882904, -0.0339737721, -0.00472759176, -0.00170477189, 0.00973907113, 0.00371370884, -0.00747956, -0.0167435538, -0.00416850764, -0.0227109808, 0.0224097129, -0.0307061728, 0.0206484515, -0.000553290476, -0.0065352004, -0.0144492816, -0.0125258006, -0.00254774326, -0.000598553102, 0.0475540124, -0.0350397974, -0.0201154388, -0.00165552623, -0.00621655164, -0.0428032465, 0.00522294594, 0.00811685808, 0.0046812431, 0.0252601728, 0.0325369537, 0.000272481062, 0.0242404956, 0.0196983, -0.00500858203, 0.0259785801, -0.0328613967, 0.0250979513, 0.0213668607, 0.0306134745, 0.00123621314, -0.0185975116, 0.0119580263, 0.026928734, 0.008817886, 0.0118653281, 0.0397905633, 0.00163524854, 0.000126011175, 0.0312160105, -0.000693785667, 0.00711456221, 0.00753749628, -0.000382740836, -0.0157470517, -0.00712035596, 0.0269519091, -0.0199184567, 0.0289449133, 0.00684805587, -0.00472759176, -0.0233019292, -0.0158281624, -0.0170911718, 0.00168304588, 0.00127242319, 0.0226878058, 0.000143029931, -0.00912494771, -0.0123519925, 0.0060659172, -0.00525770802, 0.0149822943, 0.0270909555, 0.00237972825, 0.00222619739, -0.0286899935, 0.0179602131, -0.0463257656, -0.0111237457, -0.0131167499, 0.00319518, 0.0211235285, -0.0302658565, -0.005283779, 0.038122002, -0.0130240517, 0.0262103248, 0.00992446672, 0.0319807678, 0.0286204703, 0.00153241178, -0.00365287578, 0.0189914778, -0.0186091, -0.0160367321, 0.00428148312, -0.0198952816, -0.0119116772, -0.0268360358, -0.0178095791, -0.00692337286, 0.0096058175, 0.0355264619, -0.00570381619, -0.00399759598, -0.0156427678, 0.0124099283, 0.0153530864, 0.0375194661, 0.0169405378, 0.0749462321, 0.00507810572, 0.0195476655, -0.0204051211, 0.0136381751, 0.0120391371, -0.0134991286, 0.0131978607, 0.0229658987, 0.0145072183, 0.0119232647, -0.0140205538, -0.0259090569, 0.0254455674, 0.0298950654, -0.00731154531, 0.00522294594, -0.025005253, -0.00860352162, 0.0107297795, 0.0228732023, 0.019559253, -0.017114345, -0.00521715265, 0.028805865, -0.000178968461, 0.0254455674, -0.0217955895, -0.0378207341, 0.00200314331, -0.0070044836, 0.00584286312, -0.0247039851, -0.0670669153, 0.0166972056, 0.0106486687, -0.00566905458, -0.0107471598, -0.00168739108, 0.00857455377, 0.0291998312, -0.0181687847, 0.00154110219, -0.0247039851, -0.0287826918, -0.00851661805, -0.0276471414, -0.0404858, 0.00477973418, 0.0128270686, 0.052467, 0.0138930948, -0.0153994346, 0.0148548353, 0.013615001, 0.016986886, -0.0139626181, 0.0240782741, 0.00110078731, -0.00414243666, 0.0106486687, 0.00214653532, 0.035248369, -0.00242028362, 0.00749114715, 0.0155964177, -0.0205209926, -0.0136845242, 0.01923481, -0.00284756301, 0.0455146581, -0.00991287921, 0.0231049471, 0.00179022783, -0.0041047777, -0.00679591345, 0.00773447938, 0.00446687918, -0.0504276454, 0.0201733764, -0.00920605846, -0.00260712788, -0.0138003966, -0.0176010095, -0.0319112465, 0.0240782741, 0.00156137988, -0.00780400261, 0.00778082805, 0.00151068578, 0.00756067084, -0.00261147297, 0.0115061244, 0.00722464081, -0.00400049286, 0.00139408919, 0.0126532605, 0.0041743014, -0.00249994593, -0.0185859241, -0.00331684598, -0.00402946072, 0.022884788, 0.0150981667, 0.00615861546, -0.0257700104, -0.0213784482, -0.00918288343, 0.00108847592, 0.0518644638, -0.03172585, 0.0195824262, 0.0051910812, 0.00443791086, -0.00875994936, 0.00819217507, 0.00502885971, 0.00497092353, 0.00557346, 0.0153183248, 0.024982078, -0.0110194599, -0.00103995437, -0.0252601728, -0.0505666919, 0.00396862812, 0.0379134305, 0.0194665547, 0.0152835632, 0.0187597331, 0.0129892901, -0.00174532726, -0.0054633813, 0.0139857922, 0.0241709724, -0.0132210348, -0.0225371718, -0.00396862812, 0.0155732436, 0.0406016707, 0.0187133849, 0.0133021455, 0.00840653852, 0.0277630147, 0.000847316522, 0.0224908236, -0.00593845779, -0.0204398818, -0.00920605846, 0.0320502929, -0.0135223027, -0.0139510306, 0.00307061733, 0.0330236182, -0.0167435538, -0.0279252362, -0.0420384891, 0.0365461372, -0.0220273342, 0.050659392, 0.00741583, 0.00921764504, 0.00471310783, -0.00131804799, -0.00202921452, 0.0143218227, 0.00110658095, 0.0115061244, -0.024657635, -0.0256541371, 0.0238233544, 0.00622813869, -0.0141596012, 0.0123867542, -0.0271141287, 0.0474149659, -0.00802416, -0.0100171641, -0.0402077064, 0.0167899039, -0.0284119, 0.0167203806, 0.0147273755, 0.0170332361, 0.00907280482, -0.00312565663, -0.0122940559, -0.00272300025, 0.0115640601, -0.046441637, 0.0335566327, 0.00826749206, 0.0317953713, -0.0422238819, 0.0293620527, -0.00376874814, 0.0240782741, -0.00206832145, 0.00344720227, -0.0159672089, -0.00719567295, 0.0189798903, 0.0248198565, 0.0319575928, -0.0163843501, 0.011442394, 0.0221779682, -0.020984482, -0.000863249, -0.00644250261, 0.00789670087, 0.0238465294, -0.022757329, -0.0479711518, -0.00480870251, -0.00480870251, 0.0235684365, -0.00604853639, 0.00192492933, -0.00242028362, -0.00977383275, 0.012792307, 0.000150271953, -0.00597901316, -0.0400918312, -0.0373804197, 0.0165349841, 0.0136497626, -0.00987232383, 0.0227689166, 0.00455668, 0.00876574311, 0.00200169487, 0.000147194092, -0.0136613501, -0.0107355732, -0.0455146581, 0.0148432478, -0.0274617467, -0.0178791042, -0.017114345, -0.00844709389, -0.00982018188, -0.0346458331, -0.0285509471, 0.018887192, -0.0330467932, -0.00711456221, -0.0282033291, 0.0226182826, -0.00575595908, -0.0114887431, 0.0296633206, 0.0157238785, -0.00730575155, 0.00735210069, 0.00274762302, -0.00318938633, -0.0207063891, 0.0276471414, -0.0414359532, 0.0348080546, -0.0230701845, 0.0450279936, 0.0246112868, -0.0120854862, 0.0348080546, -0.0138351582, 0.00473048864, 0.0309147425, -0.0233019292, 0.0253760442, 0.00261581829, -0.000313217432, 0.0152024524, -0.00665107276, 0.0100577194, -0.013290558, -0.00216970965, -0.00178298575, 0.0152488006, 0.00817479379, 0.0124562774, -0.0134527795, -0.00723043457, -0.00178588252, 0.011367077, -0.0253992192, 0.0231744703, 0.00721305376, -0.00300978427, 0.038446445, -0.0379134305, -0.0337188542, 0.00654099416, -0.00858614128, -0.00618758332, 0.041968964, 0.013290558, -0.0182614829, 0.00186119962, -0.013313733, -0.00819796883, -0.0387245379, 0.017288154, -0.0123288175, 0.0405321456, 0.0443791077, -0.0141827753, 0.00455088634, 0.00645408966, -0.0186670348, -0.0209497213, 0.0153994346, -0.0111643011, -0.00510417717, 0.00398021517, 0.0187133849, -0.0172302183, -0.0128618302, -0.0118769156, 0.0109035876, 0.0280642826, -0.0223749503, -0.0274617467, -0.0306366496, -0.00428727688, -0.00587762473, 0.0137308734, 0.0278093629, 0.0255614407, -0.0105501777, 0.00244780327, -0.00227254652, -0.0178906899, 0.00115799927, -0.0142754735, -0.0144956307, 0.00563429296, -0.000262342248, -0.0191652868, 0.00378902582, 0.0106023196, 0.0341823436, -0.00570671307, 0.0144956307, 0.0289217383, 0.00176560495, -0.0155037204, 0.00661051739, -0.0224328861, -0.0289449133, 0.0072999578, 0.0171954557, 0.0109325564, -0.0165581591, 0.00438576844, -0.0241941456, 0.00454509305, 0.0430813394, -0.0239624, 0.0193390958, 0.0155732436, 0.0346690081, -0.0109615242, -0.0160367321, 0.0320271179, -0.0136497626, -0.0129429409, -0.00392227899, -0.00110730517, -0.00426410232, 0.0114192199, 0.0122245327, -0.0012260743, 0.0281801559, 0.0313087068, 0.00536199287, -0.0135107161, 0.00144623173, -0.0366388373, 0.00340375025, 0.0165349841, 0.00293881237, -0.0323979072, 0.0336029828, -0.0101040686, -0.0130008776, -0.0105038285, -0.0209381338, 0.00991287921, 0.00279107527, 0.00397442142, -0.021135116, -0.0291071329, 0.0385391414, -0.0248662066, 0.0109962858, -0.00398600893, 0.0164886359, 0.0266042911, -0.0282960273, -0.0262566749, 0.0233251043, 0.00743900472, -0.0159208607, -0.00177719211, 0.00915391557, 0.0246112868, -0.0337188542, 0.00148895965, 0.00891058333, 0.0105965259, -0.021135116, -0.0344836116, 0.00865566451, 0.038446445, -0.011216443, -0.0240782741, 0.0043539037, 0.0032125609, -0.0174503755, 0.015364673, -0.0130819883, 0.012815482, 0.0167551413, -0.00508679589, -0.0410419852, -0.00847606268, 0.00506651821, -0.0104343053, 0.00924661383, 0.0123519925, -0.01026629, 0.00477104401, 0.00531854061, -0.0202081371, 0.0201965496, -0.0161178429, 0.0327918753, 0.00371370884, 0.00418588845, -0.00949573889, 0.0275312699, 0.00780400261, -0.0217260644, -0.0395124704, -0.00562270591, 0.00313724391, 0.0254455674, -0.00731154531, 0.0185627509, -0.0140437288, 0.0194433797, 0.042293407, -0.0170911718, -0.000218165907, 0.00292288, -0.00450743455, 0.00995922834, -0.00792566873, 0.0214479715, -0.0170332361, -0.0163959377, 0.0192232225, 0.0120043755, 0.0262335, -0.00511866109, -0.0177979935, 0.024657635, 0.0102431159, -0.00202052412, 0.00612385338, -0.0287826918, -0.019211635, -0.00209004758, -0.0104343053, 0.0418299176, 0.00927558169, 0.013139924, -0.00373398652, 0.00272155181, 0.0206368659, 0.00961161125, 0.00367315346, 0.0121550094, 0.00936827902, -0.00596163236, 0.0166624431, 0.0138930948, 0.0081284456, 0.0204398818, -0.0122708818, 0.00267375447, 0.0128038945, -0.00147302728, -0.000572843943, 0.0024318709, -0.0213668607, -0.00672638975, 0.0150865801, -0.0223633628, -0.038098827, -0.0163843501, 0.0186554473, 0.00128980412, 0.0114366012, -0.00395124685, -0.0298255421, -0.0170911718, 0.0347848795, -0.0254455674, 0.0101504177, -0.019559253, 0.00943200942, 0.0245185886, 0.000683646882, -0.0153067373, 0.0148548353, 0.0416445211, -0.0281801559, -0.0118537415, -0.00946677104, 0.0243100189, -0.0213900357, -0.0036499789, -0.00282873376, -0.00461751316, 0.00588921225, -0.00828487333, -0.0122129451, 0.00880050473, -0.0168941878, 0.000822693692, -0.031053789, 0.0108746197, -0.0177052952, 0.00713773677, 0.0111874752, 0.00245359703, 0.00482898, -0.0160483196, -0.0112627922, 0.00132022053, 0.00267665135, 0.0306598227, -0.0183773544, -0.000848040741, 0.0270214323, -0.00995922834, 0.0245881118, 0.0427105464, 0.00759543246, 0.0369169302, 0.0258858819, 0.0320734642, 0.0319344178, 0.0246344618, 0.0120043755, 0.0308220442, -0.0326064788, -0.00255208858, -0.0266274661, 0.0157354642, 0.0615513921, -0.0177168828, 0.00611226633, 0.0369632803, 0.0175546613, -0.0114018386, 0.0134180179, 0.00625710702, -0.00388172362, 0.00883526634, -0.00658154953, 0.0179602131, 0.00455088634, -0.0268360358, 0.0078561455, 0.0240087509, -0.0244722404, -0.0221547931, -0.00064562622, -0.0116046155, -0.00176560495, -0.0104227178, 0.00178877939, -0.00657575577, -0.00183512829, 0.0150054693, -0.0131978607, 0.0244490653, 0.0032212513, 0.00833122153, 0.031424582, -0.00131442701, -0.0324674323, -0.00773447938, 0.0258395337, -0.00640774099, -0.00476525025, -0.00572409388, -0.0185859241, -0.0119116772, -0.0150518185, 0.00698130904, -0.0162337162, -0.0290144365, 0.0246112868, -0.0259785801, 0.000659024, -0.00513893878, 0.0110889841, 0.00957105588, -0.00684805587, 0.0169173628, -0.000158600276, 0.00232468895, 0.00295039965, 0.00456826715, -0.0285741203, 0.0116683459, 0.00304744276, 0.0215754304, 0.0116277905, 0.00964637287, 0.0143102352, 0.0182730686, -0.0161062572, -0.00415402371, -0.00645408966, 0.0242868438, 0.00561980903, -0.00717249839, 0.0110716028, 0.00849923678, -0.0302658565, 0.00561401527, -0.0109789046, -0.0350629725, -0.00603694934, 0.0108282706, 0.0143334093, 0.023707483, 0.00386144593, -0.0138235707, -0.00297212577, -0.0181456096, 0.0156543534, -0.0040265643, -0.00681329425, 0.00143464457, -0.000863249, 0.00949573889, -0.0200459156, 0.0287363417, 0.00589790242, -0.00499699498, 0.0199416317, -0.0216217805, 0.00899748784, 0.0140321413, -0.000521425565, 0.0134180179, -0.0221084449, 0.00418588845, 0.0374731161, -0.0351093225, 0.0377280377, -0.0215406697, -0.00337188528, 0.0123751666, 0.0269750822, -0.00295764161, 0.00462330692, -0.00542861968, 0.0175198987, 0.0178791042, -0.010741367, -0.0311464872, -0.0127807204, -0.00860931538, -0.0219462235, -0.0102431159, 0.00917709, 0.00897431374, 0.00839495193, 0.00961161125, 0.00165118091, 0.0261639766, 0.00680170674, -0.0285277721, -0.00696392823, 0.0219462235, 0.0446572043, 0.00761281326, -0.0149127711, 0.00804154109, 3.48974936e-05, -8.13369552e-05, 0.0284582488, -0.0266274661, -0.0116335833, 0.00428438, -0.00288232462, -0.0105212089, -0.00614702795, -0.00589500554, -0.00665107276, -0.0103647811, -0.00331105245, 0.00154979271, -0.00502306642, -0.00100591686, 0.00774606643, 0.0267433375, 0.0104632732, -0.0212509893, -0.00607171096, 0.0294084027, -0.0285277721, 0.0142870601, -0.0225139968, -0.0216565412, -0.0130124651, -0.000149728803, -0.00555607909, 0.00264333794, -0.00995343458, -0.0207875, 0.00940304063, -0.0100866882, -0.00287508266, -0.00352541613, -0.0135918269, -0.00710297516, -0.0191305242, 0.00636139186, -0.0338579, -0.00236234744, -0.00220157462, 0.0276934914, -0.0238697045, -0.00300399051, 0.015063405, -0.0167435538, -0.00569512602, 0.00174822402, 0.00878891721, -0.00195679418, -0.00850503054, -0.00665107276, 0.00727678323, 0.0115756476, -0.00543441297, 0.0320966393, -0.0187133849, 0.0164886359, 0.0111527136, 0.00209149579, -0.0210192446, -0.0126069114, 0.042247057, -0.00530116, 0.0175083112, 0.0098028006, -0.00195969106, 0.00764757488, -0.0295011, -0.00761860702, -0.021610193, 0.00663948571, 0.00511866109, 0.013441192, -0.0188640188, -0.0520498604, -0.00868463237, -0.00395124685, -0.0186438616, -0.0132210348, -0.0127227837, -0.0168826, -0.00608909177, -0.0394661203, 0.0390489809, 0.0148200737, -0.00971010234, 0.00153675699, 0.000572843943, 0.0123056434, 0.0139626181, -0.0220041592, -0.00643091509, -0.00775765348, 0.00752590923, 0.0324674323, -0.017461963, 0.00298950658, 0.0151792774, 0.00606012391, -0.000831384095, 0.035248369, -0.0125605622, 0.000801691785, -0.00903804321, -0.0082385242, 0.0253992192, -0.0171027593, -0.0177748185, -0.000738686242, 0.0240087509, 0.0325137824, 0.0132789714, -0.0263030231, 0.0136265885, 0.00775765348, 0.0159092732, -0.00710876845, 0.016187368, 0.0105617642, -0.0041743014, 0.00659313658, 0.0329540968, -0.0251674745, -0.010793509, 0.0266274661, 0.011540886, -0.0281569809, 0.0162916519, 0.0172186308, -0.00596742611, 0.0216913037, -0.0079024937, -0.0144724566, -0.0472990908, -0.0268592108, 0.00724781537, 0.00125069718, 0.0218071751, -0.0171491075, 0.0140321413, -0.00402946072, 0.00586603768, 0.0162105411, -0.0186438616, -0.00545758754, 0.0101214498, -0.0212973375, -0.00420616614, -0.0151097542, -0.0046667587, 0.0173460897, 0.0193970315, 0.0135570643, -0.005721197, 0.00198576227, 0.00277948799, -0.00274617458, 0.00521135889, 0.00253036246, 0.00148461445, 0.000471817708, 0.03427504, -0.0132789714, -0.0226993933, 0.00266506406, -0.0214711465, 0.00247097784, 0.0301036369, 0.0040323576, -0.0134296054, 0.0366156623, 0.00138250191, 0.00787932, -0.0119464388, 0.0106023196, -0.0254919175, 0.025630964, -0.00453929929, -0.00848764926, 0.00555318221, 0.00971010234, 0.00837757066, 0.0269982573, 0.00464358414, -0.0050491374, 0.00723622832, -0.0021972293, 0.00760122621, 0.0127575453, -0.000792277162, 0.0248662066, -0.0290376097, 0.00380640663, 0.0245185886, 0.0263030231, 0.00763019407, 0.000940014434, -0.0234873258, 0.00482898, 0.0105327964, -0.00382378744, 0.024958903, -0.00126518123, -0.00264623482, 0.00897431374, -0.00601377478, 0.0207643248, 0.0076997173, -0.0117031075, 0.0258627087, -0.0281338058, -0.010416924, 0.0135802394, -0.00324732251, -0.0154110221, -0.00407581, 0.00726519618, 0.00960002374, -0.00968113448, 0.0191073511, -0.00418588845, -0.0203124229, 0.0261176266, -0.0014824419, -0.016013559, -0.0103126392, 0.000228304736, -0.0142986476, -0.0177052952, 0.00648885127, 0.00566326082, -0.00274617458, -0.0242404956, 0.010092482, 0.005283779, 0.0128038945, -0.0130588133, 0.00460592564, -0.00679011969, -0.0400918312, 0.0153067373, 0.000150181426, 0.00647147046, 0.00500568561, -0.0101214498, 0.0276703164, -0.00249849749, 0.0178443417, -0.00753749628, -0.00654678745, -0.0198836941, -0.0278557129, -0.0112222368, 0.00500568561, -0.00345878955, -0.0244490653, 0.0123519925, -0.000716960174, 0.0126069114, 0.00025528128, 0.0263493713, 0.0103300195, 0.0155616561, 0.000608329836, -0.0333944112, -0.029153483, 0.00726519618, 0.03427504, -0.0198373459, 0.0120738987, -0.0275080949, 0.0243795421, 0.00115944771, 0.00805892143, -0.0205325801, 0.0151792774, 0.014565154, 0.00178153731, 0.0164075252, -0.0196171887, 0.000832832477, -0.010416924, -0.00330236182, -0.0167783163, -0.0177632309, -0.00177574379, 0.0149938818, 0.0070276577, -0.0215870179, -0.0034935514, 0.00231599854, 0.0136497626, 0.011442394, -0.0070971814, -0.00264044106, -0.00207266654, 0.00130283972, 0.0116973137, 0.0214132108, 0.00277948799, -0.0331858397, -0.0161757804, 0.0157470517, 0.00665107276, 0.000606157235, -0.0101272436, 0.0153183248, -0.0207527373, 0.0117842183, 0.0113728708, -0.000455885282, -0.0120970728, 0.00731154531, 0.00787932, 0.00530985044, 0.025005253, 0.0201617889, 0.0133253196, -0.0187481456, 0.0111121582, -0.0138235707, -0.0129313543, -0.0158397499, -0.0118885031, -0.0219346359, 0.0141711878, 4.26374027e-05, 0.00556476973, 0.0118479477, -0.0173808523, 0.0102894641, -0.0305671263, 0.0236263722, -0.0191421118, 0.0154689588, -0.00969851576, 0.00919447094, 0.0263725463, -0.00650043879, 0.00277659111, -0.00764757488, 0.0110078733, 0.03427504, 0.00685384916, -0.00394545356, 0.0224444736, 0.0393270738, 0.00823273, 0.00427279295, 0.000670973328, 0.00567195145, -0.00434811, -0.0221663807, 0.00936248619, -0.021482734, -0.0027128614, -0.000940738653, -0.0180413239, -0.00994764082, -0.0322125144, 0.0156775285, -0.00802995358, 0.00155413791, -0.0144261075, -0.00739265559, -0.00509838341, 0.0139510306, 0.0289217383, 0.00253760442, -0.00246373587, -0.00416850764, 0.00461461628, -0.0141016645, -0.00331974286, 0.00834280904, -0.0103821624, -0.0076765432, 0.00347037683, 0.00720726, 0.0153994346, 0.0145072183, -0.0350397974, -0.00899748784, -0.0018438187, 0.00113120384, -0.0102547025, 0.00098563917, -0.00241304166, 0.0197794102, 0.00173808518, 0.00659893034, 0.00917129591, -0.0270677805, -0.0165002216, -0.0194549672, -0.0182846561, 0.0219925717, 0.0201733764, -0.00382378744, 0.034576308, 0.0241709724, -0.0286204703, 0.00355438422, 0.0113728708, 0.0025318109, -0.00275341677, 0.00457985466, 0.0111643011, -0.0167087931, 0.0279947594, -0.0177632309, -0.0195013154, -0.00831384119, 0.0127111962, -0.00464648101, 0.0114134261, -0.0122477068, 0.0325137824, 0.00297502265, 0.00329367141, 0.0321198143, 0.00614702795, 0.00329367141, -0.00143464457, -0.00483187707, -0.0172186308, 0.005283779, 0.0019104454, -0.0215754304, 0.0136265885, 0.00504624099, -0.0072941645, 0.00769392401, 0.00351672573, 0.0208222605, 0.00153530866, 0.0125721497, 0.0221084449, -0.0249357298, 0.00917709, -0.0159092732, 0.000383827166, 0.011842154, 0.0164654609, 0.00422065, -0.0260017551, -0.00735210069, -0.00961161125, 0.000108449276, -0.00838915817, 0.0038846205, 0.0102431159, -0.00270272256, 0.0139742056, -0.000947256456, -0.0156775285, 0.00978542, 0.00328498101, 0.00121014181, 0.0133716688, 0.000859627966, 0.0402077064, -0.0239392277, -0.00577044301, 0.0181340221, -0.0091365343, 0.00900328159, 0.0026969288, -0.0127807204, 0.00620496413, 0.0313087068, 0.0090901861, 0.0173345041, 0.0167435538, 0.0397442169, 0.00645408966, -0.0073868623, -0.00779820886, 0.0155268945, 0.0103647811, -0.0096695479, -0.0218998734, -0.0028055592, 0.00925240666, 0.0468587764, -0.011517711, 0.00516790664, -1.72450636e-05, -0.00221750699, 0.0154689588, -0.0103242258, -0.00393676292, 0.0159208607, -0.0230933595, 0.0304744281, -0.0138351582, -0.00880629849, 0.0045190216, 0.0154457837, 0.00976224523, -0.00553869829, -0.00545179378, -0.0103647811, 0.00953629427, -0.0112743797, 0.0165813323, -0.0167203806, 0.039442949, -0.00437128451, -0.0180181507, 0.0184005294, 0.00342402793, 0.000724202197, -0.00472469488, 0.014889597, -0.0096058175, -0.00256077899, 0.00488981325, -0.000195172484, 0.0159556232, 0.00237393472, -0.0306134745, -0.0061354409, -0.0150170559, 0.0136961117, -0.0130935749, 0.0134875411, -0.0276934914, -0.0108224778, 0.0147621371, 0.00864987075, 0.00854558591, 0.00305033964, 0.00882368, -0.0139278565, 0.000718408555, 0.0198373459, 0.0185859241, -0.0144956307, 0.0170564093, 0.00305613317, 0.0152835632, -0.00393676292, 0.00159903837, -0.0274849217, 0.00406711921, 0.00204659533, 0.00760122621, -0.00409608753, -0.00188727083, 0.0100229578, 0.0147968987, 0.0180529114, 0.00419457909, -1.14684208e-05, -0.0299414154, -0.0178443417, -0.00753749628, -0.00300109386, 0.00423513446, 0.00728837075, -0.0144608691, -0.0140553154, -0.00109282113, 0.00811106432, 0.0145188048, -0.00556766614, -0.00373108964, -0.0123519925, 0.00224937196, -0.001680149, -0.00751432171, -0.0109962858, -0.00367605034, 0.00984915, 0.0167899039, -0.00557056302, 0.0366851836, -0.00897431374, -0.00485215476, -0.026581116, -0.00199010759, -0.00720146624, 0.00423223758, 0.00185685442, -0.0104458919, 0.0103937499, 0.00490719406, 0.00604853639, 0.0157007035, 0.00385565241, 0.0104516856, 0.0159556232, -0.00495064585, 0.0294084027, -0.00217260653, 0.00240579969, 0.00272155181, 0.0150170559, -0.020961307, -0.00215232885, -0.00899748784, 0.00755487708, 0.0211235285, -0.014437695, -0.00279686879, -0.0161757804, -0.0206136908, -0.000879905652, -0.0222243164, -0.014090078, 0.0190146528, -0.00608329847, -0.00119058834, 0.00790828746, -0.0200459156, -0.0258627087, -0.00720146624, 0.000852385943, 0.0138003966, 0.0167087931, 0.0228268523, -0.00830225367, 0.00589210913, -0.0203240104, -0.00497671729, 0.0184584651, -0.00539096119, 0.0290607847, 0.0146578522, -0.00210018642, -0.0150170559, -0.0156311803, 0.00515342271, -0.00691178534, -0.0029953, -0.0138467457, 0.0158976857, -0.00987811759, -0.00372529589, -0.00877733063, 0.0105385901, 0.00940883439, -0.00411057146, 0.0313782319, 0.0374962911, 0.00166856183, 0.00591818, 0.0134064304, 0.0382378735, 0.0112396181, -0.0340896435, 0.003360298, -0.0212741625, 0.0176473595, 0.00826749206, 0.0335798077, 0.00854558591, 0.0123288175, 0.0177979935, 0.00970430952, 0.00349644804, 0.0186902098, -0.00189016771, 0.0166624431, 0.00166131975, 0.00359204272, 0.00822693668, -0.0138003966, -0.0042669992, 0.0403699279, 0.00786193926, -0.0108862072, 0.0100345453, -0.00865566451, -0.00902645569, -0.0103068454, 0.00381799391, 0.0179833882, 0.00596742611, 0.0263725463, 0.00362680457, 0.013765635, 0.0107877152, -0.00405842904, 0.0132442098, -0.00559953135, 0.00819217507, -0.00795463659, 0.028504597, -0.012966116, 0.0215754304, 0.0103763686, 0.00772289187, -0.0119348522, -0.0121781835, 0.00625131326, -0.0104111303, 0.0028605985, 0.00804154109, -0.019686712, 0.00103271229, 0.00504044723, -0.0019785203, 0.0017974698, 0.0109267626, 0.0118131861, -0.0334175862, 0.00735210069, -0.0103010517, 0.0130008776, 0.0132673839, 0.0149359461, 0.0117262816, -0.00892217085, -0.00238697045, 0.0056661577, 0.00371370884, -0.0083717769, 0.0265115928, 0.0041192621, 0.00597321941, 0.0332785398, 0.0122824693, 0.0230933595, 0.0092234388, 0.025005253, 0.0371950231, 0.00988391135, 0.00705662603, -0.00753749628, -0.00816320721, -0.0199532192, 0.0100693069, 0.0312391855, -0.0223633628, -0.0127111962, 0.00398311205, 0.00528667588, 0.00732892612, 0.0245185886, 0.0135570643, -0.00153241178, -0.0119348522, -0.0173460897, 0.00846447516, 0.00963478535, 0.0177400559, -0.0413200781, 0.0236495454, -0.0264420696, 0.00856296625, 0.0206368659, -0.00570091931, 0.020984482, -0.0242636688, 0.0182846561, 0.0194897298, 0.00214219, 0.00969851576, 0.0169173628, -0.0165002216, 0.003360298, -0.0168594271, 0.00710876845, -0.000710804423, 0.00456826715, -0.0206136908, -0.0266274661, 0.0167667288, -0.00470152032, 0.0136961117, -0.00290694763, -0.0134875411, -0.0154921329, -0.00649464503, 0.00455378322, 0.0100751007, 0.0266042911, 0.0224676486, -0.0392575525, 0.0182730686, 0.00113917, -0.00137743249, 0.00668583438, 0.0026418895, 0.0182151329, 0.00786773209, 0.00673797727, 0.0124562774, -0.00487532886, -0.0123172309, 0.0184237026, 0.0185164, 0.00230151461, 0.00228703045, 0.00808209646, -0.00988391135, 0.0180992614, -0.00479711499, -0.00133470458, 0.0221432056, 0.00770551106, -0.00555028534, 0.000550031546, 0.0184121169, -0.0170795843, 0.00774027267, 0.0244027171, 0.0005446, 0.0011674139, 0.00639036, 0.0177516434, -0.0131051624, -0.00465227477, -0.00804733485, -0.0191305242, -0.00517080352, -0.00103198807, -0.008644077, 0.0114481878, 0.00826749206, -0.000412795227, -0.0120970728, 0.00537358, -0.0101040686, 0.0107587473, -0.0213784482, 0.00720146624, 0.0142522985, -0.00416561076, 0.0185511634, 0.00240145437, 0.0146346772, 0.0178675167, 0.0165929198, -0.00561691215, 0.0181340221, -0.00789670087, 0.0068075005, 0.013139924, 0.00555028534, 0.0063150432, 0.00397731829, 0.0127807204, -0.0309842657, 0.000451540051, 0.00666845357, 0.00122897106, -0.00836019, -0.00265492522, 0.0219462235, -0.0238465294, 0.0157470517, 0.0128618302, 0.0128618302, 0.0131051624, 0.00514183566, 0.00837757066, 0.00694075366, 0.00926399417, 0.00965216663, 0.0162105411, 0.018910367, 0.000744479825, 0.0151561033, 0.0273227, -0.0235452615, -0.00342402793, 0.0289680865, -0.0212278143, -0.023359865, 0.000208027079, -0.00217695185, -0.0248893797, 0.00769392401, -0.0161062572, 0.00221026503, -0.00728257699, -0.00144405919, 0.00801257323, -0.00142016052, 0.000499337388, -0.0261408016, -0.000481956551, -0.0256077889, 0.0141364262, 0.0198721085, -0.0331394933, -0.0124562774, 0.0203008354, -0.0151097542, 0.00692337286, -0.0147273755, -0.00369343115, -0.0119812, -0.00926978793, 0.0169521254, -0.0142754735, -0.0072941645, -0.0195129029, -0.00637297938, -0.0152256265, 0.00520846201, -0.035595987, -0.0195244905, 0.00214943197, 0.00750273466, 0.0283192024, -0.0288985632, 0.00738106854, -0.00360363, 0.00584286312, -0.0313087068, 0.0180876739, -0.00801257323, 0.00398600893, 0.0110773966, -0.00907280482, 0.00415402371, 0.0327455252, -0.00521425577, -1.50045635e-05, -0.00750852795, 0.00469572702, -0.00255498523, 0.015862925, 0.024657635, -0.0138467457, -0.00583706936, -0.015214039, 0.0121781835, 0.0306134745, 0.0082616983, 0.00931613706, -0.00347906724, 0.00828487333, -0.0135802394, 0.00294750277, -0.0147621371, -0.00528957276, -0.0179949757, 0.00188437407, -0.0108398581, -0.0184700526, -0.0173924398, 0.00343271834, -0.00750273466, -0.00215522572, -0.0220505074, -0.0123751666, 0.0104632732, -0.00334581407, 0.00395124685, -0.0073868623, -0.00158889953, -0.0225487594, -0.00538227055, 0.00756646413, 0.00610067928, -0.00279831723, -0.00348486076, -0.00501727266, -0.0180760864, -0.0245417636, -0.00186409638, 0.015862925, 0.0262103248, -0.00560822152, 0.00980859436, -0.00994184706, -0.00111889234, 0.0250747763, -0.0190030653, 0.010167799, 0.00422644382, 0.00195534597, -0.0155964177, -0.00427569, 0.00696972152, 0.00067531853, -0.0152603881, 0.012340405, -0.0245417636, 0.0149243586, -0.0184932277, -0.00514183566, -0.0176821202, -0.00285915029, -0.00676694512, 0.00915970933, -0.0194665547, -0.030752521, -0.00146795786, 0.00220012618, -0.00620496413, -0.0035485907, 0.0223865379, 0.00526929507, 0.0145419799, -0.0296864957, 0.0207990874, -0.00570091931, -0.00328208436, -0.0222706646, -0.00859772786, 0.0265115928, 0.0154689588, 0.00577623677, -0.00600218773, -0.0150170559, 0.0168246645, -0.027554445, -0.00357755879, -0.00629766192, -0.00596163236, -0.00187423523, 0.0151213417, -0.00663948571, 0.00090235594, 0.00460302923, 0.0162800644, 0.0218303502, -0.0165233966, -0.0125605622, 0.0213321, -0.0130935749, -0.00349644804, -0.00531274732, -0.0117784245, 0.010967318, 0.00014782777, 0.00314303744, 0.00331684598, -0.00808209646, -0.0171491075, -0.0202429, 0.00745059177, -0.00519977184, 0.0313087068, -0.00330236182, 0.00036572211, -0.00605433, 0.00815741345, -0.00111237459, 0.000219071153, -0.00825590454, 0.00530116, 0.0124331033, 0.0230933595, -0.0113323154, 0.0188756064, 0.0240319241, -0.00259698904, 0.019860521, -0.0187713206, 0.00821534917, -0.0250284281, -0.0122245327, 0.00681329425, 0.00277369423, -0.013313733, 0.00688861124, 0.0212278143, -0.00932193082, -0.0174040273, -0.0137424609, -0.0100519266, -0.00242028362, 0.00826749206, 0.00494195567, 0.00990708545, -0.013139924, -0.00296488381, 0.0246344618, 0.00380930351, 0.00482318643, 0.00196693302, -0.0113496967, -0.00441763317, 0.00548655586, -0.0133021455, 0.00223488803, -0.0176473595, -0.00548365898, 0.0285741203, 0.0171027593, 0.00634401105, 0.0110600153, 0.000987087609, 0.001583106, -0.0105849393, 0.0212162267, 0.0239624, -0.0033139491, 0.00257236604, -0.0225024093, 0.0282496791, -0.0117031075, -0.0203124229, 0.017485138, -0.00229572086, 0.0147621371, -0.00259843748, 0.00958843715, 0.0233019292, 0.0319575928, -0.0100113712, -0.0237306561, -0.00164393894, -0.0160483196, 0.0299877636, 0.00228413357, 0.0114829494, 0.0209381338, 0.00902645569, 0.0178559292, 0.0131630991, 0.00386144593, -0.00182933465, -0.00955946837, 0.00661631115, 0.00849923678, 0.00754329, -0.0204630569, -0.0199068692, 0.00469572702, -0.00650043879, -0.00905542355, 0.0123867542, 0.00368184387, 0.0236147847, 0.0167435538, 0.00376005773, 0.00256657251, -0.0257700104, 0.0224212985, 0.000638746307, -0.00901486911, -0.0117552495, 0.0127691329, -0.010590733, -0.0024695294, -0.0143218227, -0.0345067866, -0.0141016645, -0.0118885031, -0.00544889737, 0.00681329425, 0.031053789, -0.0486200377, -0.0110947769, -0.00800098572, 0.0204630569, 0.011442394, 0.0330931433, 0.0224676486, 0.00997661, -0.014889597, -0.00538806431, 0.00951312, -0.00402366742, 0.00502016954, -0.0278557129, -0.0127691329, 0.030729346, 0.0117436629, 0.0141248396, 0.0109789046, -0.00471310783, 0.0141364262, 0.00182788633, -0.00159614161, -0.0108862072, -0.0026331991, 0.00170766877, 0.00761281326, 0.00692337286, -0.00561401527, -0.00104792055, -0.0126532605, 0.00677853217, -0.00648885127, 0.00905542355, -0.0258858819, -0.0275080949, 0.00229137577, -0.0138699198, -0.00395704061, -0.00332843326, 0.0098028006, 0.0350166224, -0.00515342271, 0.00565746753, -0.000559446169, 0.00926978793, -0.00683646835, 0.00630924944, -0.00618758332, -0.0150749926, 0.0170216486, -0.00858614128, 0.0178559292, 0.00515052583, -0.0104980348, -0.0113091413, 0.00275631342, 0.0200459156, 0.0240782741, 0.00280990452, -0.0101504177, 0.0146578522, -0.00171201397, 0.0321661644, 0.00441184, 0.0014824419, -0.0125026265, -0.0134064304, -0.00977383275, -0.0111874752, -0.0177748185, -0.00278962683, 0.0217492394, 0.00789090712, 0.0041743014, 0.0147042014, 0.0413432531, 0.00610647257, 0.000919012586, 0.019709887, -0.00289536035, 0.0239160527, -0.00914812181, -0.0101098623, 0.018736558, 0.0043770778, 0.00105588674, 0.0170448218, 0.00550393667, -0.00980859436, 0.0161641929, 0.0111816814, 0.00306482357, -0.0206484515, -0.00188147731, 0.0174156148, -0.01793704, -0.0233366918, 0.0146810263, -0.024958903, -0.0161641929, 0.00436838763, -0.0178443417, 0.0297560189, 0.0259785801, -0.00936827902, 0.0203355979, 0.0025158783, 0.0104690669, 0.0135223027, 0.00336898863, 0.00941462815, -0.0331394933, -0.0107993027, -0.00152082462, -0.00415402371, 0.00153820543, -0.0140321413, -0.00968692824, -0.00485794805, 0.0138930948, 0.0128965927, 0.00267520291, -0.0112743797, -0.0222706646, -0.0197562352, -0.0182383079, -0.00182933465, -0.0273690484, -0.0292925294, -0.0251906477, 0.00445818854, -0.00499989185, -0.0024782198, 0.0110947769, -0.00833122153, 0.00582548231, 0.00209294423, -0.0133369071, -0.0217144787, 0.00741003687, 0.000406639534, -0.0122940559, -0.00669742189, 0.0014194363, 0.00954788178, 0.0113323154, -0.014263886, -0.00800677948, -0.0260712784, -0.025306521, 0.00495354272, -0.0129892901, 0.0163727626, 0.000663007086, 0.006332424, -0.00481739268, 0.00524901738, -0.0134991286, -0.021784002, -0.0010797854, -0.00550393667, -0.00824431796, -0.00389620778, 0.0147505496, -0.00391069194, 0.0246344618, 0.0134064304, -0.0290607847, -0.0241477974, -0.0219230484, 0.00227689161, 0.0222127289, -0.00304164924, -0.000165570716, 0.00457695778, -0.025283346, 0.0178675167, -0.0049564396, -0.0315868035, 0.00756646413, 0.00247387472, -0.00786193926, 0.0207875, 0.0117842183, 0.0355264619, -0.000189740967, 0.00282004336, -0.00892796461, 0.000632228504, -0.0199879799, -0.0128618302, 0.00820955541, -0.0103995437, 0.0353874154, -0.00918288343, 0.00446977606, -0.0142986476, 0.0261639766, -0.00995922834, 0.0010124346, -0.0225719325, -0.0118885031, -0.0304049049, 0.000126644853, -0.00251153321, -0.014715788, 0.0411578566, -0.00223488803, 0.00800677948, 0.00390200131, 0.0411115102, 0.0132210348, 0.0257468354, 0.00748535385, -0.00134991284, -0.000277007319, 0.00297212577, -0.00429017376, 0.015515307, 0.0165697467, -0.0133253196, -0.00757805165, 0.00825011078, 0.00167725224, 0.0119927879, 0.034599483, -0.000571033393, -0.0069175791, -0.019408619, 0.00666266, -0.0127343712, -0.0117726307, 0.0302658565, 0.00564298313, 0.0082616983, 0.00211322191, -0.00337478216, -0.000492457475, 0.00724781537, -0.00240290281, -0.00554159516, 0.0147737246, 0.0132557964, -0.00858034752, -0.00444370462, -0.00457116403, 0.0197562352, 0.0113960458, -0.0261639766, -0.0121665969, 0.0111237457, 0.000883526634, 0.0061354409, -0.0030329586, -0.0183425918, -0.00508679589, 0.025283346, 0.00527798524, -0.0168710146, 0.0217492394, -0.0318185464, -0.000407001615, 0.0113496967, -0.00451322785, 0.0109731117, 0.00517659727, -0.0230006613, 0.0173924398, 0.00947835762, -0.0151908649, -0.0108688259, 0.0183194187, 0.00411346834, -0.0203587711, 0.0104980348, 0.00342982146, 0.0240087509, -0.00722464081, 0.0253528692, -0.0268360358, -0.00186554482, 0.00877733063, -0.0112685859, 0.0146346772, -0.00213060272, 0.00539096119, 0.0368937552, -0.0377280377, 0.000578999636, -0.00547496835, -0.0157818142, -0.00245794212, 0.0103821624, 0.0318185464, -0.00306772045, -0.010567558, 0.0108340643, -0.0100751007, -0.0224792361, -0.0083486028, 0.00439735549, 0.00185685442, 0.00683646835, -0.00770551106, 0.0105965259, -0.00536778662, -0.0103995437, 0.00215957081, -0.0226530433, -0.0140669029, -0.0105501777, -0.00838915817, 0.00984915, 0.0154457837, -0.0172302183, 0.0156195927, -0.00775765348, 0.00914812181, -0.019084176, 0.00663369196, -0.000380930345, -0.0076765432, -0.00822114293, -0.00319518, -0.0197214745, 0.00152951502, -0.0279484112, 0.0136729367, -0.010967318, 0.0112512046, -0.013464367, 0.00863248948, -0.0274849217, -0.0309147425, -0.00963478535, -0.00447556935, -0.0209265463, 0.0154226096, -0.000305794383, 0.0119580263, 0.00887582172, 0.00556766614, -0.0112454118, -0.000785035139, -0.0143449968, 0.0228732023, 0.017264979, -0.0135570643, 0.0172302183, -0.0252138227, -0.0132789714, 0.00593845779, -0.00324442564, 0.0285972953, 0.0212741625, -0.0159440357, -0.00778082805, -0.0023058597, -0.00186119962, 0.0125489756, -0.0245185886, -0.0183194187, -0.0202313121, -0.00358045567, 0.0193159208, 0.00166421663, 0.00535040582, 0.0162453037, 0.0103242258, -0.0283887256, 0.00737527478, 0.00513024814, 0.0021334996, 0.023035422, 0.0020408018, -0.00283887261, -0.0262103248, -0.0268128607, 0.0166392699, 0.0126764346, -0.0167667288, -0.00665686652, 0.0182267204, -0.0262103248, -0.00549234916, 0.000302354398, -0.0219578091, -0.010816684, 0.00752011547, -0.013290558, 0.0135223027, 0.011593028, -0.00504334411, 0.0309147425, 0.00132094475, -0.00236958941, 0.0104980348, 0.029130308, 0.00444080774, -0.0275080949, -0.00477104401, 0.0105791455, 0.000769102713, 0.00308220438, -0.0112685859, -0.00473338552, 0.0143334093, 0.00330236182, -0.00444080774, 0.0108862072, 0.00637877267, -0.0076765432, 0.0168710146, -0.0498714596, 0.0130472267, 0.00171346229, 0.00419457909, -0.00584865687, 0.0153299114, -0.0115698539, 0.00574147468, 0.0160714947, 0.011593028, 0.000203862917, -0.000628245412, 0.0234989114, 0.0171954557, -0.00370501843, 0.023081772, 0.00330815557, 0.000336754019, -0.00210163463, -0.0152951498, -0.0138467457, 0.0226530433, 0.00468703639, 0.00430176081, -0.0181108471, -0.00339795672, 0.00414243666, -0.0114366012, 0.00623393245, -0.0138930948, -0.00116234447, 0.0192463975, 0.0046986239, -0.0110078733, 0.0119116772, -0.00868463237, -0.000147194092, 0.0168014914, -0.0267665125, -0.0375889912, -0.000468196697, -0.0078561455, 0.012641673, 0.0070276577, 0.0127807204, -0.00143174769, 0.000257815962, 0.00510417717, 0.0200227425, -0.000784311, 0.0069871028, 0.00836019, -0.013615001, 0.022884788, 0.0106081134, 0.0111527136, -0.0102141472, 0.00207701186, -0.000301811262, 0.0067148027, -0.0158745125, 0.0166740306, -0.0157238785, 0.00617020251, 0.00508389948, 0.0207990874, 0.00952470675, 0.00331974286, 0.00690599205, 0.00266216719, 0.0206368659, 0.0241246223, 0.0124099283, 0.00352541613, -0.00131515111, -0.0158049874, 0.015387848, 0.0221779682, 0.000838626118, 0.0282496791, 0.0166392699, 0.0110484287, -0.0227457415, -0.00229861774, -0.0165581591, 0.00708559388, -0.0199184567, -0.0064251218, 0.0250516012, 0.0194897298, -0.00459433859, -0.0103589883, -0.0086209029, 0.00495354272, -0.0125605622, 0.0076765432, 0.0138815073, -0.00544310361, 0.00287942775, 0.00772289187, 0.00544020673, 0.0196403638, 0.00579361757, -0.00725360913, 0.00680170674, -0.00413084915, 0.00725940242, 0.00502885971, 0.000957395299, -0.00695813447, 0.0278557129, 0.0120275496, 0.00442922069, 0.00433941931, -0.0043220385, 0.0239160527, -0.00591238635, 0.011442394, -0.0217260644, -0.00465227477, 0.0087541556, 0.0212278143, 0.0175198987, -0.0178327542, 0.0219346359, 0.0100982748, 0.00221895543, -0.00254484639, 0.013290558, -0.0141943628, -0.0286204703, 0.0247503333, -0.0194202047, 0.0147505496, -0.00173229165, -0.0105559705, 0.0206252784, -0.0144029325, -0.0221200306, -0.00991287921, -0.00889320299, -0.00168449432, 0.0158397499, 0.0179254524, 0.00699289609, 0.000890044495, 0.0084355073, -0.00360363, -0.000490647, -0.00301557779, -0.0216565412, -0.0316795, -0.00242462894, 0.0241477974, -0.00255643367, 0.015214039, 0.0033139491, 0.0112222368, 0.011390252, 0.00545469066, 0.012815482, -0.00940304063, -0.00399759598, 0.0146346772]
27 Mar, 2023
Mongoose Document Model.populate() API 27 Mar, 2023 The Mongoose Document API Model.populate() method of the Mongoose API is used on the Document model. It allows to replacement of a field in a collection with a document from another collection. We can provide a collection name as a value to a field as a reference to populate the collection and its field. Let us understand the populate() method using an example. Syntax: Model.populate( doc, options, callback ); Parameters: This method accepts three parameters as discussed below: doc: It is used to specify the document name. It could be a single document or an array of documents. options: It is used to configure the various properties. callback: It is used to specify the callback function which will be executed once the operation is done. Return Value: This method returns the promise, which can be handled using the callback function. Setting up Node.js application: Step 1: Create a Node.js application using the following command: npm init Step 2: After creating the NodeJS application, Install the required module using the following command: npm install mongoose Project Structure: The project structure will look like this: Database Structure: The database structure will look like this, the following documents are present in the collection. Customer collection has the following documents: Product collection has the following documents: Example 1: In this example, we have established a database connection using mongoose and defined two models over customerSchema, and productSchema. In the end, we are accessing populate() method over the Product model and providing the customer model as a reference to point and populate the referenced documents from both collections. Filename: app.js Javascript // Require mongoose module const mongoose = require("mongoose"); // Set Up the Database connection const URI = "mongodb://localhost:27017/geeksforgeeks"; let connectionObject = mongoose.createConnection(URI, { useNewUrlParser: true, useUnifiedTopology: true, }); let customerSchema = new mongoose.Schema({ name: String, address: String, orderNumber: Number, }) let Customer = connectionObject.model("Customer", customerSchema); let productSchema = new mongoose.Schema({ name: String, price: Number, customer: { type: mongoose.ObjectId, ref: 'Customer' }, }) let Product = connectionObject.model("Product", productSchema); Product.find().populate("customer").then(res => { console.log(res); }); Step to run the program: To run the application execute the below command from the root directory of the project: node app.js Output: [ { _id: new ObjectId("63c93f348d749df47132da0d"), name: 'Samsung TV 32', price: 18000, customer: { _id: new ObjectId("63c13b76876922405349f708"), name: 'Mivaan', address: 'IND', orderNumber: 9, __v: 0 }, __v: 0 }, { _id: new ObjectId("63c93f348d749df47132da0b"), name: 'DJI Mavic Mini 2', price: 25000, customer: { _id: new ObjectId("639ede899fdf57759087a655"), name: 'Chintu', address: 'IND', orderNumber: 9, __v: 0 }, __v: 0 }, { _id: new ObjectId("63c93f348d749df47132da0c"), name: 'iPhone 11', price: 55000, customer: { _id: new ObjectId("639ede899fdf57759087a653"), name: 'Aditya', address: 'Mumbai', orderNumber: 20, __v: 0 }, __v: 0 } ] Example 2: In this example, we are accessing the populate() method on the Customer model. For reference, we are providing the path name to be considered as a reference to another collection. Filename: app.js Javascript // Require mongoose module const mongoose = require("mongoose"); // Set Up the Database connection const URI = "mongodb://localhost:27017/geeksforgeeks"; let connectionObject = mongoose.createConnection(URI, { useNewUrlParser: true, useUnifiedTopology: true, }); let customerSchema = new mongoose.Schema({ name: String, address: String, orderNumber: Number, }) let Customer = connectionObject.model("Customer", customerSchema); let productSchema = new mongoose.Schema({ name: String, price: Number, customer: { type: mongoose.ObjectId, ref: 'Customer' }, }) let Product = connectionObject.model("Product", productSchema); let products; Product.find({ name: "Samsung TV 32" }).then(res => { products = res; Customer.populate(products, { path: "customer" }).then(res => { console.log(res); }) }); Step to run the program: To run the application execute the below command from the root directory of the project: node app.js Output: [ { _id: new ObjectId("63c93f348d749df47132da0d"), name: 'Samsung TV 32', price: 18000, customer: { _id: new ObjectId("63c13b76876922405349f708"), name: 'Mivaan', address: 'IND', orderNumber: 9, __v: 0 }, __v: 0 } ] Reference: https://mongoosejs.com/docs/api/model.html#model_Model-populate Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API
https://www.geeksforgeeks.org/mongoose-document-model-populate-api/?ref=next_article
Languages
Mongoose Document Model.populate() API
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.00642772764, 0.0135071808, -0.0165151414, 0.0635969043, -0.0109360889, 0.0451480709, -0.00984033197, 0.00155321835, -0.0114803873, 0.000886274443, 0.0291056111, 0.00710451929, -0.00895942841, -0.0287045483, 0.0252525546, -0.00324788247, -0.0168302618, 0.0237915441, 0.00225597131, 0.000643668, -0.0124615552, -0.00778489141, 0.00033056247, 0.0353220627, -0.00273044151, 0.0130345011, 0.0259973835, 0.0230753627, -0.0148679251, -0.0305379722, -0.0192939267, 0.0150684556, 0.0115161967, -0.0228175372, -0.0178902112, 0.0214424692, -0.00812865794, -0.00241174083, -0.0311395656, -0.00501326937, 0.00875173602, 0.0125188502, -0.0188928638, -0.00517441053, 0.000274610793, 0.00787799526, 0.00837216, -0.0119459052, -0.0288477857, 0.00654231664, 0.018248301, -0.000722895551, -0.00215749629, -0.017618062, -0.0197809283, 0.0137721673, -0.0231183339, 0.0118456399, -0.00664974377, -0.0464372, 0.0336605236, -0.00368117215, 0.0380722024, -0.0179475043, 0.0210987031, 0.0705295429, -0.033746466, 0.0442027152, -0.00368117215, -0.0163432583, 0.00695770187, 0.0695555359, 0.0516796485, -0.0240063984, 0.00805704, -0.0309676826, 0.0105493516, 0.0150684556, -0.00687534083, 0.036553897, 0.0181337111, -0.0401634499, 0.0197809283, 0.0447183624, 0.0349782966, -0.0324573405, 0.0264127683, -0.0512785837, -0.00402852, -0.0213995, 0.00951088872, -0.0277018957, -0.0131705748, -0.00092745485, -0.0279883668, 0.031511981, 0.00255497708, -0.0128841028, -0.0296212602, 0.0309676826, -0.0186780095, -0.00377785671, 0.0266705938, -0.00661751581, 0.028260516, -0.0155411353, 0.0499035157, 0.00808568764, 0.036095541, 0.00239920756, 0.0268997718, -0.0206260234, -0.0330302827, 0.0668054, 0.0113872839, 0.0331735201, -0.00634894753, -0.0245077256, 0.0215713829, -0.0169162042, 0.01453132, 0.0231326576, 0.0341188796, 0.0278881025, -0.0466663763, 0.0352361239, -0.0215713829, 0.0102485549, 0.0192652792, 0.031970337, -0.0224880949, -0.0345199406, -0.0433719419, 0.0136933876, 0.0231469814, 0.0200960487, 0.0292202, -0.0129628824, 0.00184595748, -0.00884483941, -0.00815730542, -0.0232758932, 0.00631671958, 0.0118313162, 0.00207155454, 0.00415743282, 0.00973290484, -0.00495239394, -0.0260976478, 0.0126835722, -0.0226026829, -0.0580106899, 0.0595862903, 0.0209554657, 0.00413594721, 0.0167299956, -0.00125063164, -0.000974901894, 0.00383873214, 0.0410801619, 0.00787083339, -0.0535990112, -0.0339469947, 0.0113514746, 0.0330589302, 0.0291485805, 0.00679656118, -0.019566074, -0.0548308454, 0.00820027664, -0.0337751135, 0.0140371546, -0.0309390351, 0.0283894297, -0.036095541, -0.0130273392, 0.015727343, -0.0190647468, 0.0213565286, 0.0305952672, -0.0162859634, -0.0384732634, 0.0212992337, 0.0149108963, 0.019336896, 0.0148965726, -0.00598011445, 0.0159135498, -0.00698993, -0.00663900096, -0.0133424588, 0.0341188796, 0.0664043352, -0.00983317, 0.0266276225, 0.0199098419, -0.0461220779, 0.00285935402, -0.0201103725, -0.00695412094, 0.0260690022, -0.0379003175, 0.00691831205, 0.015784638, 0.0329156965, 0.00266777561, 0.00171794, -0.0633677244, 0.0526250079, -0.0091886064, 0.00879470725, -0.00208766875, 0.014645909, -0.0266992413, 0.00439377269, 0.019165013, -0.0133209731, 0.00933184288, 0.0215427354, -0.01338543, -0.00758436043, 0.00605531316, -0.00199098419, 0.00893078186, -0.0381581411, -0.0362674221, -0.0197522826, 0.00591923902, 0.0362674221, -0.00395690184, 0.00902388524, 0.0554610826, 0.0185061265, -0.0012658505, -0.0246366393, -0.00226850435, -0.0241782833, -0.0226456542, -0.0143809216, 0.0151830446, 0.0121177882, 0.0083005419, -0.00021194492, -0.00893078186, 0.0304806791, 0.0557475574, -0.0492159836, 0.015612754, -0.00421114638, -0.00481632, -0.0203395505, -0.00641698483, -0.0127766756, 0.0101912608, -0.00834351312, -0.005063402, 0.0339469947, 0.02117032, -0.0167299956, -0.000394347357, 0.0220583864, 0.00133388781, -0.057380449, 0.0147246886, -0.000869265117, -0.0157989599, 0.0121679213, -0.017217, 0.0132780019, 0.0120318467, 0.0239777509, -0.0307957977, -0.01773265, 0.0300509706, -0.0285756364, 0.00578674534, -0.0173745602, -0.00356121175, 0.0316265672, -0.00610186532, 0.0155268116, 0.0330589302, 0.00699351076, 0.0153692523, -0.0456064306, -0.0143164657, 0.0126262773, -0.0153262811, -0.00285398262, 0.024192607, -0.0361528359, 0.0266849175, 0.0269713905, 0.0127981612, 0.0132565172, -0.0214424692, -0.000443584839, 0.0322568081, 0.00220404821, 0.00627016788, -0.0126047917, -0.0376138464, -0.0101554515, 0.0527968891, 0.00115752814, 0.00941062346, 0.034262117, -0.0174748246, 0.00235265587, -0.0336032286, 0.0172599703, -0.00269105146, -0.0339469947, -0.055145964, -0.0234907493, 0.0265846513, 0.00455133244, 0.00712600444, -0.0198668707, -0.0313973911, -0.0710451901, 0.00649218401, -0.0732796788, -0.0111222966, 0.0243931375, -0.008236086, 0.0115090348, 0.0368117206, 0.00181372929, -0.0204971097, -0.0359523036, -0.0252239071, 0.0628520772, 0.0210700557, -0.0175321195, -0.0103703057, 0.00104741519, -0.0208552014, -0.0535417199, 0.0517942347, 0.00659961114, 0.00984749384, 0.00154516124, -0.0046515977, 0.0534557775, -0.0112297237, -0.0142878182, 0.0134642096, 0.00810001139, -0.0212562624, 0.00135984935, -0.00357732596, 0.0168016143, 0.00820743851, 0.0629666671, 0.0151973683, 0.0118671255, -0.0269713905, -0.0427703522, -0.0116451085, 0.00847242586, -0.0276732482, -0.00968277175, 0.00351107912, -0.027630277, -0.00686459849, -0.00604457082, 0.0178902112, 0.0163002871, -0.0125689832, -0.0134785334, 0.0353793576, 0.0116307857, -0.0190504249, -0.0306239147, 0.00101429189, 0.0458356068, 0.0134928571, -0.00907401741, 0.0133711062, 0.00774192065, 0.0116021382, -0.00731579261, 0.0357804224, -0.00590133434, 0.0216000304, -0.0121321119, -0.00369191496, -0.00988330226, 0.0337178186, 0.00768462615, -0.0250233766, 0.0343767069, -0.034720473, 0.0321135707, -0.00424695527, 0.000180052462, -0.0214281455, 8.10180136e-05, -0.0356085375, 0.0199528132, -0.0383586735, -0.013557313, 0.023963429, 0.00932468101, -0.0134355621, -0.0146029377, -0.010757044, -0.0139941834, -0.00881619286, 0.00239741709, 0.00387096033, -0.0421114638, 0.00860133767, 0.0309103876, 0.00870876573, -0.034262117, 0.063997969, -0.038215436, 0.0493305735, 0.00383873214, -0.00151472352, 0.00262659509, 0.0211416744, -0.0334027, 0.00792096555, -0.0238631628, -0.00226671388, -0.0606175885, -0.00138043961, -0.00993343536, -0.0109575745, 0.00371340034, 0.00342155644, -0.00289337267, 0.00278594554, 0.000546088268, -0.0113729602, -0.0234621018, -0.033803761, -0.0062988149, 0.0133925909, -0.0148106301, -0.0122467009, -0.0296785552, 0.0277878363, -0.065831393, -0.0158276074, 0.0238345154, -0.002302523, -0.0180334467, -0.00566499447, -0.0391607955, 0.019394191, -0.00506698294, -0.02117032, -0.0183342434, -0.00267851818, 0.0229034796, 0.001287336, -0.0118671255, -0.0132063841, -0.00700067263, -0.0191363655, 0.0259544123, -0.0395618565, 0.0213565286, 0.0312828, -0.0155124879, 0.00531048467, 0.00825757068, -0.00189429964, 0.00704722432, 0.039246738, 0.0179904755, 0.00510995416, 0.0205830522, -0.0188069232, 0.00110023364, 0.00779205328, 0.00490226131, 0.02780216, -0.0180048, -0.00348780327, -0.0246796086, -0.00712600444, 0.012296834, 0.0491586886, 0.0132278698, -0.0153549286, 0.0275300108, 0.0246939324, -0.0470674373, -0.00888781063, -0.0108859567, -0.0357231274, 0.00374562852, -0.0133209731, 0.00651008869, 0.0340042897, -0.018305596, -0.0174461771, -0.0266849175, 0.0176753551, -0.0195374265, -0.00486645242, -0.00748409517, -0.0340902321, 0.019852547, -0.036038246, 0.00757003715, 0.0330589302, -0.017388884, 0.0209554657, 0.0180620942, -0.00489509944, 0.0215713829, 0.020310903, -0.00962547772, 0.0263268258, -0.00299900933, -0.0254244376, 0.0123039959, -0.00159797969, -0.0058189733, -0.00382798933, 0.0190933943, -0.0159278736, -0.00815730542, -0.034319412, 0.0234764256, 0.0239920747, 0.0303947367, 0.0396191515, 0.00366147724, -0.0512212925, 0.020253608, -0.00758436043, 0.0116952416, -0.0123612899, 0.0140944486, 0.00913847424, -0.0367257781, 0.0149538666, 0.00885916315, 0.0251379665, 0.0208122302, 0.0101339659, 0.0244647544, 0.00868011825, 0.0300509706, 0.00331591978, 0.0154695176, 0.000742590521, -0.0208408777, -0.00490942318, 0.00169824506, -0.00091850257, -0.0221443269, 0.00425053621, -0.0121965688, -0.00267314701, 0.0163002871, -0.00543223554, 0.00264091883, 0.00183073862, -0.0224594474, 0.0623937212, -0.0124687171, 0.0173459128, 0.0142806564, 0.0321995132, 0.0375852, 0.0209124964, 0.0288477857, 0.00802839268, 0.00231863721, 0.00991911162, 0.0167299956, 0.0310249757, -0.0295066722, 0.0041753375, 0.00416101376, 0.00441525783, 0.0257825293, 0.00732653541, -0.0247655511, -0.0102199083, 0.0182626247, -0.0535130724, 0.0383873209, 0.0123398043, -0.00263375696, -0.0248085223, 0.0161427278, -0.00563634746, 0.0080713639, 0.00390318851, -0.000961473444, 0.00899523776, -0.00548236817, -0.0164578483, 0.0126119535, -0.0131490901, 0.0245077256, -0.0128482934, 0.00145832426, -0.0192652792, 0.00619138777, 0.00284503051, -0.0396764465, 0.0102628786, 0.0108143389, -0.0210700557, -0.0186063908, -0.000925664383, 0.00310822716, 0.0229894221, -0.0131848985, 0.0188498925, 0.000888064911, -0.0075915223, 0.0454059, 0.0190074537, -0.0234621018, 0.0294493772, -0.0167443193, 0.00299542863, -0.00348243187, -0.0204684623, -0.0119172577, -0.00472321594, -0.0153835751, -0.0185204502, 0.00462653162, 0.0253671445, -0.0343767069, 0.0123183196, 0.00368475309, -0.0133567825, 0.0115806526, 0.0211846437, -0.0230467152, 0.0775767639, -0.0226313304, -0.00754855154, -0.00636685221, -0.000416951836, -0.00374204759, -0.0338897035, -0.0474398546, -0.037413314, 0.00592282, 0.0106925881, -0.0310249757, -0.0227172729, 0.0216716472, 0.001323145, -0.0249804053, 0.0250806715, -0.0195803978, -0.0501899906, 0.0436297692, 0.0277878363, 0.0118313162, -0.0180048, 0.0130559858, 0.00227566622, 0.00651366962, 0.0293920822, -0.017503472, -0.00829338, 0.00650650775, -0.00616274076, 0.00292202, -0.0212562624, -0.0499035157, 0.00734085869, 0.0131490901, 0.00842229277, -0.021227615, -0.00916712172, 0.0190217774, 0.0212705862, -0.0191936605, -0.0046515977, -0.028317811, -0.0418536402, -0.0314546861, 0.00766314054, 0.00529616093, 0.00726207905, 0.000983854174, 0.0268997718, 0.0345199406, -0.0114875492, 0.00845094, 0.0188212469, 0.0280599855, -0.00455491338, 0.0124400705, 0.00111187156, -0.0301082637, -0.0259114411, -0.00651008869, 0.0456350744, -0.0109217661, 0.0203538742, -0.019795252, -0.0274727177, 0.0129915299, 0.00825757068, 0.00251200609, 0.0189501587, -0.0010339868, 0.0087803835, -0.00743396254, -0.0168159381, -0.00427560275, 0.0120748179, 0.013843786, -0.0128554553, 0.0303374417, 0.00992627349, -0.020769259, -0.00992627349, 0.0027143273, -0.0314546861, 0.0201533437, -0.00969709549, -0.00940346159, 0.00141624862, 0.0028808394, 0.00840796903, -0.0135215037, 0.0203395505, 0.00840796903, -0.0016749691, -0.00375279039, 0.0123541281, 0.00799974613, -0.00228640903, -0.00309390342, 0.00208587828, -0.00772043504, -0.00319954031, 0.00311717927, 0.00817879103, -0.0117740212, -0.0340329371, 0.00640624203, 0.00436870614, 0.0241209883, -0.0295926128, -0.0186780095, -0.00110650016, -0.0277878363, 0.00399629213, 0.0093963, -0.00668197218, 0.0126119535, 0.00388528383, -0.0164292, 0.0145384818, -0.0174748246, -0.0050061075, -0.053885486, -0.0257682055, 0.0114660636, -0.0262265615, 0.0369263105, 0.0164578483, 0.0247512273, -0.0069970917, 0.0219867676, -0.0112798568, 0.0278881025, -0.0298504382, -0.00645637512, -0.0367830731, -0.00392467389, 0.00508488761, 0.0250949953, 0.0074769333, 0.0127695138, 0.0174891483, 0.00126316492, 0.00880903099, 0.0121392738, 0.0150827793, -0.00964696333, -0.0113443127, -0.0233331881, -0.0101339659, 0.00491658505, -0.0133925909, -0.0101554515, 0.00584045891, 0.0179331806, -0.0393899754, 0.0125116883, -0.0406791, 0.0243071951, 0.027000038, -0.0128841028, -0.00416101376, -0.0130559858, 0.00316015026, -0.0153119573, -0.0185061265, -0.00584045891, 0.00863714702, -0.0303947367, -0.0262408853, 0.00551817752, -0.0283034872, 0.0169018805, -0.00426127901, -0.016930528, -0.0188928638, 0.0183485672, -0.0218148846, 0.0156270768, -0.0296785552, -0.00319954031, 0.00729788793, 0.00156754197, 0.0012739076, -0.00315477885, 0.00543939741, 0.0110148694, -0.0217146184, -0.0598727614, 0.0254960563, 0.0242642239, 0.00316910259, 0.0219724439, 0.0151973683, 0.0169448517, 0.026885448, -0.00429350743, -0.0332308151, -0.00964696333, -0.00580106908, 0.0198239, 0.0519661196, 0.0457496643, 0.0044224197, 0.0287904907, 0.0309963282, 0.00217540096, -0.0194371622, -0.0343480594, -0.00842945464, -0.0151543971, -0.0137363588, -0.0513645262, -0.00439735362, 0.0141445817, 0.0205830522, -0.00784218591, -0.000450075226, -0.0107212346, 0.00482348166, 0.00615916, 0.0142734945, -0.00785651, -0.0190933943, -0.0397623889, 0.00285577308, -0.0240350459, -0.0252525546, -0.00376353296, 0.032485988, 0.00991911162, -0.018305596, 0.00809284952, -0.0145456437, -0.00350212678, -0.0295353197, 0.0179331806, -0.00395332091, -0.00396048278, -4.64119075e-05, -0.00486645242, -0.0121034654, 0.00587984873, -0.028031338, 0.00820743851, -0.0292918179, -0.0268997718, 0.00347347953, 0.00222016219, -0.0305666197, 0.0081859529, 0.0464085527, 0.0102843642, -0.0254960563, 0.0112368856, 0.0075915223, 0.0187209807, -0.00274297455, -0.0104562482, -0.0258827936, 0.0597008765, -0.0197522826, 0.0397337414, -0.00984749384, -0.0281172805, -0.00598727632, -0.0174175315, 0.0505910516, 0.0195517503, -0.0122252153, 0.0387024395, 0.0117453746, 0.016242994, -0.0102843642, -0.00862998515, 0.00349675538, 0.00603024708, 0.0214138217, -0.0149395429, 0.0374992564, -0.00511711556, 0.0145384818, -0.0236626323, -0.0143880835, -0.0179331806, 0.0063561094, -0.0115090348, 0.0335172862, 0.0136217698, 0.00217898167, 0.0122108925, -0.00519589568, -0.0241782833, 0.0208552014, -0.0387597345, 0.00562918559, 0.00679656118, -0.00751990406, -0.0184058603, 0.0156557243, -0.00103219633, -0.0154838413, -0.0478982106, 0.00131419278, 0.00812865794, 0.0356944799, 0.00789948, -0.00608396064, 0.0119172577, 0.013442724, 0.034434, -0.0251952596, 0.000797199376, -0.0106925881, 0.0191506892, -0.00650292682, -8.95786216e-05, 0.00667122938, -0.010986222, -0.0025281203, 0.00213601091, -0.00182089105, -0.0178329162, 0.00268747052, -0.010298688, -0.0234191306, -0.00690756924, -0.0111437822, 0.0290912874, 0.0107069109, 0.031970337, 0.0322568081, -0.00661751581, -0.0213422049, 0.00405358663, 0.0176753551, 0.0141660674, -0.035178829, 0.0136289308, 0.00170988298, 0.0381867886, -0.00974006671, 0.00164900755, -0.0239061341, 0.0064706984, -0.0228605084, -0.0228891559, -0.00547878724, 0.0130631477, -0.0290339924, -0.0140514784, 0.0133066494, 0.020310903, -0.012984368, -0.0148679251, 0.0230037458, -0.0310822707, 0.0140944486, -0.0242785476, -0.0198955182, 0.0190790705, 0.00590849621, 0.0321995132, -0.0216716472, -0.034434, 0.0228891559, -0.03775708, -0.00734802056, -0.0076488168, -0.0265130345, 0.0100981575, 0.0130201774, -0.0196090452, 0.0156700481, 0.0198668707, -0.00983317, 0.00563634746, -0.0111437822, 0.0204684623, -0.0271003023, -0.000151181404, 0.0187353045, -0.0187926, -0.00243680715, 0.00537136, 0.0144668631, -0.037814375, -0.017618062, 0.00432573538, 0.0196090452, -0.00815014355, -0.00262838555, -0.0226599779, -0.0433432944, 0.0259544123, -0.00754855154, 0.0139655368, 0.00740531506, 0.0124830408, 0.00307241804, -0.026312504, -0.0167156737, 0.0182339773, 0.00553608174, -0.013098957, 0.0124543943, 0.00867295638, 0.017618062, 0.00644205138, 0.0035844876, -0.0324000455, -0.008006908, -0.0110650016, -0.0230467152, 0.0204971097, -0.0128339697, -0.00839364529, -0.0178042687, 0.00998356845, -0.00812865794, -0.00797109865, 0.00830770377, -0.0151114268, -0.00713316631, 0.0110220313, 0.00638117595, -0.0159278736, -0.0208408777, 0.00728356419, 0.00779205328, 0.0093533285, 0.016185699, 0.0125188502, 0.00667839125, 0.0035844876, -0.02117032, 0.0038924457, -0.00608037971, 0.037413314, 0.0154122226, 0.0178758875, -0.0312828, 0.0134570478, -0.00121482264, -0.00298468582, -0.0312255081, -0.000686638872, 0.0123827755, 0.0152546633, 0.0202822555, 0.00534629403, -0.0155697828, 0.000281548797, 0.0664043352, -0.00528541859, -0.00990478788, 0.0113299889, -0.00435080193, -0.027974043, -0.00739099178, -0.000883588742, -0.00159618922, -0.0255247038, 0.00226671388, -0.000271253695, 0.00486645242, 0.00340007106, -0.0298504382, 0.0132421935, -0.00203932635, 0.00167855, 0.00270537497, -0.0379289649, -0.0199814606, -0.00195875601, 0.0018191007, 0.00463369349, -0.000352271716, 0.00964696333, -0.0246223155, -0.0120461704, 0.00208945922, -0.00517082959, 0.00111187156, 0.0112870177, 0.0142018767, 0.0028862108, 0.00595146697, 0.0384732634, -0.0212562624, 0.014359436, -0.00719404174, 0.0160281379, 0.00845094, 0.0221872982, 0.0156843718, 0.00604457082, 0.00158813212, 0.00261406205, -0.00557905296, -0.00752706593, -0.0191506892, -0.010241393, 0.0108501473, -0.0114302542, -0.00227387575, -0.0279453974, 0.00125689828, 0.0184918027, -0.00389602664, -0.0250663478, 0.0111867525, -0.00721194642, -0.0269857142, 0.0145026725, 0.00246903533, -0.019566074, -0.00783502404, 0.00878754538, -0.0152689861, -0.00855836738, -0.0156414, -0.00597295258, -0.00451194262, -0.00744828628, -0.00238488382, -0.00897375215, 0.0141445817, -0.00347885094, -0.00553608174, 0.0229321271, 0.007294307, 0.00817879103, -0.0221156795, 0.0125904679, -0.038731087, 0.00706871, -0.0176610313, 0.00187102379, -0.0151973683, -0.00514934398, -0.00337679521, -0.0074769333, 0.00523170503, 0.0323141031, -0.00860133767, -0.00915996, -0.00488793757, -0.0132636791, 0.0252382308, -0.00394974, -0.00947507937, 0.00788515713, 0.0389316194, 0.0183628891, 0.0235193949, 0.0417676978, -0.00333024329, -0.0143809216, -0.0102772024, 0.00966844801, 0.0336605236, 0.013270841, 0.0134355621, -0.0115448432, -0.00687892176, 0.0189071875, 0.00953953527, -0.00331054837, -0.00556114828, 0.0171310585, 0.0150827793, 0.0328011066, -0.0213135574, 0.0111222966, 0.0162000228, -0.00702215824, 0.0280456617, -0.0147103649, 0.0231469814, 0.00307599897, -0.00916712172, -0.0074196388, -0.00421472732, 0.0221729744, -0.0154695176, 0.00754855154, 0.0108215, -0.00725849811, -0.000305496098, 0.0205114335, 0.0478409156, -0.0136217698, 0.00461936975, -0.00869444199, 0.00721910829, -0.00784934778, 0.020310903, -0.0304233842, -0.0346918255, 0.00712958537, 0.0113872839, -0.0341475271, -0.0231326576, 0.016873233, -0.02002443, -0.00695770187, 0.0452626608, -0.00982600823, 0.00103756774, -0.0118814483, 0.0155124879, -0.000637401419, 0.0112082381, 0.0352361239, 0.0146029377, -0.0231756289, -0.0153692523, 0.00212884904, -0.0253241733, -0.00216286769, -0.00398196839, 0.0278451312, 0.0142878182, 0.00700425357, 0.0173029415, 0.0015657515, 0.0182769485, -0.0074196388, 0.0404785685, 0.0110291932, 0.0261549428, -0.0337751135, -0.00570080383, 0.00327115832, -0.0135787986, 0.0326292217, -0.026312504, 0.0104061151, -0.0232615713, 0.0265989751, 0.0245936681, -0.00628091069, -0.0206260234, -0.0127122188, -0.00242427387, 0.0350355916, 0.0124257468, -0.00595146697, -0.0339469947, -0.0395332091, 0.0112512093, -0.000565783295, -0.0295353197, 0.038673792, 0.00197307975, 0.051536411, 0.00437228708, -0.00691473112, -0.0172599703, -0.00618780684, 0.000823608541, -0.00489509944, -0.0139440512, 0.00694695907, 0.00105457706, -0.0192366317, 0.0256249681, -0.0234764256, -0.0362674221, -0.0123326434, -0.0046444363, 0.0104490863, 0.0281316042, -0.000755123736, -0.00137775391, -0.0105207041, -0.0193798672, -0.00147354312, 0.00628449162, -0.0172599703, 0.0320562758, 0.00476260623, -0.0119387433, 0.0246079918, 0.0013473162, 0.00828621816, 0.000376219017, 0.00673926668, 0.00595504791, -0.000461937, -0.00619496871, 0.0104920566, 0.0211130269, 0.0160281379, -0.0180048, -0.0140586402, 0.00870876573, -4.19637508e-05, 0.0090596946, -0.018019123, -0.0040607485, 0.00792096555, -0.0189501587, -0.0127265425, 0.00325862528, -0.0310536232, -0.0150971031, 0.00971141923, 0.00437586801, 0.0157559905, -0.0363247171, -0.0126549248, 0.026026031, 0.0466090813, 0.000318924518, -0.0143236276, -0.028776167, 0.0159278736, -0.0261692666, 0.0201103725, 0.00550385378, 0.0189215112, -0.00469815, 0.018935835, 0.0194801334, 0.0106854262, 0.00857985299, -0.0172026753, 0.00405000569, -0.0358950086, 0.000440003932, -0.0114589017, -0.016414877, -0.000141445824, 0.0014672766, 0.00439735362, -0.00221300032, 0.0148822488, -0.0138079766, -0.0195087809, 0.00806420203, 0.020482786, 0.0158992261, -0.0161140803, -0.0252095833, -0.0184631553, 0.0247225799, 0.0244074613, -0.00267314701, -0.019623369, -0.0212419387, 0.0215427354, -0.00472679688, -0.0157130193, -0.0218005609, 0.00711526163, 0.00206976407, 0.0383873209, 0.00891645811, -0.00964696333, -0.00437944895, 0.000346228917, -0.00947507937, 0.00902388524, 0.0103416592, 0.000134507805, -0.0109790601, 0.00209304, -0.0472679697, 0.0187496282, -0.00887348689, -0.00517441053, 0.00434364, -0.0114660636, -0.0336891711, 0.000605173234, -0.0048915185, -0.00184058608, -0.00701141544, -0.00231684675, -0.0155554591, -0.0222016219, 0.0257538818, -0.0111939143, -0.026885448, 0.0289050788, -0.00306167523, 0.0416244604, -0.00948940311, -0.0119888755, 0.0163575821, 0.00279668812, 0.00756287528, 0.0359236561, -0.00741247693, -0.00186386204, -0.0202679317, -0.00283249724, 0.0108859567, 0.00182357675, -0.0279024262, 0.00519947661, -0.0413952842, -0.0127623519, 0.0146960411, -0.016185699, -0.0310249757, 0.0162716396, 0.000165057427, 0.0218721777, -0.00814298168, -0.00278057414, 0.000203216463, -0.00161856983, -0.00539642666, -0.0206403472, -0.00171794, 0.0299363807, 0.00483064307, 0.0226313304, 0.0274440702, 0.00141624862, -0.00926738698, 0.0232472476, 0.0472393222, -0.0154122226, 0.0105207041, 0.000753333268, -0.0141087724, -0.0165008176, -0.00214496325, -0.0295353197, -0.0370695479, -0.0336605236, 0.0161140803, 0.00715107098, -0.0140801258, -0.00754855154, 0.0102127464, 0.00152636156, 0.00346631766, 0.00718688, 0.000223023351, 0.0204254929, 0.0269570667, 0.00526393298, 0.000825846626, -0.00730863074, -0.01773265, 0.00351824099, -0.00343229924, 0.0238918103, -0.0058189733, -0.00292739132, -0.00516008679, -0.000183521479, 0.0263984445, 0.00985465571, -0.0206403472, -0.0144811869, 0.00942494627, -0.0238631628, 0.00895942841, 0.0201819912, -0.00301154261, -0.0188355688, 0.00317447376, -0.0208981726, -0.0121535975, 0.02117032, 0.00015778371, 0.00827905629, 0.0154838413, 0.00268747052, -0.0246652868, -0.0141016105, -0.0131490901, 0.00565067073, 0.0345772356, 0.00526035205, 0.00440451549, 0.0137220351, -0.0117596975, -0.0148822488, -0.0112154, 0.00187460473, -0.00508130668, 0.0121392738, 0.0136933876, 0.019795252, 0.00345020369, 0.0111581059, 0.00273581268, 0.0103344973, 0.00364894397, 0.0146101, -0.018649362, 0.0127050569, 0.0155268116, 0.0102270702, 0.0423119962, -0.00587626826, -0.0105063803, 0.000804808806, 0.00125152688, 0.0256822631, -0.0174748246, 0.0154838413, 0.0249087885, -0.0193798672, 0.00359344, -0.00165616942, -0.0110005457, -0.00229178043, 0.005177991, 0.0051206965, 0.0110077076, 0.00499536516, 0.00280743092, 0.00475186342, -0.00448329514, 0.0172599703, 0.00436512521, -0.0503905192, -0.0128268078, -0.00232579885, -0.00341439457, -0.0144453775, -0.00109754794, 0.000903283712, -0.00685027475, -0.00906685553, -0.003360681, 0.0102843642, -0.017560767, 0.00863714702, 0.017159706, 0.00370623847, -0.0242212527, 0.0252668783, 0.00905253273, 0.0184918027, 0.00700067263, -0.0106997499, -0.00667481031, 0.0165437888, 0.0227888916, -0.00275729829, -0.00602666615, -0.0168875568, -0.016414877, -0.0177756213, 0.0211273506, -0.00903104711, -0.00540358853, 0.0156843718, 0.0145671284, 0.0105923219, -0.00336784287, 0.016644055, -0.00450478075, 0.0162859634, -0.00589775341, -0.0268568, 0.00169287366, 0.0248371698, 0.00308137038, -0.0317411572, -0.0133997528, -0.035980951, 0.00830770377, -0.00676433276, 0.0216143541, -0.00911698863, 0.0057724216, -0.00400703447, -0.0126119535, 0.0199098419, -0.00744112441, -0.0161284041, 0.00694695907, 0.000149838568, -0.00635969033, 0.0026427093, -0.00634536659, 0.019394191, -0.0211416744, -0.0138652707, -0.00387454103, -0.00712600444, -0.00175106339, 0.0219724439, 0.0122896722, 0.0128482934, -0.0133711062, 0.0106639406, 0.00263017602, 0.0277162194, 0.0107427202, -0.0312255081, -0.00842229277, 0.00644205138, 0.0152546633, 0.00490942318, -0.0251666121, 0.0305952672, -0.00533197029, -0.00134463049, -0.000143124373, 0.00706871, -0.00275550783, 0.0203968454, 0.00244396878, -0.0106352931, 0.0213565286, 0.0262838565, -0.000362566818, -0.00463369349, 0.00640982296, -0.0027143273, 0.00639549969, -0.00575451739, 0.00217898167, -0.0091241505, 0.0195947215, 0.00932468101, -0.00145384821, 0.0123183196, -0.0114875492, 0.0116880797, -0.00867295638, 0.0153262811, -0.00128465029, -0.00609112252, -0.00295245764, 0.00498820329, 0.0138867563, 0.0155984303, -0.00178150111, 0.018019123, -0.0326292217, 0.0126047917, -0.00764165493, -0.00559695717, 0.0106209693, 0.0243071951, -0.00348243187, -0.00731221167, 0.00435796333, 0.0194371622, -0.00926022511, -0.00449045701, 0.0242069308, -0.0385305583, -0.00464801723, -0.0201963149, -0.0111795906, -0.0140801258, -0.017159706, 0.0152546633, -0.0329729915, 0.00746260956, -1.6981332e-05, -0.0460361391, -0.000463279808, -0.0119673908, 0.0187782757, -0.0276589245, 0.0184488315, 0.00310285576, -0.00271253684, 0.00432215445, -0.00408581458, 0.00193727051, 0.000522812363, 0.00140550593, -0.0142305233, 0.00762017, 0.00955385901, 0.0136504164, -0.0153549286, -0.0152116921, 0.00303302798, 0.0220727101, -0.000881350657, 0.00835067499, -0.0121965688, 0.028489694, -0.0482133292, -0.00383157027, 0.0197522826, -0.00366505818, -0.0237628967, -0.0084151309, -0.0106209693, 0.00610902719, 0.0119960373, -0.00581181189, 0.00633820519, 0.0127122188, -0.00810717326, 0.0119888755, -0.00622719713, -0.00161677937, -0.00710451929, -0.00639549969, 0.0156700481, -0.00345736556, 0.0181337111, -0.00804271642, -0.0138652707, 0.00463727443, 0.0295926128, 0.00639549969, 0.0163862295, -0.018706657, -0.000900150451, 0.00955385901, 0.0114660636, -0.00721910829, -0.0142806564, 0.0127337044, 0.0230323933, -0.00873741228, -0.0180334467, 0.00353972637, -0.015727343, -0.0207262877, 0.0051887338, -0.00648860307, -0.0145241581, -0.000959683035, -0.00268388959, 0.0125689832, -0.00181372929, 0.00146190519, -0.00227387575, -0.00581539283, 0.0107069109, -0.00589775341, 0.00436512521, 0.018305596, -0.00491658505, 0.00771327317, -0.0187782757, -0.00880903099, -0.00678939931, -0.0175894145, -0.012526012, 0.0122538628, 0.0112368856, -0.00260152877, 0.0297358502, 0.0113729602, -0.0176753551, 0.0101482896, -0.0245793443, -0.00948224124, 0.016414877, -0.016873233, 0.00970425736, 0.00151114271, 0.0119315814, -0.00360418274, -0.0139154037, 0.00609828439, -0.00321565429, -0.00280743092, -0.00708303368, 0.0222875644, -1.51629019e-05, 0.00718688, -0.00171883521, 0.00910266489, 0.00624868227, 0.00236339844, -0.00227924716, 0.0127408663, -0.00106890069, -0.00463727443, 0.0026427093, 0.00094535941, -0.00702932, 0.0393040329, 0.0119100958, -0.00128196459, -1.20855602e-05, -0.00189609011, 0.016185699, 0.0119888755, -0.00587984873, 0.00196054648, -0.0131705748, 0.0262838565, 0.020482786, -0.0095323734, -0.00252095843, 0.00883051567, 0.0162716396, -0.0115734907, -0.0218292084, 0.0288621094, -0.0096039921, -0.0132923257, 0.0230610389, -0.0144024072, 0.00476260623, -0.000191466606, -0.00161051285, -0.00570796523, 0.00284144958, -0.0194085147, -0.0078207, -0.0091241505, 0.00300796167, 0.000240368361, -0.0062307776, -0.00131150708, 0.000809284917, -0.00804271642, -0.00596937165, -0.00799258426, -0.0110793253, -0.0133711062, 0.0147676598, 0.0233904831, 0.0161427278, -0.0144883487, 0.00460146507, 0.0257252343, 0.00687534083, 0.0284753703, 0.0189071875, -0.00419682264, -0.00360597321, 0.039132148, 0.0223591812, 0.00135179237, 0.0147246886, -0.0017349493, 0.0126477629, -0.0143665979, 0.00848674867, 0.0114374161, 0.00318521657, 0.00384589378, -0.00198919373, -4.27680561e-06, -0.00209841132, -0.00545730209, -0.0101124812, -0.0111079728, 0.00581539283, -0.0053606173, -0.0117453746, -0.0233475119, 0.0142806564, 0.00493448973, 0.0202249624, 0.0093533285, -0.008121497, 0.0110721635, 0.0331448726, 0.0236483086, 0.00837216, 0.00519947661, -0.00254244381, 0.0123612899, 0.00718688, -0.0118456399, 0.0100337006, -0.0238774866, -0.00293813413, -0.0161427278, 0.0116522703, 0.0146244233, 0.00986897945, -0.0123541281, -0.0290769637, -0.00318879751, -0.0245506968, 0.0122108925, -0.0078207, -0.018763952, -0.00815014355, -0.0114374161, 0.00082674186, -0.00660319207, -0.0021825626, -0.000428589788, 0.0138581097, 0.0112798568, 0.00361492531, -0.018420184, 0.00638833782, -0.0131777367, -0.0267851818, -0.00473037781, -0.00449045701, -0.00701857731, -0.00473037781, 1.54566487e-06, 0.0329156965, -0.00398554932, -0.0112870177, 0.00133478304, -0.00321744476, -0.0130703095, -0.0251952596, -0.00830770377, 0.0178615637, -0.0156270768, 0.0162716396, 0.00750558078, 0.0155124879, 0.0083649978, 0.00638475688, 0.00546804443, -0.00414669, 0.00696486374, -0.0035952304, -0.020769259, 0.0314546861, -0.0222732406, -0.00217719143, 0.0243358426, 0.0181337111, 0.0195231047, 0.00418608, -0.00100444432, -0.0229750983, 0.00545014, 0.00908834115, -0.0179475043, 0.0221156795, 0.00448687607, 0.0252382308, 0.00063874427, -0.0142090386, 0.00703290105, 0.0164578483, -0.00247261603, -0.00134373526, 0.0455491357, 0.0108358236, 0.00047805105, -0.00590491528, 0.00921725389, 0.0242355764, 0.0142376851, -0.0315406285, -0.00451910449, -0.0142949801, 0.034262117, 0.00890213437, 0.0233904831, -0.00232221815, -0.00462295068, 0.00565067073, 0.0200387537, -0.00733369729, 0.0211989675, -0.0389029719, 0.034204822, 0.0136289308, 0.0197522826, 0.00645995606, -0.0127408663, 0.0182053298, 0.0077634058, -0.0135071808, -0.017217, 0.0121607594, -0.00174748246, -0.0194944572, -0.0247369036, -0.0082146, 0.00164900755, 0.00620571151, 0.0208695251, 0.00751274265, -0.0228318609, -0.00749125704, 0.000116267569, 0.00419682264, 0.0214424692, -0.00597653352, -0.0049989461, 0.0118241543, -0.0165724363, 0.0209841132, -0.0213278811, -0.0210127607, -0.0280026905, -0.00888781063, 0.0024654544, -0.0110721635, 0.00538568385, -0.001058158, -0.0106352931, -0.0140013453, -0.0250520241, 0.0152260158, -0.01899313, 0.0083005419, 0.004232632, -0.0114517398, -0.0164435245, 0.00788515713, 0.00722985063, -0.0136074461, -0.00529616093, 0.0159278736, -0.0203968454, -0.00832918938, 0.0174032077, -0.00207334501, 0.00997640658, 0.00991911162, 0.00475544436, -0.0140658021, 0.00794961303, 0.00243501668, 0.00874457415, -0.000448956183, -0.0175177958, -0.0208265539, 0.00220583868, 0.00862282328, -0.0112368856, 0.0136432545, -0.00557189109, 0.0037671139, 0.0236626323, 0.0135859605, 0.000895226724, -0.00360776368, 0.00329443417, -0.00351107912, 0.00554324361, 0.00885916315, -0.000957892567, 0.00333561469, -0.0102557167, -0.00676075183, -0.00339111872, 0.0263984445, -0.0170164686, 0.00692905486, -0.0239347816, -0.00639549969, 0.0058189733, -0.00564709, -0.00810717326, -0.0194514859, 0.00277878367, -0.0264987107, -0.0140371546, -0.00660319207, 0.0207406115, 0.00702573918, 0.00479841512, 0.00472321594, -0.00849391054, -0.0118671255, 0.00731937354, 0.00299542863, -0.0372700766, 0.00509921135, -0.00621645432, -0.00774192065, 0.0200387537, -0.00371698127, 0.0217289422, 0.00285756355, 0.0223735049, -0.0132350316, 0.00976871327, 0.0135931224, -0.00995492097, 0.0319416896, -0.00304735173, 0.00162394124, -0.0141087724, 0.00096505438, -0.00977587514, -0.00984749384, 0.026541682, 0.0198811945, -0.00921009202, -0.0278451312, 0.032428693, 0.0121750832, 0.0279453974, 0.0119100958, -0.0183342434, -0.0155554591, -0.00260869064, 0.0158849023, -0.00619496871, -0.00167228351, 0.00785651, 0.00264808047, 0.00693263533, 0.0159708448, -0.00942494627, 0.0142663326, 0.020253608, 0.0140801258, 0.00096505438, 0.0196090452, 0.00509921135, 0.00166780734, -0.0134642096, 0.00148070499, 0.00415743282, 0.00336247147, -0.00947507937, -0.0125904679, 0.000384276063, -0.00169466413, 0.00159977016, -0.00862998515, 0.00804987829, 0.000133053065, -0.00160156051, -0.0218148846, -0.00425053621, -0.00571154617, 0.00306704664, 0.00415743282, 0.00241532153, 0.00429350743, 0.00401419634, 0.0294780247, -0.00686101755, -0.000434184942, -0.00443316251, 0.00520663848, 0.00687176, 0.017331589, 0.0115376813, -0.00282175443, 0.0220154151, -0.0291056111, -0.0158705786, -0.00742680067, -0.00929603446, 0.0167299956, -0.00530690374, 0.00810001139, -0.0263697971, -0.0153262811, 0.0167156737, 0.0102127464, 0.020941142, -0.00884483941, -0.0051206965, -0.00408223365, 0.00733011635, 0.0198382232, 0.01784724, 0.0003457813, -0.00225955225, 0.0154838413, 0.0217432659, -0.00869444199, -0.00824324787, 0.0321422182, -0.0115734907, -0.0175464433, 0.0126119535, 0.0194085147, 0.00408939552, -0.00247619697, -0.0171167348, -0.0119817145, -0.00590133434, -0.0144955106, -0.00400703447, 0.00979019888, 0.00402852, -0.00943927, -0.00425053621, -0.00784218591, 0.0328584, 0.00989762601, -0.0412806943, -0.0136074461, 0.00131598325, -0.000629344373, -0.00899523776, -0.0116809178, 0.00492374692, -0.00865147077, -0.0127909994, -0.00998356845, -0.0152689861, -0.0190504249, -0.0135501511, -0.00267851818, -0.00566499447, 0.00357911643, 0.0156414, -0.019394191, -0.0176753551, -0.0184918027, 0.00702215824, 0.00297573349, -0.00296857161, 0.0210700557, 0.00267851818, -0.0273151565, -0.00762017, -0.0192796029, -0.00874457415, 0.00789948, -0.00307599897, 0.0215284117, 0.00994059723, 0.00504549779, -2.09399113e-05, -0.0290196687, -0.0057616788, -0.000741247728, 0.0255533513, 0.0076488168, -0.0045871418, -0.00690398831, -0.0116236238, 0.00785651, 0.0105994837, 0.0131061189, 0.0252382308, 0.00455849431, -0.00557547202, -0.0301942062, 0.00827189442, 0.0038817029, -0.00670345733, 0.0171740297, 0.00293992436, 3.71519091e-05, 0.0100981575, -0.00744828628, 0.0101411277, -0.018649362, -0.00537136, -0.0105493516, 0.00126137445, 0.026255209, -0.00709377648, -0.000599354273, -0.0253957901, -0.0122538628, -0.0193225723, -0.00412162393, 0.0271289498, 0.00619138777, 0.0075342278, 0.00385305565, -0.0148392776, -0.0192652792, -0.0236769561, -0.0212132912, 0.00345378462, 0.0151830446, -0.0155697828, -0.0096039921, -0.0196949877, -0.0265273582, -0.00908117928, 0.0181623586, 0.0181337111, 0.0060588941, -0.0183485672, -0.00751274265, -0.00754855154, 0.0234477781, -0.0174605, 0.00322281616, 0.0100551862, -0.0217432659, 0.0192079842, -0.0319416896, 0.00804987829, 0.0161140803, -0.000467755948, -0.00472679688, 0.0264987107, 0.0013258307, -0.0140586402, -0.0112225618, 0.00212705857, -0.00257288152, -0.00825040881, 0.017789945, 0.0051206965, 0.017503472, -0.0266849175, 0.0159278736, -0.00474112062, -0.00265882327, -0.0169878211, 0.0140085071, 0.00908834115, 0.0113443127, 0.00587984873, 0.00608754158, 0.0106854262, 0.00582255423, -0.00652441196, 0.00583687797, 0.013156252, -0.0115806526, 0.00486287149, 0.0225883592, 0.00769894943, -0.00149502861, -0.0119100958, 0.0190217774, 0.00311717927, 0.00804987829, 0.00888064876, 0.0183628891, 0.00479125325, 0.00838648342, -0.00271969871, -0.00252453936, 0.018935835, 0.00269105146, 0.0219151489, -0.0151973683, -0.000111455724, -0.014072964, -0.00656738319, 0.00256392919, 0.0178185925, -0.0031207602, 0.0210414082, 0.00297931442, 0.0202965792, 0.00808568764, 0.0166297313, 0.00846526399, 0.00438661082, 0.0196376927, -0.016185699, 0.00422547, 0.00448687607, -0.00557905296, -0.0016749691, -0.00338753778, 0.00628449162, -0.0174605, 0.00786367152, -0.0163719058, -0.00385305565, 0.00128285983, 0.00811433513, -0.0413093418, -0.0164578483, 0.0317125097, 0.00754138967, 0.0142305233, -0.0118957721, -0.0297072027, -0.029005345, 0.0374706089, 0.00301870448, 0.0229178034, -0.0274870396, -0.00301691401, 0.0154408701, 0.0262265615, 0.0175321195, 0.00746977143, -0.00189788057, 0.00385663658, 0.0116952416, -0.0215427354, -0.00217540096, -0.0100551862, 0.00584404, 0.0104276007, 0.0183772128, -0.00403568195, -0.00335889054, -0.0118026687, -0.0103774676, 0.000526840915, 0.0271862447, 0.00467666425, -0.00888781063, 0.0154265463, -0.0303947367, -0.00461936975, 0.0135644749, -0.00927454885, -0.00400703447, 0.00838648342, 0.036897663, -0.00697918748, -0.0100551862, 0.00974722859, 0.00893078186, -0.000811970618, -0.0249374341, -0.00708303368, -0.0161284041, -0.000913578842, -0.00307062757, -0.00599801866, -0.0118671255, 0.011265533, -0.00791380368, 0.00622719713, 0.00639908062, 0.0128268078, -0.0147390123, 0.00702932, 0.00989762601, -0.00869444199, -0.0129055884, -0.01887854, 0.0124329086, -0.00989762601, -0.00765597867, 0.00509204948, -0.00396764465, 0.00699351076, 0.0174032077, -0.016644055, -0.0111151347, 0.00587268732, -0.00237235078, -0.00644563232, -0.00630239584, 0.0112154, 0.00117453746, -0.0153549286, -0.00804271642, -0.0152976336, -0.0543151945, -0.0267422125, 0.000845541595, 0.0159708448, -0.00220762892, 0.0337751135, -0.00712600444, -0.00426844088, -0.0046444363, -0.0035325645, -0.00116468989, 0.000207804493, 0.00425411714, 0.0114875492, -0.0200674012, 0.0223878287, 0.00141803909, 0.0209554657, 0.0030007998, -0.0160281379, -0.0097185811, 0.00581181189, -0.00227029482, -0.0118241543, 0.00330875791, -0.0264557395, 0.00621287338, -0.00468740705, 0.00938197598, -0.00678939931, 0.0119172577, -0.0157559905, 0.00896659, 0.00804987829, 0.00296141, -0.00240099803, -0.00857269112, -0.0316265672, 0.000926559616, 0.00744112441, -0.00555756735, 0.0042899265, -0.0104419244, -0.0122108925, 0.00546446396, 0.0250520241, 0.0148249539, 0.0305093266, -0.00582613517, 0.0106639406, 0.000770342594, 0.0138079766, 0.00194801332, -0.00614841701, 0.0153835751, -0.00381366583, -0.0108000152, -0.007179718, 0.000161252712, -0.0193082485, -0.0083005419, -0.00857985299, 0.00397480652, 0.0101124812, 0.0156270768, 0.00630955771, -0.0177612975, -0.00559337623, 0.00749125704, 0.0408223383, -0.0288048144, 0.0137650054, 0.00727282185, -0.012411423, 0.000768999744, -0.00936765224, -0.00446897186, 0.00445464812, -2.73883416e-05, 0.0265703276, 0.0149538666, -0.00250484422, 0.0188498925, -0.00316552166, -0.0186923333, 0.0136074461, -0.0253957901, 0.0021825626, 0.00951805059, -0.00282175443, -0.00589417247, 0.00337142381, -0.00370623847, 0.0353507102, 0.0133138113, 0.00450836169, 0.00266419468, 0.0123183196, -0.00710809976, -0.0214138217, -0.00124078419, 0.00837932155, -0.00283786864, -0.0105779991, 0.0187926, -0.00132045941, -0.00692547392, 0.015784638, 0.00140371546, 0.0294780247, 0.0212849099, -0.00962547772, 0.000813313469, 0.0150254853, 0.00744828628, -0.00687892176, 0.0143809216, -0.0065852874, -0.0271289498, -0.0053606173, 0.0071224235, -0.0243788138, -0.0157989599, -0.0213708524, 0.00476260623, -0.0154265463, -0.00174927292, 0.00377427577, 0.00689682644, -0.0309963282, -0.00356121175, -0.034921, -0.00468740705, -0.00449045701, -0.0210557319, -0.0283464584, -0.00777056767, -0.0118528018, -0.0124830408, -0.0150541319, 0.0194658097, -0.00597653352, -0.00824324787, 0.00252632983, 0.00151203794, -0.0136575783, 0.0148679251, -0.0195374265, -0.0176896788, -0.00407865271, -0.00533197029, -0.00527109485, -0.0143164657, -0.000958787801, -0.03787167, -0.0170164686, -0.00494165113, 0.00456207525, -0.00826473255, 0.00884483941, 0.0125976298, 0.00634536659, 0.00613409327, 0.0259257648, 0.00827905629, -0.025739558, -0.00148876198, -0.0185920689, 0.00239741709, 0.0172313228, 0.0245793443, 0.0145384818, 7.03872e-05, 0.000435751601, 0.0157416668, 0.00696128281, -0.0135429893, -0.00739815319, 0.0113586364, -0.0148822488, -0.0112512093, 0.00459788414, 0.0143451123, 0.021643, 0.00516724866, -0.0120246848, -0.00355046918, 0.0282175448, 0.0126262773, 8.1241822e-05, -0.00595862884, 0.00970425736, 5.08880439e-05, 0.000286696362, -0.0158276074, -0.00700067263, -0.0251522884, -0.00926022511, 0.000169757361, -0.0128841028, -0.00125063164, 0.00951805059, 0.00860133767, -0.00595504791, 0.0302801486, -0.0134284, -0.0213995, 0.00125868875, -0.0107212346, -0.0127909994, 0.00653515477, -0.00899523776, -0.0198382232, 0.010470571, -0.0160997566, -0.00627732975, -0.0139297275, 0.0357517749, -0.00731937354, -0.00855120551, 0.00130703102, 0.00444390532, 0.0238918103, -0.00868011825, 0.00416459469, -0.0205114335, 0.0207549352, -0.00355763081, 0.0103989532, 0.000519679103, 0.00345736556, 0.00269642286, 0.0125045264, -0.000150621898, 0.00251021562, -0.00903820898, 0.0130201774, 0.0130273392, 0.00789948, 0.00384947471, 0.0244934019, 0.00673210481, -0.0117883449, -0.00998356845, 0.014130258, 0.026484387, -0.00536777917, -0.00536777917, 0.0128482934, 0.0125331739, -0.00683953194, -0.0199814606, 0.0141159343, 0.010413277, 0.00805704, -0.0137435198, -0.0333740525, 0.00274655549, 0.00322281616, 0.0136360927, 0.0145026725, -0.00381008489, 0.00578316441, 0.00786367152, 0.00105189136, -0.00805704, 0.00063874427, -0.0235337187, 0.00504549779, 0.00763449306, 0.00769894943, -0.00462295068, -0.008121497, -0.0128411315, 0.011380122, -0.00961831585, -0.0061269314, -0.00568648, 0.0176467095, -0.00324788247, -0.0163002871, -0.002001727, -0.00538210291, 0.0147819836, 0.00779921515, 0.00421830826, -0.0147819836, 0.0150398081, -0.00524244737, -0.00657454506, -0.0039461595, -0.0112010762, -0.00189250929, 0.00978303701, -0.025109319, -0.00850823428, 0.0069397972, 0.0211273506, -0.00588342967, 0.0165437888, 0.00901672337, -0.00208587828, -0.0153692523, 0.0244647544, -0.0184488315, -0.0309676826, -0.0232329238, 0.00810001139, 0.00974722859, 0.0104419244, -0.00956102088, 0.00136074459, -0.00597653352, -0.0110793253, -0.000582344946, 0.00374920946, 0.0020053077, 0.0045943032, -0.0147676598, 0.00569006102, 0.00467666425, 0.000582344946, 0.0056077, -0.000367266766, 0.000376666634, -0.0229321271, -0.000246634969, -0.00158902735, -0.01006951, -0.00326757738, -0.0270430073, -0.00199098419, 0.0031261316, -0.00946075562, 0.0340615846, -0.00420040358, -0.00379576115, -0.00774908205, -0.0129199121, -0.00806420203, -0.0343767069, -0.00406432897, -0.00647427933, -0.0156843718, 0.0313114487, -0.00651725056, 0.0112225618, 0.00198382232, 0.0186923333, -0.0179045331, 0.00559695717, -0.0203395505, -0.00382082746, 0.00611260766, -0.0141230961, 0.00516366772, -0.0290626399, -0.0340329371, 0.00827905629, -0.00676075183, 0.00782786217, 0.00340186153, -0.00463727443, -0.00174837769, -0.0211559981, -0.0155268116, -0.0201963149, -0.0291199349, -0.000296543847, -0.0215427354, -0.00136880158, 0.0138223, -0.00772043504, 0.0707587153, 0.0064134039, -0.0107212346, -0.00793528929, -0.00106173882, -0.000948940287, -0.00998356845, 0.035522595, -0.00253349147, 0.00799974613, -0.0108358236, -0.00915996, 0.00563634746, 0.00277699321, -0.0179331806, 7.25693171e-05, 0.029005345, -0.008121497, -0.0225167423, 0.00665690564, -0.0107355583, -0.0149395429, 0.0105779991, -0.0133567825, -0.00394974, 0.0131204426, -0.0152116921, -0.00791380368, -0.000637849036, -0.00222016219, 0.00273044151, -0.00333561469, -0.00130613579, 0.0132493554, -0.0173459128, 0.0186350383, 0.00944643188, 0.00489868037, 0.0205544047, -0.000189116647, 0.0166727025, 0.0179045331, 0.00582255423, -0.00285219215, 0.032027632, -0.0151257506, 0.00112350949, -0.00822892413, -0.00817879103, -0.0140944486, -0.00688608363, -0.0260117073, -0.0116594322, -0.0102915261, -0.0221156795, -0.0125833061, 0.0388170294, -0.0103273354, -9.45583233e-05, -0.00445106719, -0.00127838377, 0.00096505438, 0.00498462236, -0.00797109865, 0.00787799526, -0.0209268201, -0.027859455, -0.000727819279, -0.0183915365, 0.0217575897, -0.0117095653, -0.0125045264, -0.00113872834, -0.015784638, -0.0238058679, 0.0210270844, -0.00521380035, -0.00106263405, 0.00316015026, 0.00441525783, 0.00369191496, 0.0192652792, -0.0321708657, -0.0116522703, 0.0169018805, -0.0150254853, -0.024650963, -0.00724059343, -0.0140872877, 0.0341761746, -0.000696038769, 0.0361241885, -0.0250949953, -0.00354688824, 0.00822892413, -0.000336829049, -0.00228103762, 0.0188212469, 0.0234907493, -0.0186350383, 0.0190074537, 0.0130846333, 0.00694695907, -0.019165013, -0.016472172, 0.00532480842, 0.00936049, -0.00171973044, 0.0109360889, -0.0120390086, 0.000948045054, 0.00563276652, 0.00530690374, 0.0253957901, 0.0159851685, 0.00795677491, 0.0151687209, 0.00898091402, 0.0231040101, 0.00496313674, 0.00648502214, 0.00390676921, -0.0142090386, 0.0215140879, 0.000749752333, 0.0133711062, 0.0194371622, 0.0122037306, 0.00632388145, -0.0248228461, 0.0065387357, -0.0027089559, 0.00989762601, -0.0052352855, 0.00479841512, -0.00162662694, -0.00643847045, 0.0146315852, -0.00355942128, -0.00544297835, 0.0136002842, -0.00577600254, 0.0146244233, 0.0122252153, -0.0225740355, -0.00383157027, 0.00897375215, -0.00604099, 0.00654231664, 0.00398554932, 0.0115734907, 0.0158562548, 0.00390676921, -0.0015057713, 0.00791380368, 0.0249374341, -0.0193225723, 0.00258183386, -0.00645279419, -0.00142609607, -0.00858701486, -0.00614125514, 0.0191363655, -0.0157703143, 0.00352540263, -0.0437157117, 0.0151830446, -0.00113156659, 0.0213422049, 0.0329729915, -0.000939092832, 0.0237915441, 0.00320670195, 0.00624510134, -0.00785651, 0.0158419311, -0.00813582, -0.0146960411, 0.0204254929, -0.0152116921, -0.00540000759, -0.01453132, 0.0203825217, 0.0517655872, -0.0217146184, -0.0075342278, -0.000385618885, -0.00670345733, 0.0174605, 0.0212419387, 0.0231469814, 0.0022398571, 0.00872308854, 0.00933184288, -0.00243859761, 0.00605531316, 0.0117382128, -0.0121321119, -0.0234621018, -0.00320312101, 0.0166727025, 0.0114875492, 0.0213565286, -0.0183628891, -0.00237951265, 0.00603024708, -0.0118456399, 0.00978303701, 0.0303947367, -0.0028235449, -0.0034806414]
01 Jun, 2021
How to populate virtuals to a mongoose model using Node.js ? 01 Jun, 2021 In Mongoose, the virtual is the property that is not stored in the database, they only exist logically, and you cannot query directly on the basis of this property. To know more about virtual refers to this article Mongoose Virtuals. Populating Virtuals: In MongoDB, Population is the process of replacing the specified path in the document of one collection with the actual document from the other collection. Mongoose also supports a population of virtual properties during their creation. Whenever we want our virtual property to refer to a model of any other collection we have to populate it so that it can contain the document(s) of the other collection. Install Mongoose: Step 1: You can visit the link Install mongoose to install the mongoose module. You can install this package by using this command. npm install mongoose Step 2: Now you can import the mongoose module in your file using: const mongoose = require('mongoose'); Database: We have two collections users and posts in our database GFG. users: The users collection has two users User1 and User2. posts: The posts collection is empty. Initially users and posts collection in database Implementation: Create a folder and add the file main.js. For populating virtual, we have to specify three necessary options: ref: It contains the name of the model from which we want to populate the document. localField: It is any field of the current collection. foreignField: It is any field of the collection from which we want to populate the document. Mongoose will populate those documents from the model given in ref, whose foreignField value will match with the localField value of the current collection. Example: Now we will see how to populate virtuals to a mongoose model using Node.js. main.js // Requiring module const mongoose = require('mongoose'); // Connecting to database mongoose.connect('mongodb://localhost:27017/GFG', { useNewUrlParser: true, useUnifiedTopology: true, useFindAndModify: false }); // User Schema const userSchema = new mongoose.Schema({ username: String, email: String }) // Post Schema const postSchema = new mongoose.Schema({ title: String, postedBy: mongoose.Schema.Types.ObjectId }) // Creating and populating virtual property 'user' in postSchema // will populate the documents from user collection if // their '_id' matches with the 'postedBy' of the post postSchema.virtual('user', { ref: 'User', localField: 'postedBy', // Of post collection foreignField: '_id',    // Of user collection justOne: true }) // Creating user and post models const User = mongoose.model('User', userSchema); const Post = mongoose.model('Post', postSchema); // Function to create a post by the user const createPost = async (next) => { const user = await User.findOne({ _id: '60acfa48e82a52560c32ec0a' }); const newPost = new Post({ title: 'Post 1', postedBy: user._id }) const postSaved = await newPost.save(); console.log("post created"); // The findPost will be called after the post is created next(); } // Function to find the post and show the virtual property const findPost = async () => { const post = await Post.findOne().populate('user'); console.log(post.user); } // Creating the post then showing the virtual property on console createPost(findPost); Run main.js using the command: node main.js Output: Output after executing main.js Explanation: Here we are finding User 1 by _id field and then creating a post whose postedBy field value will be the User 1 _id field value (hence the post is created by User 1). Whenever a post will be created, a virtual property ‘user’ will be created for the post which would be populated with the document of the User model whose _id field value matches with the postedBy value of the post. Database: After creating a post with a populated virtual property user, we can see Post 1 in posts collection of our database. But here we cannot see the property user in the database because it’s a virtual property, and it doesn’t get stored in the database. Posts collection after creating the post with populated virtual Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?
https://www.geeksforgeeks.org/how-to-populate-virtuals-to-a-mongoose-model-using-node-js?ref=asr2
Languages
How to populate virtuals to a mongoose model using Node.js ?
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0136747295, 0.023342479, -0.0195103493, 0.0603815429, 0.0168584567, 0.02701433, 0.00743841194, 0.000171662658, -0.0262420755, 0.0381464474, 0.029899355, 0.0136747295, -0.0180241242, -0.0523675829, 0.0419057235, 0.010542, -0.0251492634, 0.0316769965, -0.0114891045, -0.00376291829, -0.00413083192, 0.00512893405, -0.000513166655, -0.0117732352, -0.0284277014, 0.00771525782, 0.0236630384, 0.00762054743, -0.0125746317, -0.0288502555, -0.00492494274, 0.0155470818, 0.0296807922, 0.000277756568, -0.0142648481, 0.0135435918, 0.00537663838, -0.0134925945, -0.0349991471, 0.00507793622, -0.0055514886, 0.00156272214, -0.0390207, -0.00051772, -0.0132230334, -0.00974060409, 0.0189566575, -0.010199585, -0.0230656341, -0.00828352, 0.0349991471, 0.00716156606, 0.00193609984, 0.00993731, -0.0188983735, 0.000933444186, -0.00410897564, -0.0137038715, -0.00415997347, -0.0383212976, 0.0303073395, -0.028806543, 0.000395233918, -0.00670987, 0.023677608, 0.0656270459, -0.0675504, 0.0366019383, -0.0283985585, -0.0121083651, 0.00842194352, 0.0677835271, 0.0610809438, -0.0340374745, 0.00536206784, -0.0141992792, -0.0018851019, 0.0234444756, 9.53365234e-05, 0.0349991471, 0.00797753222, -0.0241001621, 0.000807770703, 0.0389041305, 0.036456231, -0.00300705619, 0.0374470502, -0.0528921336, 0.0152265234, -0.0199183319, -0.00463352585, -0.0223516617, -0.00495772716, -0.0323763974, -0.0124289235, 0.0165233277, -0.000123510603, -0.0148185398, 0.00294148759, 0.0412063226, 0.0157656446, -0.0140827131, 0.0302199144, -0.0366310813, 0.00981345773, -0.00122941425, 0.0337460563, -0.0234153327, 0.0643448085, 0.012931617, 0.0150371026, -0.00797753222, -0.0384961478, 0.0491911434, 0.000101085177, 0.0157365035, -0.0129461875, -0.0290833879, 0.00364453043, -0.00834180322, -0.00420732889, 0.0541452281, 0.00174850028, 0.0222788081, -0.0666761473, 0.0504150912, -0.0304239057, 0.00974788889, 0.0161153451, 0.037913315, -0.0406817757, -0.014935107, -0.0231239162, 0.00628367299, 0.0152119529, -0.00488487259, 0.0223370921, 0.00608696649, 0.00125035981, 0.00309265987, -0.0280051474, -0.0307444632, -0.0110082664, 0.0247704219, -0.0376218967, 0.0133468853, -0.0273786, -0.00305076875, -0.0105565703, -0.00259178737, -0.019728912, -0.0481129, 0.0623048954, 0.0403320752, -0.0159404948, 0.0195394903, 0.0122759296, 0.0104400041, 0.012173933, -0.000594216923, 0.0186506696, -0.0650442094, -0.00776625564, -0.00422918517, 0.0263732132, 0.0265043508, 0.0220602453, 0.0108115599, -0.0262712166, 0.0156782195, -0.0424885564, 0.0150953857, -0.0184758194, 0.0540286601, -0.0279468633, 0.00645488035, 0.0152848065, -0.0282091387, 0.0266937707, 0.00437489338, -0.0511436351, -0.0196414869, 0.00280670729, 0.0213025622, -0.00411261851, 0.0246392842, 0.0204283111, -0.00798481796, -0.013660159, -0.00893192273, -0.0223662332, 0.0194374956, 0.0753603652, -0.0133687416, 0.00860407855, 0.0303364806, -0.0335129239, 0.00270106876, -0.0125600602, -0.0161444861, 0.0216959752, -0.0247849915, 0.00603961153, 0.0228325, 0.0299284961, -0.00311815878, 0.018577816, -0.0410314724, 0.0382630154, -0.0140462862, 0.00976974517, 0.0123487832, 0.00996645167, -0.0266500581, 0.0123560689, 0.00396326743, -0.0148622524, 0.00469180895, 0.000221863738, -0.0128514776, -0.00925248116, 0.00442224881, -0.00198345515, 0.0126766274, -0.0124362083, -0.0449656, -0.0330758, 0.0126693416, 0.0101267314, 0.00950747076, 0.0382630154, 0.0606729612, 0.0427799746, 0.000928890775, -0.0104327183, 0.0127130542, -0.0105784265, -0.0128004793, -0.00763511797, 0.0443244837, 0.00144433416, 0.0179658402, 0.0119845122, -0.00736920023, 0.0146291191, 0.0300742052, -0.028019717, 0.0165670402, 0.00337496982, 0.00204538112, 0.00924519543, 0.020457454, 0.00207998673, 0.0180095527, -0.0112559712, -0.0150953857, 0.0184612498, 0.0265917759, -0.0328718051, 0.00250800513, -0.0061743916, -0.0160716325, -0.0186361, 0.0220748167, -0.0163047649, -0.0291562434, 0.0320558399, -0.0388749912, 0.0285442676, -0.00525278645, 0.010563856, -0.0335129239, -0.000553236401, 0.0407400578, -0.0217834, -0.0257320963, -0.0332215056, 0.0250181258, 0.033571206, -0.0140098585, 0.0155470818, -0.00998830795, -0.00692479, 0.030686181, -0.0157510731, -0.0299576391, -0.0137912966, -0.00253350404, -0.029141672, 0.0141701382, -0.0232696254, -0.00561705744, 0.0263732132, -0.00282856356, 0.00144888752, -0.0212442782, -0.0282965638, 0.0370973498, 0.0382630154, -0.00155543676, 0.00380298821, -0.0276263058, 0.0046043843, 0.0312981568, -0.0268540513, 0.00764968898, 0.0294330884, -0.0201660376, 0.018577816, -0.0631208643, 0.0110446941, 0.00423647044, -0.0461604074, -0.0638785437, -0.0175869986, 0.00436760811, 0.0119917979, 0.0206614453, 0.00112832908, -0.0186215285, -0.0598569922, -0.00558427302, -0.0789156482, -0.0129534733, 0.0154159442, 0.021185996, 0.00148167193, 0.0281654261, 0.00618531974, -0.0486665927, -0.0157073606, -0.0620134771, 0.0157219321, 0.0255426746, 0.00941276, -0.0157802161, 0.0223516617, 0.00513622, -0.0715136603, 0.0310067385, 0.00850936864, 0.0198891908, 0.00898292, -0.00615617819, 0.0699982941, -0.0119335148, -0.00226394366, 0.0375927575, 0.0427799746, -0.00471002283, 0.00137694401, -0.00767154526, 0.00226212223, -0.0151099572, 0.0505899414, 0.0275825933, 0.0249598417, -0.0190877952, -0.0169604532, 0.0182718281, 0.0105784265, -0.00925976597, -0.0296079386, 0.0305113308, -0.0346494466, 0.00677543879, -0.0227305032, -0.00781725347, 0.0242458712, -0.0152556654, -0.0269269049, 0.0230510626, -0.00544220721, -0.058399912, -0.0632957146, -0.00822523702, 0.0259943716, 0.00595218642, -0.00454974361, 0.00451695919, 0.00451695919, 0.0241875872, 0.0114016794, 0.0387292802, 0.00215830514, 0.0134124542, 0.00383577263, -0.0277720131, -0.0164796151, 0.0212734211, 0.0043530371, -0.030569613, 0.013113752, -0.00334582827, 0.0271017551, -0.012203075, 0.00694664614, -0.0244498625, -0.0177327078, -0.00349700055, 0.0034041116, -0.0126037728, -0.0221039578, -0.00102633331, -0.00782453921, 0.0157656446, -0.0240273084, -0.0106658516, -0.0114891045, -0.034358032, -0.0178201329, -0.0109645538, -0.0290833879, 0.00281581399, 0.0302781966, 0.0236484669, 0.0197143406, 0.0536498167, -0.0469763763, 0.0418183, 0.00823252276, 0.00924519543, 0.0185049623, 0.0308318883, -0.0346785896, -0.00350610749, -0.0478214845, 0.00420004362, -0.0468598083, -0.00783911, -0.00974060409, -0.0062290323, 0.0205157362, -0.012203075, -0.0269997586, -0.0258778054, 0.000415724149, 0.0064257388, -0.0144105563, -0.021914538, 0.00684100762, 0.000191469895, -0.0216085501, -0.014417842, -0.0416725911, -0.00966046378, -0.0672007, -0.00607239595, 0.0225265119, -0.00705592753, -0.0401863642, -0.0239690244, -0.0616637766, 0.0122613581, 0.00405069254, -0.0494242758, 0.0200931821, -0.0145926923, 0.00437489338, 0.00701950025, 0.00448417477, 0.00586840417, -0.0186506696, -0.0288793966, 0.0260235127, -0.0257903803, -0.00493951328, 0.0234590452, -0.0187089536, -0.00828352, 0.0246247128, 0.004917657, -0.000641116756, 0.0614889264, 0.0113725374, -0.00191788631, -0.0163484775, -0.0195103493, -4.36840492e-05, 0.010199585, 0.00115109608, 0.0398366638, 0.00998830795, 0.0251638331, -0.033571206, 0.00698307296, 0.0218999665, 0.0287045464, 0.0117950914, -0.0120355105, 0.0325512476, 0.0165670402, -0.0350865722, -0.0292873811, -0.00815966818, -0.0468306653, -0.00779539719, -0.00956575386, 0.000989906141, 0.0487540178, -0.00909948722, -0.0218416825, -0.0484043173, 0.0190149415, -0.0136164464, 0.0289813932, -0.0125309192, -0.0243624374, 0.0259943716, -0.0399823748, 0.00312908692, 0.0195394903, -0.0282237101, 0.0125746317, 0.00767154526, -0.00356074795, 0.0179221276, 0.0064803795, -0.00115747075, 0.0260380842, -0.013172036, -0.0286171213, 0.00284313434, -0.00574819464, -0.0208071545, 0.0176889952, 0.00707049808, -0.0235901829, 0.0113506811, -0.0104254335, -0.0149788195, 0.0240855925, 0.0199183319, 0.0477049164, 0.00480109034, -0.0438873582, 0.0195249207, 0.000567807292, 0.0208945796, -0.0019251717, 0.0103598647, 0.0121010793, -0.0355528407, 0.00268103392, -0.0110374084, 0.0231530592, 0.0096313227, -0.0028413129, 0.0327260979, -0.0221768115, 0.0176015701, 0.00446596136, -0.00178037398, 0.00189056597, -0.0274805967, 0.00787553657, 0.00405433495, 0.00168293156, -0.0253241137, -0.00319283432, 0.00335857761, -0.0217542574, 0.0215794072, 0.00738741364, -0.00227851444, 0.0256009586, -0.0284859836, 0.0508230776, -0.0184903909, -0.00679729506, 0.0187672358, 0.00857493654, 0.00641845306, 0.0101777287, 0.037243057, 0.0138131529, 0.00760597643, -0.00218562549, 0.0351157151, 0.00946375821, -0.0115401018, 0.0231530592, 0.00991545431, -0.00574819464, 0.00614160718, 0.0106585668, -0.0321724042, 0.0114162499, -0.0155762238, -0.0398658067, 0.0290251058, 0.039486967, 0.0131501798, -0.00486301631, 0.0329592302, -0.00112741848, -0.00492858514, 0.0128514776, 0.00613067904, -0.00577369379, -0.0158967823, -0.0139442896, 0.00802853052, 0.0146145485, 0.0109499833, -0.0124362083, 0.0115911, -0.0348242968, 0.00289777503, -0.00804310106, -0.0471220836, -0.006921147, 0.0237941742, 0.00332215056, 0.00796296168, 0.00779539719, 0.00733277341, 0.0179512706, -0.0228470713, 0.00245336443, -0.00311633758, -0.0179658402, 0.0255135335, 0.00652409159, -0.0150079606, 0.00899749156, -0.0178929865, -0.00270289, 0.0125746317, -0.0178055614, -0.0113069685, -0.0205740202, -0.0256883837, -0.0336877741, -0.000597859616, 0.0602066927, -0.0170915909, 0.0336294882, -0.00713242404, -0.0141118551, 0.00465173926, 0.0143449884, -0.0100538768, 0.0819463804, -0.0301907714, -0.00695393141, -0.00322926161, 0.00605418254, 0.0212442782, -0.0255572461, -0.0126620568, -0.0289376806, 0.0151828108, 0.00231312029, -0.00989359803, -0.0125236334, 0.00343871722, -0.0158239286, -0.00183501467, 0.0103307227, -0.0154887987, -0.0400406569, 0.0366019383, 0.0144324126, 0.00325658172, -0.00783911, 0.00328936614, 0.00769340154, 0.00638202624, 0.0102651538, -0.00387948519, -0.0122613581, 0.0012248609, 0.000850572542, 0.00166836067, -0.0285442676, -0.0332797877, 0.0134707382, -0.00740198465, 0.0130773252, -0.0115546733, 0.00587933231, 0.0354945548, 0.00977703091, 0.00343143195, -0.00441132067, -0.00811595563, -0.00944190193, -0.0413811728, -0.0116858101, 0.00406162068, 0.00400333712, 0.0293310937, 0.0181989744, 0.0304821897, -0.0135727338, 0.0166398939, 0.00829080585, 0.0225410834, -0.0293019507, 0.0101194456, -0.00141792442, -0.0259506591, -0.00703042839, -0.007299989, -0.00295059429, -0.000589663512, 0.0259652305, -0.0168147441, -0.00505608, -0.000832814316, 0.00499415398, 0.000978978, 0.0269997586, 0.00210912852, -0.0185923874, -0.0173392948, -0.00658237515, -0.0076278327, -0.00107915257, 0.0194083527, -0.0104691461, 0.0283402763, 0.00373741938, -0.0149205364, -0.00323836831, 0.0268686209, -0.00847294088, 0.0140462862, -0.00318190618, 0.0215648375, -0.0120646525, -0.00300705619, 0.0156782195, -0.00550049078, 0.0192917865, -0.00315276464, -0.0178347025, -0.00360446051, -0.0164650455, 0.00519814575, 0.024857847, 0.00412354665, 0.00764240324, -0.00445503322, -0.00518357474, 0.00303801941, 0.00099445961, -0.000747666, -0.0204865951, 0.0231239162, -0.00339864753, 0.0104254335, -0.0270726141, -0.0098280292, 0.000730818487, -0.0188546609, 0.00240054517, 0.0437125079, -0.0036499945, 0.0232696254, 0.0151828108, -0.0173392948, 0.0177035648, 0.00769340154, -0.012203075, -0.0426634066, -0.0355236977, 0.00194702798, -0.0344163142, 0.0231530592, 0.000408894091, 0.0413228907, -0.00679729506, 0.00171844801, 0.00653866259, 0.020457454, -0.0475300662, -0.00380663085, -0.0333672129, -0.0191023666, -0.00827623438, 0.000817332824, 0.0177327078, -0.0144396983, 0.0142138507, -0.00239872397, 0.00227669301, 0.011263256, 0.0050415094, -0.0117295226, 0.00999559369, -0.00407983409, 0.0135435918, 0.0108334161, 0.0183738247, 0.0242458712, -0.00820338074, 0.00842922833, -0.0394286811, 0.0227013621, -0.0257029552, 0.0318227075, 0.0264314972, -0.0284422711, -0.0214774124, -0.0380298831, 0.0076132617, -0.0179949831, 0.000175305366, 0.0209674332, 0.00305259018, -0.0222933795, 0.0108552724, 0.0079338206, -0.0228033587, 0.0261692218, -0.00124307442, 0.0181698333, -0.0227742158, 0.0020763441, -0.00952932704, 0.0206031613, -0.00975517463, -0.0150808152, -0.0264897794, -0.0103088664, 0.000336267578, 0.00748940976, -0.00520543102, 0.00866964739, -0.0062290323, -0.048171185, 0.0201660376, 0.0220456757, 0.00709963962, 0.0124653503, 0.00870607421, 0.0215939786, 0.0146801174, -0.0275534503, -0.0390789807, 0.00641116779, -0.0176598523, -0.0367767885, 0.056942828, 0.0269414764, 0.00213644886, -0.0143522732, 0.0118825166, 0.0025772166, -0.00165287917, -0.0172664411, 0.0160716325, -0.00345146679, 0.00705957, -0.0117295226, 0.00644030934, 0.0217688289, 0.0119189434, -0.0175287165, -0.0207780115, -0.000651589595, -0.0141847087, 0.0159259234, 0.00805767253, -0.0051690042, -0.0243770089, -0.0454901494, -0.00613067904, -0.0292290971, -0.0314147212, -0.0279322919, 0.017572429, 0.0175432861, -0.000939818914, -0.00758412, 0.00521271676, -0.00165196857, -0.0171353035, 0.00677543879, 0.00287045469, 0.0113871079, -0.00323290424, -0.0168293156, -0.0166253243, -0.0106148543, -0.0530669838, 0.0149496775, -0.0370390639, -0.022249667, -0.00798481796, -0.00184594281, -0.0142284213, -0.00916505605, 0.0361065306, -0.00605782494, -0.00791924912, 0.00142247789, 0.00682643661, 0.0159696359, 0.00362267415, -0.0200786125, -0.0228762124, 0.0315312892, -0.013871436, 0.0299576391, -0.0303364806, -0.0194083527, 0.0103380084, -0.0386418551, 0.024857847, 0.0143887009, -0.0099445954, 0.0237796046, 0.0303073395, 0.0126329148, -0.00299612805, -0.00264642807, 0.00419275789, 0.0133687416, 0.0275097378, -0.0233861916, 0.0315604322, 0.00987902656, 0.0162464827, -0.039341256, 0.0052272873, -0.0148258256, 0.0250764079, -0.0138568645, 0.0124944914, 0.0426342674, 0.00845837, -0.0078099682, -0.0107897036, -0.0195832029, 0.0106949937, -0.011867946, 0.0050997925, 0.0215648375, -0.0110374084, -0.0166544653, -0.000627911941, -0.0215794072, -0.0227742158, -0.0386709981, 0.0048448029, 0.00897563528, 0.030686181, 0.00767883053, 0.00754769286, 0.0133104585, -0.00719799288, 0.0136310169, -0.0297827888, -0.00963860843, 0.00357531896, 0.00382484449, -0.000999013, 0.0228325, -0.0108115599, 0.0221476704, -0.0197726246, -0.000330803508, 0.0198309086, 0.00455702888, -0.00833451841, -0.0126911979, -0.0116639538, -0.0103671495, -0.0104691461, 0.0155033693, 0.0113652516, 0.00650952104, 0.00111557962, -0.0127203399, -0.0187526662, 0.000681186561, 0.010957269, 0.0221185293, -0.0258486625, 0.0162756238, -0.00141063903, 0.0232550539, 0.00456431415, 0.031327296, -0.0280634295, -0.00488851545, -0.00893920753, -0.000599225634, 0.0132011771, 0.0109135564, -0.0318518467, 0.00186506705, 0.000107858337, 0.0122540733, 0.00583197689, -0.0308027472, 0.0160716325, -0.0088736387, 0.0057882648, -0.00598132797, -0.0252221171, 0.0261983629, 0.00582833448, 0.0278302971, -0.0228907838, -0.0205011666, 0.0386709981, -0.0439747833, -0.0360482484, -0.00751855131, -0.0221622419, 0.0177618489, -0.0132448897, -0.0257612374, 0.0358734, 0.0198017657, -0.00772254309, 0.0258340929, -0.0167418905, 0.0181115493, -0.0242750123, 0.000516354, 0.0249889828, -0.00344600272, -0.0136310169, 0.0149496775, 0.0108334161, -0.0460147, -0.0117295226, 0.0129389027, 0.00214373413, -0.0186943822, -0.00623631757, -0.0147238299, -0.056942828, 0.017514145, -0.00519814575, 0.0135144508, 0.0111029772, 0.00554784574, 0.0174850039, -0.0164650455, -0.0331923626, 0.00869150367, 0.00877164304, -0.021069428, -0.00918691233, 0.0368350744, 0.0347660147, 0.0132448897, 0.00578462193, -0.0319392718, -0.00653137732, -0.00992273912, -0.00522000203, 0.0242021587, 0.00261000101, -0.00186051358, -0.0247267094, 0.00559155829, 0.0125746317, 0.0051726466, 0.0172227286, 0.000573726662, 0.0136455875, 0.0184029657, -0.00299066398, 0.00485573104, 0.00149624271, -0.00150808156, 0.0154159442, 0.0129461875, 0.00177490991, 0.0107022794, -0.0039705527, 0.0110082664, -0.014235707, -0.00738741364, -0.0110446941, 0.052455008, 0.0374470502, -0.00659694616, -0.00113106112, -0.00585019076, -0.00780268246, -0.0113288248, -0.0344745964, 0.00278302957, 0.00834180322, 0.0178347025, 0.0161736272, 0.0184758194, -0.00458252802, 0.00299248542, 0.0734370127, -0.00888821, -0.0030944813, 0.0133760273, 0.00151718827, -0.0197726246, -0.0243770089, -0.00252804, 0.00727449, -0.0293456633, 0.0236630384, -0.00678272406, 0.021462841, 0.00838551577, -0.0395161062, 0.00650223577, 4.95180757e-06, 0.00231312029, 0.00986445602, -0.0523967259, 0.00249707699, 0.00280670729, 0.0252949707, -0.0135290213, 0.0228907838, -0.0188546609, -0.0216376912, -0.00505243754, 0.00943461619, 0.00298884278, 0.00600318424, -0.00699764397, 0.00649859291, 0.00394505402, 0.0207780115, 0.00162920158, -0.0129389027, 0.0193500705, -0.00869150367, 0.0137111563, -0.00548592, -0.00705957, 0.00678272406, 0.00448417477, 0.0100757331, 0.00976974517, 0.0164796151, -0.0146218343, -0.0132886022, -0.0144324126, 0.00800667424, 0.00240783067, -0.00621081889, -0.0349700078, -0.00418911548, 0.0338043384, -0.00449874578, -0.0173538662, 0.0108261313, -0.0165524688, -0.0192480739, -0.00268831919, 0.00375927566, -0.0337169133, 0.00493951328, 0.00944190193, -0.00966046378, -0.0150371026, -0.0119480854, -0.0061707492, 0.0049140146, 0.000800940616, -0.00530742714, 0.00230401335, 0.00656051887, -0.0234299041, -0.0152265234, 0.00256082439, 0.0191169363, -0.0239107423, -0.017907558, 0.0032766168, -0.0183446817, 0.00541306566, -0.00770068681, -0.019335499, -0.00429111114, -0.0186215285, 0.0078099682, -0.00779539719, 0.0141191399, 0.0557480194, -0.0178201329, -0.0229053535, 0.0173538662, -0.00563162798, 0.0310941637, -0.00039910429, -0.00509615, 0.00640023965, 0.0259798, 0.0197580531, 0.00888821, 0.0357276909, 0.00449510291, 0.00358988973, -0.0164650455, 0.0050415094, 0.0209674332, 0.013113752, 0.0150516732, -0.0112851122, -0.0040980475, 0.0263440721, 0.00863322057, -0.000225164942, 0.0183155406, 0.0107824188, -0.00367549341, 0.0307736062, -0.0039669103, 0.0369516388, 0.02039917, -0.0276991595, 0.00645852322, -0.00503058126, 0.0110884057, -0.000195909437, -0.000568717951, 0.00444774749, 0.00790467858, 0.018942086, -0.0224390868, 0.0115619581, 0.00564255612, -0.0465101078, -0.0233570505, 0.0262712166, 0.0517556109, -0.0194229241, -0.00484844577, 0.00287956139, 0.0103088664, 0.00160279195, 0.0140754273, -0.0128150498, -0.0181406904, 0.0088736387, -0.0100247348, -0.012596488, -0.0212879907, 0.000749487372, -0.0165670402, 0.00869150367, 0.0355236977, -0.0227450747, 0.0195103493, -0.0113288248, 0.00394505402, 0.0267083421, -0.0119553711, 0.0197726246, 0.0420805737, -0.0156345069, 0.0168293156, 0.00672079809, -0.0203846, -0.00735462923, 0.000178720409, 0.0215356965, 0.0213171337, -0.0132813174, 0.00890278071, -0.0078828223, 0.0243332963, -0.00894649327, 0.0403320752, 0.0132740317, 0.0351448581, -0.0237504635, -0.00764968898, -0.00172300136, -0.0201806072, 0.0186798126, -0.0176452827, 0.0247704219, -0.0395161062, 0.0333380736, 0.0199620444, -0.000267739117, -0.0174267199, -0.011474533, -0.0028322062, 0.012385211, 0.00210366445, -0.00948561449, -0.0131866066, -0.0193209276, 0.00622538943, 0.00650952104, -0.0349117219, 0.00735098682, -0.00565712713, 0.0501819588, -0.00110920484, -0.00608696649, -0.0223662332, -0.00484116, -0.0157947857, -0.00134233828, -0.0130336126, 0.0041526882, -0.0155762238, -0.0124944914, 0.00681915134, -0.0218999665, -0.020734299, 0.0214191284, 0.0158822108, 0.00273931725, 0.0258049499, 0.0205303077, -0.0172810107, -1.67621529e-05, -0.0171061605, -0.013871436, 0.0201514661, 0.00736920023, 0.0172227286, 0.00721984915, -0.000939818914, 0.0347660147, 0.00514714792, 0.0101485876, -0.00187053101, 0.014177423, 0.0305987559, -0.0140462862, -0.0143158464, 0.00474280724, 0.00181589043, 0.0118242335, -0.00781725347, -0.00590847386, 0.00984988548, -5.73442085e-05, 0.011168546, -0.00940547418, -0.0118606603, 0.000767245598, -0.0229344964, -0.0168584567, 0.00747483876, -0.0146874022, -0.0133905979, 0.0100465911, 0.00980617292, 0.0216085501, -0.0224536583, -0.0227887873, 0.0226576496, 0.0158967823, -0.00113197183, -0.00241875881, -0.0180241242, 0.0184612498, -0.0254261084, 0.00436032284, -0.00907763094, 0.029505942, 0.0198891908, 0.0320849791, -0.00198709778, 0.0246684253, -0.0133905979, -0.0188109484, 0.0269123334, -0.0280925725, 0.0128150498, -0.00863322057, -0.0257758088, 0.017849274, 0.00468088128, 0.00466995314, -0.0103307227, 0.0235464703, 7.10328241e-05, -0.000548683049, 0.00409076223, 0.0121447919, 0.0206177328, -0.00436032284, -0.0376801826, 0.00242058, -0.0049722977, 0.0126110585, -0.00212369929, -0.0117732352, -0.00622174703, 0.0208362956, 0.00119389792, -0.00362631679, -0.0217688289, 0.00230765622, 0.00934719108, 0.0179949831, 0.00807952881, -0.025528105, 0.0085020829, 0.0136164464, -0.0202826038, 0.00123396772, 0.014782113, 0.00459345616, -0.0154305156, -0.00400698, -0.00706685521, 0.0226576496, 0.014599978, -0.000173484019, -0.00118205906, -0.00197799108, -0.0096313227, -0.0197580531, 0.0025845021, 0.00945647247, -0.0132740317, -0.0114235356, -0.0188255198, -0.00651680632, -0.00430203928, -0.0352322832, -0.0186506696, 0.0337752, 0.0171353035, 0.018242687, -0.00421825703, -0.013266746, 0.0106877079, 0.00311269471, -0.0098863123, 0.0280925725, -0.00450967392, 0.00332943606, -0.00449146, -0.0104691461, 0.00814509764, 0.0057336241, -0.0223225206, 0.0073728431, -0.0252804011, -0.00304166204, 0.0173247233, -0.00654230546, -0.0231239162, -0.0124944914, -0.0223225206, 0.010745992, 0.00673172623, 0.00399240898, -0.000895651057, -0.0212005656, -0.0118825166, -0.0295205135, 0.0119845122, 0.0169604532, 0.0110884057, 0.0213317033, 0.0275825933, 0.00399969425, -0.0198600497, 0.00361174601, 0.0354654156, 0.00158002507, 0.00977703091, -0.00756954914, -0.00470638, -0.0128587624, 0.00282127806, -0.0233279075, -0.0250326954, -0.0258049499, 0.0229199249, 0.012173933, 0.00379570271, -0.00810867, 0.0128223356, -0.00418182975, 0.0107314205, 0.00739834178, -0.00058010139, 0.0169167407, 0.00891006645, 0.0152556654, -0.00527828513, -0.00531106954, -0.00343871722, 0.0340083316, -0.0191023666, 0.032026697, 0.0194083527, 0.00376291829, 0.00523821544, -0.00232586963, 0.0297536477, 0.00896835, -0.00689929072, -0.00552598946, 0.012414352, -0.0202388912, 0.0168147441, 0.0157802161, 0.0053547821, -0.00320194126, -0.0134343104, -0.0115546733, -0.0146291191, 0.0185341034, 0.013871436, 0.0120573668, 0.0161153451, 0.0411771834, -0.0300159212, -0.00871336, -0.0145489797, -0.00959489588, 0.0438873582, 0.00706685521, -0.00541670807, 0.00489944359, -0.00586840417, -0.0192480739, -0.00554056047, 0.00626910198, 0.00981345773, -0.00255171768, 0.0230219215, 0.0235756133, -0.00318008498, 0.00744569721, 0.0126329148, 0.00731820241, -0.0034587523, 0.000445548852, -0.0231967717, 0.00856765173, 0.0166981779, -0.00358988973, 0.0312981568, -0.0183738247, -0.0113652516, -7.44478675e-05, 0.00323290424, 0.0157073606, 0.00513986219, 0.013871436, 0.0182864, -0.0197434835, 0.0113943936, -0.0045716, -0.0109062707, -0.0109426975, 0.00791924912, 0.0161736272, 0.00500508212, -0.0106804231, 0.00353889167, -0.00362631679, 0.000324884109, 0.0250326954, 0.00141974585, -0.0427508317, -0.0158239286, -0.00653501973, 0.0101631582, 0.00432389555, 0.0117805209, -0.00489215832, -0.0158676412, -0.0162173398, -0.00417818734, 0.0105565703, -0.0166836064, 0.00486301631, 0.00749669503, 0.0188109484, -0.0160133485, 0.020850867, 0.0155325113, 0.017907558, 0.00180860504, -0.00441860594, -0.00372831267, 0.010898985, 0.0273203179, -0.00241693738, 0.00478652, -0.0245955717, -0.00893192273, -0.00510707777, 0.00420004362, 0.00711056776, 0.00328390207, -0.000446687191, 0.0165379, 0.00486301631, -0.00185687095, 0.0303656217, 0.000705319515, 0.00854579546, 0.0119990837, -0.0302781966, 0.00721984915, 0.0109936958, 0.0116129564, -0.0257320963, 0.000858768646, -0.0212151371, 0.0171353035, -0.0078828223, 0.016843887, 0.0134051694, 0.00190331542, -0.0142794196, 0.00515807606, 0.0301907714, 0.00457888516, -0.0087570725, -0.00382120162, -0.00160552398, 0.005271, -0.0020217034, -0.00600682711, 0.00738741364, -0.0202971753, -0.0218708254, -0.0135290213, 0.00472459337, 0.00455338601, 0.0185049623, 0.00119480852, 0.00657873228, -0.024071021, 0.0151536698, -0.0159113538, 0.0133396005, 0.0120719373, -0.0212588497, -0.00216923328, -0.00462624058, -0.00526007172, 0.000347651046, -0.016843887, 0.0266792011, -0.0196414869, -0.000267511437, -0.007299989, -0.00959489588, -0.0213171337, 0.0139807174, -8.45222312e-05, -0.0116420975, 0.0186943822, 0.0202826038, -0.00440039253, 0.00797024742, 0.0108552724, -0.00285041984, 0.00282856356, -0.0171498731, -0.00398512371, 0.0061707492, 0.0184175372, 0.00991545431, -0.00298884278, 0.0170187373, -0.0107314205, -0.000454883295, -0.00113925722, 0.0184175372, -0.0127421962, -0.00546042062, -0.0112705417, 0.0122832144, 0.0128004793, 0.00645852322, -0.0167418905, 0.00626545958, -0.0190295111, 0.0218999665, -0.000756317459, -0.00235136854, 0.0130773252, 0.0255863871, -0.012749481, 0.0118023772, 0.010745992, 0.0383212976, -0.0103307227, 0.0259652305, -0.0008191542, -0.0265917759, -0.0063018864, -0.0244790036, -0.0135800187, -0.0184758194, -0.013142894, 0.0161444861, -0.0254552495, 0.0142575633, -0.00414176, -0.0388749912, -0.00472459337, -0.0172810107, 0.012902475, -0.0182572566, 0.00466631027, 0.0102505833, -0.0108698439, -0.01779099, -0.00432753842, -0.00567898341, 0.010898985, -0.00543856435, -0.0220311042, 0.0140098585, 0.00690293359, 4.98026602e-05, -0.0171644446, -0.0116420975, 0.0104472898, 0.00361174601, 0.00190877949, 0.0102724396, -0.0258778054, 0.0292436685, -0.0378550328, -0.00718342233, 0.0143012758, -0.0114526767, -0.00413447479, 0.0074274838, -0.00306351832, -0.00652773445, 0.0231093466, 0.00312180165, 0.000826439587, 0.00590118859, -0.00278849364, 0.0345911644, -0.00553327473, -0.00240965211, 0.00447324663, 0.0167710315, -0.00140972843, -0.00295423693, 0.0276408754, -0.0177035648, 0.000921150029, -0.00953661185, 0.0288211126, -0.00408347696, 0.0388749912, -0.0127713373, 0.00719799288, -0.00726720458, 0.0209528618, -0.00629460113, -0.0145635502, -0.00642209593, 0.0267520547, -0.0084438, -0.0156782195, -0.00507793622, -0.0392246917, -0.0052272873, 0.0172081571, -0.00564984186, -0.025892375, -0.00653501973, 0.00368095748, 0.0299576391, -0.0106949937, 0.000191811399, 0.00425468432, -0.00968960579, -0.00223298068, -0.00161918416, -0.0107678482, 0.0140317148, 0.0108042751, -0.0164941866, -0.00617803447, -0.0132011771, 0.00942733, -0.0218125414, -0.00424375618, 0.00404704968, 0.0157802161, -0.00723806256, 0.0354362726, 0.0133905979, -0.0251055509, -0.00176124985, -0.0119626559, -0.00990816858, 0.0152848065, -0.0122395018, 0.0133323148, 0.00767154526, 0.0236338954, 0.00648766477, -0.0190149415, 0.00978431664, -0.017179016, -0.00238415296, -0.00470273709, 0.0297390763, -0.00338043389, -0.0108188456, -0.00749669503, 0.0133905979, -0.0178929865, -0.0157073606, -0.020734299, 0.00837094523, 0.0204283111, -0.0120573668, 0.000514532672, 0.00770797208, 0.00113015051, 0.0222059544, 0.00577005092, -0.0155033693, -1.17890013e-05, -0.00860407855, 0.0154742282, -0.0025845021, -0.00714335218, -0.0144324126, -0.00092023937, 0.0220456757, 0.0194520652, -0.0063710981, -0.004917657, 0.0111321183, 0.0189275164, -0.0136455875, -0.0176598523, 0.0241438746, 0.00297609321, -0.0271746088, 0.0291271, -0.0413520336, 0.0208071545, 0.0027138181, -0.00944918673, -0.000800940616, -0.00759869115, -0.0188983735, 0.00622538943, 0.00293055945, -0.0159550644, 0.00676815351, -0.0108115599, 0.00501236739, 0.000233588711, -0.0140462862, -0.0144251278, -0.00335311354, -0.0141847087, -0.0157073606, 0.00499415398, 0.00582469162, 0.0029050603, 0.00835637469, -0.00328572351, 0.00363724492, -0.0079411054, 0.0289813932, 0.00766425952, -0.00361538865, -0.000578280073, 0.0359608233, 0.0105128577, -0.00249161292, 0.0148185398, -0.00675722538, 0.0270434711, -0.00254078954, 0.00246793544, 0.0283257049, 0.0136893, -0.00574819464, 0.00680093747, -0.00275753066, -0.00749669503, 0.00204902375, 0.00125035981, -0.0128514776, -0.0141118551, 0.00523093, -0.017514145, -0.0200786125, -0.00261182245, -0.0108261313, 0.0130627546, 0.00855308, -0.0058611189, 0.0126037728, 0.0379424579, 0.0382047333, 0.0073764855, 0.00337132718, -0.015299378, -0.00348060834, -0.000478105561, -0.00829809066, 0.00587568944, -0.00413447479, 0.0135800187, -0.0304821897, 0.0209965743, 0.00522000203, -0.000166653932, -0.0113725374, -0.00551870419, -0.0232696254, -0.0162610523, 0.0116420975, 0.00368460012, -0.0115473876, -0.00412718905, 0.00669894181, -0.00286499062, -0.0133614568, -0.00275024539, 0.000908855873, -0.00124944921, 0.0264460668, -0.00519450288, -0.00105911761, 0.00786825176, -0.0152848065, -0.0120865088, -0.0162901953, -0.00547499163, -0.00197799108, -0.00928890798, 0.00495772716, 0.0231676288, -0.00637838338, 0.0128587624, -0.00182499725, 0.00687743444, -0.00539849466, -0.014446984, -0.00225301553, 0.00323836831, -0.00705592753, 0.00789010804, 0.0144906966, 0.0197726246, 0.011474533, -0.00541670807, -0.000156067312, 0.0142502775, 0.00942004565, -0.00051043462, 0.00354435574, 0.0349408649, -0.0419931486, 0.00195067062, 0.0034041116, 0.00486665918, 0.0391081236, -0.0191897918, 0.00330940122, -0.0119626559, 0.00274113845, 0.00773711409, -0.0111831166, 0.00665887212, -0.00313090836, 0.0427508317, -0.0208945796, -0.0145562654, 0.0202971753, -0.00681186561, 0.00456067175, 0.0154596567, 0.0243624374, 0.00341686094, 0.00506700808, -0.0028322062, 0.0133614568, 0.0219582506, 0.0176744238, -0.0263149291, 0.000362904888, -0.0171935856, 0.03502829, 0.00978431664, 0.0114526767, -0.0123269269, -0.00173119747, 0.00460802671, 0.0305987559, 0.00423282804, 0.015692791, -0.0147748273, 0.00419275789, 0.00176853524, 0.0176452827, 0.00030871958, -0.0151536698, -0.00463716872, -0.000660696358, -0.0173684359, -0.00283402763, 0.0014397807, 0.00664794398, -0.00261000101, -0.0120282248, -0.0143085606, 0.00982074346, 0.00626545958, 0.0353488475, 0.00831266213, -0.0143377027, 0.00262275035, -0.00613796478, 0.00501236739, 0.0134197399, -0.00343507458, 0.0093253348, 0.000145708356, -0.0248724166, 0.0129971858, -0.0303364806, -5.89094343e-05, -0.0178929865, -0.0132011771, 0.0139370048, -0.0299576391, 0.003278438, -0.00749669503, -0.018971229, -0.0150371026, -0.0100028785, -0.00834180322, -0.0132740317, 0.00567534054, 0.00760597643, 0.00465173926, -0.00782453921, 0.0133614568, -0.00215101964, -0.0110009816, -0.00951475557, 0.0180532653, -0.0128587624, -0.033600349, 0.0131064672, 0.00362631679, -0.00574455224, -0.00106002833, 0.00807224307, -0.00355710532, -0.00778811192, 0.0144906966, 0.0153868031, 0.0137694404, 3.96998366e-05, -0.016843887, -0.000514077314, 0.00892463699, -0.0115182456, 0.00423282804, -0.00774439937, -0.0170478784, 0.0136893, 0.00481930422, -0.0159404948, 0.00267556985, -0.00311998022, -0.000672990514, -0.00252986141, 0.00696485955, -0.00820338074, 0.0076132617, -0.00458252802, 0.00575183751, 0.0186215285, 0.025192976, -0.00993731, 0.00171662658, -0.0229344964, -0.0188838039, 0.00557698729, -0.00274478132, -0.00490308646, -0.00476102065, -0.00676451065, 0.00142976327, -0.000104898638, -0.0114963893, 0.00818152446, -0.0038976986, -0.0143959858, -0.00600318424, -0.00430932455, 0.0109426975, 0.00779539719, 0.0147165442, -0.0207488704, 0.000598315, 0.0146291191, -0.00292509538, 0.0250909794, 0.015328519, 0.0301616304, 0.00833451841, 0.0124653503, -0.000394778588, 0.00816695392, 0.0231530592, -0.0213171337, 0.0301907714, 0.0114308205, 0.00480109034, 0.0121957893, -0.00387948519, 1.97218542e-05, -0.00322197611, 0.012050081, 0.0142648481, 0.00330393715, -0.0108698439, 0.0121229356, 0.00369006419, 0.00936904736, 0.00335493498, -0.0123706395, -0.000391363545, -0.0100611625, 0.0154013736, -0.0165087562, -0.00383577263, 0.0130044715, -0.0122613581, -0.00934719108, 0.00432389555, -0.00712513877, 0.0232113414, 0.0154159442, 0.00867693312, 0.00498322584, 0.0182281155, 0.00338043389, -0.0117295226, -0.00910677202, -0.00408711936, 0.00425832672, 0.0115546733, -0.00807952881, -0.00239872397, -0.000837367726, -0.00893192273, 0.00123396772, -0.00836365949, 0.00764240324, -0.0068082232, 0.00576640852, -0.0267666262, 0.00410533324, 0.021914538, -0.000540942303, 0.00117841631, 0.000114005408, 0.000525005453, -0.000874250138, 0.0015754716, -0.00607603882, 0.00474644965, 0.00574455224, 0.0098280292, 0.00936904736, 0.0137985814, 0.00593033, -0.00445503322, -0.0150079606, -0.0176307112, 0.00049495307, 0.00367731461, -0.00701950025, 0.0330175124, -0.0154742282, 0.0212442782, -0.0271017551, -0.00552234706, 0.00421097176, 0.00951475557, -0.00526007172, 0.0154596567, -0.0019251717, 0.0114162499, 0.0142211355, 0.0135945901, 0.0209965743, -0.00949289929, -0.00837823097, 0.0257175248, 0.0293019507, -0.0155762238, 0.000801851333, 0.0479963347, -0.0207197294, -0.0428674, -0.0061707492, 0.00401790813, 0.00426561199, 0.00312908692, -0.025528105, -0.00599954184, -0.00936904736, 0.00117841631, 0.00420732889, 0.00216923328, 0.0138058672, 0.0123924958, -0.0066115167, -0.0164359026, 0.0286608338, 0.0231530592, -0.0287336893, -0.0092670517, -0.00366456527, -0.00468816655, -0.0156782195, -0.00378477457, 0.00291052437, -0.0248432755, -0.0151828108, -0.0144979814, -0.00774439937, -0.0263877846, -0.00694300327, -0.0159550644, 0.0107897036, -0.00201077526, 0.00776625564, -0.0159259234, -0.0140827131, 0.000110704204, 0.00948561449, -0.0143231321, -0.00229490665, 0.0196269155, 0.00126948406, -0.0184758194, 0.00653866259, -0.0100611625, 0.00632010028, 0.00237686769, -0.00530742714, 0.0177181363, 0.0122759296, -0.00231312029, -1.95937901e-05, -0.0303947646, 0.00646945136, -0.00194156391, 0.00205813069, 0.0210985709, 0.00169568101, -0.00373013411, -0.0256301, 0.00786825176, 0.0244935751, 0.00810138509, 0.00839280151, 0.00325840316, -0.00464809686, -0.00317644235, -0.00219473219, 0.00606146781, -0.00588661758, 0.00619989075, -0.000732184504, -0.00112650776, -0.0104910014, -0.00821795128, 0.0133905979, -0.0198891908, 0.0138787208, -0.0098426, -0.00944918673, -0.00114927464, -0.0208071545, 0.00797753222, -0.0127349105, -0.00746755349, -0.022949066, 0.00806495734, 0.0165961813, 0.0148331113, 0.0224099457, 0.00757683488, -0.0176889952, -0.0121156499, -0.0176161416, 0.00349335792, 0.00304894731, 0.00627274485, 0.00139333622, -0.000496319088, -0.0263586417, -0.0232113414, 0.00347332307, 0.0190295111, 0.0221476704, 0.00513257692, -0.0128441919, -0.0155762238, -0.000348334055, 0.0189857986, -0.0428382568, 0.000448280887, 0.0190295111, -0.0289376806, 0.00886635389, -0.0347660147, 0.00614889292, 0.00152538437, -0.000164149576, -0.0122977858, 0.00139515754, -0.0114016794, -0.0152265234, -0.00898292, -0.022584796, 0.0048593739, -0.000412992144, 0.0100393062, -0.00171844801, 0.00874250196, -0.0186943822, 0.024071021, -0.0136674438, -0.00308355317, -0.0206614453, 0.00760597643, 0.010592998, -0.00158093567, 0.0130918957, -0.00437853625, -0.0162319113, -0.00990816858, -0.00438217912, 0.0117149521, 0.00862593483, 0.0134343104, -0.00966774952, -0.00314547913, 0.00268467655, -0.00690657645, 0.00331486529, 0.0185923874, 0.0257466678, 0.00141154975, 0.00524550071, 0.0210257154, -0.012596488, 0.0222642366, -0.0082470933, -0.0117440941, 0.0204283111, -0.00500508212, 0.000174280853, -0.00777354091, 0.0109426975, -0.0155907944, -0.0112778274, 0.000583744142, 0.00855308, 0.00999559369, 0.0153430905, -0.00230765622, 0.0219873916, 0.0141628524, 0.0178638455, -0.00532928342, -0.00532928342, 0.0085020829, -0.0172664411, 0.00149897474, -0.0111904023, -0.00765697425, 0.00371920597, -0.0104472898, 0.00735098682, -0.00534749683, -0.0103452932, -0.00141063903, 0.00601411238, 0.0104837166, 0.0058647613, -0.0325221047, -0.00417454448, 0.0238524582, 0.0161881987, 0.0159550644, -0.0152265234, -0.0332215056, -0.0347951576, 0.016843887, 0.0232550539, -0.00374470488, 0.000211846302, -0.00508522196, 0.0173538662, 0.0215939786, 0.00341139687, 0.00234408327, 0.0105055729, -0.0122176455, 0.0246101413, -0.00712513877, -0.0166544653, -0.0167418905, 0.00558427302, 0.00550049078, 0.00225119409, -0.0037155631, -0.000687106, -0.0272620339, -0.00411990378, -0.00410897564, 0.0123414984, -0.00862593483, -0.00580283534, -0.0122467875, -0.0323181152, 0.00916505605, 0.0105492854, -0.0115692439, -0.0235027578, 0.0200203285, 0.0173392948, -0.00525278645, -0.0119699417, 0.0245955717, -0.00168930634, -0.000714881637, -0.027407743, -0.00873521622, -0.0274805967, -0.0227159336, -0.000228807665, -0.0110009816, -0.00294877286, 0.0220893882, -0.0107095642, 0.0164941866, -0.00436760811, 0.0231530592, -0.0232987665, 0.00420368602, 0.0143085606, -0.00519086048, -0.0012886083, -0.014417842, 0.00477559166, -0.00142612052, 0.000772254309, 0.000970781955, 0.00664430112, 0.0138277235, 0.0149642481, -0.0227159336, 0.000471730804, 0.0197726246, 0.00147438643, -0.00382848713, 0.00035630248, 0.00195431337, 0.00771525782, -0.0101777287, -0.00341686094, -0.0240418799, -0.0458689928, -0.00935447682, 0.00429839641, 0.0275388807, 0.00275753066, 0.0245372877, 0.00665887212, -0.00164741511, 0.0102068707, 0.0158530697, -0.010199585, -0.00424739858, 0.00185869227, 0.00977703091, -0.0125163477, 0.0132594611, 0.00474644965, 0.0106585668, 0.00559520116, -0.00627638772, -0.0170333069, 0.00454974361, 0.0203117449, -0.00352978497, 0.00211641402, -0.0274660252, 0.00297609321, -0.00163375493, 0.0212297086, 0.000661607, 0.00611246563, -0.0121010793, 0.00836365949, -0.0079921037, -0.0106367106, 0.0254406799, -0.0127640525, -0.013871436, 0.000225620286, 0.0102360118, -0.0104837166, 0.00105911761, 0.00829809066, -0.0322598293, 0.00297245057, 0.0140608568, 0.0127859088, 0.00772254309, -0.00330393715, 0.0223370921, -0.0129170464, 0.0139370048, 0.0061743916, -0.023677608, -0.0052272873, 0.0116129564, -0.00250618369, -0.015998777, 0.0173101537, -0.0103890058, -0.0064840219, 0.002640964, 0.0033330787, -0.00588297518, 0.00807224307, 0.00428746827, -0.0157947857, 0.00393048301, 0.0180386957, 0.0424302742, -0.0100830188, 0.0113142543, -0.00689929072, -0.00884449761, -0.000677543867, -0.00721620629, -0.0112414, -0.0033403642, -0.00368095748, 0.0136674438, 0.0146655468, 0.000717613671, 0.0123779252, 0.00966774952, -0.0102870101, 0.00046285172, -0.0127640525, 0.00202716747, 0.0202388912, -0.0181115493, -0.00777354091, -0.00538028125, 0.00412354665, 0.0311233047, -0.00407983409, 0.0126037728, 0.00816695392, -0.0104181478, -0.00982074346, -0.0211422835, 0.0147602567, -0.00414540293, 0.00250618369, -0.0100975893, 0.0229053535, -0.0026500707, 0.000790923194, 0.0199766159, 0.0135945901, 0.0393995419, 0.0426051244, -0.00962403696, -0.00954389758, -0.000479926908, 0.0153722316, 0.0120573668, 0.00919419713, 0.0121375062, -0.0287628304, 0.00851665344, 0.00458252802, -0.0263295, -0.00590483146, -0.0171061605, 0.00797024742, -0.0163047649, 0.0100611625, 0.0206468739, 0.0106294248, -0.0222059544, -0.000905668538, -0.0283694174, -0.0253241137, 0.00549320504, -0.00037223933, -0.0242750123, -0.00798481796, -0.00987174176, -0.0140827131, -0.00425468432, -0.00468816655, -0.00585383317, 0.00734370109, -0.00417454448, -0.0128514776, -0.0136747295, 0.00236776075, -0.0126620568, -0.01402443, -0.0064840219, 0.000145139187, 0.00615617819, -0.0151245277, 0.0146072628, -0.0179512706, 0.00525278645, -0.00734005868, 0.00652044918, -0.00224573, 0.00644759508, 0.00603596866, -0.0157365035, 0.00258085923, 0.0114526767, 0.00504879467, -0.0188109484, -0.018971229, -0.0134343104, -0.00613067904, 0.00122030755, 0.0347368717, 0.00229490665, -0.0117440941, -0.00102815463, 0.00823980756, -0.0136237312, -0.0141919944, -0.00891735125, 0.02701433, 0.0061161085, 2.16997305e-05, -0.00792653486, 0.0115255313, -0.000381801423, 0.0143377027, -0.018942086, -0.00359717524, 0.0336877741, -0.00735827209, 0.00267374841, 0.00292873802, 0.0141628524, -0.0123342127, 0.00619260548, 0.000679820543, -0.00016221439, -0.020850867, -0.000849661883, 0.00845837, -0.0129680438, 0.00215284107, 0.0119335148, 0.00770797208, 0.00238233176, 0.0343288891, -0.00575548038, -0.00455702888, 0.0225702245, -0.0184466783, -0.0116348127, 0.0198017657, 0.00866236165, -0.0212879907, 0.0207051579, -0.0185341034, 0.000698944787, -0.0163047649, 0.031327296, -0.0135800187, 0.00196888414, 0.0020217034, 0.00641481066, 0.0120355105, 0.00199984713, 0.00275024539, -0.0254115388, 0.0185341034, -0.00595218642, 0.0110811209, -0.0031582287, 0.0108479876, -0.0148695381, 0.0138495797, 0.00641116779, 0.00532928342, -0.0117076663, 0.00621081889, -0.00283767027, 0.0153430905, -0.000350838411, 0.0225556549, 0.0163630489, -0.0311233047, -0.0145489797, 0.0142867044, 0.010542, 0.00166471803, -0.0112559712, 0.00821795128, 0.0311524477, -0.00324929645, -0.0123924958, 0.00194520655, 0.00310905208, 0.0127713373, -0.0158967823, -0.0257029552, 0.00747483876, -0.00263732136, 0.00633102842, 0.0102870101, -0.00271928217, -0.00196524151, 0.0144906966, 0.00857493654, -0.00380663085, 0.00605053967, -0.0310941637, 0.00854579546, 0.0111321183, 0.000261819718, 0.0116639538, -0.00885906816, 0.00230765622, 0.00336039905, -0.0107605625, 0.0086987894, -0.00229490665, 0.017514145, -0.00372102717, -0.00382120162, -0.00217469735, -0.00162920158, 0.0057372665, -0.00798481796, 0.00879349932, -0.0183446817, 0.0127640525, -0.00671715522, -0.0166690368, 0.0117950914, 0.000123282938, -0.0035862471, 0.0229927786, -0.0231967717, -0.00215466227, 0.0189275164, 0.000440767792, -0.000360855862, 0.00593761588, -0.00119116588, -0.0210402869, -0.0100757331, 0.00477923406, -0.0161299147, -0.0282237101, -0.021185996, 0.00401790813, 0.00124853849, -0.00826166384, -0.00808681361, -0.0142575633, -0.0026500707, 0.0101485876, -0.00441860594, 0.00836365949, -0.00622174703, -0.00404340681, -0.0207634419, 0.00196342, 0.00578097906, 0.00837094523, 0.0143814152, -0.015692791, -0.0193646401, -0.0115401018, 0.0232987665, -0.0244790036, -0.000460347335, 0.0129461875, -0.0235027578, -0.0115109608, -0.0173392948, -0.0123196421, 0.0187526662, -0.0115838144, -0.00204720255, -0.00519086048, -0.0131210377, -0.00717977947, -0.0282819923, 0.0132740317, -0.00185960298, -0.00915777, 0.0271163266, 0.000800485315, 0.00446960377, -0.00773711409, 0.019335499, -0.00974788889, 0.0110374084, -0.0277283, -0.00264642807, -0.000942550949, -0.0187380947, -0.0159404948, -0.00690657645, -0.00234590448, 0.0148039693, 0.000923882064, 0.0277865846, -0.0279614348, -0.0170041658, -0.0261837915, -0.00153995526, -0.00907763094, -0.0205740202, 0.0048448029, -0.0141701382, -0.0200931821, 0.00129042962, 0.00733641582, -0.0120427962, 0.0697651654, 0.00944918673, -0.000597404258, -0.0268686209, 0.00102542259, -0.0119917979, -0.0142648481, 0.0419348665, 0.0064803795, 0.0212005656, -0.00239872397, -0.00980617292, 0.00442953408, 0.0160716325, -0.0241875872, -0.00490308646, 0.0219291076, -0.0137621546, 0.00334400684, 0.0180095527, -0.0230219215, -0.00168111024, -0.000344691332, 0.00413447479, -0.027407743, 0.004280183, -0.0122249313, -0.00455702888, -0.0023950811, 0.00859679282, 0.0202243198, 0.00714699505, 0.0135217356, -0.00850936864, -0.0280051474, -0.00616346346, 0.00607239595, -0.000304166198, 0.0149496775, 0.00617803447, 0.00498686871, 0.00739105651, -0.00920876861, 0.00537299598, 0.0315021463, -0.02440615, -0.00451331632, -0.011110262, 0.0076132617, -0.0163193364, -0.00756954914, -0.00278849364, -0.00247339951, -0.00204538112, -0.0142284213, 0.0133468853, 0.0266646296, -0.0226285085, 0.0183738247, 0.0240855925, -0.0088153556, 0.00325840316, 0.00299977092, 0.0117295226, 0.0220456757, -0.0171498731, -0.00906306, -0.00430203928, -0.00416725921, 0.00835637469, -0.0163776204, -0.0148476819, -0.000378614059, 0.00518721761, 0.000143317826, 0.0170915909, 0.00449146, 0.00701950025, 0.0121447919, -0.00175578578, -0.00713242404, 0.00984988548, -0.0313855819, -0.00100356631, 0.0108042751, -0.018213544, -0.0201368947, -0.0125017771, -0.0269706175, 0.0206031613, 0.010228727, 0.032143265, -0.0160862021, -0.00320194126, 0.0103962915, -3.95006246e-05, -0.0047318791, 0.0297099352, 0.0235027578, -0.000237003755, 0.0195249207, 0.013478023, -0.00181406911, -0.00685922103, -0.0210985709, 0.0118606603, 0.013536307, 0.0136965858, 0.0250181258, -0.00953661185, 0.00307991053, -0.000472186162, 0.0114381062, 0.0209965743, 0.0161153451, -0.0014880466, 0.00762054743, -0.0224973708, 0.017572429, 0.0107314205, 0.00198709778, 0.026285788, -0.0135800187, 0.00645123748, -0.00590118859, 0.00301980576, 0.0136674438, 0.00546042062, 0.0242895838, -0.00324018975, 0.0130627546, 0.00375563302, 0.0225265119, 0.000820975518, -0.0114235356, 0.0232987665, 0.00544220721, 0.00449874578, -0.0113725374, 0.000636108045, 0.005296499, -0.00656780414, 0.0160133485, 0.0322015472, -0.0104691461, 0.00347332307, 0.000519086, -0.0170478784, 0.0155907944, 0.00179221283, -0.0039049841, -0.000815966807, -0.00127859088, -0.00126584142, -0.0047901622, 0.00754040759, -0.0146582611, 0.00154724065, 0.0165670402, -0.000461258023, -1.14119239e-05, -0.00889549498, 0.0182864, -0.0188692324, 0.00729634613, -0.0236921795, 0.0082470933, -0.000100459081, 0.02264308, 0.0289231092, 0.00929619372, 0.0352905653, 0.000180769435, 0.00801396, -0.0144032715, 0.0234881882, -0.00350975012, -0.000823252252, 0.0254698209, -0.0105711417, -0.00417818734, -0.0131210377, 0.0205594487, 0.0600318424, -0.00487030204, -0.00229126401, -0.0167564619, -0.0063018864, 0.0302781966, 0.0256592426, 0.0190003701, 0.00430203928, 0.0122103607, 0.00158639974, -0.0088736387, -0.00928162225, 0.00451331632, -0.00786096603, -0.0188109484, -0.01639219, 0.0185195319, 0.0222642366, 0.00586840417, -0.030569613, 0.0131866066, -0.00432389555, 0.00452788733, 0.00897563528, 0.0215939786, -0.00696850242, 0.0151245277]
24 Apr, 2024
How to Populate Dropdown List with Array Values in PHP? 24 Apr, 2024 We will create an array, and then populate the array elements to the dropdown list in PHP. It is a common task when you want to provide users with a selection of options. There are three approaches to achieve this, including using a foreach loop, array_map() function, and implode() function. Here, we will explore each approach with detailed explanations and code examples. Table of Content Using foreach LoopUsing array_map() FunctionUsing implode() FunctionApproach 1: Populate Dropdown List with Array Values using foreach LoopYou can use a foreach loop to iterate over an array of elements and populate the dropdown list with its values. PHP <?php $options = array( "HTML", "CSS", "JavaScript", "PHP" ); ?> <select> <?php foreach ($options as $option): ?> <option value="<?php echo $option; ?>"> <?php echo $option; ?> </option> <?php endforeach; ?> </select> Output: Approach 2: Populate Dropdown List with Array Values using array_map() FunctionThe array_map() function can be used to apply a callback function to each element of an array. You can use it to generate the <option> tags for the dropdown list. PHP <?php $options = array( "HTML", "CSS", "JavaScript", "PHP" ); ?> <select> <?php echo implode(array_map(function($option) { return "<option value=\"$option\">$option</option>"; }, $options)); ?> </select> Output: Approach 3: Populate Dropdown List with Array Values using implode() FunctionYou can also use the implode() function to concatenate the array values into a string and then use it to populate the dropdown list. PHP <?php $options = array( "HTML", "CSS", "JavaScript", "PHP" ); ?> <select> <?php echo "<option>" . implode("</option><option>", $options) . "</option>"; ?> </select> Output: Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?
https://www.geeksforgeeks.org/how-to-populate-dropdown-list-with-array-values-in-php?ref=asr10
Languages
How to Populate Dropdown List with Array Values in PHP?
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0133891637, 0.00882467628, -0.017077269, 0.0243439339, 0.0166634228, 0.0132796159, -5.88628718e-05, 0.0127197048, -0.050148502, -0.005167, -0.00273412792, -0.0213739742, -0.00986537896, -0.00989580899, -0.0050118072, -0.0318418667, -0.00909245946, 0.0273625813, -0.0285310894, 0.0162982643, -0.00830128137, -0.00906202942, -0.0516091399, 0.0147280795, -0.0402892083, 0.0156896655, 0.0168460011, 0.00224420638, -0.0194021147, 0.000142450051, 0.0313549861, 0.00255763461, -0.0107235024, -0.0239422582, -0.049101714, 0.0137421507, -0.0160061363, -0.0137056345, -0.026827015, -0.00667023752, 0.0500998162, -0.00653634593, 0.00696236501, -0.041360341, 0.00189121929, -0.0257558823, 0.00923243631, -0.0114599066, -0.000528339413, -0.0018470959, 0.00810653, 0.0158357285, 0.00899508316, 0.00770485494, -0.00151845289, 0.00502702221, -0.0364672132, -0.0204002168, -0.0178319309, -0.0222746991, 0.0338380672, -0.0215200372, 0.0329373404, -0.0210818462, 0.00423584459, -0.00170559681, -0.02977263, 0.0189760961, -0.0389989801, 0.0411169045, 0.00309624407, 0.0262427609, -0.00298365322, 0.00212705112, -0.0107843624, 0.0186596252, 0.0227128901, -0.0207775477, -0.0158235561, 0.0990311205, 0.0138395261, -0.0680169463, 0.00350248348, -0.0135352267, -0.0253663789, 0.0442816131, -0.0321583375, -0.0433322, 0.00450667087, -0.0243682768, -0.0481279567, -0.00169038191, 0.00962802581, 0.0274843015, -0.0214348342, 0.0222503543, 0.0240883213, 0.0129753165, -0.00917157717, 0.0344223231, -0.00695019308, 0.0195481777, -0.0170529261, 0.00654851785, -0.0328643098, -0.0162495747, 0.0337163471, 0.0251959711, -0.0117398622, -0.0348118246, 0.0171746444, -0.0319635831, -0.0294805039, 0.00254089804, -0.00863601081, 0.0016310435, 0.0175398048, -0.0828180611, -0.0135230552, -0.00266718213, 0.0120806769, 0.0339110978, -0.0345927291, 0.0279955231, -0.0580359362, 0.0288232174, -0.00750401756, -0.0307463873, 0.0155679453, 0.000819325505, -0.00628073467, -0.0137664946, -0.0154340537, 0.00951847807, -0.0243439339, -0.00125979853, 0.00493573258, 0.00462230435, -0.0101635922, -0.00872121379, -0.0604703315, -0.0582793765, -0.00964628346, 0.0370027795, 0.000631420757, 0.0221529789, 0.0143385772, 0.012202397, -0.00463447627, -0.0482009873, -0.0108817378, -0.0465456024, 0.0233945195, -0.00639028242, 0.0153731937, 0.0033320759, -0.00945153181, -0.00819782, 0.00372157875, -0.0172598492, -0.0210088138, 0.000836822728, -0.0136812907, 0.00722406246, -0.0132917874, -0.00819782, 0.0486391783, -0.0432591699, -0.0255367868, 0.012056333, -0.00725449203, -0.0074249, -0.00819173362, 0.0283119939, -0.0196455549, -0.0177345555, 0.000852798403, 0.0109304264, 0.00980451889, -0.0121232793, -0.0301621333, -0.0281659309, -0.0263401363, -0.00268544024, 0.030624669, 0.0307707321, 0.0155801177, 0.00851429068, 0.0400944576, -0.0269000456, -0.044257272, 0.000922026462, -0.000777104, 0.0327425897, 0.0177467279, -0.0168216582, -0.0723501667, 0.0163469519, -0.0287014972, 0.0344710089, -0.00184253149, -0.0339110978, -0.054968603, 0.055260729, 0.0388772599, -0.00974974502, 0.0171137843, -0.0150202066, 0.0186474528, 0.0362724625, 0.0355664864, -0.0187935159, -0.0120685054, 0.0357612371, -0.0214348342, -0.0120380754, -0.00593079068, 0.00511526922, 0.0144481249, -0.0401918329, 0.0122206546, 0.042674914, -0.00143629208, -0.0127318772, -0.0367106497, -0.0488582738, 0.00286954106, -0.00280716, -0.0316958, -0.0209966432, 0.0192195345, 0.0191099886, -0.00723623438, -0.027265206, 0.0100053567, -0.00862992462, 0.00359377312, -0.0386825092, -0.0148132835, 0.0428453237, -8.31592552e-05, 0.0186474528, -0.0288232174, 0.00110156299, 0.0289936252, 0.0343736336, -0.000622672145, -0.0173937399, 0.0122632561, 0.00987146515, 0.0163956396, -0.00773528498, 0.00506353797, -0.0142412009, -0.0167851429, 0.0221651513, 0.00352987042, -0.0175641477, 0.0342275687, 0.0222503543, -0.0123971477, -0.0364428684, -0.0141803408, -0.00426931726, 0.0198159609, -0.0187813453, 0.0270704534, -0.0245995447, -0.0167242829, -0.0339110978, 0.0140099339, 0.00916549098, -0.00999927055, 0.0154218813, 0.0451823398, -0.0111556072, 0.0132065834, -0.00391633, -0.00277368701, 0.00107645825, 0.0538000911, -0.0109304264, 0.00536783738, 0.0123302024, -0.0329373404, -0.00949413422, -0.0168581735, 0.0131700682, -0.0112651549, -0.00370940682, -0.0477871411, -0.0179293063, 0.0519499555, 0.0108087063, 0.0476654209, 0.0261940714, -0.00945153181, 0.055260729, -0.0171381291, 0.0300404131, -0.0286771543, -0.0173450522, -0.00235679699, 0.0241370108, -0.0627099723, 0.0241004936, -0.00386459939, -0.0261697285, -0.0151906144, -0.0551633537, 0.0132674435, 0.0154827414, -0.0384147279, -0.0340328179, -0.0359559879, 0.0279224925, 0.0562344864, 0.0296022221, 0.00399544789, -0.0193412546, -0.0182822943, -0.00937241409, -0.0748332515, 0.0164443273, 0.0077474569, 0.0197064131, 0.00676152762, -0.0310385153, 0.0197429303, -0.0116790021, -0.0379278474, -0.0178441033, 0.0421636924, 0.00140358, 0.0250255633, -0.0194873195, -0.0261210408, 0.0178197585, -0.00960976724, -0.0178806186, -0.0172841921, -0.00142868457, 0.00414759759, 0.00918983482, 0.0160426516, -0.0429427, 0.0025393765, -0.00275390735, 0.0219338834, -0.0228711255, 0.000828454504, 0.0131213805, 0.027703397, -0.0318905525, 0.0392667651, -0.0286771543, 0.0173328798, 0.00553520164, -0.0296996, 0.0194873195, 0.00507571, 0.0115937982, -0.0612980239, 0.0149593474, 0.0217147879, -0.030186478, 0.00946979, -0.00500267837, 0.02977263, -0.000713201181, -0.0343736336, 0.0201567765, 0.0248186402, 0.0162982643, -0.0361263976, -0.0102913976, 0.0146307042, 0.00519134384, -0.0258532576, -0.00309472252, -0.0139612462, 0.049247779, -0.0333268456, 0.0110704033, -0.0075283614, -0.026827015, 0.0199620258, 0.00483227056, -0.0135230552, 0.00177710713, -0.012171967, 0.0398266762, 0.0181605741, 0.00301408325, 0.00260632229, 0.0173328798, 0.0201324336, 0.0192073639, 0.00353595638, 0.0109365117, -0.00253329054, 0.0151662705, 0.00993841048, -0.0124032339, -0.0118311513, -0.000505517, -0.000254470186, -0.0502945669, 0.0207288601, 0.0279224925, 0.0104009453, 0.0479818918, 0.00887945, 0.0124580078, -0.00186991843, -0.00541652506, -0.0534592792, 0.0582306869, -0.0227859225, 0.00518525764, 0.0241735261, 0.0233093165, -0.0439164564, 0.00590644684, 0.0062503051, -0.0250985958, -0.0112651549, 0.0206193123, 0.00605251035, 0.0174059123, 0.0161765441, 0.00897682551, 0.0222990438, -0.0179901663, -0.0105470093, -0.0132187558, -0.00382199744, 0.0327669345, -0.0571108684, -0.0276060198, -0.0311358906, 0.0141438255, -0.0300647579, 0.0266322624, -0.000801067566, 0.00803958438, -0.0414820611, 0.0345927291, 0.00937241409, 0.00914723333, 0.0170650966, -0.0512196347, -0.0308924522, 0.0102670537, 0.0345440432, -0.0311358906, -0.0316471122, 0.0191465039, 0.0227494054, 0.0107113309, 0.0187326577, -0.00249829609, -0.00908637326, -0.00495094759, 0.0159331039, -0.0227007177, -0.00275999354, 0.0167851429, -0.0134378513, -0.0261697285, 0.0187935159, -0.0353717357, 0.00437886501, 0.0356882066, -0.00387372845, 0.0302351657, -0.000860405911, 0.0242830738, -0.000432104804, -0.0262671039, -0.0196577255, 0.00975583121, -0.00795438047, 0.014216857, 0.00758313527, -0.019791618, 0.048663523, 0.0140829654, 0.00420541456, 0.0161035117, 0.0346901044, 0.0105774393, -0.0391693898, 0.0125127817, -0.0081187021, -0.0325234942, -0.0425288528, -0.0383903831, -0.0198889934, -0.0121050207, -0.0243195891, 0.0365645885, -0.0454988107, 0.0172598492, -0.0119467853, -0.0171746444, -0.0040776087, 0.0154462261, 0.00626247702, -0.00658503408, -0.00159452762, 0.0112468973, 0.0365159, -0.00270674098, 0.0232849717, 0.0168460011, 0.0175398048, 0.0104070315, -0.0285067465, -0.00887945, 0.00626247702, 0.0133283036, 0.00964628346, -0.0226276852, -0.0241735261, -0.0248795, 0.0119772153, -0.0328399651, -0.0111312633, -0.0263157915, 0.00996884052, 0.0238083676, 0.0221529789, -0.00527654774, -0.0118372375, -0.00461013243, 0.00176493521, -0.00804567, 0.00047318521, 0.0321583375, -0.0512196347, 0.0270461105, -0.0112773273, 0.0233945195, -0.00500267837, 0.020899266, -0.0123788901, -0.0223720744, 0.0130970357, 0.0171989892, 0.0316471122, 0.0161278564, 0.0066580656, 0.0241370108, -0.0181240588, -0.0126466732, 0.00350248348, -0.0421880372, -0.0234797243, -2.57465617e-05, -0.0241248384, -0.000869534852, 0.0189030636, 0.00747358752, 0.0302351657, 0.017892791, 0.0118068075, 0.0179171357, 0.00265196734, 0.0036972349, -0.0122328261, -0.0196942426, -0.0142046856, 0.0153610222, 0.0220556036, 0.0238935705, -0.00168429594, 0.00106580788, -0.00255763461, -0.029334439, -0.0212157387, -0.00283454685, -0.00102853123, -0.0132309282, 0.00374592282, 0.00493573258, 0.00877598766, 0.0193290822, -0.0306977, 0.00978017505, 0.00481097, 0.0216661, -0.007589221, -0.00866644, -0.0116059706, 0.0100966459, -0.0159331039, -0.00283758971, 0.0127075333, -0.00300647574, 0.00220160442, 0.00907420088, 0.00570256636, -0.0157870408, 0.00786309, -0.0200350564, 0.00973148737, -0.0110764895, 0.00301864767, 0.0153366784, -0.0400701128, -0.00439712312, 0.0238083676, -0.0170894414, -0.0266566072, -0.0112651549, -0.0180875417, 0.00801524, -0.00864818227, -0.00965845585, 0.00735186785, -0.0337893777, 0.000685814244, -0.00282541779, -0.00894639548, 0.0226398576, -0.0084595168, 0.0228832979, -0.00653634593, -0.0129509727, -0.0113016712, -0.00196120818, 0.0299186949, -0.0190247837, 0.0112712411, 0.0130848642, -0.00421758648, 0.0221894961, -0.0287745297, 0.0103279138, 0.00124914804, 0.00729709398, 0.00666415179, 0.101952396, -0.0107539324, 0.0142898886, -0.0614927746, -0.00695627881, 0.0150688952, -0.0177102108, -0.0202541519, -0.00363637507, -0.0156409778, 0.0183431543, -0.0213861447, -0.00232180255, 0.029334439, 0.0149715189, -0.0238570552, -0.0149350027, -0.0161887165, -0.0191951916, 0.0243439339, -0.0291883759, -0.00229441561, -0.0129144564, 0.0233458318, -0.0209114384, 0.0131092081, -0.0262671039, 0.00338684977, -0.0356882066, -0.00711451471, 0.0336189717, 0.00318905525, -0.0290179681, 0.00431496231, 0.0352987051, 0.0290179681, 0.0118007213, -0.0191951916, 0.0184040144, 0.0211183615, 0.00104602834, -0.00948804803, 0.00157626974, -0.0110582318, 0.0112773273, -0.0156531483, -0.00323774316, 0.00721797626, 0.000288703828, 0.0091107171, -0.00322861411, 0.00364854699, -0.0133283036, 0.0104922354, 0.00486574369, 0.00741881365, -0.0223355591, 0.0281659309, -0.0172963645, -0.0508788191, -0.00449754158, -0.0271191411, 0.0130605204, -0.0221529789, 0.0155679453, -0.0643653572, -0.0209966432, 0.0257558823, 0.0116303144, 0.00380373956, 0.013778666, 0.021191394, 0.0159817915, 0.00433017733, 0.00987755135, -0.0591557585, -0.0246725772, 0.00403196411, 0.00710234279, 0.000801067566, -0.00389807229, 0.00169190334, -0.0043849512, -0.0292127207, -0.0304786041, -0.030795075, -0.00820390601, -0.0332781561, 0.0114659928, -0.00782048889, -0.00649374444, -0.0308681075, -0.00835605524, -0.019937681, 0.0366863087, -0.0117216036, -0.00979234744, -0.00992623903, -0.0135108829, -0.013340475, 0.0150567228, -0.020899266, -0.00262305886, 0.0437947363, 0.0134256789, 0.0251959711, 0.0276303645, 0.0127805648, -0.00712060044, 0.052777648, -0.00747967372, -0.000248003809, 0.0043849512, -0.0264862, 0.00891596545, 0.0149715189, 0.0344953537, -0.00713277236, -0.0132065834, 0.00328643108, -0.00268544024, 0.000667556305, -0.00463143317, -0.0168094859, 0.00670066755, 0.00423584459, 0.028287651, 0.0461560972, 0.0240152907, -0.0030901581, 0.0220069159, 0.0153123345, 0.0143020609, 0.00395588903, -0.0210209861, 0.000987450825, 0.00112210319, -0.00387981441, 0.0162130594, -0.00473793782, -0.00158083416, 0.024027463, 0.00640854053, 0.00471055089, 0.0176371802, 0.0302838534, 0.0145089841, 0.0170894414, -0.0037307078, -0.0100662168, 0.0182214342, 0.048809588, -0.0125371255, 0.0249525309, -0.0237840228, -0.00744315749, -0.0196698979, 0.00984103512, -0.00755879143, 0.0144724688, 0.00870904233, 0.000982886297, -0.0242222138, 0.0238205381, -0.00810653, 0.038098257, 0.000603653491, -0.0126588456, -0.0050087641, 0.00642679818, 0.00366984797, 0.0199985411, -0.0294561591, 0.0248673279, 0.0106991585, -0.0258045699, 0.0225059669, 0.0140829654, -0.0320853032, 0.025074251, -0.00385851343, -0.0125614693, 0.0116303144, -0.00643897057, 0.00808827206, 0.0192560516, 0.0146307042, 0.00545912702, -0.0296265669, 0.0140464492, 0.021775648, 0.0238327105, -0.000285280461, 0.0199011657, 0.021690445, 0.0267539825, 0.0589123182, -0.0257802252, -0.0107843624, -0.0168946888, -0.00569039444, 0.00600077957, 0.00324078603, 0.0126953609, 0.00377026666, 0.0318175219, -0.00711451471, 0.0229806732, 0.0246604048, -0.0416524708, 0.0127318772, 0.0318175219, 0.0248064678, -0.037830472, -0.00495703332, 0.0370271243, 0.0312576108, 0.00520047266, 0.00359073025, -0.0339354426, 0.0206558276, 0.00766225299, -0.0291883759, -0.00728492206, -0.0184283573, -0.0133039597, -0.0384390689, 0.00193686422, 0.00738838362, 0.00335946283, -0.0107843624, -0.00430279039, -0.00754053332, -0.0454988107, 0.0132431, -0.00907420088, -0.00171624729, 0.0463508479, -0.00684673106, -0.0146428756, 0.00602816651, 0.0178441033, 0.0188787207, -0.0376113765, 0.000894639525, 0.0207166877, -0.0293831285, 0.0145455, -0.0276547074, 0.015093239, -0.0261210408, 0.0288719051, -0.00477141095, 0.0524855219, -0.029334439, 0.0043819081, 0.00391328707, 0.0166025627, 0.0188543759, -0.00661546411, 0.00816130359, 0.0176980402, 0.0146793919, -0.00502702221, 0.0485904925, -0.0163469519, 0.0294074714, -0.0482983626, 0.0143264048, 0.0441355519, -0.0236623026, 0.0379035026, 0.0155922892, -0.00132826588, 0.0035146554, 0.00319818431, -0.00354204234, 0.0215322096, 0.0105591808, -0.00675544143, 0.0235527549, -0.00381591148, 0.0193047393, -0.0308924522, -0.0324991494, 0.00552911591, -0.0263644792, 0.00217269594, 0.0120685054, 0.00690150494, 0.00679804338, -0.0106017832, 0.0191343315, 0.0109121678, 0.00651808828, -0.0368080288, -0.00944544654, 0.0328399651, 0.0254881, -0.0292857513, -0.0376844071, -0.0211183615, 0.00138456118, -0.0328886546, 0.00686498918, -0.0117581198, 0.0222868714, 0.0172111616, 0.0217391327, -0.00513961306, -0.0147159081, 0.0191099886, -0.000998101314, -0.0104557192, 0.00733360974, 0.0195481777, 0.0288475603, 0.0198889934, 0.0103887739, 0.0365889333, 0.0204123873, 0.0518038906, -0.0084595168, -0.0142412009, -0.00863601081, 0.0082404213, -0.00729100825, -0.0152027868, -0.00644505629, 0.0368567146, 0.00388590037, 0.00761965103, 0.0298943501, -0.000686194631, -0.00615292927, 0.0111921234, 0.040021427, -0.0223842468, 0.0165660474, -0.0311602354, 0.00892205164, 0.000138265939, -0.0146672195, 0.00477749715, -0.0322070234, 0.0271921735, -0.00891596545, -0.0510735735, -0.0245265123, -0.00276912237, -0.0352500156, 0.0126345018, -0.0521933921, -0.0195603501, 0.0137299784, -0.0340571627, 0.0180266835, -0.00534349354, 0.0282389633, -0.0286041219, 0.0304542612, 0.0190491285, 0.0283119939, 0.00383416959, 0.0218608528, 0.00838039909, -0.00147280795, -0.00761356531, -0.000535946921, 0.0181362312, 0.000615064695, 0.0106504709, 0.0161278564, 0.00708408467, 0.0120806769, 0.021337457, 0.01392473, 0.0191951916, -0.0300404131, 0.0105165793, 0.00673718378, -0.00809435826, -0.0087273, 0.00590644684, -0.00307037868, 0.0148619711, -0.00134728453, 0.00996275432, -0.018330982, -0.00259415037, -0.0152758183, -0.020899266, 0.0148984874, -0.0194142871, -0.0464238822, 0.0040167491, -0.00122784718, -0.00358768716, -0.0037611376, 0.0132431, 0.00272804196, -0.0113686165, 0.00308559346, -0.00790569279, 0.000601371226, -0.0248916727, 0.01036443, -0.00493268948, -0.00866644, 0.00257893535, -0.014947175, 0.0150567228, 0.0274356138, -0.0162374042, -0.000672120776, -0.0177710708, 0.0245143417, -0.00279042334, 0.000255991676, 0.0222746991, 0.025074251, -0.00595513452, 0.0368323699, 0.0151419267, 0.00693193497, -0.00195664354, 0.00973757356, 0.0159939639, -9.75659204e-05, 0.00125599478, -0.00149106595, 0.0303081963, 0.00083073671, 0.0113199288, 0.00387372845, 0.00344770961, 0.000214911284, 0.0301377904, -0.00282389624, 0.00557476096, -0.00886727776, -0.00352682732, -0.0424558185, 0.0224572793, -0.00383721245, -0.0300647579, -0.00872121379, -0.0102913976, 0.00720580434, 0.00939067267, 0.031671457, 0.00779614458, -0.0098897228, -0.000960824604, 0.0484931171, 0.00731535209, -0.0295535345, -0.00139216869, 0.00455535855, 7.20333192e-05, -0.0172355045, 0.00486878678, 0.0359316468, -0.0302838534, 0.0201446041, -0.0137178069, 0.00151312759, 0.0340571627, -0.00660329172, 0.0110521456, -0.00886119157, 0.0279955231, 0.0216661, -0.0397049561, -0.0050970111, -0.0152149582, -0.00335033378, 0.0109060826, 0.0108208787, -0.0107661048, -0.000112115224, -8.97207065e-05, -0.0371731855, -0.0272895489, 0.0289936252, 0.0081187021, 0.0287501849, -0.0267539825, 0.00723014819, -0.00658503408, 0.00125903776, 0.00453405781, -0.0184527021, 0.0129388, -0.0131578958, -0.0201446041, -0.0212279093, 0.0175032876, -0.00453710044, -6.8895235e-05, 0.0188665483, -0.00317079737, 0.00940284412, -0.0134013351, 0.00555954594, -0.0192925669, -0.015385366, 0.0158479, -0.0113321012, 0.0202054642, -0.0114051327, 0.0269000456, 0.00595513452, -0.00490225945, -0.0109304264, 0.0214470048, 0.015762696, -0.026973078, -0.0207897183, 0.00194751471, 0.0229685, 0.0146672195, -0.0138516985, 0.0361750834, -0.00688933302, 0.016054824, 0.00803349819, 0.0103400853, -0.00155801175, 0.00904985704, 0.00149030518, 0.0146672195, -0.00483835675, 0.0111373495, 0.01030357, 0.00755270524, 0.0116059706, 0.0389502943, -0.0204123873, -0.0327912793, -0.00666415179, 0.0113442726, -0.0259993207, -0.0269243903, 0.00953064952, -0.0064694, 0.0201567765, 0.00092963397, 0.010449633, 0.0214104895, 0.0209479555, 0.0182822943, -0.018245779, -0.0106869871, 0.0363941789, 0.0331807807, -0.0244169645, -0.0185987651, 0.00342945172, -0.00886727776, 0.00172841921, 0.00993232522, 0.0298213176, 0.00244808686, 0.0129144564, 0.000642451632, -0.0111495219, 0.00448232656, 0.0194021147, 0.0263401363, 0.00503615104, 0.0226398576, 0.037660066, 0.0100236144, 0.0152879898, 0.0285797771, -0.00138532196, 0.00786917657, -0.0183066372, -0.0474463254, -0.00468012132, 0.0186231099, -0.00725449203, 0.00342336553, 0.0175884925, 0.00970714353, 0.0146307042, -0.000297262246, -0.0150810666, -0.0237231627, 0.00515482808, -0.000865731155, -0.0124884378, 0.00337163475, 0.0248551555, -0.00159452762, -0.0283363387, 0.00441538077, 0.00540131, 0.0145455, -0.0212765969, 0.0366619639, 0.0199863687, -0.00670066755, -0.0083317114, -0.0199620258, 0.00943936, -0.0291153435, 0.00755879143, -0.011764206, 0.0277277399, -0.0185135622, -0.000480792689, 0.0124884378, 0.00052263384, -0.0132065834, 0.00917766243, 0.00982277747, -0.00387372845, 0.014886315, 0.00165843044, 0.00330468896, 0.00994449668, 0.018757, -0.0106443847, 0.00160061358, 0.0187204853, -0.00648765825, 0.0251472834, 0.00913506094, 0.0367106497, -0.0337406918, 0.00277216546, 0.010656557, -0.0167364534, -0.00392850209, 0.0261697285, -0.00295930938, -0.0318175219, 0.00343553768, -0.0138030099, -0.0152393021, 0.00110612751, 0.0148132835, -0.00839865673, -0.00729100825, 0.00918374863, 0.0351282954, -0.00219704, 0.0107174171, -0.0184405297, 0.00981060509, -0.000289084215, 0.052777648, -0.027411269, 0.0404109284, -0.00945153181, 0.0236014426, -0.0172841921, 0.0107539324, -0.0107478462, 0.0110278018, 0.020814063, -0.00309624407, -0.0251229387, 0.0087273, 0.00114644715, -0.0212279093, 0.0212279093, 0.0267052948, -0.00972540118, 0.00145607151, 0.0155557739, -0.00518221501, 0.0141925132, 0.0253663789, -0.00482922792, -0.0357368924, -0.0343736336, -0.00291518611, 0.00788134802, -0.0100114429, -0.00282389624, 0.0336676612, -0.00820390601, 0.0205827951, -0.00232941, 0.0214956924, 0.026096696, -0.00981060509, 0.0201202612, -0.00829519518, -0.0247942954, -0.0195116624, 0.00682238722, 0.00400457717, 0.00483227056, -0.021106191, 0.0372462198, -8.88173163e-05, -0.0221408065, -0.0254637543, -0.0175641477, 0.00365767605, -0.0300160702, -0.0199620258, 0.0266322624, -0.0248795, -0.00795438047, 0.00627464894, -0.000785091834, 0.000553824473, -0.0404839627, -0.025074251, 0.00859949458, 0.0256828498, -0.0106382985, -0.000509701087, -0.0106322132, 0.0287745297, -0.0349335447, -0.0135595705, 0.00964019727, -0.016578218, -0.0135960868, 0.0283119939, 0.00188665488, -0.0149228312, -0.00359681621, 0.0098897228, 0.0202176366, -0.00439408, -0.0198159609, -0.00900725555, -0.0212887693, 0.0108208787, 0.00052263384, 0.0164808426, -0.0189395808, -0.00622596079, -0.0154827414, -0.00848386064, 0.010218366, -0.0136812907, 0.0214470048, -0.00316775427, -0.0112408111, 0.0151662705, 0.0325234942, 0.0326208696, -0.00451579969, 0.00266870367, -0.00699279504, -0.00574516831, -0.037830472, 0.0136812907, -0.0181970894, 0.00570256636, -0.00129707518, 0.0102487961, 0.0132796159, 0.0164565, 0.0149593474, -0.0153731937, -0.00109775923, 0.00311450195, 0.00918374863, -0.00950022, -0.0208262354, -0.000605175, -0.0105835246, 0.00248003821, -0.0277764276, -0.0191343315, -0.00346292462, 0.0033290328, 0.0110460594, 0.0174180847, -0.00467403512, -0.0183674973, 0.0173815675, -0.00291670742, -0.0257802252, -0.00126132008, -0.000620009552, 0.0168460011, -0.0292857513, 0.00971323, 0.00836214144, -0.00678587146, -0.00634159474, -0.0104192039, 0.0231510811, -0.00523090269, -0.0155314291, 0.0112042958, 0.00662155, -0.0108391363, 0.00218791096, 0.00691976305, 0.00419628574, 0.0157748684, -0.00104678911, 0.0110460594, -0.0296752546, -0.0309167951, -0.00361507409, -0.0194629747, 0.019791618, 0.0171746444, 0.0134743676, -0.024928188, -0.0099870991, -0.0231267363, 0.0123302024, -0.0158479, 0.00512744114, -0.00940893, 0.00931764, -0.00129631441, -0.00950630568, 0.0132187558, 0.0272408612, 0.0200107135, 0.00166147342, -0.00848994683, 0.00678587146, -0.00554128783, -0.0112894988, -0.00458883122, -0.00635985238, 0.00293648685, 0.0270217657, -0.014947175, 0.00373983686, 0.0171503015, 0.000921265746, -0.0113442726, -0.00897073932, 0.00658503408, -0.0152027868, 0.00121491437, 0.0251959711, 0.0103400853, -0.0113929613, 0.00411108183, 0.028725842, 0.00943327416, 0.0187448282, 0.0359559879, -0.0257071927, 0.00782048889, 0.0158357285, 0.0121293645, -0.00105972181, 0.0112286396, 0.00672501139, -0.00301408325, 0.0171381291, -0.0309898276, -0.0228589531, -0.0341788828, -0.0377574414, -0.0199498534, -0.00796655193, -0.0112347249, -0.0228954703, -0.0132431, 0.00580298528, 0.00714494428, -0.00545912702, 0.0299430378, -0.00179688656, 0.00650591636, 0.00723623438, -0.00231267372, -0.0182092618, 0.0070962566, 0.0158479, -0.00524307461, 0.00569039444, 0.0119224414, -0.0142046856, -0.0249768756, -0.0022670289, 0.00440625194, -0.0167242829, -0.0158600733, -0.00674326951, -0.0222260114, 0.0142046856, 0.0174180847, 0.0228224378, 0.0111860372, 0.00912897475, 0.00162800052, 0.000245721574, -0.0091107171, -0.00732143782, 0.0110034579, 0.00133206963, 0.00864818227, -0.00635985238, 0.0179414786, -0.00685281726, -0.00285128318, -0.00571169518, 0.00602208031, 0.00156561926, -0.00696236501, -0.0346901044, -0.0381225981, 0.000392926304, 0.00908637326, -0.0144359525, -0.0270947982, -0.00990798, -0.0242100414, -0.00547434203, -0.00313428137, 0.0148376273, -0.0114964228, 0.0382443182, 0.00088474981, -0.0114416489, -0.00547738513, 0.00433930615, -0.000776343222, -0.00365159, 0.00629899278, -0.0183674973, -0.00291670742, -0.0228346102, -0.0116242282, 0.00292887958, 0.00904985704, -0.00354204234, 0.0298213176, 0.0204975922, 0.041774191, 0.00545912702, 0.018330982, 0.030210821, -0.0180875417, 0.0133039597, 0.00132370135, -0.0233214889, -0.00307342154, 0.008027412, -0.0250012204, -0.0361020528, 0.0108087063, -0.029091, -0.0151297543, 0.0181727465, 0.00249981764, 0.00518830074, -0.00598556455, -0.0045097135, 0.00296539534, 0.0115755405, 0.00409891, 0.0168338306, 0.00806392822, 0.0215687249, -0.0277277399, -0.0266322624, -0.00191099872, 0.0148254558, -0.0188543759, 0.0162860919, -0.0106869871, 0.0199863687, 0.00418107072, 0.0110582318, 0.0105470093, 0.0214956924, -0.00668849563, -0.00858123694, 0.0181362312, -0.0142412009, -0.00512744114, 0.0107052447, 0.00263523078, -0.0125614693, -0.0145211564, 0.000502854353, 0.0140221054, -0.00795438047, 0.00232484564, 0.00853863452, 0.012756221, -0.000132845598, -0.00563257746, 0.00237657642, 0.0209114384, -0.00643897057, -0.000430202956, 0.0160061363, 0.00672501139, 0.00754661951, -0.0142655447, 0.0176371802, -0.00306885713, 0.00116622658, -0.00642679818, -0.0294561591, -0.00339597859, 0.0285310894, 0.00828302372, 0.022798093, 0.0139125576, -0.0129753165, 0.0327912793, 0.00115101156, -0.0118494099, 0.00783874653, 0.0102487961, -0.00295322342, -0.00202967552, -0.00419019954, 0.00221529789, 0.0047318521, -0.0221894961, 0.00701105269, 0.0100357868, -0.00513961306, 0.0130361766, 0.018477045, 0.0271921735, -0.00737012597, 0.00837431289, -0.00439408, -0.0179049633, 0.0245143417, -0.00706582656, -0.00806392822, 0.00796655193, -0.00534957927, 0.0109730279, 0.0156774931, 0.012171967, -0.00515178498, -0.0123728039, -0.0036972349, 0.0103461714, 0.00614988618, -0.0106687285, -0.00191860623, -0.00668849563, -0.0063172509, 0.00340206479, -0.029164033, 0.0139003862, -0.00925069489, 0.00594904879, 0.012756221, 0.000508179597, -0.00480184099, -0.0134256789, -0.0231997687, -0.00127425278, -0.0346901044, 0.00481097, 0.0165903904, -0.0400944576, -0.00248764572, -0.0164321549, -0.00253176899, -0.00793003663, 0.0189030636, 0.0139125576, -0.00114568637, -0.00278281583, -0.00457361666, 0.0260480084, -0.0106504709, -0.00230202312, -0.00219399692, -0.0133161312, 0.0396562666, -0.0141316531, -0.00680412957, -0.0170894414, -0.0350065753, 0.000455688016, -0.0185744204, -0.00978626125, -0.00942718796, -0.000909093767, -0.01949949, -0.0241004936, -0.015385366, 0.0280442107, -0.00618031621, -0.00339902169, -0.00534349354, -0.0128901126, 0.00422367221, 0.0144116087, -0.00586688798, -0.0102548823, -0.00325904414, -0.0228467807, 0.00248155976, 0.0315984264, -0.0156409778, -0.00357551523, 0.00740055554, -0.00440016575, 0.0186717976, 0.00974366, -0.00850820448, -0.0181605741, 0.0152271306, -0.00363333197, 0.00402283482, -0.0132431, 0.016493015, 0.00702322461, 0.0121050207, -0.00648765825, -0.00207836321, 0.0177832432, -0.00143248832, -0.031501051, -0.00504223723, 0.0053830524, -0.0202419814, 0.0134378513, 0.0154340537, 0.0229685, -0.0267296396, -0.0116364006, 0.00713277236, 0.0254637543, 0.0247942954, 0.00329251704, -0.0100236144, -0.010041873, 0.00201750337, -0.018330982, -0.0130726919, -0.003298603, -0.00346292462, -0.000752760039, -0.0208262354, 0.00754661951, 0.0141316531, -0.0291396882, -0.0193656, 0.0150445504, 0.00759530719, 0.0140464492, 0.0051609138, 0.00565083558, 0.00393154519, 0.0088064177, -0.0121232793, 0.0202054642, -0.00121567515, -0.00158692012, 0.0127805648, -0.0103157414, -0.0118494099, -0.00606772536, 0.00338380667, -0.00597947882, -0.0217269603, 0.00796046667, 0.0033320759, 0.00999927055, 0.0170650966, -0.011064318, 0.00883684773, 0.0107965348, 0.00445798272, -0.0180631988, -0.0115146805, -0.00749793136, -0.0093785, -0.0164686702, -0.014947175, -0.0129388, -0.0150080351, 0.00252264016, 0.0172111616, 0.0159087609, -1.64155135e-05, -0.0101940222, 0.00137999677, 0.0121780522, -0.0105774393, 0.0143020609, -0.00587906, -0.0219095405, -0.0124884378, -0.0107113309, 0.00927503873, -0.0127318772, 0.0205341075, 0.00898291171, -0.0317931771, 0.0138882138, 0.0105104931, -0.0253420342, 0.0168703459, -0.0140342778, 0.0124884378, 0.0042936611, -0.00827085134, -0.0035481283, 0.000809435791, 0.0130970357, -0.00256372057, 0.00974974502, -0.00173602672, -0.00206466974, 0.00506962417, 0.0011449256, -0.0141194817, 0.00939675793, -0.00906811561, -0.0247942954, -0.0037611376, 0.0232849717, -0.00391633, -0.0194264594, -0.00349335442, -0.00260175788, -0.00751010329, 0.00289540668, 0.00652417401, 0.0218243357, 0.0222260114, 0.00239179144, 0.000593383389, 0.0104131177, -0.0101635922, 0.0020814063, 0.0195968673, 0.0102974838, -0.00315558235, 0.0197551027, 0.0014819369, 0.0305759795, 0.00271891314, 0.00874555763, 0.0218365081, 0.0177589, 0.0159331039, -0.0100844745, -0.00716928858, 0.00582732912, 0.0141316531, -0.0232484564, -0.00454014353, -0.00923243631, -0.0055991048, 0.0116850883, 0.0182579495, 0.00387981441, 0.000180867821, 0.0170529261, 0.0249160156, 0.0150567228, 0.0105104931, -0.0011707911, 0.00202815398, -0.0104192039, 0.0178441033, -0.0165903904, 0.0103522576, -0.0215200372, 0.00694410689, -0.0169190336, 0.0132187558, -0.00533436425, 0.0154949138, -0.00885510538, 0.0023005018, 0.0079361219, 0.00890379399, -0.00930546876, -0.0150202066, 0.00221073348, -0.0205584522, -0.0163104348, -0.0277277399, -0.00328338798, 0.000728796527, 0.00440016575, 0.00320427027, -0.0268513579, 0.0191830192, 0.00882467628, -0.004101953, 0.0173937399, -0.0129144564, 0.00543174, -0.00510614, -0.0193777718, -0.0010422247, -0.000794220832, 0.00748575944, 0.0129144564, -0.0070901704, -0.03695409, 0.0226763748, -0.0100114429, -0.0190126114, -0.00762573723, -0.00540739624, -0.00453101471, -0.0119041838, -0.0192925669, 0.00754661951, 0.000336821133, 0.018477045, -0.00536783738, 0.0071571162, 0.00217269594, -0.0353717357, -0.00503310841, 0.0070901704, 0.00791177806, -0.0122815147, 0.0179658234, -0.0118920114, 4.88305086e-05, -0.0296752546, 0.0131335519, -0.0175884925, -0.0146063603, 0.0105652669, -0.00739447, 0.00878816, -0.0198524781, 0.00685281726, -0.00732143782, -0.0078083165, 0.0156896655, 0.0177345555, 0.00433322, 0.00746750133, 0.0153488498, 0.00885510538, 0.0102427099, -0.009457618, 0.0171989892, -0.00259262882, 0.0112712411, -0.00674326951, 0.0105713531, -0.00265348866, 0.00829519518, 0.00574821141, -0.00278281583, 0.000420313212, -0.00999318436, -0.00773528498, -0.00572691, -0.000427540333, -0.000650059083, -0.0322800539, 0.0185379051, 0.022213839, -0.0166634228, 0.00861775223, -0.0106809009, -0.0207166877, 0.00485052867, -0.00912288949, -0.000550781493, -0.00975583121, -0.0116242282, -0.012524954, -0.00021928559, 0.0136569468, 0.0190856438, 0.0175398048, 0.0292614084, -0.0100175282, 0.0091168033, -0.00718754623, 0.00362420315, -0.000196463152, 0.00695019308, -0.0117824636, -0.00574516831, 0.0264131669, -0.0158600733, 0.0273869243, -0.00472272327, 0.00229593716, -0.00305516366, -0.00197794451, 0.020229809, -0.00465273438, 0.0164321549, 0.00312515255, -0.00197338, -0.0181727465, -0.0331807807, 0.0125492979, 0.0128901126, 0.0343979783, -0.00433626305, 0.00529784849, -0.0282633062, 0.00405935105, 0.0214470048, 0.000583874, 0.0063172509, 0.0165173579, 0.00335946283, -0.00335033378, 0.0184283573, 0.0200472288, -0.00604338152, -0.00199163798, -0.00894030929, 0.000444276782, 0.00152986404, 0.0120198168, -0.0096828, 0.0252933465, -0.00104374613, -0.015178442, 0.00569952326, 0.0107965348, -0.0124458363, 0.0186717976, -0.00692584924, -0.0318662077, 9.07667345e-05, -0.0126710171, -0.0196577255, 0.00460708933, -0.0120380754, 0.00804567, -0.0124762654, 0.000576266553, -0.00887945, -0.000247243064, 0.00510614, 0.0120441606, 0.00720580434, -0.00920809247, -0.0186109375, 0.00886727776, -0.0236014426, -0.00501485029, -0.00404109294, 0.0234553795, -0.0158113856, 0.00285128318, -0.00616814429, 0.00604338152, -0.00934198406, -0.00813087355, 0.00426931726, -0.00390415825, 0.0192317069, 0.00293648685, 0.0016979893, -0.0255611297, 0.00151693134, -0.0306977, 0.00230506621, 0.00605251035, -0.0260236654, -0.00800915435, 0.00473489519, 3.12857592e-05, 0.012086763, 0.0126588456, 0.0106504709, -0.00540739624, -0.0113381874, 0.00526741846, 0.0216539279, -0.0244169645, -0.00167060248, -0.0188908931, 0.0119285276, 0.00369419181, 0.00946370419, -0.00248764572, 0.0188543759, 0.0026884831, 0.0015564902, 0.0144602964, 0.0266079195, 0.0140221054, 0.0179171357, -0.0319148973, -0.0157870408, -0.00326513, 0.00235375413, 0.00199924549, -0.0464725681, -0.00856297836, -0.00601599459, -0.0109365117, -0.00122784718, -0.0192438792, -0.00498746336, 0.00130848645, 0.0254150666, 0.0102609675, -0.00157018367, 0.00783874653, -0.0176615231, -0.00710234279, -0.0314523615, -0.00990189519, 0.0229563285, 0.0147159081, -0.010218366, -0.0241370108, 0.017953651, -0.0252933465, 0.0104557192, -1.68315473e-05, -0.0137543222, -0.0144724688, -0.00361811719, -0.00895856787, 0.0222260114, 0.0231510811, 0.00402587792, -0.00531306351, 0.0162374042, -0.00556563167, 0.00748575944, 9.25735148e-05, -0.004728809, -0.0180875417, -0.00408065179, 0.00465882, -0.00575125404, -0.004728809, 0.0267296396, 0.00726057822, 0.00517004263, -0.0298213176, -0.00894639548, -0.00222442695, -0.00482618483, -0.0195481777, 0.00256524188, -0.0101270759, -0.036491558, -0.00474098092, 0.0184892174, -0.0195725225, -0.00411108183, -0.0234797243, 0.0180997141, -0.0192438792, 0.00627464894, 0.020899266, -0.00294409436, 0.00916549098, -0.00782048889, -0.0120685054, 0.0185379051, -0.0170042366, 0.0014355313, 0.02265203, -0.00179384358, -0.0285554342, -0.0104435477, -0.00214683055, -0.00297604594, -0.0195360072, -0.0260480084, 0.0433565453, -0.00302929827, 0.00176189223, 0.0204732474, -0.00145987526, 0.0074614156, -0.0186961405, -0.00981669128, -0.00501789339, 0.0214591771, 0.0100844745, -0.0185257327, 0.00712060044, 0.00684673106, 0.00446406892, -0.0016158286, 0.00695627881, 0.00651808828, 0.00215595961, -0.0137908384, 0.012056333, 0.00563257746, -0.00275086449, 0.00213161577, 0.0127075333, -0.0215808973, 0.0280685555, 0.0174180847, -0.0354934558, -0.00399544789, -0.0200715736, -0.0320366174, 0.00656069024, 0.00320122717, 0.0192925669, 0.0201202612, -0.00477445405, 0.00635376666, 0.00108939107, 0.00449145585, 0.00269609061, -0.000627617061, 0.0131335519, 0.0193777718, -0.00614988618, -1.51436379e-05, 0.0043819081, 0.00623204699, -0.00057664694, 0.00836214144, 0.00279194489, 0.0184283573, -0.0209114384, 0.00796046667, -0.009457618, 0.0200594012, 0.00115785829, 0.00672501139, -0.0115998844, -0.00547738513, 0.00166603795, -0.0102487961, -0.00875164382, 0.027265206, 0.00336554879, -0.0163591225, 0.00336859189, -0.00743707176, 0.0211670492, -0.00577559834, 0.00485661486, -0.00785700418, -0.0112468973, 0.0230050161, 0.0206558276, -0.0091168033, 0.00449145585, -0.0240761507, -0.000379042642, 0.00162495754, 0.0172111616, -0.0224451069, 0.00681630149, -0.0165417027, 0.0170042366, 0.00202663243, 0.01392473, 0.000382275815, -0.00436669309, 0.0151419267, -0.0020403259, -0.0128170811, -0.00188513333, 0.00653634593, 0.00762573723, 0.009457618, -0.00760747911, 0.00254241959, 0.00980451889, 0.0263644792, -0.0127683934, 0.00918374863, 0.0180631988, 0.00569648063, -0.022359902, -0.00243743625, -0.0150688952, 0.0204975922, 0.00155344722, -0.0226763748, 0.00786309, 0.0140099339, 0.0023644045, 0.0134621952, -0.000120958917, -0.0143385772, -0.0225546546, -0.00804567, 0.000861166627, 0.00589123182, -0.0283119939, -0.0203637, -0.00109243405, 0.0060312096, 0.0157140084, -0.0103522576, -0.0141073093, -0.0238935705, -0.00108178356, 0.015093239, 0.0217634756, 4.86878671e-05, 0.0195603501, 0.0316958, 0.00540435314, 0.0212887693, 0.0266809501, -0.00410803873, 0.0345440432, -0.00735186785, 0.00878816, -0.0025500271, 0.000198365015, -0.0101149045, 0.00735795405, -0.0032347, -0.00101103401, -0.00628073467, 0.00396501832, -0.0139369015, -0.000173830893, -0.0012582771, 0.00834996905, 0.00476532476, -0.00398023333, -0.00825867895, -0.0186596252, 0.0163104348, -0.00324687222, -0.000682390877, 0.0116668297, -0.0105530955, -0.00424193032, -0.0043819081, 4.84263583e-05, 0.00356030022, 0.0106443847, -0.00248003821, 0.00757096335, -0.00470142206, 0.0129388, -0.0070901704, -0.00676152762, -0.000971475092, -0.0375626907, -0.00888553541, -0.0126831895, -0.00906202942, -0.000443896424, 0.0108756525, 0.0122997724, -0.0146793919, -0.0016493015, -0.00115633686, -0.0275573321, 0.0103583438, 0.0231632534, -0.00278890179, -0.00285128318, -0.00396806095, -0.0229928456, -0.0182336066, 0.0228224378, -0.0181970894, 0.00881250389, 0.00365463295, -0.0121902246, -0.0107235024, -0.0109547703, 0.01030357, 0.0149836913, -0.018757, 0.00362420315, 0.00183796696, -0.0192438792, 0.0101757646, -0.00387981441, 0.0411169045, -0.0222381838, 0.00572995329, -0.00374287972, 0.00765616726, 0.00536783738, -0.00634159474, 0.0144846402, -0.00688933302, -0.0203880444, -0.00651200209, 0.010918254, 0.00506962417, -0.0210088138, 0.0122510847, -0.0122815147, -0.0128535964, 0.0290423129, 0.01751546, 0.0233701766, -0.00570256636, 0.0149350027, 0.0149836913, 0.0219582282, -0.00243743625, 0.00352987042, -0.00747967372, 0.0148984874, -0.00900116935, -0.0047927117, -0.00681630149, 0.0149350027, 0.0228832979, 0.0200107135, -0.0245752, -0.0131092081, 0.0143994363, 0.0165417027, 0.00786309, -0.00995058287, -0.00923243631, -0.0204245597, -0.0230415333, -0.000238684661, -0.00705974083, -0.0284824017, -0.00839865673, -0.00579994218, 0.024550857, 0.00106961152, -0.00349639752, -0.000182104035, -0.0150567228, -0.030795075, 0.0114903366, 0.0171381291, -0.00605555344, 0.00227615773, -0.0128657687, 0.0175032876, -0.0301134456, 1.68553215e-05, 0.0080761, -0.00989580899, -0.0071814605, -0.00206771283, 0.0268026702, 0.00653026, 0.0204732474, 0.0217391327, 0.00558693288, -0.00197338, -0.00934198406, -0.00057664694, -0.00847777445, -0.00892813783, 0.00431496231, 0.00127729576, 0.00862383842, 0.00262762327, 0.0174789447, 0.0113442726, -0.00132065837, -0.00356030022, 0.0086786123, -0.0021924756, 0.00455840165, 0.00866035465, 0.0137543222, -0.0236379597, -0.00894030929, -8.23985101e-05, 0.0161156841, -0.0121780522, -0.00317079737, 0.0073092659, -0.00352682732, -0.0174302571, -0.0101514198, 0.00693193497, -0.000833019, 0.00663980795, -0.00862992462, -0.0245265123, -0.0208749231, 0.0229441579, 0.00632333662, 0.0120441606, -0.00190795574, 0.00707799848, -0.00489617372, 0.0191830192, 0.0140829654, -0.000566376839, 0.0200594012, 0.00252872612, -0.0197551027, 0.00195664354, 0.0162982643, 0.0188422035, -0.0157992132, -0.010595697, 0.00343249459, -0.0102244522, -0.0153610222, 0.00761356531, -0.0217026174, -0.00211944361, 0.0326208696, 0.00844734441, 0.00555345975, 0.0108939102, 0.00424497342, -0.00345683843, 0.0116120558, 0.0127927372, -0.00759530719, 0.0114294766, -0.0008322582, 0.0447684936, 1.99815204e-05, 0.0125736417, 0.00414455449, -0.00568126561, 0.00915940478, -0.00908637326, -0.00396806095, -0.000543934759, 0.050148502, -0.0169555489, 0.0211427063, -0.0238205381, 0.00544999819, 0.0206923429, 0.0118372375, 0.00403500674, 0.0191830192, -0.00428757537, 0.00873947237, 0.00597643573, 0.00638419669, -0.016493015, -0.00289084204, 0.0118737537, 0.0138030099, -0.00517308572, -0.000795742322, 0.0068102153, -0.0161765441, 0.005167, 0.0144602964, -0.0283850264, 0.00179840811, -0.0131700682, 0.00811261591, 0.00258958596, 0.00168125285, -0.0148376273, -0.0244778246, -0.006597206, 0.00319514121, -0.0205462798, -0.00447624084, 0.0014895444, 0.0274843015, 0.0134621952, -0.00216965307, 0.00344770961, 0.00302169076, -0.0349822305, -0.00479575479, -0.00239939895, 0.000511602964, -0.0160061363, -0.0299917255, -0.0193777718, 0.00655460404, 0.0152027868, -0.00264283828, -0.00167516689, -0.0127805648, 0.00532523543, 0.0137299784, -0.0103705153, -0.0179414786, -0.00689541921, 0.010449633, -0.0204610769, -0.0173937399, -0.0053800093, -0.0128292525, 0.00263827387, -0.00411412492, -0.00491747446, -0.0263157915, 0.00371245, 0.000459111383, 0.0168703459, 0.0124336639, -0.0133283036, 0.00202815398, -0.0154340537, -0.00243135029, 0.0121111069, 0.024928188, 0.00727275, -0.011794636, -0.0114294766, 0.0269243903, -0.00136326032, 0.00579385599, -0.0145089841, 0.00786309, -0.0202784967, 0.00776571454, -0.000804110547, -0.00283606816, -0.0134621952, 0.0231875964, 0.0239544306, 0.0176250078, 0.00805784203, -0.00797872432, 0.00421758648, -0.00229289429, -0.0144602964, -0.00311906636, 0.00216813153, 0.0012248042, 0.00262610172, 0.0154097099, 0.00501485029, -0.0388042293, 0.00183796696, 0.0116546582, -0.015324506, -0.00585775916, -0.0227494054, 0.021690445, 0.00453405781, -0.015032379, 0.0114233904, -0.000301826745, -0.0353473909, 5.49164906e-05, -0.00955499429, -0.0008322582, -0.00569648063, -0.00189274084, -0.0259262882, -0.00886727776, 0.00837431289, 0.00683455914, 0.0261697285, -0.0206193123, -0.0078083165, 0.00310385157, 0.017016409, 0.0119954729, 0.0076805111, -0.0029380084, 0.00583645795, 0.000364778622, 0.00870904233, -0.00576951215, -0.00408978062, -0.00083073671, 0.0283119939, 0.0206314828, -0.00513352687, -0.00129327143, -0.0221164636, 0.00604642462, -0.00794829428, 0.0301134456, 0.000200837443, 0.00878816, 0.0195603501, 0.00167668844, 0.015032379, 0.019353427, 0.0170650966, 0.0115816267, 0.00146672199, 0.00938458648, -0.000507038494, 0.000464436598, -0.0135839144, 0.00162191456, 0.026534887, -0.012610158, -0.013048348, -0.0230780486, 0.00177102117, -0.000396349671, -0.0122571709, -0.0168460011, 0.0115207667, 0.0196455549, 0.00211640075, -0.00676761335, -0.0220190883, 0.00900725555, -0.00451884279, 0.00243135029, 0.0173207093, 0.0120806769, -0.0267539825, -0.00389198633, -0.0155679453, 0.0151297543, -5.79475966e-07, 0.00316775427, -0.0242222138, 0.0134013351, -0.00492051756, -0.00882467628, 0.00491443137, -0.0147645958, 0.00572995329, -0.0129874889, -0.0183553249, 0.00469837897, 0.0172233321, -0.0145455, -0.00143933506, -0.0132917874, 0.0150202066, 0.00993232522, 0.0202419814, -0.00883684773, -0.00175428472, -0.000745152589, 0.0318418667, -0.0225911699, -0.0054926, 0.0219095405, -0.0111373495, -0.00187296141, -0.0262184162, -0.00854472071, -0.0128292525, -0.00946979, 0.0166025627, 0.0182214342, -0.0153366784, -0.0039528464, -0.00640245434, -0.00827085134, 0.00739447, -0.00546521321, 0.00508179609, -0.0167973135, -0.0172598492, 0.0174059123, -0.0177710708, -0.0239909459, 0.00871512853, 0.00735795405, -0.0217634756, -0.00255307, 0.0117702922, 0.0161765441, -0.0130361766, -0.00540435314, -0.0103279138, -0.0107539324, -0.0168946888, 0.000199696326, 0.00476228213, -0.00193077826, -0.00182731648, 0.0173085369, 0.0133526474, -0.00107874058, -0.0130848642, -0.00915940478, -0.00280563836, 0.00601599459, -0.00448232656, 0.00267326809, 0.0131213805, -0.00510309683, 0.00515787071, 0.0114294766, -0.00289236358, 0.0127805648, -0.00329251704, 0.0131213805, -0.00704148272, -0.0162495747, 0.000831497484, 0.021252254, -0.00816739, -0.00158387714, 0.0113321012, 0.00776571454, -0.0158844162, 0.0165417027, -0.0204489045, -0.00239331299, -0.0192317069, -0.00303538423, 0.00515482808, -0.00737012597, -0.00231267372, -0.0179658234, -0.0143872648, -0.0124580078, -0.00269000465, -0.0124154063, 0.00279498775, 0.00389198633, 0.00486878678, 0.0252933465, 0.0168946888, -0.0222990438, 0.00215443806, -0.0179171357, -0.00495703332, 0.0349335447, 0.0108756525, 0.0138030099, -0.0188787207, 0.00447015464, 0.000488400168, 0.000446178659, -0.0337406918, 0.0106382985, -0.00354204234, 0.00140358, -0.0115085943, 0.00415368378, -0.00492964638, -0.00286041223, 0.0190491285, -0.00810653, 0.00503919413, -0.00782048889, -0.00290910015, 0.0140586216, 0.000331876276, 0.0183796696, 0.0113868751, 0.0139734177, 0.0188787207, -0.00555954594, -0.013048348, 0.0124032339, -0.00836214144, -0.0194021147, -0.00641462626, -0.0171137843, -0.00648157205, 0.00943327416, 0.0159087609, 0.0231875964, 0.00988363661, -0.000116774805, -0.00759530719, -0.00886727776, 0.00108102278, -0.00143020612, -0.00195664354, -0.0032316572, -0.0165417027, -0.00763182295, -0.00276151486, 0.0233093165, 0.0137421507, -0.0160669964, -0.00727275, 0.00381895457, -0.00249373168, -0.0100905607, 0.0165051874, -0.00235679699, 0.00125219102, -0.0121902246, 0.00138760416, -0.0127927372, -0.0113199288, 0.0143385772, -0.0104252892, -0.0164199825, -0.0106809009, 0.00918983482, 0.0160913393, 0.00445493963, -0.0176980402, 0.015093239, -0.00309472252, -0.00341727957, 0.00660937792, 0.0191586763, -0.00897073932, -0.00677369954, 0.0115146805, -0.015093239, -0.0182214342, 0.0087273, -0.015093239, 0.0215808973, 0.000660709571, 0.00822216365, -0.0262184162, 0.0189760961, 0.01547057, 0.0108695664, -0.0203271843, 0.00139673322, 0.0305516366, -0.0152879898, -0.00640854053, 0.032547839, -0.00909245946, -0.0173572246, -0.02784946, -0.00719363242, 0.000740968448, 0.00850211829, 0.035639517, 0.0103400853, -0.000198745387, -0.00573908212, 0.00338076381, 0.0175276324, -0.0284580588, 0.0210209861, -0.0121111069, 0.0087273, 0.00213770173, -0.0176371802, -0.00363333197, 0.00887945, -0.0152879898, -0.00439712312, 0.0143507486, 0.00112058164, 0.00454622973, -0.015385366, 0.00700496696, -0.00670675375, -0.00679195719, -0.0060951123, -0.0022259485, -6.36175464e-05, 0.0173328798, 0.00791177806, 0.00130544347, 0.0114173051, -0.00874555763, -0.00339597859, -0.00990189519, 0.0122267408, 0.0234432071, 0.0294074714, -0.0169433784, -0.0142655447, -0.00451884279, -0.0126831895, 0.0455231555, -0.0167729706, 0.00556867477, -0.00839257147, -0.00531002041, -0.00109243405, -0.0150810666, 0.0135473991, -0.0133891637, -0.0262914486, 0.0046649063, 0.00828910898, 0.00940893, -0.0161522, 0.0018805688, -0.0116790021, 0.0289936252, -0.0287014972, 0.013048348, 0.034300603, 0.00385547034, 0.0242100414, 0.0141073093, -0.0124762654, 0.00193838566, 0.00939067267, 0.00778397266, -0.00567822251, 0.00643288437, 0.00677978527, 0.0139369015, -0.01030357, 0.00877598766, -0.00271434849, 0.0319635831, 0.0182701219, 0.00978017505, -0.0247821249, -0.00125219102, 0.0311358906, -0.00868469849, 0.00917157717, -0.00926895253, 0.0443303026, -0.0254637543, 0.00106276479, 0.00923243631, -0.0262184162, 0.0265592318, -0.0143385772, -0.017077269, -0.00225485675, 0.0125858132, -0.0030901581, -0.0063111647, -0.00640245434, -0.00854472071, 0.00754661951, 0.00840474293, 0.00586384488, -0.00699888077, 0.00642071245, 0.01751546]
15 May, 2023
How to detect if a dropdown list is a multi-select using jQuery? 15 May, 2023 In this article, we will learn how to detect if a dropdown list or an HTML select element is a multi-select one or not using jQuery. There is one main approach with which this can be implemented. Approach: Using the prop() method in the jQuery library. There is one select element with an id of dropdown defined in the following example which also has an attribute of multiple attached to it. Also, a button element with a class of check-multi-select is created which on click checks whether the given dropdown is a multi-select one or not. We use the prop() method to check the existence of the multiple attributes bypassing the same as a string parameter. If the method returns the boolean true, then the dropdown list is a multi-select. Otherwise, the dropdown list is not a multi-select since the method returns the boolean false which indicates the absence of the multiple attributes. Example 1: In this example, we will use the above approach. HTML <!DOCTYPE html> <html> <head> <style> body { text-align: center; } p { font-size: 25px; font-weight: bold; } select { display: block; margin: 0 auto; } button { margin-top: 1rem; cursor: pointer; } </style> </head> <body> <h1 style="color: green">GeeksforGeeks</h1> <p>jQuery - Detect if a dropdown is a multi-select</p> <select id="dropdown" multiple> <option value="Geek 1">Geek 1</option> <option value="Geek 2">Geek 2</option> <option value="Geek 3">Geek 3</option> <option value="Geek 4">Geek 4</option> </select> <button class="check-multi-select"> Click me to check if dropdown is a multi-select </button> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"> </script> <script type="text/javascript"> $(".check-multi-select").click(function () { if ($("#dropdown").prop("multiple")) { alert( "The given dropdown IS a multi-select" ); } else { alert( "The given dropdown IS NOT a multi-select" ); } }); </script> </body> </html> Output: Example 2: This example is quite similar to the previous example but the only difference is that the dropdown is defined as not a multi-select which means there are no multiple attributes attached to it. Hence, the alert message states that the given dropdown list is not a multi-select. HTML <!DOCTYPE html> <html> <head> <!-- Basic inline styling --> <style> body { text-align: center; } p { font-size: 25px; font-weight: bold; } select { display: block; margin: 0 auto; } button { margin-top: 5rem; cursor: pointer; } </style> </head> <body> <h1 style="color: green">GeeksforGeeks</h1> <p>jQuery - Detect if a dropdown is a multi-select</p> <select id="dropdown"> <option value="Geek 1">Geek 1</option> <option value="Geek 2">Geek 2</option> <option value="Geek 3">Geek 3</option> <option value="Geek 4">Geek 4</option> </select> <button class="check-multi-select"> Click me to check if dropdown is a multi-select </button> <script src= "https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"> </script> <script type="text/javascript"> $(".check-multi-select").click(function () { if ($("#dropdown").prop("multiple")) { alert( "The given dropdown IS a multi-select" ); } else { alert( "The given dropdown IS NOT a multi-select" ); } }); </script> </body> </html> Output: Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?
https://www.geeksforgeeks.org/how-to-detect-if-a-dropdown-list-is-a-multi-select-using-jquery?ref=asr10
Languages
How to detect if a dropdown list is a multi-select using jQuery?
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0107647404, 0.0120470608, -0.0249040071, 0.034258198, 0.0290749222, 0.0123170232, 0.0149559025, 0.00669506099, -0.00839582272, 0.0166026726, 0.006468968, -0.0380916595, 0.0175205432, -0.0448677093, -0.0131741529, -0.0273201689, -0.0272526778, -0.00581093505, -0.0107309949, 0.025376441, 0.00239422685, -0.00423165644, -0.038334623, 0.0171560943, -0.0175205432, 0.0228387974, 0.0197747275, 0.0244315732, -0.0152528612, 0.0357429869, 0.00136583974, 0.0044037574, -0.00420466, -0.0339072458, -0.0190188326, 0.000611633, -0.0245260615, -0.0324764475, -0.0313156098, 0.0143079935, 0.0135318525, -0.0162382238, 0.00727548, -0.021232523, 0.000858817075, 0.0271581914, 0.0270367097, -0.0416281633, -0.0311266351, -0.0016113366, -0.000406208652, 0.0483232252, 0.00807186775, 0.0262268223, 0.0266992562, -0.0186678823, -0.0258083809, -0.0140785258, 0.0145374611, 0.0211110394, 0.022136895, -0.0173180718, 0.00592566887, -0.0207465906, 0.0322064832, -0.00197578548, -0.00290378043, -0.0159007702, -0.00539924297, 0.0412232205, 0.00328172743, 0.0057603172, -0.00970513932, -0.0172100868, -0.0156848, 0.0117905969, -0.0207195953, 0.0147939259, -0.016629668, 0.0265237801, -0.0188028626, -0.0079571344, -0.0246340465, -0.0145779559, -0.0288049616, 0.0214889869, -0.0229872763, -0.0260108523, 0.042573031, 0.0117636006, -0.0144564733, -0.00466359593, 0.033934243, 0.0464064926, -0.0325844325, 0.0111764325, 0.0270367097, 0.0143754845, -0.0300467871, 0.017817501, 0.00288690766, 0.0271581914, -0.00492680911, 0.000602774846, -0.0203821417, -0.0386315845, -0.000962583756, 0.0197747275, 0.00367485965, 0.00198253454, 0.0178714935, -0.00911122281, -0.0289939344, -0.0172640793, -0.0260513462, 0.0418441333, -0.054235395, -0.0305327177, 0.010994208, -0.00384021155, 0.000976081879, -0.000960052887, -0.0247555282, 0.0264427923, -0.0592296943, 0.0305867102, 0.000316361897, 0.00282785343, 0.048836153, -0.0305057224, 0.00143079937, 0.0317745432, -0.017709516, -0.0244180765, 0.0175745357, 0.0157387927, 0.0266452637, 0.00988736376, -0.0207870845, -0.0136128413, -0.0387395695, -0.0485931858, 0.034258198, 0.0633871108, 0.0142270047, 0.0312076248, -0.00728897797, 0.0624152496, -0.000836882624, -0.00336440327, -0.01112244, -0.0265237801, -0.00304213585, 0.00868603215, -0.00219681696, 0.0303167496, 0.0186813809, 0.0133968713, 0.00861854106, -0.017021114, -0.0016906379, 0.00551060215, 0.0178040043, 0.0116893612, -0.0317205526, -0.00520689506, 0.00292571471, -0.0274686478, -0.037281774, 0.0263483059, -0.0413042083, 0.0242291018, -0.00445100106, 0.0203281492, -0.0037592228, 0.00725523243, 0.0454346277, 0.00453198934, 0.0407102928, 0.000545829709, -0.00385370967, -0.00453873863, -0.0236756802, -0.0078424, 0.0372277796, -0.00135318527, 0.0352570564, 0.00475133397, -0.0195722561, -0.00450499309, -0.0451646671, 0.0201796703, 0.0691103116, 0.0405483134, 0.00206858502, 0.00440713204, -0.0541814, 0.0316665582, -0.0299927946, 0.0105420221, 0.0374167524, -0.0352570564, -0.0346631408, 0.0318825282, 0.0409802534, 0.000136141069, -0.0075251949, -0.0122967754, 0.0484852, 0.0151313785, -0.0180874635, -0.0380376652, 0.0107849874, 0.00853080396, -0.0030455105, 0.00329522532, -0.000452608423, -0.00304719782, -0.000686294399, -0.00241109938, 0.0143754845, 0.0360399447, -0.0451106727, 0.00118867704, -0.0869278088, -0.0126814721, 0.0256329048, -0.00672543189, -0.0162787177, -0.0220559072, 0.0128434487, -0.0299927946, -0.0577719, -0.00306744478, -0.0049808016, 0.00830133632, 0.00440038275, 0.0017463176, -0.00467371941, 0.0621452853, 0.0276711192, -0.00837557577, -0.0235407, -0.0156038124, 0.0557741784, 0.0412232205, -0.0117770983, -0.00872652605, 0.0137883164, 0.0521566868, -0.0188163612, -0.00701226667, -0.00902348477, -0.016521683, 0.0276981164, -0.0176690221, -0.0142135071, -0.0017564412, 0.0117636006, -0.0219884161, 0.0134913586, 0.0123710157, -0.0465684682, 0.0120538101, 0.0274686478, 0.00334246876, 0.0378216952, -0.0681384429, -9.93903595e-05, -0.0184654109, 0.0340692215, -0.045704592, -0.00806511939, 0.0572319739, 0.0031113138, -0.0122967754, -0.0134913586, -0.0413312055, -0.00766692497, -0.0117298551, 0.00587167684, 0.0311806276, 0.0192483012, 0.0298578124, 0.0308296774, -0.0012570112, 0.01326189, 0.0261053387, -0.0325574353, -0.0065162112, -0.0190593284, -0.00562196178, 0.012182042, 0.00935418811, 0.0113046644, 0.0126072317, -0.00350950798, 0.0694882572, -0.0266452637, -0.00699201971, -0.0274551511, -0.028292032, -0.0215699747, -0.0131876506, -0.00388745498, 0.0232032463, 0.0233517252, -0.00147973, -0.0057906881, -0.0298308171, -0.00626987079, 0.00840932, -0.0405753106, -0.0270367097, -0.0224338546, 0.0234327149, 0.0438148566, 0.0019234803, 0.0280220713, -0.0315855704, 0.0115476307, -0.0206791, -0.0184384137, 0.0395764522, 0.0295878518, -0.00257138954, -0.0612814054, -0.0303977374, -0.0100898352, 0.00311300089, -0.0331783481, 0.000464419252, 0.00867253356, -0.00828108843, 0.0136668338, -0.0286969766, 0.0262808148, -0.0499969907, -0.0237431712, 0.0509148613, -0.0213810019, 0.0185463987, 0.00566245615, -0.0119593227, 0.00692452909, -0.0383616202, 0.00921920687, -0.00120386248, 0.0314235948, 0.0449486971, 0.00135487248, 0.0109604634, -0.019720735, -0.0271986853, 0.0131134111, 0.00777491, -0.00264900364, -0.021556478, -0.0476483181, 0.00167376525, -0.00290209311, 0.00580081157, -0.0202606581, -0.0224878471, 0.00458935648, -0.0119593227, -0.00792338885, -0.0323144682, 0.0296958368, -0.0136600845, 0.00407980289, -0.00819335133, 0.0130661679, 0.0751034692, -0.048944138, -0.00921920687, 0.0043025217, 0.00543298805, -0.0368768275, -0.00406293, -0.0234597102, 0.0527236052, -0.0355540141, 0.0509958491, 0.011426148, -0.019936705, 0.064143, -0.0158467777, -0.0324494503, 0.00679967133, -0.0123372702, 0.0535064973, 0.0178849921, 0.00998859946, -0.00878051855, -0.00489981286, -0.00906397868, -0.0184519123, -0.00297633256, -0.00690765632, 0.0288319569, -0.00369848148, -0.00455898559, -0.0317475498, -0.0236621816, -0.0394414701, -0.0374977402, -0.0199906975, -0.00563546, 0.0309376623, -0.00348588615, 0.0205441192, -0.0282380395, 0.0231897477, 0.00824734382, 0.0283190291, 0.0275361389, 0.0440038294, 0.0144429747, -0.0293178894, 0.0578258932, -0.00130931637, -0.0039212, -0.000534862513, -0.0350410864, 0.00734297046, 0.00376934651, 0.0307756849, 0.0302897524, -0.0199502017, 0.00801787525, -0.0186543837, 0.00894924533, -0.0491061136, -0.00111528113, 0.0198827125, 0.0265102834, 0.0177365132, -0.0300467871, -0.0318825282, -0.00587167684, -0.00225755852, -0.00917196367, -0.00503141945, -0.0253899395, -0.00414054422, -0.045920562, -0.0144159785, 0.00377609557, 0.0160357505, -0.00803137384, -0.0357969813, -0.0424380489, -0.00986711681, 0.0141055221, -0.000191609855, -0.0022018787, -0.00320242601, 0.0135520995, 0.00028831113, -0.0204361342, 0.0374437496, -0.0345551558, 0.0275631342, -0.0223123711, 0.00828108843, -0.0204631314, 0.00457585836, -0.0164541919, 0.000363183441, 0.0153338499, -0.0426270217, 0.046028547, 0.019720735, 0.0162112266, 0.0179929771, 0.00212763925, 0.00507191382, -0.0138490582, 0.00969164073, 0.0416551605, 0.018532902, 0.0212865155, 0.00850380771, 0.0198827125, -0.0190863237, 0.0500509813, -0.000806933735, 0.0218669344, -0.0024667792, 0.0139300469, 0.00636773231, -0.0363639, 0.0336642787, 0.00933394115, 0.00453536399, -0.0148344198, -0.0378756896, 0.0343391858, 0.012613981, 0.0193157922, -0.00343358098, -0.035635002, 0.0566380583, 0.0344471708, -0.0209085681, -0.0347711258, 0.0043565142, 0.00246846629, -0.0482962281, -0.0343121886, -0.00447462266, -0.0071944911, -0.0144699709, 0.0305867102, -0.00217150804, 7.46086807e-05, 0.02004469, 0.00102923065, 0.00979287643, 0.0561521277, 0.00456573488, 0.00162567827, -0.0124520035, 0.00269624684, 0.0146994386, -0.026091842, 0.00173619401, -0.0196937378, -0.0393604822, -0.0291829072, 0.00379971717, 0.00138777413, -0.00164845632, -0.00831483398, -0.0292908922, -0.0375517346, 0.0133091342, -0.00181043369, 0.0196262486, -0.0355810113, 0.0101100821, -0.0528315902, 0.017925486, 0.00150925713, 0.016913129, -0.00670181029, -0.0147804273, 0.0161302388, 0.00832158327, 0.0363639, 0.00727548, 0.048512198, -0.0244180765, 0.0225013457, -0.0142135071, -0.0245395582, -0.022960281, 0.020949062, -0.0466494597, -0.00535199931, -0.00633061212, 0.016521683, 0.0158062838, 0.0304247346, -0.0200311914, 0.0265642758, 0.00960390363, -0.0187893659, -0.0112776682, -0.00490656216, -0.0106500071, 0.0101438276, -0.0244450718, 0.0212055258, 0.0223123711, 0.0255924109, -0.00726198172, -0.00336102862, -0.00363099086, -0.0196937378, -0.0086590359, -0.00888175424, -0.00409330102, 0.0127152167, 0.0198017228, 0.00841607, -0.00477495557, -0.0663027, 0.0238241591, 0.0106770033, 0.0235002041, 0.00393807283, 6.12292069e-06, -0.0156848, 0.0144564733, -0.0088007655, -0.0157657899, -0.00730922492, -0.0204631314, -0.000763064891, 0.0117973462, 0.0156578049, 0.00742395921, 0.0187488701, -0.0187623687, -0.0390905179, -0.00218331884, 0.00329185091, 0.0219614208, -0.0184654109, -0.0290479269, 0.0173720643, -0.0165081844, -0.00231998716, 0.00832158327, -0.00533850165, 0.000246551353, -0.0147939259, -0.012721966, 0.0150908837, -0.0225688349, 0.0155498199, 0.00896949228, 0.00809211563, -0.0239861365, 0.0107647404, -0.00508878659, 0.00458598183, -0.0156982988, -0.032719411, 0.00510903355, 0.0136533352, 0.00565233221, 0.00297464547, -0.00196903641, 0.0226498246, -0.00669506099, -0.0327464081, 0.0335832909, 0.0235137027, 0.00300670345, -0.0316935554, 0.0925970152, -0.0159952566, 0.0190323312, -0.0235137027, 0.0309106652, 0.0484312102, -0.0301547721, -0.0215024855, 0.0171156, 0.0201121792, -0.00280929357, 0.00167376525, 0.00469734147, 0.00134643621, -0.0271041989, 0.024958, -0.0153473476, -0.0423570611, 0.0108862231, 0.00822034758, -0.0128367, 0.0088007655, -0.0411152355, 0.0221503936, 0.011318163, 0.0113249123, 0.0176420268, 0.0112776682, -0.0186273884, -0.0149424048, -0.00312649901, -0.00115577539, -0.0380376652, -0.0158467777, 0.0265777726, 0.0111291893, -0.00398194185, -0.000696418, 0.0164676905, 0.0434639044, -0.00288690766, -0.0279410817, -0.000869784271, 0.0159952566, 0.0242291018, -0.0189783387, 0.000515880762, -0.0309376623, -0.00832158327, 0.0385775901, 0.00760618364, 0.00515290257, -0.0223123711, -0.00595941441, -0.0202606581, -0.0216914583, -0.016305713, 0.0330163687, 0.00776816066, -0.022852296, 0.0128636966, -0.0151448762, 0.0144429747, 0.00226093293, 0.0293988772, -0.0139165483, -0.00297464547, 0.0319635198, 0.0403593406, 0.0065398328, 0.0521296896, 0.0101168314, -0.0157522913, 0.022352865, -0.0219209269, -0.0126477266, -0.0208140817, 0.0135925943, -0.00938118435, -0.000796388311, -0.0174530521, -0.0129109398, -0.0101505769, 0.0102990558, 0.0270772036, -0.0152933551, -0.00598641066, -0.00393807283, 0.0355000235, 0.0182494409, -0.00912472047, -0.064790912, 0.0222988725, 0.0157792866, 0.00850380771, 0.0127759585, -0.00462985085, 0.0449217, -0.0247150343, 0.00302357599, 0.0334753059, -0.0172235854, -0.00184249168, 0.00703251408, -0.00580418622, 0.00919221062, -0.00206858502, 0.0180064756, 0.00219681696, 0.0352840535, 0.000294427475, -0.0132956356, -0.00698527042, 0.00329353823, 0.0348251164, 0.0318015404, 0.0260243509, -0.0314775854, 0.0155498199, -0.0136870807, -0.00773441559, -0.00267431256, -0.00283797714, -0.0308566727, 0.00886150729, 0.0139975371, -0.0130661679, 0.0313156098, 0.0145374611, 0.0308566727, 0.0133158825, 0.000446703, 0.00239591394, -0.0129041905, -0.0115273837, -0.0159007702, 0.00671868306, -0.0140920244, 0.0155498199, -0.00672205724, -0.0269152261, 0.0250929818, -0.00779515691, 0.0141730122, 0.0480802581, 0.0369848125, 0.0309106652, -0.034258198, 0.00441050669, 0.00459273113, 0.0259568598, 0.00619900599, -0.0054836059, -0.0132281454, -0.0175340418, -0.0190998223, -0.0201796703, -0.0118175931, -0.0116218701, 0.00292571471, 0.00389420404, 0.012182042, -0.00259501114, -0.00330872345, -0.0164676905, 0.0190053359, -0.00723498547, -0.00791664, -0.0299118049, -0.0191943087, -0.00654320745, 0.0198422167, -0.0153203513, 0.0112641705, 0.00703926291, -0.000803559204, 0.0270502064, -0.011230425, -0.0220559072, 0.0171156, -0.0211515334, 0.00468721753, 0.0169671215, -0.00889525283, -0.0428429917, -0.00606065, 0.00503141945, 0.0211785305, -0.0086117927, -0.0145509597, 0.0266992562, -0.0256329048, 0.0132213961, -0.00817310438, 0.0188973509, 0.0205711164, 0.0511578247, -0.00697852159, 0.0037592228, -0.0210975409, -0.0329893753, 0.00569957588, -0.00707975728, -0.00260850927, 0.0120268138, 0.0233922191, 0.0205441192, 0.011986319, -0.00567257963, -0.00949591864, 0.0231627524, 0.0154418349, 0.0176150296, -0.00424515456, 0.00604377734, 0.0188973509, 0.00397519255, -0.00201965426, -0.0176150296, -0.0224878471, 0.0234327149, 0.012161795, 0.0198962092, -0.0186813809, -0.0440038294, -0.0342312, -0.0116893612, -0.00743745733, 0.000712868816, 0.00570295053, 0.0276171267, 0.00776141183, -0.0294528697, -0.0490251258, -0.0174800493, -0.0169401243, -0.0255924109, 0.0476483181, -0.00298476894, -0.0309106652, -0.0320985, -0.0167106576, 0.0186678823, -0.0214754883, -0.0235407, 0.0229467824, 0.00543298805, -0.0166161694, -0.0291289147, 0.0207465906, -0.0310186502, 0.0106837517, 0.0378216952, -0.0103935422, -0.0160222538, -0.0210705455, -0.00502467062, 0.0229332838, -0.0164811891, 0.0158062838, 0.0258893706, 0.0180874635, -0.0161032416, 0.0201796703, 0.0393604822, 0.0235541966, 0.0359319597, 0.0198557153, 0.00559496554, 0.00712025166, -0.0147939259, 0.0520757, -0.0094554238, -0.0154013401, 0.0145104649, -0.00844981521, -0.00506516453, 0.00105200871, -0.0152393635, 0.0127692092, 0.02980382, -0.0188163612, -0.0110279536, -0.0199097078, 0.00864553731, -0.0119593227, 0.0125262439, -0.00207533408, 0.0248365179, 0.019936705, 0.0068165441, -0.00632048864, -0.0101370784, 0.0146994386, 0.0251604728, -0.0303437449, -0.00990086142, 0.0313156098, 0.0400623828, -0.026091842, 0.0039009531, 0.0321254954, -0.018208947, -0.0492950864, 0.0168186408, 0.00171172875, 0.0374707468, 0.0142135071, 0.00731597422, 0.000825915427, 0.023932144, -0.00959715433, -0.0080516208, -0.0147939259, 0.0141730122, 0.0217454508, 0.0227713063, -0.0180199724, -0.0175340418, 0.00688403472, 0.00622262759, 0.0452726521, 0.0205306206, 0.00605052663, -0.00247015362, -0.0065229605, -0.0151043823, -0.00673893, -0.00558821624, 0.0330163687, 0.0335293, -0.00723498547, 0.0421950817, 0.0254709292, -0.0310726427, 0.0164811891, 0.0141865108, 0.00892899837, -0.00603027921, -0.00407305406, 0.016805144, 0.0331783481, 0.0261593312, 0.0267262515, -0.0620373, 0.00342008285, 0.0170886032, 0.0135318525, -0.033826258, -0.0157657899, 0.016629668, 0.00756568927, -0.0226768199, 0.0284810066, -0.00386383315, -0.00709325541, -0.00502467062, -0.0262943134, -0.02246085, -0.00810561329, 0.0319905132, 0.00642847363, 0.0128569473, -0.0195182636, 0.0229197852, 0.016697159, -0.00209726836, -0.00278061, -0.0237026755, -0.0112911668, -1.35376522e-05, 0.00693802722, 0.0142135071, 0.00942167919, 0.0224068575, 0.0302357599, -0.00606402475, 0.0102990558, -0.0134643624, -0.00867253356, -0.0203416478, 0.00270637055, 0.00516302604, -0.00654995674, -0.0277791042, 0.0168456379, 0.0178849921, 0.0171425957, 0.000453030225, -0.00892224908, 0.0158467777, 0.0184654109, 0.00766017567, -0.0128232017, -0.0378486924, -0.00221875147, -0.0240266304, 0.0194102786, -0.00452861516, -0.0064925896, -0.00220525335, -0.0294798668, 0.0199232064, -0.0250794832, 0.00591217121, -0.000734381378, -0.0114801405, -0.0291289147, -0.0235407, -0.000333656353, -0.00801112689, 0.0186948776, -0.0128906928, -0.0143349897, -0.00971863698, 0.00461635273, 0.00741721, -0.00869278144, -0.0333943181, -0.00660057459, 0.0420870967, 0.0105757667, 0.00521701854, -0.0158332791, 0.00986036751, 0.0142809972, 6.13214797e-05, 0.00491668563, -0.00949591864, -0.0111089423, -0.0093136942, 0.042573031, -0.0578258932, 0.000945711159, 0.00613151537, 0.000223773313, -0.000713712419, 0.0278330967, -0.0146184498, 0.0231087599, 0.00899648853, -0.0146454461, -0.00689078355, 0.00759943435, 0.00310962647, -0.0162247252, 0.0136195906, 0.00415404234, 0.0208950695, -0.00744420616, 0.0198422167, -0.0208005831, -0.0104205385, 0.00634073606, 0.077695109, 0.0218534358, -0.0211515334, -0.00304213585, -0.0067693009, -0.0185463987, -0.0178040043, 0.00636098301, 0.0239861365, -0.0159007702, 0.0131066618, -0.00770067, 0.00335259247, 0.0286159869, -0.0157657899, -0.000345467182, -0.00520352041, 0.00452861516, 0.0291289147, -0.0325574353, -0.00411017379, 0.0171830896, -0.0102990558, 0.00111949933, 0.0311266351, 0.000816635496, -0.0089155, 0.0120808063, -0.0247285329, -0.00766017567, 0.00779515691, 0.00192854204, 0.00979287643, -0.00472096307, -0.0148209222, 0.0140785258, 0.0284270141, 0.0188703537, -0.0243235901, -0.00038279788, -0.0129244374, -0.0266047698, -0.00843631662, 0.0332593359, -0.014429477, -0.00575019373, 0.00307756849, -0.00689078355, -0.00690428168, 0.00151853706, -0.00789639261, -0.023972638, -0.00913147, -0.00402918505, -0.0169941168, 0.0278061014, -0.0185194034, -0.0139435446, 0.0352840535, -0.0405483134, -0.0274416525, 0.00183742982, 0.0142944958, -0.0254169367, 0.0183709245, 0.00861854106, -0.0245395582, 0.002100643, -0.0272931736, 0.00591554539, 0.0222853757, 0.00537562137, 0.0122360345, -0.0053891195, -0.00345889, -0.0210975409, 0.00118192798, 0.0144159785, -0.0158197824, -0.0230007749, -0.00276373746, 0.0212595183, -0.00980637502, 0.0104475347, -0.0232032463, -0.00244484469, -0.00900323782, -0.00697852159, -0.023864653, -0.00458598183, -0.00543973735, -0.0265507773, -0.00657695299, 0.000681654434, -0.00504829222, 0.011966072, 0.0223258696, 0.0383616202, 0.00157674763, -0.018033471, 0.017817501, 0.0164271966, 0.000544564275, 0.00683341688, -0.0307756849, -0.00532837771, 0.0220289119, 0.000268063974, -0.00340995938, -0.000493524538, 0.0364718847, -0.00855105091, -0.0208815727, -0.00377272093, -0.00834857952, 0.0103597976, -0.0194912665, -0.00474121, 0.0267667472, 0.0146589447, 0.00753869303, 0.0110144559, 0.0185059048, -0.0054127411, 0.0019589127, -0.0347171314, 0.012074057, 0.00555109652, 0.000604462111, 0.0335023031, 0.00208714488, 0.00490656216, -0.00755894, 0.0095566595, 0.00044543753, -0.0132348938, -0.00949591864, -0.00208039582, -0.00927319936, 0.0245665554, -0.00923945475, 0.00834183, -0.0207600892, 0.033826258, -0.00884126, 0.00923270546, 0.0067693009, -0.00338971219, 0.0035466277, -0.00453198934, -0.011986319, -0.0172100868, 0.0164271966, 0.0180739649, 0.0269152261, -0.0446517393, 0.024040129, -0.0181414559, -0.00675917743, 0.00702576479, 0.0108119836, 0.019720735, 0.00656682905, 0.0110886954, -0.00777491, 0.00423503108, -0.0284270141, -0.0144159785, -0.00514952792, 0.0128704449, -0.000767283, -0.017831, 0.0114733912, -0.0205981117, 0.0107242465, 0.00242797215, 0.0201931689, 0.0219074283, 0.00981987268, -0.00886825658, -0.0126544759, -0.0121550458, 0.00726873055, 0.0152528612, -0.00718774227, 0.0129784299, 0.00490993634, -0.0119998176, -0.00326485466, 0.00826084148, 0.001012358, 0.00702576479, 0.0114598926, 0.0303977374, 0.00775466254, 0.00406293, -0.0071944911, 0.00315012084, 0.00555109652, 0.045380637, -0.00204158877, 0.0283460245, 0.0180604681, 0.0153068537, -0.0080448715, -0.00965789612, -0.0271851886, 0.0159142688, 0.00390770193, -0.0219074283, 0.00424515456, -0.0169536229, -0.000895936857, -0.0199097078, -0.00768042309, 0.0248905104, 0.00179693557, -0.0137680694, 0.00499429973, -0.011534133, 0.0126477266, 0.0352300592, -0.00422490761, -0.00320073869, -0.00526763638, -0.00989411306, -0.0115071367, -0.000639894628, -0.00206183596, 0.00568607775, 0.00816635508, 0.0177770071, 0.0252819546, 0.0287239719, 0.00693127792, -0.00605390128, -0.00532837771, -0.0278061014, -0.00799088, 0.00197241083, -0.00667143939, 0.035419032, 0.0072484836, 0.0220829044, 0.0307486877, -9.38013e-05, -0.00494705653, 0.0047040903, -0.00631374, 0.0212190244, 0.00988736376, -0.021016553, -0.00182055717, -0.0106567554, 0.0025916365, -0.0183439273, -0.00619563134, -0.00824059453, -0.0338802487, -0.046028547, 0.0277521089, 0.00421815831, 0.00213945, -0.0202471614, -0.0206925981, 0.00954991113, -0.0102990558, 0.0261323359, 0.00784914941, -0.0201796703, -0.012917689, 0.0205846131, 0.00180705916, 0.0192483012, 0.00232673623, 0.000349052629, 0.0276981164, -0.00245496817, 0.0152528612, -0.00869278144, -0.0272526778, -0.00826759078, 0.0248635132, 0.0237431712, -0.0236486848, -0.00669843564, 0.00645884452, 0.0113451593, 0.0150368912, -0.000633567397, 0.0212595183, 0.0181954484, -0.00477158092, 0.00736321742, 0.0359859541, 0.0257003959, 0.00758593623, 0.00435988884, 0.00532837771, -0.0144834695, 0.00948916934, -0.0137275755, -0.0134576131, 0.012917689, 0.0229062885, 0.0058143097, 0.000696418, 0.0133766243, 0.0202741567, -0.00905723, -0.0109064709, -0.0391175151, -0.0100290934, -0.0313696, -0.0198422167, 0.00298814359, 0.00992110837, 0.00138186873, 0.00951616559, -0.00324966921, -0.0017564412, -0.0170076154, -0.0302897524, -0.00290040579, 0.00580081157, -0.00601678109, -0.0219614208, 0.00273505389, -0.0163597055, -0.0253899395, 0.00803137384, 0.00280591915, -0.0459745526, 0.0205171239, 0.0176555235, 0.0163597055, -0.00764667755, 0.00228455476, -0.0086050434, -0.00688740937, -0.0392794907, -0.00156240596, -0.0144159785, 0.0157792866, 0.0204361342, -0.00710000424, -0.00448812079, -0.0238106605, -0.0177500118, -0.00577044068, -0.00811911188, -0.0321524926, -0.00137680699, -0.00234867074, -0.00731597422, 0.0271041989, 0.013369875, 0.00910447352, 0.0107174972, 0.00538237, 0.0168321393, 0.00613151537, -0.0141595146, -0.00991436, 0.0047817044, -0.025767887, 0.0100830859, -0.00117011718, -0.000798919238, 0.00320411311, 0.0047277119, -0.00480870064, -0.0242695976, -0.0051056589, -0.0352300592, 0.00919896, 0.0110751968, 0.0156173101, -0.0112169273, 0.00834857952, -0.00386383315, 0.00660732342, 0.00246171723, -0.00116336811, -0.00464672362, 0.00778840808, -0.014361986, 0.0133158825, 0.00410679914, 0.00753869303, -0.00316530606, 0.0034116467, 0.0257408898, -0.00408992637, -0.0202741567, 0.0157522913, -0.0284810066, 0.0147939259, -0.00527438521, 0.000517989858, 0.0313426033, 0.0177770071, 0.000265533075, 0.00585480407, 0.0149963973, -0.0145104649, 0.00265406538, -0.0445977449, 0.00419791136, -0.024040129, 0.00452524051, -0.00754544185, -0.0168996304, -0.00801787525, -0.00137511967, 0.00233854703, 0.0279140864, 0.0525346324, -0.0128097041, 0.00771416817, -0.0239861365, -0.0229197852, -0.0224743485, -0.010690501, 0.0106635047, -0.00350275892, 0.012398012, -0.02004469, -0.0152798574, 0.0180064756, 0.00992110837, -0.00737671554, -0.00504491758, -0.00521701854, -0.0252549592, -0.0207465906, 0.0173450671, 0.0104070408, -0.00144261017, 0.00730247609, 0.0039245747, -0.00830808468, 0.000782468414, 0.000808621, 0.0033002873, 0.0175745357, 0.0126814721, -0.00462985085, 0.016521683, 0.0123305209, 0.0189378448, -0.00449149497, -0.0234867074, -0.00253089517, -0.0146319484, 0.0136330882, -0.00326822931, -0.0203281492, 0.00723498547, 0.0127557116, -0.00905048102, -0.0251334757, -0.00435313955, -0.00542623922, -0.006468968, 0.00687391125, 0.0162247252, 0.00631711399, 0.0171156, -0.00948242, 0.00968489237, -0.0133563774, 0.0174125582, 0.0109874597, 0.000385328778, 0.00244147, -0.0423840582, -0.000819166366, -0.0165621769, -0.00655333092, -0.00298983068, 0.0257273931, 0.00976588, 0.0242156051, 0.0030336997, 0.0332323387, 0.0123777641, 0.0190863237, 0.0086050434, 0.0120268138, 0.0101370784, -0.0147399334, -0.011858087, 0.00908422656, 0.00336102862, -0.00802462455, -0.00511578284, 0.0245260615, -0.0163192116, -0.00639135391, 0.00285316235, 0.0234057177, 0.0067456793, -0.0301277749, 0.0134171182, 0.00872652605, 0.00512590632, 0.0132348938, 0.00763317943, -0.000236638691, 0.0100290934, -0.0146994386, -0.0179659799, 0.0257543884, 0.0326924175, -0.00113552832, 0.00738346484, 0.00720798923, 0.0116961095, 0.00304213585, 0.00240772497, 0.00933394115, 0.00490318751, 0.00500779785, 0.00321423681, 0.0047108396, -0.0305867102, -0.00776141183, 0.00122242235, -0.00490993634, 0.00716749486, 0.0123237716, -0.00195047655, -0.0178714935, -0.0217859447, -0.0152123673, 0.00414391886, -0.0036006202, 0.0146454461, -0.000986205414, -0.00401906157, -0.00301176519, -0.0145779559, 0.00454886211, -0.0128232017, -0.00384358596, 0.0104812803, -0.016913129, -0.00657357834, -0.0133968713, 0.00313324807, -0.00992785767, -0.0360129513, 0.0049335584, -0.00298308162, 0.00847681146, 0.0110414522, 0.00602015574, -0.0182764381, 0.025983857, 0.00589192379, -0.00520014577, 0.0079098912, -0.0135251032, -0.0116758626, -0.00837557577, 0.0086117927, 0.0196262486, 0.00443412829, -0.00964439753, -0.00218500616, 0.0110751968, 0.00971863698, 0.00520689506, 0.0116961095, 0.0202336628, -0.0169806182, 0.0152123673, -0.0112844175, -0.0303977374, 0.00792338885, 0.0205711164, 0.0138085634, 0.0163327102, -0.013498107, 0.0138153126, -0.00277723558, 0.0146859409, -0.0145104649, -0.00492006028, 0.0117905969, 0.0139840394, -0.00871977769, -0.00216475897, -0.0115948739, -0.0113451593, -0.0224473532, 0.0240266304, -0.00436663767, 0.00405618129, -0.0133226318, -0.017817501, -0.000836460851, -0.0120403115, 0.0108794747, -0.00730922492, -0.00643184828, -0.00798413064, 0.000656345452, 0.00530813076, 0.0240806229, -0.00462310156, 0.0112236766, -0.0223258696, 0.0210840441, -0.00144345383, 0.0174800493, -0.00110431388, 0.00636098301, -0.00929344725, 0.00975238252, 0.00812586, -0.0218939297, 0.00690765632, 0.00272155576, -0.00212595193, 0.0238376576, -0.00581093505, -0.0275496375, 0.0142809972, -0.035662, 0.0173045732, -0.00869278144, 0.00654320745, -0.00973213557, 0.00603365386, -0.010474531, -0.0178444982, -0.022852296, 0.00275023934, -0.00680979528, -0.00429239823, -0.0164002012, -0.00514615327, 0.00834857952, -0.00756568927, -0.00545323547, -0.0129041905, -0.0253494456, -0.00256970222, 0.00360736926, 0.0159142688, -0.0231222585, -0.0058615529, 0.0218669344, -0.012161795, 0.0124452552, 0.00417091511, -0.00631374, -0.00210907916, 0.00774116442, 0.00411017379, 0.0254844259, -0.00319736404, 0.0252549592, -0.0135588488, 0.00942842755, 0.00194035296, -0.0292099044, -0.00938793365, 0.0120065669, 0.00896949228, -0.0183304287, 0.0138760544, -0.0065972, 0.0225823335, 0.023176251, 0.023068266, -0.0164271966, 0.00507528847, 0.00317036803, 0.00400556345, 0.0050044232, 0.0021124538, 0.0172100868, -0.0142135071, 0.00848356076, -0.0105150258, 0.00291390391, -0.00867928285, -0.00766017567, 0.0172640793, 0.000952460221, -0.00129666191, 0.0208950695, -0.017817501, -0.00948242, 0.00428227475, -0.00367485965, 0.00815960579, 0.0305867102, -0.00894249603, -0.00574344443, 0.00292402739, -0.0176690221, 0.0130121754, -0.00253426959, -0.0109064709, 0.0141730122, -0.000605305773, -0.0197882261, -0.00253933133, -0.0125937341, 0.00367148523, -0.0298848096, -0.00227274373, 0.0094621731, 0.0154823288, -0.00284978794, 0.0239861365, -0.0129851792, 0.00202640332, 0.00582105853, -0.00438688509, -0.0242426, 0.0050111725, 0.0126612242, -0.023864653, -0.00987386517, -0.0210030545, -0.0161167402, 0.0147669297, 0.00615851162, 0.00670855911, 6.26132888e-08, -0.00558146741, 0.0125599885, 0.0042789, -0.00273505389, 0.0134643624, 0.00938118435, 0.00475133397, -0.0122360345, -0.00285316235, 0.0109807104, 0.00636098301, 0.023864653, -0.0101100821, -0.00184080435, -0.00700551784, -0.00318892789, -0.00294090016, 0.0155498199, -0.014361986, 0.00508541195, 0.00316193164, 0.0132213961, 0.0151583748, 0.00568270311, 0.0274281539, 0.0136533352, -0.000622600201, -0.00829458702, -0.021664463, 0.0072957268, 0.00617538393, -0.00614838768, 0.0187893659, -0.0199906975, 0.004427379, 0.0107174972, -0.0151313785, 0.00685028965, -0.0182629395, 0.00952291489, 0.0322604775, -0.00125616766, -0.0108659761, -0.00515627675, 0.00958365574, 0.0288319569, -0.0189378448, -0.028535, 0.00422153296, -0.00930694491, -0.0208815727, 0.0229197852, 0.00668493751, 0.0143889822, 0.008510557, -0.00699201971, 0.016805144, 0.00250052428, 0.00753194373, 0.0431669466, 0.00677942438, 0.0242021065, 0.00634411024, -0.0106095122, 0.00890200213, -0.000716665119, -0.0215699747, 0.00813261, -0.0106432578, -0.016197728, 0.0207735877, -0.00833508093, 0.00226768199, -0.00957015809, 0.0135588488, 0.00524738897, -0.0168996304, 0.0229467824, -0.00107563043, 0.00137174514, -0.0221908875, 0.0178714935, -0.00967139378, 0.0117636006, -0.019221304, 0.0155093251, -0.017709516, 0.0216374658, -0.00675580278, -0.0305867102, 0.00168641983, -0.0190998223, 0.0111696841, -0.0135588488, -0.0164541919, -0.00277723558, -0.0157117974, -0.0365258791, -0.0130999135, -0.0232167449, 0.00505166687, 0.0232302435, 0.00579406274, -0.00792338885, -0.00125869852, 0.0252279621, 0.0220829044, -0.00262369448, -0.0152933551, -0.00273842853, 0.00567257963, -0.0147669297, -0.011534133, -0.00539924297, -0.0250929818, 0.00954991113, 0.00361411832, -0.0297768246, -0.00350613333, 0.0189783387, 0.00727548, -0.0179929771, -0.0318555348, -0.0254034381, -3.66716158e-05, 0.0031113138, 0.00308600487, 0.00462985085, 0.0143889822, 0.00531487959, -0.00356012583, -0.0221099, -0.0171830896, -0.0118040945, 0.0152393635, 0.00250558625, 0.00137090147, 0.0110482005, 0.0178714935, 0.0284000169, -0.00822709594, -0.0163597055, -0.00090606045, 0.00394482166, 0.0124924984, 0.0368228368, -0.00646559335, -0.0112371743, 0.000947398425, -0.019545259, -0.00789639261, -0.0253359471, 0.0243370868, 0.0175475404, -0.0115813762, -0.00235204515, 0.0164811891, 0.0140245333, 0.00365123805, 0.0068401657, 0.0142000085, -0.00046695015, -0.00296620908, 0.000460622919, 0.0151988687, 0.00655670557, -0.00732947234, -0.0115071367, -0.00964439753, -0.0176285282, -0.018640887, -0.00301851425, 0.00420466, 0.011230425, 0.0228792913, -0.0324224532, 0.0200986825, 0.021016553, -0.00748470053, -0.0163327102, -0.00907072797, -0.00309106661, -0.00809211563, 0.00527438521, -0.00107563043, -0.0113991518, -0.00220019137, 0.00118445896, -0.0065938253, -0.0104880296, -0.00130003644, 0.00957690738, 0.000697683427, 0.00716074603, 0.0104407864, -0.0123710157, -0.00163664552, -0.010366546, 0.00293077645, -0.0141055221, -0.0155093251, -0.000708650623, -0.00209051929, -0.00263381819, 0.00399206532, -0.0371467918, 0.00582105853, -0.00321423681, -0.0187893659, -0.0126477266, -0.00619900599, -0.00275530107, 0.00988736376, 0.00407642825, -0.00777491, -0.00630361587, 0.00113215379, 0.00808536634, -0.00192854204, 0.00743745733, -0.0253494456, 0.013801815, 0.00349600986, -0.0141190197, -0.012182042, 0.00231998716, 0.0200311914, 0.0138625558, 0.009266451, -0.00924620312, -0.0315855704, 0.00597966136, -0.00314337178, -0.0271041989, -0.0148344198, -0.013498107, -0.00526426174, 0.0107849874, -0.00647571683, 0.0239456426, -0.0195587575, -0.00106888136, 0.0205441192, 0.0228118021, -0.0328543931, -0.00483569689, 0.00205002516, -0.0109739611, -0.00141223951, 0.00389757846, -0.00600665761, 0.00778165879, -0.00477158092, 0.0159007702, 0.00574681908, 0.0159817599, -0.000292529294, 0.038334623, -0.0037592228, 0.0108794747, -0.0159547627, 0.0274146553, 0.00849705841, 0.0152393635, 8.60504369e-05, 0.00416079164, 0.00601678109, 0.0303437449, 0.0177905057, -0.00499767438, 0.00288184593, -0.0160222538, 0.00629686704, 0.000729741412, 0.00805837, -0.0146184498, -0.00402243575, 0.0100560896, 0.00778165879, -0.0156173101, 0.00732272305, -0.00589192379, -0.00301513961, 0.0210975409, 0.0267937426, 0.0109132193, -0.0128636966, 0.00791664, 0.0137343239, 0.000721726916, -0.00663769431, 0.00685028965, 0.000335554505, -0.00199603266, -0.0139435446, 0.0016906379, 0.0116016231, 0.0144834695, -0.0106365085, 0.0107714897, 0.00551060215, 0.00782215316, 0.00863878895, 0.0344201736, 0.0282380395, 0.0115881255, -0.00657357834, -0.0131876506, -0.0029223403, -0.0384696051, 0.0237296727, -0.0157657899, -0.0187353734, 0.00949591864, -0.00640822621, -0.00996160321, -0.00708650611, 0.00164508179, 0.00823384523, -0.00631711399, -0.00220525335, -0.0316935554, 0.000779515714, 0.0249310043, 0.00261019659, -0.00106128864, 0.00356012583, -0.0241211168, 0.00290546753, -0.000714556081, -0.0116691133, -0.0175745357, -0.00734297046, -0.0276171267, 0.0131269097, 0.00625299802, 0.0246475432, -0.00778165879, 0.0305327177, -0.00357699837, 0.00324966921, 0.0175205432, 0.00900323782, -0.00173619401, 0.0341772065, -0.00580418622, 0.00341502111, -0.00886825658, -0.0196532439, -0.00824734382, -0.00559159089, 0.017601531, -0.00402918505, 0.0249310043, 0.02246085, -0.0130121754, 0.00525751291, -0.00671530841, -0.00363436528, 0.0049808016, -0.0193697847, -0.000260471279, 0.0193967801, 0.0250389893, -0.0200311914, 0.0296418443, 0.010562269, 0.00384021155, -0.00309106661, -0.0138355596, 0.0269422214, -0.0118108438, 0.00242122309, 0.0280490667, 0.0156173101, 0.0112034287, -0.00927319936, -0.0137410732, 0.0125532402, 0.0139705408, 0.00273674121, 0.0320985, -0.0251604728, -0.0182764381, 0.0042789, 0.0197342336, -0.0168591365, -0.0179794785, -0.0245125629, 0.0291829072, -0.000314885547, -0.0184924062, 0.0126679735, 0.000731850509, 0.0126274796, -0.00585142942, -0.0118648363, 0.00477158092, 0.0187353734, -0.0119323265, -0.0188028626, 0.0181414559, 0.00234698341, 0.00153119152, 0.00342177018, 0.0223933607, 0.00689753285, 0.0079031419, -0.00761968177, 0.019720735, 0.0218399372, 0.0170616079, 0.0261188373, 0.00826759078, -0.021664463, -0.00145273376, -0.00985361822, 0.00557809277, 0.00374235027, -0.00678279903, 0.000449655694, -0.00168810703, 0.0167376529, 0.00501792133, 0.021124538, 0.00268443604, -0.0185059048, -0.00170835422, 0.0192752965, 0.00570295053, 0.0141325183, 0.0201121792, 0.0126477266, -0.00203483971, -2.44125931e-05, -0.021664463, 0.00730247609, 0.00789639261, 0.0194507726, -0.000705276092, 0.0184789095, 0.00718774227, 0.00925295241, -0.0192887951, -0.0289399419, 0.00348588615, 0.0203281492, 0.0143349897, -0.00958365574, -0.00256632757, 0.00380646624, 0.0177365132, 0.00210401742, 0.00648921495, -0.0166566651, -0.00610789331, 0.00772766629, -0.00238072872, 0.0152798574, 0.01369383, -0.00645209523, -0.00826759078, -0.0169806182, 0.00211582822, -0.0158467777, 0.00861854106, -0.0087062791, -0.0160627477, 0.0121887913, -0.00047285558, -0.00459610531, -0.00747120241, -0.0117636006, -0.0039481963, 0.0146319484, -0.00206521037, -0.00451511703, -0.0238916501, 0.0194642711, -0.0284000169, -0.00481882412, 0.00499429973, -0.0173585657, -0.00175306667, 0.012850198, -0.01490191, 0.00797738135, -0.00248365174, 0.00839582272, -0.0106770033, 0.00986036751, 0.00452186586, 0.0159412641, 0.00259332382, 0.00543973735, -0.0159547627, -0.00766017567, 0.00631036516, -0.0257543884, -0.00378621905, 0.0186678823, -0.0102045694, -0.00351288239, 0.0203146506, -0.0183979198, -0.00143923564, -0.0166161694, -0.00753869303, 0.0229332838, 0.0125802364, -0.010022345, 0.00849705841, -0.00796388369, -0.0108997216, 0.00553084956, 0.00184417889, -0.013498107, 0.0206791, -0.000964271, 0.017601531, 0.0163732041, -5.81051354e-05, 0.0195587575, 0.00846331287, -0.00172775774, 0.0133428788, -0.000731428678, 0.0244990643, -0.0179524831, -0.000392499642, -0.0167106576, 0.00913821906, -0.000610789342, 0.000262580375, -0.0117568513, -0.00452186586, 0.00173788134, 0.00272155576, -0.0132146468, -0.00829458702, -0.00145863916, 0.00348926079, 0.0143079935, 0.000685872568, -0.0399274, -0.00839582272, 0.00994810462, -0.0143349897, 0.00310625182, 0.0142270047, -0.0342851914, -0.00977937877, 0.00597628718, 0.0076264306, 0.0173450671, -0.0046332255, 0.00451849122, 0.00740371179, -0.018208947, 0.010582516, -0.00141645758, -0.0108187329, -0.0165621769, -0.0435718894, 0.00342514482, -0.0117298551, -0.00102754345, 0.00853080396, -0.00159868202, -0.00627662, 0.00319905137, -0.0127017191, 0.0205306206, -0.017129099, 0.00751844561, 0.0158602763, 0.024040129, 0.00911797117, 0.0186273884, -0.0133766243, -0.0261323359, 0.0359049663, -0.00748470053, 0.014254001, 0.00153034786, 0.00247184094, -0.00104610331, 0.0147939259, -0.00172269589, 0.013606092, 0.00403255969, 0.00377947, -0.0187758673, -0.00406293, -0.00451174239, -0.0262808148, 0.0120538101, -0.000702323392, 0.00435988884, 0.00064959639, 0.0162517205, 0.0230007749, 0.00881426409, 0.009266451, 0.00344370469, -0.0218669344, -0.0158197824, 0.00995485391, -0.0151988687, -0.0204766281, -0.0042552785, -0.00280591915, -0.00234698341, 0.0104812803, 0.0268747322, 0.00759943435, 0.0105690183, 0.0123912627, 0.0260243509, 0.00455223676, -0.0177770071, 0.000878220599, -0.0118918326, -0.00867928285, -0.0057366956, 0.00297127082, -0.00147129374, 0.00255789142, 0.00450161891, 0.0309646577, -0.0365258791, 0.00274011586, -0.0126882205, -0.00484919501, 0.0129109398, -0.00847006217, -0.0111426879, -0.0224203561, 0.0138220619, 0.00113131013, 0.038334623, 0.00882101338, 0.0189243462, 0.0157252941, 0.021664463, 0.000202049792, 0.0017066669, -0.0115408814, 0.00122664054, -0.0142944958, 0.0159952566, 0.0246475432, 0.00570632471, 0.00236048154, -0.0174800493, 0.00528788334, -0.0506988913, 0.00570632471, -0.00416754046, -0.000301809254, 0.00441388087, 0.0153878424, 0.0128434487, 0.0087062791, 0.0264832862, 0.0147804273, 0.00521026924, 0.00261694565, -0.00707975728, 0.0103125535, -0.00969839, 0.000959209225, -0.00158940209, -0.0131606543, 0.00412367191, -0.00957690738, 0.000794701045, 0.0152393635, -0.00766017567, -0.0148074236, 0.0251199771, 0.0125464909, 0.0112439236, 0.00855105091, -0.0053891195, -0.0171560943, 0.00852405466, -0.000276922103, 0.0109469648, -0.0159412641, -0.0103800446, 0.00105791411, 0.00842956826, -0.00969839, -0.0223393682, 0.00146370102, -0.0115071367, -0.00632723793, 0.00841607, -0.0185868945, 0.00412367191, 0.00477832975, -0.0228252988, 0.00374572468, 0.00638123043, -0.00294427457, -0.00919221062, 0.00647571683, -0.0141730122, -0.0104880296, 0.00699876854, 0.00774116442, -0.0328004025, 0.00593241816, 0.0147129372, -0.00480195181, 0.0106230108, -0.00626987079, -0.00099801633, 0.00873327535, 0.0286429841, 0.0176150296, -0.0308836699, -0.00813261, -0.0198422167, 0.0168996304, -0.00550722796, -0.00627662, 0.00868603215, -0.0119525744, -0.00521364389, 0.017817501, 0.0140785258, 0.00962415058, 0.00842281897, 0.0314775854, 0.0228252988, 0.00706625916, 0.00589867309, 0.0107849874, 0.0139975371, 0.0151988687, -0.00367148523, 0.00267093792, 0.024472069, 0.00544311153, -0.00712700048, 0.0054363627, -0.0310996398, 0.0072957268, -0.0032581056, 0.00353650399, -0.0165081844, 0.00952966418, 0.0178040043, 0.0067693009, 0.0254709292, -0.00338633754, 0.0135251032, 0.0215699747, 0.0202876553, -0.0302627571, -0.00781540386, -0.0160222538, -0.0246475432, -0.00271986867, 0.0133631257, -0.00185767701, 0.00563546, -0.0103193028, 0.00446787337, -0.00485594431, 0.00753869303, 0.0147534311, 0.000369299785, 0.00312987366, 0.00371872867, -0.000761377625, -0.00845656451, -0.0113519086, -0.00437338697, 0.00645547, -0.0016830453, -0.0111696841, -0.019504765, -0.0133496281, -0.00782215316, 0.00655670557, -0.0151718725, -0.017831, -0.00210401742, -0.00370523054, 0.0209085681, 0.00813935883, -0.00581768434, 0.00759943435, 0.00707300799, -0.00450499309, 0.0147129372, -0.00182224449, -0.00603365386, -0.00456236023, -0.0133158825, -0.00438351044, -0.0118715856, -0.0105015272, -0.00422490761, -0.016413698, 0.0175745357, 0.00724173477, -0.0122360345, -0.0167106576, 0.00422490761, 0.0102720596, -0.0037895937, -7.67177553e-05, -0.0111966804, 6.7648718e-05, 0.00562533643, 0.000194668013, 0.0211785305, 0.00131184724, 0.0053891195, -0.00255282945, -0.00830133632, 0.00892899837, 0.0079098912, -0.0026911851, -0.00862529, -0.0157387927, -0.0188163612, -0.0039212, 0.0220964011, -0.00329016359, 0.0264967848, 0.0217184555, 0.0136195906, -0.0071472479, -0.00186105154, 0.0320175104, 0.00170582335, -0.00940143131, -0.00988736376, 0.00885475799, -0.00521701854, 0.00559834, 0.0194642711, 0.00887500588, -0.0189648401, -0.00706625916, -0.00502129598, 0.0126747228, -0.0135723464, -0.0262403209, 0.0114733912, 0.0147399334, 0.00269455975, 0.00111443747, 0.016413698, -0.0140515296, -0.0150233936, -0.0201256778, 0.00168810703, -0.00399881415, -0.000229046011, -0.00792338885, -0.00763992872, 0.00895599462, -0.000252667698, 0.0169536229, 0.01347786, -0.00308600487, -0.000246129552, -0.011750102, -0.000842788082, 0.00599990878, 0.019936705, 0.0216509644, 0.0166701619, -0.00779515691, 0.0206386056, 0.0057906881, -0.0057670665, 0.0207195953, -0.0147804273, -0.0109807104, 0.00293583842, 0.0197477303, 0.00140717765, -0.00606402475, 0.011230425, 0.0142809972, 0.005183273, -0.00576369185, 0.000941492966, 0.0194102786, 0.0415201783, 0.0127557116, 0.00544986082, -0.0105015272, 0.000840679, -0.022352865, 0.00939468294, -0.0184789095, 0.00560508901, 0.00133546896, 0.00781540386, 0.0198152214, -0.00886825658, 0.0116488663, 0.000528113451, -0.0196667425, -0.0114868889, 0.0196532439, -0.00818660203, 0.0034470791, -0.00938118435, -0.0160357505, 0.0186138898, 9.61212863e-05, -0.0188568551, 0.00468721753, -0.0093136942, 0.00388070592, 0.00251233531, 0.00211920287, 0.00244484469, -0.0129514337, 0.00934743881, -0.014429477, -0.0134846093, 0.0177770071, 0.00144935923, 0.0304247346, -0.00496730348, 0.00726198172, -0.00527438521, 0.00486606779, -0.00669506099, 0.00293921283, 0.012917689, 0.00953641254, -0.0155498199, 0.0101978201, 0.00988736376, 0.0112709198, -0.00421140948, -0.0146319484, 0.0124385059, 0.0132821379, -0.0253224485, -0.0149694011, 0.0174125582, -0.0135790957, 3.40352672e-05, -0.00419116253, 0.0264697876, -0.0116421171, -0.0157792866, 0.00119795697, 0.0109604634, -0.0128704449, -0.00771416817, -0.0269017275, -0.0210435484, -0.0210570469, 0.00474458467, -0.00105791411, -0.0129851792, -0.0158467777, -0.0187623687, -0.000849537144, -0.00188467326, -0.0172235854, 0.0202471614, 0.00283628982, -0.0100155957, 0.00720798923, 0.00603027921, 0.00694477605, 0.00327329105, 0.00834183, 0.027279675, -0.032611426, -0.00861854106, 0.00398869067, 0.0159952566, -0.00510228472, -0.0099683525, 0.0186948776, -0.00403255969, 0.00806511939, -0.0067929225, 0.00923270546, 0.0176555235, -0.032395456, 0.00623612572, -0.0114598926, -0.0150638875, -0.0244045779, 0.00974563323, -0.00477495557, -0.00737671554, -0.00924620312, 0.0306407027, 0.0136533352, 0.000310245552, -0.00691778, 0.0177365132, 0.0163462088, 0.00653645862, -0.00106044509, -0.00921920687, -0.0202876553, 0.023864653, -0.0148344198, -0.00557809277, 0.000321001862, 2.2145332e-05, -0.0210300516, 0.00627999427, -0.0176420268, -0.0159682613, 0.00817310438, -0.0133158825, -0.01369383, 0.0036478634, 0.0153338499, -0.00386720779, 0.0617673397, 0.00674905349, 0.00179693557, -0.0348251164, 0.0248635132, 0.0080043776, -0.0252414607, 0.0328543931, -0.00302020158, 0.0251334757, -0.000166511803, 0.0114868889, -0.00426877663, 0.00356012583, 0.00643859711, -0.0135183549, 0.015185371, -0.0015497515, 0.00152866065, -0.0119323265, 0.0192887951, 0.00189142232, 0.0114396457, -0.0149289062, -0.00973213557, 0.00480870064, -0.00792338885, 0.000752941298, 0.000599822146, 0.0289129466, -0.00598303601, 0.000250558602, 0.0123035247, -0.0137545709, -0.0134441145, -0.00214282447, 0.019329289, 0.00449824426, -0.00104019791, -0.0215159822, 0.0172235854, 0.0142270047, -0.00347576267, -0.0018678006, -0.00185430248, -0.00739696296, -0.0133496281, -0.0139165483, 0.00913821906, -0.0193697847, 0.00257813837, -0.0132483924, 0.00139536685, -0.00682666758, -0.0124992477, 0.0086590359, 0.00376934651, -0.0266587622, -0.00532162888, 0.0157252941, -0.00532162888, 0.0113519086, 0.000774875749, 0.0165756755, 0.00751169678, -0.0245260615, 0.00100898347, 0.00569957588, -0.00781540386, 0.00401231227, -0.00700551784, -0.00296452176, 0.0231627524, -0.00905723, -0.0124385059, 0.0137208262, 0.00629011821, 0.0143754845, -0.000212806102, -0.0152933551, -0.00660394877, 0.000800184673, -0.0165081844, -0.0170076154, 0.000428143103, -0.00737671554, -0.0127692092, -0.000912809512, -0.00956340879, 0.0388475545, -0.00436326303, 2.02603424e-05, -0.0120605584, 0.0179119892, -0.00240941206, 0.0144969672, -0.0186813809, -0.000986205414, 0.0153473476, 0.0133226318, 0.0196397454, -0.0155228237, 0.00191673124, -0.0248770118, -0.0158602763, 0.0312886126, 0.0103125535, 0.0169671215, 0.00454211328, 0.00965789612, -0.0046568471, -0.00819335133, 0.016805144, 0.0182764381, 0.000222718765, -0.0019774728, -0.00479857717, 0.0033239089, 0.0160357505, 0.000377314282, 0.00117096084, 0.0076264306, -0.00483232224, 0.0155903138, -0.0021782571, -0.00686041312, 0.0375787318, 0.00786939636, 0.0103800446, -0.0167646501, 0.0172235854, -0.0222043861, 0.0174530521, -0.00550722796, 0.0158872716, 0.0269152261, -0.00496730348, 0.00745095499, 0.0196667425, 0.0154148387, -0.0299657974, 0.0102315657, 0.0163867027, 0.0205576178, 0.0159142688, -0.00736321742, 0.00934743881, -0.00324460748, 0.00528113451, -0.00946892239, 0.0108389799, -0.0198422167, -0.00548698055, -0.00888175424, 0.00797738135, -0.0117636006, -0.00823384523, -0.00332728354, 0.00374235027, -0.00977937877, 0.01112244, -0.00469734147, 0.0108997216, -0.00834183, -4.72697393e-05, -0.0234597102, -0.0113924025, 5.93178556e-05, -0.00903698243, -0.00708650611, -0.000150271895, -0.00485256966, 0.00256632757, 0.00345889, -0.00141308305, -0.00252077146, -0.00148057367, -0.0101438276, 0.0112979161, -0.00359049649, -0.00387395686, 0.0102518126, 0.020152675, 0.0450836793, 0.00661069807, -0.00526763638, 0.0137410732, 0.00230986369, -0.00209051929, -0.0181684531, 0.00461635273, -0.00363774, -0.0145644573, 0.000427721272, -0.0210435484, -0.0181684531, 0.00686378777, -0.00959040504, 0.00225587119, 0.00540261762, 0.00841607, -0.000337874488, -0.0172505807, 0.00107056869, -0.00213945, 0.0115813762, 0.00300670345, 0.00126544759, 0.00590204727, -0.00138186873, 0.00644872058]
29 Jul, 2024
How to change a select’s options based on another dropdown using React? 29 Jul, 2024 React is a declarative, efficient, and flexible JavaScript library for building user interfaces. It’s ‘V’ in MVC. ReactJS is an open-source, component-based front end library responsible only for the view layer of the application. It is maintained by Facebook. Select in HTML allows us to choose among multiple values using the dropdown. Here, we are talking about changing select options based on another dropdown. In React, it is very easy to achieve with the help of the state. For those who don’t about state here is a brief of it. The STATE of a component is an object that holds some information that may change over the lifetime of the component. If you want to know more about the state, please refer to state in react geeksforgeeks and state and lifecycle reactjs.org. React has both Class-Based components and Functional Component so for this article, we will use Functional Component. In the Functional component, the state can be managed using useState hook. We want to change the selects options based on other dropdowns so we will follow the below steps. Create a state variable that is initially null or undefined.Create different arrays for different dropdowns.Create a local variable say type that will hold any of the array based on the dropdown selected.Create a function that will be called whenever an option from the dropdown is selected, this function will change the state variable so that the value of type can be determined dynamically.Lastly, use type variables to create a different set of options that the user will see.Now we will create a Component using all the steps described above. App.js: Below is the code for App.js component. JavaScript import * as React from "react"; const App = () => { /** "selected" here is state variable which will hold the * value of currently selected dropdown. */ const [selected, setSelected] = React.useState(""); /** Function that will set different values to state variable * based on which dropdown is selected */ const changeSelectOptionHandler = (event) => { setSelected(event.target.value); }; /** Different arrays for different dropdowns */ const algorithm = [ "Searching Algorithm", "Sorting Algorithm", "Graph Algorithm", ]; const language = ["C++", "Java", "Python", "C#"]; const dataStructure = ["Arrays", "LinkedList", "Stack", "Queue"]; /** Type variable to store different array for different dropdown */ let type = null; /** This will be used to create set of options that user will see */ let options = null; /** Setting Type variable according to dropdown */ if (selected === "Algorithm") { type = algorithm; } else if (selected === "Language") { type = language; } else if (selected === "Data Structure") { type = dataStructure; } /** If "Type" is null or undefined then options will be null, * otherwise it will create a options iterable based on our array */ if (type) { options = type.map((el) => <option key={el}>{el}</option>); } return ( <div style={{ padding: "16px", margin: "16px", }} > <form> <div> {/** Bind changeSelectOptionHandler to onChange method of select. * This method will trigger every time different * option is selected. */} <select onChange={changeSelectOptionHandler}> <option>Choose...</option> <option>Algorithm</option> <option>Language</option> <option>Data Structure</option> </select> </div> <div> <select> { /** This is where we have used our options variable */ options } </select> </div> </form> </div> ); }; export default App; Output: You can see the output of the project below: https://media.geeksforgeeks.org/wp-content/uploads/20240726133551/icevideo20201109173206edit0edit0.mp4Note: You can also use the Class-Based component, logic would be the same. Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?
https://www.geeksforgeeks.org/how-to-change-a-selects-options-based-on-another-dropdown-using-react?ref=asr10
Languages
How to change a select’s options based on another dropdown using React?
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0211245529, -0.0125557203, -0.0226865783, 0.0376374051, 0.0248734169, 0.0104209501, -0.00426954, 0.0126598552, -0.0304967128, 0.00583528588, 0.00755723426, -0.0224039275, -0.00192464015, -0.0415350348, 0.0273429062, -0.00869528204, -0.0398391187, 0.00580181368, -0.0173310582, -0.0281908643, 0.000826572475, -0.0126821697, -0.0242932346, 0.0369233377, -0.0187145676, 0.0107779847, 0.0139392288, 0.00790683087, -0.0172566772, 0.00340670603, 0.0297975205, 0.00784732495, 0.000229422687, -0.022091521, -0.0318950973, -0.000418864918, -0.0365663022, 0.00702912034, -0.0215410925, 0.017494699, -0.00795146, 0.025661869, -0.00848701224, -0.0204551127, 0.00426954, 0.0351084098, 0.0147053665, -0.0245312583, -0.0117300767, -0.0401068963, -0.00352757704, 0.00601380318, 0.0352274217, 0.00820436, -0.0102201179, -0.0148392543, -0.0299165323, -0.015121907, -0.0255279802, 0.0302140601, 0.0425763875, -0.0563519746, 0.00362055493, -0.0399878845, 0.0278338287, 0.0119681, -0.0187294446, 0.020589, -0.0224039275, 0.0163492132, -0.0233262666, 0.00170056371, 0.00365588651, -0.0074307844, -0.0180600043, 0.0070179631, -0.0080035273, -0.00891842879, -0.0346323662, 0.0507584326, -0.0196815375, -0.014697928, 0.00633364636, -0.0298570264, -0.00282466505, 0.00234304019, 0.0149731422, -0.0525733568, 0.00261453516, -0.00842750631, -0.016736, -0.0213923287, 0.0258998908, 0.00163361966, -0.0655158684, 0.0448673591, 0.0575420894, -0.0136714531, -0.0457897, 0.0616479889, -0.030318195, 0.0508179367, -0.0148392543, -0.00120685168, 0.00542618334, -0.00328955404, 0.0314488038, 0.0234899074, 0.0208567772, -0.0119532235, 0.0321033671, -0.0123251351, -0.0293214731, 0.0459682159, -0.0113432892, 0.0289941914, -0.0134259919, -0.0335315093, 0.038559746, -0.0213328227, 0.0157244019, 0.0199046843, -0.0146458605, 0.0393035673, -0.0551916137, 0.0191459842, -0.00650472566, -0.0285776518, 0.0377861708, 0.0240403358, -0.00131470582, 0.00841262937, -0.04950881, -0.018298028, 0.0519187935, 0.00541874534, 0.0499551035, 0.0188335795, -0.0417433046, -0.0195476487, -0.0187740736, -0.0400473922, -0.000957671145, 0.0219427571, -0.00564561086, 0.00346249272, 0.00363543141, 0.0296041258, -0.0264800731, -0.021020418, -0.0219427571, -0.0353761874, 0.0226568263, 0.0363877863, 0.0490030125, 0.00965481345, -0.0157392789, 0.00898537319, 0.0363282785, 0.0121466173, 0.00862833858, -0.0199790653, -0.0139243528, 0.00256804633, -0.0341265649, -0.017405441, 0.029351227, -0.0138350939, -0.0609339215, 0.0382919684, -0.0357629731, 0.00599520747, -0.0308537483, 0.0695622563, -0.0176434647, -0.0189228393, 0.0111945253, -0.0220617689, 0.0236386713, 0.00391250523, -0.0208865292, -0.0269858725, 0.0150028951, 0.0103986356, 0.0350489058, 0.00618488202, -5.08472258e-05, -0.0122284377, -0.00380093185, -0.0295148678, -0.00183166238, 0.00599148823, 0.0577801131, 0.0649803132, -0.0184467919, -0.00704399683, -0.0466227792, 0.0153078623, -0.005284857, 0.0426656455, 0.0087919794, -0.0547155663, -0.0271346364, 0.0130392043, 0.0123772025, -0.015605391, 0.0107110403, -0.0369828418, 0.0503418893, -0.00321703125, -0.0210799221, -0.0128160575, -0.000485808909, -0.005753465, -0.0158285387, 0.00560470065, -0.0233857725, -0.00663117552, -0.0209757872, 0.0182682741, 0.0180748813, -0.00169219566, 0.0167955067, 0.00298830587, -0.0466525331, -0.0128755635, 0.00956555456, -0.00116966048, 0.0138276555, -0.00801840425, 0.0201575831, -0.00420259591, -0.0177327227, -0.0103986356, 0.0146756135, -0.00315566594, -0.0238023121, 0.0129499454, -0.0332042277, 0.0210799221, 0.0139317913, -0.0182236452, -0.0190120973, -0.0326091684, 0.0352274217, 0.0240998417, -0.000649914728, 0.0436177365, 0.00958043057, 0.0227907151, -0.0149285132, 0.00245647295, -0.0262271725, 0.0164979771, 0.00177959481, -0.00384556106, -0.00675390614, -0.00587619608, -0.00853908, 0.0129648224, 0.0422491059, -0.0123623265, 0.0182533991, 0.0700383037, 0.0395118371, -0.0285925288, 0.0427846573, -0.0442425497, -0.0163789671, -0.0214220807, 0.0128606865, -0.0558759272, -0.0275363009, 0.0166913718, 0.0224634316, -0.00527369976, 0.0124143939, 0.005277419, 0.0106887259, 0.0138127794, 0.0251411926, 0.0167508777, 0.0352869295, 0.0401961543, 0.00618488202, -0.00908207, 0.0111796483, 0.0114548625, -0.0387085117, -0.0163640901, -0.0340670608, -0.0022463433, 0.0132772271, -0.00586875761, 0.0398688726, 0.0496278219, -0.0022872535, 0.0479914136, -0.00747169461, 0.0160368085, 0.0126896081, -0.0622430481, 0.00438855123, 0.0149136363, -0.0513534881, 0.0449566171, 0.0364770442, 0.0203361, -0.0129648224, -0.0192203671, 0.0465930253, -0.00343273976, -0.0277892, -0.0230436139, -0.0218981281, 0.0150400866, 0.0123400111, 0.00818948355, -0.00322818873, -0.00928290188, -0.0261230376, -0.00039422579, -0.0335910134, 0.0501336195, 0.0388870277, 0.00418028096, -0.0513237379, -0.0332637317, 0.0258998908, 0.00494641811, -0.0321033671, -0.0231477488, 0.00217939913, 0.0281908643, 0.015605391, -0.0175839588, 0.0345728584, -0.0371911116, -0.0327281803, 0.0164533481, -0.0301545542, -0.0137235206, 0.0111275809, -0.00241370336, -0.0124887759, -0.0472178385, -0.00932009332, 0.0435582325, 0.0242039766, 0.0195178967, 0.00149415294, 0.00339182955, 0.0254089683, -0.0333529897, 0.063076131, -0.00897049624, 0.0112986602, -0.0360307507, -0.00406870758, 0.0450756289, 0.0332637317, 0.0110308845, -0.0213030688, 0.0272834, 0.0128011815, -0.0526031107, -0.0242188536, -0.024709776, 0.0233411435, -0.0299462844, -0.00697705289, 0.00235047843, 0.0234155245, 0.0212286878, -0.0475153662, -0.0280569755, -0.00229841075, 0.000533692481, -0.0305859707, 0.0141698141, -0.0122953821, 0.0358224809, -0.0219278801, 0.0484079532, -0.0044592144, 0.00413937075, 0.0325496607, 0.0027558615, -0.0419515744, 0.0194435138, -0.0222254097, 0.00724482909, -0.00438483246, 0.00827130396, 0.0170484055, 0.00133051211, -0.0167806298, 0.0135524413, 0.00486087846, -0.0280867293, 0.0262866784, 0.0215113405, 0.0162004493, 0.00639315229, 0.00484600198, -0.0114846155, -0.0591784976, -0.0344538465, 0.0129722599, 0.0311215241, -0.00270937267, -0.0059245443, -0.0481699295, 0.00908207, 0.0186401866, 0.0474261083, -0.00975894835, 0.0764649287, -0.0241295937, -0.0181641392, 0.0347811282, -0.00768368412, 0.00614769105, 0.0260040257, -0.0122284377, 7.7578341e-05, -0.033025708, 0.0201575831, 0.00324492459, -0.00369307748, -0.00404267386, -0.0354356915, -0.0168698896, -0.0479616597, -0.00605471339, -0.00835312437, 0.0291132033, 0.0253494624, -0.0112763457, -0.016557483, 0.0323116407, -0.00229097251, -0.0129499454, -0.00587619608, -0.0254238453, 0.0132028451, -0.0727160648, 0.00775062805, -0.0124367084, 0.000196415567, -0.0204104837, -0.0109565016, -0.035881985, -0.0148243774, 0.00766880764, -0.00884404685, 0.0279528406, -0.0016429174, 0.0127267987, -0.00366518414, -0.0109118726, 0.01745007, -0.0134408679, 0.010584591, -0.00900768768, -0.0237576831, -0.0131954066, 0.018372409, -0.0209906641, -0.0061365338, 0.0058278474, -0.0314488038, 0.0544775426, 0.0306752305, 0.0148243774, 0.0312702879, -0.00690267049, -0.0155310091, -0.0201427061, -0.0146161076, 0.0445103236, 0.0258552618, 0.0125259673, -0.0181195103, -0.00792170689, -0.0236535482, 0.0361497626, 0.00680597359, -0.00413565198, -0.0378159247, 0.0433202088, 0.00368192024, -0.047723636, 0.0277594477, 0.032133121, -0.0227460843, -0.0475153662, -0.0731326044, 0.00885892287, 0.000176192902, -0.00277445698, 0.032222379, -0.0410887413, 0.0127639901, -0.0134631833, -0.0299760364, -0.0108226137, 0.0391250513, 0.0317463353, -0.0405531898, -0.0179558694, 0.00647869194, 0.0138499709, 0.015560762, 0.00652704, 0.00382696558, 0.0139987348, 0.0203956068, 0.000795424916, -0.00877710246, 0.0307347365, -0.0168103836, 0.0142070055, -0.0153673682, -0.0206038766, 0.00650100643, 0.0272834, -0.017464947, 0.01100857, 0.00347550958, -0.0319248512, 0.00861346163, 0.0239213239, 0.0564709865, 0.0302586891, -0.0259445198, 0.0241593476, 0.0202914719, -0.00274842326, 0.0241147187, -0.0484377071, 0.0126672927, -0.063552171, 0.0376969129, -0.0173608121, 0.0117449537, 0.041386269, -0.0201427061, -0.00248994492, 0.016468225, 0.0249775518, 0.00288045174, 0.0277594477, 0.00544106, 0.0021124552, 0.00680597359, -0.00815973058, -0.0289793164, -0.0317463353, -0.0326686725, 0.00722995261, -0.0139838587, 0.0515022539, 0.00613281457, 0.028488392, -0.0362390205, 0.0303777, 0.0232221317, -0.00865809154, -0.00975151, 0.00396457268, -0.0292917211, -0.00692126621, -0.0082787415, 0.0124367084, 0.030273566, 0.00966225099, -0.0162153263, -0.00129982946, -0.00551544223, 0.00112131203, -0.0175393298, -0.023817189, 0.00848701224, 0.00839031488, 0.0302586891, 0.00193393789, -0.00553775672, -0.0121094268, -0.0157244019, -0.0181492642, 0.0131359017, -0.0115589984, -0.00262941164, -0.0186699387, 0.0137830265, -0.0120424824, 0.00772831356, -0.0121317413, -0.0306752305, -0.000432114233, 0.00126356806, 0.00628529815, 0.00681713084, 0.0116482563, -0.0224634316, -0.0262420494, 0.00290276646, 0.00869528204, -0.0144152753, -0.0272536483, -0.0126598552, 0.0363282785, -0.0114027951, -0.0145937931, 0.00726714358, -0.0112242782, 0.0243973695, -0.0187591966, -0.00576090347, 0.0162748303, 0.00135747564, 0.0231031198, 0.0154566271, -0.00299760373, 0.00977382436, 0.0139243528, -0.00607702788, -0.000156900016, 0.00638571428, -0.047723636, -0.000570883567, 0.0119681, -0.00423234887, 0.0129573839, 0.00112968008, 0.0116705718, -0.00460797874, 0.00211431482, 0.0117003238, -0.0172269233, 0.00987795927, -0.015211165, 0.106634364, -0.0184616689, -0.00404267386, -0.0228204671, 0.0227163322, 0.0246502701, -0.0498360917, 0.0022667984, -0.0107556703, 0.011068075, 0.00982589182, 0.00295483391, -0.032966204, -0.0245461352, -0.00533692492, -0.00995978, -0.00753492, -0.00252713612, -0.0252453275, 0.0144524667, -0.0269858725, 0.0167955067, -0.0374886431, 0.0379944406, 0.0267180949, 0.0206782594, 0.0168698896, -0.0110011315, -0.0170930363, -0.0218534973, 0.0387085117, 0.0122061232, -0.0478724, -0.0184765458, 0.0213625748, 0.00576834148, 0.0083456859, -0.00923827291, 0.00696217641, 0.0088961143, 0.0301396791, -0.0316868275, -0.0148987602, -0.0320141092, -0.00715185096, -0.0335910134, 0.0118639655, -0.0084498208, 0.00239138864, 0.0204551127, -0.00668696221, -0.00268519833, -0.0219725091, 0.020083202, -0.0106887259, 0.00523278955, -0.00610306161, 0.0102349948, -0.0351084098, -0.0218237452, 0.0141326226, 0.00806303322, 0.022969231, -0.0043625175, 0.0193840079, -0.0501931272, -0.0080035273, 0.0445400774, 0.0272685234, 0.00869528204, 0.0254982281, 0.0162450783, 0.0258850157, -0.00734524475, -0.00364844827, -0.0339480489, -0.0267924778, -0.00170893164, 0.0217344873, 0.0399283804, 0.00351456017, -0.00203435379, -0.000730340485, 0.0362092666, 0.0180748813, -0.0182087682, 0.00382324634, 0.0097440714, 0.0226568263, 0.0148913218, -0.00568280229, -0.0260486566, -0.00343088014, -0.0045335968, 0.00409846054, -0.0102796238, 0.015166536, 0.00794402137, -0.00455591129, -0.000714534253, 0.020589, -0.00441830419, -0.00923083443, 0.00978870131, -0.0078026955, 0.00559354341, 0.00909694657, 0.0169442706, -0.00330629, 0.0465335213, -0.0131433392, 0.00577206071, 0.00649728766, -0.0250519346, 0.00258478243, 0.0115292454, 0.0330554619, -0.0153822443, 0.0134334303, -0.00191720191, 0.00139838585, -0.00791426934, -0.000304037356, -0.0286669098, -0.00185676629, 0.0150103336, -0.00570511678, 0.0253345855, 0.0262718033, 0.0313893, -0.00428069709, -0.00636711856, -0.0145491632, 0.00460426, -0.0208419, 0.00276515936, -0.015590515, 0.00390506699, 0.0106292199, -0.0127863046, -0.0197410434, 0.00926802587, 0.0129499454, 0.0282354932, 0.026599085, 0.0349298939, 0.0199493133, -0.0213923287, 0.0187294446, 0.0140061732, 0.0288305506, 0.0237576831, -0.0289793164, -0.00172380812, -0.0188782085, -0.00052253512, -0.0408804715, -0.0160814375, -0.0217493623, 0.0168401357, -0.00102089602, 0.0364770442, -0.0234155245, -0.0260189027, -0.0165426079, -0.00224076468, 0.00455219205, -0.00182515383, -0.0288900565, -0.0318355933, 0.0239213239, 0.0371316075, -0.0327876844, 0.0194137618, 0.0280569755, -0.0104135117, 0.0304669607, 0.017420318, -0.0166913718, 0.0323116407, -0.0387382619, -0.0102945, 0.0160219315, -0.0120276064, -0.0231031198, 0.0315083116, 0.000883288914, 0.00052439468, -0.0148169398, -0.0387085117, 0.0113879191, -0.00543734059, 0.00673159165, -0.001778665, 0.00893330574, 0.0409994833, 0.00342716114, -0.024754405, 0.00856139418, -0.00781013397, -0.0270305015, -0.0115589984, -0.000881894259, -0.00857627112, 0.0140805552, 0.0482294373, 0.0072597051, 0.0332339779, -0.00155923737, -0.00881429389, 0.0234006476, -0.0118342126, 0.0204402357, -0.00424722536, 0.0127714286, 0.0163045842, -0.0161855724, 0.015560762, -0.0057237125, 0.00335277896, 0.0327579342, 0.000477440917, 0.00352571765, -0.015121907, -0.011960662, -0.0492410325, -0.0046712039, -0.00349038607, -0.016483102, -0.00253085536, 0.0206038766, 0.0105325235, -0.0146756135, -0.0374291353, -0.0168698896, -0.0117747067, -0.0108895581, 0.0284735169, -0.00377861713, -0.0321033671, -0.0107259173, 0.0240403358, 0.00705887331, -0.0263313074, -0.0301099252, 0.0274172891, -0.0191162322, -0.00876222644, -0.00617000554, 0.00740103144, -0.0234899074, 0.0204104837, 0.023832066, 0.0199641902, 0.00571627403, 0.00109155918, 0.034007553, 0.0132846655, 0.00240068627, 0.00603983691, 0.0151144685, 0.0193840079, -0.0040873033, -0.000351223571, 0.0180897582, 0.018342657, 0.0387085117, -0.000422584038, 0.037667159, -0.00616628677, 0.00638199504, 0.039541591, -0.00934984628, -0.0447483473, -0.00783988647, -0.00891099, -0.00419887668, -0.0269412417, 0.0153376153, 0.00687291753, 0.0457897, 0.0178666115, 0.0117895827, -0.0235642903, -0.011068075, 0.00376931927, -0.00508402521, -0.0155012561, 0.0154863792, 0.00673531042, -0.0132028451, -0.0316570774, 0.00286557525, 0.00228911312, 0.00307570514, -0.0315380655, -0.0120945498, 0.0276999418, 0.0432904549, -0.00708490703, -0.02573625, -0.00937216077, -0.00720391842, -0.0126970457, 0.0223146677, 0.0177029707, 0.0332339779, -0.0255874861, 0.00567164458, -0.00537039666, -0.00345691387, 0.0123623265, -0.0178071056, -0.0221212748, 0.00815973058, 0.00672043394, 0.0203658529, -0.00228167488, 0.00147834676, -0.00514725, 0.0147723099, 0.0343943425, 0.00240812451, -0.00500220479, 0.00435879827, -0.000476976042, -0.0343943425, -0.00110178674, -0.0150103336, 0.0124738989, -0.00442574266, -0.0265544541, 0.018431915, 0.00190232543, -0.0118416501, 0.00337881269, -0.000500685361, 0.00317054242, -0.00923827291, -0.00287115388, -0.00265172636, 0.0294702388, -0.0261081606, 0.0220617689, -0.0413565189, -0.00779525749, -0.020261718, -0.00314264908, -0.0162153263, 0.0126375407, -0.000273354672, -0.0123474495, -0.0427251495, 0.0159921795, 0.026673466, -0.0258998908, -0.000781943148, -0.0102870623, -0.00460054073, -0.0164979771, 0.0342455767, 0.00299388473, 0.0344538465, 0.0246800222, 0.00828618, -0.0104878936, 0.00365030766, -0.0342753306, -0.0121838087, -0.014154938, -0.0088961143, -0.0148690073, 0.0377564169, 0.0286520328, 0.0281313583, 0.0104209501, -0.00225936016, 0.0228799731, -0.0280718524, 0.0198005494, -0.0137012061, 0.0122507531, -0.0028135078, -0.00509890169, -0.00381952734, 0.00792914536, -0.00389390951, -0.00465260819, 0.00296599139, -0.0116780093, -0.0076985606, 0.0113730421, 0.0115887513, -0.00719276117, -0.0549833402, -0.0022463433, -0.018431915, 0.0283842571, 0.00216452288, -0.00763905467, 0.00404267386, -0.020083202, 0.0154566271, -0.0120796738, 0.0268519837, -0.0132325981, 0.00526254252, -0.00668696221, -0.00466376543, 0.0192947499, 0.00734896399, 0.00196740986, -0.0142218815, -0.0251560695, -0.0132177221, 0.00277817622, 0.0159624256, -0.015635144, -0.0289793164, -0.00118360715, 0.00852420274, -0.00907463208, 0.0447185934, 0.00454475405, -0.0164533481, 0.0124590229, 0.00816716813, 0.0226717032, -0.00858370867, -0.00267776, -0.0162748303, 0.003916224, -0.00856139418, -0.0137681505, -0.0167211238, 0.00337137445, 0.00598776946, 0.0376076549, -0.0171674173, 0.0303330719, 0.0218237452, -0.0214815866, -0.00137142232, -0.00431045, -0.0312702879, -0.00670555793, -0.019190615, 0.00472699059, 0.0158880427, -0.0169591475, 0.013730959, -0.012369764, -0.0106069054, 0.00446665287, 0.0870569572, 0.00532948645, -0.0232370067, -0.0164087191, 0.00794402137, -0.0210799221, -0.00411705626, 0.0230436139, 0.0307644885, -0.0417433046, 0.0430821851, -0.0225229375, -0.00259779929, 0.00162432191, -0.0159624256, 0.00440342771, 0.00483484473, 0.0219725091, 0.0150772771, -0.0268817358, -0.00781013397, 0.0163938422, 0.000486738689, -0.000897235586, 0.0164533481, -0.00377303851, 0.00406870758, -0.018312905, -0.043022681, -0.0117895827, 0.0154715031, 0.0255874861, 0.0235196594, -0.00284883939, 0.00147090852, 0.0191013552, 0.00041909737, 0.00390134775, -0.0190120973, 0.00767624564, -0.00240812451, -0.000587619608, -0.0406722, 0.008725035, -0.0125334049, 0.00197670772, -0.00622207345, 0.0114251096, -0.0221807808, 0.00360009982, 0.00495757535, -0.00680225482, -0.0307049826, -0.00456706854, -0.01150693, 0.0338290371, -0.0019953032, -0.0200236961, 0.0243378654, -0.033025708, -0.0106738498, 0.00457822625, 0.00699192937, -0.0344836, 0.00523650879, 0.00615512906, -0.00311289611, 0.00354245352, -0.010101106, 0.0162153263, 0.00356662786, 0.00634480407, -0.00885148533, -0.000330768467, -0.026599085, -0.0180153754, -0.0191013552, 0.00707003055, 0.0120647969, -0.0109341871, -0.000563910231, 0.0147797484, -0.00265172636, -0.00429185433, -0.0189228393, -0.0160665605, -0.021065047, -0.032073617, -0.0135598797, -0.00107389339, 0.00704399683, -0.00275400188, -0.00670183869, -0.0167806298, 0.0227907151, 0.03118103, 0.0335910134, 0.0158880427, -0.00971431844, -0.0119978534, 0.00906719361, 0.0216005985, 0.00746797537, 0.00591710629, -0.0122656291, -0.0101234214, 0.0200534482, 0.0194435138, 0.00425466336, 0.0188038275, 0.0408507176, 0.0189377144, 0.0108895581, -0.0124962144, -0.0081746066, 0.00309058162, 0.0190418493, 0.0107854232, 0.0389167815, -0.00220357347, -0.0157839078, 0.019190615, 0.0199790653, 0.00679853559, 0.00454103481, -0.0286966637, -0.00315938517, -0.00092512893, 0.00241556275, 0.0105176466, 0.00172380812, 0.0030478118, -0.0160070546, 0.022002263, -0.0169889014, -0.0111796483, -0.0152781093, 0.0114251096, 0.0192203671, 0.0143632079, 0.00386787578, 0.0119904149, -0.032222379, 0.0225378145, 0.0116928862, 0.000950232963, -0.0277296938, -0.00168382761, 0.0126598552, -0.0218981281, 0.00890355278, -0.0263313074, 0.00512493541, 0.00562329637, 0.0111870868, -0.0227609612, 0.0257957559, -0.01330698, 0.0069844909, -0.0105325235, -0.00175449078, 0.0214369576, 0.0351084098, 0.0222849157, 0.00666836649, 0.0135747567, -0.0035777851, -0.0175095759, 0.00283768191, -0.00111108448, 0.00163547916, -0.00692126621, 0.0253643394, -0.00615512906, 0.0351084098, -0.00749772834, 0.0289644394, -0.00640802877, 0.017375689, -0.00639687153, -0.0117598297, -0.00627786, 0.0024044055, 0.00729689654, -0.0186996926, -0.0151144685, 0.0112168398, -0.0194881428, -0.0136193857, 0.00741962716, 0.00128681248, 0.00373584731, 0.0130838333, 0.0373398773, 0.00490922714, -0.00665349, -0.0309430063, 0.0112019638, -0.0244271234, 0.041237507, -0.0333827436, 0.00790683087, 0.00679481635, 0.030228937, 0.00888123829, -0.0177624766, -0.0294999909, -0.000381906255, 0.020083202, -0.00184653874, 0.00393481972, -0.019190615, -0.0142962644, -0.00897049624, 0.0213477, 0.00288789, -0.00228539389, -0.00900024921, 0.00549312728, -0.00504683424, 0.0271197595, 0.00403523585, -0.00618488202, -0.000807047181, -0.0155310091, -0.0112540312, 0.00750888558, 0.0132325981, 0.0214518346, 0.0221063979, -0.0291280802, 0.0408507176, 0.0330852158, 0.00989283621, 0.0352571756, 0.00352571765, 0.0164235961, -0.0129201924, 0.00118360715, -0.0166616179, 0.013790465, -0.00196183124, -0.00517700287, 0.00754979579, 0.0338885412, -4.65179473e-05, -0.0120871114, -0.0168550126, -0.0053518014, 0.0253643394, -0.0072857393, -0.0217196103, 0.0233262666, -0.022091521, -0.000754514709, -0.000913041818, 0.00221287133, 0.00650472566, -0.0238023121, -0.0424871296, 0.0162450783, -0.00784732495, -0.00397944916, -0.000512772473, -0.0418920703, 0.0187294446, 0.00483484473, -0.00301991845, -0.00391250523, -0.0131805306, -0.0189079624, 0.0180302523, 0.00638199504, -0.00923827291, -0.01100857, 0.0161111895, 0.0352571756, -0.00688779401, -0.0225824434, -0.00512121618, -0.0269709956, 0.0132102836, 0.0153822443, 0.0224188026, -0.0246502701, -0.00455963053, 0.00277817622, 0.0139912972, 0.00544477906, 0.00215336541, 0.0200980771, 0.00554519519, 0.0104060732, -0.00293623842, 0.0209311582, 0.0181195103, -0.011023446, 0.0241593476, -0.0104655791, 0.00620347774, 0.00242486061, 0.0148392543, -0.0110160075, 0.0127491141, 0.00903744064, 0.0096399365, 0.0248287879, 0.005753465, 0.0135078123, -0.00683200732, 0.00395713467, -0.0245610103, -0.0159475487, -0.0241593476, -0.0206485055, 0.00065921247, 0.0317463353, 0.0137458351, 0.00975894835, -0.00346249272, -0.0204551127, 0.00792170689, -0.0158285387, 0.010101106, 0.0181046333, -0.0195327718, -0.0197112896, 0.00545221707, -0.0245163813, -0.003795353, 0.00911926106, -0.00346621173, -0.0288454276, 0.0203807298, 0.00200646045, 0.00225564092, -0.00117616891, -0.00448152935, 0.0314785577, 0.00658654608, -0.0204402357, -0.00567536382, -0.00434392225, -0.00691754697, 0.0177624766, -0.0462657437, -0.0157392789, 0.00300318236, -0.0106515344, 0.00465260819, -0.0238915719, -0.0236535482, -0.00877710246, 0.0038492803, -0.00831593294, 0.00360939745, -0.00789195392, 0.0149433892, 0.000368424458, 0.016512854, 0.0025252765, 0.00790683087, 0.0110308845, -0.01330698, 0.00740847, -0.0103688827, -0.00827130396, -0.0112242782, 0.0177178457, 0.0105622765, -0.000519745809, 0.00157690316, -0.0111350194, -0.00824898854, 0.013262351, 0.00766136916, 0.000285674236, 0.00808534771, -0.0179707464, -0.0192054901, -0.014154938, -0.0148020629, -0.0046712039, -0.024843663, -0.0113581661, -0.0113730421, -0.00773575157, 0.0145937931, 0.00220729248, -0.0175244529, 0.00355733, -0.00493897963, 0.0203658529, 0.00415424723, -0.0122135617, 0.0074940091, -0.00967712793, -0.0036149763, 0.00390506699, 0.00140489428, 0.0225080624, 0.034007553, 0.00225378154, 0.00622579223, 0.0158582907, -0.00842750631, -0.011916033, -0.0456111804, 0.00977382436, -0.0434689745, -0.00117988803, -0.00914901402, -0.0208419, -0.00885892287, -0.0272238944, 0.0335017554, -0.00405383157, 0.0427846573, 0.0116110658, 0.0205592476, 0.00327467755, -0.0233411435, -0.00681713084, -0.0186104327, 0.00559354341, 0.0106292199, 0.0186848156, -0.0100192856, -0.0222254097, 0.00296413177, 0.00720019965, 0.00696217641, -0.00322446949, -0.0170930363, 0.0129425079, 0.00956555456, 0.0242039766, -0.000314264908, 0.00751260482, 0.014623546, -0.00482740672, 0.0139094768, -0.00335277896, -0.00599520747, 0.008368, -0.00165314495, 0.0200683251, 0.0208567772, 0.000361916027, -0.000382836035, 0.007356402, 0.00136491389, -0.00666464772, 0.00439227046, -0.0146904895, 0.0170484055, 0.00457822625, -0.024724653, 0.011417672, 0.00439227046, -0.0144970957, -0.028443763, -0.00474930508, -0.0114325481, 0.0027391254, 0.00402035937, 0.0153822443, -0.0170484055, 0.0106440969, 0.00448152935, 0.00268705795, -0.00985564478, -0.00329141342, -0.0105027705, 0.0105325235, -0.00678737834, -0.0131359017, -0.00323748635, -0.00717416592, -0.0110531989, 0.00871015899, 0.0162302013, -0.00590966782, 0.00853908, 0.0221659038, 0.043171443, 0.00795146, 0.0262271725, 0.0310025122, -0.00627042167, 0.0189525913, -0.0169145186, -0.027521424, -0.00247506867, 0.0133441715, -0.00415796647, 0.00470095687, 0.0269114897, -0.00748657109, -0.0186996926, 0.0135896327, -0.00631877035, -0.00469723763, -0.0315975696, 0.0169889014, 0.0152632333, 0.00650100643, 0.0252602044, 0.00564561086, 0.0117226392, 0.019190615, -0.0371316075, -0.0178368576, 0.0189377144, 0.0140731176, 0.00720019965, -0.00552659947, -0.00101903651, 0.0185658038, 0.00593198277, 0.00564561086, 0.0097440714, 0.00807791, -0.0369233377, -0.0102647468, 0.0113730421, -0.00759070599, -0.00772831356, -0.000326352019, -0.00877710246, 0.00883660838, 0.0149582662, -0.00393110048, 0.00184188993, -0.0160963144, -0.00779525749, 0.0168698896, -0.00553031871, 0.00570883602, 0.00794402137, -0.000654563599, 0.0350191519, -0.0195476487, -0.0130763957, -0.0109267486, 0.00753863854, 0.00941679, -0.022984108, -0.00608446635, -0.00347179035, 0.0176137108, -0.0150475241, -0.0285478979, 0.0110829519, 0.0241295937, 0.00825642701, -0.00403895508, -0.00049138756, -0.00583900465, 0.00884404685, 3.6842448e-05, -0.0120499209, 0.00451872032, -0.0152186034, -0.0107333548, 0.00357592548, 0.00926058739, -0.010115983, -0.00444061914, -0.00259593967, -0.0190716032, 0.00921595749, 0.0099820951, -0.00444433792, 0.0121689327, 0.0201575831, -0.00988539774, 0.0135896327, -0.0031649638, -0.00350154331, -0.00306640728, -0.00475302432, -0.0066944, -0.021109676, 0.0130987102, 0.00810766313, -0.0148690073, 0.0329959542, -0.0160368085, 0.0175542049, 0.00235977606, 0.00452987757, -0.000798214285, -0.00756839151, -0.0116185034, -0.00287301349, -0.0387977697, 0.0152334804, 0.00262755225, 0.00737499772, -0.0145417256, 0.00603983691, 0.010584591, -0.0069473, -0.0110903904, -0.0359117389, -0.0114102336, 0.0271792654, -0.0281313583, 0.00818204507, 0.0238469411, -0.0375779, -0.0144524667, -0.0171376653, 0.0271495134, 0.011492054, 0.00609190436, 0.00640059076, 0.00248994492, 0.0027800356, 0.00573486974, -0.0118565271, -0.0069844909, -0.0185211748, -0.00261267577, -0.00217939913, 0.0298421495, -0.00308128376, -0.0206187535, -0.0138722854, -0.0046302937, 0.007356402, -0.0130094513, 0.00526626175, -0.014199567, -0.00415796647, -0.0130689573, -0.0148764458, 0.00652704, 0.00659770332, 0.00900768768, -0.012897878, -0.012853249, -0.00492782239, -0.00505427225, -0.00442202343, -0.0155310091, -0.00942422822, -0.00737127848, 0.00222774758, 0.013336733, 0.00672043394, 0.0177624766, 0.00218311837, 0.0239510778, -0.0111201424, 0.0126970457, 0.0180451274, -0.000140396456, -0.00858370867, 0.0254089683, 0.015181412, 0.000470700033, 0.0222997908, 0.0171971712, -0.0056158579, 0.00700308662, 0.0046712039, -0.0106589729, -0.00829361845, 0.0132549126, -0.0141103081, -0.035792727, 0.00171915919, 0.000176192902, 0.00328025618, 0.00178424362, 0.00528857624, -0.00813741516, 0.00270379405, -0.00284883939, 0.0180897582, 0.00720763765, 0.00100880896, 0.00725598633, -0.00765393116, 0.0140879937, -0.0185062978, -0.00271123205, 0.0346323662, -0.0278338287, 0.00348294782, -0.012868125, -0.0104730176, 0.0115664359, -0.0217344873, -0.0161855724, 0.0199344363, -0.0112614688, -0.00150159118, 0.0211989339, 0.0103093768, -0.00149415294, 0.00174984185, -0.00798865128, 0.0153971212, -0.00187536189, 0.0108598052, 0.00693986192, -0.00869528204, -0.00647869194, -0.0180302523, -0.005519161, 0.00163826859, -0.0142665114, -0.0069473, -0.0103093768, 0.00524766603, 0.0201575831, 0.012838372, -0.010554838, 0.00244717533, 0.00547453202, -0.0118714031, -0.0151293445, 0.00702168234, -0.0036577459, -0.0352274217, 0.0010943485, -0.000228957797, -0.000747076469, 0.0204997417, 0.0148764458, 0.00189953612, -1.26754867e-05, -0.0182831511, 0.00653447863, 0.0369233377, 0.00581669, 0.00805559475, 0.0317165814, -0.00892586727, 0.0125334049, -0.00125427032, 0.00484600198, 0.00894074328, 0.0212138109, -0.00679109711, -0.0225526914, 0.017375689, -0.00301991845, -0.016557483, 0.0113953575, -0.00333790248, 0.00888123829, 0.00474558584, -0.00298086763, 0.0224634316, 0.000442109362, -0.00949861, -0.00958786905, 0.000959530706, -0.0159177966, -0.00812253915, -0.00179447117, 0.00374142593, -0.0142962644, 0.0113507276, -0.0063708378, -0.0182831511, -0.00744194165, -0.0040873033, 0.0100118481, -0.0115292454, -0.0116185034, 0.0114325481, 0.00161037524, -0.00722251413, -0.00113618851, 0.00456334976, 0.0357629731, -0.0324604027, -0.0118044596, 0.0120127294, -0.00828618, 0.0119978534, 0.00969200395, 0.0110755134, 0.00195625261, 0.000403291138, -0.00907463208, 0.0267627258, 0.0101606119, -0.022032015, 0.014653299, 0.00335649797, 0.007832448, 0.0045335968, -0.00685804151, -0.00243601785, -0.00778038101, -0.0282801222, -0.00778038101, -0.0353761874, 0.00741962716, -0.0133888, -0.000642011582, 0.0134111159, -0.0056158579, -0.0127937431, 0.0170632824, -0.000722902245, 0.00419143867, -0.00602867967, -0.00225564092, -0.024724653, 0.00811510067, -0.0130615188, 0.0114102336, -0.0181641392, 0.0119234705, -0.0198898073, -0.00188373, -0.00627042167, 0.00175542058, -0.00191906141, -0.00708490703, -0.00188094052, -0.00509518245, -0.00362055493, -0.0144673428, 0.00719648041, -0.0158285387, -0.00562701561, -0.0182682741, -0.00758698722, 0.00784732495, 0.0149136363, 0.00483484473, -0.0178517345, 0.0190269742, 0.0290834513, -0.0042583826, -0.000978126307, -0.00304595218, 0.000650844479, 0.00556007121, -0.0111498954, -0.00481996825, -0.019250121, 0.0222551618, -0.00302549708, -0.0139020383, -0.0199344363, 0.00127565523, 0.000381673803, -0.00757954875, -0.00667580497, -0.00410589902, 0.00178145431, -0.00365030766, -0.017405441, 0.0039496962, 0.0245907642, 0.00151739747, 0.0214220807, -0.0153227383, -0.00563817285, -0.0350191519, 0.0147723099, 0.0135747567, -0.0149880182, 0.0157244019, 0.013760712, 0.027610682, -0.0117821451, -0.013790465, -0.0155458851, -0.0131135862, -0.0149210747, 0.0113730421, 0.00079681963, 0.012838372, -0.0117598297, -0.00143371744, 0.00222774758, -0.00294925529, 0.0107259173, 0.0390655436, -0.00978870131, 0.019369131, 0.0270156246, 0.00485344045, -0.00732293027, 0.010056477, 0.0108523667, 0.00895562, 0.0143037019, -0.0026554456, 0.00785476342, -0.0101085445, 0.00515840761, -0.00776550453, 0.00360567844, -0.0119978534, 0.00658654608, -0.00997465663, 0.00626298366, 0.014697928, 0.0127044842, -0.00722251413, 0.0165426079, 0.0210352931, -0.011462301, -0.000462332, -0.0135821942, -0.00201389869, 0.00650472566, -0.00224076468, 0.00830849446, -0.00975894835, 0.0143111404, -0.0146384221, -0.0124887759, 0.00370423496, -0.000611328927, 0.0162004493, 0.0089630587, 0.00939447526, 0.00369121809, -0.0146384221, 0.0179112405, 0.000451407133, 0.00621463498, -0.00734896399, -0.0229097251, 0.00207712362, 0.0175839588, 0.0182533991, -0.0173905641, -0.0335315093, -0.00244345609, -0.0111870868, 0.0146161076, -0.00292322156, -0.00627042167, -0.000263359572, 0.00149229344, -0.00679853559, -0.00984076876, -0.00264986674, 0.00786963943, -0.0162302013, -0.00418771943, 0.0125854723, -0.0249924287, 0.014653299, 0.0142070055, -0.00117523922, -0.00589107256, -0.00386415678, 0.0185509268, 0.0132028451, 0.010510209, 0.00384556106, -0.0243378654, -0.0075609535, 0.0093647223, -0.0204253588, -0.00704771606, 0.000879569852, 0.00981845427, 0.00236163568, -0.0106366584, 0.0335612595, -0.00122916629, -0.0031891379, -0.00842006784, 0.023817189, -0.0226865783, -0.00839031488, -0.00391250523, -0.0159921795, -0.0120945498, 0.0129648224, -0.00100044091, 0.00652332138, -0.000426535582, 0.0116556948, -0.010949064, 0.00297900825, 0.00220729248, 0.0216154754, -0.00039980447, -0.00503939576, 0.00455219205, 0.0214072056, -0.02017246, 0.0198451784, -0.015664896, 0.0116928862, 0.0072597051, -0.00104414055, 0.0188335795, 0.011492054, 0.00346435211, -0.0175690819, 0.0111201424, 0.00138072006, -0.000990213361, 0.0167806298, 0.000437925366, -0.00599520747, -0.00130819739, -0.0204253588, -0.00615141029, 0.00910438411, 0.00221101171, 0.0186699387, 0.0156797729, 0.0126970457, -0.00127472542, 0.030288443, 0.0163492132, -0.00315008732, 0.00276701874, 0.0166616179, 0.000710815133, 0.000604355591, -0.0116408188, -0.00517700287, 0.00381580833, 0.00411705626, -0.00604355568, 0.00978126284, 0.0381432064, 0.0170037765, -0.00309430063, 0.025602363, 0.0270900074, 0.015590515, 0.00106738496, -0.0332934856, -0.000206759345, -0.00230770861, 0.0072857393, 0.00411705626, -0.0160665605, -0.00296413177, 0.0175839588, 0.00179075205, -0.00690638972, 0.000453499146, -0.0120871114, 0.00797377434, 0.0225526914, -0.011945786, 0.00464517, 0.0210352931, -0.00778781902, -0.0030106206, -0.0202914719, -0.0342455767, -0.000829826691, 0.00717416592, -0.00727458159, -0.0282057412, -0.0152632333, -0.0126821697, 0.0211840589, -0.00307384552, 0.0136119472, 0.00164942583, 0.00176750764, -0.0245758872, 0.019190615, 0.0106143439, -0.00237651216, 0.0221063979, 0.00668324297, 0.0010562276, 0.0065716696, -0.00508402521, -0.01100857, 0.00447781, -0.00737871695, 0.0197559185, 0.00349782431, 0.0179707464, 0.0170781594, -0.00564933, -0.00337881269, -0.0185360517, -0.0204997417, -0.0045001246, -0.00807791, -0.00783988647, 0.00755723426, 0.00355733, -0.0113879191, 0.00334162149, -0.00169219566, 0.00701052463, 0.00520303659, -0.000529043609, 0.00894818176, -0.00775806606, 0.00436623674, 0.00641174801, 0.00795146, 0.000534622231, -0.0060956236, -0.0203212239, 0.0153078623, -0.0208716523, 0.00116966048, 0.0119383475, -0.00685432227, -0.0227312092, 0.0175988339, 0.00949861, -0.00628157891, 0.00194509525, -0.0277296938, 0.0199195594, 0.00204365165, -0.0204551127, -0.00561213912, 0.00292508095, 0.0159177966, -0.000208037789, -0.0080035273, -0.00976638589, 0.0328174382, 0.00151832716, -0.0177624766, 0.00202505616, -0.0072931773, 0.0124590229, -0.000715928909, 0.00358336372, 0.0057237125, -0.00531461, -0.0102573093, 0.0213030688, -0.0027725976, 0.00100416, 0.0250816867, 0.00139838585, -0.00947629567, 0.0259891506, 0.0152483564, 0.00924571, -0.00262569264, -0.00453731604, -0.00950604863, -0.00345691387, 0.00696217641, 0.00393110048, 0.018431915, -0.00409846054, -0.0276404358, 0.00807791, 0.0156797729, 0.0171525422, 0.008725035, 0.0288007986, 0.0186848156, 0.0113581661, -2.29974739e-05, -0.00506542949, 0.00570883602, -0.000341925799, 0.0360009968, -0.00839775335, 0.018342657, 0.0124218315, -0.0101457359, 0.0097440714, 0.0102424324, -0.00951348711, 0.0162302013, 0.00643778173, 0.0134854978, 0.0148020629, -0.0089630587, 0.000954881834, 0.0116780093, 0.0187443215, -0.0115515599, -0.00467492314, 0.00622579223, 0.000150507782, -0.00402035937, -0.00624438794, -0.0105176466, -0.018372409, -0.00099114317, 0.011960662, -0.0232370067, 0.00987795927, -0.0128458105, -0.00271123205, 0.00407242682, 0.0147797484, 0.0205146186, -0.00349596469, -0.0224634316, -0.00486831693, 0.00224820268, 0.000610864, 0.00323376735, -0.0238915719, 0.0337397791, 0.00554147596, -0.00296041253, 0.00165035564, -0.00856139418, 0.010056477, -0.0016224623, -0.0136788916, -0.00602867967, 0.00121893873, 0.00128867209, 0.00815973058, -0.00371911144, -0.00717788469, -0.00433276454, 0.00247320905, 0.00327467755, -0.0107407933, -0.00861346163, -0.0153376153, -0.0117300767, 0.00407614606, 0.00534808217, -0.00431045, -0.0022667984, -0.00440342771, -0.0232518837, -0.0283842571, -0.0136788916, -0.0119829765, 0.0254238453, -0.00456706854, 0.00254945084, 0.0102498708, -0.00925314892, 0.00826386549, 0.008725035, -0.0207080115, -0.00767624564, 0.00270565343, 0.011901156, 0.0172864292, -0.00171265076, 0.0185955558, 0.0146086691, 0.00286185625, 0.0312702879, 0.0137681505, 0.00932753086, 0.0371018536, -0.00141977076, 0.00966225099, -0.00752004329, -0.0100192856, -0.0103763202, 0.0233708955, 0.00249552377, 0.0194881428, -0.0107036028, 0.00413193274, -0.011916033, 0.0186848156, -0.00441458495, -0.000908392947, 0.0151590975, 0.0160368085, -0.00183817081, 0.00598776946, 0.00747913308, -0.00275028287, -0.000354710239, 0.00627786, -0.0330554619, 0.0133739244, 0.00653447863, -0.00228353427, 0.0153971212, 0.00194137613, 0.0192203671, 0.00110178674, 0.00516212638, 0.0133590475, 0.00163547916, -0.00331930676, -0.0072597051, -0.0126747312, 7.24645579e-05, -0.00540014962, -0.0116631333, 0.00107947201, 0.00150624011, -0.0117523922, 0.000606680056, -0.00202691578, -0.001958112, -0.0251709446, 0.00205852813, -0.00448152935, 0.0103911972, 0.00927546341, 0.00279863132, -0.000814020517, -0.0233262666, 0.0147351194, 0.00415796647, 0.00419515744, 0.00321517163, -0.00396457268, 0.00414680922, -0.00952836312, 0.00141791115, 0.0086209, -0.00933496933, 0.00333418325, -0.00323376735, -0.0258552618, -0.0109193111, -0.00894074328, 0.00788451638, -0.0130912717, -0.0109267486, -0.0029511149, 0.00886636134, 0.00671671517, -0.00444805715, 0.00498732831, 0.00888123829, 0.000160502896, -0.0168103836, 0.0113804806, -0.0213774517, -0.0155161321, 0.0110606374, -0.00617744401, -0.0022500623, 0.0268966127, 0.0362390205, 0.00833080895, 3.1786778e-05, 0.0140210493, 0.0329364501, 0.00162804103, 0.0150995916, 0.00922339596, -0.0114548625, -0.00324120559, -0.0197707955, -0.0136937676, 0.00473814784, 0.00630761264, 0.0174798239, 0.00743822288, -0.0383514762, 0.0096399365, 0.00897793472, 0.0115887513, 0.00769112213, -0.00942422822, -0.00454103481, -0.0126449782, 0.00681713084, 0.00622579223, 0.0085539557, 0.000529508456, -0.00558982417, -0.00583156664, 0.0109044341, -0.00267961971, -0.00413193274, 0.00704399683, -0.0103540057, -0.00397944916, 0.0164533481, -0.00296413177, -0.00156667561, 0.0214369576, -0.00340484641, 0.00857627112, -0.0577503592, 0.0112763457, 0.00470095687, 0.0189674683, -0.00943166669, 0.00900768768, 0.0135226892, -0.00826386549, 0.0394820869, 0.0142070055, -0.00179168186, -0.00704399683, -0.00245461357, -0.00462285522, -0.0249031689, 0.00165779388, 0.0248585399, -0.00194323563, 0.00184374943, -0.00273168716, 0.0130317658, 0.0145863546, 0.00323748635, -0.0117152007, 0.0171822943, 0.00587247685, -0.00866552908, -0.00914901402, -0.00552659947, -0.0248585399, 0.0022463433, -0.00720763765, 0.00257734419, -0.0122581907, 0.00419887668, 0.00946142, 0.00441830419, -0.0143483318, -0.0102796238, -0.00841262937, 0.00309058162, 0.00206224713, 0.00663489476, -0.00429185433, -0.0112837842, 0.0149657037, -0.00164012809, 0.0112837842, 0.0059245443, -0.00111945253, -0.0234304015, -0.00469723763, -0.0117152007, -0.00814485364, 0.00956555456, -4.79997798e-05, -0.0142516345, -0.00897793472, 0.0144003993, 0.0167211238, -0.0014671894, 0.0178368576, 0.0157839078, -0.00268333871, 0.00148857431, 0.0123623265, -0.0138202179, -0.00926802587, -0.00675018691, 0.0277148169, 0.00333976187, -0.00683944579, -0.00436995598, 0.00160758581, -0.0141028706, 0.0109639401, 0.0074940091, 0.00871015899, 0.00268333871, 0.0359117389, 0.0141028706, -0.00827130396, -0.00908207, 0.0154417502, 0.0134259919, -0.0119532235, -0.0246651471, -0.00275400188, 0.012868125, 0.00418771943, -0.0133441715, 0.00587991485, -0.00589851057, 0.00733036827, 0.0137458351, 0.0160070546, -0.0105325235, -0.00677250186, 0.0129796984, -0.0137383975, 0.026599085, -0.0240849648, 0.0186699387, 0.0103986356, 0.0159921795, -0.00860602316, 0.0019748481, -0.00948373415, -0.00256990595, 0.0181195103, 0.0206782594, 0.0035982402, 0.00812997762, -0.010584591, 0.017464947, -0.00975894835, 0.00485344045, 0.00789195392, 3.93993359e-05, -0.00307012629, -0.00824898854, -0.0107631078, -0.012897878, 0.00280235033, 0.00943166669, 0.00990771223, 0.00812997762, -0.00583156664, -0.0163045842, -0.00455219205, 0.00942422822, 0.00500592403, 0.00677994, -0.0426061377, 0.00435136026, -0.0175542049, -0.00561957713, 0.00364472903, -0.00818204507, -0.012384641, -0.00827130396, -0.0221956559, 0.00881429389, 0.000964179635, -0.012354888, -0.00118732627, -0.00206224713, -0.00633364636, -0.0123251351, -0.00205294951, 0.0124515845, 0.0072931773, 0.001778665, 0.0182831511, -0.00224262406, -0.0125705963, 0.00160200719, 0.00309244101, 0.00137607125, 0.0136119472, -0.000748471182, -0.00776550453, -0.000601101376, -0.0233411435, 0.0149359507, 0.00150066137, 0.00589107256, -0.00302363746, 0.00530345272, -0.00283024367, 0.00325050321, 0.0272387713, -0.00518444134, -0.000494641834, 0.00123846403, -0.0175542049, 0.00491666514, -0.0246056411, 0.010115983, 0.0135450037, 0.0191757381, -0.00215708464, -0.00950604863, 0.00528857624, -0.0231775027, -0.00632248912, -0.004184, 0.0203361, 0.000254759128, -0.00489435066, 0.00308128376, 0.00662001828, -0.00554147596, -0.00859858561, 0.00334905973, -0.00545221707, -0.0121391797, -0.0126821697, -0.00727458159, 0.00154808012, -0.0108151762, 0.0115292454, 0.00504683424, -0.0166169889, -0.00833824743, -0.0218832511, -0.0136788916, -0.00476418156, -0.0134854978, -0.00595057802, 0.00550800376, 0.00333976187, -0.0163194612, 0.00811510067, -0.0132995425, 0.0188038275, -0.00833824743, 0.019324502, -0.00577578, 0.0029511149, 0.0187740736, 0.000623416039, 0.00689523248, -0.00641174801, -0.00222774758, -0.00439227046, 0.0201575831, 0.0273726601, 0.0130094513, 0.000372608454, 0.00276887836, 0.0141400611, 0.00161409436, -0.0323116407, 0.00225936016, -0.0109639401, 0.0085539557, 0.0129127549, 0.00809278619, 0.00975151, 0.0353464335, 0.00980357733, -0.0267924778, -0.00964737497, 0.0107184788, -0.00802584179, -0.00331372814, -0.034096811, -0.0088961143, 0.00113711832, -0.00557866693, 0.00536295865, -0.0282652453, 0.0164235961, 0.00486831693, -0.0108746812, -0.0169442706, -0.00227795565, -0.000583900488, 0.0289049335, -0.00059784716, -0.0106440969, 0.0150400866, 0.00847213529, -0.00632992759, 0.00334905973, -0.00149601256, -0.0375183932, 0.00157039473, -0.0140731176, 0.000358661811, -0.0227014553, -0.00404639309, -0.021109676, 0.00793658383, -0.00525882328, 0.00782501, 0.0121763702, -0.00166616193, -0.0152334804, -0.00647869194, -0.0228353441, 0.00101438758, 0.010569714, 0.00793658383, 0.00307384552, -0.019279873, 0.0124813374, 0.00245461357, -0.00120220275, 0.00232630409, -0.0143408934, 0.00753120054, 0.00433276454, -0.0317463353, -0.00976638589, 0.0127863046, -0.00665349, -0.0129425079, -0.0203212239, 0.00551544223, -0.0243378654, 0.00786963943, 0.0145045342, -0.0023672143, -0.0180600043, -0.0112168398, -0.0118044596, -0.0114994925, -0.00829361845, 0.00162153249, 0.00235047843, -0.0150177712, -0.00458938349, -0.00131005701, -0.00213848893, 0.00922339596, -0.0283098761, 0.0131582161, -0.01100857, -0.00750888558, -0.010130859, 0.0127342371, 0.000944654283, 0.00426954, -0.00694358069, 0.00167731917, -0.00883660838, -0.0136045096, -0.00523650879, -0.000317286671, -0.0148615688, 0.00789195392, -0.00247878768, -0.00387903303, 0.0130317658, 0.0125557203, -0.0249031689, -0.00566420658, -0.0245312583, -0.0118639655, 0.000329373783, 0.00238209078, -0.0216898564, 0.0228799731, -0.0120276064, -0.0106069054, -0.00686176028, 0.0315380655, -0.000822853355, 0.00801096577, -0.00282652467, 0.0276701879, -0.00649356842, -0.0165872369, -0.000581111119, -0.00416540448, -0.0214815866, 0.00848701224, -0.00923083443, 0.0018772214, 0.00592082506, -0.0156946499, -0.0148318158, -0.00878454093, -0.005043115, 0.00602496043, 0.00791426934, -0.0171525422, -0.0306752305, -0.0233262666, -0.00721507613, -0.00383812282, 0.0698597878, -0.00262941164, 0.0127491141, -0.0503418893, 0.0159475487, -0.0043959897, 0.000456288457, 0.0425466336, 0.00336393621, 0.0141400611, -0.00148299569, 0.00604355568, -0.0149210747, 0.0151293445, -0.000536946696, -0.0137979034, 0.0215113405, -0.00829361845, -0.0206782594, -0.00328025618, 0.00127565523, -0.013775588, -0.00228539389, -0.0145789161, -0.00537039666, -0.0126896081, -0.0189823434, 0.0111127049, -0.01510703, 0.00734896399, 0.00873991195, 0.0211691819, 0.00967712793, -0.00205294951, -0.0277743228, 0.0101978034, 0.00947629567, 0.0119234705, 0.00781757198, -0.0156797729, 0.0196071547, 0.0230882429, 0.00362799317, 0.0101978034, 0.00610306161, -0.00249924278, -0.0100490386, -0.0155161321, 0.0218534973, -0.0205443706, 0.00715557, -0.0217939932, -0.0191013552, -0.0170930363, -0.010978817, 0.0136417, 0.0111796483, -0.000606680056, -0.00381580833, 0.0194435138, 0.00779525749, 0.0126077877, 0.00539271161, 0.0178071056, 0.00187164277, -0.0192054901, -0.00277445698, 0.00827130396, -0.0129425079, 0.000744752062, -0.0137235206, -0.0100192856, -0.00585388113, -0.0143557694, -0.00294181705, -0.000932102266, 0.0110903904, 0.00291206408, -0.00132121425, -0.00254387222, -0.0116259418, 0.0262122974, -0.0203956068, 0.00294739567, 0.00131191651, -0.0197559185, -0.0225229375, -0.00746053737, -0.00636711856, 0.0255131032, 0.00911926106, 0.0273131542, -0.00317984028, -0.00089491118, -0.000710350287, 0.00181027746, -0.00495757535, 0.0152632333, 0.0256767441, 0.00455591129, 0.0375183932, 0.00961762201, 1.9975696e-05, -0.0133516099, -0.000840984052, 0.0308537483, 0.00617744401, 0.0183277801, 0.00762417819, -0.000462332, 0.00801096577, -0.000159805568, 0.0012505512, 0.0155458851, -0.00387159479, 0.0205741245, 0.00973663386, 0.00188094052, 0.0106143439, -0.00466004666, 0.0179261174, 0.0109193111, -0.0140879937, 0.0166021138, -0.00164198771, -0.0114325481, 0.0188484564, -0.000926523586, 0.00716672745, -0.0184616689, 0.025691621, -0.00158155209, 0.014742557, -0.00143557694, 0.00668696221, 0.0255577322, -0.000205132237, 0.0288454276, 0.0122879436, 0.000125403778, -0.00723367138, -0.000827967131, 0.0217791162, 0.0147053665, -0.0186253097, 0.0145640401, 0.00962506048, -0.00907463208, 0.00114641606, -0.00554891396, 0.0112019638, 0.00135375652, -0.00717788469, -0.0130020129, 0.00418771943, 0.00793658383, -0.00261081615, -0.0209757872, 0.0108672436, 0.00871759653, -0.00451500108, 0.000476046262, 0.019190615, -0.00467864191, 0.0100267241, -0.00923083443, -0.00407242682, -0.00177122676, -0.00720763765, 0.0176732168, 0.0251858216, -0.000118023672, 0.0131135862, 0.0114325481, -0.00712581724, -0.0169442706, -0.0109639401, -0.00174984185, 0.0132549126, -0.017420318, -0.0104730176, 0.0119904149, 0.00536295865, 0.0476938821, 0.00218311837, 0.00291206408, -0.00247320905, 0.018312905, 0.0162450783, 0.00425094413, -0.00998953264, -0.0153971212, -0.00571627403, -0.00429185433, -0.019235244, -0.0140954321, 0.0207823943, -0.0175988339, 0.0104358261, 0.00955811609, 0.00444433792, -0.012838372, -0.00778038101, -0.0116556948, -0.0138946, 0.0174798239, -0.00180841784, -0.00553775672, -0.0125408433, -0.00229283213, 0.021139428]
07 Oct, 2024
Grouping Dropdown Options Using ReactJS 07 Oct, 2024 Grouping options means putting options in groups based on conditions for a better user experience. For example on our mobile, all contacts are grouped by their first letter so that it becomes easier for users to search for contacts. Material UI for React has this component available for us and it is very easy to integrate. What Are Grouped Dropdown Options?A grouped dropdown organizes options into categories or groups to make navigation and selection easier. Instead of displaying a flat list of options, grouped dropdowns visually separate related options under a group header. This is especially useful when dealing with large sets of data where items naturally fall into distinct categories. Use Cases for Grouped Dropdowns:Countries by Continent: Group countries under their respective continents (e.g., Europe, Asia, Africa).Job Roles by Department: Group job roles under departments (e.g., Engineering, Sales, Marketing).Products by Category: Group products under categories (e.g., Electronics, Furniture, Clothing).Steps To Grouping Dropdown options using ReactJSStep 1: Create a React application using the following command:npx create-react-app foldernamecd foldernameStep 2: Install the material-ui modules using the following command:npm install @material-ui/core npm install @material-ui/labProject StructureProject StructureExample: Now write down the following code in the App.js file. Here, App is our default component where we have written our code. JavaScript //App.js import React from 'react' import TextField from '@material-ui/core/TextField'; import Autocomplete from '@material-ui/lab/Autocomplete'; const App = () => { const myOptions = [ { title: 'Gourav', age: 20 }, { title: 'Dinesh', age: 25 }, { title: 'Madhuri', age: 18 }, { title: 'Kartik', age: 21 }, { title: 'Gaurank', age: 5 }, ]; // Our sample dropdown options const options = myOptions.map((option) => { const initialLetter = option.title[0].toUpperCase(); return { initialLetter: /[0-9]/.test(initialLetter) ? '0-9' : initialLetter, ...option, }; }); return ( <div style={{ marginLeft: '40%', marginTop: '60px' }}> <h3>Greetings from GeeksforGeeks!</h3> <Autocomplete style={{ width: 600 }} options={options.sort((a, b) => -b.initialLetter.localeCompare(a.initialLetter))} groupBy={(option) => option.initialLetter} getOptionLabel={(option) => option.title} renderInput={(params) => <TextField {...params} label="Grouping Demo" variant="outlined" />} /> </div> ); } export default App Run the application using the following command: npm startOutput: Now open your browser and go to http://localhost:3000/, you will see the following output: Grouping Dropdown Options Using ReactJS Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS
https://www.geeksforgeeks.org/grouping-dropdown-options-using-reactjs?ref=asr10
Languages
Grouping Dropdown Options Using ReactJS
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.00521273399, -0.00518428814, -0.0105179176, 0.0272655152, 0.0254023, 0.0166124776, -0.0313190743, 0.0219745543, -0.0196704268, -0.0104325796, -0.0173236299, -0.0411614, 0.00398244336, -0.0225292519, 0.0115135284, -0.0263694655, -0.0298114344, -0.00172898499, -0.0290433913, -0.0263410192, 0.0064003556, -0.0335947536, -0.00491049513, 0.0348463804, -0.0366953723, 0.00504561374, 0.0151048396, 0.00393977435, -0.00810711738, 0.0254591927, 0.0452576242, -0.01968465, -0.00451225089, -0.0196704268, -0.045172289, -0.00298505463, -0.0381461196, 0.0345619209, -0.020182455, 0.0146070337, -0.0197130945, 0.0276068673, -0.00650702836, -0.0207513757, 0.014173232, -0.00965742581, 0.0269810539, -0.0332249552, -0.00131562864, -0.0272797383, 0.0146070337, 0.0100201126, 0.0192721821, 0.00411400618, -0.0355290845, 0.00891782902, -0.00466159219, -0.00351841771, -0.0146781486, 0.0198126566, 0.0206375904, -0.0805022493, -0.00685193622, -0.0271375068, -0.00709728338, 0.0342490152, -0.0281331185, 0.0316888727, -0.0038651037, 0.0396253131, -0.023965776, 0.0114139672, -0.00857647602, 0.0196135342, -0.0244493578, -0.0234821942, 0.0230270568, -0.00774443, -0.0437784307, 0.0392555147, 0.00982810184, -0.0259569976, -0.0108521581, -0.0141163394, 0.0326560363, 0.0190872829, -0.0119473301, -0.0603624657, -0.0162569024, -0.0255160835, -0.00735329743, -0.0144861378, 0.011982888, -0.0117055392, -0.0270663928, 0.0222163461, 0.0257436521, -0.000825823634, -0.0330258347, 0.025060948, -0.0115917549, 0.0272086225, -0.0029975, -0.00865470339, 0.0048749377, -0.0101481192, 0.0390279442, 0.00670259446, -0.00542252325, -0.00546874804, 0.0361833423, -0.0240653362, -0.0287447087, 0.0376909822, -0.0213487409, 0.034817934, -0.0419294387, -0.062239904, -0.000123340185, -0.00148897164, 0.0338223241, -0.0101623423, -0.0511175059, 0.0618416592, -0.0743010193, 0.0235675313, 0.00818534382, -0.00683771307, 0.0203673542, 0.00893205218, -0.00688038208, 0.0200117789, -0.0325706974, -0.0128718261, 0.0143652428, 0.0237666536, 0.0255872, 0.00671326183, -0.0456843153, 0.0012782932, -0.00486071454, -0.0150621701, -0.00114673038, 0.0225150287, -0.0173520744, 0.0017618757, -0.0228137113, 0.0423276834, -0.036154896, -0.0045086951, -0.0315466411, -0.0193290729, 0.0314044096, 0.0318311, 0.036240235, 0.00959342159, -0.0265259184, -0.0225150287, -0.00973565225, -0.0116415359, 0.0308923833, -0.0115490863, 0.014720818, 0.0190872829, -0.0391701758, 0.0123313516, 0.0102547919, -0.0140310014, -0.0552990735, 0.0298114344, -0.0174800828, -0.00278593251, -0.0256014224, 0.0567213744, -0.0148772709, 0.0050705038, -0.000829379424, -0.0172809605, 0.0146781486, 0.00573543, -0.0489840545, -0.0121108955, 0.0292140674, -0.0153466305, 0.0174658597, 0.00112806272, 0.00547230383, 0.000315795332, -0.00929473899, -0.00910984, -0.00467937114, 0.0159155503, 0.018831268, 0.0524829142, 0.00814267434, -0.00812134054, -0.0549292751, 0.0273650754, 0.000346908171, 0.00662436802, -0.0241791215, -0.0294131897, -0.0154888602, 0.0123171285, 0.0274361912, 0.00273615192, -0.0126727037, -0.0361264497, 0.0219318848, 8.48936e-05, -0.00939429924, -0.00190055, -0.009842325, 0.000132562927, -0.0123384632, -0.00207478204, -0.00832757354, -0.0246200338, -0.0226003658, 0.00454780832, 0.0210642815, 0.0207513757, 0.0424130224, 0.0284033567, -0.0233968552, 0.0196562037, 0.0196988713, -0.000948497152, -0.0220172238, -0.0203246847, -0.0166835934, -0.00651769526, -0.0300674476, -0.00764486939, 0.0378047675, -0.00187921547, -0.032712929, 0.0149910552, -0.0298683252, 0.000373131828, 0.00404644711, 0.00351486192, -0.0168116, -0.0480453372, 0.0259143282, 0.0276210904, 0.0215194169, 0.00370865059, -0.0181058943, 0.0209078286, -0.00675593084, 0.00696216477, -0.0139741097, -0.0260423366, 0.0182339028, 0.0199548863, -0.00603055721, -0.0150763933, -0.00575320842, 0.0107810432, 0.0253596306, 0.0326844826, 0.005024279, 0.0470781699, 0.0333387405, -0.0544456914, 0.0303519089, -0.0131207285, 0.00837024301, -0.00814978592, 0.00365531421, -0.0308354907, -0.0228848271, 0.0188028216, 0.00635057501, -0.0012551808, 0.0230697263, 5.4003e-05, 0.0216047559, 0.0419009961, 0.0131065063, -0.0259996671, 0.0445464738, 0.00933029596, -0.0111223953, -0.0346757025, 0.018831268, 0.0326560363, -0.0392555147, 0.0117268739, -0.0193148516, -0.0114424136, 0.0103970217, -0.00480382238, 0.0165840331, 0.0389710553, 0.0186321456, 0.037093617, -0.0185752548, 0.00981387869, 0.00398955494, -0.0556688718, -0.0132985162, 0.0100414464, -0.0439206623, 0.0590539463, 0.0147634866, 0.0164986942, -0.0438353233, 0.00499938894, 0.0597366504, 0.0263694655, -0.0589970537, -0.00172631815, -0.0473057404, 0.0190872829, 0.0393977426, 0.00535852, 0.0152897388, -0.0304088, -0.0151475081, 0.00665992545, -0.0525967, 0.0284033567, 0.0360411145, 0.00440913392, -0.0374634154, -0.015218623, 0.0302950162, 0.0194428582, -0.0267108176, -0.00483582402, 0.0223301295, 0.0303234626, 0.0168116, -0.00483226823, 0.0218607709, -0.0316035338, 0.0060803378, 0.0188170448, -0.0199406631, -0.0306648146, -0.00884671416, 0.00215300848, 0.0123384632, -0.0168827157, -0.00322151231, 0.0225150287, 0.0310630593, -0.00425623637, 0.00109428307, -0.0154319685, 0.0243640207, -0.0224581361, 0.030863937, -0.032712929, 0.0392270684, -0.042469915, -0.0331965126, 0.0436362028, 0.00209256075, 0.00893916283, -0.0308070444, 0.00396466488, -0.0175796431, -0.0351308398, -0.0181912333, -0.00899605546, 0.0271944, -0.00429890538, -0.0130069451, -0.00878982153, 0.0245204736, 0.0157306511, -0.0523406863, -0.004245569, -0.0102263456, -0.0182623472, -0.0210642815, 0.0181485638, -0.0294700824, 0.0382314585, -0.0187174845, 0.0236813165, 0.027251292, 0.0256867595, 0.0320586711, 0.0226572584, -0.0254591927, 0.0106885936, 0.00117873214, 0.0516295359, 0.00982810184, 0.0193006285, -0.0217612088, 0.0225861445, -0.0160151124, 0.0228421576, 0.0108237127, -0.0173662975, 0.0335947536, 0.0229559429, 0.00470070541, 0.00280193333, -0.0131278401, -0.0317457654, -0.0405071378, -0.0291145071, 0.0405071378, 0.0327982679, -0.00184543582, 0.00924495794, -0.0102263456, -0.00265259179, 0.0228421576, 0.0315466411, -0.0100272242, 0.0707737133, -0.0135474196, -0.0239373296, 0.0399097726, -0.01307806, -0.0075026392, 0.0144150229, -0.0182907935, 0.00102050113, -0.0268814936, -0.00901027862, 0.0169111621, 0.0035664204, -0.0245062504, -0.0162569024, -0.0405924767, -0.033964552, -0.00939429924, 0.00775865326, -0.0222163461, 0.0217469856, -0.013917218, -0.0229701642, -0.0140310014, 0.010013001, -0.00710795028, -0.0186463688, -0.0405640304, 0.00644302461, -0.0553559624, 0.0320871174, -0.0298967715, 0.0227710437, -0.0341067836, -0.02228746, -0.067132622, -0.0287304856, 0.0298398808, -0.0254307464, 0.0423845761, 0.0155315297, 0.0190588366, -0.0103614647, 0.00965031423, 0.0158017669, -0.0133056277, -0.00172454026, -0.00417089835, -0.0256014224, -0.0349601656, 0.012068226, 0.00972142909, 0.0149199404, -0.0251320638, 0.00349530531, 0.0022152341, 0.0241648983, -0.00758086564, 0.0188739374, -0.0194997508, -0.0225292519, -0.0130282789, -0.0233257394, 0.047362633, 0.0226714816, -0.00715061929, 0.011691316, -0.00851958431, -0.0233826321, 0.0373780765, 0.000784488046, -0.00710439449, -0.0168827157, 0.025729429, 0.0226003658, -0.0510606132, 0.0114708599, 0.0340783373, -0.0115704201, -0.061727874, -0.0561524518, 0.010425468, 0.00509895, -0.0240084454, 0.00512384, -0.0284602474, -0.00837735459, -0.00444113556, -0.0337085389, -0.0272655152, 0.0275357515, 0.0118051, -0.0368944928, -0.0265685879, 0.028346464, -0.0032481805, 0.00348286, 0.00295127509, -0.00859781075, 0.0162142348, 0.0327982679, -0.0122460136, -0.00598077662, 0.00100005558, -0.00111739535, -0.00863336865, -0.00573898572, -0.0406493694, 0.013625646, 0.0190161671, -0.0291287303, 0.0407916, 0.0103472415, -0.0178498812, -0.0155884214, 0.0342205688, 0.0357850976, 0.022614589, -0.000144008, 0.0124166897, -0.0105392523, -0.0074670813, 0.00629723864, -0.0479315519, 0.00476826495, -0.0416734256, 0.0241933446, -0.00575676421, 0.0422992371, 0.027080616, -0.0266112555, -0.0260565579, -0.00121428969, 0.00203389069, -0.0129500525, -0.0205095839, 0.0144719156, 0.028588254, -0.00848402735, -0.00249613868, -0.00274681929, -0.0324569158, -0.0221025608, 0.0016694261, -0.00485360296, 0.0312621817, -0.00787243713, 0.0198411029, -0.00923073478, 0.00817823224, 0.0714564174, 0.00664214697, -0.0114210788, 0.024136452, -0.0496383123, -0.0142443469, 0.00648924941, 0.0267961547, 0.0162426811, 0.0186605919, -0.0556688718, -0.00459758891, -0.0164560247, 0.0150621701, -0.0127509302, 0.00439135497, 0.0131420633, -0.00388643821, 0.00322862389, 0.00984943565, -0.0123384632, -0.0278486591, -0.00891782902, -0.0157733206, 0.0377763212, -0.00785821397, -0.00496383151, -0.0231550634, -0.0182765704, 0.00103650207, 0.0239515528, -0.0123811327, -0.024392467, 0.0191868432, 0.0111863995, 0.0192437358, 0.0084058, 0.0112930723, -0.020523807, -0.00707594864, -0.0268103778, 0.026995277, -0.0162995718, -0.0465945899, -0.0252031777, 0.0512312911, -0.00598433241, -0.00266859261, 0.0117553193, -0.00160453364, 0.0190161671, -0.00879693311, -0.00543319061, 0.0291571748, -0.00418512151, 0.017494306, 0.0388003774, 0.015887104, -0.0195139721, 0.00866181497, -0.00643591303, 0.0224439129, 0.0112788491, -0.0423845761, 0.00548652699, 0.00469003851, 0.00120006665, 0.00888227113, 0.0114708599, -0.00118939939, -0.0193575192, 0.00888938271, 0.00737463171, -0.0230839495, -0.0055754208, -0.0210358351, 0.0794213042, -0.016982276, -0.00773020741, 0.00157519861, 0.0273366291, 0.0172667373, -0.0399382189, -0.000907606, -0.0277206507, 0.0234821942, 0.0100770043, -0.019428635, -0.0169253852, -0.0248618256, 0.00191655091, 0.00542607903, 0.00633279607, -0.00282682362, -0.037520308, 0.0178072117, -0.0338792168, 0.0200686697, 0.00175476412, 0.0125660319, 0.0358988829, 0.0403080173, -0.00426690374, -0.013625646, -0.01345497, -0.0181343406, 0.031034613, -0.0123526864, -0.0263125729, -0.00134140789, 0.0137180956, 0.000994721893, 0.00673104078, -0.0275926441, 0.00522340136, 0.0136683146, 0.0392270684, -0.0552137345, 0.00726440363, -0.0276779812, 0.001944997, -0.0209647194, 0.00898894388, -0.00712928502, -0.0167547092, 0.00945830345, 0.000592032913, -0.0261845663, -0.0345050283, -0.00262059, 0.00702261226, 0.00402511237, -0.00083115726, -0.051373519, -0.0169680547, -0.00523762451, 0.0338792168, 0.00748841604, 0.0258716587, -0.0149057172, 0.0306648146, -0.0479884446, 3.87521541e-05, 0.0265259184, 0.0392839611, 0.0219603311, 0.0226714816, -0.00858358759, 0.00831335, -0.0256725382, 0.0113286292, -0.0432095118, -0.00811422896, -0.00794355199, 0.0194428582, 0.0235248618, -0.00419223309, -0.00421356736, -0.0222590137, 0.0187317077, 0.00545452535, -0.0341352299, 0.0063114618, -0.00386865926, 0.0118619921, -0.00458692154, -0.00283571309, -0.0253880769, -0.0017040947, -0.0130993947, 0.0151190618, -0.00633635186, 0.00518784393, 0.00346685923, -0.006034113, 0.00706883706, 0.00440557813, -0.00567853777, -0.00662081223, -0.000540918962, -0.0109232739, 0.0430388339, 0.0197984334, -0.00593455182, -0.00575320842, 0.0528242663, -0.0164133571, 0.00154319685, 0.00687682629, -0.0290433913, 0.00863336865, -0.00437713228, 0.0406493694, -0.008832491, -0.0156026445, -0.00156008662, 0.0115988664, -0.0147350412, -0.000254458573, -0.0307501536, -0.0071363966, -0.00225612544, 0.0108592696, 0.037093617, 0.0125802541, 0.00937296543, 0.0136398692, 0.00136274239, 0.0171813983, 0.0146781486, -0.00979965553, -0.0143367965, -0.00885382481, 0.00919517782, 0.0257009827, 0.0125020277, -0.0107454862, 0.0290433913, 0.00773731852, 0.0298398808, -0.000277126499, 0.035329964, 0.0106743705, -0.0118122119, 0.00665636966, 0.00653191842, 0.0339076631, 0.02927096, -0.0103472415, 0.0323431306, -0.00423845788, 0.0191441756, -0.0229559429, 0.0061265626, 0.00266681472, 0.000313572964, 0.00155741989, 0.0316035338, -0.0299821105, -0.0221452303, -0.00178232125, -0.0220598914, 0.0233257394, -0.0129784988, -0.00368731585, -0.023965776, 0.0213060733, 0.0196135342, -0.0307217073, 0.0138887716, 0.0054829712, 0.0292140674, 0.0235817544, 0.00844135787, -0.0084058, 0.0319164395, 0.00695860898, -0.0181485638, 0.0202535689, 0.014087894, -0.0346472599, 0.00864048, -0.0314897485, 0.00204455806, -0.0266397018, -0.0382314585, -0.00201611198, -0.00976409763, -0.0264121331, 0.0156168677, 0.0134407468, 0.0267108176, 0.0283322409, -0.02398, 0.0160862263, -0.00712217344, -0.0185183622, -0.0209647194, -0.00990632828, 0.00268814946, 0.00818534382, 0.0386297032, 0.0138816601, 0.022785265, -0.00564298034, -0.0178072117, 0.0312052891, 0.00962186791, 0.00670970604, -0.0281188954, 0.0114566367, 0.00970009435, -0.0059878882, -0.00240902277, -0.0240937825, -0.0153750768, 0.0421854556, 0.0126798153, 0.0167120397, -0.0244778041, 0.00226501469, -0.0510037206, 0.0412467346, -0.00397533178, -0.0347325951, -0.0316035338, 0.0140238898, 0.00512028439, -0.00161786762, -0.0351877324, -0.010510806, -0.0261703432, -0.0254734159, 0.0221310072, 0.00491049513, -0.0209504981, 0.00637546508, 0.0319448858, 0.00773020741, -0.0121606756, -0.037520308, 0.0113428524, -0.025487639, -0.0170818381, -0.0213771872, 0.0159582198, -0.0410760604, 0.0131989559, 0.0486711487, 0.0308923833, 0.0120895607, -0.00607322622, 0.0354721919, 0.00377976545, 0.00574254105, 0.00908139348, 0.0119544417, 0.0154461917, 0.00483226823, 0.0213345177, 0.0352161787, -0.0157590974, 0.0191583969, -0.000344685803, 0.0478177667, -0.00812845118, 0.0189592764, 0.023880437, -0.0166693702, -0.0261418968, 0.0157022048, 0.000864048, -0.01425857, -0.0129216071, 0.00402866816, -0.0302950162, 0.0179636646, -0.00553986337, -0.012238902, -0.012238902, -0.00994899683, 0.0125233624, -0.00314506353, -0.00893205218, 0.0183903556, -0.00747419288, 0.00435579754, 0.0106957052, 0.0139954444, 0.0025583643, -0.0123100169, -0.0360126682, -0.0118193235, 0.0604762472, 0.00650347257, -0.00602344563, -0.0118193235, -0.0222590137, -0.0147919329, -0.0356144235, 0.00351841771, 0.00855514221, 0.0352730714, -0.00930185, -0.00303483522, 0.014002556, -0.00608389359, 0.00353264064, -0.0162000116, -0.0247195959, 0.00871159509, 0.017835658, 0.0275073051, -0.00962897949, -0.0149910552, -0.00374776381, 0.0165413637, 0.0461679, 0.00780843385, -0.0322862379, -0.00376554253, 0.0253454074, -0.0372927375, -0.00524829142, -0.000186788151, 0.024563143, 0.00379043282, -0.041132953, 0.00772309583, 0.00170142786, -0.0115135284, -0.022543475, -0.0131776212, -0.0129998336, -0.00107917108, -0.0045086951, -0.0136185344, 0.0204526912, -0.00628301594, 0.00083471305, -0.0361833423, -0.0191441756, -0.0159582198, 0.00785110239, -0.0129358293, -0.00627946, 0.00902450178, -0.0292140674, -0.0477893203, 0.0180347804, 0.0368944928, -0.0320302248, -0.0022614589, 0.00702972384, -0.0193432961, -0.0191583969, 0.0428112671, -0.0142159006, 0.0119188847, 0.0263979118, 0.011058392, -0.00785821397, 0.0236102, -0.00864048, -0.00513806334, 0.000279126631, -0.0014498583, 3.36685371e-05, 0.0368376039, 0.00644302461, 0.0306648146, 0.0121393409, 0.00967164803, 0.0221025608, -0.00855514221, 0.0159439966, 0.00542252325, 0.00928762741, 0.00636479817, -0.0063968, -0.0053905216, 0.00366953714, -0.0139243295, 0.00247480418, -0.00699061062, -0.0213202965, -0.00579943322, 0.0166693702, 0.0255445298, -0.0143936882, -0.0624674708, 0.00163742434, -0.0208651591, 0.0310061667, -0.00483582402, -0.00861914549, 0.0017040947, -0.0325422511, 0.00272548478, -0.0152897388, 0.0196419805, 0.0044731372, 0.00565009145, -0.0121251177, 0.00957919843, -0.0195993111, 0.007822657, -0.00352730718, -0.00417089835, -0.0294416361, 0.00296549802, 0.00623323536, 0.0273366291, -0.00296016457, -0.0158728827, -0.00902450178, -0.000151119501, -0.0263836887, 0.0240368918, 0.0100698927, -0.0320871174, -0.0150052784, -0.0107597085, 0.00988499355, 0.013113617, -0.00684482465, -0.00307750423, 0.0260281134, -0.0106530366, -0.0295554195, 0.000880048901, 0.0013031835, 0.00197166507, 0.0293278508, -0.015887104, -0.00169520534, 0.00884671416, -0.0247053728, -0.00760931149, 0.00589899439, -0.0234964173, -0.00989210512, -0.0360126682, -0.0193717424, 0.0192295127, 0.00511317281, -0.00402511237, -0.00287660421, -0.00524829142, 0.0141945668, 0.0623536855, 0.00273792981, -0.0208793823, -0.0136967609, -0.00148541585, -0.0209789425, -0.00407844875, 0.0014960831, 0.0425268076, -0.031717319, 0.036154896, -0.0167120397, -0.01199, -0.0141376741, -0.00523762451, 0.0139314402, -0.00900316704, 0.0450300574, 0.0260138903, -0.0194855276, -0.0139456633, 0.00745997, -0.00139118836, -0.0114708599, -0.00139296625, -0.000871603959, -0.00643235724, -0.0181912333, -0.0434370786, -0.00574965263, -0.0103330184, -3.16684273e-05, 0.0263694655, -0.00253880769, -0.000958275457, 0.0204384681, 0.0111508416, 0.0163849108, -0.040279571, 0.0168400463, -0.0102050118, -0.0166835934, -0.017835658, -0.0204953607, 0.00585276959, 0.0110015, -7.68931641e-05, 0.0141945668, -0.0164702479, -0.00364820263, -0.000515584194, 0.00279304408, -0.0253738537, -0.0068590478, 0.00223301305, 0.0195424184, 0.0071363966, -0.021021612, -0.00688393787, -0.0234110784, -0.030778598, 0.00414956408, 0.0172525141, -0.0301243402, -0.000288460462, 0.013248736, -0.0160862263, 0.00167120399, -0.012907384, 0.0259712208, -0.0136043113, 0.00700127799, 0.0064465804, 0.00662436802, -0.0330827273, -0.0162995718, -0.0143936882, -0.0104681375, 0.00614789734, -0.0133127393, -0.00667414861, 0.0103685763, -0.023709761, 0.0025814767, -0.00895338599, -0.00149341626, -0.0193148516, -0.0470497236, -0.0111223953, 0.00825645868, 0.0142372353, 0.00141874549, -0.00606967043, -0.0181912333, 0.0168827157, 0.0179636646, 0.0505770333, 0.0116486475, -0.0166124776, -0.00735329743, 0.0269383863, 0.0249613859, 0.00571765099, 0.0148488246, 0.000862714602, -0.0110655036, 0.0205095839, 0.00643235724, 0.0189450532, 0.0156595372, 0.0284744706, 0.0157590974, 0.0195281953, -0.00642880145, 4.24190221e-05, 0.000455580855, 0.014720818, 0.00179032166, 0.0331680663, -5.05861426e-05, -0.0073319627, 0.0289438311, 0.0175511967, -0.00660303328, -0.00711861765, -0.0120113343, 0.00672748499, -0.0120824492, 0.0111650648, 0.00156008662, -0.0116344243, 0.0150195006, -0.0255729761, 0.00413534092, 0.0119402185, 0.00310417241, -0.00832046196, 0.0142514585, 0.00121695653, 0.0227994882, -0.00118228793, 0.0249044951, -0.0248476025, 0.016143119, 0.00417801, -0.0162426811, -0.0122886831, 0.00504916953, 0.00521629, -0.027749097, -0.000605366949, -0.010389911, 0.0265116952, -0.00216189795, 0.00379043282, -0.0069194953, 0.0323431306, 0.0101623423, 0.0123882433, -0.00231835106, -0.0276353136, 0.0218038782, 0.0107739316, 0.00873293, 0.0335094184, 0.0293562971, 0.0213202965, -0.0289153848, -0.0131989559, 0.0024428023, 0.00046313685, -0.0113001829, 0.00398599915, -0.00242680148, 0.0200117789, 0.0122602368, -0.00184721372, 0.0246627033, 0.00841291156, 0.026653925, -0.0322577916, 0.00818534382, 0.00594521919, -0.00566075882, -0.0147919329, -0.0192010663, 0.0194713045, -0.0209078286, -0.00395044172, 0.00260814489, 0.00459047733, -0.00259036617, 0.0283322409, 0.0310061667, 0.00266148127, -0.0100201126, -0.0275499746, 0.0253454074, -0.0135687534, 0.0314897485, -0.0226714816, 0.00168009335, 0.0198126566, 0.00611233944, 0.00236813165, 0.012238902, -0.0175511967, 0.00797911, 0.0491831787, -0.0175796431, -0.00407489296, -0.0214909725, 0.00469714962, -0.00134851935, 0.0234253015, 0.0101623423, 9.38941084e-05, -0.0074101896, 0.00997033156, 0.0116842045, 0.0169680547, 0.000758708804, 0.00555764232, -0.0149910552, -0.00980676711, -0.00736752059, 0.00637190975, 0.00460825581, 0.00847691577, 0.0229132734, 0.00592032913, 0.0421001166, 0.0271232855, 0.0186037, 0.0245346967, -0.010048558, 0.0137536526, -0.0274077449, -0.0118904384, -0.0121748988, 0.0127153732, 0.00268103788, -0.000402689038, -0.0049211625, 0.00556475343, -0.000187232625, -0.0272939615, -0.0110086119, -0.00911695138, 0.00648569362, -0.0206518136, -0.0145288073, 0.0261703432, -0.021690093, 0.00805022474, 0.000240013338, 0.0177787654, -0.00800044462, -0.000727596, -0.0384021327, 0.00669548288, 0.00433090748, 0.0116984276, 0.00248724921, -0.0293278508, -0.00636479817, -0.00271126162, 0.0111863995, 0.00697283167, -0.0159582198, -0.0433517434, 0.00162409025, -0.00224901387, -0.0159724429, 0.00814978592, 0.0120895607, 0.0267961547, -0.0131207285, -0.00651413947, -0.00966453645, -0.0366100334, -0.00828490499, 0.0300674476, 0.02927096, 0.00227390416, -0.0041531194, -0.00908139348, 0.0143083502, 0.0155741982, -0.000993833, 0.020097116, 0.0141945668, -0.00629723864, -0.0172525141, -0.00388288242, 0.0289580524, -0.00843424629, 0.0164560247, -0.0135118617, -0.00233612978, -0.00495316414, 0.009842325, -0.0296976492, 0.0227141511, 0.00678082136, 0.0112788491, 0.00960764475, -0.000579143292, 0.0250751711, -0.0203815773, 0.0197415408, -0.00201433408, -0.00169520534, -0.0249329414, -0.0362117887, 0.0051167286, 0.0364109129, -0.00601277826, 0.0057140952, -0.0119117731, -0.0299536642, 0.00344374683, 0.0248760488, 0.0017272071, -0.00643591303, -0.0191441756, -0.024563143, -0.000756930967, -0.0237524305, 0.00241791201, 0.0289153848, 0.00229168287, -0.0195993111, 0.00858358759, 0.0143936882, -0.003153953, -0.0117695425, -0.00665636966, 0.0097498754, 0.0037513196, -0.0295838658, -0.0038651037, -0.0076875384, 0.00307394867, -0.00376909832, -0.01463548, -0.0040962277, 0.00390421692, -0.00274504139, -0.0094085224, -0.0183192398, -0.0276210904, -0.026995277, -0.00798622146, -0.0108379358, 0.00142319023, 0.00325351418, 0.00701550068, -0.00371576194, 0.034476582, 0.00965031423, 0.00889649428, 0.01425857, -0.00816400908, 0.00661370065, -0.00318062119, -0.00308817159, -0.027919773, 0.0224723592, 0.010048558, -0.0141305625, 0.00896760914, 0.0143581312, -0.00886804797, 0.0112432912, 0.0216474254, -0.012359798, -0.00309172738, -0.0120184459, -0.0129571641, -0.0192152895, -0.016313795, -0.0168400463, -0.0299821105, -0.008491138, -0.00890360586, -0.0198695492, 0.0384590253, 0.00146230345, -0.000976054231, 0.00991344, 0.00423134631, 0.0184756927, -0.00974276382, 0.0206802599, 0.00636835396, -0.0251889545, -0.00018867715, 0.00561453402, -0.000429579435, 0.0290433913, 0.0231692865, -0.00361620099, 0.00197699876, 0.0164275784, -0.0151475081, -0.010681482, -0.0229701642, -0.00402155658, -0.0198695492, 0.0301243402, 0.00453002937, -0.0283749104, -0.0068590478, -0.030437246, 0.0338792168, 0.0182054564, 0.0329689421, -0.00522340136, 0.0149768321, 0.0050136121, -0.0182054564, 0.0102405688, -0.0101125622, 0.0099347746, 0.0048749377, 0.00199833326, -0.0221310072, -0.0133198509, -0.000954719726, 0.00969298277, -0.00345085841, -0.0169111621, -0.0163564645, -0.00403222395, -0.0246911496, 0.018077448, 0.006770154, 0.000441802316, 0.0270521697, 0.00245524757, 0.00123295735, 0.00555764232, -0.00085426966, 0.00822090078, -0.0163564645, 0.0467368178, 0.00288549368, -0.0128362691, 0.0150052784, 0.00538341, -0.00356464251, 0.000565364724, -8.33379599e-05, 0.000263792434, 9.45608117e-05, -0.010133896, -0.0194570813, 0.0171102844, -0.00344374683, -0.0238662157, -0.0268672705, 0.00291927322, 0.00441268971, 0.0198837705, 0.00971431751, 0.0205380302, -0.0131420633, 0.00126140343, -0.00551497284, -0.00915962, -0.0193006285, 0.00817112066, -0.00882537942, 0.00389354955, 0.0171245076, -0.00657103164, -0.00648924941, -0.00534429681, 0.0033993, 0.00614789734, 0.0206233673, 0.0124238012, 0.00396822067, 0.0044624703, 0.0596797615, -0.00244991388, 0.0248476025, 0.0138247684, 0.00210145, 0.03262759, -0.00604833616, -0.00686971517, -0.00132718484, 0.00485360296, -0.0122460136, -0.00856936537, 0.0175227504, -0.00482160132, -0.00736040901, 0.0198268797, -0.00505628111, -0.0122246789, -0.0232404023, 0.00174587476, 0.0180205572, 0.0173094068, 0.0081568975, -0.00308106, -8.43935777e-05, 0.0229843874, -0.0327698216, -0.00855514221, -0.0018196567, 0.0158444364, 0.0121108955, -0.00868314877, -0.00473270752, -0.00822090078, 0.0182339028, 0.00256192, -0.0131562864, 0.0123882433, -0.0179778878, -0.00647147046, 0.00445180293, 0.000656480901, 0.00764486939, 0.00563586876, -0.0043842434, 0.00771598425, 0.0048287129, -0.00466870377, 0.00237879879, -0.0037726541, -0.00837024301, 0.0152044, 0.00232368475, 0.0216758717, 0.0119757764, 0.00593455182, 0.0179352183, -0.00393621856, -0.00607678201, 0.01345497, 0.0159866661, 0.0131989559, -0.00839157775, 0.000488916063, 0.00390066113, -0.000698261, -0.00820667855, -0.0138603253, 0.0144292461, 0.00923784636, 0.00282682362, 0.00325173629, 0.0162426811, -0.0123029053, 0.0150052784, -0.000718706578, -0.0111721763, 0.0217896551, -0.0203815773, 0.0040500029, 0.00140185561, 0.00281793438, 0.00688749366, 0.00166498136, -0.00863336865, 0.00210856157, -0.0132274013, 0.00551141752, 0.0202393457, 0.0239373296, 0.0149626089, -0.000144008, 0.0199548863, 0.00662081223, -0.0156879835, -0.014123451, -0.0224154666, 0.00082537916, -0.00760931149, 0.0278486591, 0.00630435, -0.0288016, 0.0208367128, 0.000178565475, 0.0148772709, 0.00673104078, 0.0169396084, -0.013575865, -0.00851958431, -0.0047362633, -0.0145785874, -0.034817934, 0.000412022899, -0.0017040947, -0.0103259068, -0.014464804, 0.00621190062, -0.00465448061, -0.00930185, -0.00924495794, -0.0305794775, -0.0111650648, 0.0149768321, -0.025985444, 0.00615856424, 0.0190446135, -0.0471350625, -0.00382599025, -0.0213487409, 0.0386012569, -0.00046891495, 0.00656392, 0.0114850821, 0.00332462904, 0.0104681375, -0.00658881059, 0.0282611251, 0.0011876215, -0.0228421576, -0.0074101896, -0.00119562203, 0.034391243, -0.014294127, 0.00475404179, -0.00400022231, 0.00236279797, 0.011229068, -0.0175227504, -0.00535496417, -0.00524473563, -0.0189734977, -0.0421285629, -0.00395399751, 0.011349964, 0.0115277516, 0.0150052784, -0.00938007701, -0.0117837656, -0.0135829765, 0.00693727424, -0.0108094895, -0.00413534092, -0.00415667519, 0.00875426456, -0.0331680663, 0.0267392639, -0.0061265626, -0.00295127509, -0.00697283167, 0.0126087, -0.00641102297, 0.0165982563, -0.00617634319, 0.00249436079, -0.00543319061, 0.0155030834, 0.00707239285, 1.14103559e-05, 0.0178214349, 0.0122460136, -0.0212207343, 0.000811156176, 0.0104681375, -0.0119117731, 0.0207229294, 0.0168827157, -0.0121393409, -0.023211956, 0.0101552308, -0.00268281577, 0.00293527427, 0.00783688, -0.00141785655, -0.0268388242, -0.0215905327, 0.0039575533, 0.00427045953, 0.00837024301, 0.00909561664, 0.0159155503, 0.00224368018, 0.00588477124, -0.00933740754, -0.00457269838, 0.0243355744, -0.0174658597, 0.00238235458, -0.0126442583, -0.00577809894, -0.00350952824, -0.0289722756, -0.00257436535, 0.0159866661, -0.00367664872, 0.00309706083, 0.0237524305, 0.00355397514, 0.00461536739, -0.00321973441, 0.00604833616, 0.0136754261, 0.00334418588, -0.0021921217, 0.00533718523, -0.00572120678, -0.00939429924, -0.0174231902, -0.00328196, -0.0123313516, -0.00901027862, -0.0181770101, -0.00630790601, 0.00851247273, 0.00977120921, 0.0159724429, -0.0075950888, 0.0092022894, -0.00965742581, 0.00604478037, -0.0144576924, -0.0125446972, 0.00802177936, -0.020850936, 0.00389354955, 0.000107950444, 0.00763064623, 0.0149626089, 0.0182054564, 0.0110655036, -1.95844223e-05, -0.00968587119, 0.0101623423, 0.0341067836, -0.00908850506, 0.0062190122, 0.031375967, -0.031290628, 0.0157164279, -0.00507405959, -0.0043380186, -0.0071470635, 0.014806156, -0.00596299814, -0.0228279345, 0.000569365, 0.0100627812, -0.00799333304, -0.00146674819, -0.014208789, 0.00378332124, 0.0083417967, -0.008491138, 0.0128149344, 0.0195566416, -0.00802177936, 0.000366242573, -0.0135331964, -0.00407489296, -0.0186890382, 0.00546519272, 0.000260014436, -0.0181485638, 0.0155315297, -0.0116130896, -0.0270948391, -0.0178498812, 0.00466870377, 0.00752397347, -0.0180916712, 0.00776576484, 0.0121962335, -0.0105463639, -0.00185788097, -0.0041531194, 0.0161146726, 0.0135047501, -0.018760154, -0.0217185393, -0.00323573523, -0.0106317019, -0.00502783479, -0.000679148827, 0.0119615532, 0.00957919843, 0.0162426811, -0.0308354907, 0.0247053728, 0.0189308301, -0.00493894098, 0.0122460136, 0.00616567582, 0.0174658597, -0.00384732476, -0.0150763933, -0.0044269124, -0.000536029751, -0.0117553193, -0.00570342783, -0.0329973884, 0.00250325026, 0.00219389959, 0.010475249, -0.000526251446, 0.0190872829, -0.00880404469, -0.00314861932, 0.00350419478, 0.00796488672, -0.00769464951, 0.00468292693, -0.0293278508, -0.00544741377, -0.00395399751, 0.0247053728, -0.0325991437, 0.0168542694, -0.00348819373, 0.0181201175, 0.00555053074, 0.0129002724, 0.00097961, 0.000287571544, -0.00713284081, -0.00403933553, -0.000513361825, -0.0101481192, 0.000347130408, -0.0250040554, 0.0104681375, -0.00953653, -1.36535364e-05, 0.0157590974, 0.00593455182, -0.00826357, -0.00553275179, 0.0231835097, 0.0395115279, 0.00176720927, -0.00585632538, -0.00946541503, 0.00469003851, 0.00886804797, -0.0155315297, 0.000775154156, -0.0186748151, -0.000228234901, -0.00687327096, -0.0106317019, -0.0292994063, 0.00965742581, 0.0195281953, -0.000273126294, -0.00161520089, 0.00171120616, -0.00750975031, 0.000928940484, -0.0137892105, -0.0021227845, 0.0256725382, -0.00345974765, -0.00924495794, -0.00627946, 0.00145874766, -0.0408769362, 0.0266823713, -0.0249187183, -0.000455580855, 0.0217043161, 0.0200260021, 0.0328551568, -0.0184614696, -0.0191299524, -0.0217896551, -0.0221736766, -0.0141590089, 0.0136327576, -0.00458336575, -0.0199406631, -0.00751686189, 0.0145359188, -0.000898716622, 0.00944408, 0.00891071744, 0.0215763096, -0.00852669589, -0.00731774, 0.0113072945, -0.00383665762, -0.0017618757, -0.0109446077, 0.0120824492, 0.0465376973, -0.00449447194, -0.00846980419, 0.00528384931, -0.0281046722, 0.00472915173, -0.00399311073, 0.0305225849, -0.0100912275, 0.00520206662, -0.0248902719, 0.0148630477, 0.010389911, 0.00266859261, -0.0282042343, 0.0118548805, 0.0355575308, -0.0122317905, -0.00456203101, -0.0196135342, -0.0103685763, 0.0200117789, -0.0120113343, 0.0111010615, -0.00359486649, -0.00456203101, -0.00282682362, -0.00516650919, 0.0036002, 0.0138603253, 0.0350170583, 0.00272904057, 0.00254058558, -0.014002556, -0.00459403312, 0.0105392523, -0.0056216456, 0.0131278401, -0.00519495551, -0.0218038782, 0.000148786043, -0.00155653094, 0.0166835934, -0.0167547092, -0.0221452303, -0.0129358293, -0.00490338355, 0.0226999279, -0.0128576029, -0.00752397347, -0.0023503527, -0.00074448582, -0.00802177936, -0.0188170448, 0.00209611654, 0.0035450859, -0.00334951933, -0.00455492, -0.00210856157, -0.0111508416, 0.00362864602, 0.00697638746, 0.00239124405, 0.00284993602, -0.016313795, 0.00463314634, 0.0226288121, 0.0162995718, -7.18928859e-05, -0.0144079113, -0.00299927779, 0.00553275179, -0.0289011616, 0.0017369854, 0.0121464524, 0.000332685158, 0.0136754261, -0.00555764232, 0.0109446077, 0.0100912275, -0.00208367128, -0.0116842045, 0.0246627033, -0.00960053317, -0.00288371579, -0.0126087, -0.011691316, -0.0125233624, 0.0162711255, -0.0229274966, -0.00596655393, 0.00314861932, -0.00193077396, 0.0087400414, -0.00556475343, 0.0162711255, 0.00664570276, -0.0110086119, -0.00238235458, 0.00369087164, 0.0234964173, -0.0217327625, 0.000396022, -0.0120113343, 0.0196704268, 0.0171956215, -0.0183761325, -0.011605978, 0.0254023, -0.00369087164, -0.00901739, 0.0081568975, -0.0116842045, -0.0124238012, 0.0115988664, 0.000968053762, -0.00712572923, 0.00659947796, -0.024392467, 0.00827068184, -0.00292994059, -0.0101836771, 0.007275071, 0.00697638746, 0.00561453402, -0.0187743772, 0.0197273176, 0.0154461917, 0.00283571309, -0.00542607903, 0.0145003609, -0.0107597085, -0.00568564935, -0.0236528702, -0.00717906561, -0.000493360742, 0.00432735169, 0.0177218728, 0.00941563398, 0.02228746, 0.00243924651, -0.00701905647, 0.0174516365, 0.00451580621, 0.00818534382, 0.0147919329, -0.0271944, -0.00682704616, -0.0177645423, 0.000529362762, 0.00582076795, -0.0346472599, 0.00323217968, 0.00814978592, -0.000883604633, -0.0320586711, -0.0104965828, -0.00613723, 0.0172098447, 0.0300105568, -0.00453358516, -0.00588832702, 0.0151475081, -0.0231692865, -0.0165982563, -0.0136114229, -0.0323431306, 0.0113712987, 0.00302950153, 0.00174765266, -0.0164702479, -0.0102619035, -0.0116984276, 0.0107597085, -0.000797377608, 0.00733907428, 0.00331040611, 0.00505983643, -0.0135616427, 0.0139954444, 0.017494306, -0.000129340522, 0.0255872, -0.00168898271, 0.0104610259, 0.0101694539, -0.0113855219, -0.0102334572, 0.00793644134, -0.0233826321, 0.0185752548, -0.0022134562, 0.0196135342, 0.0274077449, 0.0102121225, -0.0141021172, -0.0271801762, -0.00734618586, -0.0158444364, -0.00545452535, 0.00506339222, 0.0164133571, 0.0141874552, -0.0109232739, -0.00878271, 0.00776576484, -0.00483226823, 0.00592032913, 0.0174374133, -0.00235390849, -0.00856225379, -0.0173947439, 0.000696038653, 0.00249791658, 0.0107383747, -0.00288727158, -0.0178214349, 0.0291856211, -0.0258147679, 0.0204100236, 0.0275357515, -0.00401088968, -0.00504205795, 0.0166124776, 0.0160008892, -0.0154035222, -0.014173232, -0.0197984334, 0.0203246847, 0.00649991678, -0.00711861765, 0.0125446972, -0.00551141752, 0.0202251244, -0.0183761325, -0.0224439129, -0.021946108, 0.0219603311, -0.00154586369, 0.00473270752, -0.00475759758, 0.00173165172, 0.0101623423, -0.00664925808, 0.0193717424, -0.0149910552, -0.0267819315, -0.0133198509, 0.0323146842, 8.72270684e-05, -0.00647502625, 0.015887104, 0.00478959922, -0.0220172238, 0.0175227504, -0.00280548912, 0.0112148449, -0.00801466778, 0.00329796108, -0.00281971227, 0.000434468588, 0.0178498812, 0.00181432301, 0.012359798, 0.0109090507, -0.0201966781, -1.52647372e-05, 0.00986365881, 0.0132345129, -0.00861914549, 0.0111792879, 0.0216616485, 0.00142230128, -2.01538969e-05, -0.0119188847, 0.0105392523, -0.0002127896, 0.0155457528, 0.00242324569, 0.0109446077, 0.0246058106, -0.000904494722, 0.00413178513, 0.00226501469, -0.00540118897, 0.006770154, 0.00140096666, 0.00227212626, -0.00386865926, -0.0076519805, -0.00406422559, 0.0214198567, 0.00868314877, -0.0214198567, -0.00144008, -0.000500916736, 0.00886804797, 0.00758086564, 0.000969831657, -0.0186605919, -0.0154888602, -0.00627946, -0.0084058, -0.014123451, 0.00637546508, -0.0233541857, -0.00753819663, 0.00379398861, 0.0187174845, 0.0125944773, -0.00152008445, -0.0174516365, -0.0106317019, -0.00655325316, 0.000579587766, 0.000469803868, -0.0205380302, 0.0215763096, -0.00216012, 0.00381176732, 0.00138585479, -0.00254947506, 0.00494605256, -0.0177787654, -0.00193077396, -0.00705461437, -0.0107241515, 0.00307039288, 0.0218749922, 0.000810711703, 0.0180916712, -0.00302416808, -0.0215905327, 0.0138816601, -0.00683771307, 0.000978721073, -0.0142656816, -0.0213345177, 0.0046118116, -0.0176365357, 0.0166551471, 0.0192295127, 0.0135616427, -0.033964552, -0.0204811376, -0.00509895, 0.000447802653, 0.0312052891, -0.0135260848, 0.00638613245, 0.0266681481, -0.00294238562, 0.0131420633, 0.0170391686, 0.00465448061, -2.18901041e-05, -0.0018543253, 0.00318595488, 0.0213487409, -0.0107952664, 0.00489271618, 0.021277627, 0.0114637483, 0.0312621817, 0.00413178513, -0.0212918501, 0.0204242449, -0.00945119187, 0.0108023779, 0.00448024878, -0.00265970337, -0.00960053317, 0.0246911496, 0.00620478904, 0.0179352183, -0.0161288958, 0.0169396084, -0.0138887716, -0.00508828275, -0.0118548805, -0.00285882549, 0.0200828929, 0.0120255565, -0.00773020741, 0.00477182074, 0.0120824492, -0.00084049115, -0.0041424525, -0.0106103672, -0.0241506752, 0.00459403312, -0.00611233944, -0.012992722, 0.0195281953, 0.00664570276, 0.0123455748, 0.0081924554, -0.000801822345, 0.00590255, 0.0150195006, -0.000364909152, -0.0158017669, -0.0218607709, 0.00640391139, -0.00477537652, 0.00323751313, 0.00622612378, 0.00804311316, -0.00624034647, -0.0140594477, -0.00725729205, 0.00598433241, -0.0189023837, 0.00430957275, 0.0152044, -1.26395912e-06, -0.00572831836, 0.00341174519, -0.000618701044, -0.0128362691, 0.0318026543, 0.00549719436, 0.0391701758, -0.00172809605, -0.0204669144, 0.0046011447, -0.0222163461, -0.00312017323, 0.00613723, -0.0090742819, 0.01656981, 0.00124273566, -0.0216616485, -0.00433446281, -0.0169538315, 0.0147350412, -0.0145928105, -0.0134478584, -0.00483938, 0.00911695138, 0.00508117117, 0.0115419747, -0.00377621, -0.00590610597, -0.00226323679, 0.00191655091, 0.0116486475, -0.0138674369, 0.00451225089, 0.00314861932, -0.00822090078, -0.0275641978, 0.0474764146, 0.0269526076, -0.0076519805, 0.0132274013, 0.0240084454, 0.0320586711, 0.00384732476, 0.00707594864, 0.0165840331, -0.0147350412, 0.0228421576, -0.00531940674, -0.00847691577, 0.00286949286, 0.0200117789, 0.030778598, 0.000920051127, -0.0325422511, 0.0084058, 0.0125091393, 0.02927096, 0.00473981909, 0.00129073835, 0.00490693934, -0.0221736766, -0.00134140789, -0.000301794556, 0.0128433798, -0.0173662975, 0.0011182843, -0.0120184459, -0.00195388636, 0.00532651832, -0.00849825, 0.000299127743, -0.000901383406, -0.000122451253, 0.00538696581, 0.00224545808, 0.00239302195, 0.0311483964, -0.0167973768, 0.00148274901, -0.0295838658, -0.0074670813, 0.00972854067, 0.00257258746, -0.014002556, 0.0014631924, 0.00627234858, -0.02228746, 0.0253027398, 0.00851958431, -0.00422067894, -0.0138887716, 0.0113570755, -0.0135189733, -0.0199122168, 0.000684926927, 0.0127438195, -0.00191655091, 0.00243391306, 0.00598433241, 0.013575865, 0.0148488246, -0.00147919334, -0.00683060149, 0.0201255623, 0.0194570813, -0.0124593591, 0.016740486, -0.0079151066, -0.0234110784, 0.000536474225, 0.0228848271, 0.00259392196, -0.00972142909, 0.00363220181, 0.0123669095, 0.0158444364, -0.00127029279, -0.00490693934, -0.00132362905, 0.0025796988, 0.0134834154, 0.00523406873, -0.0151617313, -0.0180347804, -0.00358242122, -0.00385088054, 0.0211496186, 0.0249471646, 0.00307039288, -0.0220598914, -0.00836313143, -0.0111366184, -0.0109232739, 0.0196704268, -0.00904583558, 0.00276104221, 0.00110406138, 0.0139669981, 0.0135331964, 0.00217967667, -0.00325706974, -0.0123171285, 0.00521984557, 0.00637190975, 0.0168684926, -0.00560742244, -0.000182454576, -0.0177787654, 0.0144719156, 0.0104041332, 0.000995610841, -0.00807867106, 0.00595233077, -0.00896049757, 0.0193290729, 0.0029975, 0.00768042682, -0.0138674369, 0.0273081847, 0.023297295, 0.00275570876, -0.00054003, 0.0130496137, -0.00123562419, -0.00962897949, -0.00365175842, 0.0146212569, 0.0151475081, -0.0074101896, -0.000647591543, -0.0097498754, -0.00361086731, 0.0157164279, -0.00365175842, 0.0261418968, -0.0110797267, -0.00853380747, 0.0159013271, -0.0155315297, 0.00636124238, -0.0106743705, 0.0206660368, -0.0178214349, -0.00201077829, -0.0107383747, 0.026995277, 0.00912406202, -0.00805022474, 0.00389710534, -0.00589899439, 0.00236990955, 0.0102547919, -0.0171387307, 0.014379466, 0.00950808357, 0.00521984557, -0.000927162648, -0.00767331524, -0.00311839557, -0.0158017669, -0.00827779341, -0.00727862678, 0.00292282901, 0.0191157293, 6.77815406e-05, -0.00429890538, -0.00673104078, -0.00842002314, -0.0117055392, -0.00715773087, -0.0225292519, 0.0118619921, -0.00795777515, 0.00871870667, -0.0143012386, -0.01034013, 0.00788666, -0.00936585385, -0.002375243, 0.00680571143, -0.0215194169, 0.0072004, -0.00930896122, -0.0188170448, -0.00351130613, -0.0103259068, 0.00678082136, -0.0104894713, -0.0245062504, -0.00461892318, -0.0017254292, -0.0228990503, 0.0198268797, -0.00857647602, -0.00300105568, -0.00609100517, 0.00417801, -0.00312728481, -0.000765375851, -0.00739596644, -0.00686971517, -0.00684482465, -0.0136043113, 0.001497861, 0.00240191119, 0.00937296543, 0.00881115627, 0.00439135497, 0.000602255692, 0.00480026659, 0.0246200338, -0.00418156572, 0.0148772709, -0.00390421692, -0.033054281, 0.0133909658, -0.0194570813, 0.0098992167, 0.0129571641, 0.0215620864, 0.00431312853, -0.0192295127, -0.0169680547, -0.0324284695, -0.0081568975, -0.0149057172, 0.021192288, -0.00666703703, 0.00332285138, 0.0111508416, -0.0226003658, 0.00124184682, 0.00486427033, 0.0113428524, 0.0012569587, -0.00567498198, -0.0111792879, 0.00243569096, -0.00512028439, -0.00524473563, 0.0118264351, 0.0100983391, -0.0273792986, -0.0182907935, -0.021277627, 0.00233968557, -0.0114281904, -0.0252600703, -0.0168116, 0.0157590974, -0.00180454471, -0.0127651533, -0.0106032556, -0.00227390416, 0.00727151521, -0.0044269124, 0.0248191562, -0.00371931773, -0.00128896045, 0.0239373296, -0.00275570876, -0.00580298901, -0.0133980773, -0.00375487516, -0.0150763933, -0.00694794161, 0.0376625359, 0.00366598135, 0.0051167286, 0.00523406873, 0.00936585385, 0.000470692816, -0.0211638417, 0.00062981277, -0.00122495694, 0.00629723864, 0.0071826214, -0.00883960258, 0.0205095839, 0.00653903, 0.00584565802, -0.00887516, -0.0111366184, 0.00496383151, -0.00286593707, 0.0245346967, -0.0363255739, -0.0180063341, -0.00612300681, -0.0191583969, 0.00180276681, -0.0105321407, 0.0255303066, 0.0175369736, 0.00897472072, -0.0304656923, -0.000405578088, -0.000631146191, 0.0158017669, 0.00183654646, -0.00715061929, -0.000944941363, 0.010013001, -0.00923073478, -0.011691316, -0.00542252325, -0.027251292, 0.00185788097, -0.0061727874, -0.00265970337, -0.0117553193, -0.0245773662, -0.0233541857, 0.014550142, -0.024136452, 0.0123526864, 0.00646791467, -0.00861914549, 0.00347397081, 0.0188170448, -0.00583143486, 0.00213345187, 0.0129500525, -0.0117837656, -0.00310595031, -0.0111650648, -0.00251747319, -0.00735329743, -0.0185183622, 0.00981387869, -0.0203815773, -0.00110939494, 0.0031308406, -0.0235106386, -0.0123384632, 0.0100556696, -0.0104965828, -0.0186463688, -0.0382030122, 0.0252742935, -0.00888227113, 0.0165413637, 0.0158017669, 0.00946541503, -0.0118193235, -0.000983165693, -0.00970720593, -0.00142230128, -0.0166693702, -0.00216367585, 0.00592388446, -0.0186179224, -0.00925206952, 0.00673815189, -0.0138816601, -0.00942274556, -0.0123313516, 0.00257792091, 0.00180365576, -0.00494605256, -0.0127438195, 0.0230270568, -0.00788666, -0.000932496274, -0.00717195403, 0.010048558, -0.0154461917, -0.0168116, -0.00719684409, 0.0044624703, -0.00895338599, 0.00976409763, -0.00856225379, -0.00721462304, 0.0084058, 0.0208367128, -0.034817934, -0.00262947939, -0.0184330232, -0.00995610841, 0.000627590402, 0.00351663982, 0.0087400414, 0.0261987895, -0.0126513699, -0.00780843385, 0.00731062843, 0.0144221345, -0.0114921937, -0.00333174062, -0.00805733632, 0.0286024772, -0.00600566715, -0.0186321456, -0.00630435, -0.00544385798, -0.0276637599, 0.0147350412, -0.0115846433, -0.00239302195, 0.0145074725, -0.0118193235, -0.0289296079, 0.00233079609, 0.00508117117, 0.0143652428, 0.00356108672, -0.0149341626, -0.0186605919, -0.0298683252, 0.00300461147, -0.00442335708, 0.00846269261, -0.0048429356, -0.000972498499, -0.0551568419, 0.00868314877, -0.00515939761, 0.0107028168, 0.0453714095, 0.00540118897, 0.0115846433, -0.018077448, 0.00736040901, -0.00684838044, 0.0277775433, -0.0164702479, -0.0102476804, -0.00161520089, -0.00513806334, -0.0221310072, -4.47247066e-06, 0.00694438582, -0.00999877788, -0.0180347804, -0.0181912333, 0.0011200622, -0.00282149017, -0.0105036944, 0.014464804, -0.00984943565, 0.0200117789, 0.00188988273, 0.0180063341, 0.0121820103, -0.00404644711, -0.00772309583, 0.00829201657, -0.00172187341, -0.00112272904, 0.00595944235, -0.0104041332, 0.00511317281, 0.015303961, -0.00158764375, -0.00836313143, 0.00701194489, 0.00197522086, -0.00544030219, -0.0034775266, 0.0160151124, -0.00804311316, 0.00924495794, -0.00865470339, -0.00608389359, -0.00248191576, -0.00220456696, 0.015133285, 0.0152470693, -0.00950808357, -0.000442913501, 0.00371220615, 0.00483938, 0.0253311843, 0.0114495251, -0.00268103788, -0.00218856614, -0.0111223953, -0.000161453412, 0.0013840769, -0.0164986942, 0.00715417508, -0.0196419805, -0.0123242401, 0.00455847569, -0.0134763038, -0.00403222395, -0.00594877498, 0.00522695715, 0.00901027862, -0.0081000058, -0.0075595309, -0.0214198567, 0.0106459251, 0.00195210846, 0.000667148153, -0.0130567253, -0.0349601656, -0.0143083502, -0.00289082737, 0.00477537652, 0.0120397797, -0.00670615025, 0.0309777204, -0.00381176732, 0.00618701056, -0.0123740211, 0.00090005, -0.0102903498, -0.00780843385, 0.0312621817, 0.00974276382, 0.041616533, 0.000144563586, 0.0145643651, -0.0269526076, -0.0215763096, 0.00608744938, 0.00140363351, 0.0102974614, 0.0149768321, -0.000835157523, 0.00610522786, 0.0129856104, -0.00112628483, 0.0308070444, 0.00542963482, 0.0211638417, 0.00546874804, -0.00135207514, 0.00717906561, 8.81715678e-05, 0.00631501758, 0.0154177453, 0.00117695425, 0.0280620027, 0.00925206952, -0.00493538519, 0.0218323246, -0.0100770043, -0.0012107339, -0.0183192398, 0.0171245076, 0.0190446135, 0.00337796542, -0.0102547919, 0.0242929049, 0.0166551471, 0.0116699813, 0.0218892153, -0.000627145928, -0.00690171681, 0.003385077, -0.00525184721, 0.0068590478, 0.00722173462, -0.00932318438, -0.00103116839, -0.00043646869, -0.0200117789, 0.0213771872, -0.00745997, 0.00804311316, -0.00223123515, -0.00977832079, -0.0202962384, 0.00341352308, -0.00281615648, -0.00745285861, -0.00935874227, 0.0127580417, 0.0210642815, 0.00499938894, -0.00035779766, 0.0232688487, 0.0157448743, 0.0109659424, 0.0145785874, 0.00769464951, 0.0127580417, -0.000456025329, 0.0122602368, -0.0109374961, 0.0232261792, 0.00472915173, 0.00760931149, -0.00485360296, -0.0200117789, -0.00208722707, 0.0173094068, 0.0195850879, -0.0104325796, 0.00528740464, 0.00257436535, 0.0312337354, 0.0148772709, 0.0025121395, 0.0148346024, 0.00518784393, 0.0199548863, 0.00787954871, 0.0139669981, 0.00142141234, 0.00915250834, 0.005529196, -0.0221594535, -0.00608389359, -0.0291856211, 0.0194855276, -0.0111295069, -0.0149768321, 0.00491760671, 0.00496383151, 0.00312728481, -0.0128149344, -0.00874715298, -0.0189308301, 0.0102263456, 0.00330862822, 0.00117162068, -0.0123740211, 0.0144576924, 0.015389299]
20 Apr, 2022
Primer CSS Dropdown Options 20 Apr, 2022 Primer CSS is a free open-source CSS framework that is built upon systems that create the foundation of the basic style elements such as spacing, typography, and color. This systematic method makes sure our patterns are steady and interoperable with every other. Its approach to CSS is influenced by Object-Oriented CSS principles, functional CSS, and BEM architecture. It is highly reusable and flexible. It is created with GitHub’s design system. Primer CSS offers dropdowns that can be used as a lightweight context menu for enclosing operations and navigations. In this article, we will discuss different dropdown options available such as alignment, headers, and dividers along with examples. Primer CSS Dropdown Options classes used: dropdown-caret: This class is used to create a dropdown arrow icon. dropdown-menu-ne: This class is used to define menu list items in the northeast direction. dropdown-menu-e: This class is used to define menu list items in the east direction. dropdown-menu-se: This class is used to define menu list items in the southeast direction. dropdown-menu-s: This class is used to define menu list items in the south direction. dropdown-menu-sw: This class is used to define menu list items in the southwest direction. dropdown-menu-w: This class is used to define menu list items in the west direction. dropdown-divider: This class is used to define divider in the dropdown menu list items. dropdown-header: This class is used to create a header in the dropdown menu list items. Syntax: <details class="dropdown details-reset details-overlay d-inline-block"> <summary class="btn"> ... <div class="dropdown-caret"></div> </summary> <ul class="dropdown-menu dropdown-menu-ne"> <li> <a class="dropdown-item" href="#">...</a> </li> ... </ul> </details> Example 1: Below example illustrates the use of Dropdown Options alignment in Primer CSS. HTML <!DOCTYPE html> <html> <head> <title> Primer CSS Dropdown Options </title> <link href= "https://unpkg.com/@primer/css@^19.0.0/dist/primer.css" rel="stylesheet" /> </head> <body> <center> <h1 class="color-fg-success"> GeeksforGeeks </h1> <h3> Primer CSS Dropdown Options </h3> <div style="margin-top: 96px"> <details class="dropdown details-reset details-overlay d-inline-block mb-5"> <summary class="btn"> Select any Course <div class="dropdown-caret"></div> </summary> <ul class="dropdown-menu dropdown-menu-ne"> <li><a class="dropdown-item" href="#">DSA</a></li> <li><a class="dropdown-item" href="#">OOP's</a></li> <li><a class="dropdown-item" href="#">DBMS</a></li> </ul> </details> </div> <details class="dropdown details-reset details-overlay d-inline-block mt-2"> <summary class="btn"> Select Test Series <div class="dropdown-caret"></div> </summary> <ul class="dropdown-menu dropdown-menu-e"> <li><a class="dropdown-item" href="#"> Amazon Test Series </a></li> <li><a class="dropdown-item" href="#"> Microsoft Test Series </a></li> <li><a class="dropdown-item" href="#"> Google Test Series </a></li> </ul> </details> </center> </body> </html> Output: Primer CSS Dropdown Options Example 2: Below example illustrates the use of Dropdown Dividers in Primer CSS. HTML <!DOCTYPE html> <html> <head> <title> Primer CSS Dropdown Options </title> <link href= "https://unpkg.com/@primer/css@^19.0.0/dist/primer.css" rel="stylesheet" /> </head> <body> <center> <h1 class="color-fg-success"> GeeksforGeeks </h1> <h3> Primer CSS Dropdown Options </h3> <details class="dropdown details-reset details-overlay d-inline-block mt-3"> <summary class="btn" aria-haspopup="true"> Select any Course <div class="dropdown-caret"></div> </summary> <ul class="dropdown-menu dropdown-menu-se"> <li><a class="dropdown-item" href="#">DSA</a></li> <li><a class="dropdown-item" href="#">OOP's</a></li> <li><a class="dropdown-item" href="#">DBMS</a></li> <li class="dropdown-divider" role="separator"></li> <li><a class="dropdown-item" href="#"> Operating System </a> </li> </ul> </details> </center> </body> </html> Output: Primer CSS Dropdown Options Example 3: Below example illustrates the use of Dropdown Headers in Primer CSS. HTML <!DOCTYPE html> <html> <head> <title> Primer CSS Dropdown Options </title> <link href= "https://unpkg.com/@primer/css@^19.0.0/dist/primer.css" rel="stylesheet" /> </head> <body> <center> <h1 class="color-fg-success"> GeeksforGeeks </h1> <h3> Primer CSS Dropdown Options </h3> <details class="dropdown details-reset details-overlay d-inline-block mt-3"> <summary class="btn" aria-haspopup="true"> Select any course <div class="dropdown-caret"></div> </summary> <div class="dropdown-menu dropdown-menu-se"> <div class="dropdown-header"> GeeksforGeeks courses </div> <ul> <li><a class="dropdown-item" href="#">DSA</a></li> <li><a class="dropdown-item" href="#">OOP's</a></li> <li><a class="dropdown-item" href="#">DBMS</a></li> </ul> </div> </details> </center> </body> </html> Output: Primer CSS Dropdown Options Reference: https://primer.style/css/components/dropdown#options Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options
https://www.geeksforgeeks.org/primer-css-dropdown-options?ref=asr10
Languages
Primer CSS Dropdown Options
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.016015172, 0.0179321617, -0.0230038855, 0.0267925821, 0.0521964803, 0.00407926505, -0.00495096715, 0.0149585633, -0.000297171238, 3.48173853e-05, 0.0278039072, -0.0118113775, 0.0454643704, -0.0544908307, -0.027819002, -0.0186566934, -0.0321209095, -0.00436983258, -0.0105736358, -0.00726041244, -0.00861136243, -0.0137661044, -0.0368303657, 0.0258567296, -0.00404907623, 0.0243321937, 0.0110943932, 0.0211472716, -0.0122038322, 0.032030344, 0.00506794918, -0.000299293897, 0.0243623815, -0.0422341675, -0.049388919, 0.0243472867, -0.0160604548, -0.00496606156, -0.0212227441, 0.023622755, -0.00907929, -0.00707173208, 0.0264454111, -0.00508304359, -0.0185963158, -0.0244831368, 0.0302039199, -0.0163925327, -0.0169208366, -0.0339624286, 0.0226114299, 0.00642644614, 0.0560606495, 0.0112076011, 0.00594719872, -0.00244340813, -0.035562437, 0.0292076878, -0.0156529061, 0.0161057375, 0.033720918, -0.0313661881, -0.0017452914, -0.0209510438, -0.00160944171, 0.0332680866, -0.0102717476, 0.011554773, -0.0252076685, -0.0119094914, -0.00350567722, 0.00334529928, -0.0114868479, -0.000520757225, -0.0253133308, -0.0175095182, 0.0310039241, -0.0286341012, -0.024785025, 0.0204227399, 0.0139698787, -0.0282869283, -0.0211321767, -0.0214944445, 0.0338416733, 0.00835475698, 0.000592455675, -0.0383096188, 0.0198642462, 0.00797739718, -0.0031962418, -0.003688697, 0.0468228683, -0.0183246173, -0.0444379523, 0.0308982618, 0.0212680269, 0.00755098, -0.0351699814, -0.00573587697, -0.0161963049, 0.0452832393, -0.0328152515, 0.00946419686, -0.000965099, -0.00668682484, 0.0188529212, 0.00640757801, -0.00815098267, -0.0350190364, 0.016860459, -0.000208491576, -0.0231246408, 0.0116076032, -0.0324831754, 0.0139698787, -0.00861136243, -0.0656305, -0.00452832365, -0.00919249747, -0.0112453373, -0.0205133073, -0.0223699193, 0.0797588751, -0.0565738566, 0.026460506, -0.00898117572, -0.00612833165, 0.0345058255, 0.0144679947, 0.014173653, 0.0238038879, -0.0336303525, -0.0140679926, 0.0406643488, 0.0200302862, 0.0148529019, 0.0193208475, -0.0250265356, 0.0176906511, -0.0239095502, -0.0589285865, 0.0492077842, 0.0201208517, -0.0332982726, -0.0161208324, 0.0185661279, 0.0583248101, -0.0278491918, -0.00621889811, -0.0314567573, -0.00610569, 0.0196529254, 0.0101811811, 0.0444681384, 0.00361133832, -0.0246491749, 0.0248152148, 0.0023698227, -0.019562358, 0.0364379138, 0.0122415684, -0.0161661152, 0.0151170539, -0.0287246667, 0.0271095652, 0.016015172, -0.0250869133, -0.0507474169, 0.0532530881, 0.011388734, 0.0377360322, -0.00934344158, 0.00929815788, -0.0251774807, 0.0209208559, 0.0264001284, -0.0322114751, 0.0134038385, -0.00348492246, -0.0681059882, -0.00618870929, 0.00377171626, -0.00652078632, 0.0131019503, 0.0079623023, 0.0381888635, -0.01188685, -0.0452228598, -0.00310190185, -0.0241510607, 0.0107019385, 0.013313272, 0.0382492431, 0.00164246082, 0.000143868616, -0.0235472843, 0.0336303525, -0.0152302627, 0.0129585536, -0.0087547591, -0.0304605253, -0.00417360524, 0.00643399358, 0.0355322473, 0.0194717925, -0.0234718118, -0.0102566537, 0.02158501, -0.00495096715, -0.029841654, -0.0111547709, 0.0141661065, 0.0204982124, -0.0295699537, 0.0181434844, -0.0361964032, -0.0103245778, -0.0422643535, -0.0185208451, -0.000314624165, 0.0474870205, 0.0288907066, 0.00489813695, -0.0686493888, 0.000680663681, -0.0145661086, -0.0151623376, 0.00450568227, 0.00137170474, -0.0203774571, -0.0113132624, -0.012815156, -0.0112302434, 0.0522266664, 0.0120528881, -0.0316077, 0.0196680203, -0.0625512451, 0.0438039862, -0.0185359381, -0.00435473816, -0.0220680311, -0.0221435037, 0.00783400051, 0.014754788, 0.047698345, 0.0129359113, 0.0205284, 0.0251623858, -0.0125736455, 0.00590191549, 0.0169359315, -0.0145359198, 0.00721890293, 0.018037824, -0.01407554, -0.0341133736, 0.0202868897, 0.021932181, 0.018717071, 0.00049198349, 0.0165736657, 0.0428983197, 0.00918495, -0.0257812571, 0.0314869434, -0.0369511209, -0.0253888015, -0.00165849854, 0.0665965453, -0.0445285179, 0.0154264895, 0.0230340734, 0.020739723, -0.00896608084, 0.0143321445, -0.0334794074, 0.0353511125, 0.023275584, 0.0303095803, -0.00322454399, 0.0285888184, -0.00443775719, -0.030354863, -0.0404530242, -0.00749814929, 0.0115170367, -0.0222491641, 0.027652964, -0.00774343358, -0.00842268206, 0.0196680203, 0.0185812227, 0.0443473831, 0.0406643488, 0.0335095972, 0.0137283681, -0.00853589, -0.0126113817, 0.00268114498, -0.0126340231, -0.0054038, -0.00715852529, -0.0402718931, 0.0408756696, -0.00983401, 0.000118219912, -0.032875631, -0.0194114149, 0.0227170903, -0.0247397423, -0.0216906704, -0.0199397188, -0.0454945602, -0.00469813589, 0.0383096188, 0.0013188743, -0.0263850335, 0.000650946517, 0.0241661537, 0.00556983845, -0.0489662737, 0.0443171971, 0.0226416197, 0.0117359059, -0.03909453, -0.0374945216, 0.00993212312, -0.0268378649, -0.049237974, -0.0123321349, 0.044015307, 0.0143472394, 0.018551033, -0.026807677, 0.0116906222, -0.0233510565, -0.00616229372, -0.00327737443, -0.0526795, -0.0288605168, 0.00607550098, -0.00583021669, -0.0285435338, -0.0471247546, 0.00943400804, -0.000971702801, 0.0415700115, 0.0476379655, 0.00152736588, 0.0447096489, 0.0476379655, -0.0271095652, 0.0507776029, -0.0263397507, 0.00975099, -0.0167849865, -0.0195774529, 0.0232453961, 0.0114264702, -0.00553210219, -0.0498115607, 0.00517738331, 0.00644531427, -0.0313360021, -0.000905193039, -0.00480002305, 0.00312454347, -0.000267218275, -0.0495398603, -0.0205434952, -0.000983967, 0.000928778085, -0.0449813493, -0.0164830983, 0.00956231076, -0.0160906445, -0.0565436706, -0.000500474125, -0.035260547, 0.0408756696, -0.0198189635, -0.00102642, 0.0293284431, 0.0101283509, 0.019049149, -0.00830192678, -0.0268227719, -0.0116604334, -0.00888306182, 0.0336001627, 0.0137359155, 0.00255661621, 0.00100849546, -0.000949061185, -0.032724686, 0.0319397785, -0.00134245935, 0.0101057095, -0.00961514097, 0.0510191135, 0.012815156, 0.00499625038, 0.0194717925, -0.020241607, -0.0171321575, 0.00479625, 0.0152830929, 0.0106792971, 0.0321511, -0.00618870929, 0.00148774299, 0.0361964032, 0.0227321852, 0.0127396844, -0.022928413, 0.0614040717, -0.022777468, -0.00291510834, 0.0591700971, -0.0186566934, 0.00711701531, 0.0221435037, 0.0386416949, 0.00117359054, -0.0388228297, 0.0312756225, 0.0479096659, -0.00950193312, -0.0228378456, -0.0252680462, -0.022596335, -0.0661739, -0.00439624768, -0.015849134, 0.019728398, 0.00824154913, -0.039788872, -0.0139170485, -0.0151547901, 0.0318492092, 0.0189585816, -0.0265057888, -0.0345360152, -0.00290378765, -0.0588983968, 0.0170566868, -0.0174038578, 0.00144906365, -0.031034112, -0.01021137, -0.00981136784, -0.00914721377, 0.0253888015, -0.0518040247, 0.00988684, 0.00629814388, 0.000250001205, 0.00642267242, -0.0353209265, 0.0313963778, -0.00546417758, -0.00145755417, -0.0137962932, 0.0237133224, -0.012717043, 0.0220378432, -0.030686941, 0.0221133139, -0.00128491188, -0.0331775174, 0.0544002615, -0.00986419898, 0.0286341012, 0.0125811929, 0.0147849768, 0.0138868596, -0.0451322943, -0.0115472255, 0.0514417589, 0.0118264724, 0.0361360237, -0.0218718033, -0.00925287511, -0.0106340135, 0.0389133953, 0.00115849613, -0.00841513462, -0.0231397338, 0.00726796, 0.00661889976, -0.0463398471, 0.0257359743, 0.00407926505, -0.0162114, -0.0316378884, -0.0408152901, 0.00523021398, 0.0130793089, -0.00150189409, 0.0275623966, -0.0569361225, 0.0386115089, 0.0244227592, -0.0164227206, -0.0302642975, 0.025117103, -0.0156981889, 0.000313680765, -0.0166491363, 0.00260001258, 0.00583776413, 0.00195850013, -0.00323397783, -0.00638871035, -0.0264303163, 0.0384001844, -0.0102189174, -0.0143925222, 0.0265208837, 7.57079106e-05, -0.0123698711, -0.0102189174, -0.017705746, 0.0272303205, 0.0289208945, -0.0342643149, 0.00849815458, -0.0181434844, -0.00809060503, 0.00475851353, 0.020407645, 0.0201963242, 0.00102547661, -0.00809060503, -0.00824909657, 0.0113962814, 0.00227925624, 0.0189283937, -0.045162484, 0.0104830693, -0.0293888208, -0.0134868575, -0.0228680354, 0.0174642354, -0.00264718267, -0.0160604548, 0.00672833435, 0.0384605639, 0.0146415802, 0.0205736849, 0.00914721377, 0.00644531427, -0.0149812046, -0.0397284925, -0.0426266193, -0.00763022574, 0.00571700884, -0.0105208056, 0.00806041621, -0.00917740259, 0.0287095737, 0.00635474781, 0.0417209566, -0.00827173796, 0.0247246474, 0.000724531827, 0.00237170956, 0.00861891, -0.0119623216, -0.0431096442, 0.00651323888, 0.000245284202, 0.0101283509, 0.0202114191, 0.035411492, -0.0273510758, 0.0116906222, 0.013577424, -0.00318492111, -0.0147321466, -0.0158340391, -0.0283925906, 0.00550946081, -0.00342643168, 0.0215246323, 0.000367926317, -0.0233812444, -0.0083321156, -0.00482643861, 0.0101887286, 0.00276227761, -0.0118189249, -0.0359850787, 0.0355322473, -0.00484530628, 0.00622267136, 0.00421511475, 0.0142415781, 0.0138793122, -0.00270378659, 0.00956985727, 0.0172378197, -0.0176302735, -0.0241057761, -0.0120981717, -0.0104453331, 0.0170415919, -0.000971702801, -0.0559398942, -0.0235472843, 0.0443171971, -0.0121057192, -0.00883023161, -0.0159095116, -0.00402266113, 0.000735852635, -0.00963023491, -0.0204831176, 0.0142717669, 0.0048113442, 0.0400303826, 0.00201699091, 0.0227925628, -0.0142642204, -0.00930570532, -0.0120076053, -0.00427926611, 0.00490945764, -0.0299775042, -0.0175698958, -0.00455851248, -0.021735955, 0.0109283552, 0.0260982402, 0.0112981675, 0.00625286065, -0.00624531321, 0.00441888906, -0.00549059268, 0.0166793261, -0.00744154537, 0.0796381235, -0.013230253, 0.0237284172, 0.0193812251, 0.0265359767, 0.0223397315, -0.0104151443, -0.026460506, -0.000280190026, 0.00472455099, 0.0233812444, 0.00597738754, -0.00207925541, -0.0162114, -0.00771324476, 0.000291982549, 0.00628304947, -0.00769815035, -0.0418719, 0.0116679808, -0.0137736518, -0.00191982056, -0.0286039114, 0.0141434642, 0.00978117902, 0.0095245745, 0.0228982233, 0.00969061255, -0.00904155336, -0.00846796576, 0.0288605168, -0.00723022362, -0.0391549058, -0.0107472222, 0.0299624093, -0.0176000856, 0.00495851459, -0.0170114022, 0.0128604397, 0.0495398603, 0.0325435549, -0.00607172726, -0.00598870823, -0.0123396823, -0.00372077269, -0.003394356, 0.0229435079, 0.00422266172, 0.00036061494, 0.0293737277, 0.00652456, 0.0058755, -0.0253133308, 0.0115019428, -0.0190340541, 0.00628682273, 0.00505285477, 0.00440756837, -0.0283171181, -0.046551168, 0.0116076032, 0.00453964481, 0.0139698787, -0.0130038364, 0.0325133651, -0.00349058281, -0.00923023373, 0.0214944445, 0.019547265, 0.0119623216, 0.0277133416, 0.00856607873, 0.0296001434, -0.00817362405, -0.00534719555, -0.0289359894, -0.0111019406, -9.27480869e-05, -0.0010764203, 0.000905193039, 0.0026490693, -0.0383096188, -0.0113509987, -0.0123472298, -0.0102642, -0.0200755689, 0.00156887551, -0.0245133266, 0.0111623183, 0.00166887604, 0.000502360926, -0.017358575, 0.00052830443, 0.00561512168, -0.00208868925, 0.0179321617, 0.0127698733, 0.0190038662, -0.00211887807, 0.013660443, -0.0136755379, 0.00858872104, 0.000784437754, 0.0315775126, 0.00181510311, 0.0159698892, 0.0137585569, 0.0026226542, 0.0179774463, 0.0398190618, -0.0200906638, -0.0293284431, -0.000339152582, -0.0209963284, 0.00191793381, 0.0118642086, 0.0287699513, -0.0112377899, 0.0109283552, -0.0012198172, -0.00501511851, -0.0255095568, -0.011305715, -0.0277435295, -0.0013735916, 0.0090491008, 0.0139547847, 0.0333586521, 0.0296605211, 0.0309133567, 0.00983401, -0.0108302413, 0.0052339877, -0.0253284238, -0.0113359038, -0.0223699193, 0.0122717572, -0.00849060714, 0.0273963585, 0.019562358, -0.015683094, 0.00996231195, -0.0193661321, 0.0307775065, 0.0269284323, 0.0219925586, 0.0307322238, 0.00978872646, 0.00518493075, -0.00443021, 0.0193359423, 0.0471549444, -0.0339926183, -0.00781890564, -0.00998495426, 0.000761796138, -0.0313360021, -0.00854343735, -0.0222793538, -0.0199095309, 0.00980382133, 0.0387624502, -0.0274718311, -0.0253435187, -0.014407617, -0.0214189719, -0.00529436534, 0.0146038439, -0.00102547661, -0.0279095694, 0.034566205, 0.024286909, -0.0130868554, 0.0342945047, 0.0384303741, -0.0168151762, 0.0360454582, -0.00556229101, -0.00860381499, 0.0115094893, 0.00330190267, -0.0391850956, 0.00986419898, 0.00413209526, -0.00490191067, 0.00429813378, -0.024120871, 0.000818400178, -0.0252680462, -0.0159397, 0.0213736892, 0.00461889, -0.000679248595, 0.0149359209, 0.0279397573, 0.0156378113, 0.0202868897, -0.0360152684, 0.0252680462, -0.00604531216, -0.0117585473, 0.00643776683, 0.00171604601, -0.00341511075, 0.00953966845, 0.0271095652, 0.00506794918, 0.0352001712, 0.00421511475, -0.0136830853, 0.0275322087, -0.00370379142, 0.0234567169, -0.0259472951, 0.0140679926, 0.0368907452, 0.0111170346, 0.00255472935, 0.011969869, -0.0211925544, 0.00613587862, 0.0197736807, 0.0324529856, -0.00728305429, -0.0113509987, -0.0140227089, -0.00716229901, -0.00648305, 0.021932181, 0.00636229478, 0.0206189677, 0.00517361, -0.0126264766, -0.0249208752, -0.0269888099, -0.0083321156, 0.0172831025, 0.0468832441, 0.0117887361, -0.0332077071, -0.00627927575, 0.0210265163, 0.0129585536, -0.0446794629, -0.00845287088, 0.0058075753, -0.0052339877, -0.0235774722, -0.00806041621, -0.00987929292, -0.0479096659, -0.0023434076, 0.00532832742, 0.0140378037, 0.0018443485, -0.0195170753, 0.018701978, 0.0052868179, 0.0146189388, 0.0235774722, -0.0119547751, 0.0070755058, -0.00615474675, 0.0248001199, 0.0341737494, 0.00840758812, 0.01399252, 0.0127547784, 0.0210567061, -0.00191416021, -0.0090491008, 0.0463398471, 0.0314869434, -0.0207548179, 0.0255095568, 0.0292076878, -0.0140151624, 0.00472832471, -0.0209963284, -0.0163774379, 0.0501436405, -0.00732456381, -0.0109057128, -0.0103547666, 0.00261133327, -0.00873211771, 0.0169963092, -0.0154868672, 0.0123019461, 0.0110868458, 0.00271322066, -0.0140378037, -0.0161208324, -0.01188685, 0.0332982726, -0.0548530966, -0.0167698916, 0.0196378306, 0.0351699814, -0.0134264799, -0.0241661537, -0.000838683278, -0.0339322388, -0.02158501, 0.0174038578, -0.00935853552, 0.0237737, 0.00878494792, -0.00553587591, -0.000905193039, -0.031034112, 0.0203774571, -0.0093283467, -0.0294190105, 0.0123623237, 0.0196076427, 0.0148755433, 0.0114491116, -0.0276680589, 0.0143698808, 0.0122038322, 0.0482115522, -0.00687550474, -0.00553964963, -0.0162114, 0.0276982468, -0.000819343608, -0.00382643356, 0.0197887756, 0.030354863, -0.0175095182, -0.00592833059, 0.0374341421, 0.0131623279, -0.0137736518, -0.00732456381, 0.0150793185, 0.0305661857, 0.0247246474, -0.0172981974, 0.0180076342, 0.0196227357, -0.0351699814, 0.0393964164, -0.0203170795, 0.00195661327, 0.0224906746, -0.000893872231, 0.0190340541, -0.0138717648, 0.00541134691, 0.0145661086, -0.0388228297, 0.0305209029, 0.00141321437, -0.0100830672, -0.0135849714, -0.011622698, 0.00943400804, 0.00177548022, 0.0252982359, 0.0036000174, 0.0315775126, 0.0211472716, 0.00163868722, -0.00555097032, 0.00457738061, 0.00206227414, -0.0288001392, -0.021086894, -0.00147359201, 0.013328366, -0.00754343253, -0.00719626108, 0.0172831025, 0.00542644132, 0.00148679968, 0.0211170837, -0.022777468, 0.00615852047, -0.00817362405, 0.00944910198, 0.015501962, -0.00926042255, -0.0212076493, 0.0110189216, 0.00661512651, 0.00440379465, -0.000141156343, -0.00678871199, 0.00713965716, 0.00866419263, 0.00962268841, -0.0175698958, -0.057841789, 0.0027113338, -0.0237586051, 0.0116755283, -0.0182793345, -0.0139321424, -0.0110189216, -0.00587172667, 0.00086368341, 0.0139547847, 0.00168302702, 0.0044528516, -0.0198189635, 8.40216308e-06, -0.0114189228, -0.00248114415, -0.00391700026, -0.000354247, 0.0196227357, -0.00233208667, -0.0148302605, 0.00492077833, 0.000423586956, -0.00821890775, -0.0251774807, 0.0147849768, 0.00396605674, -0.0206491556, 0.0386115089, -0.00700003374, -0.0271397531, 0.00901891198, -0.00893589202, 0.0154415844, 0.0171774421, 0.00907174218, -0.0136227077, -0.00196604733, -0.00774343358, -0.00478115538, -0.00390567933, -0.0020905761, -0.0116453394, 0.0384303741, 0.000879249536, 0.0106038246, 0.025630312, -0.0189585816, -0.0260982402, 0.0148830907, -0.00581512228, -0.0121887382, -0.0316680782, 0.00202453812, 0.0169208366, -0.00244529475, -0.00530568603, -0.028996367, 0.00545285642, 0.0126868542, 0.0757135749, 0.00605663285, -0.0123547763, -0.040483214, -0.00696984492, -0.0224152021, 0.0112000545, 0.00281133433, 0.0308680739, -0.0236529447, 0.0276982468, -0.0149057321, -0.00116698677, 0.0166642312, -0.0182189569, 0.0185812227, -0.00336039369, 0.00759248948, 0.0140981814, -0.0256001242, 0.00560380053, 0.00292454241, 0.0137283681, -0.00661889976, 0.0156529061, -0.0138491234, 0.021751048, -0.0154868672, -0.029494483, -0.0211019889, 0.0239246432, 0.0021452934, 0.0361964032, 0.000159198884, -0.0102038225, 0.0089509869, 0.00945664942, 0.00675474945, -0.0410266146, 0.0033396387, -0.00768682966, -0.00346039399, -0.00854343735, -0.00381322601, -0.00585285854, 0.00169529126, -0.00997740682, -0.0233812444, -0.0043283226, -0.00100377842, -0.00167359295, -0.0206038728, 0.00469436217, 0.00730192196, -0.0283925906, 0.0230944511, 0.0053585167, -0.0158793218, 0.045705881, -0.00821890775, -0.00543776201, 0.00501134479, 0.0235774722, -0.0307775065, 0.00977363251, 0.0208453834, -0.000669342873, 0.0132000642, -0.0132755358, 0.014324598, 0.013230253, 0.0176604632, 7.80074552e-05, 0.00690946728, -0.0201510414, -0.00215284061, -0.00031320905, 0.00820381287, 0.0131849693, -0.0239397381, -0.01356233, -0.0161057375, -0.00981891528, 0.0196982082, -0.0262340885, 0.00646795565, -0.00818871893, -0.0289208945, -0.00908683613, -0.0178114064, 0.0103094839, -0.0282114577, -0.0323020443, 0.0105887307, -0.00218868977, -0.0148830907, 0.0348077156, 0.0291624051, -0.0107698636, 0.00342077133, 0.0176453684, 0.0150717711, 0.00286039128, 0.0074339984, -0.00136227079, -0.0213284045, 0.0318794, 0.00420002034, -0.0138793122, 0.0167849865, 0.0370416902, -0.00297359936, -0.0240755882, 0.000614625635, 0.0107698636, 0.0152906403, 0.0123925125, 0.0161359273, 0.0396681167, -0.000306605245, -0.0120000578, 0.0154415844, 0.0211321767, 0.00986419898, -0.00123585504, -0.0240755882, -1.22273586e-05, 0.0126642119, 0.0202717967, -0.00825664401, 0.00310190185, 0.0129434587, 0.00578116, 0.00275095669, -0.0112528848, 0.0236982275, -0.0092755165, 0.0186265055, -0.00746418722, 0.0255548414, -0.014422711, 0.00790192466, -0.0274869259, 0.0164378155, -0.00299246726, 0.012234021, 0.000353067735, 0.00558493286, 0.0142944092, 0.00259812572, -0.00521889329, -0.0352303572, 0.00385096204, 0.00887551438, 0.00636229478, -0.0057094614, 0.0155472448, -0.0160453599, 0.00704909069, -0.0184000898, 0.00100755203, 0.0309435464, 0.0148679968, 0.021086894, 0.0165887587, 0.0304303356, 0.00333020487, -0.0186566934, -0.0154189421, -0.00809815247, -0.0142642204, -0.0124604376, 0.0242114384, -0.00462643756, 0.0194114149, -0.00302831642, -0.00589059433, -0.00387171679, 0.00578493346, -0.0041924729, 0.00185566931, 0.0050000241, 0.00218302943, 0.00216982188, -0.0220982209, -0.00589436805, -0.000181132957, -0.0185208451, -0.0207699109, 0.0108830715, -0.00896608084, -0.000202123614, 0.022083126, 0.0158944167, 0.00294341054, 0.0165434759, -0.00538115809, 0.015434037, 0.0245284196, 0.00316793984, -0.0230793562, -0.025811445, 0.0160302669, -0.00098491041, 0.0114264702, 0.00770192407, -0.00749437604, 0.00138774258, 0.026309561, -0.0147774303, -0.0132755358, -0.00171038567, 0.00824909657, -0.015003846, 0.00629437, 0.0116528869, 0.0206793454, -0.0122113796, 0.00861136243, 0.00267359777, 0.0128227035, 0.0252227634, -0.00482266489, 0.00379624474, 0.00962268841, 0.0114642065, 0.016513288, -0.000899061, 0.0233661514, -0.00763777271, -0.00107547687, 0.0305661857, 0.0293737277, 0.00626418134, 0.0220680311, 0.016528381, 0.0206491556, -0.0302944854, -0.0188227333, -0.018883111, 0.0170415919, 0.0294642933, 0.00126227026, 0.015668001, -0.000764626311, -5.54542785e-05, -0.00557738543, -0.0112830736, -0.0241510607, 0.0260076728, 0.00394341536, -0.0131849693, 0.0293284431, -0.00957740471, -0.0031773739, -0.00724531803, 0.00804532226, -0.0145812025, 0.0027735983, -0.0290567447, 0.00133868575, 0.00477738166, -0.0133057246, -0.00391700026, -0.0233812444, 0.00936608296, -0.0342039391, -0.00411322759, 0.00162359281, -0.0182340499, -0.0107245799, 0.0320001543, 0.00302265608, 0.0222038813, 0.0197133031, -0.00776607543, 0.0144378059, -0.000327595917, -0.0238189828, -0.00223774672, -0.0327548757, 0.0355322473, 0.00726041244, 0.0160453599, 0.0103170313, 0.00248303078, -0.015849134, -0.0064905975, 0.0192604698, 0.00340001634, 0.00715475157, 0.00781135866, 0.0127774207, 0.0360454582, 0.0136830853, 0.0428983197, 0.0118717551, 0.000287501403, 0.00172925368, -0.000738211093, -0.00154246029, 0.00820381287, -0.0305963736, 0.0265812613, -0.00448681414, -0.00438492699, 0.0241963435, 0.00519247772, 0.00304529769, -0.0264001284, 0.00758116879, -0.0314265676, 0.0167246088, -0.0304454304, -0.011388734, -0.0166944209, 0.0356228128, 0.00495096715, 0.00355284731, -0.00495096715, -0.0154491309, -0.0162566826, -0.0401813276, -0.00730192196, 0.0149132796, -0.0155925285, -0.00174340466, -0.00306416582, -0.0223850142, -0.00718494039, 0.0209359508, -0.00824909657, -0.0386115089, 0.0298265591, 0.0205284, -0.00201699091, -0.0160000771, 0.0085283434, 0.000323114771, -0.00300001446, -0.032030344, 0.0186416, -0.0027471832, -0.00229623751, 0.00202265126, -0.000609436887, -0.0138717648, 0.0130944028, -0.00116321316, -0.00292831613, 0.00282454188, -0.0348680913, -0.00396983046, 0.00928306393, -0.00713588344, 0.0129887424, 0.0107472222, 0.0328454413, 0.0160000771, 0.00808305759, 0.031185057, 0.0211019889, 0.00150849787, -0.00813588873, -0.000402596284, -0.0223095417, -0.0051358738, -0.00311133568, 0.0233359616, 0.0336605385, 0.0011717038, -0.00986419898, 0.0106943911, 0.000432549248, 0.000916513847, 0.0309133567, 0.0121585494, -0.00945664942, -0.0139170485, -0.00846041832, -0.0159849823, -0.00552455522, 0.0110113742, -0.00970570743, -0.0106792971, -0.0161510222, -0.0121585494, 0.0240001157, 0.00935853552, -0.0117736422, 0.0422341675, 0.0003040109, -0.011290621, 0.00980382133, -0.0307926014, 0.0257208794, -0.0356831923, -0.001612272, -0.00926042255, -0.000995287788, 0.0322416648, 0.00129623269, -0.0144906361, 0.00222453894, 0.0319699645, -0.00302265608, -0.000351416791, -0.0222642589, -0.000176651796, -0.0179925393, -0.00112170354, -0.0131472331, -0.0284831561, -0.0225359574, -0.0124302488, 0.020588778, 0.0100755207, 0.0222642589, 0.0090491008, 0.00622267136, 0.00613587862, 0.00273397542, -0.0190340541, 0.0112453373, 0.0174189527, -0.0245887972, 0.0261586178, -0.00546417758, -0.0235321894, -0.00151887524, 0.000628304901, -0.00714343088, -0.00533964857, -0.0143623333, -0.0220076535, -0.009947218, -0.00834721047, 0.0111925071, 0.00363964029, -0.005098138, -0.00151038461, 0.00543776201, 0.00566040492, 0.014920827, 0.0175698958, -0.028649196, 0.0114868479, -0.00603399146, -0.00677361758, 0.00533210114, 0.00614342606, 0.00737362076, -0.00558115914, 0.0039773779, -0.00787928328, -0.0162415877, -0.00712833647, -0.0348077156, 0.000178774455, 0.000404718943, -0.022083126, -0.0153434705, -0.0205736849, -0.0179774463, -0.000164269659, 0.00585285854, 0.011969869, -0.0160604548, 0.0188680161, -0.0040302081, -0.00928306393, -0.0127698733, 0.0183397122, -0.00327548757, 0.00764532, 0.00367360259, -0.0237284172, -0.00127925142, -0.00507549616, -0.0067773913, -0.00173302728, 0.00597738754, 0.0249359701, 0.0222340692, 0.0176906511, 0.0464002229, 0.0181283895, 0.020241607, 0.0365284793, 0.00588304736, 0.0183095224, -0.00911702495, 0.0147849768, -0.0146491276, -0.0127698733, 0.0055207815, -0.00355662103, 0.0219925586, -0.00580002787, -0.00978117902, 0.0136679905, -0.00964533, 0.0123094935, -0.0142264841, 0.0244076643, 0.0257057846, 0.0124528902, 0.00634720037, 0.00675474945, 0.00852079596, 0.00322077028, -0.0393360406, -0.0193661321, 0.0163925327, 0.0149887521, 0.00864909869, 3.24883658e-05, -0.019894436, 0.00984155666, 0.0113509987, 0.0190944318, 0.00573587697, 0.0225208644, -0.021932181, -0.0130415726, 0.0203019846, -0.00195283967, 0.0163774379, 0.0082340017, 0.00454719178, 0.022777468, 0.00872457, -0.00863400381, -0.00331888394, -0.0147321466, -0.00666040974, 0.00409813318, -0.0316378884, 0.0135321412, 0.0088075893, 0.00635852152, 0.0181132946, -0.0180076342, -0.00253397459, -0.00228680344, -0.010709486, -0.000319577026, -0.0157132838, -0.0122264745, -0.0134113859, -0.00215472747, -0.0100830672, -0.00886796694, 0.00672078738, 0.0069660712, 0.0153963007, 0.00303775049, -0.0126264766, -0.00722645, 0.0170114022, 0.00489436323, -0.0114566591, 0.0249057803, -0.00572078256, 0.00695097679, 0.0140830865, 0.000215449152, -0.0038169995, -0.00247925729, 0.00152170542, 0.0035377529, 0.00487926882, 0.030188825, 0.0254793689, 0.014837808, 0.00965287723, -0.00569436699, 0.0195925478, -0.00670946622, -0.0137057267, -0.00770192407, -2.7476548e-05, 0.00247359695, -0.00103868428, 0.0226114299, 0.00771701848, 0.00772833917, 0.0324228, -0.0133208195, -0.00319058145, 0.00142453518, 0.0123396823, -0.015683094, -0.0136528965, -0.0156378113, -0.0145208249, -0.0193812251, -1.49764874e-05, -0.00296982564, 0.00780381123, -0.0102264648, -0.00863400381, 0.00155849813, -0.00636984222, -0.0168151762, -0.0307473186, 0.0151321488, 0.0117057171, -0.0433511548, 0.00136887457, 0.0218718033, -0.0314567573, -0.0010688731, -0.00415096339, 0.0296454262, 0.00495851459, -0.00786418933, -0.0125887403, -0.00906419475, 0.000652833318, -0.00364341377, 0.00969061255, -0.0279246625, 0.0045509655, 0.0126642119, -0.0100830672, 0.0360454582, -0.0113283563, -0.00327360071, 0.00101698609, -0.0113283563, 0.016015172, -0.0015169885, 0.00708682649, -0.01399252, -0.0376756527, -0.0116981696, -0.01939632, 0.00155849813, 0.00830947421, 0.00325284596, 0.00475474, -0.0109359017, -0.0158793218, 0.00532832742, -0.0111170346, -0.0088075893, 0.0063283327, -0.0221585985, -0.0224755798, 0.0142038418, 0.0164981931, 0.00743022468, -0.00920004491, 0.00436228514, 0.000629720045, -0.0111774122, -0.00563776307, -0.00561889494, 0.00154812064, 0.0198340584, -0.00664154161, 0.00143019564, 0.00252831401, 2.44104958e-05, -0.0211925544, -0.00306416582, -0.00756230066, -0.0128377983, 0.0218718033, 0.00222265231, -0.0170868747, -0.0123396823, 0.0155925285, -0.00700380746, 0.0222038813, 0.0150415823, 0.00836230442, -0.0160906445, -0.011124582, -0.0151925264, -0.00530568603, 0.0132679883, -0.00964533, 0.00678871199, -0.0249208752, 0.00128396845, -0.0233963393, 0.0105057107, 0.00854343735, -0.00309246778, 0.00864155125, -0.021086894, 0.00147453544, 0.0145585611, -0.0236378498, -0.017856691, 0.0139396898, 0.00165944197, -0.00133491214, 0.0207850058, 0.0011679302, -0.00232831319, 0.000437737966, 0.0119396802, 0.0234869067, -0.00836985186, 0.00264340895, 0.026656732, -0.0126038343, -0.0266265441, -0.0103774089, -0.0038056788, -0.0083849458, -0.0172227249, -0.0295397658, 0.010460428, 0.00793211348, 0.00254718214, -0.00238869083, 0.00460756943, 0.00331133674, 0.0237737, -0.00608304841, -0.0122113796, 0.00577361276, 0.00146132777, -0.0217963327, 0.0112377899, -0.00367737631, 0.000462266384, 0.019547265, 0.00852079596, 0.000109611377, -1.10702185e-05, -0.0137057267, 0.000967929198, 0.0153283756, 0.000902834581, 0.000926419569, 0.00508681685, 0.0104528805, 0.00449813483, -0.00396605674, 0.00668305112, -0.00345473364, 0.0126944007, 0.00641135173, -0.0189283937, 0.0240453985, -0.0173887629, -0.0053962525, 0.00910947844, 0.0112830736, 0.0174642354, 0.00472077774, 0.0136227077, 0.0185661279, 0.0149283744, 0.0161661152, -0.00626418134, 0.00406039692, -0.01407554, -0.00394718908, 0.0010141558, -0.00570568815, -0.0100679733, 0.0244982317, -0.0284227785, -0.0102642, 0.00581512228, -0.000880192907, 0.034566205, -0.00894343946, -0.00349624339, 0.028996367, -0.00499247713, -0.0238793604, 0.00582644343, 0.0349586606, 0.0126340231, -0.0258265398, -0.00103113707, -8.93872275e-05, -0.00260001258, 0.00337171438, -0.0010688731, 0.0208604783, 0.0196227357, 0.0143925222, -0.0187472608, 0.0325737409, 0.0125811929, -0.0249359701, 0.0199850015, 0.00703399628, 0.0031962418, 0.00746796047, -0.0229887906, 0.00361511181, 0.000824060582, -0.0106038246, 0.00687550474, -0.0222642589, 0.00435851142, 0.00144245976, 0.0122415684, 0.0058755, 0.00877740048, 0.000550474331, -0.00186887698, 0.0042641717, 0.0089057032, -0.00538870553, 0.0172227249, -0.0367398, -0.00861891, -0.0181887671, 0.00312454347, -0.0189585816, 0.0134038385, 0.000725475198, -0.00501511851, -0.00710946834, 0.0196227357, -0.00256982376, -0.00923778, -0.00646040868, 0.00674342876, -0.00691701472, -0.0034019032, -0.00511700567, -0.03441526, 0.0067509762, -0.0117962835, 0.0108453352, 0.00982646272, 0.0110792993, 0.00553587591, -0.00043844551, 0.0171472523, 0.0289359894, 0.0216001049, 0.00583021669, -0.0116755283, -0.0083773993, 0.0100377845, -0.00716607226, 0.00843777694, -0.00924532767, 0.00411322759, 0.0017518953, 0.00539247878, 0.00637738919, 0.0255850293, 0.0159246046, -0.00996985938, -0.0177963115, -0.013245347, 0.00364718749, 0.00603021774, -0.00420756731, 0.0153434705, 0.0272152256, -0.0058453111, 0.0165736657, -0.00505662803, -0.0125434566, -0.0271246601, 0.00363020622, -0.00382643356, -0.0104453331, 0.0214491598, 0.00979627389, 0.033871863, -0.0315775126, -0.0221284088, -0.00628304947, -0.00633587968, -0.0243472867, 0.0146491276, 0.00221133139, 0.00864155125, -0.0175246131, 0.000188208462, 0.00113962812, -0.000273822079, 0.0155774336, 0.022430297, -0.0237586051, 0.00821890775, 0.0316077, 0.00506417546, -0.00283963629, -0.00815098267, 0.0301737301, -0.00250378577, 0.0101208035, -0.00361322495, 0.000578304694, -0.0139472373, -0.020739723, -0.0106415609, 0.00147642219, 0.00122170406, 0.0153736593, -0.00557738543, 0.0222189762, 0.0201812293, 0.0169057418, -0.040785104, 0.0161963049, 0.023275584, -0.0110792993, -0.0243774764, -0.00840004068, -0.000929721456, 0.00865664519, 0.00948683824, -0.00406794436, -0.002064161, 0.00532832742, -0.013826482, -0.0288907066, 0.0120528881, 0.00887551438, 0.0238189828, 0.0151095074, 0.0211019889, 0.0154717732, 0.00553587591, 0.0076226783, 0.00819626637, 0.0135019524, -0.012467985, -0.0211925544, -0.00615852047, 0.0174491405, 0.011720811, -0.0206793454, -0.0313058123, -0.00110755255, -0.00825664401, 0.00558493286, -0.0110264681, -0.00491700508, 0.00603021774, 0.012815156, -0.012898176, -0.00602267077, 0.00363586657, 0.0148227131, 0.00216038781, -0.00680003269, -0.00928306393, -0.0240303054, 0.009947218, 0.0153661119, 0.0089057032, 0.014837808, -0.00868683401, 0.000331605377, 0.0263850335, 0.0127094956, 0.0244076643, -0.0300831646, 0.00360379112, 0.00425285054, -0.0148453545, 0.00041415295, -0.00202265126, 0.00191416021, 0.00799249113, -0.00044646443, 0.00771701848, -0.0272756033, -0.0125283627, -0.00771324476, 0.0250567254, -0.022762375, -0.0125208152, -0.00325661944, -0.0425662436, -0.0139170485, 0.0181434844, -0.00133208185, 0.0151095074, 0.000832551217, -0.0113359038, 0.00584908482, 0.0123245874, 0.0145661086, 0.013313272, -0.0259925779, -0.024271816, 0.00386228273, 0.00606040657, 0.00683022151, 0.00519247772, 0.0118491137, 0.00894343946, 0.0130113838, -0.010528353, 0.0168151762, 0.00799249113, -0.00585285854, -0.0191397145, 0.0159698892, 0.0179623514, 0.00406039692, -0.00649814447, -0.00062924833, -0.0205284, 0.00896608084, 0.00117830758, -0.0104151443, 0.00580380158, -0.0098943878, 0.0034019032, 4.9292692e-05, -0.0164981931, -0.0118793026, 0.0174491405, 0.0210114215, -0.00724531803, -0.00147642219, 0.00399624556, 0.0325737409, -0.00474341912, -0.000979250064, -0.00644154055, -0.00319246831, 0.00618116185, 0.000834909675, 0.00923778, 0.00255850283, 0.0101585397, -0.00317171356, 0.00360190426, 0.0147925243, 0.0195321701, 0.0153283756, -0.0110868458, -0.000416511437, -0.00962268841, 0.00967551861, -0.0116076032, -0.0434719101, -0.00971325487, 0.00734720519, 0.00254529528, 0.00143679942, -0.000452832377, -0.0109509965, 0.0026849187, 0.0303246751, -0.00516606262, 0.00350190373, 0.0328454413, -0.0193510372, 0.00345096015, -0.00901136454, -0.0226567127, 0.0128377983, -0.00501889223, -0.0139849735, -0.0281359851, -0.019562358, -0.028166173, 0.0279850401, 0.00215850095, 0.00746418722, -0.0179774463, 0.00430190749, -0.00378115033, 0.0222491641, 0.018551033, -0.00876230653, 0.0093283467, 0.00456983363, -0.00576229207, 0.0117132645, 0.00435096445, -0.00938872434, -0.0170415919, -0.00027075602, 0.0120226992, -0.00482266489, 0.0173132904, 0.00025754841, 0.00616229372, 0.00298680691, 0.00261510699, -0.00606040657, -0.0203774571, -0.0133661022, -0.00112830731, 0.013909501, 0.0251623858, -0.0068151271, 0.0032396384, 0.0155774336, -0.0146944104, -0.00480002305, 0.00723777106, 0.00533587486, -0.00547927199, -0.000447407831, 0.0167246088, 0.0144755421, 0.0128604397, 0.00172925368, -0.0200906638, 0.00156793208, -0.0136378016, 0.0266265441, 0.0122868521, -0.0174491405, -0.000475238136, -0.00673210807, -0.00212265179, -0.0223095417, 0.00250378577, -0.0171472523, 0.0308378842, -0.00740003586, -0.0282265507, -0.0103774089, 0.00842268206, 0.0196831133, -0.0159547944, -0.00672833435, -0.0101057095, 0.028845422, -0.0119547751, -0.0163925327, -0.0165585708, -0.00771324476, -0.00277171144, 0.00700380746, 0.0104226917, 0.00987174548, -0.000830192701, -0.0147170527, 0.0208001, 0.0049471939, -0.00352265849, 0.0377360322, 0.00660380535, -0.0206189677, 0.0121585494, 0.0210416112, -0.0207850058, 0.00626795506, -0.00802268, -0.00341511075, -0.00929815788, -0.00726796, 0.0143623333, 0.0152000738, 0.00580380158, -0.0165736657, -0.00154434703, 0.0239095502, 0.000997174648, 0.0248604976, 0.0123547763, -0.00105094851, -0.0173132904, -2.3540797e-05, -0.0121208131, 0.0174793303, -0.00858117361, 0.0280454177, 0.0139396898, 0.0051094587, 0.00726418616, -0.0120377941, -0.0190642439, 0.00626040762, 0.00827928539, 0.023622755, -0.013494405, -0.00779626425, -0.00178114069, -0.00382643356, 0.00215661409, 6.29130373e-05, 0.00230001123, -0.0270340927, 0.0074604135, 0.0113132624, 0.00150661101, -0.000346228102, -0.00119340199, -0.00100472185, -0.0262793731, -0.00449813483, -0.016513288, -0.0153208291, -0.00829437934, -0.0269133374, -0.00171227241, 0.0136528965, 0.00936608296, 0.0198793411, -0.0235925671, -0.0145208249, -0.00140095013, -0.0128377983, 0.00448304042, 0.00321511, -0.013230253, 0.0412379354, -0.0118793026, 0.00718494039, 0.00363586657, -0.0107623162, 0.0067773913, -0.000608965231, 0.0139849735, 0.00988684, -0.00870947633, 0.000925004482, 0.00560380053, 0.0166642312, 0.00657361653, 0.00337360124, -0.0031151094, 0.014671769, -0.0145736551, 0.0177359339, -0.0127245896, -0.0229736958, -0.0050264392, 0.00996985938, 0.0115019428, 0.0156981889, 0.0240906831, -0.0321511, -0.0171019696, 0.00123208144, 0.0104830693, 0.021751048, -0.000395756622, 0.00676607061, 0.000989627442, -0.00346982805, 0.00713965716, 0.00295095774, -0.00189812237, 0.00345284678, 0.0126944007, -0.00607172726, 0.00763777271, 0.00406039692, -0.00493209949, 0.032181289, 0.00655852212, 0.0274416413, -0.00500757154, 0.00309058093, 0.0206189677, 0.0062302188, 0.0108302413, -0.00258491817, 0.0146944104, 0.00102642, 0.00585663226, -0.000746701728, 0.0060792747, -0.00667550415, -0.00763022574, -0.00537361111, 0.00955476332, -0.00936608296, -0.0138944071, 0.00720758224, 0.0130189313, -0.00467549451, -0.0103698615, 0.0107623162, -0.00288114604, -0.011622698, 0.0111472234, -0.0138868596, 0.00429813378, -0.0198189635, 0.00460379571, 0.0127698733, 0.0170415919, 0.0174944233, 0.01939632, -0.0162717775, 0.00506040175, -0.00106981653, -0.0119547751, -0.00153208291, -0.0407549143, 0.0102642, -0.00658871094, -0.00743777165, 0.00160000776, 0.00356416823, 0.0166038536, -0.00547549827, -0.0171019696, -0.00444530463, -0.0173887629, 0.00246227602, 0.0196529254, 0.0139623312, 0.00498870341, 0.0190340541, -0.0271095652, -0.00723022362, 0.0119396802, 0.0147321466, 0.0321511, -0.0121887382, -0.00974344369, -0.0075962632, 0.014407617, 0.00621512439, 0.00769815035, -0.00142076157, -0.018037824, -0.00957740471, -0.00684908964, -0.00304529769, -0.0221585985, 0.00531700673, 0.00410945388, -0.0239699278, -0.000307784503, 0.0141962953, 0.00247925729, 0.00293963682, 0.0279246625, 0.00878494792, 0.00192925462, -0.00709814765, 0.00960004609, -0.00639625732, -0.0130038364, -0.00489813695, -0.0204529297, -0.0059962552, 0.0181585792, 0.0404228382, 0.0054943664, -0.00981891528, -0.00216038781, 0.0148227131, -0.00806041621, 0.00299246726, 0.00409058575, -0.0108981663, 0.00478870235, -0.0101736337, 0.00343397888, 0.0378567874, 0.00739626214, 0.00824154913, 8.67928757e-05, -0.0197133031, -0.00406417064, 0.00769437663, 0.0072981487, 0.0185359381, 0.0121434545, 0.0110566569, -0.0105660884, 0.00966797117, -0.0111094881, 0.0190189593, -0.0112377899, -0.0069396561, 0.0111547709, 0.00252642739, 0.00725663872, 0.0104528805, -0.00881513674, -0.00413209526, -0.00865664519, 0.0102189174, 0.00116226973, -0.0118793026, -0.0084302295, -0.00326794037, 0.0133887436, -0.0789135918, -0.00233586039, 0.0120755304, 0.00941891316, 0.00800003856, -0.0064905975, 0.0181585792, 0.00287359883, 0.00104811823, 0.0221284088, 0.00469058892, -0.00204151939, -0.0138793122, 0.00275850389, -0.021252932, -0.00313963788, 0.00196038675, 0.00168585719, -0.000845758826, -0.00979627389, 0.0106943911, 0.0193208475, -0.000370520662, -0.0085283434, 0.0160906445, 0.0166189484, -0.00199623615, 0.00146038446, 0.00322643062, 0.000625003, -0.00278491923, -0.00719248783, -0.00501889223, -0.0165434759, 0.00756984809, -0.00155189424, 0.00722267665, -0.00582644343, -0.0184453726, 0.000409907632, 0.00225095428, 0.0141510116, -0.000117866133, -0.0261284281, -0.0022811431, -0.00247548358, 0.000320992112, 0.00780381123, 0.00122359081, 0.0022264258, -0.019547265, 0.00477360794, -0.0227019973, -0.0143095031, 0.0278642848, -0.00383209391, -0.0110491104, -0.00326605351, 0.0231850185, 0.00889815576, 0.00732079, 0.00707927952, 0.00328869512, -0.00423398288, 0.0121208131, 0.00356794172, -0.00588304736, -0.00761513133, 0.0024320872, 0.0145359198, 0.00283397594, -0.0104075978, 0.00267359777, 0.00676984387, -0.00713965716, 0.000767928257, -0.000327831774, -0.00655474886, -0.0072000348, 0.0438643619, 0.0270642824, 0.000160613985, 0.00541889435, -0.0205133073, 0.0230793562, 0.00075047533, -0.00238114363, -0.00752456486, 0.015849134, -0.0107698636, 0.00287171197, -0.0107774111, -0.00475474, -0.0106566548, 0.0231850185, 0.0104000503, -0.00330756325, -0.00907174218, 0.0138944071, 0.00258114445, 0.00700380746, -0.00814343523, 0.00662267348, 0.000128184576, 0.0108906189, -0.0177963115, 0.0279548522, -0.0191397145, -0.0175849907, 0.0101132561, 0.0272001307, -0.00235850201, 0.0163321551, 0.0191699043, 0.0358341374, -0.00186132977, 0.00909438357, 0.00530568603, -0.00484153302, 0.0121585494, 0.00440756837, -0.0145510137, -0.000508493045, -0.00659248466, 0.0175698958, 0.00248114415, -0.0138113871, -0.0144302584, -0.0195774529, -0.0152076203, 0.0250869133, -0.0057094614, 0.0223548245, -0.0166491363, 0.00558493286, -0.00877740048, -0.00434341701, 0.0211170837, -0.0118717551, 0.00753211183, 0.00825664401, -0.0220680311, 0.0177963115, 0.00898117572, -0.0132076107, -0.0119472276, 0.00839249324, -0.00655852212, -0.00461134315, -0.0073622996, -0.00401511369, -0.0113811875, -0.00450568227, -0.00951702707, -0.0121660968, -0.0142113892, 0.0011679302, 0.000890570343, 0.00128113828, -0.008852873, 0.00866419263, 0.0058075753, -0.00708305323, -0.00756984809, 0.00325661944, -0.00314718508, -0.000767456542, 0.0128453448, 0.0056302161, -0.00661889976, 0.00505285477, 0.0203774571, -0.00722645, 0.00816607755, 0.00404152879, -0.0164076257, 0.00462643756, -0.0262944661, 0.00668305112, 0.00171510258, 0.027652964, 0.00375662185, -0.0011132129, -0.00378869753, -0.0253133308, -0.0160302669, 0.00237548328, 0.014920827, 0.0132227056, -0.00448304042, 0.0257661622, -0.00884532556, -0.00664908858, -0.000245284202, -0.00960759353, 0.0079623023, -0.00349246967, -0.00910193101, -3.72643299e-05, 0.0140378037, 0.0167547986, 0.00527172349, 0.0141661065, -0.0100075956, -0.0144151645, -0.0209510438, -0.00704909069, 0.00475474, -0.0200906638, 0.00322831748, 0.0241661537, -0.000162618715, 0.0163472481, -0.00412832201, 0.00591323618, 0.00082736247, 0.00382832042, 0.00844532344, 0.0117585473, 0.00693588238, 0.00553587591, -0.0103321252, 0.0269586202, -0.00325473282, 0.00355096045, -0.0145736551, -0.00427549239, 0.028845422, 0.000742928125, -0.00670946622, -0.0036547347, 0.00301510887, 0.0202265121, -0.01240006, 0.0165887587, 0.00297548599, 0.00969061255, 0.0203019846, 0.00977363251, 0.0132000642, 0.0200302862, -0.0109811854, 0.0159246046, -0.00968306605, 7.49929904e-06, 0.00724154431, 0.0108528826, -0.0183849949, -0.0153359231, -0.0201510414, 0.00125944009, -0.00600757636, -0.00744154537, 0.0140302563, 0.0164076257, 0.00450945599, -0.0134491213, 0.00385096204, -0.0145661086, 0.0268378649, -0.0154415844, -0.0087547591, 0.021932181, -0.0111472234, -0.00881513674, 0.00978117902, -0.0109887328, -0.0274114534, 0.00639625732, -0.000505191099, 0.00898872316, -0.028649196, -0.0156378113, -0.0374039561, 0.0015943473, 0.00144151645, 0.0151774315, 0.0273661707, -0.0233359616, -0.00181227294, 0.00656984327, -0.0162415877, -0.0047396454, 0.00172076304, 3.50827177e-05, -0.00957740471, -0.000167335718, -0.00859626755, -0.0128679872, 0.00541889435, -0.00502266595, -0.00864909869, 0.0150415823, 0.00984155666, -0.0201057568, 0.012135908, 0.0166491363, 0.00318114739, -0.0145510137, -0.00750947045, 0.00683022151, -0.0233661514, -0.00928306393, 0.0187321659, 0.0130264778, -0.00444530463, -0.00641889917, -0.0220529363, -0.00698493933, -0.015267998, 0.00324718561, 0.00970570743, -0.0188076384, -0.0186265055, 0.00516983634, -0.00697739236, -0.0108679775, -0.00520379888, 0.0163019653, 0.00883777812, -0.0170717798, -0.00357926264, 0.0054226676, -0.00622644508, 0.0112000545, -0.00644531427, 0.0208302885, -0.0107170334, -0.0208755732, -0.0137283681, -0.00242265314, -0.0161057375, 0.00127170421, 0.0072981487, -0.00556229101, 0.0085283434, 0.0028358628, -0.0171321575, -0.0043283226, -0.0208906662, -0.00470945658, 0.00835475698, 0.00930570532, -0.00891325064, 0.0219623707, -0.0212227441, -0.00632455898, 0.0106868446, 0.0349888466, -0.00713965716, 0.0171472523, -0.015864227, 0.00706795882, 0.0203472674, 0.00315473229, 0.0164076257, 0.00680003269, -0.0108679775, 0.017871784, 0.00502266595, -0.00541134691, -0.0037981316, -0.00672456063, -0.0320605338, -0.0141962953, 0.00408303877, 0.0249963477, -0.00566795189, -0.0125811929, -0.012467985, -0.00438115327, 0.00506794918, 0.0180076342, 0.0772833899, 0.00171510258, 0.00103868428, -0.0171472523, 0.00281322119, -0.0142415781, -0.014339692, 0.0379775427, -0.00110000535, -9.51508173e-06, -0.0150793185, 0.0150491297, -0.0217208602, 0.0200604741, -0.00264529581, -0.0138113871, -0.000105660889, -0.00928306393, 0.00286982511, -0.0130944028, 0.0143623333, -0.0267322045, 0.00832456816, -0.0102189174, -0.00547549827, -0.0106792971, -0.0144679947, 0.0058075753, -0.0249208752, 0.00195095281, 0.0028471835, 0.0174340457, 0.0179774463, -0.00204340601, -0.0153736593, 0.000943872496, 0.0023622755, -0.00815098267, 0.0165887587, -0.00370567827, 0.0103245778, 0.0274869259, 0.0146415802, 4.84966949e-05, 0.00619248254, -0.00258680503, -0.000501417497, -0.0213887822, 0.00815098267, -0.00608682167, 0.0160604548, -0.0215699151, -0.0260227676, -0.00757739507, 0.0118943974, 0.0111170346, 0.0233963393, -0.00370001793, -0.00253397459, 0.00660757907, 0.00784154702, 0.027652964, 0.0215095375, -0.00689437287, -0.0116151506, -0.0192604698, -0.0101585397, 0.00343397888, -0.0131472331, 0.00475474, 0.00067783345, -0.00947929081, 0.0125660989, -0.00727550685, 0.00747173419, -0.0159397, 0.00464530569, 0.0188529212, 0.0179623514, -0.00786418933, -0.0179170687, 0.0125811929, -0.00597361382, -0.0117132645, -0.00461134315, -0.0149283744, -0.00677361758, 0.0062038037, -0.00762645202, 0.0117660947, -0.00247737044, 0.00981136784, -0.023502, 0.0038245467, -0.00111887336, 0.0166038536, 0.00164906459, 0.00878494792, 0.0336907282, 0.00929061137, 0.0106113721, -0.00488681626, -0.00867174, -0.0191699043, -0.0127472319, 0.0244529489, -0.00176132924, 0.0130566666, 0.00781135866, -0.000396464195, -0.0167246088, -0.00460756943, 0.0241057761, 0.032030344, 0.0124981739, 0.0132227056, 0.00389058492, 0.00981891528, 0.00502266595, 0.00107453344, -0.00353586604, 0.00537361111, 0.00960759353, 0.0163472481, 0.0223095417, -0.00312076975, 0.033871863, 0.00667173043, 0.00164340413, 0.00457360689, -0.000433964364, -0.00849060714, 0.00323020434, -0.00709814765, 0.0277133416, 0.0220227484, 0.0154415844, 0.0198189635, 0.0112528848, 0.00545663, -0.0102566537, 0.00165755523, 0.00721512921, -0.00185944291, 0.0100000482, 0.00880004279, 0.00786418933, -0.0308680739, -0.0279850401, 0.00893589202, 0.000856136205, 0.0109208077, 0.00133302528, -0.0157736614, -0.00219246349, 0.00241321931, -0.0146113914, -0.00873966515, 0.0156076225, 0.011305715, 0.0251925755, 0.000261557871, 0.0223548245, -0.00717739342, 0.0187623557, -0.0134038385, 0.0130189313, -0.002064161, -0.00754343253, 0.0127094956, 0.00714343088, 0.00613965234, -0.0128227035, 0.00968306605, -0.011554773, 0.00708305323, 0.00756607438, -0.00822645519, -0.0104679754, -0.0130189313, -0.00412832201, -0.00410945388, 0.0203623623, 0.0570568815, 0.0154038481, -0.0125283627, 0.0120981717, -0.000538681867, 0.00816607755, 0.00131793087, -0.0124151539, 0.0140302563, 0.00156227173, 0.00121038326, -0.00231887912, -0.0300076921, 0.0271397531, -0.00195661327, 0.00223397301, 0.0095245745, 0.0213133097, -0.00231321878, -0.00894343946, -0.0196076427, -0.00484530628, 0.0100528784, 0.00804532226, -0.00578870717, 0.00223585987, -0.0067509762, -0.000504247728]
18 Sep, 2024
How to Select Multiple Options at once in Dropdown list in HTML? 18 Sep, 2024 Dropdown lists are one of the most flexible elements in HTML. It is similar to that of the radio input, that is, only one item can be selected from a group of items by default. However, when the multiple attribute is used with the <select> element, we can enable the selection of multiple options from the list. The multiple attribute is a boolean attribute that specifies whether multiple options can be selected at once. The process of selecting multiple options varies in different operating systems and browsers as mentioned below: Windows: We need to hold down the CTRL button to select multiple options.Mac: We need to hold down the command button to select multiple options.Note that, because of the different ways of approaching this, and because one has to inform the user that multiple selections are available, it is more user-friendly to use checkboxes instead. Example 1: HTML <!DOCTYPE html> <html> <body> <h1 style="color: green;"> GeeksforGeeks </h1> <p> The below list does not allow multiple selection. </p> <form id="form1"> <select width=300 style="width: 350px"> <option value='blue'>Blue</option> <option value='green'>Green</option> <option value='red'>Red</option> <option value='yellow'>Yellow</option> <option value='' selected> Select a Color </option> </select> </form> <p> The below list does allows multiple selections. </p> <form id="form2"> <select width=300 style="width: 350px" size="8" multiple> <option value='blue'>Blue</option> <option value='green'>Green</option> <option value='red'>Red</option> <option value='yellow'>Yellow</option> <option value='orange'>Orange</option> </select> </form> </body> </html> Output: Example 2: html <!DOCTYPE html> <html> <body> <center> <h1 style="color:green; font-style:italic;"> Geeksforgeeks </h1> <h2 style="font-style:italic; color:green;"> HTML select multiple Attribute </h2> <form action=" "> <select name="Bikes" multiple> <option value="HeroHonda">HeroHonda</option> <option value="Splender">Splender</option> <option value="Ninja">Ninja</option> <option value="Pulsav">Pulsav</option> </select> <input type="submit"> </form> <p> Hold down the Ctrl (windows) / Command (Mac) button to select multiple options. </p> </center> </body> </html> Output: Example 3: HTML <!DOCTYPE html> <html> <head> <title>Checkbox Dropdown</title> <style> .dropdown { position: relative; display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f1f1f1; min-width: 120px; overflow-y: auto; max-height: 100px; border: 1px solid #ddd; z-index: 1; } .dropdown-content label { display: block; padding: 5px 10px; cursor: pointer; } .dropdown-content label:hover { background-color: #ddd; } .show { display: block; } .selected-items { width:100px; margin-top: 5px; padding: 5px; border: 1px solid #ccc; } .selected-items div { margin-bottom: 5px; } </style> </head> <body> <div class="dropdown"> <button onclick="toggleDropdown()">Select Options</button> <div id="options" class="dropdown-content"> <label><input type="checkbox" value="Option 1"> Option 1</label> <label><input type="checkbox" value="Option 2"> Option 2</label> <label><input type="checkbox" value="Option 3"> Option 3</label> </div> </div> <div class="selected-items"></div> <script> function toggleDropdown() { document.getElementById("options").classList.toggle("show"); } window.onclick = function(event) { if (!event.target.matches('.dropdown button')) { let dropdowns = document.getElementsByClassName("dropdown-content"); for (let i = 0; i < dropdowns.length; i++) { let openDropdown = dropdowns[i]; if (openDropdown.classList.contains('show')) { openDropdown.classList.remove('show'); } } } } document.querySelectorAll('.dropdown-content input[type="checkbox"]').forEach(checkbox => { checkbox.addEventListener('change', function() { const text = this.value; const selectedItems = document.querySelector('.selected-items'); const existingItem = selectedItems.querySelector(`[data-value="${text}"]`); if (this.checked) { if (!existingItem) { const selectedItem = document.createElement('div'); selectedItem.setAttribute('data-value', text); selectedItem.innerText = text; selectedItems.appendChild(selectedItem); } } else { if (existingItem) { existingItem.remove(); } } }); }); </script> </body> </html> Output: https://media.geeksforgeeks.org/wp-content/uploads/20240804230749/Untitled171.mp4 Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?
https://www.geeksforgeeks.org/how-to-select-multiple-options-at-once-in-dropdown-list-in-html5?ref=asr10
Languages
How to Select Multiple Options at once in Dropdown list in HTML?
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0241508801, 0.00368430768, -0.0250165034, 0.0201978683, 0.0552267469, 0.0299794096, -0.00930544734, 0.00992581, -0.0110006249, -0.0137561914, -0.00351659325, -0.0347691886, 0.0129338503, -0.0517354, -0.000556793937, -0.0296331588, -0.0454163514, -0.00720270444, 0.0077617527, 0.00635150867, -0.00444713794, 0.0179039687, -0.0512737334, 0.0388953239, -0.0211500544, 0.0240643192, 0.00636232877, 0.0211500544, -0.00856245402, 0.00648856536, 0.0144559033, 0.00156443322, -0.00494487118, -0.0281183198, -0.0138066867, -0.0120538, -0.0133522339, -0.0198804736, -0.0211644825, 0.0167498048, 0.0130420523, -0.0264736358, 0.0180626661, -0.0257234294, -0.0201834422, 0.00934872776, 0.00312525965, -0.0179328229, -0.0155956401, -0.0327494033, 0.013482078, 0.0390395969, 0.00478978036, 0.0166488159, 0.0142539246, 0.00463468954, -0.0224917699, -0.00952185225, -0.00470321812, 0.000220463349, 0.0237180684, -0.0292436294, -0.00187551638, -0.0262283757, 0.015234964, -0.0122413514, -0.0217704177, -0.0077617527, -0.0160861593, 0.0101710698, -0.0134892911, -0.00696465792, -0.00455534086, -0.00941364933, -0.0013299936, 0.0123495543, 0.00336510921, -0.0182357896, -0.023097707, 0.0616323538, -0.0244827028, -0.0319991969, -0.0088005, -0.0144486902, 0.00535964873, 0.00890149, -0.0148021523, -0.0277576428, 0.0045012394, -0.0212077629, -0.00454091374, -0.00897362456, 0.0515622757, -0.00594394421, -0.0403957367, 0.022967862, 0.0292292014, 0.0096589094, -0.0378277227, 0.0288252439, -0.0122197112, 0.0209192224, 0.00320641184, 0.00730008725, -0.0138499672, -0.01594189, 0.02298229, 0.018178083, -0.0106543759, -0.0398186557, 0.0237036422, -0.0117003368, -0.023213122, 0.0196640678, -0.0300371163, 0.0228957273, -0.0176731348, -0.0498887375, 0.0133378068, -0.000961202197, -0.00249768305, 0.0107986461, -0.0298928469, 0.0235449448, -0.0718467087, 0.0229101554, -0.00577803329, -0.0267477501, 0.0496290512, -0.0319126323, 0.00738664949, 0.0202988591, -0.0380008481, -0.0131358281, 0.0250742119, -0.00456976797, 0.035519395, 0.0111737493, -0.0446084365, -0.00714138942, -0.0467147864, -0.023920048, -0.0053812894, 0.0579390302, -0.0207028165, 0.011137682, -0.00706204074, 0.0510429, -0.0298928469, 0.000471584179, -0.0315663852, -0.047955513, -0.00771125779, 0.0176298544, 0.0133378068, -0.00352741359, -0.00823784526, -0.0003106324, 0.00709810853, -0.0203277133, -0.00217848457, 0.0126958033, -0.000904846529, -0.00107842195, -0.0194765162, 0.00998351816, 0.0299217012, -0.027555665, -0.0506966524, 0.0358367898, -0.0335573182, 0.0258099921, -0.00258063851, 0.0226504672, -0.00680596055, 0.0170816258, 0.0245115571, 0.0188705809, 0.038231682, 0.0130997607, -0.0162881389, -0.0190725587, 0.00608821493, 0.0178029798, 0.0374237671, 0.00364643685, 0.0143621275, 0.0222465098, -0.0170239192, -0.000687088235, -0.0381451175, 0.0180049576, 0.0572753847, 0.0305276364, 0.00842539687, 0.0164901167, -0.062267147, 0.0292147752, -0.0262283757, 0.0227081757, -0.00806472078, -0.0383759513, -0.0375968926, 0.0340478383, 0.0348268971, 0.00642725034, -0.02625723, 0.00447238516, 0.0347980447, 0.00422351854, 0.0231554136, -0.00130474626, 0.0199670363, 0.000607288617, -0.00673743198, 0.00825227238, -0.0102937, 0.00135073252, -0.0401071981, -0.010791433, 0.0222897921, 0.046079997, -0.04152105, 0.0100917211, -0.0766942, -0.0253627524, 0.023097707, -0.011960024, 0.00773289846, -0.00645610457, 0.00511799566, 0.00616756361, -0.0310181566, -0.00406121463, 0.00574917905, 0.0151484022, -0.00875721872, 0.00495208474, 0.00190256711, 0.0448969789, 0.0231121331, -0.0109861977, -0.0304987822, -0.0283058714, 0.0208182316, 0.0451566651, -0.00870672427, -0.00740107615, 0.0074082897, 0.024612546, 0.0111953905, 0.017817406, -0.0379142873, -0.0179905314, 0.0186830293, 0.00352200354, -0.0053344015, -0.0328936726, 0.00940643623, -0.0300659705, 0.0240643192, 0.00653906027, -0.030123679, 0.0365869962, 0.0222032294, -0.0164324101, 0.0545342453, -0.0608244389, 0.00534882862, -0.0179039687, 0.0267621763, -0.0631327704, -0.00145442691, 0.0214818772, 0.00694662426, -0.0241941623, 0.0231265612, -0.0429060459, 0.0201401617, 0.00787716918, 0.000878246618, 0.0109717716, 0.0266756136, 0.0155235054, 0.0160428789, -0.0434831269, 0.00187551638, 0.0239921827, -0.0337304398, -0.00159779575, -0.0206595343, -0.0196063593, 0.012306273, 0.0122269243, 0.0446084365, 0.0504946746, -0.011022266, 0.0560346618, -0.0184810497, 0.00449763285, -0.0204575565, -0.0222897921, -0.0138211129, -0.00951463915, -0.0429926068, 0.0321723185, 0.0269930102, 0.0076319091, 0.00316313049, -0.033643879, -0.00239489018, -0.00208470854, -0.039501261, -0.0269930102, -0.0155956401, 0.0215107314, 0.0433388576, 0.00660037529, -0.0173124596, -0.0430503152, 0.00195666868, -0.00215143384, -0.0281904545, 0.0424155258, 0.0164901167, 0.00206126459, -0.050523527, -0.0207893774, 0.00821620505, -0.028493423, -0.0451855175, -0.0453875, 0.0227947384, 0.0336727351, 0.00550031243, -0.0530049801, 0.0365869962, -0.0167786591, 0.00598361855, 0.024857806, -0.0360099152, 0.00955070648, -0.00610624859, 0.00515045645, 0.00500979275, -0.0237757768, 0.018178083, 0.0074443575, 0.0435696878, 0.0143765546, 0.00149139622, 0.0396455303, 0.0158120468, -0.00225602975, 0.0349711664, -0.00632626098, 0.0160717331, -0.00822341815, -0.0482729077, -0.0088077141, -0.00158066361, -0.0119383838, -0.0280461833, -0.00779782, -0.00818735082, -0.0387222022, -0.00921167154, -0.00493405107, 0.0463396832, -0.0184954777, -0.0273969676, -0.0144486902, 0.0159563161, 0.0270651449, -0.0534377918, 0.0203709938, 0.0158120468, -0.0124793975, -0.0186974555, -0.0238190591, 0.0195342246, 0.0762902349, -0.0172691774, 0.0157976188, 0.00198552269, -0.0147516578, 0.0159563161, 0.00841818377, -0.0246414, 0.0119239567, 0.00658594817, 0.0524567515, 0.00662562251, 0.0179616772, 0.0172114708, -0.0121115083, 0.00633347454, 0.00516849058, 0.00168976816, -0.00183403865, 0.0319703408, 0.00452648662, 0.0154946512, 0.00164468365, -0.0124721844, -0.0275700912, -0.046541661, -0.0227226038, 0.00230652443, 0.0305276364, -0.00307476497, 0.0431080237, -0.0186541751, -0.000500889146, 0.0108202873, 0.0485037416, -0.0199237559, 0.0664221346, 5.11709404e-05, -0.0325474218, 0.0537263304, 0.00639839657, -0.00417302409, -0.0229245815, 0.0168652199, -0.00254096417, -0.0487922803, 0.0268054586, 0.0139221027, -0.0121115083, -0.00126146514, -0.0156966299, -0.00682399422, -0.0468013473, 0.000568065094, -0.00432090135, 0.0312778428, 0.0309604481, -0.0244827028, -0.0351154394, -0.0162592847, 0.00377267343, -0.0246991087, -0.014766085, -0.0358656459, 0.000284483394, -0.063421309, -0.0121980701, -0.00277720694, 0.0170094911, -0.0181348, -0.0364138745, -0.0383471, -0.0123856217, 0.0243672859, -0.0328071117, 0.0157110561, -0.00127589214, 0.00581410108, 0.0106976572, 0.0060629677, 0.0324320085, 0.00416941708, 0.0105750272, -0.00299361278, -0.0097526852, -0.0320280492, 0.00487994961, -0.0277720708, -0.00251030666, 0.00711974874, -0.0399917811, 0.050985191, 0.0271661337, 0.00300804, 0.0236315075, 0.00894477, 0.0050170063, -0.0122846328, -0.0190292783, 0.0496290512, 0.0166776683, 0.0359810628, -0.0150762666, 0.00462386943, -0.0220733862, 0.0137994727, 0.023213122, 0.0129627036, -0.0194188077, 0.0276855081, 0.0448104143, -0.0308161769, 0.0369043909, 0.0133378068, -0.0081729237, -0.04152105, -0.0433388576, 0.0151339751, 0.0195775069, -0.0115127852, 0.0298351385, -0.0425597951, 0.0296620131, 0.0148310065, -0.00601968635, -0.0432811491, 0.00823784526, 0.00115777075, -0.0157110561, -0.0163025651, -0.00885099452, 0.00373299909, 0.0131791094, 0.0221455209, 0.0114334365, -0.00244899164, 0.0280173309, 0.00318116439, -0.00475371256, 0.0448392704, -0.00493044406, -0.0101061482, -0.0144847576, -0.0263582189, -0.000537858461, 0.0157399103, -0.00955070648, -0.0141312946, -0.0220878124, -0.0271372795, -0.00348954252, -0.0156533495, 0.020169016, -0.00829555374, -0.0182934981, -0.00291787065, 0.00635150867, 0.0192168299, 0.0239633285, -0.0395301171, 0.0184521955, -0.0429637544, 0.00519013125, -0.00995466392, 0.00792045053, -0.0192745384, -0.0151772564, -0.00486191548, 0.00302787707, 0.01594189, 0.0138788214, 0.0165622532, -0.00477896025, -0.0187984463, -0.017240325, -0.0123856217, -0.0411459468, -0.00942807645, -0.0199958906, -0.00890870299, -0.0138788214, 0.0354039781, 0.0183800608, 0.0225783326, -0.00552556, 0.036933247, 0.0125082517, -0.0150329852, -0.00607018126, 0.00748763885, -0.0143332733, 0.0231986959, -0.0254637431, 0.010791433, 0.0121692158, 0.0168075133, 0.00582492119, -0.00781224715, -0.0142899929, -0.0360676236, -0.0261129588, -0.00372217875, -0.0150762666, 0.00665086973, 0.0259686895, -0.00340298028, 0.00793487765, -0.0662490129, 0.01711048, 0.00555441389, 0.0257522836, -0.00393137103, -0.000361352519, 0.0179183949, 0.0362984575, -0.0205296911, -0.0179472491, 0.0013543393, -0.0200103167, 0.00903854612, 0.0146001745, 0.0109140631, 0.00328936731, 0.0110655474, -0.0190148503, -0.0182790719, -0.00761026843, -0.0135253584, 0.0225061979, -0.00970940385, -0.0233429652, 0.0367312692, -0.00385562889, -0.0202700049, -0.00770404423, -0.00770404423, 0.031652946, -0.0169950649, 0.00387005601, 0.0240643192, -0.0356059596, 0.00269244821, 0.0166920964, 0.00211897283, -0.0458203107, 0.0116570564, 0.00124613638, -0.0024562052, -0.020746097, -0.0314509682, -0.00500257919, 0.0350288749, 0.00929102, 0.0153503809, -0.00341380062, 0.00150402, 0.00507832132, -0.0268775932, 0.0380008481, 0.0013462241, -0.00200175308, -0.0185676124, 0.107221834, -0.0185964666, 0.00861294847, -0.0209625028, 0.0318549238, 0.0480420738, -0.036933247, -0.00482584815, 0.00620002439, 0.0148598608, 0.00645610457, -0.00920445751, -0.00834604818, -0.00815128256, -0.00589705631, -0.00830276683, -0.0019368314, -0.0383182429, -0.0289118066, 0.0143765546, -0.00591869699, -0.00266359397, -0.0244971309, 0.0195775069, 0.0280029029, 0.0134460097, 0.0204864107, -5.66656163e-05, -0.0275123827, 0.0122629916, 0.0119888783, -0.000321678119, -0.04596458, 0.0022325858, 0.0378277227, -0.00425598, 0.0174278766, -0.0197073501, 0.0135253584, 0.0241076, 0.0136552025, -0.0288685262, -0.00577803329, -0.0173413139, 0.0210923459, -0.0307007618, 0.0104163298, -0.00550752599, -0.00429565413, 0.0382893905, -0.0155379325, -0.00029620537, -0.0304699279, -0.00071504066, -0.0302968044, 0.000974727503, -0.0351731479, 0.0343363769, -0.00944971759, -0.0314221121, 0.0129987719, -0.0174134485, 0.00659316173, -0.0144342631, 0.00571311172, -0.0501772799, -0.00789880939, 0.0251607746, 0.0312201343, 0.0332399234, 0.0315952376, 0.0104812514, -0.00740107615, 0.0253483262, -0.00564097613, -0.0301525332, -0.015004131, 0.0163747016, 0.00275736977, 0.0226648953, -0.00707646785, -0.0132296048, -0.00929823332, 0.00177092035, -0.00898805168, -0.0105750272, -0.00416581053, 0.000679874734, 0.0217704177, 0.0215828661, -0.00603050645, -0.0635944307, -0.0108707817, 0.0118590342, 0.0112458849, 0.00304591074, -0.00264556031, 0.024626974, 0.0155812139, 0.00783388782, 0.0116859097, -0.020169016, 0.00788438227, 0.00688891625, 0.010553387, 0.0230255704, -0.0132223908, -0.000724959245, 0.00808636099, 0.0374526195, -0.0255214497, -0.0282193087, -0.0138716083, -0.0293301921, 0.0277432166, 0.0289839432, 0.0258821268, -0.0261995215, 0.0247856714, 0.00124703813, -0.00321001839, -0.0136984838, 0.00941364933, -0.040078342, -0.00915396307, 0.017124908, 0.0127679389, 0.0448681228, 0.0122702057, 0.01946209, 0.0227514561, 0.00802143943, -0.00517570414, -0.0148742879, -0.00180608628, -0.0080791479, -0.00400711317, -0.011613775, 0.0304122195, -0.0223330725, -0.00790602341, 0.0168219395, -0.0105389599, 0.0157110561, 0.0378277227, 0.0423001088, 0.0384048074, 0.00694301771, 0.0261562411, 0.0207749512, 0.0610552728, 0.00335969916, -0.011368515, 0.0134315826, -0.0202844311, 0.00768240402, -0.0315086767, -0.00409367541, -0.017471157, 0.0162592847, -0.00395661825, 0.0375391841, -0.0266611874, -0.0187407378, -0.020991357, -0.00182051328, 0.00525505282, -0.00423433911, -0.0175432917, -0.000829555327, 0.0112098176, 0.0316240937, -0.0156389214, 0.0151772564, 0.0210634917, -0.0278297793, 0.0398186557, 0.0074443575, -0.00982482079, 0.0333841927, -0.0259686895, 0.0117147639, 0.0430503152, -0.0190869868, -0.0265457705, 0.0122846328, -0.00301525323, 0.0195775069, -0.0302102417, -0.0149464235, 0.0202844311, -0.0173268858, 0.0177452713, 0.014297206, 0.0243240055, 0.0425886512, 0.0416941717, -0.0347980447, -0.0011081777, -0.0132151777, -0.00838933, -0.00585377542, -0.00618559727, 0.00861294847, -0.00264916685, 0.0248433799, 0.0264015011, 0.0283491518, 0.00191879761, -0.0339324214, 0.0324320085, 0.0124505432, 0.0314798206, -0.020399848, -0.00181510311, 0.00617838372, 0.002109956, 0.0122124972, -0.0174423028, -0.0231265612, 0.0267766044, 0.0248145256, 0.00742271682, 0.00837490242, -0.0311047193, -0.0254060347, -0.0171393342, 0.000414326816, -0.00498454552, -0.0090674, 0.017601, 0.00508192834, -0.0335284621, -0.0496867597, -0.0138643943, 0.00262031285, -0.0138571812, 0.0398186557, -0.00203962415, -0.0360099152, -0.00388087635, 0.0181492288, 0.0175288655, -0.0353751257, -0.0128400736, 0.0273248311, -0.017701989, -0.00572753884, -0.0378277227, 0.0233862475, -0.0396166779, 0.00638396945, 0.0385202207, 0.00482584815, -0.0306142, -0.00242554769, 0.00990416948, 0.00522259204, -0.0143332733, 0.00395661825, 0.00202700053, 0.00983203389, -0.0143621275, 0.000408691267, 0.0321146138, -0.000839473912, 0.0358367898, -0.00497372542, 0.0276278, 0.0199814644, -0.0106832301, 0.058977779, 0.00146705064, -0.0214385949, 0.00426319335, -0.0162304305, -0.0119167427, -0.000160951764, 0.00844703708, -0.0141601488, 0.0375391841, -0.024280725, -0.0187263098, -0.0136479884, -0.00471764524, -0.0159995984, 0.00272490899, -0.0104091158, 0.0121115083, 0.0169373564, 0.00791323651, -0.006387576, -0.00387366279, 0.00263113319, 0.000519373803, -0.0478112437, -0.0112747392, 0.0113613019, 0.027094, -0.0101710698, -0.00954349339, -0.00160500919, -0.02298229, -0.0339901298, 0.0132656721, 0.0120177325, 0.018408915, 0.0300948247, 0.0346537717, -0.0148021523, 0.00411892263, -0.000615403813, -0.0234872364, -0.0222176556, 0.00403596694, 0.0188417267, 0.0202411506, -0.0129699176, -0.0188561529, 0.00970219076, 0.0108491415, 0.0349711664, 0.0123639815, 0.0113829421, 0.0129771307, -0.00679514045, -0.0257667098, -0.00876443274, 0.00119293667, 0.0346826278, 0.00653545326, -0.0136552025, 0.0199526101, 0.0130059849, -0.0129122091, 0.00961562805, -0.0020937256, 0.00955792051, 0.00230832794, -0.00382677489, 8.08140176e-05, 0.0339901298, 0.01594189, 0.0386067852, -0.0386067852, -0.00493044406, -0.00131015643, 0.00583934831, -0.00357249822, -0.0127102304, 0.0158409011, 0.0059691919, -0.0264736358, 0.0251174923, -0.00218209112, -0.0327494033, -0.00982482079, -0.00325149624, -0.0172980316, -0.0196207874, 0.036356166, 0.00142286776, 0.0380585566, -0.0129122091, 0.015119548, 0.0114117963, -0.00637675589, -0.0078194607, -0.00753091974, -0.020399848, 0.0044543515, 0.00585016841, 0.0189138614, -0.0195197985, 0.0151772564, 0.0290849321, -0.00109645573, 0.00717024365, -0.0033524856, -0.010784219, -0.0246558283, 0.0176442806, 0.0135902809, -0.0107265115, -0.0194476619, 0.0138643943, 0.00788438227, 0.00653184671, 0.0131718963, -0.00270507182, 0.0209192224, -0.00761748198, 0.0198371932, -0.030123679, -0.0337592959, -0.000596919155, -0.00278622401, 0.0101350024, -0.00128671248, -0.000747952319, 4.20695033e-05, -0.0136407753, 0.0172980316, -0.0140230916, 0.00687809568, 0.00496651186, -0.0194043815, 0.00403236039, -0.027209416, 0.0107337246, 0.00516488357, 0.0102143511, -0.00679514045, -0.00696465792, -0.010077294, -0.00115055719, 0.0092765931, 0.000988252927, -0.0236459337, -0.00228849077, 0.0134532237, 0.00718827732, 0.022621613, -0.00263113319, 0.00296656205, 0.00265638041, -0.00276458333, 0.00735779526, -0.0186830293, 0.00442549726, -0.00702597294, 0.0427040681, -0.0385779291, -0.00393497758, 0.0052803, -0.0105101056, -0.00694662426, 0.0414633416, -0.00197289907, 0.0331822149, 0.014773299, -0.023213122, -0.00586820254, 0.0120393727, -0.0028475388, -0.028839672, -0.00864180271, 0.00900969282, 0.0127030173, 0.0121403625, 0.0173990224, -0.00955070648, -0.0155523596, -0.0113468748, 0.0906018689, 0.00823063217, -0.0322588831, -0.012782366, -0.0186686013, -0.0172980316, -0.0173845943, 0.000749304891, 0.0204287022, -0.0361830406, 0.0257955641, -0.0202844311, 0.00734697515, 0.0324031524, -0.00196207874, 0.00483306171, 0.0049701184, 0.00890870299, 0.0247568171, -0.0411459468, -0.0218714066, 0.0110006249, 0.0100989342, -0.00659676827, 0.0162015762, -0.00647053169, -0.000169968684, 0.0154080885, -0.0289262347, -0.0139365299, 0.0143837687, -0.00336510921, 0.0207749512, -0.00988974236, -0.00963005517, 0.0116786966, 0.0140230916, 0.00595837133, -0.0391838662, 0.00100899173, -0.0228380188, 0.00617117062, -0.0447238535, 0.0090890415, 0.00541014364, 0.00858409423, 0.00136515952, -0.00326051307, -0.00107391353, -0.00225422648, -0.00361397583, -0.00599443913, -0.0126813762, -0.00106489658, -0.0203421395, 0.0307007618, -0.0100628668, -0.0145063978, 0.0309893023, -0.0401937589, -0.0120249456, 0.00904576, 0.0128112203, -0.0198371932, 0.0170527734, 0.00803586654, -0.00701515283, -0.00960120186, -0.0265601985, 0.00533079496, 0.013720124, 0.0155667868, 0.0125803873, 0.00263834675, -0.017701989, -0.00984646101, -0.00461665587, 0.0248722341, 0.017124908, -0.00549309887, 0.00704400707, 0.0148742879, -0.017586574, 0.0196640678, -0.0303256586, -0.0058754161, -0.011022266, -0.0115849208, -0.0167065226, 0.0047356789, 0.006387576, -0.0139798112, 0.000623969885, -0.0128617147, 0.00607739436, 0.0103874756, 0.0388376154, 0.0317106545, -0.0100340126, -0.0292147752, 0.000904395652, 0.0291282125, -2.49092027e-05, -0.00618559727, -0.0137778325, -0.0269497279, 0.0183656346, 0.00429565413, 0.0107481517, 0.000196455832, 0.0425886512, 0.0104596112, -0.024612546, -0.0141385086, 0.00934872776, 0.0128617147, -0.00268523465, 0.0187984463, 0.0300371163, 5.02128933e-05, 0.00362479617, 0.0176298544, 0.0213664602, 0.00547867222, -0.0123207, -0.0365581438, -0.000500889146, 0.00161853456, -0.0182646438, 0.0117364051, 0.0130997607, 0.00260047568, -0.011960024, 0.0157687645, -0.00483306171, -0.00470682466, 0.00522259204, 0.0107553657, -0.00728205312, 0.0104523972, 0.0143477, 0.00128400745, -0.0352885611, 0.0162015762, -0.00127949892, 0.0118590342, -0.0302390959, 0.0154225156, 0.00641282368, 0.00410449551, -0.0172836054, -0.024857806, 0.00431008125, -0.00828834, 0.00855524, -0.0209192224, 0.0358367898, -0.0385490768, -0.0189138614, -0.00662562251, -0.00399629259, 0.0277143624, 0.0130492663, 0.0132223908, -0.00740107615, -0.000507651828, 0.00300623639, -0.0258244183, -0.0150329852, 0.00206847815, 0.00200535986, -0.029546598, 0.0146650961, -0.0255070236, -0.00123982457, 0.0186541751, 0.0135830669, -0.00130204123, 0.0151339751, -0.0141529357, -0.0082666995, -0.0104884645, -0.00112440821, 0.00166001241, -0.0241220258, -0.00231013121, -0.00504586054, -0.0161150135, -0.00281507801, 0.00616756361, 0.00702597294, 0.00544621097, 0.0226793215, 0.0230544247, 0.0112603121, 0.0210779198, -0.00931266, -0.00188633671, -0.00505668065, 0.034942314, -0.0120465867, 0.0258677, 0.0058285282, 0.0251896288, -0.00383038167, 0.0146001745, -0.0232708305, 0.00870672427, -0.00348413247, -0.0122269243, 0.00415859697, -0.00580688752, -0.0010874389, -0.00452648662, -0.0334996097, 0.0219291151, 0.0208615139, 0.00912510883, 0.0140447328, 0.00852638669, 0.0111304689, 0.0100700809, 0.00134261732, -0.000357069483, -0.0261129588, -0.00959398784, 0.0254060347, -0.000489618, 0.000886361871, 0.0150762666, 0.0187263098, 0.0259831157, 0.0142106442, 0.0211356282, 0.0210779198, 0.00983203389, 0.0140952272, -0.00636593578, -0.0152493911, -0.0235737991, -0.00242915447, 0.0173701681, -0.00728566, 0.00614592293, 0.0183079261, -6.91765763e-06, -0.00600165268, -0.020746097, -0.00920445751, 0.0232708305, 0.00656070095, -0.0264592096, 0.0126885902, -0.0246991087, 0.00767519046, -0.00614231639, -0.00203601737, -0.00552556, -0.0125298928, -0.0513891503, 0.0266611874, 0.00907461438, -0.00658234116, -0.0280173309, -0.0221022405, 0.00810078811, -0.00410088897, 0.0168075133, 0.0159851704, -0.0156100672, -0.0200824533, 0.0176442806, 0.00251030666, 0.0105966674, -0.0115632806, 0.00848310534, 0.0274691023, 0.00167534116, 0.00946414471, -0.0128545007, -0.0363273099, -0.00215504062, 0.0215540119, 0.0134171564, -0.028478995, -0.0105822412, 0.0102937, -0.00348232896, 0.0219146889, -0.00907461438, 0.0364715792, 0.0180193856, -0.00241112057, 0.00613510283, 0.0269064475, 0.0263582189, -0.00986810215, 0.00802865345, -0.00924052484, -0.00277720694, 0.011015052, -0.000167263599, -0.0155379325, 0.0123639815, 0.0251607746, 0.0150185581, 0.0218858346, 0.00596197834, 0.018755164, -0.0196496416, -0.00547145866, -0.0343075246, 0.00339757022, -0.032345444, -0.00252293027, -0.0121475756, 0.0287098289, -0.000701064419, 0.0138139, 0.00507832132, -0.0120033054, -0.0149752777, -0.0145929605, -0.0102792727, 0.0106615899, -0.0129771307, -0.00573114539, 0.0108635686, -0.0191302672, -0.0243961401, 0.0243095774, -0.00888706278, -0.0376545973, 0.0117075508, 0.0075381333, -0.00109014392, -0.00849031843, 0.0108275, 0.0136696296, -0.00417663064, -0.0270218644, 0.00244538486, -0.00861294847, 0.00983203389, 0.0261706673, -0.00617838372, -0.00432090135, -0.0123784086, -0.0155090783, 0.00194765173, -0.0237324964, -0.0195630789, 0.00598361855, -0.000280425767, 0.00582492119, 0.0154369427, -0.000507651828, 0.01711048, -0.00722795166, 0.0130348392, 0.017586574, 0.0105750272, -0.020169016, -0.0132007506, 0.00216045068, -0.0292724837, 0.0114406506, 0.000837670581, 0.0234295279, 0.0107986461, 0.00516127702, 0.0141962171, -0.00523341214, -0.0042668, -0.0180338118, 0.00480781402, 0.00232095155, 0.0222032294, -0.017586574, -0.000281327462, -0.00636593578, -0.00460944232, 0.00269785826, -0.0139148897, -0.0114262234, -0.0127607249, -0.0135830669, 0.0249299407, 0.00698990561, -0.00254276744, -0.000311759533, 0.00269425148, 0.0199237559, -0.000541465182, -0.0306719076, -0.00625773286, -0.0141385086, 0.000708278, 0.00789159629, 0.0090890415, 0.0250742119, 0.0377988704, 0.00328395702, 0.00733254803, 0.0159274619, -0.0198660474, -0.0106399488, -0.0267766044, 0.0194332357, -0.0404534452, 0.00872115139, -0.0084542511, -0.0196207874, -0.0158120468, -0.00646692514, 0.00924052484, 0.00974547211, 0.0471475981, -0.00506750122, 0.0156822018, 0.00561933592, -0.0232708305, -0.00412974274, -0.00128671248, -0.0143477, -0.00747321174, 0.00983203389, -0.013251245, -0.00661840895, 0.00334346876, 0.00182141503, -0.0129627036, -0.0160140246, -0.0145280389, -0.0254925955, -0.0199093278, 0.0160428789, -0.00755256042, 0.0149752777, 0.0019043705, -0.000342642423, -0.000473838416, -0.00157345, -0.000394038798, -0.00100718834, 0.0161150135, 0.0126020275, -0.00401071971, 0.0202267226, 0.0106038814, 0.0172691774, -0.0079853721, -0.00816571, -0.00216045068, -0.0128328605, 0.0104956785, -0.00234800228, -0.0308738854, 0.00594033767, 0.0075742011, -0.0195053704, -0.0412902161, -0.0115560666, -0.0130492663, 0.00938479602, 0.00108473375, 0.0152205369, -0.0133233806, 0.0216694288, 0.00372578553, 0.00100448332, -0.0154080885, 0.0142322844, 0.00120105187, 0.00548949232, 0.0092765931, -0.0272815507, -0.0209336486, -0.0230832789, -0.000867877214, 0.00164017524, 0.00440025, 0.00344265462, 0.0280606113, 0.00704761362, 0.0486768633, 0.0161438677, 0.0295177437, 0.00741550326, 0.00438221637, 0.0224917699, -0.00269605475, -0.0047717467, 0.00484388182, 0.00815849658, 0.00809357502, -0.00617477717, 0.0345672108, -0.0173990224, -0.00911068171, 0.00491601694, 0.011721978, 0.00119383831, -0.0218714066, 0.00835326128, 0.0152782453, 0.00134081393, 0.00285475235, 0.0156677756, 0.00742993038, 0.011491145, -0.0362984575, -0.0318837799, 0.00779060693, 0.0346249193, -0.00103874761, -0.000500438269, -0.0113757281, -0.000508102647, 0.0124216899, 0.012782366, 0.0153215267, 0.0156533495, -0.00638396945, 0.00542457076, 0.0142178573, -0.0219723955, -0.0153359538, -0.000151934859, 0.00660398183, 0.00683842134, 0.00357610499, 0.00244718837, -0.0128400736, -0.0235305168, -0.00944971759, 0.0017474764, 0.000934151467, 0.0164468363, 0.00568786403, -0.0102504184, 0.00891591702, -0.0168075133, 0.00797094498, -0.0060629677, 0.01031534, 0.0205152649, -0.0166632421, -0.0123784086, 0.000235566666, -0.00417302409, -0.0104668243, -0.0180049576, -0.00339216, 0.0117724724, 0.00543539086, 0.00642725034, 0.0101350024, -0.0051829177, 0.0273536853, 0.00783388782, -0.00272310548, 0.0154369427, -0.0353174172, -0.00333264843, -0.0119023155, 0.00721713156, 0.0105894543, 0.00153107068, -0.00627216, -0.000445886, 0.0102359913, 0.0273104049, 0.00442189071, 0.00251211, -0.000737132039, -0.0190148503, 0.0169229284, -0.00618920429, -0.0190437045, -0.0123711945, -0.00233898545, -0.00565540325, -0.00497733196, 0.000424696278, 0.0187840182, 0.016533399, 0.0217415635, -0.0134243695, 0.011606561, 0.0100195855, 0.00138409506, -0.00702597294, -0.00665447675, -0.00911068171, -0.0133450208, -0.0325185694, 0.0300659705, -0.020976929, 0.00866344292, -0.0250309315, -0.014535252, -0.00161853456, -0.00639118301, 0.00589344976, -0.00808636099, -0.0183512066, -0.00151484017, -0.0412902161, -0.00135704433, 0.00457698153, -0.0218714066, 0.00365725695, -0.00821620505, 0.0264015011, -0.0121692158, 0.0105389599, 0.007267626, 0.0112386718, -0.00603050645, 0.00488716317, 0.0283924341, 0.0016906698, -0.00552556, 0.00189715705, -0.000340388186, 0.0328648202, -0.00380874099, -0.0173413139, -0.00660398183, -0.0236603618, 0.0116931237, -0.0184377693, 0.0033524856, -0.019692922, 0.00330199092, -0.00631904788, -0.00838211551, -0.00197109557, 0.00838211551, 0.00172583584, -0.00312345615, -0.0217559915, -0.0131214019, -0.00865623, -0.0091828173, -0.00622166507, -0.00534161506, -0.0243240055, 0.00597279845, 0.00794930384, 0.0154369427, -0.00929823332, -0.00659316173, 0.0241364539, -0.0221599471, 0.00915396307, 0.00854081288, -0.00591869699, 0.00107391353, 0.0192601103, -0.00813685544, 0.00944971759, -0.00339576672, 0.0302679501, -0.0135614267, 0.0148021523, -0.00189355027, -0.0298351385, -0.0187118836, 0.0304122195, -0.00385202211, -0.031075865, 0.0185531862, 0.00177542877, 0.0300371163, 0.0160140246, 0.00996187795, -0.0319991969, -0.00862737559, 0.00252473354, 0.0124866115, 0.000969317392, 3.0467279e-06, 0.0145280389, -0.0204719827, 0.00386284245, -0.0135181453, 0.0140519459, -0.000998171512, -0.00696465792, -0.00103784585, -0.00961562805, 0.000814226631, 0.0131141879, -0.0318260714, -0.0135325724, 0.00428844057, -0.00264195353, 0.00410449551, 0.0314509682, -0.00872836448, -0.0090890415, 0.00764633622, -0.0074443575, 0.00349495281, 0.00179977447, 0.00199634302, 0.0147372307, -0.00512881624, -0.00970940385, -0.00881492719, -0.0185387582, 0.00407924829, -0.0182790719, -0.00236783945, 0.00605936069, -0.00136966805, 0.010668803, 0.0121620027, -0.00156082644, 0.0049124104, 0.0120321596, 0.00442189071, -0.0127967931, -0.00587902265, 0.00890149, -0.0309893023, -0.00837490242, -0.0146434549, -0.0114406506, 0.018755164, 0.0109645575, 0.0031955915, -8.28428256e-06, -0.00584295485, 0.025204055, 0.0218858346, -0.00877164584, 0.0162160043, 0.00640561, 0.00234259223, -0.00898805168, -0.00247243559, 0.0114983581, 0.0150329852, 0.0203421395, -0.0103802625, -0.00666169031, 0.0220733862, 0.000107526605, -0.0193899553, 0.0124072628, -0.0289406609, 0.0168940742, -0.00926216599, -0.0128761418, 0.00293049449, 0.00583574129, 0.0214385949, -0.00111358787, 0.00304771424, 0.0100556538, 0.00251211, 0.0174855832, 0.00953627937, -0.0166199617, 0.0226504672, -0.0113108065, 0.000640651153, 0.0132007506, -0.0031955915, 0.0112819523, -0.0198804736, 0.00455173431, 0.0245981198, -0.0207028165, -0.0239777565, -0.00586098898, 0.0244538486, 0.0377123058, -0.0168219395, -0.0149031421, 0.0104235429, -0.00877164584, -0.0185099039, 0.0163891278, 0.0155667868, 0.00329658086, 0.0111953905, -0.0176298544, 0.0228235926, 0.0045481273, -0.00738304248, 0.0387799107, 0.00182502181, 0.0179039687, 0.0122557785, -0.0141168674, -0.000272085133, 0.00761748198, -0.0250309315, 0.0134243695, -0.0114622908, -0.00940643623, 0.00855524, 0.00715221, 0.00544981798, -0.00733615458, 0.00968055055, 0.00216225395, -0.00936315488, 0.0122197112, 0.0112242447, 0.00122990599, -0.0417807363, 0.0119095296, -0.00983203389, 0.00558687467, -0.0238334853, 0.0197362043, -0.0128833549, 0.0304122195, -0.0115344264, -0.0101133613, -0.00625051931, 0.00156713824, 0.00628298, 0.00147787086, -0.0189859979, 0.0022524232, -0.0104451841, -0.0377988704, -0.0127895791, -0.0306430534, -0.00362479617, 0.0186397471, -0.000309730705, -0.00990416948, -0.0126164546, 0.0139293158, 0.0313932598, -0.0115560666, -0.0125226788, -0.00322444551, 0.0154657969, 0.00357430149, -0.0124866115, -0.00520816492, -0.00794930384, 0.00490159, 0.0046419031, -0.0128905689, -0.0119167427, 0.0172547512, 0.0108779958, -0.00311624259, -0.0217848439, -0.0199814644, 0.00144090154, 0.0168507937, -0.00974547211, 0.00626855297, 0.0125082517, 0.00383759523, 0.00447238516, -0.0247135349, -0.00430647423, -0.0377411619, 0.00538850296, 0.0112242447, -0.00507110776, 0.0157254841, 0.0241941623, 0.0180049576, 0.00353823393, -0.0165766794, 0.00558326812, -0.00837490242, -0.0114117963, 0.0374237671, -0.000866524642, -0.0115344264, -0.0114334365, 0.00194043817, -0.00297738239, -0.0144919716, 0.018755164, 0.021683855, 0.0050530741, 0.0109501304, 0.0181203745, 0.00992581, 0.00886542164, 0.0137417642, 0.0195630789, 0.00496290484, 0.003604959, 0.00893755723, 0.0124577573, -0.00916117616, -0.0166920964, 0.00636593578, 0.00119744509, -0.00442910427, -0.00930544734, 0.00157886022, -0.000756969268, 0.0308738854, 0.0157254841, -0.013244031, 0.0238479134, 0.0129915578, -0.0054281773, -0.00405760761, 0.00188453333, -0.0125154657, -0.00792766362, 0.00376545987, 0.0109429173, -0.0047825668, -0.00325690652, 0.00431008125, -0.00300984317, -0.00711974874, 0.0103081269, 0.0229390077, 0.00536325574, 0.0130204121, 0.0077256849, -0.0152782453, 0.000317395083, -0.00357790827, -0.00683842134, -0.0141096544, -0.0124577573, 0.00318296789, -0.00332182809, 0.0165478252, -0.0176875629, -0.0203421395, -0.00654627383, -0.00858409423, 0.00180518453, -0.00357249822, 0.00293770805, 0.0013687663, 0.00430647423, 0.00589344976, -0.0234439559, 0.00286557269, 0.00792045053, 0.0145713203, -0.0179039687, 0.0104019027, -0.0292724837, 0.0221888013, 0.0150618395, -0.0145641062, -0.00546063809, 0.00911068171, 0.0155956401, 0.0179039687, -0.000666800188, -0.00378349377, -0.0294744615, 0.00398186548, 0.0168507937, -0.0149752777, -0.00831719395, 0.00243276125, 0.00158787717, 0.0286521204, 0.00215864717, 0.0146073876, -0.0272382703, -0.00143549137, 0.0165622532, 0.0177885517, -0.0333264843, 0.00322985579, 0.00381595455, -0.0458780155, -0.014073587, 0.000504045049, -0.00687809568, 0.0227803104, 0.000656881602, 0.000131421402, 0.00585738197, -0.000109217275, 0.00854081288, 0.0296331588, 0.00312525965, -0.0103369812, -0.0140014514, 0.0144270491, -0.00175018143, 0.0124866115, 0.00480781402, 0.00548227876, -0.0107409386, 0.011606561, 0.00708728796, 0.00368791446, -0.00849031843, -0.0115632806, 0.0186397471, 0.0225350522, -0.00292688771, 0.011253099, -0.0020630681, -0.0159563161, 0.00649938593, -0.0147083765, 0.00856966712, 0.00420909189, -0.00216766424, 0.0113829421, 0.0167786591, -0.00116408255, -0.00771847134, 0.0150906937, 0.000661390077, -0.000211333725, 0.00333625521, 0.00839654263, 9.86787636e-05, -0.0135181453, -0.0145713203, -0.0172836054, 9.77207164e-05, 0.00507110776, -0.00279884762, 0.0121836429, 0.00469239801, 0.00856245402, -0.00289803348, 0.014297206, 0.0237324964, 0.00542457076, -0.00456976797, -0.0184233431, -0.00266539748, -0.0142827788, 0.011606561, 0.00748763885, -0.0448392704, -0.00550752599, 0.00388087635, -0.0088005, 0.00694662426, 0.00769683067, 0.00966612343, 0.0019512584, 0.0040900684, -0.0255070236, 0.00311984937, 0.00709450152, -0.00691777, 1.87805235e-05, -0.0169950649, -0.0409151129, 0.0128689278, -0.000268027536, -0.0190292783, -0.0367889777, 0.00107301178, -0.0248000976, 0.0210202113, 0.0200968795, 0.0163169932, -0.00383038167, 0.0254493151, -0.0012749905, 0.026617907, 0.025204055, 0.000535604195, 0.00248866598, 0.0123711945, 0.0115560666, 0.00675546611, -0.00468518445, -0.0123351272, -0.0225639045, -0.000892673677, 0.0366158523, -0.00142557279, 0.0213664602, 0.00681678066, -0.00758141465, 0.00797094498, -0.0157254841, -0.00692859059, 0.00159869739, -0.0219002608, -0.0159130357, 0.0190437045, 0.0114190094, -0.0354039781, 0.0128545007, 0.0072568059, -0.0126164546, 0.00550752599, 0.00898805168, 0.0159563161, -0.0261562411, 0.0172114708, 0.00786995515, 0.00543178432, 0.018048238, -0.00139221025, -0.0055580209, 0.00631904788, -0.0156677756, 0.000756969268, 0.025319472, -0.011483931, -0.00525505282, 0.0178462602, 0.00491962396, -0.0106976572, -0.0113035934, -0.0281760283, 0.0203709938, 0.00567343738, -0.0387222022, 0.00512520922, 0.00451566651, 0.000177182199, -0.00603772, -0.018163655, -0.00362659944, 0.0220156778, -0.0050170063, -0.0258677, 0.00833162107, -0.0141385086, 0.00372578553, 0.00374742621, 0.0192601103, 0.0222320836, -0.00398186548, -0.00154910446, 0.0315375291, 0.00971661787, 0.015826473, 0.0244249944, 0.0189571436, -0.026141813, 0.00468157744, -0.00486191548, 0.00107481517, 0.0103730485, -0.0127174444, -0.00552556, -0.00911068171, 0.00913232192, 0.000525685609, 0.0248000976, 0.00642003678, -0.00769683067, -0.00370053807, 0.0179905314, 0.0105678141, -0.00556162745, 0.0183223523, 0.0199814644, 0.00373660587, -2.17110191e-05, -0.0306142, 0.00750206551, 0.00517570414, 0.0328936726, 0.00231013121, 0.00719909789, 0.00530194072, -0.0102648456, -0.0188705809, -0.0107120844, -0.0132800993, 0.00543899788, -0.00328576053, 0.00234980579, 0.00454091374, -0.00695023127, 0.0045012394, 0.00805029366, 0.00897362456, -0.02063068, -0.00664726319, -0.00285655586, 0.000612698728, 0.0141457217, 0.00516488357, -0.00446877861, -0.0189715698, 0.00467797089, 0.0107553657, -0.015364808, 0.0096589094, -0.0172258969, -0.0137056969, 0.0110511202, 0.0158120468, 0.00108653714, -0.00422712555, -0.0141529357, -0.0142755657, 0.00219471497, -0.0013768815, 0.00123170938, -0.0370486639, 0.02977743, 2.92485893e-05, 0.00112080143, 0.00535243517, -0.00590787688, 0.0216405746, 0.0137273371, -0.00425958633, 0.00617838372, 0.00149590464, 0.00443271082, -0.00558687467, 0.0119744511, 0.00729287369, 0.010322554, -0.00587902265, 0.00847589131, -0.00947857182, 0.000263519061, -0.0120177325, -0.0253338981, -0.0081729237, 0.00244718837, -0.010668803, 0.00431008125, 0.0100267995, -0.0306430534, 0.00814406946, -0.00695383782, 0.0021568439, 0.00407924829, -0.00938479602, -0.00680235401, 0.00365906046, -0.00284573552, 0.00211536605, 0.00219651824, -0.0146146007, -0.00789880939, 0.0104523972, 0.00460583577, 0.0156677756, 0.0189282894, 0.00843261, 0.0233573932, 0.00576721318, 0.021337606, 0.0110583333, -0.00258604856, 0.0458491631, -0.0116642695, 0.00411170907, -0.0132368179, -0.0112026036, -0.00623969873, 0.0141096544, 0.00990416948, -0.0035869251, -0.00344445813, 0.00212799, -0.0202988591, -0.00465272367, -0.00761748198, 0.000452197826, 0.029416753, -0.00260047568, -0.0228524469, -0.00475010602, 0.0240787454, -0.00229390082, -0.0168363675, 0.00338855316, -0.0270651449, 0.00476092612, -0.00754534686, 0.00113793358, 0.0133017395, 0.00157886022, 0.0190004241, 0.0102864867, 0.00224520965, 0.0076679769, -0.00369332475, -0.0126308817, -0.0116570564, -0.0333264843, 0.002549981, -0.0109284902, -0.00284393202, 0.012306273, 0.00164558529, -0.0048655225, -0.00626133941, -0.00282048807, 0.00746599818, -0.0115560666, 0.00835326128, 0.0175432917, 0.0306430534, 0.00625412585, 0.00161582953, -0.0028962302, -0.0199958906, 0.0229101554, 0.00385562889, 0.0204719827, -0.00961562805, -0.0134460097, 0.00311804609, 0.0130420523, -0.000889968593, -0.00701875938, 2.62476497e-05, 0.00111539126, -0.0255070236, -0.015826473, -0.0110727604, -0.0258821268, 0.0109284902, 0.00445795851, -0.0114262234, 0.0154946512, 0.0118085397, 0.0105606, 0.0014625421, 0.0133089535, 0.00314149, -0.010676017, -0.0262860842, 0.0192312561, -0.00834604818, -0.0234295279, 0.00282409484, -0.00323346257, -0.000855704362, 0.0180915203, 0.0133305937, 0.00692859059, -0.00467075733, -0.00118572311, 0.032345444, 0.00235160906, -0.0152638182, 0.0144559033, -0.00525144581, 0.00481502758, -0.0241797343, -0.00336691272, 0.0053235814, 0.00358872861, 0.0183944888, 0.0121980701, -0.0159995984, -0.0242518708, -0.0181059465, 0.0111016147, 0.00778339338, -0.0175432917, -0.00295934849, -0.0160861593, 0.00713056931, -0.00130294287, 0.0196640678, 0.0089952657, 0.00291787065, 0.00627937308, 0.0154080885, 0.00277540367, 0.00441467715, -0.022275364, -0.00378349377, -0.0162592847, 0.0192601103, 0.0184521955, -0.000720901648, 0.00154639932, -0.0124721844, 0.00885820854, -0.0624979772, 0.0213520341, 0.0130204121, 0.00430286769, 0.0100556538, -0.000846687471, 0.0111160418, 0.0204431284, 0.0282048825, 0.0217704177, 0.0159851704, -0.000100932994, 0.000272085133, 0.00848310534, -0.026848739, -0.0049124104, 0.0157687645, -0.000957595417, -0.0108347144, -0.0163169932, 0.0103369812, 0.0148598608, 0.00173845945, -0.00989695638, 0.0187840182, 0.0128400736, 0.011721978, -0.00233537867, -0.00437500281, -0.0207893774, 0.00952906627, 0.000274339371, -0.00701875938, -0.0188128725, -0.0184954777, 0.0105389599, 0.00358331832, 0.00151844695, -0.0163891278, 0.00505668065, -0.00636232877, 0.00968055055, -0.00636593578, -0.0100917211, -0.0166488159, 0.00537768286, -0.0183512066, 0.00200716336, -0.0127967931, -0.00915396307, -0.0156533495, 0.0102071371, 0.00613510283, -0.00906018727, 0.0129049961, -0.00587902265, -0.00576360617, -0.00526948, 0.00104415766, 0.00890149, -0.00448320573, 0.00368971797, 0.00963005517, 0.00355987437, 0.0189715698, 0.0167930853, -0.00621445151, -0.00954349339, -0.00357971154, 0.0297485758, 0.00603411347, 0.0110944007, 0.00983924791, -0.00814406946, -0.00877164584, 0.00713417586, 0.0138499672, 0.0032406759, 0.0140447328, 0.0380297, 0.0154225156, 0.00147155905, 0.0106904432, 0.00619641785, 0.0150329852, 0.00884378143, -0.0125803873, -0.0187118836, 0.014542466, -0.00305673108, 0.00295033166, -0.00769683067, -0.019101413, 0.00710171508, -0.000493224768, 0.0178751145, -0.0124793975, -0.0106327357, 0.011837394, -0.0130204121, 0.0137634054, -0.0118013266, 0.0179905314, 0.00302066351, 0.0185676124, -0.0210634917, -0.00775453914, -0.0192889646, -0.0273248311, 0.00331822131, 0.0157110561, -0.00463829655, 0.0128689278, -0.0126813762, 0.00841818377, 0.0114695039, 0.00454452075, 0.00828834, -0.00999073219, 0.0149464235, 0.00559408823, -0.014419836, -0.00188092655, -0.00636954233, 0.00270326831, 0.00996187795, 0.00488355616, -0.0113108065, -0.0116859097, -0.0152493911, -0.00430286769, 0.0104235429, -0.000723606674, -0.0288108177, -0.0019043705, 0.00655709393, 0.00617838372, 0.00410088897, -0.00709450152, 0.0104235429, 0.00360856578, -0.00851196, -0.00236964296, -0.00222897925, -0.0195197985, 0.00412252918, -0.0126958033, 0.00300804, -0.0173701681, -0.0106471628, -0.00944971759, -0.00359053188, -0.000634339347, 0.0159851704, -0.020169016, -0.0212221891, 0.00553998677, 0.00985367503, 0.0156100672, -0.0103586214, 0.00538850296, -0.00348052569, -0.00421991199, -0.00922609773, 0.0202844311, 0.0013218784, 0.00387366279, 0.00282048807, 0.00222897925, 0.00841097, 0.00526948, 0.0102792727, -0.0189138614, -0.000700162724, -0.0112098176, -0.00704400707, 0.0309893023, -0.00818013679, 0.029185921, 0.00502782688, 0.020399848, 0.00589344976, 0.00418023765, 0.0365292877, -0.0205729734, -0.0213087518, -0.00201077, 0.0110294791, 0.00340478378, 0.00231734477, 0.0190148503, 0.012659736, -0.00412613619, -0.0140519459, -0.0180049576, 0.00795651786, -0.0122485654, -0.0305276364, -0.00508553488, 0.0184377693, 0.0013768815, 0.013950957, 0.00523701916, -0.0127535118, -0.0181348, -0.0155667868, -0.0042668, -0.0017555916, -0.0108852088, -0.0163314193, 0.000542817754, 0.00472125178, -0.00833883416, 0.011144896, 0.0145496791, -0.00295033166, -0.00500257919, 0.0122774187, -0.0089952657, 0.00791323651, 0.00963726919, 0.0118085397, 0.0114622908, 0.00289262342, 0.00390973035, -0.00333084515, -0.0050530741, 0.0205729734, -0.00687809568, -0.0168507937, -0.00434975559, 0.016518971, 0.00614231639, -0.0103009129, 0.0162592847, 0.00720270444, 0.00473928591, -0.00275376299, -0.00364102656, 0.00497733196, 0.0321146138, 0.017456729, 0.00917560328, 0.00623609219, 0.0114478637, -0.0194332357, 0.0133378068, -0.0088005, 0.017456729, 0.00184035045, -0.00390973035, 0.00237324974, -0.0214963034, 0.0208615139, 0.00122359418, -0.0234439559, -0.00716303, 0.011368515, -0.00620002439, 0.0190148503, -0.0131646823, -0.0134387966, 0.0136624156, -0.00494126463, -0.027209416, 0.00985367503, 0.00449763285, -0.00668693753, -2.15560408e-06, 0.0025680149, 0.00384120201, -0.020053599, 0.0142755657, -0.0223042183, 0.00147246069, -0.00794209074, -0.00254096417, 0.0286232661, -0.0143404873, -0.0046419031, -0.000863819558, 6.50344373e-05, -0.0124000488, 0.00315952394, 0.00206126459, 0.000211333725, -0.0242374428, -0.00939922314, 0.0136119211, 0.00222537247, -0.0183656346, -0.0290416498, 0.018524332, 0.00819456391, -0.0228091646, -0.00745878462, 0.0284212884, -0.0141457217, -0.00622166507, -0.0108563546, 0.0157687645, -0.0121475756, -0.00527308648, 0.00914674904, -0.0132007506, -0.02298229, -0.0110871876, -0.0302679501, -0.0231986959, -0.0131863235, -0.00157345, 0.00181329972, -0.00377267343, -0.00924052484, -0.00904576, 0.00129031925, -0.00398907904, -0.0125731733, 0.021568438, -0.00345167168, -0.0123351272, -0.00422712555, -0.00428483356, 0.00767519046, 0.00216045068, -0.00266539748, 0.0157687645, -0.0211644825, -0.00645249803, 0.00875721872, 0.0137056969, -0.000149342508, 0.00063929864, 0.0127390847, 0.00301164668, 0.0118951024, 0.00162033795, 0.00672661187, 0.0018881401, -0.00753091974, 0.00771125779, -0.00513603, -0.00361036905, -0.022390781, 0.019101413, -0.00905297324, 0.0033813396, -0.00509274844, 0.0239633285, 0.0110439062, -0.00424155267, 0.0188417267, 0.0233718194, 0.0166776683, 0.00596197834, -0.00875000563, -0.00446877861, -0.0110583333, 0.0241508801, -0.0158986077, -0.0123423412, -0.00368250441, -0.00969497766, -0.0028962302, -0.00849753246, -0.00920445751, -0.00468157744, -0.0114334365, -0.0107337246, -0.00426319335, -0.00680235401, 0.020053599, -0.00063388847, 0.0715004578, -0.0091828173, -0.0080791479, -0.0376257449, 0.0145568931, -0.00898083858, -0.0293446183, 0.0405400097, 0.00568786403, 0.0195486527, -0.00395661825, -0.00258965534, -0.0133955153, 0.013128615, -0.00794209074, 0.00668333052, 0.00900247879, -0.0042668, -0.00671939831, 0.00786274206, 0.0101782838, -0.0146073876, 0.0173990224, -0.0142683517, 0.000504045049, 0.00802143943, -0.0153503809, -0.00447599217, 0.00417663064, 0.00914674904, -0.0058285282, 0.00714138942, 0.0131935365, -0.00606657425, -0.018755164, 0.0106832301, 0.012313487, 0.00476453314, 0.002990006, -0.023689216, 0.0222465098, 0.00939200912, 0.007209918, -0.00634429511, 0.00476092612, -0.00469600456, -0.0137706185, -0.00161312451, 0.00183223526, -0.00999073219, 0.00161763292, -0.0132007506, -0.000482855306, -0.007209918, -0.0100989342, 0.00711614219, -0.00589344976, -0.01618715, -0.00406121463, 0.00477896025, -0.00758141465, 0.00265998719, 0.00456255442, 0.0166776683, -0.000478346861, -0.0200824533, -0.0128617147, -0.00240390701, -0.0122702057, -0.00242194091, -0.00752370618, -0.00776896626, 0.000232410748, -0.0134676509, -0.00986810215, -0.00187731977, 0.0122124972, 0.0162592847, -0.00924052484, -0.00148778944, 0.00415138341, 0.0154369427, -0.00471403822, 0.00301705673, -0.00249227276, -0.00721352454, -0.017701989, -0.00274654943, -0.0125515331, 0.032230027, -0.0088005, 0.0159707442, -0.0118229669, 0.0204287022, 0.00104596105, 0.0047825668, -0.0130059849, -0.00714138942, 0.0295754522, 0.0130276261, 0.0234583821, 0.00736861536, 0.0130636934, -0.0346826278, -0.0136984838, 0.0203565676, 0.00290524703, 0.009377582, 0.0146939503, 0.00829555374, -0.00257522822, 0.00788438227, 0.00939922314, 0.0317106545, -0.0160284527, 0.0188417267, 0.0030837818, 0.0115344264, 0.00248325593, -0.0124938246, 0.0204142742, 0.00517570414, 0.00651381304, 0.0085336, -0.00413334975, -0.0111809634, 0.0371640809, 0.0089303432, 0.00371496519, -0.0356636681, 0.0157254841, -0.0195053704, 0.0305276364, -0.0162592847, 0.00639839657, 0.029431181, 0.00186469615, 0.00424876623, 0.00931987353, 0.0205585454, -0.0222320836, -0.00280425767, 0.0174423028, 0.0178029798, -0.00196748879, 0.00715581654, 0.00766076334, -0.00779060693, 0.00227586715, 0.000143256097, 0.00804308, -0.0054642451, -0.00641643, -0.0254493151, 0.00621084496, 0.00762469554, -0.00168796477, -0.0125010386, -0.00134802738, -0.00649938593, -0.00224881642, -0.00445795851, 0.0305276364, 1.8421257e-06, -0.000937758188, -0.0179761034, -0.00906018727, 0.0042307321, -0.000553638034, 0.00860573538, 0.0189427156, -0.00102702563, 0.00384841533, 0.00701515283, -0.00539571652, -0.00439664349, -0.000181127092, -0.00173485267, 0.00718106376, -0.010899636, 4.9170314e-05, -0.000599173422, 0.0125371059, 0.0482729077, 0.00500979275, -0.0120105185, -0.00163025653, 0.00943529047, -0.0149608506, -0.00394219114, -0.00566622382, 0.00688530924, -0.00996187795, -0.00169157155, -0.00547506521, -0.0216117203, 0.00653184671, 0.00257342495, 0.00365545368, 0.00121547887, 0.00394940469, -0.000309054449, -0.0195197985, -0.0015274639, -0.0156966299, 0.0227947384, 0.00766076334, 0.000161064483, 0.00329838414, -0.00029620537, 0.0069394107]
21 May, 2024
Angular PrimeNG Form Dropdown Disabled Options Component 21 May, 2024 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the calendar component in angular ngx bootstrap. Dropdown Disabled Options Component: This is used to disable any component by using optionDisabled property. Syntax: <p-dropdown optionDisabled="inactive"></p-dropdown> Creating Angular Application & Module  Installation: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: Example 1: In the below code, we will be using the above syntax to demonstrate the use of the Angular PrimeNG Form Dropdown Disabled Options Component. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>A computer science portal for geeks</h3> <h4> Angular PrimeNG Form Dropdown Disabled Options Component </h4> <p-dropdown [options]="cities" [(ngModel)]="selectedCity" optionLabel="name" optionDisabled="inactive"> </p-dropdown> </div> app.component.ts HTML import { Component } from '@angular/core'; import { MenuItem } from 'primeng/api'; import { SelectItem } from 'primeng/api'; import { SelectItemGroup } from 'primeng/api'; interface City { name: string, code: string, inactive: boolean } @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'], }) export class AppComponent { cities: City[]; selectedCity: City; constructor() { this.cities = [ { name: 'India', code: 'IND', inactive: false }, { name: 'Rome', code: 'RM', inactive: true }, { name: 'London', code: 'LDN', inactive: false }, { name: 'Istanbul', code: 'IST', inactive: true }, { name: 'Paris', code: 'PRS', inactive: false }, ]; } } app.module.ts Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { DropdownModule } from 'primeng/dropdown'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, DropdownModule, FormsModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } app.component.scss :host ::ng-deep .p-dropdown { width: 14rem; } Output: Example 2: In the below code, we will be using the above syntax to demonstrate the use of the Angular PrimeNG Form Dropdown Disabled Options Component. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;">GeeksforGeeks</h1> <h3>A computer science portal for geeks</h3> <h4> Angular PrimeNG Form Dropdown Disabled Options Component </h4> <p-dropdown [options]="cities" [(ngModel)]="selectedCity" optionLabel="name" optionDisabled="inactive"> </p-dropdown> </div> app.component.ts Javascript import { Component } from '@angular/core'; import { MenuItem } from 'primeng/api'; import { SelectItem } from 'primeng/api'; import { SelectItemGroup } from 'primeng/api'; interface City { name: string, code: string, inactive: boolean } @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'], }) export class AppComponent { cities: City[]; selectedCity: City; constructor() { this.cities = [ { name: 'India', code: 'IND', inactive: true }, { name: 'Rome', code: 'RM', inactive: true }, { name: 'London', code: 'LDN', inactive: true }, { name: 'Istanbul', code: 'IST', inactive: true }, { name: 'Paris', code: 'PRS', inactive: true }, ]; } } app.module.ts Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { DropdownModule } from 'primeng/dropdown'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, DropdownModule, FormsModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } app.component.scss :host ::ng-deep .p-dropdown { width: 14rem; } Output: Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component
https://www.geeksforgeeks.org/angular-primeng-form-dropdown-disabled-options-component?ref=asr10
Languages
Angular PrimeNG Form Dropdown Disabled Options Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0451138318, -0.0101040946, -0.0161818024, 0.0238075349, 0.0652762651, 0.0116673699, -0.017554434, 0.00355359097, 0.00414077239, -0.0186372884, 0.00558584882, -0.00417508837, -0.00861707702, -0.0587486401, 0.0137034403, -0.0215198155, -0.0612498783, 0.0211537797, -0.00200747396, -7.3993433e-05, -0.0055362815, 0.0100430893, -0.0363289863, 0.0390132442, -0.0210165177, 0.052251514, 0.0124680717, 0.0118275099, 0.00569260912, 0.0154954875, 0.00695466762, -0.0119037675, 0.0179357212, 0.00742365, -0.0553628132, 0.00597094791, -0.00111526332, 0.00690510031, -0.0171884, 0.0251039099, -0.032790646, -0.0203149505, -0.00940252747, -8.10829806e-05, -0.00781637523, -0.0162733123, -0.00786975492, -0.0253936872, -0.016349569, 0.0246616174, 0.0332786925, 0.0203454532, 0.0149540603, 0.0346513242, 0.00293209404, 0.0374575965, -0.0188813116, 0.00438479567, -0.00167670776, 0.0156480018, 0.0190338269, -0.0379151404, 0.00216570776, -0.0332481898, 0.00221718149, 0.0251649152, 0.00631791912, 0.0140465982, -0.0209097564, 0.0121782944, -0.0285202377, 0.0288710203, -0.00960079674, -0.0102566099, -0.0273458753, -0.0160140377, -0.0115529839, -0.00467838673, -0.0257292204, 0.0304876771, 0.00431235135, -0.0169138741, -0.0138635803, -0.00732832821, 0.00933389552, 0.0188660603, 0.0266595595, -0.0462119356, 0.0130171245, -0.00328478403, 0.0103099896, 0.00464788359, 0.0188813116, -0.0342547894, -0.0244480968, 0.044290252, 0.0174476746, -0.0026194388, -0.0362069756, 0.0075571, -0.0211080257, 0.0242955815, -0.00428947434, -0.00512830494, -0.00377473724, -0.00796126388, 0.0474320538, 0.00188736862, 0.0315705314, -0.00838067941, -0.0256072078, -0.0252411719, 0.0205284711, 0.023487255, -0.0302131493, 0.0341632776, 0.0157395098, -0.0368780382, 0.01234606, -0.0123994397, 0.0017586844, -0.00344301807, -0.03696955, 0.0488046855, -0.0302436519, 0.03196707, -0.0229534525, -0.0191100836, 0.0101040946, 0.00620353315, 0.0216418281, 0.00690510031, -0.0298318639, -0.00427803583, 0.0173104107, 0.0304266699, 0.00239257328, 0.00529988389, -0.0552408025, 0.0142982472, -0.0219773594, -0.0268578287, 0.00194646802, -0.00441148598, -0.0343157947, 0.0287947636, -0.00336866709, 0.0655812919, 0.0133297797, 0.00783162657, -0.042155046, -0.0462424383, 0.0299843773, -0.00515499478, 0.0355054066, -0.00825104211, -0.0127273463, -0.0295115821, -0.0151599552, -0.00629122881, -0.00288824597, 0.0318145528, -0.00856369734, 0.0054295212, -0.0115606096, -0.0160140377, 0.00345826941, -0.0441072322, -0.0344378054, 0.0453883559, 0.0237922836, -0.00797651522, -0.019643886, 0.0133755337, -0.0119723994, 0.0131315105, 0.00753041031, 0.00424753269, 0.037854135, 0.0091585042, -0.038494695, 0.00928051583, -0.0110039311, -0.0206809845, 0.019872658, -0.0152285863, 0.00738170836, -0.00768673792, -0.0335227177, 0.0153658502, -0.0362984836, -0.00228581321, 0.0253479332, 0.0417280048, 0.00959317107, 0.00910512358, -0.0657643154, -0.00257940381, 0.00408357941, -0.000773535168, 0.00206657336, -0.0180424824, -0.0196133833, 0.026125757, 0.0181034878, 0.0290082842, -0.00673733419, 0.00647043344, 0.0271323547, -0.00358981336, 0.00073635974, 0.00272810552, 0.0120181534, 0.0264307875, -0.0197658967, 0.017462926, -0.0221756287, -0.0124299433, -0.0473405421, 0.00893735792, -0.0124985743, 0.0406604037, -0.000845979608, 0.0165325869, -0.117619291, -0.00638273777, -0.0187745523, -0.020986015, 0.00608914718, 0.00288443314, 0.0202081893, -0.00804514717, -0.000650570262, -0.0123765627, 0.0333702043, 0.0351393744, -0.0145193934, 0.00273001194, -0.0186830424, 0.0541732, 0.0107751591, 0.00124680717, -0.0377016179, -0.0586266257, 0.0185152777, -0.00285393023, 0.00662294822, 0.0203607045, 0.0315705314, 0.0350783654, -0.0107370308, -0.0114233466, -0.00460975477, -0.0240058042, 0.00369466702, 0.0123994397, 0.00336866709, -0.0228771959, 0.000982766156, 0.00971518271, 0.0149769373, -0.0024497665, -0.00745034032, 0.0531666, 0.0023430062, -0.0275593959, 0.0218400955, -0.0293895714, -0.0155869965, 0.0133297797, 0.0502078198, -0.0143363765, -0.00717962673, 0.0186982956, 0.00892973226, -0.017142646, -0.0101956036, -0.0217790902, 0.0484386496, 0.0376406126, 0.00697754463, -0.019872658, -0.00179871952, 0.000341251493, -0.00523887761, -0.0549967773, -0.00408739224, 0.0388912335, -0.0402943678, 0.06002976, -0.0177527033, -0.00299881911, -0.0167156048, 0.0158767737, 0.0384336896, 0.0489572, 0.000968467968, 0.0208335, -0.00802227, 0.034285292, -0.024875138, -0.0101574752, -0.00436954433, 0.0131315105, -0.0425210819, 0.0227551833, 0.0244786, -0.0153429722, -0.0288100149, -0.0404773839, 0.0114691006, -0.00566591881, -0.0416059941, -0.0249056406, -0.0436191857, 0.031036729, -0.00163571956, 0.0197658967, -0.0296946, 0.00643611792, 0.00135070772, -0.00193121657, -0.0553628132, 0.00883059762, 0.0311739929, -0.00357265538, -0.039928332, -0.0228771959, 0.0216418281, -0.0282304604, -0.0565829314, -0.0149311833, 0.0116368672, 0.00949403644, 0.00613108836, 0.000973234, 0.0267510675, -0.073695071, -0.00553246867, 0.0258207284, -0.0240363069, -0.0295420848, 0.024920892, 0.00256415247, 0.0387692228, -0.0385557, -0.000696801231, 0.0129179899, 0.0316925421, -0.00187974295, 0.00145079545, 0.0132382708, 0.0441377349, -0.0281847045, 0.0602737851, -0.0179052185, 0.016166551, -0.0359629504, -0.047249034, 0.00186163175, 0.0153658502, -0.0193693582, -0.0279406812, 0.0501163118, 0.0350478627, -0.0254546925, 0.00250314642, 0.00484615285, -0.00501010567, 0.0148167973, -0.0291455481, -0.0205284711, 0.0112403287, 0.00679452717, -0.0492317267, -0.0157852657, 0.00936439913, 0.00388531038, -0.000230916688, -0.00545621105, -0.0633850843, 0.0662523583, 0.0141304815, 0.0301216412, 0.0164258275, 0.0016700353, 0.0259732436, 0.0113013349, -0.0161970537, 0.0101651009, 0.013619557, 0.0381286591, 0.00621115882, -0.0121172881, 0.00423609419, -0.00826629344, -0.00118484814, 0.0119418958, 0.0259579923, -0.0200556759, 0.0081214048, 0.0287032556, 0.0153048439, -0.00659625791, 0.00923476182, -0.0180577338, -0.0139932185, -0.00269760261, 0.0145575227, -0.0137415687, 0.0233652424, 0.00703092478, -0.0302436519, 0.0323636048, 0.00311129866, 0.0110115567, -0.015121826, 0.0236397684, -0.0164563302, -0.0396843106, 0.0449613146, -0.0041789012, -0.00962367374, 0.006150153, 0.0076104803, -0.0143592535, -0.0577115379, 0.0371220633, 0.0282304604, 0.00358981336, -0.00766004762, -0.0124070663, 0.00543714687, -0.0481031165, -0.009799066, 0.018530529, -0.00403782493, 0.0528920777, 0.00691272598, -0.0121935457, -0.0206352305, -0.0179662239, 0.0163343176, -0.0446562879, -0.0170816388, -0.021123277, -0.0464559607, -0.00584893627, -0.0169901308, 0.0050177318, -0.0430396311, -0.0230297111, -0.0222671367, -0.0285049863, 0.00786975492, -0.0266748108, 0.023533009, 0.00430472568, 0.000235921078, -0.00715674926, -0.0240210555, 0.0470050126, -0.00114671944, -0.0147939203, 0.0232737344, 0.0139169609, 0.000985625898, 0.0330346711, -0.00713387225, 0.0323026, 0.00247645634, 0.0163343176, 0.0304876771, 0.0294810794, -0.00219430425, 0.0348343439, -0.00966942776, -0.000541903602, -0.0516414568, 0.0070804921, 0.0627140179, 0.000151442277, 0.0650322437, -0.0498417839, -0.00465932209, -0.0258359797, 0.0389522389, -0.0229382012, -0.0301216412, -0.00657719374, 0.00854844507, -0.00481183687, -0.0565829314, 0.0271171033, 0.0110115567, -0.0330346711, -0.0294658281, -0.043588683, -0.00645136926, -0.00127635687, 0.0257139672, 0.0301826466, -0.0440462269, 0.0173104107, 0.0511229075, -0.0259732436, -0.0253021792, 0.00824341644, -0.0362679809, -0.0119113931, -0.0214130562, 0.00169672538, 0.000372945942, 0.0091813812, 0.00510542747, -0.00752659747, -0.00753041031, 0.0417585075, -0.00484615285, -0.00815953314, 0.040721409, 0.00183780142, -0.0164563302, -0.0066534509, -0.0289015248, 0.0440462269, 0.0133374054, -0.033583723, 0.00211232784, 0.00831204746, -0.0089678606, 0.0124680717, 0.0345903188, 0.032150086, -0.0088611, 0.00353262038, -0.00387768471, -0.0190948322, -0.0121477908, 0.0213673, -0.0398063213, 0.0314790197, -0.0373355821, 0.00982956868, -0.00800701883, 0.00106855563, -0.00413314672, -0.0253021792, -0.0143821305, 0.0318755582, 0.0190643296, 0.0236092657, -0.0196133833, 0.00135547388, -0.0402638651, -0.0366035141, -0.0409349278, -0.0155717442, -0.00673352135, -0.0315705314, 0.00265184836, -0.0208029971, 0.0376101099, 0.00451062061, 0.00847981405, -0.021031769, 0.0176459439, -0.0216113236, 0.0255767051, -0.0132382708, 0.0145270191, -0.0178442132, -0.00870858599, 0.0152285863, 0.0124528203, 0.0153200952, 0.0215503182, -0.0048957197, 0.00119724, 0.000140361124, 0.000234967869, -0.00417127553, -0.00911274925, -0.0115377326, 0.012483323, 0.00454874896, 0.0366645195, 0.00725207105, -0.0299996287, -0.00532657374, 0.0253936872, 0.0255462024, 0.0141838612, -0.000590041, 0.0267053135, 0.0193083528, 0.000295258797, 0.0210927743, -0.000972280803, 0.000137978088, -0.00029907166, 0.0234720036, -0.0083349254, 0.0179814752, 0.00755328732, -0.00344301807, -0.0400503427, 0.00410645688, 0.0262325183, -0.00719106523, -0.0291608, -0.0185915343, 0.038586203, -0.0172036514, 0.0157700144, -0.0178137105, 0.00942540448, 0.00927289, -0.00186258508, -0.0177069493, -0.00906699523, 0.00769817643, 0.064300172, 0.0148091717, 0.024966646, -0.035108868, -0.00836542808, -0.0196133833, -0.000296926941, -0.00652762642, -0.0320890807, -0.0202997, -0.00292637455, 0.00900599, 0.0176459439, 0.00910512358, 0.0102794869, 0.0166851021, -0.00460212911, -0.000515213527, 0.0268425755, 0.0171731487, -0.0206199791, 0.0572234914, -0.0159377791, 0.0163343176, -0.0250124, 0.00121439784, 0.0275441445, -0.0179204699, -0.0375491045, -0.0103557436, 0.0196743887, 0.00576886628, 0.00534563791, -0.0163343176, 0.00537614105, -0.0142829958, -0.0148778027, 0.0311129857, -0.0284287278, -0.0173561666, 0.0210470203, -0.0103557436, 0.0111259427, 0.00762954494, 0.0340412669, 0.0193846114, 0.0251954179, 0.0119266445, -0.00533038657, -0.0359629504, 0.00876959134, 0.0164868329, -0.0212910436, -0.0307317, -0.011118317, 0.0165173355, -0.00162809377, 0.00517405896, -0.0202081893, 0.042795606, 0.0258817337, 0.0216418281, -0.00614634, -0.00247264351, -0.0310672317, -0.00826629344, -0.011186949, 0.0256987158, 0.000342919637, -0.0260952543, 0.0257444717, -0.0120257791, 0.00347161456, -0.02751364, -0.0054180827, -0.0290997922, -0.0132687734, 0.00441529881, -0.0145422705, -0.039287772, -0.0397453159, 0.0279254299, -0.00669539254, 0.0110420594, -0.0065619424, 0.0410569422, -0.0240058042, -0.0132763991, 0.0226484239, 0.00474320538, 0.0152895926, 0.0380981565, -0.014984563, 0.0304571725, -0.00703092478, -0.00264803553, -0.023258483, -0.0257749744, 0.000819289591, -0.00462119374, 0.0119647738, 0.0115911122, -0.0190490782, 0.00196553231, -0.018850809, -0.0401723571, -0.0250734072, 0.000125943727, -0.0242650788, 0.0425210819, 0.0140084699, -0.00636367314, -0.0255157, -0.00785450358, -0.000290492724, 0.0184542704, 0.0271323547, -0.0106150191, 0.0139169609, -0.0201624352, 0.00970755704, 0.00326190679, -0.000447773433, 0.0240515582, 0.0134289144, -0.00647805911, 0.0132916505, 0.0093949018, 0.00101136265, -0.00658863224, 0.0288862735, -0.030762203, -0.00834255107, -0.00227246806, -0.0101269716, 0.0137644466, 0.0197658967, 0.0231974758, 0.00040440209, 0.0186372884, -0.0146795344, 0.000165740523, -0.00178251485, -0.00354977814, -0.0185610317, 0.00497197732, 0.0115911122, 0.000460641866, 0.0272696167, 0.0161970537, 0.0236092657, 0.0135204224, -0.0093949018, 0.00805277284, -0.0129637439, -0.0241125636, 0.00668395404, -0.0108971708, -0.027147606, 0.0169443768, -0.00889160298, -0.022373898, 0.00194074877, -0.0139093352, -0.00165954989, 0.0117131239, 0.0370305553, 0.02219088, -0.0142906215, 0.0119342702, 0.00610821135, 0.0119037675, 0.0341632776, -0.0412704609, 0.00878484361, -0.0136043057, 0.0245243534, -0.0442597494, -0.0170816388, -0.0216723308, 0.0145880254, 0.0175849386, 0.0200709272, -0.0108285397, -0.0164563302, 0.0145422705, -0.0161513, -0.0123613114, 0.0154039785, -0.00664201239, -0.0202539433, 0.0355054066, 0.01375682, -0.0207267385, 0.0216875821, 0.0285964943, -0.0385557, 0.015098949, 0.0251801666, -0.018667791, 0.0169443768, 0.0091813812, -0.0164563302, 0.0265985522, -0.0215655696, 0.00795363821, 0.00526175508, 0.00253936881, -0.0132001424, -0.0345293134, -0.0290235355, 0.0223128907, -0.00427422253, 0.00169577217, 0.0176611952, 0.0281389505, 0.0396233, -0.0080375215, -0.0110268081, 0.0339192562, -0.0132687734, -0.0203454532, 0.0159682818, 0.00845693704, 0.00573073747, -0.0191405863, 0.0317840502, 0.0065733809, 0.0351698771, 0.0181339905, -0.0131086335, 0.0255919565, -0.027467886, 0.024875138, -0.00798414089, 0.0345293134, 0.0156098735, -0.00495672598, 0.0015928247, -0.0285049863, -0.00104377209, 0.0256072078, 0.00871621165, 0.0331566818, -0.0259274878, -0.0295115821, -0.0143668791, 0.00502154464, -0.0168528669, 0.0189423189, -0.00335341552, 0.0188355576, -0.0111106914, -0.0297861081, -0.030762203, -0.0255614538, -0.0156098735, -0.0184390191, 0.0207419917, -0.00799939316, -0.0217943415, 0.000644850952, 0.00892973226, 0.000118794604, 0.00116483052, -0.0265222955, 0.00321805896, -0.00149845635, -0.00626453897, -0.0199489146, 0.00550577836, -0.0305639338, 0.0357799344, 0.0391047522, 0.018622037, -0.0201776866, -0.0125900833, 0.00178442127, 0.00677165, 0.0144888908, 0.0212757923, 0.00188355579, 0.0232737344, -0.00151942705, 0.0262630209, 0.0229534525, -0.0132763991, 0.00905174389, -0.0133069018, 0.0126815923, 0.0147786681, -0.0104853818, 0.0248293839, -0.0126815923, -0.0527090579, 0.0334617123, 0.00422465568, -0.0438022055, 0.00841880776, 0.0176154412, -0.0264765415, 0.0309147164, -0.0104243755, -0.0118122585, 0.00098467269, 0.0242193248, -0.0241278149, 0.00694322912, -0.0101727266, 0.0306706931, 0.00890685525, 0.016395323, -0.0125138257, -0.0159072764, 0.0220841188, 0.0190185755, -0.0496892706, -0.00223433948, 0.0278034192, 0.015098949, -0.037854135, -0.0140694752, 0.00187593, -0.0296946, -0.00249361433, 0.0176459439, -0.0177679546, 0.00854844507, 0.0114233466, 0.000436811446, -0.00164620485, -0.0147710424, 0.0167613588, -0.0399588346, -0.0337972455, -0.00845693704, 0.00768292509, 0.00813665614, -0.0216113236, -0.0391352549, -0.0109047964, 0.0143592535, 0.0415144861, 0.0092652645, 0.00325237471, -0.0120334048, 0.0304876771, -0.0291455481, -0.0179662239, -0.01234606, 0.0377321206, 0.00376711157, 0.00906699523, 0.0207419917, 0.0159987863, -0.0180119798, -0.00951691344, -0.0147710424, 0.0247988794, 0.0217638388, -0.00571167329, -0.0096923057, 0.0241430681, -0.0230297111, 0.0138635803, -0.0408434197, -0.0217333362, 0.0112479543, 0.0223281439, -0.00948641077, -0.00917375553, 1.34418424e-05, 0.0122698024, -0.0506043583, 0.0412704609, 0.0196133833, -0.0126815923, 0.0299081206, -0.00350974314, 0.000333149161, 0.00210279552, 0.0296946, -0.0129484925, 0.0359934531, 0.0186067857, 0.0216875821, -0.0115224812, 0.00360125187, -0.0122469254, -0.00775918225, -0.0290845409, 0.000318612612, 0.0115301069, -0.00310748583, -0.00775155658, 0.0340717696, -0.0158005171, -1.05002755e-06, 0.0162123069, 0.0294505768, -0.0227704365, -0.00525794225, 0.0161513, 0.0316620395, 0.00066725153, -0.0288405176, 0.00417508837, 0.00216952083, -0.0048957197, 0.0130323758, 0.00672589568, 0.00549815269, 0.006775463, -0.00486521702, -0.0171731487, -0.03196707, 0.00101422239, -0.0156480018, 0.0239753015, -0.0135356737, 0.00383383664, 0.0069737318, -0.00641324045, 0.00609296, 0.00292828097, 0.0237770323, 0.0177069493, -0.0315095261, -0.00448011747, -0.00202463171, 0.00815953314, -0.0248293839, -0.0108742937, 0.0127654755, -0.00938727614, -0.00658100657, -0.0172646567, -0.0193846114, -0.00148511131, -0.0329126604, -0.0102642355, -0.0115072299, -0.0171273947, 0.029969126, -0.00215236284, -0.0212757923, -0.0145575227, 0.0164410789, 0.0190795809, -0.000584798341, 0.00731688971, -0.00246692426, 0.0103481179, -0.00682121702, 0.00962367374, -0.000444198871, -0.00700042211, -0.00146700023, 0.0476760752, 0.000985625898, 0.00522362627, 0.0285964943, -0.0254699439, -0.0248446353, -0.00661913538, -0.00430472568, -0.00976093672, -0.0192931015, -0.00111812295, 0.0225721672, 0.00105902355, 0.000488523452, -0.0156937558, 0.0042971, -0.027101852, 0.0812598, -0.00969993137, -0.0131925158, -0.0143745048, -0.00707667926, -0.0133984108, -0.00223433948, 0.0106912758, 0.0165630896, -0.0230602138, 0.0341937803, -0.0192168448, -0.00380905322, 0.0160445403, -0.00981431734, -0.00754566165, 0.00067869015, 0.0215655696, 0.0299386233, -0.0416364968, 0.0177984592, 0.00113623403, 0.00518549792, 0.00422846852, 0.0036412871, -0.0226941779, 0.00462119374, -0.00426659686, -0.00912800152, -0.0243260842, -0.000785450393, 0.00899073761, 0.031036729, 0.00313798874, 0.00131257914, -0.0188203063, -0.00423609419, 0.00452968478, -0.0130323758, -0.00119533343, 0.00331719336, -0.00131353235, 0.00436191866, 0.0012982809, -0.00142124575, 0.00106855563, -0.0103252409, -0.0142448675, -0.0129866218, 0.00722156838, 0.017783206, 0.000936058583, -0.00648187194, -0.00308270217, -0.0248446353, 0.0357799344, -0.00927289, 0.00165573705, 0.0208792537, -0.0173256621, -0.00154993, -0.00565829314, 0.0147252884, -0.0574065112, 0.0210012663, 0.00641705329, 0.0106607731, 0.0117512532, -0.0157090072, 0.0143897561, 0.0298623666, 0.0131315105, 0.0170663875, 0.00470126374, -0.000192668886, -0.00074541528, 0.0179509725, 0.00672589568, 0.0190185755, -0.0132458964, -0.0128493579, 0.000735406531, -0.0190795809, -0.00156899437, -0.0115072299, 0.000171102365, 0.00825104211, -0.0302436519, 0.000598143321, -0.0358409397, 0.02219088, -0.017142646, -0.0344988108, -0.00268044486, -0.00698898314, 0.00435810583, 0.0332176872, 0.00534182508, -0.00179014052, -0.00797651522, 0.0316010341, 0.0305486824, 0.0107294051, 0.0165935922, -0.00240973127, -0.00835780241, 0.039287772, 0.0076104803, 0.000496625784, 0.0201471839, 0.0447172932, 0.00876196567, -0.0112937093, -0.000932722352, -0.00375757948, 0.0132611478, 0.0274526346, 0.0247073714, 0.026354529, 0.0092652645, -0.0142067382, -0.00431997702, 0.0160140377, 0.025759723, 0.00441148598, -0.00613108836, -0.00105521071, 0.00468219956, -0.0138178263, 0.0133679081, -0.0152438385, 0.0197658967, -0.0133374054, -0.00116578373, -0.0183475111, 0.0169291254, -0.0102947382, 0.0311434884, -0.0130400015, 0.021077523, -0.0159377791, 0.0118885161, -0.0229229499, 0.00270713493, -0.0037995209, -0.000679643359, -0.0116902469, -0.00373851508, 0.017554434, -0.00011974782, -0.0120486561, -0.0145041421, -0.00134498847, 0.00392343896, 0.00511686597, -0.0136348084, 0.00664963806, -0.0191405863, 0.00161474873, -0.00621497165, 0.00885347463, 0.0300606359, 0.0222213827, 0.00783162657, 0.00420559105, 0.0114843519, 0.0204979666, -0.0459984168, -0.0176306926, -0.00499866717, 0.00795363821, -0.0171121433, 0.0131925158, -0.0114080952, 0.0418195128, -0.00693179, -0.00856369734, -0.0295573361, 0.00855607167, -0.00368894776, -0.0244480968, 0.00131448556, -0.00237922836, 0.0106531475, 0.00469363807, -0.00124776037, -0.00126301183, -0.0139855919, 0.00691272598, -0.000892210635, -0.0163343176, -0.0141076045, 0.026080003, 0.0304114185, 0.0368475355, 0.0187745523, -0.0105006332, -0.00340298284, -0.00223052665, 0.032241594, -0.0174476746, -0.00106569601, 0.0142601188, 0.0198116507, 0.00354405888, -0.00303122844, -0.0090746209, -0.00568879582, 0.00546765, -0.0253021792, -0.0138940839, -0.0078240009, -0.000727780804, -0.014938809, -0.0204522125, -0.000990391942, -0.00054714625, -0.0162733123, -0.00701567344, -0.0203454532, 0.00189022825, 0.000398206175, -0.00844931137, -0.00247455, -0.0061349012, 0.00863995403, 0.00957029313, 0.00493003568, -0.0109047964, 0.00242879568, -0.00362412911, 0.00635223463, 0.0148320487, -0.00237922836, 0.00133450306, 0.0248141326, -0.00117436273, -0.027467886, -0.0167308562, -0.0142067382, -0.0029206553, -0.00440004747, -0.00119628664, 0.00685172, -0.00865520537, -0.000137858937, -0.00725207105, -0.0088611, -0.0202997, 0.0360544622, -0.00727494806, -0.0217028335, 0.0136271827, -0.0156785045, 0.0104243755, -0.010958177, -0.0126815923, -0.00484233955, -0.00270332186, -0.0345903188, 0.0206047278, -0.0147862947, 0.00289968448, -0.00118389493, -0.0287642609, -0.0162123069, -0.0192473475, 0.0120639075, -0.00764098344, -0.0281389505, -0.00960079674, -0.000303361157, 0.00846456271, -0.0126434639, 0.0148320487, -0.0101345973, 0.0346208215, -0.00252221082, -6.43421154e-05, -0.0124070663, -0.0358104371, 0.0366950221, 0.0145727741, 0.0449613146, -0.017234154, 0.00690510031, 0.0151980836, 0.015121826, 0.0689976215, -0.00616540434, 0.0111716976, 0.00166145631, 0.00935677346, 0.0216265749, 0.0267968215, 0.0335227177, -0.00631410582, 0.000983719365, -0.0303504132, -0.0149235576, 0.0102184806, 0.000503774907, 0.0073855212, 0.0146719087, -0.00192454411, 0.0213367976, 0.0228619445, 0.00128302944, 0.0212452896, -0.0180729851, -0.00159091828, -0.00867808331, 0.0236550197, -0.0193846114, -0.0245548561, -0.0290387869, 0.0454798639, -0.00163953239, 0.00739696, 0.00297403545, -0.0325466245, 0.010981054, -0.0192625988, 0.00701948628, -0.0153658502, 0.003439205, -0.0129866218, -0.000455399189, -0.0334312096, 0.017783206, 0.0356884263, -0.0159530304, -0.0509398878, 0.0326991379, 0.00438479567, -0.00452968478, -0.0283524711, 0.000456352398, -0.00366225769, 0.00124776037, -0.0139627149, 0.0331566818, -0.0127044693, 0.0116521185, -0.00453349762, -0.0119952764, -0.0236092657, 0.00109143287, -0.0228314418, -0.0185457803, -0.00187402358, -0.0181797445, -0.00237922836, 0.0103404922, 0.00754184881, 0.00797651522, -0.000258559972, 0.00238685403, 0.0159530304, 0.00603576703, 0.016029289, 0.0253631845, 0.0119495215, 0.0159225278, -0.00212567276, -0.0164715815, -0.00588325225, -0.00337629276, -0.000391057052, 0.0343157947, -0.0136500606, -0.0195828788, -2.251974e-05, 0.00442292448, 0.00106188317, -0.00471270224, 0.00350211747, -0.00825104211, -0.0189270675, 0.0207724944, -0.00921188388, -0.0094787851, 0.00563922897, 0.00474320538, 0.000614824647, -0.00831967313, -0.00527700642, 0.0191558395, -0.0162885636, 0.0115606096, 0.0280626938, 0.00815953314, 0.0100202113, 0.00869333465, -0.0223433953, 0.0233957451, -0.0273458753, 0.00148225168, 0.00499866717, 0.00164429843, 0.0311739929, 0.0198421553, 0.00515118195, 0.00605864404, 0.0230297111, -0.00491478434, -0.00387387187, -0.00464025792, 0.0191558395, -0.0160902943, 0.0049491, -0.024920892, -0.0195828788, -0.0127273463, 0.00113528082, 0.00915087853, -0.00934914779, 0.0298928693, 0.00962367374, 0.0349563546, 0.0189118143, 0.017554434, -0.00643611792, 0.00254127523, 0.0249818973, -0.00439623464, 0.0261105057, -0.0172951594, -0.0173409153, -0.00203797687, -0.00142696511, -0.000597190112, -0.0114691006, -0.00379570806, -0.0455103666, -0.00710718194, 0.0102032293, 0.00409120508, 0.00556297135, -0.00971518271, -0.00759522896, 0.0102032293, 0.00351355597, -0.00126301183, 0.0110191824, -0.0213825516, 0.0167766102, 0.00826629344, 0.00144412299, 0.0167156048, 0.00293018739, 0.000396776362, -0.0112250773, 0.00522362627, -0.00416365, -0.00279673724, 0.00972280838, -0.0333092, -0.00529607106, -0.0104472525, -0.000966084888, -0.0206962358, -0.00423228135, -0.0159072764, -0.00251458515, 0.0163190663, 0.013848329, -0.00953216478, 0.0131086335, 0.0135890543, 0.000878389, -0.0135051711, -0.001835895, 0.00533038657, 0.00313036307, 0.00924238749, -0.0142753702, -0.0136348084, -0.00624928717, -0.00937965047, 0.00440386031, 0.00165859668, 0.0166393463, 0.0163038149, 0.0202997, 0.0269798394, 0.0162885636, 0.0177069493, 0.0245853607, 0.00928051583, 0.017142646, 0.00384908821, 4.97459841e-05, 0.00813665614, 0.00432760268, -0.0072940127, -0.00563922897, 0.0198879093, -0.00206657336, -0.00799939316, 0.0141381072, 0.00911274925, -0.00913562719, -0.0119723994, 0.0200404227, 0.0304114185, 0.00758379046, 0.0170358848, -0.0131848902, 0.0158462711, 0.00287108799, -0.0326991379, -0.0146642821, 0.0295115821, 0.00360887754, -0.00012522882, -0.00214855, -0.00476226956, 0.0150913233, 0.0126358382, 0.0136271827, 0.00418652687, 0.0180729851, -0.033583723, 0.00236969627, 0.00748465583, -0.0084416857, 0.00220955582, -0.00892210659, 0.00883822329, -0.0129789962, 0.00518931076, -0.00609677285, -0.00525412941, -0.0237770323, -0.0130628785, 0.00576886628, -0.00962367374, 0.00240401202, 0.0218553469, -0.0125138257, 0.0251039099, -0.0162275583, -0.01000496, -0.0197964, -0.0201776866, 0.0122164227, -0.0184085164, 0.00716818823, -0.0199794173, -0.00610058568, -0.0116444929, -0.0193998627, -0.0089678606, 0.0032924097, 0.00469363807, -0.00831967313, -0.0122850537, -0.00889160298, 0.0142906215, 0.00873146299, -0.0169596281, 0.0293590687, -0.00606245687, 0.00248598866, -0.00189118157, 0.0072825742, -0.00107046217, 0.00517787179, 0.00576886628, -0.00984482, 0.005524843, 0.0229687039, 0.0131315105, 0.015983535, 0.0058298721, 0.00273001194, 0.0160445403, -0.011232703, -0.0241278149, -0.0075571, -0.016349569, -0.00758379046, -0.00271857344, 0.0266290568, 0.0210622717, 0.00435810583, 0.0351393744, -0.017142646, 0.00986769702, 0.0166088436, 0.000375329, 0.000780207687, -0.0192168448, -0.0251344126, -0.00723681971, -0.0288252663, 0.00962367374, -0.0188660603, -0.00736645702, -0.0010942925, -0.00318374299, 0.00591375493, 0.00707286643, -0.0134670427, -0.0169748794, 0.023487255, 0.0233347397, -0.0504213385, 0.0079307612, 0.00636367314, -0.0352003798, 0.00108762, -0.0226026699, 0.0362374783, 0.00105139776, -0.00133069023, -0.00708430493, -0.00646280777, 0.0168071128, 0.00474701822, 0.0182254985, -0.0172189027, -0.000128207612, -0.0132458964, -0.00466313493, 0.0237007756, -0.000265709095, -0.00674496, 0.004899533, -0.00475083105, 0.00964655075, -0.00200175471, 0.00819003582, -0.000687745691, -0.00708430493, -0.0247226227, -0.00827391911, -0.000681073172, -0.00584512344, -0.00313036307, 0.0145804, -0.0142982472, -0.0121249137, 0.0158462711, -0.0196743887, -0.00146318728, 0.0068822233, 0.00679071434, -0.0211995356, 0.00607389538, 0.0127578499, 0.0183475111, -0.00627597747, 0.00253174291, -0.0180882365, -0.00421702955, -0.00396156777, 0.00639036344, 0.00118008198, 0.0130018732, -0.00109810545, 0.010096469, 0.00264422246, 0.0219773594, -0.0204827152, 0.0130400015, 0.0125824576, -0.00985244568, 0.0115911122, 0.00204369612, -0.00923476182, -0.00103423989, 0.0102261063, -0.000164310695, 0.0193541069, 0.00607389538, 0.00535326404, -0.0161818024, 0.00771342777, -0.000277147687, 0.0114919776, -0.00597094791, 0.00329622254, 0.0218706, -0.00327525195, 0.0220688675, -0.006775463, 0.0145804, 0.010981054, 0.000432521978, 0.00490334583, 0.00887635164, -0.00821291376, 0.0289167762, -0.011324212, -0.00819766149, 0.0128036039, -0.00455637462, -0.00156518153, 0.00921188388, 0.0127120949, -0.00912800152, 0.0103176152, 0.00971518271, 0.021169031, -0.000980859739, -0.00182255, 0.000812617072, -0.0210165177, -0.00940252747, -0.00267472537, 0.000217690816, 0.00680596568, -0.00515880762, -0.0111793233, 0.0021771465, 0.00600145105, -0.0191863421, -0.00529988389, 0.00739314733, -0.00327525195, 0.0105845155, -0.00467838673, -0.00640180195, 0.00154421071, 0.0209707636, -0.0137949493, -0.0136500606, -0.00413314672, -0.0150608206, 0.0153963529, 0.00128302944, 0.00439623464, -1.09396487e-05, -0.0149083063, 0.00708811777, 0.0120944111, 0.00513974344, -0.00290731038, 0.00884584896, 0.00925763883, 0.00819766149, 0.00159187149, 0.0258359797, -0.0131162591, 0.00139836862, -0.0162275583, -0.000206252225, 0.0233804937, -0.00944828149, -0.00618065568, 0.0359934531, 0.0137415687, 0.018850809, -0.00387387187, -0.000294067286, 0.00945590716, 0.0199794173, 0.00404163776, 0.0058298721, -0.00585274911, 0.00902124122, -0.0126129603, -0.00725207105, -0.0168986227, -0.00207991828, 0.00518931076, -0.00472795358, -0.0224044, -0.0133907851, 0.0032924097, 0.0190948322, 0.00492622284, -0.0118656391, 0.0103633692, 0.00270332186, -0.0109658027, 0.00393106462, 0.00608533388, 0.0221756287, -0.00652000075, -0.00177584228, -0.00705380226, -0.00450680777, 0.0104777552, 0.0190033242, 0.0288710203, -0.00157662, 0.00227818731, -0.0320280753, 0.0310672317, 0.0139474636, -0.00177965523, 0.017234154, 0.0249818973, 0.0029683162, 0.0201624352, -0.0253326818, -0.0166088436, 0.0208487511, -0.0135661773, 0.00806039851, -0.0220383648, -0.00820528716, -0.00913562719, 0.00627979031, 0.00454493612, 0.00117054989, 0.000758760318, 0.0310519803, -0.00155469612, -0.0104014985, 0.00266519329, 0.00718343956, -0.0398063213, 0.0187745523, -0.0158310197, 0.00734358, -0.00883059762, 0.00712243374, -0.0237465296, 0.0010351931, -0.0119266445, 0.0133831594, -0.0106150191, -0.00924238749, 0.00494147418, -0.0241278149, -0.00333053852, -0.00834255107, -0.00819766149, -0.021031769, 0.00731688971, -0.0193693582, 0.000715389, 0.0160445403, 0.0154649848, 0.0144050075, -0.000583845074, 0.0226941779, 0.0344378054, 0.00955504179, -0.011347089, -0.00541427, -0.0116216158, 0.00509398896, -0.0255462024, 0.00611965, 0.00239638635, -0.00284058508, 0.000117900963, 0.00426659686, -0.00366988359, 0.00764860911, 0.0177374519, 0.0050177318, -0.000476846559, -0.0102566099, -0.00342014083, 0.0187287983, -0.0134060364, 0.000273573125, 0.000739219366, 0.0200861786, 0.0234262478, -0.00345636299, -0.0164868329, -0.0205132198, 0.0118122585, 0.0102261063, 0.00915087853, 0.0265375469, -0.00156899437, 0.0495672561, -0.0323941074, -0.0300606359, -0.0149006806, -0.00919663254, -0.00723300688, 0.0189423189, -0.00145556161, -0.00503679598, -0.00546765, -0.000995158, -0.00119056739, 0.00960842241, 0.0163038149, 0.0141914869, -0.0173866693, 0.0202386919, 0.0391047522, 0.00278339209, -0.00126968441, -0.00642467896, 0.00857132301, 0.0125900833, 0.00364319352, -0.0132840248, 0.00229153247, -0.0175391827, -0.0334312096, 0.0136119314, -0.000594330486, 0.0052045621, 0.00737408269, -0.00849506538, 0.0167003535, -0.00837305374, 0.0257292204, -0.0299996287, 0.0151142, 0.0122164227, -0.0268578287, -0.0088611, -0.00411789538, -0.00722919405, -0.0141686099, 0.00305982493, -0.00268044486, 0.00398825761, -7.32785193e-05, -0.00413695956, 0.00110287149, 0.0177222, 0.0179814752, 0.0179662239, -0.00468982523, 0.026354529, 0.00179204706, 0.00257368456, 0.00917375553, 0.00161474873, 0.00889923, -0.00344111165, 0.0139627149, -0.00701186061, 0.00301979, 0.0134670427, -0.0186067857, -0.022373898, -0.00182159676, 0.00449918164, 0.015076072, -0.02000992, -0.00390246836, 0.00428947434, 0.000144769758, 0.00516643329, -0.0139627149, 0.0014364972, 0.00546002388, 0.00466694776, 0.00160902948, -0.00324284262, -0.0138407033, 0.0189880729, 0.00559347449, -0.00171864929, 0.00947115943, -0.00786212925, 0.0017586844, 0.0170358848, 0.00508255046, 0.0236397684, -0.0224959087, 0.0114157209, 0.011369966, -0.0348953493, -0.00817478448, -0.0035936262, 0.000506157929, -0.000125467122, 0.00836542808, -0.00112765515, -0.0103328666, 0.00544095971, -0.0105311358, 0.0147252884, -0.0117741302, 0.00157376041, -0.00465932209, -0.0252259206, -0.0309604723, 0.0081442818, -0.00703473762, 0.0158920251, -0.00698135747, 0.00758379046, 0.000885061512, -0.0101727266, 0.0116749955, 0.0233194884, -0.00794601254, -0.0174476746, -0.0208335, 0.0288252663, -0.0161055457, -0.00594044523, 0.02469212, 0.0143897561, 0.00549434, -0.0205589738, 0.00807565, 0.00494528702, 0.00598619971, -0.0103938729, 0.0231059678, 0.0146642821, 0.00250124, -0.0144507624, -0.0173104107, 0.0031856494, -0.0122926803, -0.0134441657, -0.0117054982, 0.00372517016, -0.0215808209, -0.00780874956, 0.00316658523, 0.00445342762, -0.00873908866, -0.0104396269, 0.021031769, -0.00568117, 0.00186639791, 0.00313608232, -3.49711299e-05, 0.00554772, -0.010119346, -0.0283219684, -0.00173962011, 0.00472414074, 0.00852556806, 0.00370229292, -0.00527700642, 0.00668776687, -0.0024421406, 0.00533419941, 0.0204369612, 0.00234872545, 0.0065733809, 0.00171007041, -0.0116673699, -0.00086218433, -0.000342681335, 0.00263659679, -0.0194303654, -0.0178594645, 0.0109429257, -0.00423228135, 0.00867045764, -0.0121096624, -0.00955504179, 0.0125900833, 0.0191558395, -0.00711862091, -0.00336485426, 0.0256224591, -0.035718929, -0.00515499478, -0.00261753239, -0.019598132, 0.00381477247, -0.00636748597, -0.00719106523, -0.0091585042, -0.0116444929, -0.0191253349, 0.0145117678, 0.0188050549, 0.0127883526, -0.0115911122, -0.000785927, -0.00421702955, 0.00700423494, 0.0154039785, 0.0100125857, -0.000167646955, 0.00400732225, -0.00114004698, 0.0108590424, -0.00209135702, -0.0113089606, 0.000975617091, -0.00835780241, 0.0166088436, 0.00123536855, 0.00992107764, -0.0156174991, -0.00886872597, 0.00600526389, -0.0124756973, -0.0262325183, -0.00299119344, -0.00837305374, -0.0148396743, 0.000528081961, 0.00425134553, -0.0174934287, 0.0196133833, 0.0150303179, -0.012460446, -0.0133679081, 0.0183322597, -0.00628741598, -0.0102108549, 0.00358028105, 0.00303122844, 0.012414692, 0.00317993015, 0.0148396743, -0.00154230429, 0.015983535, -0.0106226448, -0.00601288956, 0.0271171033, 0.00142982474, -0.00110573112, -0.00527319359, 0.00580699509, -0.0246616174, -0.0257902257, -0.0120639075, 0.0186372884, -0.000548099459, -0.0202844478, 0.00537232822, 0.0120867854, 0.0318755582, -0.0126129603, -0.0105082588, -0.0108514167, 0.037793126, 0.00667251553, 0.000206252225, -0.0155564928, -0.00615777867, 0.0143592535, 0.00353833963, 0.0199794173, 0.0281694531, -0.00575742777, -0.01125558, 0.0290997922, 2.95943937e-05, -0.0100583406, 0.0253174305, -0.0049910415, -0.00864758, 0.0257444717, 0.0128493579, -0.00862470269, -0.00215236284, -0.00745796598, -0.0206047278, 0.00236207037, 0.00625691283, 0.0212300383, 0.0202386919, 0.00190357328, -0.0158005171, 0.00605864404, 0.00687459717, 0.0035345268, 0.0116444929, -0.00507873762, 0.0137873236, -0.00618065568, -2.31899703e-05, -0.0116444929, -0.0048842812, -0.00213139202, 0.0366035141, 0.00196362589, 0.00401494792, 0.0154344812, -0.0107294051, -0.0284744836, 0.00013368862, -0.00630648, -0.00341823441, -0.0155488672, 0.00217333366, 0.0139855919, -0.00766386045, -0.0173104107, -0.000166217127, -0.00210851477, -0.0172799081, 0.00202844478, -0.0115301069, -0.00936439913, 0.0161818024, -0.000477799767, -0.00905174389, -0.022419652, -0.000482327538, -0.0188203063, 0.0060548312, 0.00148701773, -0.0134899197, -0.00461356761, 0.0153734758, 0.0118580135, 0.0181949958, -0.0103709958, -0.0186982956, 0.00838067941, -0.0118046328, -0.0152209606, -0.00889923, -0.0319975726, 0.0195066221, 0.0147862947, -0.0109658027, -0.0258207284, -0.00959317107, 0.0224044, 0.00962367374, -0.000537137501, 0.0272086114, 0.000475893321, 0.0146566564, -0.00581080792, 0.018484775, 0.0158920251, 0.0114080952, 0.00691653881, 0.00571167329, -0.000651523471, -0.00128493586, -5.38567328e-05, -0.0123384343, 0.00722919405, 0.0189728215, 0.00918900687, 0.00808327552, 0.00313036307, -0.0240210555, 0.0080146445, 0.00513211777, 0.0141914869, 0.00409501791, -0.000296688639, 0.00571167329, -0.0150150666, -0.00707286643, 0.0142296162, 0.015754763, -0.00534563791, -0.0114157209, 0.0075571, 0.0131315105, -0.00209135702, 0.00268425769, 0.0239905529, 0.015076072, -0.00741983717, 0.0142601188, -0.00319899456, 0.00669539254, 0.0275898986, -0.0112784579, 0.0040607024, -0.00146032765, -0.0104396269, 0.0143668791, 0.00301597686, 0.0144965164, 0.00291493605, -0.0119647738, -0.0107446564, 0.00897548627, 0.0117893815, 0.000382001512, -0.0146032767, 0.0159072764, 0.0093949018, -0.00338582508, -0.00727113523, 0.00720250374, -0.00716437493, -0.00403782493, 0.0226331726, -0.0140999779, 0.0106531475, -0.0164258275, -0.00116959668, 0.0184542704, 0.0191253349, 0.0300301332, 0.01125558, 0.000188141101, 0.00777062075, 0.00802227, -0.0129256155, 2.2281436e-05, -0.00536851538, 0.0181339905, 0.00134498847, -0.00819766149, 0.00275288918, 0.0161970537, 0.0283372197, -0.0117970072, -0.0127807269, 0.00701948628, -0.0198574066, -0.00300453836, 0.00811377913, 0.0212757923, 0.0165935922, 0.0126587152, -0.0250581559, -0.0136576863, 0.0256072078, -0.0232279804, 0.0346513242, 0.00874671433, -0.0020894506, 0.0133374054, 0.000568117, 0.0014164797, 0.00353833963, -0.00734358, -0.0213673, -0.0211537797, -0.0242345762, 0.0158310197, -0.0158005171, 0.0155869965, -0.0142448675, -0.0116139902, 0.000355311437, 0.0104625039, 0.000682503, -0.00966180209, -0.00237732194, -0.00856369734, -0.015076072, -0.00381667889, 0.00354405888, -0.0155107388, -0.0276356526, -0.00490715867, -0.00924238749, -0.00920425821, 0.0101727266, 0.02251116, 0.00989057403, -0.0105540128, 0.00419415254, 0.0170206334, -0.00905174389, 0.00951691344, 0.0108666681, 0.00558966165, 0.00844931137, -0.00880772062, 0.000178847244, 0.0346208215, 0.00500629283, 0.000811187259, 0.00261181314, -0.0251344126, -0.00282533374, -0.0129103642, 0.00566210598, 0.00674496, -0.00222671381, 0.0140084699, -0.0130781299, 0.0114309723, -0.0142372418, 0.00537995389, -0.0136043057, -0.0155031132, 0.00662294822, 0.00619209418, -0.00398063194, -0.0030083512, -0.00272619911, -0.00401113508, 0.0085942, 0.00418652687, -0.00121821067, 0.00110859075, -0.00317039806, -0.0056011, 0.00986769702, -0.0705837756, -0.00902124122, 0.0042589712, 0.00775155658, -0.0140847266, 0.0177222, 0.0298013613, 0.00831204746, 0.026034249, 0.0179662239, 0.00931864418, -0.0105463872, -0.0172951594, -0.00315514649, -0.0268273242, -0.0213673, 0.00635604747, 0.0066572642, 0.00835017674, -0.00276051485, 0.000134403526, 0.0146795344, 0.0187287983, -0.0104548782, 0.0103404922, 0.0100888433, -0.0062416615, -0.0107751591, 0.0196743887, 0.00101326918, -0.015076072, 0.00260609388, 0.0148091717, -0.0203912072, 0.0135280481, 0.00460212911, -0.00363556761, -0.0268120728, -0.0126892179, -0.0217028335, -4.54267247e-05, 0.0224044, -0.0130323758, -0.0238685403, -0.00329050329, 0.00641324045, 0.00300072553, 0.0102871126, 0.000238899884, 0.00967705343, -0.018850809, -0.00595950941, -0.00238494761, -0.00518931076, 0.0404163785, 0.00415221089, 0.00403782493, 0.00995920599, -0.000631982519, 0.00995158, 0.00170339784, -0.00681740418, 0.00320471381, -0.00347352098, 0.019643886, 0.00610821135, -0.00136309955, -0.0208182484, 0.0119266445, 0.0189423189, -0.00283677224, 0.0144278845, -0.00115243869, 0.00177870202, 0.000781160896, 0.0114919776, -0.00766386045, 0.000379856763, -0.00748465583, 0.0388912335, 0.00599763822, 0.00672970852, 0.00712243374, -0.00849506538, 0.014710037, -0.00554772, -0.0170663875, 0.0158005171, 0.0186830424, -0.0182254985, 0.0167766102, -0.0127731012, -0.0260037463, -0.0110420594, 0.0134670427, 0.00274717, 0.0033877315, -0.000536184292, 0.0031742109, -0.00376711157, -0.00182159676, -0.01000496, -0.00841118209, -0.00501391897, 0.024737874, -0.0254241899, 0.0104396269, -0.021031769, 0.00109333929, -0.00148797093, 0.0132382708, -0.00103138026, 0.0124451946, 0.00545239821, 0.0227704365, 0.00446867896, 0.0046974509, 0.00899836328, 0.0155336158, 0.000485902099, 0.00837305374, -0.0048957197, -0.00115434523, 0.00246883067, -0.0066534509, 0.0150913233, -0.00664201239, -0.00110859075, -0.0021294856, 0.00309795351, -0.00534182508, -0.0080146445, 0.00813665614, -0.0166088436, -0.00283486582, -0.0196133833, 0.0072940127, 0.0230144598, -0.0239295475, 0.00494147418, 0.011141194, -0.0126968436, 0.00167480134, -0.00481183687, -0.022099372, -0.0207877457, 0.00277386, -0.00410645688, -0.0081442818, -0.0062531, 0.00776299508, -0.00378998881, 0.013619557, 0.00773249241, -0.00905174389, -0.00299691269, -0.0084340591, 0.00152514642, -0.0115529839, 0.00045206293, -0.0152514642, 0.000369609683, -0.0153277209, 0.00965417642, 0.00650093658, -0.00298166112, -0.000649140449, 0.024646366, 0.00870858599, 0.0117893815, -0.0107065281, 0.0226484239, -0.0219163541, -0.0118961418, 0.0165783409, -0.0262477696, 0.0214130562, -0.00234681903, 0.026080003, 0.0064666206, 0.0209250078, 0.0109124221, -0.0250124, -0.00487284269, -0.0316620395, -0.0188355576, -0.000531894795, 0.0281999558, 0.0120562818, -0.00124871358, 0.00943303, 0.0135051711, 0.015754763, -0.00949403644, -0.00132973702, 0.0025679653, -0.00786975492, -0.00527319359, 0.0203912072, -0.00591756776, 0.00746177882, 0.00490334583, -0.00127349724, -0.0139322123, -0.0141533585, -0.0228771959, -0.0170968901, -0.00599763822, -0.0266290568, 0.000925096625, 0.0206504818, 0.00276814075, 0.0117741302, -0.0040607024, 0.0302741565, 0.0172494054, -0.00632173195, 0.0196286347, 0.000886491325, 0.0140694752, -0.00268997694, 0.00330194202, 0.00479658553, 0.00748465583, -0.0131391361, -0.021169031, -0.00566210598, 0.0170206334, 0.00916613, -0.0103481179, -0.0108590424, 0.0190948322, 0.0337667428, -0.00916613, 0.00886872597, 0.00504442165, 0.0115987379, 0.0150379436, 0.0268425755, 0.00676783687, 0.0280321911, 0.00636367314, 0.0117512532, 0.000848362688, 0.00164906448, 0.00970755704, -0.0128646102, -0.015983535, -0.0043924218, 0.00642086612, -0.000764003, -0.00847981405, -0.0227399319, 0.00732451538, 0.0141686099, -0.00321043306, -0.0104396269, 0.0173409153, -0.00374804717, 0.0190033242, -0.00179395347, -0.00836542808, 0.00820528716, -0.0232432317, -0.0152133349, 0.0165478382, 0.00390437478, -0.00378045649, 0.00982956868, -0.00757616479, 0.00481183687, -0.0243108328, 0.00533419941, -0.0138788326, 0.00284630456, 0.0124909487, 0.0055210297, 0.00786212925, -0.0346513242, 0.0124985743, -0.000132258792, -0.0139093352, -0.00118008198, 0.00118961418, 0.00914325286, -0.000208635262, -0.00350211747, 0.00284058508, -0.00844931137, -0.0183322597, -0.00544858538, -0.0172494054, 0.00429328717, -0.00413695956, -0.023533009, -0.0028615559, 0.0281847045, -0.00537614105, -0.0208640024, 0.00252221082, 0.0204369612, -0.0135585517, 0.00189213478, 0.00691653881, -0.00423228135, -0.00467838673, -0.0172951594, -0.0107141538, -0.00369848, -0.00327906478, 0.0121782944, 0.00112574873, -0.0212452896, -0.00712624658, -0.00558203598, -0.0244480968, -0.000205179851, -0.022236634, 0.0105311358, -0.00050520472, -0.00952453911, 0.00157376041, 0.00278148567, -0.017234154, 0.00351355597, 0.0124299433, 0.0137644466, -0.00179014052, -0.000733976718, -0.00899836328, -0.00518931076, -0.0219316054, 0.0142677445, 0.00144126336, -0.00987532269, 0.00200938038, -0.0041674627, -0.0205437224, -0.00913562719, -0.0482251272, -0.0139627149, 0.00277576642, 0.00721012941, 0.0115301069, -0.00089268724, -0.019643886, -0.0133907851, 0.00291684247, 0.0226789266, -0.0125290779, 0.000883631699, -0.00460975477, 0.00549815269, 0.000466837781, -0.00334960269, -0.00597476074, 0.0133221541, -0.024875138, 0.0336142257, 0.000155016838, -0.0122164227, -0.0195218734, -0.00336104142, -0.0138940839, -0.0302436519, 0.00498722866, 0.0152133349, 0.00182445638, -0.0199794173, -0.0110573117, -0.00118961418, 0.00114385982, -0.00129732769, 0.0713158473, 0.0136729376, 0.000817859778, -0.0324856192, 0.00195600023, -0.0163190663, -0.0125214523, 0.0454493612, -0.00864758, -0.00745034032, 0.0111488197, -0.00410645688, -0.016120797, 0.0211842842, 0.00608152105, -0.0139093352, 0.00405307673, -0.0127349719, -0.0233499911, 0.00304838642, -0.00130114052, -0.0177527033, 0.0116292415, -0.0225569159, 0.0129332412, -0.013642434, -0.00359743903, 0.00618065568, -0.0290082842, 0.00776680792, 0.00917375553, 0.0126358382, 0.0120562818, 0.00154707034, -0.00208182493, -0.000576695951, 0.0164105743, -0.00499485433, 0.0108971708, -0.00999733433, 0.0130933821, 0.0127349719, 0.0117665045, -0.00579555612, 0.00356693612, 0.00733214105, -0.00616921717, -0.000791169703, 0.0120639075, -0.0288862735, -0.00151084817, -0.013665312, -0.00783925224, 0.00932627, -0.00383955613, -0.00467457389, 0.0189575702, -0.00685172, -7.48423872e-07, 0.00103805272, -0.00192263769, 0.00978381373, 0.00798414089, 0.00816715881, -0.00499485433, -0.016075043, 0.00627216464, -0.00028667986, -0.0119952764, 0.011049686, -0.0103938729, -0.0107980361, 0.0120029021, -0.00123250892, 0.0042589712, -0.00851031672, -0.0199794173, 0.00853319373, 0.015076072, 0.00866283104, -0.0141228558, 0.0264612902, -0.00745034032, -0.0121630421, -0.00210470194, -0.0116063636, -0.00543333404, 0.00162714056, 0.00288633956, 0.0374575965, -0.00361269061, -0.0101879779, -0.0279559325, 0.00912037585, 0.00352118164, 0.0160445403, -0.0105235102, 0.00717962673, 0.0279864371, 0.0205894765, 0.0255614538, 0.0121554164, -0.0163800716, -0.0145117678, -0.0193998627, 0.0192473475, 0.00353071396, 0.00783162657, 0.00982956868, 0.0139855919, -0.0224501546, 0.00789263286, 0.00797651522, 0.0193846114, 0.0265680496, 0.00708811777, -0.00983719435, 0.00616540434, 0.00118675455, 0.00160712295, 0.0150836976, 0.0077172406, 0.000577649218, 0.0169138741, 0.00478896, -0.0159530304, 0.0236855242, -0.0085408194, 0.00325809396, -0.00253174291, 0.013573803, -0.0128569836, -0.00152038026, -0.00715674926, 0.0287795123, 0.0155793708, 0.0197048914, 0.0135433, 0.0235177577, 0.00883059762, 0.0084416857, -0.0061615915, 0.0203149505, 0.00360887754, -0.00493003568, -0.00558966165, -0.00221718149, -0.0220841188, 0.00909749791, 0.0359019451, 0.00136309955, -0.00222671381, 0.00307888933, -0.0152133349, 0.00285202381, 0.00335532194, -0.0226179212, -0.00870858599, 0.0202081893, 0.0218706, 0.00985244568, -0.00653143926, 0.0139703406, 0.0149235576, 0.0144126331, 0.00232394179, 0.0204979666, -0.00260418747, 0.00178442127, 0.0236397684, 0.00413314672, 0.0163343176, -0.00339917, 0.0139932185, -0.00893735792, 0.00590612926, -0.00390246836, -0.0206809845, -0.0146109024, -0.00781637523, 0.00468219956, 0.000547622854, 0.0123994397, 0.0502993278, 0.0090746209, -0.0189880729, 0.0115834866, -0.00561253866, -0.00563541567, -0.00649712374, -0.0170206334, 0.0354749039, 0.00312083075, -0.00347542739, 0.00399588374, -0.0221756287, 0.0180729851, 0.0101422239, 0.00892210659, 0.0172799081, 0.0179357212, 0.000944637519, -0.0143058728, -0.0287185069, 0.00372898299, 0.0167613588, 0.0143973818, -0.00471651508, 0.00192073127, -0.00448011747, 0.0122774281]
21 May, 2024
Angular PrimeNG Form Dropdown Custom Content Component 21 May, 2024 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the calendar component in angular ngx bootstrap. Dropdown Custom Content Component: It is used for both selected options and the options list can be templated to provide customized representation. We can use the selectedItem template to customize the selected label display and the item template to change the content of the options in the dropdown panel. Syntax: <ng-template pTemplate="selectedItem">...</ng-template> Creating Angular Application & Module Installation: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: Example 1: In the below code, we will be using the above syntax to demonstrate the use of the Angular PrimeNG Form Dropdown Custom Content Component. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>A computer science portal for geeks</h3> <h4> Angular PrimeNG Form Dropdown Custom Content Component </h4> <p-dropdown [options]="groupedCities" [(ngModel)]="selectedCity3" placeholder="Select a City" [group]="true"> <ng-template let-group pTemplate="group"> <div class="p-d-flex p-ai-center"> <span>{{ group.label }}</span> </div> </ng-template> </p-dropdown> </div> app.component.ts Javascript import { Component } from '@angular/core'; import { MenuItem } from 'primeng/api'; import { SelectItem } from 'primeng/api'; import { SelectItemGroup } from 'primeng/api'; interface City { name: string, code: string } @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent { cities: City[]; selectedCity1: City; selectedCity2: City; selectedCity3: string; selectedCountry: string; countries: any[]; groupedCities: SelectItemGroup[]; items: SelectItem[]; item: string; constructor() { this.items = []; for (let i = 0; i < 10000; i++) { this.items.push({ label: 'Item ' + i, value: 'Item ' + i }); } this.cities = [ { name: 'India', code: 'NY' }, { name: 'Rome', code: 'RM' }, { name: 'London', code: 'LDN' }, { name: 'Istanbul', code: 'IST' }, { name: 'Paris', code: 'PRS' } ]; this.groupedCities = [ { label: 'India', value: 'IND', items: [ { label: 'Mumbai', value: 'Mumbai' }, { label: 'Varanasi', value: 'Varanasi' }, { label: 'Nashik', value: 'Nashik' }, { label: 'Delhi', value: 'Delhi' } ] }, { label: 'USA', value: 'us', items: [ { label: 'Chicago', value: 'Chicago' }, { label: 'Los Angeles', value: 'Los Angeles' }, { label: 'New York', value: 'New York' }, { label: 'San Francisco', value: 'San Francisco' } ] }, { label: 'Japan', value: 'jp', items: [ { label: 'Kyoto', value: 'Kyoto' }, { label: 'Osaka', value: 'Osaka' }, { label: 'Tokyo', value: 'Tokyo' }, { label: 'Yokohama', value: 'Yokohama' } ] } ]; this.countries = [ { name: 'Australia', code: 'AU' }, { name: 'Brazil', code: 'BR' }, { name: 'China', code: 'CN' }, { name: 'Egypt', code: 'EG' }, { name: 'France', code: 'FR' }, { name: 'Germany', code: 'DE' }, { name: 'India', code: 'IN' }, { name: 'Japan', code: 'JP' }, { name: 'Spain', code: 'ES' }, { name: 'United States', code: 'US' } ]; } } app.module.ts Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { DropdownModule } from 'primeng/dropdown'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, DropdownModule, FormsModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } app.component.scss CSS :host ::ng-deep .p-dropdown { width: 14rem; } Output: Example 2: In the below code, we will be using the above syntax to demonstrate the use of the Angular PrimeNG Form Dropdown Custom Content Component. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>A computer science portal for geeks</h3> <h4> Angular PrimeNG Form Dropdown Custom Content Component </h4> <p-dropdown [options]="groupedCities" [(ngModel)]="selectedCity3" placeholder="Select a City" [group]="true"> <ng-template let-group pTemplate="selectedItem"> <div class="p-d-flex p-ai-center"> <span>{{ group.label }}</span> </div> </ng-template> </p-dropdown> </div> app.component.ts Javascript import { Component } from '@angular/core'; import { MenuItem } from 'primeng/api'; import { SelectItem } from 'primeng/api'; import { SelectItemGroup } from 'primeng/api'; interface City { name: string, code: string } @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent { cities: City[]; selectedCity1: City; selectedCity2: City; selectedCity3: string; selectedCountry: string; countries: any[]; groupedCities: SelectItemGroup[]; items: SelectItem[]; item: string; constructor() { this.items = []; for (let i = 0; i < 10000; i++) { this.items.push({ label: 'Item ' + i, value: 'Item ' + i }); } this.cities = [ { name: 'India', code: 'NY' }, { name: 'Rome', code: 'RM' }, { name: 'London', code: 'LDN' }, { name: 'Istanbul', code: 'IST' }, { name: 'Paris', code: 'PRS' } ]; this.groupedCities = [ { label: 'India', value: 'IND', items: [ { label: 'Mumbai', value: 'Mumbai' }, { label: 'Varanasi', value: 'Varanasi' }, { label: 'Nashik', value: 'Nashik' }, { label: 'Delhi', value: 'Delhi' } ] }, { label: 'USA', value: 'us', items: [ { label: 'Chicago', value: 'Chicago' }, { label: 'Los Angeles', value: 'Los Angeles' }, { label: 'New York', value: 'New York' }, { label: 'San Francisco', value: 'San Francisco' } ] }, { label: 'Japan', value: 'jp', items: [ { label: 'Kyoto', value: 'Kyoto' }, { label: 'Osaka', value: 'Osaka' }, { label: 'Tokyo', value: 'Tokyo' }, { label: 'Yokohama', value: 'Yokohama' } ] } ]; this.countries = [ { name: 'Australia', code: 'AU' }, { name: 'Brazil', code: 'BR' }, { name: 'China', code: 'CN' }, { name: 'Egypt', code: 'EG' }, { name: 'France', code: 'FR' }, { name: 'Germany', code: 'DE' }, { name: 'India', code: 'IN' }, { name: 'Japan', code: 'JP' }, { name: 'Spain', code: 'ES' }, { name: 'United States', code: 'US' } ]; } } app.module.ts Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { DropdownModule } from 'primeng/dropdown'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, DropdownModule, FormsModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } app.component.scss CSS :host ::ng-deep .p-dropdown { width: 14rem; } Output: Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component
https://www.geeksforgeeks.org/angular-primeng-form-dropdown-custom-content-component?ref=asr10
Languages
Angular PrimeNG Form Dropdown Custom Content Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0309668, -0.00664211903, -0.0241015181, 0.0195246637, 0.0431717448, 0.0189241562, -0.0155239748, 0.00850450899, -0.00646358915, -0.00834220927, 0.0154103646, -0.0232900195, -0.0100707021, -0.0634592175, 0.0143716466, -0.0323301181, -0.0422304049, 0.00762403244, -0.0303662904, -0.0134789972, -0.00523822568, 0.00604566699, -0.0501506329, 0.0102654612, -0.00914559327, 0.0532018691, 0.0156943891, 0.0176582169, -0.0155645497, 0.046969559, 0.0290029719, -0.00888591353, 0.013990242, -0.00688151084, -0.0609598, -0.0052260533, -0.0075347675, 0.0291815028, -0.0094377324, 0.00963249244, -0.0166519582, -0.00898329355, 0.00108639419, 0.00446730154, -0.0139496671, -0.031551078, 0.0139334369, -0.0438534021, -0.0177069064, 0.0122536337, 0.0125457738, 0.0137467925, 0.0356734917, 0.0185833257, -0.00982725248, 0.0196707342, -0.0173985381, 0.00277735502, 0.00134505949, 0.0130651332, 0.0349269137, -0.038659811, 0.0109633505, -0.0185346361, 0.0125701185, 0.0260004252, -0.0140876221, 0.0261627249, 0.00760374498, 0.0196220446, 0.00277126883, 0.0200927146, -0.00211598352, -0.00621202448, -0.0182587262, -0.0107442457, 0.0230952594, -0.00766055, -0.0303662904, 0.0179990474, -0.0175608378, 0.00668675127, 0.00538429525, -0.00958380289, 0.0340829566, 0.0140876221, 0.00712901819, -0.0520333126, 0.00192020938, 0.0137630217, -0.00268403278, 0.00353610655, 0.0394388475, -0.0252700765, -0.020125173, 0.0544678085, 0.0327034071, -0.00844770391, -0.041873347, 0.0247831773, -0.0180964265, 0.0346347764, -0.0160189886, -0.0188916959, -0.00695048831, -0.0048243613, 0.0507349148, -0.00941338763, 0.02277066, -0.0434638821, -0.0189079251, -0.0297333207, 0.00759157259, 0.0142904967, -0.0410293862, 0.0350242928, -0.0083827842, -0.0610896386, 0.0235172398, -0.0122536337, -0.0139658963, -0.0158485752, -0.0184047967, 0.0457360819, -0.0545651875, 0.0430419035, -0.0269093048, -0.0186807048, 0.034861993, -0.0142580364, -0.0120832194, 0.00246087043, -0.0292626526, -0.00420356449, 0.0234523192, 0.0232088696, -0.00604160968, -0.00975421723, -0.0333039165, -0.00318919076, -0.00187354814, -0.0237931497, 0.0192812141, -0.00110465288, -0.0296846312, 0.0392765477, 0.000285292597, 0.0790724531, 0.0109714661, 0.0134708825, -0.0473590791, -0.0280778632, 0.0178042874, 0.00529503077, 0.0382378288, -0.0203361642, -0.0149315801, -0.0158161148, -0.0116936993, 0.00515707582, 0.0100382417, 0.0239067581, -0.0176257566, 0.00671515381, -0.000722234079, -0.016343588, 0.0142499218, -0.0289380513, -0.0641733333, 0.0353813544, 0.0183398761, -0.000871347, -0.00322570838, 0.0197681133, -0.0442104638, -0.00370246381, 0.00577787263, 0.00847204868, 0.0126512684, 0.00778633216, -0.0407047868, 0.00527474331, 0.00990028679, -0.00123956462, 0.0147692803, 0.00934035238, 0.0308531895, -0.0146232108, -0.0161894038, -0.00164632848, -0.0198979545, 0.0248805583, 0.0217644013, 0.0454764, 0.0167817976, -0.0196869634, -0.0741385445, 0.00227219705, -0.026925534, 0.0301553011, 0.011620665, -0.040152967, -0.0197031945, 0.0386273488, 0.0200440232, 0.0215858724, -0.0376535505, -0.00738464, 0.00661371648, 0.00318107591, -0.00360914157, -0.00728726061, 0.0150776505, 0.0308531895, -0.0166113842, 0.00930789299, -0.0190539956, -0.0188754648, -0.0127486484, -0.0100869322, -0.0130164428, 0.0277370345, 0.0228355806, 0.00247912924, -0.0984185934, -0.020969132, -0.00974610262, -0.0173173882, 0.00459714141, -0.00769301, 0.0204335432, -0.0111986855, -0.0146150962, -0.00813933462, 0.0446649, 0.00334946183, -0.00985159725, 0.00690585608, -0.0210015923, 0.0593368039, 0.0140795065, -0.0080419546, -0.0372640304, -0.0489171557, 0.0147692803, -0.00595640205, 0.0274286643, 0.0284998436, -0.00295791356, 0.0402503461, -0.0239554495, 0.00947830733, 0.0153535595, 0.0119696092, 0.0249617081, 0.0126837287, 0.00580627471, 0.00472698128, 0.0186969358, 0.00990840234, 0.00753882527, -0.00525851315, 0.00602132222, 0.0636864379, 0.00232291571, -0.0510595143, 0.0275098141, -0.0258218963, -0.0254323762, 0.00441049691, 0.0577462651, -0.0222675316, 0.0068368786, 0.0295872521, -0.00904009864, -0.00839089882, -0.00316890329, -0.0356410332, 0.0274286643, 0.0362902321, 0.0239716787, 0.000437702227, 0.0176744461, -0.0102979215, -0.0174472276, -0.0529097319, -0.00892648846, 0.0194597449, -0.0279155634, 0.0272988249, -0.0271040648, -0.0133735025, -0.016497774, 0.013089478, 0.0311128702, 0.0513191931, 0.00229045586, 0.0245072674, 0.0105576012, 0.00623636926, -0.0148910051, -0.0319081396, -0.0078309644, 0.0251402371, -0.0285809934, 0.0356410332, 0.0115232849, -0.00224988093, -0.0344724767, -0.0173660778, 0.0203848537, -0.00131361396, -0.0294087213, -0.00975421723, -0.0501181744, 0.0328819379, 0.0207256824, 0.0234847795, -0.00670703873, 0.00297414372, -0.00275909645, 0.00581844756, -0.0507998355, 0.0144122215, 0.0353813544, 0.00705192564, -0.0276883431, -0.0111743407, 0.0264224056, -0.0138766319, -0.0371666513, -0.0322814286, 0.0197681133, 0.0102979215, -0.00013998356, 0.00811093207, 0.0237606894, -0.0611545593, -0.0163354743, 0.0293438025, -0.0360630117, 0.0112960655, 0.00576164247, -0.0119858393, 0.0390817896, -0.0302039906, 0.0104521066, 0.0206283033, 0.0403152667, 0.0168954078, 0.00160169601, 0.0225434396, 0.0557012856, -0.0318919085, 0.0573242866, -0.0124321636, 0.0175608378, -0.0310966391, -0.0287757516, 0.017382307, 0.00843147375, -0.00748202, -0.0145096006, 0.0376535505, 0.0307882689, -0.0205309223, 0.00630940404, 0.0268281549, -5.58222528e-05, -0.0210827421, -0.0374263301, -0.0078309644, -0.0111175356, 0.0172686968, -0.0456062406, -0.0164653137, 0.00673949858, 0.00809470192, -0.015637584, 0.00328859943, -0.0342127942, 0.0470669381, 0.0038201313, 0.037231572, 0.0283862334, 0.0174147673, 0.0189241562, 0.0133653879, -0.0344075561, 0.00576164247, -0.0069626607, 0.0501181744, 0.018518405, -0.00405749492, -0.0043618069, -0.00764432, -0.0201089438, 0.00861000363, 0.0521631502, -0.0265197847, 0.017577067, 0.0218942408, 0.0164490826, -0.00627694419, 0.0206283033, -0.0224785209, 0.000255241786, -0.00100930186, 0.0183723364, 0.0282726232, 0.0266009346, 0.00251767552, -0.0525202118, 0.0179828163, 0.0129271783, 0.0250753164, 0.00120609032, 0.0513191931, -0.0134871127, -0.0192487556, 0.0498260334, -0.0171550885, -0.0262601059, 0.00239189318, 0.00188977818, 0.00242435304, -0.0481381156, 0.0540133677, 0.00605783937, 0.00564397499, -0.0110201556, -0.0163922794, -0.00790805742, -0.0343426354, -0.00782285, -0.0131625133, -0.0226245914, 0.00652445154, 0.0257082861, -0.0181775764, -0.00886968337, 0.00345089915, 0.034018036, -0.0431717448, -0.0481381156, -0.0109471204, -0.0606676601, -0.0048243613, -0.0331253856, 0.0224622898, -0.0218130909, -0.0208879821, -0.0483977981, -0.0148747759, -0.00249130186, -0.0148504302, 0.00116551539, 0.00837466866, 0.0046539465, -0.00018055852, -0.00714930566, 0.0273312852, -0.00896706339, 0.00136534695, 0.00392968347, 0.00529503077, 0.00269214762, 0.0238743, -0.00481218891, 0.0291328114, 0.0035584229, 0.00288893632, 0.0322165079, 0.0306908898, -0.0057535274, 0.00600103475, 0.0185995549, -0.00682470622, -0.0223649107, -0.0105900615, 0.0303987507, -0.00178022578, 0.0563504882, -0.028727062, 0.00647981884, -0.0203686226, 0.0398608297, -0.0172200073, -0.0249617081, 0.00756317, 0.0303176, 0.0261951853, -0.0458983816, 0.0207419135, 0.00716959313, -0.0268443841, -0.0077051823, -0.0356410332, -0.00260896911, 0.000707525644, 0.010111277, 0.030431211, -0.0396336094, 0.0330766961, 0.028256394, -0.0101761967, -0.0227219705, -0.00902386848, -0.019849265, -0.025416147, -0.0226245914, -0.00125680899, -0.0123753585, 0.00542487064, 0.00825700164, -0.0168467183, -0.00144142495, 0.0533317104, -0.0127648786, -0.015637584, 0.0294898711, 0.00399866095, -0.014696246, 0.0140389316, -0.0162299797, 0.0313400887, 0.0254323762, -0.0282726232, 0.0293275714, -0.0112068, -0.009778562, 0.0063296915, 0.0332389958, 0.0167006478, 0.00927543268, -0.00544921542, 0.00449570408, -0.015929725, -0.0144203361, 0.00103009643, -0.0398283675, 0.0297982413, -0.03146993, -0.00506781088, -0.0101437364, 0.0149883851, 0.0143391863, -0.0194759741, -0.000730856205, 0.0239229891, 0.0162056331, 0.0155726643, 0.0107685905, 0.007904, -0.0220078509, -0.0116855847, -0.0444701426, -0.0180152766, -0.0100950468, -0.0173985381, 0.00769706722, -0.012188714, 0.0299280807, 0.0104926815, -0.00315064471, -0.0270716045, 0.0183074158, -0.00358682522, 0.0150451902, -0.00559528498, 0.0154915145, -0.0328170173, -0.00132680079, 0.00819614, 0.0328981653, 0.0250590872, 0.0463852808, -0.012797338, -0.00429688673, -0.0024202955, -0.00209569605, 0.00448353169, -0.00873172842, -0.0118316542, 0.0181288868, 0.00993274711, 0.0330117755, 0.0152237201, -0.0335635953, -0.0117829647, 0.0262114163, 0.0263737161, -0.00139780692, 0.00272866525, 0.0079973219, 0.0158161148, 0.012383474, 0.0216832515, 0.00810281653, -0.00336569175, 0.0145501764, 0.0238580685, -0.00237769191, 0.0165951531, -0.00998143665, -0.0270553753, -0.0111337658, -0.00787965488, 0.0356085747, -0.00852885377, -0.0404775664, -0.00989217218, 0.041289065, -0.0133491578, 0.0215209518, -0.00727914553, 0.00801761, 0.00407372462, -0.00726291537, -0.0124727385, 0.0174634568, -0.00426848466, 0.0564154051, 0.0101275072, 0.0208392926, -0.0219429322, -0.000355537981, -0.0280454028, -0.00768895261, -0.00788776949, -0.00637838151, -0.0196382739, -0.0171388574, 0.00186644751, 0.016635729, 0.0200602543, -0.00282604503, 0.0207581427, 0.00276315399, -0.00659748632, 0.0105657158, 0.0177393667, -0.0240528286, 0.081149891, -0.0151182255, 0.0194922052, -0.0269093048, 0.021358652, 0.0272014439, -0.0280291736, -0.0368095934, -0.012797338, 0.0129839834, 0.0164490826, -0.0100707021, -0.0349918343, 0.00622013956, -0.00520170806, -0.00299645984, 0.0165140033, -0.00798920728, -0.027120294, 0.023809379, -0.0198817234, 0.0132517777, -0.00594828743, 0.0237282291, 0.0240690578, 0.0165545791, 0.0132355476, 0.0102330018, -0.0213099625, 0.00768489484, 0.0157187339, -0.0211314317, -0.0454764, -0.0293600317, 0.0131138228, -0.00154083362, 0.00347727304, -0.0277694929, 0.0421330258, 0.0314374678, 0.0239554495, -0.0125620039, 9.28785885e-05, -0.0148423156, -0.0130245583, -0.0141768865, 0.0338557363, 0.0183561053, -0.024198899, 0.0327683277, -0.0290354323, 0.0122536337, -0.0309830289, -0.00585902249, -0.0298144706, -0.00547356, -0.0252376162, -0.0093728127, -0.0362577736, -0.0293438025, 0.0287919827, -0.00174269394, 0.0302526802, -0.00953511242, 0.0358682536, -0.0240852889, -0.006496049, 0.0305772796, 0.0273475144, 0.00677195843, 0.0516437925, -0.0132761225, 0.0346996933, -0.00703163818, 0.00758345751, -0.045833461, -0.00900763832, -0.00457279664, 0.0173985381, 0.0203523934, 0.016538348, -0.0371341929, 0.0047188662, -0.00345698558, -0.0395037681, -0.0232250988, 0.00672326889, -0.0207419135, 0.0227057412, 0.000615724828, -0.0120345289, -0.0241177492, -0.00892648846, 0.00216873083, 0.0187943149, 0.00749013526, -0.00568860769, 0.0273637436, -0.0271040648, 0.0109227756, 0.00329468562, 0.0179828163, 0.0152237201, 0.0162867829, -0.0233224798, 0.034861993, -0.00601726444, -0.000587322342, -0.00990840234, 0.0355436541, -0.0315673091, -0.0182587262, -0.0109308911, -0.0288082119, 0.0291815028, 0.0173498467, 0.0300416909, -0.00849639345, 0.0107036708, -0.0425874628, 0.0156943891, -0.0152724097, -0.00618362194, -0.031924367, 0.00734812301, 0.00889402814, 0.0113528706, 0.0456711613, 0.0377509296, 0.0262276456, 0.00624854164, 0.000900256622, -0.0156781599, -0.0100301271, -0.0116693545, -0.0174634568, -0.0144122215, -0.0147124762, -0.00639461167, -0.0214235727, -0.0287108328, 0.00696671847, -0.00901575293, 0.020790603, 0.00652039377, 0.0190539956, 0.0400880463, -0.00891837291, -0.00595640205, 0.00769706722, 0.00700323563, 0.0489820763, -0.0451842621, 0.01138533, -0.0124889687, 0.0100382417, -0.0368745103, -0.00124970835, -0.0236795396, 0.00933223777, 0.0239229891, 0.0171388574, -0.017755596, -0.0231277198, 0.0153373303, -0.0266658552, -0.00598886237, 0.00274083763, -0.00202773302, -0.0171063971, 0.0270553753, 0.023712, -0.0160352197, 0.0321353562, 0.0228842702, -0.0272014439, 0.00149417238, 0.0211152025, -0.00745767541, 0.0303825196, 0.00510027073, -0.0336285159, 0.0317620672, -0.0129109481, 0.00201657484, 0.00654068124, -0.0215696413, 0.00458091171, -0.053396631, -0.0318919085, -0.00288285, 0.013892862, 0.00137447636, 0.017009018, 0.027590964, 0.0548248701, 0.000848016411, -0.0196058135, 0.0299605411, 0.00739681302, -0.0248156376, 0.0112311449, 0.019849265, 0.00093271659, -0.00871549826, 0.0260166563, -0.00250753178, 0.0328657068, 0.0465475805, -0.0262276456, 0.0398932882, -0.0183236469, 0.00621608179, -0.0113366405, 0.0360305533, 0.0178692061, 0.00960003212, 0.00246289931, -0.0125051988, -0.010484566, 0.0254486073, 0.00999766681, 0.0322165079, -0.0155483196, -0.0222675316, -0.0112149157, 0.00824482925, -0.00179138395, -0.005692665, 0.00777821755, 0.020969132, -0.00896706339, -0.0381079912, -0.0213099625, -0.0109714661, -0.0091212485, 0.00697077578, 0.00407372462, -0.0201089438, -0.0216832515, 0.00654068124, -0.00254404917, 0.0025298479, -0.00368826278, -0.0152561804, -0.00374303875, -0.0134384222, -0.0170414783, -0.028159013, 0.00126999582, -0.047424, 0.0248643272, 0.0385299698, 0.0101924269, -0.014460911, -0.0183885656, 0.00767677976, 0.00846393406, 0.0281265527, 0.00497854594, 0.00185427512, 0.0264873262, -0.0211152025, 0.0294736419, 0.0163111296, -0.0152237201, -0.00121319096, -0.0158485752, 0.0307720397, 0.0121805994, -0.00412850082, 0.0240203682, -0.0111986855, -0.0448921211, 0.0256433673, -0.00327642704, -0.0343426354, 0.00714119058, 0.00900763832, -0.018615786, 0.0352190547, -0.00568860769, 0.00561963, -0.014834201, 0.0156051246, -0.0255784467, -0.00252579036, -0.0178692061, 0.0394713096, 0.00644735899, 0.0109065454, -0.0128216837, -0.0104521066, 0.00877230335, 0.0237769186, -0.0473915376, 0.00207439414, 0.0207094532, 0.0156943891, -0.0280454028, -0.0115070548, -0.014696246, -0.0423927046, -0.00986782741, 0.00941338763, -0.00135114568, 0.0224947501, -0.00820019655, -0.000868303876, -0.0114502497, -0.00177109649, 0.0108497413, -0.0192974452, -0.0327520967, 0.0241664387, 0.0146881305, 0.0155888945, -0.0168467183, -0.0356734917, -0.00357262418, 0.00478378637, 0.0458659194, 0.0136656426, -0.00111885415, 0.000241674526, 0.0366472937, -0.0214073416, 0.00351379043, -0.0165708084, 0.00957568735, 0.000977349, -0.00438615168, 0.030236451, -0.0132436631, -0.0147773959, -0.0175446067, -0.0234198589, 0.0212125815, 0.0125457738, -0.0106468657, -0.0158485752, 0.0419382639, -0.0213911124, 0.0140876221, -0.0385948904, -0.018989075, 0.0167817976, -0.00559122767, -0.01138533, -0.00222147838, 0.00102350302, -0.000799326459, -0.0344724767, 0.0518710129, 0.0237444583, -0.0209366735, 0.0245559588, 0.000509215577, -0.0152237201, -0.00243855431, 0.0235010087, -0.0172200073, 0.0138847465, 0.0316484571, 0.00860188901, -0.00965683721, 0.0146069806, -0.0287432931, -0.0171713177, -0.0163598191, 0.00855319854, 0.00671921112, -0.004487589, 0.000936266908, 0.0225272104, -0.00442672661, 0.00178935518, 0.000572613964, 0.0205471534, -0.00417110464, 0.00718582328, 0.0107604759, 0.0328981653, -0.00352596282, -0.0184697155, 0.0094620781, 0.00132781512, 0.00134303072, 0.00854508393, 0.0109876953, 0.00361319911, 0.0141038513, 0.00767272245, -0.0164247379, -0.0369718932, 0.00120811909, -0.0209204424, 0.0128135681, -0.00676384382, -0.00142620935, 0.00114015606, -0.00987594202, 0.00731566316, -0.00847204868, 0.0246046484, 7.56342342e-05, -0.014266151, -0.0196707342, -0.00720611075, 0.00315064471, -0.0055668829, -0.0236795396, -0.000652749441, -0.0190215353, -0.00358479656, -0.0113447551, -0.0251077767, -0.0115476297, -0.0253999177, -0.000755708374, -0.0198330339, -0.0224298313, 0.0303013697, -0.00928354822, -0.0336609744, -0.012756763, 0.00855319854, 0.0253512263, -0.0111581106, 0.0104602212, -0.0174959172, 0.0252376162, -0.00531937554, 0.0121562537, 0.00524634076, -0.00469857873, -0.00436992198, 0.0443403, -0.00507186819, 0.0301228408, 0.0442753807, -0.0104521066, -0.0254648365, 0.00830974896, 0.00207946612, -0.00258665276, -0.0291003529, -0.00400271872, 0.0233549401, -0.0145664057, -0.00815556478, -0.00600915, 0.00869115349, -0.0236633085, 0.0754369423, -0.00313441455, -0.00703163818, -0.0280129425, -0.0175121464, -0.0252213869, -0.00985159725, 0.0127161881, 0.0290841218, -0.0291003529, 0.0348944552, -0.00395605713, -0.0112230303, 0.00187760568, -0.0149153508, -0.0129515231, -0.00240609446, 0.0159216095, 0.0274935849, -0.038659811, 0.00210989732, 0.00936469808, 0.00985159725, 0.0117667345, -0.00392765505, -0.0207581427, 0.00972987246, -0.0100301271, -0.0265197847, -0.0106144063, -0.00148605742, 0.00695860339, 0.0327034071, 0.00639461167, 0.00733189285, -0.00959191751, -0.00349553162, 0.00312021351, -0.00368623389, -0.0136899874, 0.00596451713, 0.00553442258, 0.0128703732, -0.000720712473, 0.0158810336, 0.0138847465, -0.00785936695, -0.012521429, 0.010776706, 0.00400271872, 0.0193136744, -0.0172200073, -0.0022194495, -0.00771735469, -0.0269579943, 0.0379132293, -0.018810546, -0.000970755587, 0.0286134519, -0.0389194898, -0.00413255813, 0.00144852558, 0.0190864559, -0.0204660036, 0.0108010508, 0.00817991, -0.00519359345, 0.0143473009, -0.0264710952, 0.0173498467, 0.02363085, 0.00162604102, -0.00239797938, -0.00245884177, -0.00106712116, 0.00953511242, 0.0126756132, 0.00891837291, 0.00856131408, -0.0242313575, -0.0135926073, 0.0134303076, -0.0276558846, 0.0189403854, -0.0137143321, -0.00802978221, -0.00877230335, -0.0341803357, -0.00671109604, -0.0284186937, 0.0226083603, -0.0204010829, -0.0204984639, -0.0124970833, 0.00166965905, -0.00738869794, 0.0189403854, 0.0165870376, 0.000555876759, -0.00344684185, 0.0315997675, 0.049793575, -0.00928354822, 0.00631751912, 0.0043780366, 0.000529503042, 0.0492417552, 0.0133816171, 0.00171936338, 0.0193785951, 0.0374587923, 0.0049339137, -0.0162867829, -0.00357262418, 0.00768895261, 0.0127243036, 0.0287108328, 0.00904009864, 0.0267145447, -0.00580627471, -0.0100625865, 0.0259030461, 0.0287757516, 0.0213911124, 0.0147124762, -0.00639866898, -0.0126188081, 0.00511244312, -0.0085694287, 0.0135358023, -0.0264061764, 0.0267470051, 0.00478784367, -0.00329874316, -0.0122211743, 0.00392765505, -0.00728320284, 0.0161488298, -0.00367000396, 0.0167817976, -0.0196382739, 0.00654473901, -0.0389519483, 0.00752259512, 0.00231885817, -0.0132112028, -0.0111013055, 0.0130651332, 0.0160352197, -0.0173336174, -0.0188592356, -0.0162624381, -0.00543704303, 0.00973798707, 0.00802978221, -0.00774575723, 0.00939715747, -0.0146069806, 0.00785531, -0.0144122215, 0.00313644344, 0.0292139612, 0.0210178234, 0.00847204868, 0.00623636926, 0.0192325246, 0.0109065454, -0.0268119257, -0.0228193495, 0.00635809405, 0.019557124, -0.0143148415, 0.00872361381, -0.00542081287, 0.0348944552, 0.00144852558, -0.00262722792, -0.0148504302, 0.01540225, -0.00865057856, -0.0211476628, -0.00826511625, -0.000921051309, 0.00233508809, -0.00132071448, -0.000909893191, -0.000368978421, -0.00600509206, 0.0117667345, 0.0076402626, 0.00124767958, -0.00439832406, 0.0221376903, 0.0246533379, 0.033725895, 0.0194597449, -0.0203199331, -0.0154509395, 0.000317752565, 0.0330280066, -0.015808, -0.0162218641, -0.00433340436, 0.00526257046, -0.00306340843, -0.00313441455, -0.0143067259, -0.00243043923, 0.0137630217, -0.0220403112, -0.00927543268, -0.0108497413, 0.00400880491, -0.0180801973, -0.0158242285, 0.00343061169, 0.017009018, -0.00647170423, 0.0038505625, -0.0355761126, -0.0172849279, 0.00235334691, -0.0139740119, 0.00436992198, -0.00111175352, -0.0051205582, 0.0045322217, -0.00192933867, -0.00106813549, 0.00718582328, -0.0227057412, 0.0226895101, 0.0368095934, -0.00588336727, 0.0132761225, 0.00363957277, 0.00722639821, -0.0235983897, -0.0192649849, -0.00386882131, 0.0111581106, -0.00125782331, -0.000809977355, 0.00342249684, -0.00143533875, -0.000171048756, 0.00876418874, -0.0163598191, -0.0149478102, 0.0260166563, -0.00794051681, -0.00430905959, 0.00728726061, -0.0107442457, 0.00730754808, -0.0069626607, 0.00793646, 0.00988405664, -0.000136433257, -0.0334986746, 0.00642301422, -0.00280575757, -0.00353002036, 0.00611464446, -0.0321191289, -0.0138360569, -0.0223486815, 0.00436992198, -0.0219267011, -0.0149478102, -0.0305772796, 0.0121237943, 0.00636620913, -0.0120345289, 0.0192487556, 0.00443889899, 0.025318766, -0.00152054615, 0.00415284606, -0.00828540418, -0.0254810676, 0.0291815028, 0.00430094451, 0.032687176, -0.0225109812, 0.0126837287, 0.005692665, 0.00949453749, 0.0607975, -0.00334946183, 0.0210015923, 0.0180801973, -0.00345495669, 0.0241339784, 0.022592131, 0.0329955481, 0.00646764645, 0.0137143321, -0.0212937314, -0.0174309965, 0.00229248451, -0.00956757274, 0.00322367949, 0.00602132222, -0.007904, 0.0153941344, 0.0224460606, 0.0121643692, 0.0207743738, -0.0105332565, -0.0046539465, -0.0137792518, 0.00309383962, -0.022024082, -0.0253674574, -0.0324924178, 0.0366472937, -0.00688556861, -0.00295588491, -0.00551007781, -0.0198330339, -0.00122333469, -0.021829322, 0.00273272279, -0.0126674986, -0.00814339146, -0.0238905288, 0.000498818234, -0.0316322297, 0.0160271041, 0.0201414041, -0.00968929753, -0.0470344797, 0.024750717, -0.00452410663, 0.00105799176, -0.0184047967, -0.000740492775, -0.00954322796, -0.00662994618, -0.0204660036, 0.0142986113, -0.0179828163, 0.0107280156, 0.00887779798, 0.00668269396, -0.0165626928, 0.00686528115, -0.0226083603, -0.0100544719, -0.00819208194, -0.021731941, -0.00297617237, 0.000531531812, -0.0073643527, 0.0121075641, 0.023809379, 0.00991651695, 0.010346611, 0.00294979871, 0.00321353576, 0.0312914, 0.0146881305, -0.0050596958, 0.00845581852, -0.00787965488, -0.0106306365, 0.0043618069, 0.0208717529, 0.0374587923, -0.0309830289, -0.0147530511, 0.00994897727, -0.00217887457, -0.00748202, 0.00779444724, 0.00160473911, -0.00731160538, 0.00839089882, 0.0025298479, -0.0236957688, -0.00734406523, 0.00278952764, -0.00307355216, 0.0132112028, -0.0120020695, -0.012992098, 0.0161488298, -0.0106387511, -0.00515301805, 0.0297170915, -0.00439426675, 0.0103547266, 0.0127892233, -0.0276558846, 0.00807441492, -0.0254972968, 0.00153779052, -0.00748607749, -0.00389113743, 0.0214560311, 0.0218780115, 0.00639866898, 0.00139780692, 0.0182749555, -0.00886968337, -0.0144203361, -0.0294736419, 0.000656807, -0.0255135261, -0.0106712114, -0.0318269879, -0.0175121464, -0.0312427096, -0.00271649263, 0.0244585779, 0.00336772064, 0.0290516615, 0.0285485331, 0.0368420519, 0.00571701024, 0.0049501434, 0.00137346191, 0.0115476297, 0.0100382417, -0.0159540698, 0.0226732809, -0.00549384765, -0.0126269236, 0.0172200073, -0.00691397116, -0.00201961794, -0.00633374928, 0.00744550256, -0.0295061022, -0.0150046153, 0.0046580038, 0.0062647718, 0.0174634568, -0.000453678629, -0.0081068743, 0.0143391863, -0.0070235231, 0.0024750717, 0.015166915, -0.0113691, 0.00712496089, 0.0105007961, 0.00950265303, 0.0153616751, 0.00879664812, 0.00673544127, -0.0184534863, 0.00979479216, -0.00247710058, -0.0026150553, -0.00315470202, -0.0360954739, -0.00549384765, -0.0194272846, -0.00317904702, -0.0235010087, 0.00587931, -0.0117586199, 0.00222147838, 0.0275098141, 0.00540864049, -0.0079973219, 0.0172686968, 0.0068368786, 0.0137711372, -0.0150370756, 0.00300457492, -0.00123855029, 0.00159155228, 0.0161894038, -0.0164734293, 0.0026211415, -0.000988, -0.0116774701, 0.00195165491, -0.000350466114, 0.0177718271, 0.0162786692, 0.0205471534, 0.0294249523, 0.00764837768, 0.0113934455, 0.0256433673, 0.00846393406, 0.0134140775, -0.00969741214, -0.00164227095, 0.0048243613, -0.00567643531, -0.0105170263, 0.00265157269, 0.0255622175, -0.00590365473, -0.027217675, 0.0071330755, 0.00438615168, -0.0123023242, -0.000747593411, 0.0110850753, 0.0222675316, 0.00173762208, 0.00684499368, -0.0106549812, 0.0114502497, 0.0215534121, -0.0390493274, -0.0099895522, 0.0258868169, 0.0151101099, -0.00223770831, -0.00692208577, -0.0112149157, 0.0132842381, 0.000482081086, 0.0216183309, -0.00303297723, 0.0150938807, -0.0358357914, -0.00342249684, -0.000936266908, -0.011718045, -0.000383433246, -0.00889402814, 0.00391345378, 0.00244261185, 0.00231682952, -0.0053518354, -0.00997332204, -0.024945477, -0.0078309644, 0.00439832406, -0.000666950713, 0.0047188662, 0.0173336174, -0.000189053899, 0.0209366735, -0.0213424228, -0.0120264143, -0.00870738365, -0.00360102649, 0.0191189144, -0.0178692061, -0.00768895261, -0.0191351455, -0.0175283775, -0.0117991949, -0.0183236469, 0.00201048865, 0.0137873674, 0.00704381103, -0.00852885377, -0.01138533, -0.00466206158, 0.0101275072, 0.00291531, -0.0215696413, 0.0272339042, -0.0160595644, -0.0047188662, -0.00330077205, 0.00342858303, 0.00669892365, 0.00721828314, 0.00180862821, -0.00532749062, 0.0153535595, 0.0186969358, 0.00362740015, 0.0182587262, 0.0120101841, 0.00190093624, 0.0112149157, -0.00124869402, -0.0278344136, -0.0108497413, -0.0240528286, 0.00913747773, 1.20377626e-05, 0.0246857982, 0.014598866, 0.0101437364, 0.0383027494, -0.0258705858, 0.00712090312, 0.00763214752, 0.00430500181, -0.00706004072, -0.0296197105, -0.0174309965, -0.00766866514, -0.0284836125, 0.0116368951, -0.00634186435, -0.00201048865, -0.0111337658, -0.0111094201, -0.00549790543, 0.00721828314, -0.00905632786, -0.0169440974, 0.0173011571, 0.0176095273, -0.0403801873, -0.00120101846, 0.00803383905, -0.0386922695, -0.00244058296, -0.0195246637, 0.041289065, 0.00327642704, 0.0072385706, -0.0112960655, -0.00260288292, 0.021537181, -0.00176298141, 0.0224785209, -0.0173498467, -0.00387896504, -0.00936469808, -0.0149965007, 0.0184534863, -0.00759563, -0.00675167097, 0.00286864885, 0.00748607749, 0.00409604097, 0.0164734293, 0.014363531, -0.0136169521, -0.0187456254, -0.0203199331, -0.0112554906, -0.00452816393, 0.0184372552, -0.00359088276, 0.0203361642, -0.00320947822, -0.00786342472, 0.00638243929, -0.0290516615, -0.0134465378, 0.0185833257, 0.00283213123, -0.02363085, 0.00298428745, 0.0202387832, 0.00423602434, -0.00629723165, 0.00144954, -0.0226245914, -0.018615786, 0.0160189886, -0.00164734281, 0.0119209196, 0.0147855105, -0.0135682626, -0.00924297329, -0.000815049221, 0.0148179708, -0.017009018, 0.000202621144, 0.00942961778, -0.00940527301, 0.0201738644, 0.00236146199, -0.0159540698, 0.00127303891, 0.00659342902, 0.00573324, 0.0149478102, 0.00459714141, 0.0175446067, -0.0288893618, 0.000759765855, -0.00546544557, 0.022202611, -0.00454033678, 0.00166255841, 0.0145339463, 0.00172646402, 0.0231601801, -0.00942150224, 0.00618767925, 0.0177718271, -0.00471075112, -0.00360508403, -0.0114502497, -0.00671921112, 0.0167006478, -0.0212125815, -0.0156457, 0.0221376903, 0.00941338763, 0.00154590548, 0.00687339623, 0.0124159334, -0.0230952594, 0.000621811079, 0.0109714661, 0.0130489031, -0.00107016426, 0.0139415516, -0.00506781088, 0.000799833622, -0.0104034161, -0.00366797531, 0.00646358915, 0.00440238183, -0.00891837291, -0.0133004673, -0.00441455422, 0.0122455191, -0.0259192754, 0.0073643527, 0.000237236643, -0.00916993804, 0.00663400395, -0.00637838151, -0.0194435138, 0.00887779798, 0.0123997042, -0.0258868169, -0.00263737165, 0.00341641065, -0.0080865873, 0.0300254617, 0.00972175691, -0.0053518354, -1.05320514e-05, 0.00193339621, 0.00840712897, 0.0260004252, 0.00784719456, 0.000284531823, 0.0144852558, -0.0106387511, 0.00807441492, 0.00756317, 0.0126431538, -0.00927543268, 0.00837466866, -0.00150228746, -0.00755099766, 0.0247182585, -0.0133491578, -0.0125295436, 0.0315023884, 0.00203280477, 0.0247669481, -0.00273475144, 0.00351379043, 0.00826105941, 0.0191351455, 0.0103141516, 1.88610102e-05, -0.0223162211, -0.00196788483, -0.00862623379, -0.00968929753, -0.0240203682, 0.00805412699, 0.00429688673, -0.00724262791, -0.0138198268, -0.0158242285, -0.011815425, 0.0257732067, 0.00214844337, -0.00738869794, 0.00668269396, -0.00718176551, -0.00988405664, 0.00969741214, 0.0148828905, 0.013698102, -0.0109471204, -0.0137305623, 0.00331903063, -0.000293914782, 0.00899952371, 0.0116693545, 0.0353164338, 0.0123266689, 0.00486493623, -0.0280940924, 0.0185508654, 0.00332511682, 0.000799833622, 0.018989075, 0.0109714661, 0.0168791786, -0.00521388091, -0.0184210259, -0.00722234044, 0.0173011571, -0.0132842381, -0.00320744957, -0.0338232741, -0.0113447551, -0.0069017983, 0.00664211903, -0.00406358112, 0.00593205728, -0.00958380289, 0.0156294703, 0.00557094, -0.0215858724, -0.00371666509, -0.00953511242, -0.0283700023, 0.0117018148, -0.018242497, -0.000455453788, -0.00957568735, 0.00505158072, -0.0168142579, -0.00960003212, 0.00524228299, 0.00835843943, 0.00617144955, 0.00680036098, -0.0102816913, -0.00543704303, 0.00352596282, -0.0194597449, 0.00328657078, -0.0238580685, 0.0192649849, -0.00963249244, 0.000891634438, 0.0362577736, 0.00470669381, 0.00432528928, -0.0100301271, 0.0177069064, 0.0400880463, 0.000757229922, -0.0230628, -0.012188714, -0.0103547266, -0.00544921542, -0.0234198589, 0.0136818718, 0.00186543318, -0.00452410663, 0.00708438596, -0.00121319096, -0.00703569595, 0.00464988872, 0.0145258307, -0.0253512263, -0.00768489484, -0.00801761, 0.00162198348, 0.00749825034, -0.0121562537, 0.00490145339, 0.0145258307, 0.013990242, 0.0141850011, -0.0092510879, -0.0088453386, -0.0216507912, 0.00289299362, -0.00138664886, 0.00572106754, 0.0220727716, 0.00550196273, 0.0461905189, -0.00824888702, -0.0153292147, -0.018989075, -0.0169278681, -0.00481624622, 0.0203848537, 0.00259679672, -0.0114908246, 0.00766866514, -0.0115314, -0.0067273262, -0.00126999582, 0.00551413512, 0.0248156376, -0.0231764093, 0.00657314155, 0.0260004252, 0.000868811039, -0.0075347675, -0.00497854594, 0.0195733551, 0.017009018, 0.00438209437, -0.0177718271, 0.00613493193, -0.0217806324, -0.00889402814, 0.0151993753, -1.55325972e-06, -0.00213829963, -0.00843958929, -0.0130975926, 0.0125620039, -0.00940527301, 0.0176095273, -0.0249130167, 0.021731941, 0.0247994084, -0.025610907, -0.0118316542, -0.00514084566, 0.00537618063, -0.00400677603, 0.00893460307, -0.00674355635, -0.00542487064, 0.00899140816, -0.0010498768, -0.00674761366, 0.0118073095, 0.00194861181, 0.0114745954, 0.00139882124, 0.026357485, -0.0101193916, -0.00748607749, 0.013698102, -0.000701946556, 0.0151182255, 0.0035888541, 0.000809470192, -0.00350973289, 0.00552225, 0.00357871037, -0.0154428249, 0.00552225, -0.0129515231, 0.0119046895, 0.013089478, -0.0131138228, 0.00273678, 0.0076402626, 0.00600915, 0.00283618877, -0.00908067357, 0.00852885377, -0.0034732155, -0.00263737165, -0.00738869794, 0.007701125, -0.0268281549, 0.0151182255, 0.0192325246, 0.00608218461, 0.00852073915, -0.0123185543, -0.000488674501, 0.0210989732, 0.00820019655, 0.0237282291, -0.0157430787, 0.000872361357, 0.00649199169, -0.019751884, -0.00430094451, -0.0122292889, 0.00175588077, 0.00566426245, 0.000280220731, -0.00283618877, -0.0178205166, 0.0118884593, -0.00747390511, 0.0167493373, -0.00682064844, 0.00401894841, -0.00313035725, -0.0208717529, -0.0249941666, 0.0243449677, -0.00743738795, 0.00972175691, -0.00739275524, -0.000570585195, 0.00321962195, -0.0113041801, 0.00340423803, 0.0134221921, -0.0176906772, -0.020969132, -0.0191189144, 0.0252538472, -0.00789588504, -0.00553036528, 0.0157593098, 0.0163273588, -0.00123043521, -0.00865057856, 0.0136088375, 0.0145339463, -0.00660965871, -0.0122211743, 0.0134546524, 0.0123185543, -0.00584684964, 0.00160068169, -0.0047188662, -0.00130144146, -0.00520982314, -0.00234320317, -0.0174472276, 0.00862623379, -0.021358652, 0.000539646775, 0.00571295246, -0.00435774913, -0.00168183155, -0.00538835302, 0.0206120722, -0.00723045552, -0.00419544941, 0.0135763772, 0.0111418804, 0.000753679662, 0.000925615954, -0.0269579943, -0.00215047225, -0.00277126883, 0.00697889086, -0.00286459131, 0.00421979465, 0.00871549826, -0.00302080484, -0.00100118679, 0.0198330339, 0.0122374045, 0.0136412969, 0.000167752049, -0.0099895522, -0.00523822568, 0.00824888702, 0.00369637762, -0.0257245172, -0.0157998838, 0.0083827842, -0.00463365903, 0.00470263651, -0.00796486251, -0.00684905099, 0.00961626228, 0.0162137486, -0.00727103045, -0.00750636542, 0.0185021758, -0.0255784467, -0.00187050505, 0.00593205728, -0.0182749555, 0.0133653879, -0.00581844756, -0.00798920728, -0.00966495275, -0.0158161148, -0.0256433673, 0.0123428991, 0.0247669481, 0.00362131395, -0.0192487556, -0.00810281653, 0.00173863652, 0.0131381676, 0.0252051577, -0.00255419291, -0.00357262418, -0.00268606143, 0.0053964681, 0.0108740861, -0.0055060205, -0.0113122957, 0.00202976167, -0.00951888226, 0.0158485752, -0.0049501434, 0.0110769607, -0.0114664799, -0.00126898149, 0.00177008205, -0.0228031203, -0.0146232108, -0.0121237943, -0.00708844326, -0.00380998757, 0.0107117863, 0.0205309223, -0.00500694849, 0.00753071, 0.00503535103, -0.0276883431, -0.00680847606, 0.0208717529, -0.00480001606, 0.000317752565, -0.00134404516, -0.00390736759, 0.0149396956, 0.00856131408, 0.00779444724, -0.00348741678, 0.0203848537, -0.0100788167, 0.00623231195, 0.0136656426, 0.00477567129, -0.00519359345, -0.00287879258, 0.00462554395, -0.0167493373, -0.0323463492, -6.45078253e-05, 0.0214398019, 0.00675572874, -0.0200115647, 0.0068368786, 0.00142215192, 0.0295061022, -0.00819614, -0.00973798707, 0.00175689522, 0.0325573385, 0.000510229962, -0.000324853172, -0.0102492319, 0.00210178224, 0.0173498467, 0.00610652938, 0.0299767703, 0.0275585037, 0.00786342472, -0.0275422744, 0.0212450419, -0.00711278804, -0.0130326729, 0.0359656326, 0.0111256503, 0.00665429141, 0.0291490424, 0.0150046153, 0.00416704686, -0.00692614354, -0.0203848537, -0.0223649107, -0.000334743323, 0.000742521544, 0.0101924269, 0.0172200073, -0.00566020515, -0.0153535595, -0.00278547, 0.00136331818, -0.000151902452, 0.00628505927, 0.00639461167, 0.0166844185, 0.000418175536, -2.56446347e-05, -0.00703569595, -0.000331953779, -0.000569063646, 0.0354138128, 0.00544921542, 0.00311615597, 0.0105413711, -0.00530314539, -0.0191026852, -0.00376738375, -0.00267186016, 0.0135844918, -0.00378158502, -0.00353204925, 0.0126512684, -0.00610652938, -0.00136940449, 0.000715133443, -1.7497945e-05, -0.0127243036, 0.00231682952, -0.00401489111, -0.012188714, 0.00588336727, -0.00960003212, -0.0126106935, -0.0211314317, 0.00312021351, -0.00960003212, 0.00229248451, 0.00219916203, -0.0247182585, -0.0110201556, 0.0200115647, -0.00178124022, 0.0243287385, -0.00150431611, -0.0209366735, 0.00583467726, -0.00956757274, -0.0113772154, -0.00830974896, -0.0226895101, 0.0151588, 0.00613493193, 0.00944584794, -0.0216670223, -0.0119046895, 0.0113934455, 0.00645141676, 0.00358073902, 0.0176582169, 0.00845581852, 0.0112230303, 0.00982725248, 0.012756763, 0.0023046569, 0.0085694287, -0.00273475144, 0.00814339146, -0.0117991949, 0.00268809032, -0.000794761756, -0.00636215182, -0.00387085, 0.0151993753, 0.0156457, -0.000159510266, 0.00852073915, -0.023809379, -0.0123104388, 0.00300254603, 0.0104439911, 0.00809470192, -0.00196078443, 0.0191026852, 0.0131219374, 0.00285241869, 0.018615786, 0.0244261175, -0.0145907514, -0.00355639402, 0.0206932221, 0.00220119092, 0.00426848466, -0.00346104288, 0.00772141246, 0.017382307, -0.00381607376, 0.00762403244, 0.00682876352, 0.00878853351, 0.0312427096, -0.0138847465, 0.00680036098, -0.00270837778, -0.00931600761, 0.00878853351, 0.00533154793, 0.0229978804, -0.00359088276, -0.0151263401, 0.0047188662, 0.00670703873, 0.00938904285, -0.00814339146, -0.000615724828, 0.0113366405, 0.00769301, 0.000346915796, -0.00634186435, 0.0150370756, -0.00563586, -0.0111256503, 0.0198168047, -0.016635729, 0.00542892795, -0.0182911865, 0.00781879202, 0.0268443841, 0.0085694287, 0.0279317927, 0.0109227756, -0.00120304723, 0.0106387511, 0.0141525418, 0.00380998757, -0.018810546, -0.00808252953, 0.0139577817, -0.00434963452, -0.0137143321, -0.0123266689, 0.0167331081, 0.0112636052, -0.00395605713, -0.00467829127, 0.00982725248, -0.0168954078, 0.00162198348, 0.00458091171, 0.0077660447, 0.0166681875, 0.0216021016, -0.0300741512, -0.0133735025, 0.0163841639, -0.00599291967, 0.0407372452, 0.00957568735, 0.00204497739, 0.00153474743, 0.00276518264, 0.00754288258, 0.00482030353, -0.00215452979, -0.0135682626, -0.017577067, -0.0379456915, 0.0134059628, -0.0266009346, 0.00367609016, -0.00333728944, -0.0218455512, -0.000914457894, -0.0080419546, 0.012992098, -0.0183885656, 0.00407778239, -0.00745361764, -0.00995709188, -0.00200947421, 0.00600103475, -0.00197397126, -0.0284349229, -0.00961626228, -0.00672326889, -0.0171550885, 0.0158566888, 0.0183074158, 0.0060294373, -0.0096487226, 0.00751042273, 0.0145339463, -0.00330077205, 0.0105900615, 0.000833308, 0.00323788077, 0.000272866513, -0.0169278681, 0.0156943891, 0.0274286643, 0.00179848447, 0.0143391863, 0.00870738365, -0.0103547266, -0.00471480889, -0.00662588887, -0.0106874406, 0.013657527, -0.00602537952, 0.00571701024, -0.0181126557, -0.000829250494, -0.0104034161, 0.00726697315, -0.0215696413, -0.0129758678, 0.00485682115, -0.00181978638, 0.00282401638, -0.0156700443, -0.0130732479, 0.00433340436, -0.000154945577, 0.0211801231, -0.000528488657, 0.00559122767, 0.00442672661, -0.0296197105, 0.0233062487, -0.0779039, -0.00839901436, -5.1320967e-05, 0.0075347675, -0.000229375248, 0.0204497725, 0.0364525318, 0.0121237943, 0.0174472276, 0.0214560311, 0.0185670964, -0.0120994495, -0.0190053061, -0.00613493193, -0.00843958929, -0.0156862754, 0.00551007781, 0.0168467183, -0.00935658254, 0.00118174532, 0.00362334284, 0.00677195843, 0.0198654942, -0.0184047967, 0.00583062, 0.0119614946, -0.00235740445, 0.00128521142, 0.00536806555, -0.000553848047, -0.00557499751, 0.00153981929, 0.0169603284, -0.0222999901, 0.00528691569, 0.00340626691, 0.0024202955, -0.0132355476, -0.017382307, -0.013560147, 0.00484870607, 0.0152561804, -0.0105981762, -0.0101761967, -0.011718045, 0.00799326412, -0.00347727304, 0.0185995549, 0.00492174085, 0.00846393406, -0.0201738644, 0.000700425, -0.00289705116, -0.0140876221, 0.0263412558, -0.00058884389, 0.0078106774, -0.0020125173, 0.00875607319, 0.00692208577, -0.00675572874, 0.00234320317, -0.000476248446, -0.00916182343, 0.0227382, 0.00740492763, 0.00326019689, -0.00245478423, 0.00645953137, 0.0118073095, -0.010581946, 0.0191513747, 0.00149011496, 0.00557094, 0.00180457078, 0.0126512684, 0.00152967556, -0.00131970015, -0.0119128041, 0.0361279324, -0.00486493623, 0.00904009864, 0.0145501764, -0.00821236894, 0.0242800489, -0.0194597449, -0.0282401629, 0.00843958929, 0.00558717037, -0.0225434396, 0.00349756051, -0.00275706756, -0.0202550143, -0.00708438596, 0.00459714141, 0.00792834442, 0.00177413959, -0.00329265697, 0.0102248862, -0.00216467353, 0.00417921972, -0.00973798707, 0.00295588491, -0.0078309644, 0.0211152025, -0.0218130909, 0.0131381676, -0.0306746606, 0.00581439, 0.00176298141, 0.0356085747, -0.00360102649, 0.0124483937, -0.00820425432, 0.00770924, -0.00741710048, 0.0102654612, -0.00764432, 0.00450787647, 0.0182100367, -0.000757229922, -0.019751884, -0.0146313263, -0.00935658254, 0.00250753178, 0.00103567552, -0.0142499218, -0.00353610655, -0.00563991768, 0.00693020085, 0.00157735101, -0.00837466866, 0.00729131792, -0.0188430045, -0.00262722792, -0.0143797612, -0.00768083753, 0.0245884173, -0.0175283775, 0.00509621343, 0.000634490745, -0.00861000363, 0.0100220116, -0.00600915, -0.0221376903, -0.0194759741, 0.00900763832, 0.000735420908, -0.0148991207, -0.0169927869, 0.000970248424, -0.00404126476, 0.0126918433, -0.00257448037, -0.0132761225, -0.0121319089, -0.00613493193, -0.0061389897, -0.0115719745, 0.0131138228, -0.00075520121, 0.00373086636, -0.00927543268, 0.00626882911, 0.000102515136, -0.00474726874, 0.00116044353, 0.0156538151, 0.000793240208, 0.00105291989, -0.00222350704, 0.0161569435, -0.0191189144, 0.00716553582, 0.0168954078, -0.00985159725, 0.00296805729, -0.00903198309, 0.0230952594, 0.0184697155, 0.0100950468, 0.00397228729, -0.0128135681, -0.0172362383, -0.0385948904, -0.0100544719, 0.00196889928, 0.0318756774, 0.0126999589, -0.00205816422, 0.0126106935, -0.00588336727, -0.0034488705, -0.0128297983, -0.00957568735, -0.00444295676, -0.00163415598, 0.00994086172, 0.0111986855, -0.00236957683, 0.0149234654, 0.00326019689, 0.00860188901, -0.00402706349, -0.0189566147, -0.0220403112, -0.02343609, 0.0137305623, -0.0245884173, 0.00772141246, 0.0179341268, -0.00458496902, 0.0137224467, 0.00823671464, 0.0150289601, 0.0210989732, -0.0139253214, 0.0199141838, -0.00146881305, 0.0231277198, -0.000309130381, 0.00914559327, 0.0112311449, 0.0139415516, -0.00583062, -0.0133653879, -0.0183885656, 0.0209529027, -0.00315875956, -0.00504346611, -0.0121562537, 0.00871549826, 0.0234198589, -0.00768489484, -0.000349958922, 0.0166194979, 0.012992098, 0.0205796137, 0.0157917701, 0.0105494866, 0.0349269137, 0.00251767552, 0.0141606564, -0.00993274711, 0.00868303888, -0.000176627815, 0.0035036467, -0.0194110554, -0.00686933845, -0.00716147805, 0.0110526159, -0.00268403278, -0.0267145447, 0.00298023, 0.0186320152, -0.0055668829, -0.00816773716, 0.00194861181, -0.00304109231, 0.0173660778, -0.00584684964, -0.00240203692, 0.0214073416, -0.0152399503, -0.0170414783, 0.00763214752, -0.00527474331, -0.00725885807, 0.0116368951, -0.00867492333, 0.00572106754, -0.0131625133, -0.00627694419, -0.0222999901, 0.00547356, 0.00750230765, -0.00659342902, 0.0266333949, -0.025042858, 0.00306137977, 0.0100625865, -0.020969132, -0.00040549587, -0.00524228299, 0.00329468562, -0.00748607749, -0.000526459946, 0.00586308, -0.00368420524, -0.00780256232, -0.0154184802, -0.0125620039, -0.00230059959, -0.0178529769, -0.0176906772, -0.00963249244, 0.00876418874, -0.00148098555, -0.0202063229, -0.000252832629, 0.0158729199, -0.00923485775, 0.00738464, 0.000114307237, -0.00106306362, -0.0232413299, -0.010581946, -0.0179828163, -0.00635403674, -0.016538348, -0.0026759177, 0.000281488698, -0.0282401629, -0.013990242, -0.0131057082, -0.0199791044, -0.00574135501, -0.0190864559, 0.00754288258, 0.00626071449, -0.00825700164, -0.0021585871, 0.00566832, -0.0114664799, 0.00449570408, 0.00610652938, 0.00825700164, -0.00271852151, -0.00420356449, -0.00618362194, -0.00170009024, -0.018145116, 0.00598074729, -0.0042563118, -0.0062647718, -0.00881287828, -0.00541269779, -0.0189728457, -0.00673544127, -0.0507349148, -0.00665429141, 0.00589959743, -0.00173457898, 0.0133572724, 0.00633374928, -0.0213099625, -0.0171226282, -0.00688556861, 0.00645547407, -0.0229005, 0.00669892365, -0.00697077578, 0.016303014, 0.00733189285, 0.00018246047, -0.000199197631, -0.000809470192, -0.0202063229, 0.00471480889, 0.0039053387, -0.0197843444, 0.000611667347, -0.00489739608, -0.0182911865, -0.0346672349, -0.000887069793, 0.01530487, 0.00734406523, -0.0169927869, -0.00830569211, -0.0135439169, -0.00753071, 0.0123347836, 0.0806305334, 0.00371869397, -0.000487406563, -0.0408021659, 0.00265360158, -0.0268119257, -0.014030817, 0.0492742173, -0.00993274711, -0.0119209196, 0.00627288688, 0.0074089854, -0.00868303888, 0.0207581427, -0.0129839834, -0.00844770391, 4.82778487e-05, -0.0151750306, -0.023712, 0.00476755621, 0.00529908808, -0.0267307758, 0.0153860198, -0.0214235727, 0.00732783554, -0.00739681302, -0.0082732318, 0.00204802048, -0.0216670223, -0.00485276384, 0.00734000793, 0.00796080474, -0.00186543318, 0.00682876352, -0.00949453749, -0.0031871621, 0.0107442457, -0.00444701407, 0.00333931809, -0.0172686968, 0.0247994084, 0.0130975926, 0.00083432236, -0.0142986113, 0.00671109604, 0.00683282129, -0.00874795858, 0.00179036951, 0.0124159334, -0.0214398019, -0.00541269779, -0.016911637, -0.0105657158, -0.00260896911, -0.0143878758, -0.00303094857, 0.0259355064, 0.00440238183, -0.00362131395, 0.00103871862, -0.00244666939, 0.00982725248, -0.00241015176, 0.00910501834, -0.0174309965, -0.0217157118, 0.00510838581, 2.85768092e-05, -0.0205633827, 0.00591988489, 0.00206425041, -0.0101356218, 0.00933223777, -0.0155158602, -7.18778847e-06, -0.00812716223, -0.020417314, 0.0102735767, 0.00993274711, 0.0050556385, -0.0210827421, 0.0253999177, -0.00916182343, -0.00960003212, -0.00470669381, -0.0114259049, -0.0138604017, 0.00370855024, -0.00151344552, 0.0406074077, -0.0106225209, 0.00747796288, -0.0196707342, -0.00105900608, -0.010013897, 0.0178854372, -0.0132112028, 0.0132193174, 0.0289867427, 0.00852073915, 0.0273312852, 0.0131381676, -0.0155402049, -0.00960003212, -0.0236470792, 0.0374263301, 0.00275098137, 0.0210665129, 0.0129434085, 0.0108578559, -0.0110607306, 0.0078106774, -0.00638649659, 0.0220403112, 0.0224136, -0.00490956847, 0.00464988872, -0.00252173305, 0.000426544138, -0.00852073915, 0.0089102583, 0.0115314, -7.19571326e-05, 0.00982725248, 0.016911637, -0.018242497, 0.0292139612, -0.0046539465, 0.000237997418, -0.0148098553, 0.0151912598, -0.0112068, -0.00674761366, -0.00969741214, 0.0376210921, 0.00887779798, 0.0252051577, 0.0121562537, 0.017382307, 0.0140064713, 0.00727508822, 0.00558717037, 0.0296034813, 0.00659748632, -0.00825294387, 0.00235334691, 0.00968929753, -0.0310966391, 0.00410415605, 0.022024082, 0.00612681685, -0.00188369188, 0.0093728127, -0.0285647623, 0.0045322217, 0.0087804189, -0.0279155634, -0.00866680872, 0.026925534, 0.0207256824, 0.011993954, -0.00624854164, 0.0172849279, 0.0037592689, 0.0126350382, 0.00576975755, 0.0139821265, -0.00497043086, 0.00630940404, 0.0198654942, -0.00882910844, 0.0143391863, -0.0171388574, 0.00392156886, -0.0032175933, 0.0112230303, -0.00340423803, -0.0191189144, -0.00692614354, -0.01138533, 0.00426036958, 0.00469046365, 0.0155320894, 0.048008278, 0.00948642287, -0.0088453386, 0.0160108749, -0.00474726874, 0.008975178, 0.0045484514, -0.0160757937, 0.0204822328, 0.0124889687, -0.0051205582, -0.00112494046, -0.0222675316, 0.0262925662, -0.0112311449, -0.0089102583, 0.005692665, 0.016538348, -0.00362334284, -0.00625665672, -0.0228193495, -0.00444295676, 0.0163192432, 0.00824482925, -0.00965683721, 0.00771329738, 0.00582250487, 0.000772952742]
21 May, 2024
Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component 21 May, 2024 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the calendar component in angular ngx bootstrap. Dropdown Advanced with Templating, Filtering and Clear Icon Component: This type of dropdown is the advanced one in which we will be using the templating, filtering and clear icons. Syntax: <p-dropdown [filter]="true" filterBy="name"> <ng-template pTemplate="selectedItem"> </ng-template> <ng-template let-country pTemplate="item"> </ng-template> </p-dropdown> Creating Angular Application & Module  Installation: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: Example1: In the below code, we will be using the above syntax to demonstrate the use of the Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;">GeeksforGeeks</h1> <h3>A computer science portal for geeks</h3> <h4> Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component </h4> <h5>Filtering</h5> <p-dropdown [options]="items" [(ngModel)]="item" placeholder="Select Item" [virtualScroll]="true" [itemSize]="31" [filter]="false" ></p-dropdown> </div> app.component.ts Javascript import { Component } from '@angular/core'; import {MenuItem} from 'primeng/api'; import {SelectItem} from 'primeng/api'; import {SelectItemGroup} from 'primeng/api'; interface City { name: string, code: string } @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent { cities: City[]; selectedCity1: City; selectedCity2: City; selectedCity3: string; selectedCountry: string; countries: any[]; groupedCities: SelectItemGroup[]; items: SelectItem[]; item: string; constructor() { this.items = []; for (let i = 0; i < 10000; i++) { this.items.push({label: 'Item ' + i, value: 'Item ' + i}); } this.cities = [ {name: 'India', code: 'NY'}, {name: 'Rome', code: 'RM'}, {name: 'London', code: 'LDN'}, {name: 'Istanbul', code: 'IST'}, {name: 'Paris', code: 'PRS'} ]; this.groupedCities = [ { label: 'India', value: 'IND', items: [ {label: 'Mumbai', value: 'Mumbai'}, {label: 'Varanasi', value: 'Varanasi'}, {label: 'Nashik', value: 'Nashik'}, {label: 'Delhi', value: 'Delhi'} ] }, { label: 'USA', value: 'us', items: [ {label: 'Chicago', value: 'Chicago'}, {label: 'Los Angeles', value: 'Los Angeles'}, {label: 'New York', value: 'New York'}, {label: 'San Francisco', value: 'San Francisco'} ] }, { label: 'Japan', value: 'jp', items: [ {label: 'Kyoto', value: 'Kyoto'}, {label: 'Osaka', value: 'Osaka'}, {label: 'Tokyo', value: 'Tokyo'}, {label: 'Yokohama', value: 'Yokohama'} ] } ]; this.countries = [ {name: 'Australia', code: 'AU'}, {name: 'Brazil', code: 'BR'}, {name: 'China', code: 'CN'}, {name: 'Egypt', code: 'EG'}, {name: 'France', code: 'FR'}, {name: 'Germany', code: 'DE'}, {name: 'India', code: 'IN'}, {name: 'Japan', code: 'JP'}, {name: 'Spain', code: 'ES'}, {name: 'United States', code: 'US'} ]; } } app.module.ts Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { DropdownModule } from 'primeng/dropdown'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, DropdownModule, FormsModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } app.component.scss :host ::ng-deep .p-dropdown { width: 14rem; } Output: Example2: In the below code, we will be using the above syntax to demonstrate the use of the Angular PrimeNG Form Dropdown Advanced with Templating, Filtering, and Clear Icon Component. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;">GeeksforGeeks</h1> <h3>A computer science portal for geeks</h3> <h4> Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component </h4> <h5> Advanced with Templating, Filtering and Clear Icon </h5> <p-dropdown [options]="countries" [(ngModel)]="selectedCountry" optionLabel="name" [filter]="true" filterBy="name" [showClear]="true" placeholder="Select a Country" > <ng-template pTemplate="selectedItem"> <div class="country-item country-item-value" *ngIf="selectedCountry"> <div>{{ selectedCountry.name }}</div> </div> </ng-template> <ng-template let-country pTemplate="item"> <div class="country-item"> <div>{{ country.name }}</div> </div> </ng-template> </p-dropdown> </div> app.component.ts Javascript import { Component } from '@angular/core'; import {MenuItem} from 'primeng/api'; import {SelectItem} from 'primeng/api'; import {SelectItemGroup} from 'primeng/api'; interface City { name: string, code: string } @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent { cities: City[]; selectedCity1: City; selectedCity2: City; selectedCity3: string; selectedCountry: string; countries: any[]; groupedCities: SelectItemGroup[]; items: SelectItem[]; item: string; constructor() { this.items = []; for (let i = 0; i < 10000; i++) { this.items.push({label: 'Item ' + i, value: 'Item ' + i}); } this.cities = [ {name: 'India', code: 'NY'}, {name: 'Rome', code: 'RM'}, {name: 'London', code: 'LDN'}, {name: 'Istanbul', code: 'IST'}, {name: 'Paris', code: 'PRS'} ]; this.groupedCities = [ { label: 'India', value: 'IND', items: [ {label: 'Mumbai', value: 'Mumbai'}, {label: 'Varanasi', value: 'Varanasi'}, {label: 'Nashik', value: 'Nashik'}, {label: 'Delhi', value: 'Delhi'} ] }, { label: 'USA', value: 'us', items: [ {label: 'Chicago', value: 'Chicago'}, {label: 'Los Angeles', value: 'Los Angeles'}, {label: 'New York', value: 'New York'}, {label: 'San Francisco', value: 'San Francisco'} ] }, { label: 'Japan', value: 'jp', items: [ {label: 'Kyoto', value: 'Kyoto'}, {label: 'Osaka', value: 'Osaka'}, {label: 'Tokyo', value: 'Tokyo'}, {label: 'Yokohama', value: 'Yokohama'} ] } ]; this.countries = [ {name: 'Australia', code: 'AU'}, {name: 'Brazil', code: 'BR'}, {name: 'China', code: 'CN'}, {name: 'Egypt', code: 'EG'}, {name: 'France', code: 'FR'}, {name: 'Germany', code: 'DE'}, {name: 'India', code: 'IN'}, {name: 'Japan', code: 'JP'}, {name: 'Spain', code: 'ES'}, {name: 'United States', code: 'US'} ]; } } app.module.ts Code block app.component.scss :host ::ng-deep .p-dropdown { width: 14rem; } Output: Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component
https://www.geeksforgeeks.org/angular-primeng-form-dropdown-advanced-with-templating-filtering-and-clear-icon-component?ref=asr10
Languages
Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0365260318, -0.0062616053, -0.0222476739, 0.0207613334, 0.0462030582, 0.0076846974, -0.0139067732, 0.0101592969, -0.00092649227, -0.0142072029, -0.000366643886, -0.035324309, -0.014120237, -0.052464664, 0.00568050938, -0.0154484557, -0.0528441556, 0.0144839156, -0.0185634457, -0.0221211761, -0.0364944078, 0.0156935435, -0.0494919829, 0.00765307341, 0.00609557796, 0.0568920635, 0.0210459512, 0.00970074441, -0.00497291656, 0.0488278717, 0.0292524491, -0.00779933576, 0.0247301795, -0.00378305325, -0.0727358237, 0.00586234918, -0.00465272088, 0.0209036432, -0.0188164413, 0.00357156596, -0.0139621152, -0.0175356586, -0.0117800403, 0.0244455617, -0.0149108432, -0.0268331934, 0.021267321, -0.0466457978, -0.0163971838, 0.0227852874, 0.00956634153, 0.0155117046, 0.0387713537, 0.0331738591, 0.0017917126, 0.0148080643, -0.0132584749, 0.0134719387, -0.00404790649, 0.0282720979, 0.0333319791, -0.0408901796, 0.00185199629, -0.0299798083, 0.0182472039, 0.0335849747, -0.00648692856, 0.0116061075, 0.00410720194, 0.00522195781, -0.00454994198, 0.0258212164, 0.00664505, -0.00519033335, -0.021125013, -0.0112977708, 0.0183420759, -0.0146499434, -0.0122702168, 0.0299956203, -0.00224334677, 0.0131952269, 0.0100011751, 0.00915522594, 0.021188261, 0.0263904538, 0.00811953098, -0.0471201614, 0.0173617247, 0.00858598948, 0.00221369881, -0.00509546045, 0.030248614, -0.0367790274, -0.026327204, 0.0419970304, 0.0198758543, -0.00564097939, -0.0406371877, 0.00823021587, -0.0264853258, 0.0255524106, -0.031323839, -0.00456970697, -0.00430485373, -0.00387002015, 0.0274498668, -0.0209352672, 0.0101513909, -0.0207455214, -0.0109024672, -0.0214412548, 0.0166818034, 0.0266434476, -0.0444004759, 0.0157488864, -0.0133138178, -0.0538245067, 0.0250464212, 0.00547495158, -0.00912360195, -0.0113135828, -0.00344111584, 0.0375063829, -0.049333863, 0.0464560539, -0.00857017748, -0.0218049344, 0.0274340548, -0.0107917823, -2.00585582e-05, -0.00820649788, -0.0156935435, 0.0103885727, 0.025283603, 0.0408269316, 0.0124678686, 0.00462504942, -0.0451594591, -0.000331807765, -0.0186108835, -0.0321460702, 0.00441553863, -0.0140095521, -0.00937659573, 0.0234493967, -0.0112582399, 0.089749679, 0.00387990265, 0.00212673214, -0.0484483801, -0.0518954284, 0.0346918255, 0.00100950594, 0.0392140932, -0.0246985555, -0.00488594966, -0.00302604726, -0.00406371849, -0.0134640327, -0.00136774965, 0.0166343655, 0.00416254438, -0.0195121747, -0.00887851417, 0.00499663455, 0.00481084222, -0.016207438, -0.0477842726, 0.0459500626, 0.0290310793, 0.0165553056, -0.00830137078, 0.000671521586, -0.0393722169, 0.00214056787, 0.0025180825, 0.00126991211, 0.00455784798, 0.0219788682, -0.0384551138, -0.0152270859, -0.00503616501, 0.0037356168, 0.0279558543, -0.00431671273, 0.0254259128, -0.0258212164, -0.0343755819, -0.0079455981, -0.027260121, 0.0210617632, 0.0112266159, 0.0411431752, 0.00982724223, -0.00936869, -0.0801991522, 0.0105704125, -0.0232280269, 0.0116772614, -0.00201407075, -0.0427876376, -0.0252994169, 0.0386448577, 0.0409218073, 0.0306439176, -0.0167134274, -0.00792188, 0.0137644634, -0.000174057015, 0.012064659, -0.0104281027, 0.00479898276, 0.0234968327, -0.0142862638, 0.00889432617, -0.0229592193, -0.0223741718, -0.013551, -3.12691154e-05, -0.0206822734, 0.0446218438, 0.00958215352, 0.00715894392, -0.0754555091, -0.0246827435, -0.00546704559, -0.00213661464, 0.0119223502, 0.00474759378, 0.0138830543, -0.00335612567, -0.0184369497, -0.0121358139, 0.0393722169, 0.00535240769, -0.00617859187, -0.0054314686, -0.0168083, 0.0690041557, 0.0282562859, -0.0193856768, -0.0304541718, -0.0481953882, 0.0265960116, 0.00170968706, 0.0219472442, 0.0268331934, 0.00764912041, 0.0470885374, -0.0167608634, 0.00800094, -0.0127999233, -0.00798117556, 0.00853855256, 0.00291140936, 0.00283432519, 0.00020926373, -0.000273994665, 0.0108787492, 0.0177254025, -0.00472387532, 0.0026109789, 0.0686879158, 0.00196959917, -0.0548364855, 0.02613746, -0.0278609823, -0.031197343, 0.0135351876, 0.0601809844, -0.00138652662, 0.0215993766, 0.0369687714, -0.0026327204, -0.00508755445, -0.0324148759, -0.035419181, 0.0366525277, 0.0149266552, 0.0228485353, 0.00126497075, 0.0126497084, 0.00188955013, -0.00161382603, -0.052496288, 0.000218899251, 0.0271652471, -0.0321776941, 0.0451594591, -0.0155037986, -0.0157567933, -0.0415226668, 0.021188261, 0.0375380069, 0.0464560539, 0.00750285806, 0.0159228202, 0.0130054811, 0.0052417228, -0.0274973027, -0.0290468913, -0.00658575445, 0.0122939348, -0.0427876376, 0.0448115915, 0.0256314706, -0.00241135061, -0.025172919, -0.0430090055, 0.00143989257, 0.000107102511, -0.0276870485, -0.0107048154, -0.0316875204, 0.0223583598, 0.00817487389, 0.0229592193, -0.0188955013, -0.00424555829, -0.0105150696, 0.0113926437, -0.0462979302, 0.0308811, 0.0487962477, -0.00956634153, -0.0338063464, -0.0394670889, 0.024208378, -0.0190694351, -0.0327943675, -0.0340277143, -0.000201728253, 0.017171979, 0.0126180835, -0.00602442352, 0.031181531, -0.0585997738, -0.00779142976, 0.0182788279, -0.0409534313, -0.00701268204, 0.0178993363, -0.0188006293, 0.0279084183, -0.0426295176, 0.00806023553, -0.00117998058, 0.0415226668, 0.0127050504, 0.00155848358, -0.00161975564, 0.0604023561, -0.0333003551, 0.047309909, -0.0155591406, 0.00564097939, -0.0207613334, -0.0333003551, 0.00572794583, 0.011092213, -0.0066490029, -0.0179942101, 0.0386764817, 0.0258370284, -0.030264426, -0.0040202355, 0.016207438, -0.0126497084, 0.00204371847, -0.0355140567, -0.020113036, -0.0164762456, 0.0188322533, -0.052401416, -0.0258844644, 0.00579910073, -0.00338577339, -0.0078507252, -0.00619440386, -0.0393089689, 0.070711866, -0.00173538178, 0.0295370687, 0.0280823521, 0.00785467774, 0.0207771454, 0.00967702642, -0.0289994553, -0.00913150795, 0.0132110389, 0.0397517085, 0.00420998083, -0.0159939751, -0.00727753527, -0.0281297881, -0.00176206476, 0.0237498265, 0.0563860722, -0.0274973027, 0.0247143675, 0.0279242303, 0.0106810974, -0.0198442303, 0.00126101775, -0.0202869698, -0.00210499042, -0.00149325852, 0.0207455214, 0.00351227052, 0.013116166, -0.00583467772, -0.0498398505, 0.0114242677, 0.0249199253, 0.0250780471, 0.0128394533, 0.0481321402, -0.0139225852, -0.0269596893, 0.0407004356, -0.0288255215, -0.0219630562, 0.00467643887, -0.00625369931, 0.0129817631, -0.0376012586, 0.0539193787, 0.0176305305, 0.00847530458, 0.00279479497, -0.00651855255, -0.000399256416, -0.0405106917, -0.0109340912, -0.0169506092, -0.00367039186, 0.0257737804, 0.00800094, -0.00190239749, -0.0143495128, 0.00622602832, 0.0308811, -0.0396568328, -0.0566390678, -0.0194489267, -0.0518954284, -0.00651064655, -0.0213621948, 0.021267321, -0.0166818034, -0.00668853335, -0.0469936654, -0.0148159703, 0.00728148827, -0.0218365584, 0.00753448252, 0.00953471754, 0.00740403216, -0.00670829834, -0.0227378495, 0.0459184386, -0.0115982015, -0.00321579305, 0.00825393479, -0.00149128202, -0.00514685, 0.0124915866, -0.00346285757, 0.0276870485, 0.0118195713, 0.00138553837, 0.0317823924, 0.0369055234, 0.00678340578, 0.0274814907, 0.00849111658, 0.013116166, -0.00968493242, 0.00422579329, 0.047341533, -0.0153061468, 0.0445902199, -0.0189271253, 0.00294105709, -0.0170138571, 0.0311499052, -0.0027177108, -0.0198442303, 0.0179625861, 0.0432936251, -0.00732892472, -0.0525911599, 0.0153693948, -0.0104597276, -0.0316558927, -0.027181061, -0.0335217267, -0.0139225852, 0.00484641921, 0.0109894341, 0.0210143272, -0.0406055637, 0.0327627435, 0.0293631349, -0.00651064655, -0.0174882207, -0.012033035, -0.0267699454, -0.0266592596, -0.0152270859, -0.00260504917, 0.000239035013, 0.00209906092, 0.0035182, -0.0167766754, 0.00360912, 0.0546151139, -0.0181681439, -0.0204134658, 0.0265960116, -0.000189251485, -0.0283195339, -0.00752262305, -0.0187057555, 0.0286041517, 0.0213621948, -0.0289520193, 0.0220895521, -0.00556982448, -0.016207438, 0.0105546005, 0.025283603, 0.0177886523, 0.00923428684, -0.0184527617, -0.0064513511, -0.0133928787, -0.0151638379, 0.015076871, -0.0512945652, 0.0219156183, -0.0240502581, -0.00972446334, -0.00987467822, 0.0145313526, -0.00468434487, -0.0176937785, 0.0132110389, 0.031197343, 0.0153061468, 0.0238921363, -0.00711546093, 0.00180950121, -0.026184896, -4.60543879e-06, -0.050472334, -0.0249199253, -0.00760168396, -0.0123255588, 0.00513103791, -0.0245878696, 0.0435782447, 0.00145175168, 0.0031802156, -0.00320591033, 0.0143890427, 0.000465963851, 0.00856227148, -0.00396686932, 0.0121595319, -0.00630508875, -0.0133138178, 0.00380479498, 0.0199549142, 0.0186425075, 0.0495552309, -0.00570818083, 0.000606790709, 0.0104597276, 0.00519823935, 0.00612720242, -0.00517452136, -0.0165869296, 0.00958215352, 0.0014112331, 0.0468039215, 0.00691780914, -0.0347234495, -0.0109103732, 0.0193224289, 0.0176937785, 0.00576352328, -0.00497291656, -0.00478712376, 0.0079693161, 0.0104992576, 0.0168557353, 0.00483060721, 0.0144206667, 0.0101751089, 0.00846739858, 0.00202988274, 0.0296635646, -0.00701663503, -0.0128710782, -0.0305490457, -0.0165711176, 0.037253391, 0.0025220355, -0.0476577766, -0.00779538276, 0.038044, -0.0125153046, 0.0191010591, -0.00945565663, -0.0038304897, 0.00860180147, -0.0149029372, -0.0245404337, 0.0188322533, 0.00523777, 0.0500612184, 0.0182788279, 0.00925800484, -0.0165236816, 0.00392338587, -0.0346285775, -0.0111870859, -0.00671225134, -0.00594931561, -0.0290310793, -0.0158911962, -0.0104913516, 0.0166976154, 0.0144918216, 0.00160097866, 0.0241293181, 0.0107601583, 0.00223939354, 0.0241135061, 0.0199549142, -0.0234652087, 0.0769102275, -0.0170771051, 0.00923428684, -0.0330789872, 0.0176779665, 0.0277977325, -0.0194647387, -0.0351978131, -0.00687432569, 0.0282562859, 0.01314779, 0.00309917843, -0.0496184789, 0.00494524511, 0.00344506884, -0.00424160529, 0.0156223895, -0.00881526526, -0.00466062687, 0.0220421162, -0.00541960914, 0.00803651754, 0.00969283842, 0.0264537018, 0.00916313194, 0.0204609036, 0.0179309603, 0.0162865, -0.0169506092, -0.0193382408, 0.00978771131, -0.0161837209, -0.0446850918, -0.00827765279, 0.0217100605, -0.00207534269, 0.00820649788, -0.0247618034, 0.0328259915, 0.0335849747, 0.0171877909, 0.000592955039, -0.000470411, -0.0320828222, -0.00210103742, -0.014159767, 0.0197019204, 0.0142625459, -0.0257105324, 0.0346602, -0.0338063464, 0.0127050504, -0.0341858342, -0.0160097871, -0.0363679118, -0.0018618789, -0.0174407847, -0.0159702562, -0.0279242303, -0.0339328423, 0.0322725661, -0.00188362063, 0.00861761346, -0.0122227808, 0.0259635262, -0.0254575368, -0.0017413114, 0.0323041901, 0.0125232106, -0.00248448178, 0.0483851321, -0.0162706878, 0.0316717066, -0.00312289665, 0.000659168407, -0.0429773815, -0.0133770667, 0.00747123361, 0.0166818034, 0.0193066169, 0.0197967924, -0.0337114707, 0.0153219588, 0.00678340578, -0.0277977325, -0.021140825, -0.00301418826, -0.0184369497, 0.0203502178, 0.00502825901, -0.00577538228, -0.0250306092, -0.0104676336, 0.0128473593, 0.00577538228, 0.0112503339, -0.0170454811, 0.0155433286, -0.0243032519, 0.0118037593, 0.0015318006, 0.0164604317, 0.0155591406, 0.00607976597, -0.000642862113, 0.00881526526, 0.003277065, -0.00659366045, -0.0150531521, 0.0418072864, -0.025141295, -0.0125706475, -0.016080942, -0.032320004, 0.0220737401, 0.00059097854, 0.0397517085, -0.00992211513, -0.00313080265, -0.0224690437, 0.0136221545, -0.00140135048, 0.000592955039, -0.0188164413, 0.0054314686, 0.00162272039, 0.00453808298, 0.0470569134, 0.0269596893, 0.0332687311, 0.00480293622, -0.00180258334, -0.0143574188, -0.00856227148, -0.00536426669, -0.00372573431, -0.0194331147, -0.0172668509, 0.0115823885, -0.0207297094, -0.0272917449, 0.0163971838, -0.00726962928, 0.00789816119, 0.0225164797, 0.0416175388, 0.0342807099, -0.00195774, 0.0113293948, 0.00996955112, 0.0176147185, 0.0223741718, -0.0341225863, 0.0175198447, -0.0124915866, 0.0172194149, -0.0379807502, -0.0153456768, -0.0143178878, 0.0169189852, 0.0298374984, 0.0117009804, -0.00753843552, -0.0152508039, 0.0237656385, -0.00893385615, 0.00143396296, 0.0253468528, 0.00154563622, -0.00672015734, 0.0313080288, 0.0289203953, -0.0192908049, 0.0259635262, 0.0263588298, -0.0379491225, -0.00146064593, 0.0235600807, -0.00698896358, 0.0305806696, 0.011131743, -0.0362097882, 0.019180119, -0.0169664212, 0.00468434487, 0.011092213, -0.0160097871, -0.00315254438, -0.0536031388, -0.0309917852, 0.0139621152, 0.00771632185, 0.00308534293, 0.0156935435, 0.0203185938, 0.0437679887, 0.00573980482, -0.0153298648, 0.0338379703, -0.00388978515, -0.0281456, 0.00602047052, 0.0149503741, -0.000326619425, -0.00398465805, 0.0351345651, 0.0167766754, 0.0245088097, 0.0243506879, -0.0208403934, 0.035261061, -0.0195596106, 0.0236075185, -0.00744356262, 0.0257421564, 0.0132268509, 0.00775189931, -0.00716685038, -0.00239949138, -0.00849111658, 0.00909988396, 0.0138277123, 0.0287622735, -0.0300588682, -0.0349448174, -0.0179151483, -0.00430485373, -0.00679131178, -0.00598489307, -0.00575166428, 0.0381704941, -0.00462504942, -0.019195931, -0.0256472826, -0.0277028605, 0.00109103729, 0.00594931561, -0.0019646578, -0.0219788682, -0.0249041133, 0.00681503024, 0.00632485421, 0.00368422735, -0.0117879463, -0.010103954, 0.00684270123, -0.0155512346, -0.00902082305, -0.0304699838, 0.00107621343, -0.0408585556, 0.0142704519, 0.0335217267, 0.00725777, -0.0185318217, -0.016160002, 0.0124836806, 0.0160730351, 0.0258528404, 0.00402221177, 0.00915522594, 0.010119766, -0.0224690437, 0.0191168711, 0.014167673, -0.00897338707, -0.00389571488, -0.0151638379, 0.00954262353, 0.0184527617, 0.000690298504, 0.0138593363, -0.0101434849, -0.0561330803, 0.0393405929, -0.000422727549, -0.0332687311, -0.00068881613, 0.01606513, -0.0231805891, 0.0318614505, -0.0111870859, 0.00616277941, -0.0175989065, 0.0235600807, -0.0195121747, 0.0107285334, -0.00352412951, 0.0393722169, 0.0108313123, 0.00993792713, -0.0181839559, -0.0105150696, 0.0134798447, 0.0199391022, -0.0534766391, -0.00906825904, 0.031387087, -0.00255761296, -0.0265643876, -0.0268331934, -0.0126180835, -0.0398149565, -0.00422974629, 0.00499268156, -0.00249436428, 0.0263904538, 0.00387990265, -0.0209036432, 0.0103332298, -0.0240660701, 0.00811162498, -0.0244771857, -0.0307704154, 0.0143178878, 0.0285409037, 0.0135747176, -0.0163655598, -0.0281930361, 0.00548285805, 0.011139649, 0.0484800078, -0.0030794132, -0.00183420768, -0.000910186034, 0.0276870485, -0.0270229392, 0.00764121441, -0.00104656571, -0.00273549929, -0.00340553862, 0.00588211417, 0.0398782045, 0.0108392183, -0.0245878696, -0.0215203166, -0.00852274057, 0.0180732701, 0.0138672423, 0.00138652662, -0.0079535041, 0.0348499455, -0.0355456807, 0.0144443857, -0.0465193, -0.0108708432, 0.0173775367, -0.00141222135, -0.00204174197, 0.00698105758, 0.00884688925, -0.00370201608, -0.0342174619, 0.0406688116, 0.0193066169, -0.00840415, 0.00675573479, 0.0077637583, -0.012048847, 0.000546506897, 0.0349131934, -0.0230066571, 0.0333003551, 0.0251254831, 0.017108731, -0.00971655734, 0.0163497478, -0.0191326831, -0.00712732, -0.042408146, -0.00233821943, 0.00937659573, -0.0015901078, -0.0131715089, 0.0142072029, -0.00555796549, -0.00273549929, 0.00188559713, 0.0215677526, -0.00545913959, 0.00386804342, 0.0123650897, 0.02613746, 0.00679921824, -0.0152982408, 0.00870458, 0.00354191824, -0.00549867, 0.0172352269, 0.00894176215, 0.0122781228, 0.00249238778, 0.00856227148, -0.0186583195, -0.042186778, 0.00148238766, -0.0197651684, 0.0192275569, -0.024208378, 0.00355180074, 0.0101909209, -0.00855436549, 0.00430880673, -0.00238565588, 0.0297426265, 0.0099142082, -0.0213463828, -0.00558168348, -0.00724195782, 0.0157963224, -0.00354784774, -0.0110447761, 0.0081353439, -0.00799698755, 0.00417440385, -0.00746728061, -0.0166185535, -0.0122306868, -0.0263588298, -0.00838833768, 0.00225915876, -0.0109024672, 0.0325413756, -0.00486618467, -0.0328576155, -0.0019083271, 0.00919475686, 0.0113768307, -0.00929753575, 0.00747123361, -0.011092213, 0.0156223895, -0.00391943287, 0.00472387532, -0.00806418899, -0.000577142928, -0.000116305666, 0.0331738591, -0.00895757414, 0.0326678716, 0.0438944884, -0.0163971838, -0.0291259531, 0.00410720194, -0.00609162496, -0.00370992208, -0.0351029411, -0.00442739762, 0.0220104922, -0.0241609421, 0.0120014101, -0.0103411367, 0.0121358139, -0.0225797296, 0.0950625539, -0.00535240769, -0.00397675205, -0.0360200442, -0.00835671369, -0.0114796096, -0.01314779, 0.0223583598, 0.0190694351, -0.0190694351, 0.0412696712, -0.0127841113, -0.00416649738, 0.00544728059, -0.0194331147, -0.00367829786, -0.0143811367, 0.0200497881, 0.0219314322, -0.0358302966, 0.00789420865, 0.00143692782, 0.0224532317, 0.0140648941, -0.00904454105, -0.0170454811, 0.0106573794, -0.0064553041, -0.0167450514, -0.0184053257, -0.0017393349, 0.0053286897, 0.0452543311, 0.0123413717, 0.00285606692, -0.00603628252, 0.00835671369, 0.00386409042, 0.00165335636, -0.000383197214, 0.00201703538, 0.00641577365, -0.00179072435, -0.00483456, 0.0103174178, 0.00506383646, -0.0149187492, -0.0204134658, -0.0016948632, 0.00728544127, 0.00544332759, -0.0107522514, -0.00482665421, -0.00613510842, -0.0209510792, 0.0437047407, -0.0130371051, -0.00807604752, 0.0195912346, -0.025172919, -0.015155931, -5.12350234e-05, 0.0153614888, -0.0488278717, 0.00786258373, 0.00738426717, 0.00465272088, 0.0156619195, -0.026232332, 0.0256472826, 0.0385183617, 0.00974818133, -0.00418231, 0.00105644832, -0.00367039186, 0.0127603933, 0.0117958523, 0.0146815674, 0.0185634457, -0.0149029372, -0.0196544845, 0.00351227052, -0.0381072462, 0.00681503024, -0.00566074438, -0.0064592571, -0.00845949259, -0.0327943675, -0.0182788279, -0.0273233689, 0.0138356183, -0.0271494351, -0.0244139358, -0.00124817039, -0.00782700721, -0.00188559713, 0.0248883013, 0.0247301795, 0.0125785535, -0.00817487389, 0.0293473229, 0.0300114322, -0.017108731, 0.0128789842, -0.00211684965, -0.00283234869, 0.0518005528, 0.0155749526, 0.000646321045, 0.0210143272, 0.0458235666, 0.00234810216, -0.020081412, -0.00979561731, 0.00668062689, 0.00838043168, 0.0270703752, 0.015132213, 0.0228801593, -0.00316638, -0.0177412163, 0.0158991013, 0.0190852471, 0.0102699818, 0.015132213, -0.00089387974, -0.00614301441, 0.0014151861, -0.0077716643, 0.0172510389, -0.0192433689, 0.0173933487, 0.0103569487, -7.01663521e-05, -0.0134956576, 0.0099142082, -0.0130212931, 0.0186741315, -0.00207336619, 0.0152112739, -0.0215835646, 0.00958215352, -0.0119302562, 0.00678340578, -0.00974818133, -0.00110882602, -0.0323358178, 0.00623788731, 0.0230699051, -0.00436019618, -0.0233861469, -0.0166343655, 0.00157034269, 0.000691286754, 0.0146578494, -0.00765307341, 0.0109182792, -0.00502825901, 0.00904454105, -0.000715993228, 0.00237182016, 0.0268806294, 0.00527334725, 0.00681898324, 0.00611534342, 0.0224057958, 0.011131743, -0.0396252088, -0.0197335444, 0.00314661488, 0.00348855229, -0.0154721737, 0.00612324942, -0.00678735878, 0.0275447387, -0.00632090075, 0.0125469295, -0.0134640327, 0.0105862245, -0.00148041116, -0.0306597296, -0.00545518659, -0.0147606283, 0.0132031329, 0.00353203574, -0.00553820049, 0.00765702641, -0.0064513511, 0.00900501106, 0.00615882641, -0.00683874823, -0.0149266552, 0.0249199253, 0.0164288078, 0.0240660701, 0.0179783981, -0.0138593363, -0.0126655204, -0.00391548, 0.0246985555, 0.00616673287, -0.0146815674, 0.0052417228, 0.00734473672, 0.00280467747, -0.00465667387, -0.00687432569, -0.00294105709, 0.008040471, -0.0244297478, -0.0178360883, -0.00833299477, 0.0135826236, -0.0279084183, -0.00240937411, 0.0146736614, 0.0163339358, -0.0151638379, 0.00677945279, -0.0366209038, -0.000241752714, -0.00525753479, -0.0115033286, -0.00215242687, -0.00508360146, -0.00863342546, 0.00387397315, 0.000569236872, 0.00449459953, 0.00424160529, -0.0129185142, 0.0249989852, 0.0451594591, -0.0114400797, 0.0187848173, 0.0143099818, 0.000157256625, -0.0195121747, -0.0160018802, -0.00235600816, 0.00615092041, 0.00442739762, -0.0137328394, 0.00925009884, -0.00583072472, -0.000136873787, 0.000266829767, -0.011147555, -0.0146420375, 0.0303909238, 0.00243902183, -0.0100011751, -0.00221962854, -0.010096048, 0.0119855981, -0.0185318217, 0.0157014504, 0.00313475588, -0.0129659511, -0.0158200413, 0.00700477604, 0.0049571041, -0.0102778878, 0.000945763313, -0.0389294773, -0.0161837209, -0.0356721766, -0.00714313192, -0.00994583312, 0.0018658319, -0.0236865785, 0.00962959, -0.0157884173, -0.00149819977, 0.0236707665, 0.00374352303, 0.00755029451, -0.0154563617, 0.00779933576, -0.0114005497, -0.0182313919, 0.0402576961, 0.00344111584, 0.0347234495, -0.0306913536, 0.0165236816, -0.00257935445, 0.00841205567, 0.0449697115, -0.010119766, 0.0139463032, 0.0162706878, -0.00149721152, 0.0189113133, 0.035324309, 0.0318772644, 0.00572399283, 0.000406421284, -0.0152903348, -0.0187848173, 0.0216468126, -0.00978771131, -0.00407162495, 0.00696919858, -0.0115033286, 0.0287306495, 0.00526544079, 0.0142309219, 0.0197177324, -0.0179942101, -0.00716685038, -0.00981143, 0.0119381621, -0.0271178111, -0.0138751483, -0.0270387512, 0.0327311195, -0.0224216077, -0.000650274043, -0.00471992232, -0.00434833718, 0.00509546045, -0.0386764817, 0.0184211377, -0.00732892472, -0.00320195733, -0.0189745612, -0.00549471704, -0.0339328423, 0.00130944245, 0.0193382408, -0.000722416909, -0.0407004356, 0.014175579, -0.00511127245, -0.0038344427, -0.0229434073, 0.00682688924, -0.00346088107, -0.0175198447, -0.0138593363, 0.0184527617, -0.0217258744, 0.00391548, 0.00894966815, 0.00926591083, -0.00971655734, 0.00570818083, -0.0156382024, -0.0124757746, -0.00119282794, -0.0183895137, -0.0195279866, 0.00935287774, 0.0142230159, 0.0174249727, 0.0231964029, 0.0102857938, 0.00714708492, 0.0132584749, 0.0136616845, 0.0197177324, 0.00853855256, -0.00787049066, 0.0108155, -0.00798117556, -0.00880735926, -0.00933706574, 0.0225164797, 0.0264537018, -0.0238447, -0.0104201967, 0.00791792665, 0.00188856188, 0.00508755445, 0.0147685343, -0.00538007915, -0.00409929594, -0.00377317076, -0.000137367926, -0.0180732701, -0.00468039187, -0.000287089089, -0.00133810192, -0.00889432617, -0.00336205517, -0.0076807444, 0.0228643473, -0.00738031417, -0.00568841537, 0.0347550735, 0.0109261852, 0.0122623108, 0.00219986332, -0.0169664212, -0.00165829761, -0.0156302955, -0.0066529559, -0.0116851674, -0.00634857221, 0.0381072462, 0.0150452461, 0.00873620436, 0.0053484547, 0.0181048941, -0.0112661459, -0.00530497124, -0.0102304518, 0.0124046197, -0.0203027818, -0.009511, -0.0168083, -0.0247618034, -0.0315452106, 0.0132980058, 0.0274024308, -0.00499663455, 0.0307229776, 0.0150136221, 0.0511680692, 0.0108629372, 0.00437205518, 8.19636844e-05, 0.00454598898, 0.00949518755, -0.0154642677, 0.0166027416, -0.00792188, -0.0121516259, 0.0113610188, -0.00685456069, 0.0128789842, 0.00329485373, 0.000709075422, -0.0324148759, -0.0159623511, 0.00547099859, 0.00344111584, 0.00871248636, -0.00176404137, 0.00402221177, 0.0139779272, -0.00358144869, 0.00341542112, 0.0161837209, -0.00399651704, 0.00692966813, 0.0118353833, 0.00236391416, 0.00522195781, -0.00139344437, 0.00551448204, -0.0156382024, 0.0127287684, -0.00878364127, -0.0081511559, -0.00246669305, -0.0379175, -0.00708383648, -0.00905244704, -0.0106178485, -0.0250464212, -0.009511, -0.00707197748, 0.00497291656, 0.0101434849, -0.000369855727, 0.00218009809, 0.0194805507, 0.00758191897, 0.000983811333, -0.0236391425, -0.00672806334, 0.000787147845, 0.00239553838, 0.0135747176, -0.015132213, 0.000232734863, 0.000312783784, -0.00707988348, -0.00134304317, -0.00500849355, 0.0300904922, 0.0180574581, 0.0270387512, 0.0327943675, 0.00879945327, 0.00437600818, 0.0126101775, 0.0144997276, 0.0180890821, -0.00963749643, 0.00232833694, 0.0077598053, -0.00564888539, -0.0150531521, 0.00165632111, 0.0183578879, -0.00361702591, -0.0188006293, -0.00300035253, 0.00879945327, -0.000437057286, -0.00148139941, 0.0167134274, 0.0204925276, -0.00749099907, 0.00296872831, -0.00607186, 0.00120172231, 0.0195596106, -0.0342490859, -0.0103806667, 0.0253468528, 0.00974818133, -0.0082381228, -0.00456970697, -0.00094872812, 0.00829346478, -0.00151302363, 0.0158832893, 0.000249411736, 0.0144364797, -0.031260591, 0.00014885643, -0.000100740595, -0.00488594966, 0.00361307291, -0.00706802448, -0.00477526477, -0.00243506883, 0.00362295541, -0.00286792591, -0.00549076404, -0.0199232902, -0.00437996117, 0.00297465781, -0.00839624368, 0.00171858142, 0.0160097871, 0.0031802156, 0.0223899838, -0.0254101, 0.000188880891, -0.00972446334, -0.00322369905, 0.00910779, -0.00902082305, 0.00171759317, -0.021125013, -0.0138909603, -0.00937659573, -0.0239079483, -0.00310708443, 2.78874177e-05, 0.00033230189, -0.011100119, -0.00909988396, -0.0174565967, 0.0114558917, -0.00126892386, -0.0214254428, 0.0298691224, -0.0124046197, 0.00320986332, -0.00404593, 0.00609953096, 0.00411510793, 0.00105546, 0.0109024672, -0.0151875559, 0.0191168711, 0.00235798466, 0.015148025, 0.0197809804, 0.020097224, 0.00202592975, 0.0156382024, -0.00872829836, -0.0279716663, -0.0143574188, -0.0203185938, 0.0116140135, -0.00154168322, 0.0181207061, 0.0216151886, 0.0154642677, 0.0384234898, -0.0209985152, 0.00388978515, 0.00634461921, 0.0078665372, -0.00713127293, -0.0249673612, -0.0142467339, 0.00332450145, -0.0220263042, 0.00424555829, -0.0144364797, -0.00346878706, -0.0109340912, -0.00968493242, 0.0026248144, -0.00709174247, -0.00672411034, -0.0261216462, 0.0131873209, 0.017124543, -0.0509783216, 0.00173439353, 0.00600465806, -0.0317982025, -0.000211981431, -0.0209036432, 0.0499663465, 0.000381220685, -0.00617463887, -0.0139225852, 0.00438391464, 0.020176284, 0.00739612617, 0.0185792595, -0.0182630159, -0.00458551897, -0.000913150783, -0.0076846974, 0.0127129564, -0.0124520566, -0.0135984365, 0.00510336645, 0.0200656, 0.00111179077, -0.00244692783, 0.0116456375, -0.0148713132, 0.00010389067, -0.010080236, -0.00575957028, -9.75287548e-05, 0.0137249334, -0.00832508877, 0.0129580451, -0.00404593, -0.0178677123, 0.00684665469, -0.0244929977, -0.0163971838, 0.0208878312, 0.00599279907, -0.0195754226, 0.00428904174, 0.0154010197, 0.0133612538, 0.00110684941, -0.00246076356, -0.0257263444, -0.0119302562, 0.00551448204, -0.00366248586, 0.0177570283, 0.0146341305, -0.0115823885, 0.00453017652, 0.00583863072, 0.0147685343, -0.0246511176, 0.00925800484, 0.00437996117, -0.0136063425, 0.0165078696, 0.0114242677, -0.00667272089, 0.00101148256, 0.00684270123, -0.0054354216, 0.00854645856, 0.00582281873, 0.0155275166, -0.0225322917, 0.00502825901, 0.00179566559, 0.0213621948, -0.00762144895, 0.00969283842, 0.013163602, -0.00154563622, 0.025204543, -0.00552238803, 0.0243823119, 0.00925800484, -0.00106731907, -0.00453808298, -0.020081412, -0.00987467822, 0.0258054044, -0.00762935495, -0.0136379665, 0.0164129958, 0.00319998083, 0.00420207484, 0.0143653248, 0.00864133146, -0.026248144, 0.00277107675, 0.0103095118, 0.0122860288, -0.00779142976, 0.00561726093, -0.00439577363, 0.00324939378, -0.0115586706, -0.00692176213, 0.00269003958, 0.00540775, -0.00853064656, -0.0132189449, -0.000734770147, 0.00660156645, -0.0228011, -0.00882317126, 0.00907616597, -0.00241728, 0.00488990266, -0.00800489355, -0.00330671272, 0.00259911967, 0.0161362831, -0.0324148759, -0.00297465781, -0.00269596907, -0.0235917047, 0.0190061871, -0.00456575397, -0.00044693987, -1.09171679e-05, -0.00784677174, 0.000901291671, 0.0166659895, 0.0147685343, 0.00360516668, 0.00957424752, 0.00658575445, 0.000275971164, -0.00217614509, 0.0127524873, -0.00615882641, 0.00282839569, -0.0158911962, -0.0157093555, 0.0292050131, -0.0237498265, -0.0109578092, 0.0295370687, 0.00584258372, 0.0155037986, 0.000253735343, -0.00255958945, 0.000272265199, 0.0152666168, 0.00202592975, 0.0039411746, -0.0179151483, -0.0152903348, -0.0127366744, -0.0125153046, -0.0259793382, -0.00783096, 0.0125073986, -0.00849111658, -0.0143811367, -0.0149187492, -0.0154721737, 0.0148871252, -0.00056577794, -0.00211684965, 0.010103954, -0.00975608733, -0.00517847436, -0.000599872845, 0.0128789842, 0.0185160097, -0.0126418015, -0.00940031465, 0.00664505, 0.000839031418, -0.00470806332, 0.0122306868, 0.0306755416, 0.00421788683, 0.0194014888, -0.0265327618, 0.0183104519, 0.00585049, 0.00104656571, 0.0248724893, 0.0134798447, 0.0189903751, 0.0129027022, -0.0153456768, -0.00387199665, 0.0172668509, -0.0222951099, -0.00549076404, -0.0444637239, -0.0066371439, -0.016207438, 0.00682688924, 0.00207929569, -0.00401035277, -0.000586531358, 0.0193540528, -0.000374549942, -0.0202711578, -0.00133909017, 0.000796536275, -0.0289994553, 0.00292326836, -0.0156382024, 0.000834584236, -0.00856227148, -0.00625369931, -0.0139463032, -0.00917103793, 0.00727358228, 0.0053326427, 0.000776277, -8.92520911e-05, -0.00743565662, -0.00782700721, 0.00553029403, -0.0174724087, -0.00420998083, -0.00961377844, 0.0133454418, -0.0126497084, 0.00142012734, 0.0342174619, 0.013092448, 0.01622325, 0.00134403142, 0.0122939348, 0.0406371877, 0.00912360195, -0.0114479857, -0.00925800484, -0.0154089257, -0.00652250554, -0.0224057958, 0.0184053257, 0.00286990241, -0.00416254438, 0.00370399258, 0.00294501, 0.00627741776, 0.00927381683, 0.00190931535, -0.0145234456, -0.0114242677, -0.015061059, 0.00240146811, 0.00460133143, -0.0183104519, 0.0181523319, 0.0219156183, 0.0135193756, 0.0126971444, -0.0188955013, -0.0121911559, -0.0116851674, 0.00409139, 9.14756747e-05, 0.00106830732, 0.0220895521, 0.0110526821, 0.0299956203, -0.0234019607, -0.0140095521, -0.0110131521, -0.0137407454, -0.0181048941, 0.0260267742, -0.0102225449, -0.00961377844, -0.0122939348, -0.00825393479, -0.00316638, 0.00321974605, 0.00764121441, 0.0191010591, -0.0185950715, 0.0107996883, 0.0282720979, 0.00588211417, -0.00562121393, -0.00830137078, 0.0206348356, 0.00853064656, 0.00751076406, -0.0153931137, 0.000101914149, -0.0222792979, -0.0265802, 0.00324939378, 0.00256156595, 0.00468039187, -0.00925800484, -0.010096048, 0.0175040327, -0.010096048, 0.0173933487, -0.0305648576, 0.0181365181, 0.0277661085, -0.0252994169, -0.0215993766, 5.38600834e-05, 0.00815906189, -0.000906727102, 0.00592559762, -0.00809581298, -0.00357156596, 0.00340356212, 0.00407557795, -0.000693263311, 0.0239711963, 0.0123334657, 0.020207908, 0.00103569485, 0.0114637977, -0.00573585182, 0.00208522542, 0.0163181238, 0.00460528443, 0.0169506092, -0.00162370864, -0.000325384084, -0.00445902208, 0.00496896356, 0.00634066621, -0.0291101411, -0.00885479525, -0.0168715473, 0.0104043847, 0.0143495128, -0.0110526821, 0.00476340577, -0.00207534269, 0.00816696789, 0.00269794557, -0.0126418015, 0.00849111658, -0.00311499066, 0.00758191897, -0.00974027533, -0.000124705868, -0.0206348356, 0.0108629372, 0.0167924874, 0.00460133143, 0.00497686956, -0.00694943313, 0.00224927627, 0.0246194936, 0.0215361286, 0.0311340932, -0.0191010591, 0.00869667437, 0.00898919906, -0.0264062658, -0.0142072029, -0.0100011751, -0.00128572423, 0.00221172231, 0.0111949919, -0.00219591032, -0.0184053257, -0.00461319042, -0.00702454103, 0.0193698648, -0.0063683372, 0.00332845445, -0.00596512808, -0.0217891224, -0.017124543, 0.0208562054, -0.00560540194, 0.0124599626, -0.0102937, -0.00774794631, 0.0138830543, -0.0117167924, 0.0102462638, 0.0205874, -0.0163339358, -0.0220737401, -0.0139463032, 0.0225955416, -0.000163803837, -0.00980352331, 0.0216151886, 0.0218681823, 0.00828555878, -0.00715894392, 0.0137249334, 0.0188322533, -0.000919574464, -0.00960587244, 0.0230540931, 0.0180890821, -0.00459342543, -0.00237775, 0.000199381146, 0.00362295541, -0.0109103732, -0.00634857221, -0.0175040327, 0.00583072472, -0.0194647387, -8.8449131e-05, 0.0183420759, -0.00306755421, -0.010024894, -0.0135035636, 0.0320828222, -0.00936078373, -0.00514685, 0.00177392387, -0.000291042117, -0.00726567628, -0.00143495121, -0.0231173411, -0.00531287724, 0.00443135062, 0.0101276729, -0.00393919833, -0.00124224089, 0.0138751483, 0.00197552866, -0.00177293562, 0.0166185535, 0.00417440385, 0.00971655734, 0.00579119427, -0.00687432569, -0.00122346391, 0.0101592969, 0.00418626284, -0.0154247377, -0.0145629765, 0.0170454811, -0.00511127245, 0.00583467772, -0.0165394936, -0.0209036432, 0.00365062663, 0.0124678686, -0.0154958926, 0.00354982424, 0.0258528404, -0.0323674418, -0.00259121368, -0.00043112773, -0.0231805891, 0.0102699818, -0.00573585182, -0.00884688925, -0.0176937785, -0.020160472, -0.021251509, 0.0191010591, 0.0238605123, 0.00406371849, -0.0129106082, -0.00303988298, -0.0155828595, 0.0105704125, 0.0199074782, -0.0077716643, 0.00421788683, -0.00539193815, 0.0155196106, 0.0125232106, -0.0115823885, -0.0199549142, -0.00760168396, -0.00370992208, 0.0176779665, -0.00486223167, 0.00159702566, -0.0136063425, -0.00246866955, -0.00375538203, -0.0166976154, -0.0192749929, -0.00215045037, 0.00743565662, -0.00671225134, 0.0134007847, 0.0156302955, -0.0144285737, 0.0066410969, -0.00510731945, -0.0178677123, -0.00924219284, 0.0127682993, -0.000477575901, 0.00146459904, -0.00457366, 0.00445506908, 0.0172194149, 0.0112898648, 0.00866505, 0.00430880673, 0.0198442303, -0.010080236, -0.000169980456, 0.0142941698, 0.00259911967, -0.021235697, 0.00202790624, 0.012088377, -0.0231173411, -0.0187690035, -0.00600070506, 0.031165719, 0.00294698658, -0.0127999233, -0.00117108622, -0.00188559713, 0.0377910025, 0.000166398022, -0.00885479525, -0.00256354245, 0.0315293968, -0.00236589066, -0.00682688924, -0.010056518, -0.0130054811, 0.0107127214, 0.00596512808, 0.0255840346, 0.0181365181, 0.00204371847, -0.0270703752, 0.0186583195, -0.00369608658, -0.0122623108, 0.0290785171, 0.00745542161, 0.0101988269, 0.0204292778, 0.00967702642, 0.00486223167, -0.00227694749, -0.0150531521, -0.0297900625, -0.00931334775, 0.00297663431, 0.0197019204, 0.0193698648, -0.00870458, -0.0185950715, 0.00472782832, -0.000414821494, 0.00372573431, 0.00905244704, 0.00766097941, 0.020113036, -0.0101830149, -2.43821887e-05, -0.00947937462, -0.00177392387, 0.0083409017, 0.0381072462, 0.000232487801, 0.00274340552, 0.0174407847, -0.015108495, -0.0191010591, -0.00899710506, 0.00408743694, 0.0103411367, -0.0102304518, -0.000348608155, 0.0113768307, -0.0151717439, -0.00298651704, -0.00359726069, 0.00616673287, -0.0203818418, 0.011084307, -0.00971655734, -0.0193066169, 0.00974027533, -0.00179467734, -0.014104424, -0.0194963627, -0.00521405134, -0.0238130745, -0.00528520625, 0.00634066621, -0.00668458, -0.00789420865, 0.021251509, 0.0178360883, 0.0281930361, -0.0101909209, -0.00906035304, 0.00834880769, -0.00676364079, -0.0108629372, -0.0143337008, -0.00888642, 0.0215045027, 0.00441553863, 0.00256749545, -0.0210143272, -0.00806418899, 0.015061059, 0.00729730027, 0.0134956576, 0.0224374197, -0.000900303421, 0.000277206505, 0.00848321058, 0.0122464988, 0.00711150793, 0.00497686956, 0.00860180147, 0.00449855253, 0.00280270097, 0.00653436501, 0.00110190816, -0.0132189449, 0.00228683, 0.0147922523, 0.00996164512, 0.000138603253, 0.0038304897, -0.0280191042, -0.00335217267, 0.00990630221, 0.00906825904, 0.00585839618, -6.81898309e-05, 0.0184685737, 0.00486223167, -0.000954163552, 0.0149978101, 0.0114400797, -0.0152349919, -0.0122464988, 0.0114875156, 0.00547099859, -0.00697315158, -0.00331659522, 0.014096518, 0.0188322533, -0.00285409042, 0.00378898275, 0.00921056885, 0.00617463887, 0.0336482227, -0.0172668509, -0.00623788731, -0.00721824, -0.0027216638, 0.00659761345, 0.0172352269, 0.0206980854, -0.00113847374, -0.00553029403, -0.000627544126, 0.00841205567, 0.0202553459, 0.00548285805, -0.00547495158, 0.0156065775, 0.00726172281, 0.00119480444, -0.00944775064, 0.000626555877, 0.00268806284, -0.010048612, 0.0237340145, -0.0186266955, 0.00226706476, -0.0182630159, 0.0064592571, 0.0228801593, 0.0129185142, 0.0218998063, 0.0100090811, 0.000505988311, 0.0136854025, 0.0204609036, -0.00797722209, -0.0114637977, 0.00794955064, 0.0136300605, -0.00827765279, -0.0165078696, -0.00400047, 0.0200181622, 0.00983514823, -0.00294105709, 0.00191524485, 0.000764417928, -0.0153219588, 0.00577142928, 0.0101434849, 0.0238288883, 0.0138909603, 0.0157805104, -0.0277661085, -0.00867295638, 0.0134956576, -0.0199865382, 0.0367474034, 0.00832508877, 0.00389373815, 0.00182333682, -0.000811360194, 0.00895757414, 0.00772027485, 0.00104261271, -0.0158753842, -0.0107996883, -0.030280238, 0.0147922523, -0.0287622735, 0.00868876837, -0.000558366, -0.0118828192, -0.000270535762, -0.0051428969, 0.0103332298, -0.0192908049, -0.00120864, -0.0107364394, -0.0169347972, 0.000630508875, 0.0102383578, -0.00427718274, -0.0266750716, -0.00973236933, -0.00276317052, -0.0152824288, 0.0165869296, 0.0077756173, 0.000854843529, -0.0154168317, 0.00629718276, 0.0143653248, -0.00372968731, -0.00229473598, 0.003277065, 0.00928172283, -0.00362888491, -0.0126892384, 0.00302209426, 0.0282562859, 0.00285409042, 0.0167292394, 0.00960587244, -0.0178993363, -0.0102699818, -0.0156382024, 0.00483456, 0.00451041153, 0.00288769114, 0.0127682993, -0.0219314322, 0.00774794631, -0.00685851369, 0.0101513909, -0.00561726093, -0.0109499032, 0.00988258421, -0.00485827867, -0.0127682993, -0.00403011777, -0.0134324087, 0.001644462, -0.000571213372, 0.0151638379, 0.0117484163, 0.000775782857, 0.00718661537, -0.015140119, 0.0299798083, -0.0697631389, -0.00721428683, -0.00349645829, 0.0138672423, -0.00352610601, 0.0242400039, 0.026169084, 0.0140411761, 0.0125706475, 0.0182155799, 0.0216626246, 0.000474117, -0.0145313526, -0.00480293622, -0.014151861, 0.000862749643, 0.0121990619, 0.0080128, -0.00245878706, -0.0075779655, -0.00572399283, 0.0157963224, 0.0159307253, -0.0169664212, -0.000506976561, 0.00849902257, 0.00119776919, -0.00662528444, 0.0181207061, -0.00500849355, -0.00105644832, -0.00474759378, 0.0173775367, -0.0234493967, 0.00731311226, 0.00248250528, -0.0013647849, -0.016239062, -0.0133928787, -0.0241609421, 0.00364074414, 0.0108155, 0.00221765204, -0.0184053257, -0.00357947196, 0.00308534293, -0.00458947197, 0.00711150793, 0.00339170289, 0.0223583598, -0.0173142888, 0.00340751512, -0.00968493242, -0.0235126447, 0.0181207061, 0.00159999041, 0.00255761296, -0.00263667363, 0.0128473593, 0.0180574581, -0.0170454811, -0.0105466945, -0.00686246669, -0.0018114777, 0.0236075185, 0.00916313194, -0.00711941393, -0.0142467339, -0.00845949259, 0.00612720242, -0.0105387876, 0.0134719387, 0.00547890458, 0.00203383598, 0.00555401249, 0.0173933487, -0.00325729977, 0.00260702567, 0.00109202554, 0.0381704941, 0.00143001, 0.0111791799, 0.0115033286, -0.00615487341, 0.0174249727, -0.00700082257, -0.0250938591, -0.00426532328, 0.00780328875, -0.0133138178, 0.00895757414, -9.46257423e-05, -0.0225322917, -0.00139443262, 0.0104992576, -0.00245285756, 0.00700872904, -0.00706802448, 0.00829346478, 0.000806913, 0.0063683372, -0.011084307, 0.00212475564, -0.000924021646, 0.0186108835, -0.025204543, 0.00802861154, -0.0256630946, 0.00374747603, 0.00578328827, 0.0394354649, -0.00185594941, 0.0168399233, -0.00778747629, 0.0174091607, -0.00284025469, 0.0140332701, 0.00502825901, 0.0109340912, 0.0288887713, 0.00581095973, -0.0140095521, -0.00754238851, -0.00909988396, -0.00559749594, 0.00893385615, -0.0156302955, 0.00705221202, -0.00300035253, 0.000354784774, -0.00276514702, -0.00779933576, 0.00783886574, -0.0158437602, -0.00114143849, -0.00851483457, -0.0125232106, 0.0224532317, -0.0309759732, -0.00275131152, 0.00451436453, 0.000670039211, 0.0181523319, -0.0134798447, -0.0125153046, -0.0142704519, 0.00721824, -0.00620626286, 0.0003155015, -0.0146657554, -0.00122346391, -0.00853855256, 0.0163497478, 0.00639996165, -0.017171979, -0.00931334775, -0.0158279464, -0.00418231, -0.0112345219, 0.00738031417, -0.00202296511, -0.00270189857, -0.00608371897, 0.0159623511, -0.00284223119, 0.00741193816, 0.00877573527, 0.0184527617, -0.00224137, -0.00229473598, -0.00235007866, 0.0140016451, -0.0268806294, -0.00677945279, 0.0229908451, -0.0132189449, 0.0118670072, -0.0125706475, 0.0222318619, 0.0124441506, 0.0139779272, 0.0115744825, -0.0163023118, -0.00669248635, -0.0268648174, -0.0138356183, -0.00683479523, 0.0296951905, 0.00793769211, 0.00139937398, 0.00219591032, 0.00458156597, 0.00468829786, -0.0170929171, -0.00271375757, 0.00354389474, -0.00585444318, 0.00819068588, 0.0230699051, 0.00997745711, 0.0109024672, -0.000482270116, 0.0190536231, -0.00957424752, -0.0169031732, -0.0194963627, -0.0234019607, 0.00707988348, -0.0285567157, 0.0032869475, 0.00305174198, 0.0064513511, 0.0011572506, 0.0082381228, 0.0225322917, 0.00800094, -0.00917894393, 0.0208087694, 0.0104992576, 0.0198600423, 0.0123413717, 0.00235798466, 0.00862551946, 0.00265050912, 0.000145397527, -0.0292366371, -0.0144364797, 0.0162548739, 0.00320393383, -0.0038245602, -0.0153298648, 0.0154563617, 0.0251096711, -0.0117721343, 0.00319800433, 0.0241135061, 0.0077637583, 0.0127603933, 0.0207613334, 0.00887851417, 0.0349131934, -0.00341739762, 0.02014466, -0.00398268132, 0.00203383598, 0.0112661459, 0.00176107651, -0.0145471646, -0.0150136221, -0.0156382024, 0.0134007847, -0.00935287774, -0.0200339742, 0.00971655734, 0.0163023118, -0.000578625302, -0.011147555, 0.00613510842, -0.00538007915, 0.0127287684, -0.00134897279, -0.00222753454, 0.00959796552, -0.00880735926, -0.00870458, -0.00388780865, 0.00268806284, -0.014096518, 0.0167608634, -0.00724591082, 0.00880735926, -0.0119065372, -0.00662923744, -0.0230857171, 0.00673596933, 0.00760168396, 0.00239356188, 0.0242558159, -0.0284144059, 0.0041269674, 0.0134403147, -0.0232754629, 0.00322962855, -0.00342728035, 0.0158753842, -0.00631694775, -0.00668458, 0.000178133589, -0.00353796524, -0.0156698264, -0.00750285806, -0.00963749643, 0.00416649738, -0.0112977708, -0.0250622332, -0.00458156597, 0.0118116653, 0.0010347066, -0.0256156586, 0.000460034295, 0.021283133, -0.0189745612, -0.0107838763, 0.00370201608, -0.00921056885, -0.0232122149, -0.0133138178, -0.00896548, -0.00123631128, -0.0142546399, -0.00246274, -0.00363283814, -0.0274024308, -0.0147843463, -0.0179151483, -0.0200023502, -0.00348855229, -0.00938450173, 0.00503616501, -0.00296279881, -0.0101909209, 0.000319701619, 0.00486618467, -0.014128143, 0.0110605881, 0.00420207484, 0.0207613334, -0.0141834849, 0.00210499042, -0.00680712424, -0.00741984416, -0.0177095905, 0.00763726141, -0.00580700673, -0.021156637, -0.0103411367, -0.0175830945, -0.0137407454, -0.00457761297, -0.0458235666, -0.00800489355, 0.0157330744, 0.0115744825, 0.00773608685, 0.00891013816, -0.0220104922, -0.0064553041, 0.000759476621, 0.00925800484, -0.0178677123, 0.0109499032, -0.00397082232, 0.00871248636, 0.0103569487, 0.00126793562, -0.00734473672, 0.0145550705, -0.0226429775, 0.00887060817, 0.00398268132, -0.0145234456, -0.00464481488, -0.0139146792, -0.00454994198, -0.0347550735, -0.00126497075, 0.00875201635, 0.0112898648, -0.0143890427, -0.0196861085, -3.47434616e-05, 0.00472387532, 0.00275921752, 0.0831718296, 0.00447483407, -0.0018618789, -0.0495552309, -0.00807209499, -0.0257895924, -0.0199074782, 0.0486381277, -0.00517847436, -0.00707197748, 0.0142072029, 0.00889432617, -0.015100589, 0.0240186322, -0.00902082305, -0.0109499032, -0.000829148805, -0.0182313919, -0.0258370284, 0.00692966813, -0.00507964846, -0.0179151483, 0.0200181622, -0.0204292778, 0.0105704125, 0.00259516668, -0.006546224, -0.000445210433, -0.0254733488, -0.00347076356, 0.0127050504, 0.0124046197, 0.00133118418, -0.00531683024, -0.010096048, -0.0107048154, -0.000625567569, -0.0110131521, 0.0110684941, -0.0188638773, 0.0239711963, 0.0116140135, 0.00286397291, -0.00241135061, 0.00451041153, 0.0142941698, -0.0101751089, -0.00832508877, 0.009511, -0.0311182812, -0.00492943311, -0.0190536231, -0.00514685, -0.00565283839, -0.00925009884, -0.000273253449, 0.0276079886, -0.00727358228, 0.00154168322, 0.00409929594, 0.000117293923, 0.01314779, -0.0102778878, 0.00754238851, -0.00530892424, -0.0154326437, 0.00162864989, 0.00550657604, -0.0168873593, 0.00329287723, 0.00962168444, -0.0109578092, 0.00913150795, -0.0136142485, -0.00179566559, -0.00229078298, -0.0252994169, 0.0164604317, 0.0148871252, 0.000941810315, -0.0215677526, 0.0247776154, -0.00962959, -0.00953471754, -0.0115902945, -0.00622602832, -0.00959005952, 0.0119697861, -0.00667272089, 0.035355933, -0.0151875559, 0.00700872904, -0.0247934274, 0.00928963, -0.0053247367, 0.0117958523, -0.0115112346, 0.0179151483, 0.0379491225, 0.00902082305, 0.0251096711, 0.0114005497, -0.0174882207, -0.0202869698, -0.0194173027, 0.0256472826, 0.00717870938, 0.0200656, 0.0112819588, 0.0063525252, -0.0063604312, 0.011163367, 0.0102304518, 0.0270229392, 0.0187848173, 0.00234019593, -0.00265248562, 0.0116693554, 0.00641972665, -0.00791002065, 0.0102146389, -0.00119776919, 0.00101889449, 0.0166343655, 0.013131978, -0.015132213, 0.0296951905, -0.00301023526, 0.00198837603, -0.0064473981, 0.0164604317, -0.00860970747, -0.00784281921, -0.00438391464, 0.0357986726, 0.00554215349, 0.0172668509, 0.0159070082, 0.0181681439, 0.00707593048, 0.0183104519, -0.00843577366, 0.0103885727, -0.00407162495, -0.00616277941, -0.00492152711, -0.000650274043, -0.0169980451, 0.00370596908, 0.0265327618, 0.00210499042, -0.00106534257, 0.0105862245, -0.0194489267, 0.00908407196, 0.00624974631, -0.0313712768, -0.0113293948, 0.014143955, 0.0181207061, 0.0079693161, -0.010088142, 0.0031723096, -0.000744158577, 0.0172194149, 0.00555796549, 0.0145392586, -0.00732101873, 0.00560935494, 0.0147606283, -0.0038403722, 0.0178360883, -0.0112345219, 0.0112424279, -0.00331857195, 0.00452622352, -0.00217021559, -0.0200497881, -0.00782305375, -0.0140016451, 0.0076688854, 0.00320788682, 0.0147131914, 0.0360200442, 0.00353598874, -0.016175814, 0.00928172283, 0.000706604798, 0.00706407148, 0.00409139, -0.0166976154, 0.0183420759, 0.00835671369, 0.00666876789, 0.000450398773, -0.0199074782, 0.0283353459, -0.00285013742, -0.00369608658, 0.0123492777, 0.0198600423, -0.000641379738, -0.00651855255, -0.0294421948, -0.000379738311, 0.00339367939, 0.0052456758, -0.00972446334, 0.0109736221, -0.00055638951, 0.00564493239]
01 Feb, 2023
Angular PrimeNG OrganizationChart Templating 01 Feb, 2023 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. It provides a lot of templates, components, theme design, an extensive icon library, and much more. In this article, we will see the Angular PrimeNG OrganizationChart Templating. The OrganizationChart Component visualizes the data in hierarchical organizational data. The data is arranged in the tree format. The component provides a lot of properties, styling, events, templates, etc. which can be modified to create many variations. Templating: This component can be used to enable enhanced customization, where the type property in TreeNode API, can be used to match the pTemplate type, so templating can be done per node. Angular PrimeNG OrganizationChart Templating: pTemplate=”default”: By defining pTemplate as ‘default’, the property is applied to all nodes that don’t have a specified type attribute. pTemplate=”customized”: By defining pTemplate as ‘customized’, the property is applied to all nodes that have a type attribute defined with any customized name. Creating Angular application & Module Installation: Create an Angular application using the following command. ng new geeks_angular After creating your project folder i.e. geeks_angular, move to it using the following command. cd geeks_angular Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: The project structure will look like the following: Steps to run the application: Run the below command to see the output: ng serve --save Example 1: Below is the example that illustrates the use of the Angular PrimeNG OrganizationChart Templating using pTemplate=“default”. app.component.html: HTML <h1 style="color: green; text-align:center;"> GeeksforGeeks </h1> <h3>Angular PrimeNG OrganizationChart Templating</h3> <p-organizationChart [value]="GfG"> <ng-template let-node pTemplate="default"> <span style="color:green"> {{ node.label }} </span> </ng-template> </p-organizationChart> app.component.ts: Javascript import { Component } from '@angular/core'; import { TreeNode } from 'primeng/api'; import { MessageService } from 'primeng/api'; @Component({ selector: 'app-root', templateUrl: './app.component.html', providers: [MessageService], }) export class AppComponent { GfG: TreeNode[]; constructor( private messageService: MessageService ){} ngOnInit() { this.GfG = [ { label: 'Data Structures and Algorithms', expanded: true, children: [ { label: 'Data Structures', expanded: true, children: [ { label: 'Queue', }, { label: 'Red-Black Tree', }, ], }, { label: 'Algorithms', expanded: true, children: [ { label: 'Hashing', }, { label: 'Divide and Conquer', }, ], }, ], }, ]; } } app.module.ts: Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { OrganizationChartModule } from 'primeng/organizationchart'; import { ToastModule } from 'primeng/toast'; import { PanelModule } from 'primeng/panel'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, OrganizationChartModule, ToastModule, PanelModule, FormsModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } Output: Example 2: Below is another example that illustrates the use of the Angular PrimeNG OrganizationChart Templating using pTemplate=”gfg”. app.component.html: HTML <h1 style="color: green; text-align:center;"> GeeksforGeeks </h1> <h3>Angular PrimeNG OrganizationChart Templating</h3> <p-organizationChart [value]="GfG"> <ng-template let-node pTemplate="gfg"> <span style="border:2px solid green"> {{ node.label }} </span> </ng-template> </p-organizationChart> app.component.ts: Javascript import { Component } from '@angular/core'; import { TreeNode } from 'primeng/api'; import { MessageService } from 'primeng/api'; @Component({ selector: 'app-root', templateUrl: './app.component.html', providers: [MessageService], }) export class AppComponent { GfG: TreeNode[]; constructor( private messageService: MessageService ){} ngOnInit() { this.GfG = [ { label: 'Data Structures and Algorithms',type: 'gfg', expanded: true, children: [ { label: 'Data Structures', type: 'gfg', expanded: true, children: [ { label: 'Queue', type: 'gfg' }, { label: 'Red-Black Tree', type: 'gfg' }, ], }, { label: 'Algorithms', type: 'gfg', expanded: true, children: [ { label: 'Hashing', type: 'gfg' }, { label: 'Divide and Conquer', type: 'gfg' }, ], }, ], }, ]; } } app.module.ts: Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { OrganizationChartModule } from 'primeng/organizationchart'; import { ToastModule } from 'primeng/toast'; import { PanelModule } from 'primeng/panel'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, OrganizationChartModule, ToastModule, PanelModule, FormsModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } Output: Reference: https://primefaces.org/primeng/organizationchart Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating
https://www.geeksforgeeks.org/angular-primeng-organizationchart-templating?ref=asr10
Languages
Angular PrimeNG OrganizationChart Templating
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0367960371, -0.00526784407, -0.0202577449, 0.0274641886, 0.0573858768, 0.0209219344, 0.0186470877, 0.0138400253, -0.00734343287, -0.0194773246, 0.00249278196, -0.00420514261, -0.0119886, -0.0527697653, -0.00355755887, 0.00598184671, -0.035766542, -0.00846840162, -0.0172522925, -0.0350027271, -0.00788308587, -0.00619770773, -0.0456629507, -0.0191618353, 0.00226861844, 0.0220676586, 0.0369620845, 0.00662527885, -0.0302703846, 0.0360654294, 0.00170717167, -0.0021835193, 0.019859232, -0.0193610918, -0.0592123941, 0.0164137557, 0.0170032214, 0.0370617099, -0.025903346, 0.00473649334, -0.00539237913, 0.0088171009, 0.0298552681, 0.00856803, -0.00334584899, 0.0264014881, 0.00966394, -0.0333422571, 0.001902277, 0.00691586128, 0.0173187125, 0.0265177209, 0.048751425, 0.0323957875, -0.0182153657, 0.0165050812, 0.0119055761, 0.0276136324, 0.00218767044, 0.035766542, 0.0185142513, -0.0171028506, -0.0335581191, -0.00993791874, 0.0209717471, 0.0401501879, 0.000925193657, 0.0298386626, 0.0258369278, -0.0213038418, -0.0215529129, 0.00204237923, -0.0157080553, 0.0134083023, -0.00808234233, -0.0133335814, 0.0415449813, -0.0329603478, -0.0141057009, 0.0322297402, 0.00458289962, 0.00296186493, -0.0134996288, 0.0199256502, 0.0364307314, 0.00971375499, 0.01770062, -0.0529690236, -0.00803668, 0.0309345741, -0.00933184661, 0.0111832721, 0.0139645608, -0.0136490706, -0.0199588612, 0.00361359981, 0.0178500619, -0.0116648078, -0.0485853776, 0.0164552666, -0.0181821566, 0.018348204, -0.0194441155, -0.0349363089, 0.0154921934, -0.00397890341, 0.0479211919, 0.00151310419, 0.0163224284, -0.0122542754, -0.0133916978, -0.00369454781, 0.0110670384, 0.0290416367, -0.0513085499, 0.0160650555, -0.00319225527, -0.0457625799, 0.0359990112, 0.000330278039, -0.0256874859, -0.00980508048, -0.0187135078, 0.0151185878, -0.0544302352, 0.0506111532, -0.0251229256, 0.0117395297, 0.0310009923, 0.00264637545, -0.0207392816, -0.0267667919, 0.0143215619, -0.0141057009, 0.0327610932, 0.038456507, -0.00111043989, -0.0167375468, -0.0275472123, 0.00811555143, -0.0205566306, -0.0279291216, 0.00519312266, -0.0364971496, 0.0164718721, 0.0268166047, 0.0263848826, 0.0834884793, 0.00155565375, 0.0372609682, -0.0507772, -0.00371115259, 0.0189625788, 0.00272939913, 0.0189459734, -0.0367628261, -0.0214200746, -0.0115900869, -0.0271154903, 0.000788723701, 0.0168454777, 0.0107598519, -0.0117976461, 0.00296809175, -0.0367628261, 0.00254259608, 0.0280121453, -0.00260693929, -0.0808981434, 0.0327776968, 0.0293239169, 0.024392318, 0.0195769519, 0.00750532839, -0.0689427555, -0.0254550185, -0.0106187118, -0.0134083023, 0.00981338322, -0.018597275, -0.0320636928, -0.000664707273, 0.0343717486, 0.0240768287, 0.0111085502, 0.0441353172, 0.0340064429, -0.00876728632, -0.0387553908, -0.00488178432, -0.00658791838, 0.033026766, 0.035434451, 0.027381165, 0.0285933092, -0.0553268902, -0.0489506833, -0.00433798041, -0.00319017982, 0.0177338291, 0.00559993833, -0.0236617103, 0.00123393745, 0.0357001238, 0.0250232965, 0.0399509296, -0.0400505587, -0.028709542, 0.0260361843, -0.00559993833, -0.0282280054, -0.0143464692, 0.00327527896, -0.00127752486, -0.0120052043, 0.0237281304, -0.0184810422, -0.000917929108, 0.00102585973, -0.0129018594, -0.0247576218, 0.0508436188, 0.0355672874, 0.0110836439, -0.0629650578, 0.00275845733, -0.0145540275, -0.00716908323, 0.000124859624, 0.0112745976, 0.0137902107, 0.0179330856, 0.0160982665, -0.0201581176, 0.0258369278, 0.00712757139, 0.000592061668, -0.00572862476, -0.00782081764, 0.0444342, 0.00877558906, -0.0295231733, -0.035035938, -0.00703209452, 0.0147532839, 0.0246745981, 0.00366548961, 0.0297390334, -0.000304333196, 0.0180659238, -0.0085846344, -0.015434077, -0.00586146256, 0.0158907063, 0.00470328378, 0.0229975227, 0.0142800501, -0.00158990093, 0.028061958, 0.0307021067, -0.0199920703, 0.0230473373, -0.0165881049, 0.0492827781, -0.00615619589, -0.0549283773, 0.024392318, -0.021586122, -0.00208908, 0.0411796793, 0.0596773252, -0.0325950459, 0.0351355635, 0.0297722444, -0.0133584887, -0.009389963, -0.0132090459, -0.00807404, 0.0425412655, 0.0272151176, 0.00467422558, -0.0136075588, 0.0186636932, 0.0172855016, 1.78370897e-06, -0.0404158607, 0.013167534, -0.0172190834, -0.0357333347, 0.0121878562, -0.0484525412, -0.0023807, 0.0124203227, 0.0128852548, 0.0274973977, 0.0292076841, 0.00445421319, -0.0119055761, 0.0335581191, 0.00962242857, -0.00729361875, -0.0375266448, -0.00654640654, 0.0161978938, -0.052736558, 0.0570205711, 0.0137819089, 0.00330018601, -0.0410468429, -0.00567050837, 0.0104028508, -0.028925404, -0.0384232961, 0.00953940582, -0.0562235452, 0.0052886, 0.0346706323, 0.0166711286, -0.0136241643, -0.00985489506, 0.00311960978, -0.0145208184, -0.0383900888, 0.0200584885, 0.0447995067, 0.0131177204, -0.0193610918, 0.0131343249, 0.00570786884, -0.0363311023, -0.02482404, -0.03540124, 0.0110587366, -0.00227069389, 0.0206064433, -0.00787063222, 0.0162560102, -0.0596773252, -0.0124535318, 0.00232258369, -0.0264346972, 0.00402871752, 0.0109757129, -0.00910768285, 0.0326614641, -0.0330931842, -0.0145872375, -0.0125780674, 0.0294733588, 0.00646753423, 0.00161999697, 0.0221174732, 0.0704039708, -0.016189592, 0.0288755894, 0.0141223054, -0.0142385382, -0.0169949196, -0.00836877339, -0.00400173478, 0.0010118495, -0.015434077, -0.0344713777, 0.0373605974, 0.029174475, -0.038821809, -0.00814045873, 0.0278128888, -0.0185806695, 0.000662631704, -0.0320304856, 0.0109923175, -0.00545049598, -0.0134664197, -0.0390874855, -0.0185640641, 0.0266671628, 0.0100209424, 0.00068650092, 0.00350982044, -0.040615119, 0.0166628249, 0.0233960357, 0.0562235452, 0.0114738541, 0.0307187121, 0.00533426274, -0.019859232, -0.0052304836, 0.00793705136, -0.000681312, 0.0386557616, 0.0142800501, -0.000680274155, -0.0120550189, -0.025903346, -0.00682868669, -0.0107515492, 0.0538988858, -0.0612381659, 0.0299715, 0.032345973, 0.00576183433, -0.00600675354, 0.00654225564, -0.0239273869, -0.00530105364, 0.0254218094, 0.0385229252, 0.0222835205, 0.0293903351, -0.00518482039, -0.0411796793, 0.00377342012, 0.0131177204, 0.029539777, 0.0168288723, 0.0386225544, 0.0066377325, -0.0189957879, 0.0330433697, -0.0225990098, -0.0107017355, 0.00255089835, -0.0113908304, 0.0193776954, -0.00679962849, 0.0247410163, -0.00470743515, 0.00897484552, -0.00388757745, 0.00795365591, 0.00319640664, 0.00437534088, -0.0115236687, -0.0503454767, -0.00234956644, 0.00544634461, 0.0082525406, 0.0224993806, -0.0270656757, 0.0103281289, 0.0265343245, -0.0559246615, -0.0563231744, 0.000940241676, -0.0456297398, -0.037593063, -0.045364067, 0.0438364334, -0.0253387857, -0.0275140032, -0.0702711269, 0.00138856878, 0.0178500619, 0.00773779443, -0.00684114033, 0.00348076224, -0.00545049598, -0.0145374229, -0.0325784385, 0.0299715, 0.018597275, -0.0052304836, 0.0215030983, -0.00102482189, 0.00351189612, 0.0265841391, 0.00835216884, 0.0394527875, 0.0150936805, 0.0188463442, 0.0470909551, 0.0252391584, 0.0188463442, 0.00837707613, 0.0349695161, -0.00265260227, -0.00369247212, -0.00776685262, 0.0176840145, 0.0282612145, 0.0474230498, -0.0184810422, -0.00813215598, -0.0245583653, 0.0255546477, -0.0064716856, -0.0273313522, 0.0294235442, 0.027630236, 0.0134083023, -0.0462607183, -0.00433798041, 0.00675396528, 0.000598807354, -0.0140226772, -0.0220510531, -0.000838537817, -0.00237862463, 0.00473234197, 0.0124203227, -0.0219182167, 0.0330765806, 0.0216359366, 0.00289544626, -0.00972205773, 0.0219016112, -0.00396229886, -0.0220344495, -0.0268664192, 0.00420721807, 0.00442930637, 0.0187633224, 0.00644677831, -0.0166379195, -0.00616449816, 0.0613710061, -0.00212955405, -0.0200252794, 0.000940241676, -0.0174017362, -0.0101620825, 0.0143215619, -0.0118972743, 0.00878389087, 0.0267003719, -0.0104360599, 0.0151185878, -0.0356337056, -0.0162560102, 0.00333754648, 0.0246745981, 0.0551276356, -0.0162061956, 0.00250523561, -0.00671660481, -0.00308640022, 0.00208285311, -0.000374384312, -0.0283608437, -0.00440855045, -0.0455633216, -0.00927373, -0.0269162338, 0.0200584885, 0.00925712567, -0.00591542758, 0.0100873606, 0.0347370505, 0.00120280357, 0.026335068, 0.00977187138, -0.004244579, -0.0214698892, -0.0365635715, -0.04064833, -0.034504585, 0.00826499425, -0.00819442421, 0.0297390334, -0.0314493179, 0.0151684023, 0.0113493185, -0.0173519216, -0.0088835191, -0.00199567853, 0.0269494429, 0.0201415122, 0.00982998777, 0.0331263952, -0.00860954169, -0.00491914526, 0.0209219344, 0.0264014881, 0.0275638178, 0.0639281273, -0.00637620827, 0.00873407722, -0.0178500619, -0.00196143123, 0.00722719962, 0.00591542758, -0.0128520448, -0.000743060722, -0.0276800506, 0.0211710036, -0.0189459734, -0.0110172248, -0.0245915744, 0.021835193, 0.020075094, 0.00963903405, -0.00670000026, 0.0327610932, 0.00404739799, -0.00679962849, 0.0157412644, 0.0156748462, -0.01068513, 0.0026297709, 0.00243259, 0.0212706327, 0.036663197, -0.00579504343, -0.00587806711, 0.0144710038, -0.0371281281, 0.0394195803, 0.00963073131, -0.0564228036, -0.0164469648, 0.0214366801, -0.00608562585, 0.0316319726, -0.0378255285, 0.0099545233, 0.008489158, -0.0303866174, -0.0229643136, 0.0306024794, 0.00518482039, 0.065156877, 0.0200916976, 0.0128354402, 0.0076838294, -0.0161231719, -0.02655093, -0.00501877349, -0.000271123776, 0.00198841398, -0.0175511781, -0.0261524171, -0.0110919457, 0.0119969025, 0.0218019839, -0.0209717471, 0.0168454777, 0.0141638173, 0.0121546471, 0.0286929384, 0.0192946717, -0.0116232969, 0.0737249106, -0.00660037203, 0.00474479562, -0.030436432, 0.0232631974, 0.0136656761, -0.00839368068, -0.0242594797, -0.0197928138, 0.0227152426, 0.0117810415, -0.00151725532, -0.0378919467, -0.0111666666, 0.0096888477, -0.0113244113, 0.0270324666, 0.00360944867, -0.0128271375, 0.0238111522, 0.00732682785, 0.0126029747, 0.0132837677, 0.00246164808, 0.00421967171, 0.00958921947, 0.0131509295, 0.0157080553, -0.000437949202, 0.0123871127, 0.0186802987, -0.00755929388, -0.0453972742, -0.0166877322, 0.0148030985, -0.0174681544, 0.00669169798, -0.0186636932, 0.0079785632, 0.0283774473, 0.0247576218, 0.00220012409, 0.00106581475, -0.0543970279, -0.0226322189, -0.0125780674, 0.0221008677, 0.0256376714, -0.0123622064, 0.0179330856, -0.0212540273, 0.0106021073, -0.0260361843, -0.021768773, -0.0202079304, 0.0160152428, -0.0330765806, -0.0104443617, -0.0238111522, -0.0461943, 0.0177504346, -0.0227982663, 0.0088171009, -0.00617695181, 0.0352351926, -0.0150272623, -0.0161314756, 0.0312666669, 0.0109757129, -0.0236617103, 0.0587806702, -0.00777100399, 0.0329935588, -0.0263184644, -0.00979677867, -0.0559246615, -0.016729245, -0.00498556392, 0.000524086121, 0.016729245, -0.00246164808, -0.0454304852, -0.0137154898, -0.000165917372, -0.0374934338, -0.00401418842, -0.000116492411, -0.00976356864, -0.00459950464, 0.0101205707, 0.0100043369, -0.0149027267, -0.00559993833, 0.0095228, -0.00359076844, -0.00611468405, -0.018348204, 0.0253387857, -0.0050976458, -0.00388965313, 0.00930693932, 0.0142883519, -0.0019749226, -0.00649659242, -0.0283774473, 0.00735588605, -0.00994622055, -0.000305370981, -0.00897484552, 0.0356005, -0.00757589843, -0.0152431233, -0.0111251548, -0.0180659238, 0.00359907071, -0.00829405244, 0.0381576233, -0.013524536, 0.00932354387, -0.0396852568, 0.0274309795, -0.0192780681, -0.0129267657, -0.0262686498, 0.00635960372, 0.00592788123, -0.0160069391, 0.0323625766, 0.0376262702, 0.045297645, 2.22963627e-05, 0.00246372377, -0.0127690211, -0.00412834575, 0.00975526683, 0.00393531611, -0.0254052058, -0.0163224284, -0.00286846352, -0.00244296785, -0.0138981417, 0.012843743, -0.00531350682, 0.0266505592, -0.000451440545, 0.0194773246, 0.0459950455, 0.0189459734, 0.00541728642, -0.00389172882, 0.00341849448, 0.0191120207, -0.0287427511, -0.00591127668, -0.00742645608, -0.0211876091, -0.0439028516, -0.0115734823, -0.0303534083, 0.0277630743, 0.0290250313, -0.00675396528, -0.0204736069, -0.0141721191, 0.0145291202, -0.00792459771, -0.000360374077, -0.00258825906, 0.0225491952, -0.025471624, 0.026800001, -0.00242428761, 0.00752193341, 0.0323957875, 0.0110836439, -0.02827782, -0.0038564438, -0.00941487, -0.0065048947, 0.0320138782, 0.0118391579, -0.0368292443, 0.022914499, -0.00469913287, 0.01230409, 0.00548370508, -0.0113991331, 0.00649659242, -0.0248738546, -0.0303700138, 0.052205205, -0.0088171009, 0.010037547, 0.0127939284, 0.0198426284, 0.0423088, 0.00600675354, -0.024574969, 0.0324788131, -0.0271653049, -0.0159488227, 0.00478630746, -0.000499438494, -0.0105772, 0.00911598559, 0.0397848822, 0.020755887, 0.0338736065, 0.0223997533, -0.00845594797, 0.0327278823, -0.00245542149, 0.0105938045, -0.004964808, 0.0328939296, 0.0161812883, -0.0126029747, 0.0068785008, -0.000523567258, -0.0135328379, -0.00734758377, 0.00718153687, 0.0223001242, -0.00434213132, -0.0132671623, -0.0374934338, 0.00924882293, -0.00220219954, 0.00403079297, -0.00417608442, 0.0352019854, 0.00161065685, -0.00222087977, -0.0307851303, -0.012121438, -0.00741815381, -0.0059361835, 0.0054712519, -0.0119886, -0.0492827781, -0.0120799262, 0.00726456, 0.00503952941, 0.00594863715, -0.0287593566, -0.0115402732, -0.0311504342, -0.00147055462, -0.0062018591, 0.0088171009, -0.0425412655, 0.0280121453, 0.0440689, 0.00549615873, -0.0263848826, -0.000884719659, 0.0270822812, 0.00626827776, 0.00719399052, -0.00374851306, 0.015110285, 0.0363643132, -0.032429, 0.0245251562, 0.00396022294, -0.0156250317, -0.0116814133, 0.00390418223, -0.00271279435, 0.00697397767, -0.0119055761, -0.00368209439, -0.0147117721, -0.036663197, 0.0173519216, -0.00767552666, -0.0429397784, -0.0174349453, 0.0183149949, 0.00562899653, 0.0285767037, 0.01241202, 0.0202577449, -0.0351355635, 0.00843519252, -0.03194746, 0.0243591089, 0.0147615867, 0.0277796779, 0.000866039365, 0.00210464699, 0.00177151489, -0.0214698892, 0.0102783153, 0.0396852568, -0.0434047095, 0.0046949815, -0.00571617112, 0.0111832721, 0.0139645608, -0.00236201985, -0.0129682776, -0.0204403978, 0.0335083045, 0.00194378872, -0.00116440526, 0.0120384144, 0.0030365861, -0.0113991331, 0.0134083023, -0.0248406455, 0.0135577451, 0.00031782451, -0.0280287489, 0.0130180921, 0.0225824043, 0.0140392818, -0.0199422557, -0.0305194557, -0.0105772, 0.00809479598, 0.0313662961, -0.00280827144, -0.0111998767, 7.84831936e-05, 0.0229809172, -0.0206728633, 0.00968054589, -0.00891672913, 0.0332260244, -0.00776270172, -0.0472570024, 0.0174349453, -0.0109923175, -0.0128603475, -0.00122771075, -0.00711926911, 0.023495663, 0.00904956646, -0.00479045883, -0.0359990112, 0.0283940528, -0.030619083, 0.00718568778, -0.024392318, -0.0232299883, 0.0227816608, 0.00524708815, 0.0128520448, -0.00354302977, 0.00433798041, -0.0260693934, -0.00182963139, 0.0457957871, -0.0119387861, -0.0137403971, 0.00388757745, 0.00550861238, -0.0284106582, -0.0141223054, 0.0265343245, -0.013059604, -0.00655470882, 0.0361650586, -0.000811036269, -0.00966394, 0.0099628251, -0.0311338305, -0.000448586594, -0.0215695165, 0.0130845113, -0.000459742878, 0.000121292214, 0.010469269, 0.0311006196, -0.022233706, -0.0163971502, -0.0144710038, 0.0128188357, -0.00402456662, 0.0228646845, 0.0189127643, 0.0410800502, -0.00557918241, -0.0079827141, -0.000826084288, -0.0251893438, -0.0152680306, 0.00334377331, 0.0199422557, -0.00444591092, 0.0104194554, 0.0145374229, -0.0223499388, -0.0480872393, -0.013167534, -0.0116399014, -0.00127856259, -0.0130346967, 0.00096411095, -0.00100614165, -0.00896654278, -0.00634299917, -0.00641772, 0.025039902, 0.00666679069, 0.0195437428, -0.00600260217, -0.00841028523, 0.00557918241, -0.0116315987, -0.0356669165, 0.0281449817, -0.0153759606, -0.00796195772, 0.00422589853, -0.0348034725, -0.00056715461, -0.0168620814, -0.00535917, -0.0346042141, -0.0183814131, 0.0066086743, -0.00278751552, 0.0115651796, -0.00688265217, 0.00264222431, 0.00696982676, -0.0238277577, 0.00967224315, -0.0327112786, 0.0188463442, 0.00548370508, 0.0212042145, 0.00493159844, 0.00875898451, 0.000354925665, 0.0142717473, -0.0196931846, 0.0175511781, 0.033425279, -0.014354771, -0.0162809175, -0.0152929369, 0.00202473672, 0.0123622064, -0.0456629507, -0.00333547103, 0.00669584889, -0.00750947976, -0.00716078095, 0.0115070632, 0.00403286889, -0.0152763324, 0.0728614628, 0.00102689746, 0.0167873614, -0.0167458486, -0.00663358113, -0.0347038433, 0.0013283767, 0.0265675355, 0.015002355, -0.00477800518, 0.0272815377, -0.00669169798, -0.0145789348, 0.010037547, -0.0111998767, -0.00993791874, -0.00239730487, 0.0179164819, 0.0285767037, -0.025039902, 0.017053036, 0.0231967792, 0.0125033464, 0.0208555143, -0.0140558863, -0.0151268905, 0.00997943059, -0.00433798041, -0.0272151176, -0.00897484552, 0.0185640641, -0.017883271, 0.0478547737, -0.00193652418, 0.0176674109, 0.0128354402, 0.00875068177, -0.00438364316, 0.00849746, -0.00460365554, 0.00857633259, 0.0065339529, -0.0085514253, -0.0238609668, 0.0252723675, 0.00508519216, -0.0283608437, -0.0146536557, 0.0182651803, 0.0145457257, -0.0191950444, -0.0142136309, 0.00622676592, -0.0137403971, -0.0275472123, 0.0249236692, -0.0112164812, 0.00447081774, 0.0479876101, -0.0162061956, -0.00811555143, 0.00281034713, 0.0148114, -0.0263018589, 0.0204570014, -0.00246164808, -0.0009973204, 0.0193610918, -0.025903346, 0.0117478315, 0.0238609668, 0.0151268905, 0.0111998767, -0.00515991356, -0.00276468415, 0.0133916978, 0.0021461586, -0.00556672877, 0.00828990154, -0.0221506823, -0.000802215, 0.0212208182, -0.0226488225, 0.0156997535, 0.00262561976, -0.0136490706, -0.0137985134, -0.0182319712, 0.0105107808, -0.019211648, -0.0119304834, -0.00843934342, -0.00831896, -0.0240934324, -0.0110255266, -0.0072064437, 0.0140558863, 0.000425495673, -0.0127109047, -0.00958091766, 0.0103281289, 0.0304696411, -0.0213038418, 0.00783327129, 0.017883271, 0.00540068187, 0.0344049558, 0.00216899021, 0.0213536564, 0.0038709729, 0.0254052058, 0.0083148079, -0.00783742312, -0.0186304841, -0.0127275093, 0.0116814133, 0.000395399635, 0.0096888477, 0.00708190864, -0.00903296191, -0.00938166119, 0.0184810422, 0.029539777, -0.0112745976, 0.0125780674, -0.00545049598, -0.005666357, 0.00189189904, -0.00589052076, 0.00714002503, 0.00528444862, -0.00193548645, -0.00975526683, -0.0156001244, -0.00708605954, 0.0168869887, -0.0225824043, 0.0205732342, 0.00247410173, 0.0130679058, -0.0195603482, 0.00626827776, -0.00227276958, -0.00516406447, -0.00161999697, -0.016945105, -0.0219016112, 0.018530855, 0.020075094, 0.0071732346, -0.0251229256, 0.00286846352, -0.00687434943, -0.00514330855, 0.0158824045, 0.0153344488, 0.00693246629, 0.001861803, 0.0285102855, 0.0141887236, 0.0059361835, 0.0355008692, 0.000981234596, 0.0102451053, 0.00310715614, 0.023313012, 0.0183648076, -0.0257539041, -0.00839783158, -0.0205898397, 0.0134083023, -0.0103779435, 0.0131758368, -0.00782912, 0.0245085508, -0.01230409, 0.017268898, -0.00666264, -0.00170820951, 0.00396229886, -0.0217189603, 0.000888351933, -0.0136573734, -0.000690652116, 0.00207558856, -0.00379417604, 0.000713483605, -0.00708190864, 0.0118474597, -0.00581995072, -0.0108013637, -0.000270604884, 0.0230639409, 0.00152244431, 0.0518731102, 0.0140890954, -0.00366964075, -0.0276800506, -0.00564145, 0.0219514258, 0.0077170385, -0.0276468415, -0.00381078082, 0.0308183413, 0.00174453226, -0.0201581176, -0.0209053289, -0.0167126395, 0.0310342014, -0.0248738546, 0.00404532207, 0.00708605954, 0.00121525722, -0.0238111522, 0.0199422557, 0.0146121439, 0.00401834, -0.0171360597, 0.0298220571, -0.0293405205, -0.0166047085, -0.010469269, -0.0203407686, 0.0145291202, -0.00402664207, -0.00463686511, -0.00134913262, -0.00693246629, 0.007949505, 0.00324829621, -0.0213038418, 0.0250897165, 0.0348366797, -0.0217521694, -0.0120550189, 0.0085514253, 0.00619770773, -0.0191784389, -0.0305692703, 0.024392318, 0.0128354402, 0.00903296191, -0.00738494424, 0.0133418841, -0.00391248474, -0.000148534309, 0.0204736069, -0.00528444862, -0.0131758368, 0.0163556393, -0.0225491952, 0.0172522925, 0.000855142542, -0.00279789348, 0.00978017412, -0.0193444863, -0.00668339571, -0.00505613396, -0.0190622061, -0.0167043377, 0.0222503096, 0.000202240175, -0.0183149949, 0.00302828383, -0.0282944255, -0.0138566298, -0.0237281304, -0.025255762, -0.0219680294, 0.0259531606, -0.0194109045, 0.0121795544, 0.00326074986, -0.00710681546, 0.0187633224, -0.00450817868, 0.00727701373, -0.00569956657, 0.00901635736, -0.011764437, -0.0187135078, 0.0512753427, 0.0130180921, -0.00146744121, -0.00503537804, 0.0284272619, 0.013275465, -0.00436288724, 0.0344713777, -0.00275015505, 0.033425279, 0.0398845114, -0.00530105364, 0.0164303593, 0.0107847583, 0.0312002487, 0.00904126465, -0.0065048947, -0.00658376701, 0.00200190535, 0.00993791874, -0.0103862453, 0.00435043406, 0.010900992, -0.0183814131, 0.0330101624, 0.00622676592, -0.00592373, 0.0405819081, -0.00433798041, -0.00909938104, -0.020755887, 0.0165216848, -0.00761741027, -0.00688680308, -0.0136988852, 0.00855972804, -0.0199090466, -0.0204902105, 0.00639281329, -0.00650904607, -0.00548785646, -0.0158242881, 0.00570786884, -0.000419268908, -0.00694076857, -0.0189293679, -0.004964808, 0.00178604398, 0.00141451368, 0.00088264409, -0.0147698885, -0.0126610911, 0.0156831481, 0.00475724926, 0.00242843875, 0.0055625774, -0.011764437, 0.00582825299, 0.0010326053, -0.0264180917, 0.0239439905, -0.0112662949, -0.00113327138, -0.0281117726, -0.00417400897, -0.0064426274, 0.0150438668, -0.0250066929, -8.65909678e-05, -0.0158408917, -0.0193776954, -0.00919070654, 0.00844349433, -0.000443397614, 0.0147449821, 0.0228314754, 0.00937335845, 0.0133169768, 0.0195603482, 0.0088835191, 0.028526891, 0.0143298637, 0.00809479598, 0.00444591092, -0.0100209424, -0.0025197647, -0.00831896, 0.0250565056, 0.0114738541, -0.0159405209, -0.0137320943, 0.0178334583, -0.000634092314, 0.0115236687, 0.0219846349, 0.00278336438, 0.0115319705, 0.0164303593, -0.0210049581, -0.0423420072, -0.00351189612, 0.00529690227, -0.000523826689, 0.0128271375, 0.00202785013, 0.0141721191, 0.00438364316, -0.0258535314, -0.0165465921, 0.0193444863, -0.0096556386, 0.0098715, 0.0205898397, -0.00843934342, -0.00604411401, -0.0269162338, 0.0111417603, -0.0127939284, -0.0232964065, 0.019676581, 0.00560408924, -0.00284148077, 0.00711926911, 0.0242760852, 0.0180825293, -0.0182319712, -0.0264679063, 0.0160152428, -0.00821518, 0.0116232969, -0.020324165, -0.0208887234, 0.00537577458, 0.00766722439, 0.0338902101, -0.0116731105, 0.0506111532, 0.0291080549, 0.0288589839, -0.0047240397, 0.0108013637, -0.00141762709, 0.00453723688, 0.0166296158, -0.0416446105, 0.0235952921, 0.0082193315, -0.0151517969, 0.00210257131, -0.033143, -0.0030365861, -0.0181821566, -0.000593618373, -0.0158325899, 0.000978121185, -0.00306149316, -0.00837292429, 0.00880879816, -0.00738494424, -0.00750117749, 0.0152929369, 0.00460365554, 0.00584070664, 0.00418853806, -0.00686189625, 0.00924052112, 0.0206396542, 0.000873303914, 0.0163473357, 0.00540068187, 0.00743890973, -0.0222171, 0.00953110307, 0.0105772, 0.00709021091, -0.00821102876, -0.0237945486, -0.0082193315, -0.0153842634, -0.00546294916, -0.0213038418, 0.00769628258, 0.00406400254, 0.0110504339, 0.0238277577, -0.00365926279, 0.00457874872, 0.00276260846, 0.0191618353, 0.0101620825, -0.0253055766, -0.000804290583, -0.00606071902, 0.014354771, 0.0171858743, 0.00118516118, 0.00242428761, -0.00120903039, -0.0104775717, -0.0199090466, -0.00203615241, 0.0208389107, 0.0091491947, 0.0106934328, 0.0310508069, -0.01241202, 0.000317305618, 0.0169118959, 0.0126776956, 0.0189293679, -0.00602750946, -0.00409721211, 0.00495650573, 0.00237654895, -0.00865105353, -0.00791214406, 0.00592373, 0.00714002503, -0.0306356885, 0.0045912019, -0.00342057017, -0.00768798031, 0.0155918216, 0.0130429994, 0.0117976461, -0.0143464692, -0.00674566301, -0.00108345726, 0.0134747215, 0.0278460979, -0.0404490717, -0.0128686493, 0.027447585, 0.0115402732, -0.00151310419, -0.00890842639, -0.029539777, 0.012088228, -0.0129599757, 0.0249734819, -0.0105855018, 0.0133750932, -0.0308017358, 0.0221340768, 0.00798686501, 0.0077419458, 0.0102201989, -0.00535501866, -0.00569126429, -0.00423627626, 0.00393116474, -0.00972205773, -0.0259365551, -0.00857633259, -0.013707188, 0.00132318772, 0.00174038112, -0.00183482037, 0.0329603478, 0.0201913267, 0.000615930941, -0.0266837683, 0.0110172248, -0.00484442385, 0.00679132622, 0.0010180762, -0.00209634448, -0.0128686493, -0.0165881049, 0.000183170705, -0.0167126395, -0.0111583648, 0.00207662652, 0.00626827776, -0.000876417325, -0.00955601, -0.0117810415, 0.00870086811, 0.0232964065, 0.00432552677, -0.0135162333, 0.0200916976, -0.0100541515, 0.00389588, 0.000772119, -0.00374436192, 0.0110670384, 0.00388757745, -0.0065007438, -0.0145374229, 0.0321799256, 0.005126704, 0.0218684021, 0.0230307318, 0.0195271373, 0.000825046503, -0.000574419159, -0.0113742258, 0.00371945486, -0.02137026, -0.0268830247, 0.000856699247, -0.002563352, -0.00993791874, 0.0118640652, 0.0169118959, 0.0168786868, -0.00992131419, 0.0112745976, 0.00714417594, 0.00725210691, -0.0152099133, -0.0233296156, -0.0315489471, -0.007609108, -0.0345377959, -0.00446251547, 0.0245417599, -0.00836877339, -0.0117976461, -0.011042132, 0.00897484552, 0.0157578699, -0.0210049581, -0.0335415117, 0.00321301119, 0.00423627626, -0.0355672874, -0.0028186494, 0.0172190834, -0.00803668, 0.00857633259, 0.00417193305, 0.0238609668, -0.0177338291, 0.00244504353, -0.00924882293, 0.00501877349, 0.0282446109, -0.00381078082, -0.00166877324, -0.0175013635, 0.00868426263, 0.0052927509, 0.00780421356, -0.00832726154, -0.0111832721, -0.0164635684, 0.0025342938, 0.00791214406, 0.013167534, 0.00793289952, 0.00502707576, -0.00809894688, -0.00531765819, -0.0117063196, 0.000576494727, 0.0182319712, 0.00227069389, -0.00240975851, 0.0226820335, -0.0109092938, -0.00758420117, -0.00639696419, -0.0115153659, -0.00333754648, 0.0305526648, 0.0208057016, -0.017484758, 0.0112330858, -0.00576598523, 0.00867596082, 0.00947298668, 0.00612298632, -0.0204237923, -0.0243757125, 0.00322961598, -0.003103005, -0.000374124851, -0.0131426277, -0.0066377325, -0.016264312, -0.00450817868, 0.0168205705, -0.0190622061, 0.00370492577, 0.0100956634, -0.0160733592, 0.0229809172, 0.00465346966, -0.0193776954, -0.00520557631, 0.00706115272, -0.0139562581, 0.01230409, 0.0179330856, 0.00234126393, -0.0223499388, -0.00655886, -0.0120052043, 0.00657961611, -0.0113244113, -0.00826914515, 0.00437118951, 0.0108511774, 0.0174017362, 0.00563314743, -0.00807404, 0.0168122686, -0.0126029747, -0.0153178442, -0.0187633224, -0.0120384144, 0.0126112765, -0.0060399631, -0.00201954786, 0.0140807936, 0.0154755889, -0.00352850067, 0.0265011154, 0.000508519239, -0.00994622055, 0.00448742276, 0.020755887, -0.013815118, -0.00823593605, 0.0137653043, -0.0116066914, 0.0121380426, -0.00543804234, -0.00824839, 0.00515991356, 0.0239273869, 0.00892503094, -0.00762156164, -0.0118059479, 0.0107515492, -0.00740154926, -0.00368416985, -0.00463686511, 0.000344028813, -0.000994207, 0.00112289342, -0.0104941763, 0.0157412644, 0.00177774171, -0.0284272619, 0.00924052112, -0.00702794315, -0.0123372991, 0.0301873609, -0.000579089217, -0.0176009927, -1.50399101e-05, -0.00803668, 0.0144211901, 0.0190622061, 0.00399135705, -0.00671660481, 0.00440439908, -0.011042132, 0.00479460973, -0.00897484552, -0.00493159844, 0.0011135533, 0.000430944085, -0.0115983896, -0.0019946408, 0.0213204473, -0.0263516735, -0.0014643278, 0.0103198271, 0.00986319687, 0.0112330858, -0.0022416357, 0.00731852558, -0.0186304841, 0.0181821566, -0.00782081764, -0.00114780047, -0.0364971496, -0.0134581169, -0.0009973204, -0.0107681537, -0.0270656757, -0.00561239151, 0.00568296155, -0.0174017362, -0.00828990154, -0.0126444865, 0.00775439944, 0.0228646845, 0.00311130751, -0.015724659, 0.0124037182, -0.0125863692, -0.011656506, 0.00913259, -0.0028186494, 0.0107598519, -0.0011861989, 0.000519416062, 0.007949505, 0.00614789361, -0.00667924434, 0.00219597272, 0.0281283781, -0.00237862463, 0.00669584889, -0.0168537796, 0.00668754661, 0.0175843872, 0.0199754648, 0.011116853, 0.0088835191, 0.0238111522, 0.00174972124, 0.0021222895, -0.00369039667, 0.00562069425, -0.00884200726, -0.0122625781, -0.0234126393, -0.00660037203, -0.0159239154, 0.0241432469, 0.021403471, 0.00422797399, -0.013275465, 0.00778760854, -0.00306356885, -0.0233462211, -0.000762259937, -0.00799101591, 0.00156706944, -0.00518482039, -0.0115319705, 0.0114157377, -0.0177670382, 0.0101371752, -0.017268898, -0.00206105947, 0.00154838909, 0.00875068177, 0.0144294919, 0.00460780691, 0.00431722449, 0.00852651801, -0.0189127643, -0.0144959111, -0.00521803, -0.0137320943, -0.000320419, -0.00985489506, -0.0028331785, 0.030868154, -0.0192282535, 0.0186304841, 0.015218216, 0.0128188357, 0.0360322185, 0.00919900928, -0.0161563829, -0.00940656755, -0.0295231733, -0.00746796792, -0.0189791825, 0.0237945486, 0.011764437, 0.0184312277, 0.0173187125, -0.0151351923, 0.0164635684, 0.0028850683, -0.0041262703, -0.000537058571, -0.0112662949, -0.0119886, -0.00722304871, 0.00503537804, -0.000352590636, 0.0192282535, 0.00845594797, 0.0158907063, 0.00366133847, 0.000191862229, 0.00806573778, 0.00587806711, -0.00646753423, -0.00562899653, 0.00273355027, 0.0181489475, 0.0106685255, 0.0297722444, -0.0128520448, -0.00437949225, -0.0190788116, -0.016803965, -0.0147449821, 0.00520557631, -0.00957261492, 0.00435458496, -0.00223125773, 0.00339358742, -0.0117395297, 0.0134996288, -0.00980508048, 0.0141140027, -0.00223125773, 0.0222669151, 0.0244421326, -0.00176113693, -0.0122791827, 0.00407438073, 0.0055335192, 0.00792044587, 0.0128852548, -0.00880879816, 0.0146951675, -0.00956431217, -0.0126527883, -0.00281657372, 0.00411381666, -0.00301790587, 0.00438779453, 0.0109840147, 0.0143215619, -0.0117727388, 0.0304530375, -0.0067705703, 0.00975526683, 0.0152099133, -0.0116066914, -0.011332714, 0.0156748462, -0.00767552666, -0.0219182167, 0.0106187118, -0.00131799874, -0.00397060113, 0.0156997535, 0.00325452304, -0.00127129804, 0.0103198271, 0.00758005, -0.00147263019, 0.0209883526, 0.0191784389, 0.00507689, -0.00451648096, 0.000481796, 0.00865105353, 0.00635130145, 0.00586146256, 0.00398513, 0.00391248474, 0.00329395919, -0.0068785008, -0.023313012, -0.00110940216, 0.011581785, 0.019610161, 0.014462702, -0.00216691452, -0.00103468099, 0.00552521693, -0.00950619578, -0.000827122072, 0.00770873623, 0.0125697646, -0.0120965308, -0.00344340154, -0.0138815371, 0.0116731105, -0.00615204498, 0.00045273779, 0.00899145, 0.0069366172, 0.0031175341, -0.00176632591, -0.00169160473, 0.0234624539, 0.0152265187, 0.0302371755, -0.00433382904, -0.00892503094, 0.0186636932, -0.0278294925, 0.00516406447, -0.0126943, -0.00221880432, 0.00559993833, -0.0264346972, -0.00184208492, 0.0133335814, 0.00216276338, -0.0189625788, 0.000893022, -0.0184810422, -0.00193963759, 0.0073143742, -0.0225159861, -0.0149608431, 0.0224495661, -0.00440439908, 0.00920731109, -0.0196267664, 0.0214366801, -0.00444591092, -0.00376719353, -0.0109342011, 0.00248655514, -0.0192946717, -0.0237779431, -0.00359076844, 0.0180991329, -1.25102861e-05, 0.00919900928, 0.0159903355, 0.0264346972, 0.00309055159, 0.0011280824, 0.0258037187, 0.00805328414, 0.00305111543, -0.0184478313, 0.0177338291, 0.0077128876, -0.0254384149, 0.00106685259, 0.00488178432, 0.000143215613, -0.0245251562, -0.000207039964, -0.00584070664, -0.00967224315, 0.00326074986, 0.0034537795, 0.00582410162, -0.0201249085, -0.00525954179, 0.00188359676, 0.0329603478, 0.00432967814, -0.0082525406, 0.0215363074, -0.0175013635, 0.017053036, 0.00359284389, -0.0365303606, 0.00306356885, 0.00658791838, 0.0236451067, -0.0011799722, -0.019610161, 0.0104194554, 0.0122791827, -0.00756344525, 0.0099877324, 0.00619770773, 0.0260195788, -0.00699473359, 0.00372775714, 0.00506443623, 0.0139977699, -0.00799516775, -0.0122376708, 0.000734758389, -0.000685463136, -0.00626827776, 0.00955601, 0.00687434943, -0.0266837683, 0.00386889721, 0.0268332101, -0.00501462212, -0.00350982044, 0.0266173482, -0.0246912017, -0.00986319687, -0.0117478315, -0.00243051443, 0.00943977758, 0.00532180909, -0.00679962849, 0.00750117749, -0.0168952923, -0.0296726152, 0.00414910167, 0.00602750946, -0.00292658, -0.000777307956, -0.0167956632, 0.00646753423, 0.00124535314, 0.0106270136, 0.00387304835, -0.0073392815, 0.0124286246, 0.00216276338, 0.00453308551, 0.00538407685, -0.00814461, 0.00584485754, -0.00406607799, 0.011332714, 0.00360737299, 0.0196433719, -0.0283442382, 0.0022416357, 0.00808234233, -0.00602335809, -0.0173519216, -0.00697812904, 0.00187425653, -0.0016936803, 0.0154008679, 0.0169202, -0.0158159863, 0.00373398396, 0.00707360636, -0.0252225529, -0.00223333342, -0.0142717473, 0.00293488242, 0.00622261502, -0.00478215609, 0.00367586757, 0.019676581, 0.0127690211, 0.0107515492, -0.0163224284, 0.0193278808, -0.019028997, 0.00168849132, 5.8375932e-05, 0.00930693932, 0.00654640654, -0.0103530362, 0.0162892193, -0.0352684036, -0.0144793065, 0.00978017412, 0.0208721198, 0.00281034713, 0.00983829051, -0.00345170405, 0.00828575, 0.0213868655, 0.0143049574, -0.0140060727, -0.00799516775, 0.022017844, -0.00301167904, 0.000322754029, -0.0121380426, -0.0133086741, 0.00939826574, -0.00570786884, 0.0210215617, 0.0247908309, 0.00855972804, -0.0220344495, 0.00562484516, -0.00699473359, -0.0258037187, -0.00726456, 0.0123372991, 0.00753853796, 0.00730607193, 0.0306522939, 0.00291827763, -0.0149525404, -0.00498971529, -0.00673736073, 0.000144772304, 0.000725418213, -0.00515991356, -0.00829820335, -0.0126444865, -0.0252225529, 0.00459535327, -0.00258203223, -0.0154589843, -0.002563352, -0.00370077463, 0.00444175955, -0.0159654282, -2.39665624e-05, -0.0171194561, -0.0112662949, 0.0140475845, 0.0303035937, 0.00614789361, -0.00824008696, 0.00241390965, -0.00776685262, -0.0193776954, -0.00357001252, 0.00106477703, 0.00975526683, 0.0114157377, 0.00137403968, 0.0052014254, -0.000431981898, -0.00557088, 0.0111832721, 0.0110338293, -0.0142966546, -0.0106768282, -0.0276966542, -0.0183315985, 0.0144045856, -0.00541313505, -0.0131343249, -0.0295895915, 0.00436288724, -0.0138898389, -0.00746381702, -0.00311960978, -0.016945105, 0.00655470882, 0.0227152426, 0.00845594797, 0.0320470892, -0.00645923195, -0.0155337052, 0.00378379808, -0.0121297399, -0.0171028506, -0.0146951675, 0.014030979, 0.0216525402, 0.00830235425, 0.0141306072, -0.00775024807, 0.00257580541, 0.00401834, 0.00746796792, 0.00369869894, 0.0180493183, -0.00890012458, -0.0119969025, -0.0173519216, 0.00830650609, -0.0102866171, 0.000873822835, 0.0156084271, 0.0104028508, -0.0184312277, -0.00549615873, 0.0122957872, -0.00590297394, -0.00709021091, 0.0113908304, 0.013059604, 0.00390833337, 0.00384399015, -0.0281449817, 0.00899145, 0.022017844, -0.00408891, 0.0146868657, 0.00521387858, 0.0278128888, -0.00724795554, -0.0136407688, 0.0302371755, 0.0121878562, 0.0113659231, 0.00916579925, -0.0128271375, -0.00199256511, 0.00238900259, -0.0021461586, 0.00188567233, 0.00236617099, -0.00203926582, 0.00716908323, 0.000164749843, 0.0127773238, 0.0236949194, -0.0133584887, -0.00618110318, -0.0130180921, -0.000891465344, 0.00555012422, 0.0112164812, 0.00662112795, -0.00418438669, -0.0158159863, -0.0049606571, 0.0134830242, 0.0212042145, 0.0038190831, -0.0149359358, 1.69452358e-06, 0.0120467162, 0.0228148699, -0.00823593605, 0.0104360599, 0.00643017376, -0.0180825293, 0.0293239169, -0.00814045873, 0.00426741038, -0.00208596652, 0.0100956634, 0.00898314733, -0.00571617112, 0.0309013631, 0.0129599757, -0.00542558869, 0.0282612145, 0.0233960357, 0.00692001265, -0.0187633224, -0.00393946748, 0.0152265187, -0.0165216848, -0.0204570014, -0.0201747213, 0.0214532837, 0.00635130145, 0.00385851925, 0.00457459735, 0.0021835193, -0.00706115272, 0.0338570029, -0.00252806698, 0.0210547708, 0.0173685253, 0.0223997533, -0.0303202, -0.00201332103, 0.00498141255, -0.00219597272, 0.0230307318, -0.00252184016, 0.00340811652, 0.00432967814, 0.0104194554, -0.0108428756, 0.00491084298, -0.00221050181, -0.00869256537, 0.00507273851, -0.0246745981, 0.00958921947, -0.0180493183, -0.00986319687, 0.0110255266, -0.00510594808, -0.00792044587, -0.0059320326, 0.0139147462, -0.0250897165, 0.00310092955, 0.00838122703, -0.00803252775, 0.0244089235, 0.0100541515, 0.0150106568, -0.0145872375, -0.0148529122, -0.00112185569, -0.0126029747, 0.0144211901, 0.0166047085, -0.0136573734, -0.0221008677, 0.0122625781, -0.0170364324, -0.000173311651, 0.0100956634, 0.00454553915, 0.00510179671, -0.00119138788, -0.00447912049, 0.0146204466, 0.0149359358, 0.00811555143, 0.0115900869, 0.0140558863, 0.0181157384, 0.0117976461, 0.00254674722, 0.00202681241, -0.00302620837, 0.00413457258, 0.00765892211, -0.011008922, -0.00573692704, -0.0109757129, -0.0113410167, 0.00413457258, -0.000374124851, 0.00731852558, 0.00867596082, -0.0169534087, -0.0084601, 0.00789138768, 0.0184644368, -0.00333547103, 0.0115734823, 0.00662527885, 0.00749287521, 0.00895824097, -0.0324622057, -0.00071971037, -0.0584817864, -0.0201913267, 0.0015629183, 0.00929863751, -0.00451648096, 0.0236783158, 0.0147781912, -0.00449987641, 0.00971375499, 0.00745551428, 0.0220012404, -0.013167534, -0.00880879816, -0.00624337047, -0.0151684023, 0.00891672913, 0.0124784391, 0.0136739779, 0.0138981417, -0.00504368031, 0.00546710053, -0.00133771694, 0.0250232965, -0.0101952916, 0.0105107808, 0.00919070654, -0.00381493196, -0.00749287521, 0.0100624543, 0.00071711588, -0.0108594801, 0.0104111526, -0.00601090491, -0.0123871127, 0.00920731109, -0.0185806695, 0.00147678133, -0.0139147462, 0.00306149316, -0.0151434951, -0.00979677867, 0.00292035332, -0.00951449852, -0.00130969647, -0.0127441147, -0.0112081785, -0.000232336199, 0.00781666674, -0.0190954152, 0.0108926892, -0.0103115244, 0.0103779435, -0.00974696409, -0.00260278815, 0.00415740395, 0.0122376708, 0.00645923195, 0.00208285311, 0.0160152428, 0.00868426263, -0.0139728626, -0.0153178442, -0.0117727388, -0.00725625781, 0.003885502, 0.0199754648, 0.0030884759, 0.00524293678, -0.0172356889, 0.00923221838, -0.0151684023, -0.00867596082, 0.00773364352, 0.00146536564, 0.0142966546, 0.00137092627, -0.0244587362, 0.00228937436, -0.0188297406, 0.029788848, -0.00413664803, 0.0141057009, 0.0137653043, 0.013491326, 0.00985489506, -0.0148114, -0.0253387857, 0.0119221816, -0.0101039652, -0.0100624543, 0.0168454777, 0.0184146222, 0.00304903975, -0.0212208182, 0.0028186494, -0.00682453532, 0.013383396, -0.023313012, 0.00605241675, 0.00634299917, 0.00706115272, -0.0163639411, -0.00269203843, -0.0159820318, 0.0147366794, -0.0252391584, 0.0141057009, 0.00231220573, 0.00903296191, 0.0237779431, 0.0294733588, 0.0142717473, 0.0220344495, -0.0136905825, 0.016621314, -0.00598599762, 0.0236451067, -0.00413457258, -0.00242221192, 0.00813630782, 0.00108864624, -0.0172024779, -0.00826499425, -0.0159903355, 0.00638451055, -0.00843934342, -0.00391248474, -0.00997112785, -0.0115734823, -0.00272317231, -0.00896654278, -0.0178002492, -0.00547540281, -0.00654225564, -0.00755514251, -0.0142634455, -0.0156001244, 0.00534671638, -0.0186470877, -0.00464101601, 0.00875068177, -0.00750947976, 0.00960582402, -0.000149442378, -0.0125116482, -0.0229477081, 0.00560824061, -0.00474064471, 0.00394154293, -0.0283774473, 0.00630978961, 0.00522633223, 0.00620601, -0.00193963759, 0.0100458488, -0.0254052058, -0.0129018594, -0.00488593569, -0.00815706328, -0.00474479562, 0.0303866174, 0.0034247213, -0.00117789651, 0.00368001871, -0.00904956646, -0.00622261502, 0.00518066948, -0.000147496525, -0.0203407686, 0.000680274155, -0.00148819701, 0.0176674109, -0.01244523, 0.0107266419, 0.0142634455, -0.00770043395, -0.0128105329, -0.0235952921, 0.0167956632, 0.018530855, 0.00853482075, 0.00978017412, -0.0165715, -0.0134332096, -0.0307851303, -0.0119636934, -0.00198841398, 0.00798686501, -0.00192199508, 0.00511009945, -0.0109258983, 0.00601505581, 0.020938538, -0.00447912049, 0.0110753411, -0.00485687749, 0.0047987611, 0.00780836446, 0.0196267664, -0.00618525408, 0.0252391584, 0.0137237925, 0.0103281289, -0.00489423797, 0.000494509, -0.0149193313, -0.00101029279, 0.0251561347, -0.0312002487, 0.00512255263, 0.00704869907, 0.00646338286, -0.0082815988, 0.00431307312, 0.0179164819, -0.00475724926, -0.0183814131, 0.0286431238, -0.0165050812, 0.0119387861, 0.0127275093, -0.011008922, 0.0153676588, 0.0178002492, 0.00956431217, -0.00844764616, 0.00109383522, 0.028709542, 0.00194067543, 0.00931524206, -0.00783327129, -0.00268373615, 0.0153925652, -0.00924882293, -0.000186413803, 0.0277298652, 0.00712757139, 0.0153510533, 0.0122293681, 0.00540483277, 0.0258369278, 0.0147781912, 0.0174017362, -0.0222669151, -0.00229975232, 0.0216027275, -0.000577013649, -0.0257372987, -0.00349529134, -0.0324123912, 0.0136075588, 0.000882125169, -0.0235454775, 0.00239107804, 0.00729361875, 0.0133418841, 0.000509557, 0.00285185874, -0.00626412639, 0.00551276328, -0.00351604726, 0.00129205396, 0.0129267657, -0.0216525402, -0.00367586757, -0.0203573741, 0.00767137576, -0.00376926898, 0.028925404, -0.00463271374, 0.00764646847, -0.00906617101, -0.0186470877, -0.0245417599, 0.00852651801, -0.00621846365, -0.0115734823, 0.0126029747, -0.0204071868, -0.0143962828, -0.00762156164, -0.00434213132, 0.00468252786, -0.00638035964, -0.00837292429, -0.0182319712, -0.010253408, -0.00140621129, -0.00921561383, -0.00643847603, -0.0128105329, -0.0242594797, -0.0067415121, 0.00273355027, -0.0174681544, 0.0060399631, 0.00340811652, 0.00244296785, 0.00196143123, -0.00590712531, 0.0194109045, -0.0207890961, -0.00964733586, -0.00763401529, -0.00114261161, -0.0163058247, -0.0161646847, -0.00782912, 0.000510335376, -0.0168786868, -0.00491084298, 0.0115319705, -0.0290084276, 0.00679547712, 0.00584900891, 0.00321508688, 0.00776685262, -0.0177670382, -0.00226654275, -0.00725210691, -0.00182548026, 0.0185806695, -0.00581579935, -0.00648413878, -0.00023402262, 0.00170820951, 0.00457459735, 0.00826499425, 0.000963592, -0.0156997535, -0.0268498156, -0.0189791825, 0.00384814129, -0.0163141266, 0.00655470882, 0.00158782536, -0.0258867424, -0.0236617103, -0.00943147484, -0.03885502, -0.0165631976, 0.0122210663, -0.00198530057, 0.0216525402, -0.00309055159, -0.0137154898, -0.00279581803, 0.000738909584, 0.00400173478, -0.012951673, -0.00928203203, 0.00735173514, -0.00286846352, 0.0130429994, -0.0174681544, -0.00396852568, -0.00949789397, -0.0173353162, 0.0199920703, 0.00151517976, 0.00594033487, -0.00365096051, -0.00872577447, -0.024392318, -0.0331263952, -0.00514330855, 0.0052636927, 0.000773675682, -0.00456629507, -0.00451648096, -0.00699888496, -0.00712757139, 0.013491326, 0.0773115233, -0.0126693929, -0.0038190831, -0.0305360612, -0.0210381672, -0.0214532837, -0.0211377945, 0.0476887263, 0.0103779435, 0.013275465, 0.00856803, 0.0118391579, -0.00674981438, 0.0109591084, -0.0262686498, -0.00901635736, 0.0173851307, -0.0131841395, -0.0201747213, -0.00148300815, 0.00394984521, -0.0190954152, 0.012843743, -0.0171858743, -0.0170198269, -0.0174681544, 0.00185038731, -0.0166628249, -0.0190788116, -0.0134664197, 0.004425155, 0.0246912017, -0.0054712519, -0.0020413415, -0.00202785013, -0.00168122677, 0.0115153659, 0.00738909561, 0.0146121439, -0.00756344525, 0.0160733592, 0.00943977758, -0.00733513, -0.0077419458, 0.00740985153, 0.00938166119, -0.00319433096, -0.00772119, -0.00391871156, -0.0120965308, -0.00530935591, -0.0273313522, -0.0148861222, -0.0191784389, -0.0139147462, -0.0110338293, 0.0417442396, 0.000981753459, -0.00568711292, -0.00103468099, 0.00276053301, 0.0264180917, 0.00518066948, 0.0117561342, -0.00283525418, -0.0254550185, -0.0100624543, 0.0174183398, -0.0150355641, -0.0067415121, 0.00178189285, -0.00722719962, 0.0064758365, -0.0128188357, 0.00612713769, 0.00546710053, -0.0112496903, 0.00557503104, 0.00473234197, -0.0264346972, -0.00925712567, 0.0141804218, 0.00423212536, -0.00344547722, -0.032429, -0.00701548951, -0.033026766, 0.00235579303, -0.0114074349, 0.0285434946, -0.00280827144, 0.0282114018, -0.0320470892, 0.000749806408, -0.0144128874, 0.00420514261, -0.00695322221, 0.0116149941, 0.0405154899, -0.00503537804, 0.0190456, 0.00220012409, -0.0212540273, -0.0010990242, -0.00818197057, 0.0405154899, 0.000275793835, 0.00542143779, 0.00555427512, 0.0077128876, 0.000540690846, -0.00577428751, 0.00581164844, 0.0205566306, 0.0181987621, 0.0029141265, 0.00639281329, -0.00301790587, -0.0163888484, -0.0170198269, 0.021586122, -0.00519312266, 0.0166296158, 0.0211211909, 0.0160401501, 0.00948959123, 0.00884200726, 0.00326282531, 0.0134415124, 0.00150168838, -0.00204341696, -0.00707775727, -0.00454553915, -0.00427986402, 0.0211045854, 0.0145042138, 0.00468252786, 0.00969715, 0.0125614628, 0.00716908323, 0.0134830242, 0.00958921947, 0.00495650573, -0.0114240404, -0.00963073131, 0.00559163606, 0.0136573734, -0.0184478313, -0.000661075, 0.0206562579, -0.00589052076, 0.00700303633, 0.00684529124, -0.0245915744, 0.00463686511, -0.00679132622, -0.0132090459, -0.0231635701, 0.00628903368, 0.0112164812, -0.0022499382, 0.00048335272, 0.0165050812, -0.00711096684, 0.0132920695, 0.0253387857, 0.0225325897, -0.0151434951, 0.0198094174, 0.0115153659, 0.000594137236, 0.0110670384, -0.00442100363, 0.00509349443, 0.0147200748, -0.0113244113, -0.00946468394, -0.0182983894, -0.00412419485, -0.0101371752, -0.00537992595, 0.00265052682, 0.0182651803, 0.0492827781, 0.00525954179, -0.00369662349, 0.0140475845, 0.00116855639, 0.0200086739, 0.0138234207, -0.00886691455, 0.00994622055, -0.00115714071, -0.00509349443, -0.00719399052, 0.0049938662, 0.0281283781, -0.0128105329, -0.0158408917, 0.00890842639, 0.0064758365, -0.00251561357, 0.00369662349, -0.0284272619, 0.00806573778, 0.0091824038, 0.0192780681, -0.000657442724, -0.00243259, 0.020755887, -0.00893333368]
21 May, 2024
Angular PrimeNG Form AutoComplete Templating Component 21 May, 2024 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see the Form AutoComplete Templating Component in Angular PrimeNG. The Form AutoComplete is an input field that facilitates real-time suggestions while the user enters the data in the input field. TheTemplating Component allows displaying custom content inside the suggestions panel. Creating Angular application & Module Installation: Step 1: Create an Angular application using the following command. ng new appname Step 2:  After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Syntax: <ng-template>...</ng-template> Project Structure: It will look like the following: Example 1: This code example describes the basic usage of the Form AutoComplete Templating Component in Angular PrimeNG. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;">GeeksforGeeks</h1> <h3>A computer science portal for geeks</h3> <h4> Angular PrimeNG Form AutoComplete Templating Component </h4> <h5>Dropdown and Templating</h5> <p-autoComplete [(ngModel)]="selectedCountryAdvanced" [suggestions]="filteredCountries" (completeMethod)="filterCountry($event)" field="name" [dropdown]="true"> <ng-template let-country pTemplate="item"> <div class="country-item"> <div>{{ country.name }}</div> </div> </ng-template> </p-autoComplete> </div> app.component.ts Javascript import { Component } from "@angular/core"; import { MenuItem } from "primeng/api"; import { SelectItem } from "primeng/api"; import { SelectItemGroup } from "primeng/api"; import { FilterService } from "primeng/api"; import { CountryService } from "./countryservice"; @Component({ selector: "app-root", templateUrl: "./app.component.html", providers: [CountryService, FilterService] }) export class AppComponent { selectedCountry: any; countries: any[]; filteredCountries: any[]; selectedCountries: any[]; selectedCountryAdvanced: any[]; filteredBrands: any[]; groupedCities: SelectItemGroup[]; filteredGroups: any[]; constructor( private countryService: CountryService, private filterService: FilterService ) { } ngOnInit() { this.countryService.getCountries().then(countries => { this.countries = countries; }); } filterCountry(event) { let filtered: any[] = []; let query = event.query; for (let i = 0; i < this.countries.length; i++) { let country = this.countries[i]; if (country.name.toLowerCase().indexOf(query.toLowerCase()) == 0) { filtered.push(country); } } this.filteredCountries = filtered; } } app.module.ts Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; import { AutoCompleteModule } from 'primeng/autocomplete'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, AutoCompleteModule, FormsModule, HttpClientModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } countryservice.ts Javascript import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; @Injectable() export class CountryService { constructor(private http: HttpClient) { } getCountries() { return this.http.get < any > ('assets/countries.json') .toPromise() .then(res => <any[] > res.data) .then(data => { return data; }); } } countries.json Javascript { "data": [ { "name": "Mumbai" }, { "name": "Dadar" }, { "name": "Vasai" }, { "name": "Naigaon" }, { "name": "Virar" }, { "name": "Andheri" }, { "name": "Nallasopara" }, { "name": "Malad" }, { "name": "Dahisar" } ] } Output: Example 2: This code example describes the basic usage of the Form AutoComplete Templating Component in Angular PrimeNG by disabling the dropdown input field. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;">GeeksforGeeks</h1> <h3>A computer science portal for geeks</h3> <h4> Angular PrimeNG Form AutoComplete Templating Component </h4> <h5>Dropdown and Templating</h5> <p-autoComplete [(ngModel)]="selectedCountryAdvanced" [suggestions]="filteredCountries" (completeMethod)="filterCountry($event)" field="name" [dropdown]="true" disabled="true"> <ng-template let-country pTemplate="item"> <div class="country-item"> <div>{{ country.name }}</div> </div> </ng-template> </p-autoComplete> </div> app.component.ts Javascript import { Component } from "@angular/core"; import { MenuItem } from "primeng/api"; import { SelectItem } from "primeng/api"; import { SelectItemGroup } from "primeng/api"; import { FilterService } from "primeng/api"; import { CountryService } from "./countryservice"; @Component({ selector: "app-root", templateUrl: "./app.component.html", providers: [CountryService, FilterService] }) export class AppComponent { selectedCountry: any; countries: any[]; filteredCountries: any[]; selectedCountries: any[]; selectedCountryAdvanced: any[]; filteredBrands: any[]; groupedCities: SelectItemGroup[]; filteredGroups: any[]; constructor( private countryService: CountryService, private filterService: FilterService ) { } ngOnInit() { this.countryService.getCountries().then(countries => { this.countries = countries; }); } filterCountry(event) { let filtered: any[] = []; let query = event.query; for (let i = 0; i < this.countries.length; i++) { let country = this.countries[i]; if (country.name.toLowerCase().indexOf(query.toLowerCase()) == 0) { filtered.push(country); } } this.filteredCountries = filtered; } } app.module.ts Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; import { AutoCompleteModule } from 'primeng/autocomplete'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, AutoCompleteModule, FormsModule, HttpClientModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } countryservice.ts Javascript import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; @Injectable() export class CountryService { constructor(private http: HttpClient) { } getCountries() { return this.http.get<any>('assets/countries.json') .toPromise() .then(res => <any[]>res.data) .then(data => { return data; }); } } Output: Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component
https://www.geeksforgeeks.org/angular-primeng-form-autocomplete-templating-component?ref=asr10
Languages
Angular PrimeNG Form AutoComplete Templating Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0328618735, -0.0112081282, -0.0199073423, 0.00666584354, 0.0388635918, 0.0179395657, -0.00467756949, 0.0138646271, -0.00968310144, -0.0160209816, -0.0074857506, -0.0146353394, -0.0215143599, -0.0620833561, -0.00680932729, -0.00754314428, -0.0485384949, 0.00173307839, -0.0207272489, -0.0307957064, -0.0528676026, 0.0142991776, -0.0398802757, -0.0170868617, 0.00462017581, 0.0666092411, 0.0187430736, 0.0162505563, -0.000494250155, 0.0333538167, 0.0183823146, 0.00132107513, 0.0325995, 0.000393811584, -0.0619193763, 0.00959291216, -0.00172385445, 0.0500799194, -0.0171196572, 0.00245562149, 0.016988473, -0.0117656654, 0.010822772, 0.0125691742, -0.0216783416, -0.011396707, 0.011503295, -0.0505718626, -0.0143237747, 0.0192350186, 0.00955191627, 0.0274012908, 0.0296806321, 0.0404706076, 0.00509162247, 0.0275652725, -0.00100592338, 0.00763743371, 0.0151682794, 0.0186118893, 0.0213831738, -0.0250399597, -0.0152666681, -0.0329602621, 0.0273684952, 0.0288771242, 0.00749395, 0.0156848207, 0.00790800247, 0.00462837471, -0.0123559982, 0.017349232, -0.00428811368, -0.00473906239, -0.0155044412, -0.0286311526, 0.012331401, -0.000640039914, -0.00168183423, 0.0305825304, -0.00327142887, 0.0169720743, 0.0436846428, 0.0129135353, 0.0203008968, 0.0180707499, -0.00956831407, -0.0537531, 0.00392120518, 0.0168900844, -0.027171718, -0.00298241177, 0.00518181222, -0.0182183329, -0.0194645915, 0.032402724, 0.0154060526, -0.00151990261, -0.0736604407, 0.0215635542, -0.0306481235, 0.0126429657, -0.0118066603, -0.030615326, 0.0213995725, 0.00609600823, 0.0522444732, 0.000125292034, 0.0309596881, -0.0165949166, 0.0131349098, -0.035780739, 0.00828106049, 0.00725207711, -0.0575246736, 0.031189261, -0.00316484086, -0.050473474, 0.0238592941, 0.000354866, -0.00723567931, -0.00388840889, -0.00809658132, 0.0421104245, -0.0340097435, 0.0423399955, -0.000270313089, -0.016521126, 0.0252859313, -0.0098306844, 0.0268929489, -0.0122084152, -0.00320173684, 0.0224490538, 0.0231213775, 0.0207108501, -0.00163366471, -0.00396015076, -0.0350592211, -0.00421842141, -0.0246300064, -0.0199729335, -0.0238264967, -0.00874840748, 0.000755339279, 0.0279096328, -0.00232853577, 0.0856638849, -0.00435780548, 0.0177263897, -0.050178308, -0.0604107454, 0.0269257445, 0.00230188877, 0.0255483016, -0.0283687823, -0.000907534559, -0.00453818496, -0.0101012541, 0.00963390712, 0.0194317959, 0.000950067188, 0.000738428731, -0.0106505919, -0.00311564654, -0.0178903695, 0.0156930201, -0.00135079678, -0.0630344525, 0.0366006494, 0.0333538167, 0.00729307253, 0.0159553904, 0.0102160415, -0.0371909812, -0.00311974599, 0.0121346237, -0.0160455797, 0.0113065178, 0.0144221634, -0.0376173332, -0.0132824928, 0.0204156842, -0.00447669206, 0.0341409259, 0.0194317959, 0.0180215556, -0.00825236365, -0.0123232016, -0.0127331559, -0.0383388512, 0.025876265, 0.0143073769, 0.0626736879, 0.0152666681, -0.0124707855, -0.0667732283, 0.0236789137, -0.0144549599, 0.0341081321, 0.0186938792, -0.0436846428, -0.0236297194, 0.0574590825, 0.0326486975, 0.0336161852, -0.0290083084, -0.0035686451, 0.0101258513, -0.0161685664, -0.00127700518, -0.0129381325, 0.00189398509, 0.0113721099, 0.00656335521, 0.0128971366, -0.0249743666, -0.0168572869, 0.00679702871, -0.00551797403, -0.026023848, 0.0526708253, 0.00066258735, 0.0215143599, -0.0521460846, -0.0230393857, -0.00811298, -0.0198745448, 0.00595662417, 0.00649366342, 0.0362398885, 0.0096913008, -0.00974869449, -0.00174640189, 0.0322223455, 0.00567375636, -0.00414463, -0.0149633028, -0.00700610504, 0.0712335184, 0.0226786267, -0.0277292542, -0.0221374892, -0.0547697879, 0.031041678, -0.0055876663, 0.0130283218, 0.0272209123, 0.0129463309, 0.025023561, -0.00635837857, 0.00530479802, -0.0195465833, 0.0189070553, -0.0110195503, 0.00824826397, 0.0354527794, -0.00884679612, 0.0186446849, 0.0196941663, 0.00111302373, -0.00738736195, -0.00809658132, 0.0592628755, -0.00671913754, -0.0347968526, 0.0368958153, -0.0178739727, -0.0185790919, 0.0203172956, 0.0818595141, -0.0170048717, 0.0146763353, 0.0285491608, -0.00790390372, 0.00463247439, -0.0143237747, -0.0260074493, 0.0348952413, 0.000598532089, 0.0145451501, -0.0256958846, 0.0325175114, -0.00769072771, -0.0274996795, -0.0511949919, 0.00623539276, 0.0325831026, -0.0214979611, 0.0129545303, -0.0346656665, 0.00139486673, -0.0312056597, 0.0372893699, 0.036272686, 0.0386996083, -0.00746115344, 0.0104292165, 0.00395400124, 0.00213790755, -0.00455048354, -0.0411265343, -0.00911736581, 0.0187266748, -0.0418152548, 0.0640839264, 0.0245972089, -0.00704300078, -0.0350592211, -0.018923454, 0.0123150032, -0.0141105987, -0.0317467973, 0.0182675272, -0.0468658842, 0.0386668146, 0.00744475517, 0.0159635898, -0.0269585419, -0.017349232, -0.0105849989, 0.000537039072, -0.0414872952, 0.0146599365, 0.0428319424, -0.0198909435, -0.00714139, -0.0200549252, 0.0436846428, -0.01516008, -0.0350592211, -0.0167015046, -0.0184315089, 0.0161029734, 0.00902717561, -0.00870741252, 0.0255319029, -0.0314680301, -0.00710449414, 0.0161931626, -0.0388307944, -0.0172672402, 0.00404009176, -0.00803508889, 0.0515885465, -0.0179067682, 0.0179395657, -0.00830565766, 0.0223014709, -0.00633378141, 0.00158447027, -0.00621489482, 0.0572295077, -0.035124816, 0.0340097435, -0.0123477988, -0.00197700062, -0.0223998595, -0.0468658842, -0.00630098535, 0.00725617679, -0.0121428221, -0.0174476206, 0.0443077721, 0.0400442556, -0.0433566831, -0.0110031515, 0.0256958846, -0.0211699978, 0.00110175007, -0.0347312614, -0.00939613394, -0.0106259948, 0.00443159742, -0.0505718626, -0.0144385621, 0.0111261373, 0.00476365956, 0.00887959264, 0.00414258, -0.0298610125, 0.0557536744, 0.0218587201, 0.0509654172, 0.00729307253, 0.00172385445, 0.0200877208, -0.0049686362, -0.0164719317, -0.00876480527, 0.00349280378, 0.0374205559, 0.0102242399, -0.029467456, 0.00183044234, -0.0280408189, 0.00233673491, 0.018349519, 0.0664780587, -0.0397490896, 0.0340425372, 0.0154716447, 0.00900257844, -0.000143227502, -0.00954371691, -0.0231377743, -0.0182511304, 0.0195629802, 0.019284213, 0.0022301469, 0.00578034436, -0.00666174432, -0.0643463, -0.00612470508, 0.0440454036, 0.0242528487, 0.0442093834, 0.0289755128, -0.0158242043, -0.0238592941, 0.0433894768, -0.026023848, -0.0341081321, -0.00790390372, 0.0101176519, 0.00380231859, -0.029467456, 0.0573934875, -0.0217275359, -0.0245316178, 0.00960111059, -0.00604681391, 0.0175296105, -0.0255483016, 0.00802279, -0.0357479453, 0.00776451919, 0.0145533485, 0.0257122833, 0.00176382484, -0.0179559626, -0.000209460617, 0.035551168, -0.0436846428, -0.0559504516, -0.0242036544, -0.0367646292, -0.0192022212, 0.000437881565, 0.0225966368, -0.0155864321, -0.00821136869, -0.0784487, 0.00359939155, 0.00553847151, -0.0222030804, 0.000196905792, 0.015734015, -0.0070307022, -0.0329766572, -0.0162915513, 0.0383388512, -0.00215430558, 0.00385971204, 0.0128643401, 0.00938793458, -0.0206780545, 0.0171688516, 0.00460787723, 0.03597752, 0.0173656307, 0.00784241, 0.0479809567, 0.0424383841, -0.0178903695, 0.0129709281, 0.0183003247, 0.0101094535, -0.0113885077, 0.00847783778, 0.0401426442, 0.00312794512, 0.0606731176, -0.0190874338, -0.00503422879, -0.0258270707, 0.0394539237, 0.00331652374, -0.0243348386, 0.0354199819, 0.0309268907, 0.00286967447, -0.0567375645, 0.00170335674, -0.0175788049, -0.0323207341, -0.0155864321, -0.0241544601, -0.000801971531, 0.00426761573, 0.00722338073, 0.00367933256, -0.0167670976, 0.0266469773, 0.0314516313, 0.0166195147, -0.0248431824, -0.0113475127, -0.00660025142, -0.0246300064, -0.00283277873, 0.0149551034, 0.000184350967, 0.017562408, 0.0132414978, -0.00866641663, -0.00640347367, 0.0418808497, -0.0234329421, -0.0317140035, 0.0136596505, -0.00441109948, -0.0177919809, -0.00258680643, -0.0183167215, 0.0336817801, 0.0248267837, -0.02194071, 0.00939613394, -0.0195137858, -0.0265157912, -5.68169926e-05, 0.0305497348, 0.0243184417, -0.0101422491, -0.0121920165, 0.0111343367, 0.00198827451, -0.0166031159, 0.00430861115, -0.0506702513, 0.0200877208, -0.0232689604, -0.0114295036, -0.0142581826, 0.0115688872, 7.34073e-05, -0.0132988915, 0.0130775161, 0.0223014709, 0.0147911217, 0.0267289672, -0.00896978285, 0.0102570364, -0.0224982481, -0.0195301846, -0.0495223813, -0.00644446909, -0.00765793119, -0.0128069473, 0.00605091359, -0.0250563566, 0.0391259603, 0.00109457585, -0.0167588983, -0.0106915869, 0.0178411752, -0.00842864346, 0.0181035455, -0.00164903793, 0.0162587557, -0.00121346232, 0.00214610645, 0.0152748674, 0.00859262515, 0.0117738647, 0.0499815308, -0.0159963854, -0.00251916423, -0.00668634148, -0.00839584786, 0.00100336119, -0.00342311175, -0.00380026875, 0.0167015046, 0.00928134751, 0.0367974266, 0.00250071636, -0.0373877585, -0.0166851077, 0.0336161852, 0.00835895166, 0.00978968944, -0.00817037281, -0.00184889021, 0.00452998606, 0.0100684576, 0.0232361648, 0.0111261373, 0.0159389917, 0.0148485154, 0.0153896539, 0.00812937785, 0.0261878297, 0.0070143044, -0.00825646333, -0.00625179056, -0.0134218773, 0.0345016867, 0.00948632415, -0.0341409259, -0.00426761573, 0.0540810637, -0.00145123538, 0.0231213775, -0.0312548541, 0.0113147162, 0.000658487785, -0.00685852207, -0.000616467558, 0.00973229576, -0.00187143765, 0.0336161852, 0.010396421, 0.00544418255, -0.00830565766, -0.00672323722, -0.0337145738, -0.0103636244, -0.00323043345, 0.00872381, -0.0407657735, -0.00773582235, -0.015627427, 0.0198417492, 0.0227606185, -0.00842044502, 0.0176771954, 0.0122494102, -0.0140040116, 0.0170376673, -0.00356249581, -0.045455642, 0.0839584768, -0.00630508456, 0.0102242399, -0.0413233116, 0.0190546382, 0.0356495567, -0.00555077, -0.0293362718, -0.0109621566, 0.0247447919, 0.00906817149, -0.00414872915, -0.0405689962, 0.00950272195, 0.0129709281, 0.00135797099, 0.0212847851, -0.00186016399, -0.0102570364, 0.0134628722, -0.0175460093, 0.0192022212, 0.0198581479, 0.0281884018, 0.00720698247, 0.0198417492, 0.0176116023, 0.00580494152, -0.0143237747, -0.0115278922, 0.00872381, -0.0220391, -0.0408969596, 0.012331401, 0.0194153972, 0.00584183726, 0.000343848485, -0.022940997, 0.0366334431, 0.0160701778, 0.00751444744, 0.0116262808, -0.00355019723, -0.0339441486, 0.0149059091, -0.00961750932, 0.0133234886, 0.00405444, -0.0201861095, 0.0348296501, -0.0187266748, 0.0170048717, -0.0148075204, -0.0101832449, -0.0282703936, 0.00193190586, -0.0266141798, -0.0222686734, -0.0353871845, -0.0401754417, 0.00578444358, -0.0161029734, 0.0151764778, -0.000347435591, 0.0229901914, -0.00219325116, 0.00131390092, 0.0409625545, 0.00774402125, 0.000683085, 0.0431927, -0.0173000377, 0.0244660247, -0.00631738314, 0.0112491241, -0.0553273223, -0.00609190902, -0.00208563847, -0.00231623719, 0.0249415711, -0.00349280378, -0.0178083796, -0.00562046235, 0.013479271, -0.0338457599, -0.019284213, -0.00805148669, -0.0165293254, 0.00855163, 0.0218751188, -0.000735866546, -0.00490304362, -0.0138236322, 0.0263682082, -0.00384331401, -0.0136104561, 0.00394990202, 0.0135612618, -0.0268273558, 0.00776861887, 0.00484974962, 0.0148567148, 0.00691181608, 0.0134710716, -0.00495633762, 0.0253679212, 0.00459147897, 0.00720698247, -0.0194153972, 0.053129971, -0.014946904, -0.0115852859, -0.0197433606, -0.0287787355, 0.0224490538, -0.00209178776, 0.0165129267, 0.00258065714, 0.0210224148, -0.0348296501, 0.0293854661, -0.0062107956, -0.00848603714, -0.0273029022, 0.0205632672, 0.00249046739, -0.0201533139, 0.0402738303, 0.0261714309, 0.0301725771, 0.0202189069, -0.00690361671, -0.0142909791, 0.0115196928, -0.0138974236, 0.00792030152, -0.0365350544, -0.0133972801, 0.00326732942, -0.0215307567, -0.0257286802, 0.0205140729, 0.000402779318, 0.0194481928, 0.00801869, 0.029467456, 0.0180215556, 0.00574344862, -0.000500399503, 0.00877300464, 0.0120362341, 0.0187594723, -0.0522772707, 0.0062804874, -0.0248595793, 0.00607961044, -0.0449637, -0.0158078074, -0.0224326551, 0.0106997862, 0.0472594388, -0.0240724683, -0.0028245796, -0.0204812773, 0.025515506, -0.0284835678, -0.00131595077, 0.0113311149, 0.0125199798, -0.0150698908, 0.0186610837, 0.0187594723, -0.0151928766, 0.0227442198, 0.0269585419, -0.0360431112, -0.012544577, 0.0101914434, -0.00728487363, 0.0213339794, -0.0122494102, -0.0283359848, 0.0123068038, 0.000839379791, 0.00543598318, 0.00423072, -0.00950272195, -0.00198622467, -0.0582461916, -0.0400114618, 0.0134628722, -0.000628766196, 0.00309719867, 0.0137662385, 0.0256138947, 0.049751956, -0.00594432559, -0.0120198363, 0.024810385, -0.00973229576, -0.0275324769, -0.00448489143, 0.0298610125, -0.00530479802, -0.00916656, 0.0346328728, 0.015947191, 0.0294346604, 0.0256466903, -0.0117656654, 0.0284835678, -0.010396421, 0.0362070911, 0.00380436843, 0.0234985333, 0.0227606185, 0.000809145684, -0.01269216, 0.00302340696, -0.0136022568, 0.00349075394, 0.0107735777, 0.00869921315, -0.0238428954, -0.0279916245, -0.0362398885, -0.00767432945, -0.0192678142, -0.0140614044, -0.00569425384, 0.0220718961, 0.00242692465, -0.00600991817, -0.0198581479, -0.0238264967, -0.00492354156, -0.000965440471, -0.00455868291, -0.0176935922, -0.0259582549, 0.000251865189, 0.0106915869, 0.00503422879, 0.00755954254, 0.00389660802, 0.00456278259, -0.0274996795, -0.00154859934, -0.0238100979, 0.00487844646, -0.0444061607, 0.0108473692, 0.0526708253, 0.00944532827, -0.018136343, -0.0108801657, 0.0201533139, 0.00737096369, 0.0123805953, -0.00744475517, 0.00967490207, 0.0291558914, -0.0255319029, 0.0140696038, -0.00128417928, -0.0105768, 0.0098142866, -0.00646496657, 0.0218423214, 0.00266879727, 0.0151190851, -0.00288197305, -0.0131349098, -0.0349936299, 0.0392899439, 0.0114213042, -0.0547697879, 0.00653465884, 0.0299430024, -0.00767022977, 0.0230229888, -0.0111425361, 0.0160373803, -0.0221866835, 0.0206780545, -0.0230393857, -0.00183966628, 0.000227139855, 0.0479481593, -0.00566555746, 0.0223014709, -0.000588283234, -0.00293116737, 0.0143155763, 0.0075923386, -0.0523428619, 0.00750214886, 0.022153886, -0.00842044502, -0.0188250635, -0.0333702154, -0.00830565766, -0.0316976048, 0.00477185845, 0.00624769134, 0.00347435591, 0.0112573225, 0.0140860016, -0.00910916645, 0.0138892243, -0.0167506989, 0.0234821364, -0.0204648785, -0.035551168, -0.000724080368, 0.0237773024, 0.0102734342, -0.0180707499, -0.0226786267, -0.00523100654, 0.0127905486, 0.0287295412, -0.00643626973, -0.00901077781, 0.0102406386, 0.018497102, -0.024875978, 0.00966670364, -0.0120198363, 0.0129463309, -0.00637067715, -0.00170848123, 0.0247775894, -0.00226294319, -0.0251547471, -0.0146845337, -0.00423072, 0.0125363776, 0.00443569664, 0.00182531797, -0.01684089, 0.0258270707, -0.0169064812, 0.00148505648, -0.0286639482, -0.0379780903, 0.022875404, -0.0107243834, 0.00938793458, -0.0014994049, 0.00364858611, -0.0148157189, -0.0244332273, 0.0407001823, 0.0115114944, 0.000133362992, 0.00637067715, 0.0136350533, -0.0115688872, -0.0218259245, 0.0500471219, -0.0222850721, 0.0147993211, 0.0322879367, 0.0204320829, -0.0162505563, 0.0205468684, -0.0206452571, -0.00330217532, -0.0330586508, 0.00321403542, 0.00597302243, 0.0110195503, -0.013266095, 0.0151436822, -0.00567375636, -0.00619029766, 0.00108637672, 0.0177263897, 0.00784241, -0.0028512266, 0.0124871833, 0.0390931666, 0.0133234886, -0.00785470847, 0.0194481928, 0.000879350235, -0.00582134, 0.0105522033, 0.0176935922, 0.00603451533, 0.0107407812, 0.0119952392, -0.0109293601, -0.0285491608, -0.016029181, -0.00848603714, 0.0171032604, -0.0168080926, 0.00231418735, 0.0112409247, -0.0118722534, -0.00922395382, -0.00535809202, 0.0261550322, 0.00778091745, -0.00844504219, -0.0115278922, -0.0040769875, 0.00598122133, -0.0112819197, -0.0300085954, 0.00293731666, -0.00485794898, -0.00716598704, -0.00658385316, -0.0200221278, -0.00898618065, -0.0257286802, -0.00819087122, -0.010970355, -0.0150616914, 0.0290575027, 0.0137580391, -0.0308449, 0.000148223815, 0.0103308279, 0.00962570775, -0.0107325828, 0.00975689292, -0.0154306497, 0.0265485886, -0.00523100654, 0.0022834409, -0.0089205876, -0.00126573141, 0.00506292563, 0.0246955976, -0.0121510215, 0.0271553192, 0.0384700373, -0.00987168, -0.0252695326, -0.00792030152, -0.00921575446, 0.00975689292, -0.0406017937, -0.0049071433, 0.021579951, -0.023941284, -0.000457098155, -0.00364448642, 0.00688311923, -0.0332718268, 0.0794325918, -0.0124953827, 0.000199724222, -0.0204976741, -0.0135202659, -0.0198417492, -0.0114131048, 0.0160373803, 0.0201041196, -0.0323699266, 0.0249743666, -0.0144795571, -0.00956831407, 0.00803918764, -0.0188086666, 0.00480875466, -0.0123969931, 0.0170704629, 0.0349280387, -0.0346000753, -0.00434960658, 0.00661664922, 0.0283523835, 0.00945352763, -0.0175788049, -0.0122822067, 0.00555487, 0.00317099015, -0.0258598663, -0.0145697473, 0.00546877971, -0.00976509228, 0.050178308, -0.00213380787, 0.00896158349, 0.00790800247, 0.01630795, 0.00133542356, -0.00102642109, -0.0135366647, 0.0191366281, 0.0123641975, -0.00331857358, -0.0200713221, 0.00614520302, -0.00796129648, -0.0162259601, -0.0154470475, -0.00856802799, 0.017201649, -0.004443896, 0.00138871744, -0.0139056221, 0.00853523146, -0.0204976741, 0.033550594, -0.0192678142, -0.00836305134, 0.0412577204, -0.0209404249, -0.0134874694, 0.00589103159, 0.0131677063, -0.023728108, 0.024302043, -0.0032878269, 0.00640757289, 0.0109129623, -0.0134874694, 0.0172508433, 0.038502831, 0.00883859769, 0.0102734342, -0.0137498397, -0.002195301, 0.00253351266, 0.0202353038, -0.0156602226, 0.0147911217, -0.00256015966, -0.0157258157, 0.015947191, -0.0252859313, 0.0209896192, -0.00371007901, -0.0224490538, -0.00913376361, -0.0300905854, -0.0101258513, -0.0262534209, 0.0137170441, -0.0178083796, -0.0136760483, -0.0209240261, -0.000639015, -0.0151108857, 0.00839584786, 0.0135694603, 0.00117759139, -0.00237363065, 0.0170704629, 0.0490632355, -0.00269954372, 0.00697330898, 0.00711679272, 0.00100848556, 0.0460131802, 0.0127905486, 0.0153896539, 0.0207600445, 0.0405362025, 0.0221046917, -0.00714958878, -0.00798999332, 0.00538268918, 0.00128827884, 0.0264174026, 0.0187430736, 0.0158733986, -0.00979788881, -0.0185954906, 0.0115278922, 0.0208256375, -0.00509162247, 0.0143975662, -0.00329397619, -0.0145205529, -0.00186221371, -0.0245316178, 0.0146845337, 0.00138051843, 0.0123805953, 0.0177427866, -0.0108637679, -0.00885499548, 0.012372396, -0.00233058562, 0.0209404249, 0.00383101543, 0.0158733986, -0.0200713221, 0.00173000374, -0.0164473336, -0.0221046917, -0.00344770891, -0.0208420362, -0.0218587201, 0.0278768372, 0.016201362, -0.00462427549, -0.0237773024, -0.0106341932, -0.0123477988, -0.00117451674, 0.011864054, 0.0071290913, -0.00192370673, 0.00896158349, 0.0040769875, -0.00282867905, 0.0280080233, 0.0163407456, 0.0113311149, -0.00723157963, -0.00469806697, 0.0264993943, 0.0187266748, -0.0451604761, -0.0114049064, 0.0102242399, 0.00331037445, -0.0143975662, 0.00946172699, -0.0105604017, 0.016627714, -0.0112983184, 0.024875978, -0.0203992855, 0.0176771954, -0.0092977453, -0.0217767302, -0.0103718238, -0.00383716472, 0.0168736856, 0.00415897835, 0.000757389062, -0.004443896, -0.00275693717, 0.0091747595, 0.00995367114, -0.00124933326, -0.0127741508, 0.0165539216, 0.0134628722, 0.0274996795, 0.0183823146, -0.00183966628, -0.00497273589, 0.00207129, 0.02194071, 0.00515311537, -0.0157094169, 0.00833845418, 0.0197597574, 0.0117000723, -0.00795309804, -0.0156766213, -0.0326814912, 0.00430861115, -0.0145451501, -0.00698560756, -0.0113147162, 0.0118148597, -0.025089154, 0.00478005782, 0.00164698809, 0.00946992543, -0.0117246695, 0.000553949678, -0.0251055509, -0.00567375636, -0.00338211632, -0.00625999, 0.0034538582, -0.0159307923, -0.0166523103, 0.00390070747, 0.00556716835, -0.00358914281, 0.0146599365, -0.0241872557, 0.0360431112, 0.0417496637, -0.0212683864, 0.0193334073, -0.00182019349, 0.0180051569, -0.0128397429, -0.0112163275, 0.0053006988, 0.011970642, 0.00320378644, -0.0231705718, -0.00711269304, -0.00592792733, -0.000149248692, 0.0145369507, -0.00185811415, -0.00424711825, 0.0175132137, -0.0117984619, -0.0034887041, 0.0127085578, -0.00683392491, 0.00969949923, -0.0260566436, 0.00520640938, -0.00359939155, -0.0149715012, -0.00688721845, 0.00381051772, 0.0207764432, -0.00690361671, 0.00382896559, -0.0347312614, -0.031041678, -0.0180871487, -0.0257942732, -0.00309719867, 0.00516951364, -0.0367646292, 0.0206944514, -0.0111507354, -0.0118886512, 0.0260730423, -0.00431681, 0.00608370965, -0.0164883286, 0.00349485362, -0.0123641975, -0.0199401379, 0.0297790207, 0.00655515632, 0.0178575739, -0.0111179389, 0.0280408189, -0.000375363656, -0.00254171155, 0.0408313684, -0.0113639105, 0.0203172956, 0.0123559982, -0.0103800222, 0.00237773033, 0.0306645203, 0.0283687823, 0.00148915604, -0.00475136098, -0.0186938792, 0.000174998902, 0.0153158624, -0.0140778031, 0.0210060161, 0.0099782683, -0.00911736581, 0.022153886, 0.0125609748, 0.00748985028, 0.0160783753, -0.0226622298, -0.0145123536, -0.0139138214, 0.000634403, -0.0118886512, -0.00792850088, -0.0235969238, 0.0193170086, -0.00908456929, -0.00533759454, -0.0113229156, 0.00138461788, -0.0138072334, -0.0267617647, 0.0188578609, 0.00106075464, -0.0120280357, -0.0349280387, -0.0119214477, -0.0210060161, 0.0192186199, 0.0154306497, -0.0192350186, -0.0305333361, 0.0097240964, -0.0197597574, -0.00127495534, -0.0172836389, -0.00364038697, 0.00642397115, -0.0183659159, -0.0205960628, 0.0271881148, -0.0190874338, 0.0141187981, -0.00453408575, 0.00225884374, -0.00787520688, 0.00628868677, -0.0257286802, -0.00268724514, -0.0134382751, -0.0205796659, -0.00942893047, -0.00752674602, 0.0162095614, 0.0157668106, 0.0383388512, 0.00752674602, 0.00309719867, 0.00328167761, -0.000707682222, 0.0175788049, -0.00658795238, 0.00817447249, 0.00292091863, 0.00135694607, -0.00566145778, -0.00727257505, 0.025810672, 0.0159389917, -0.0215471555, -0.00136002072, 0.00908456929, -0.00271799159, -0.00255401037, 0.00826056302, -0.00587873301, -0.00438240264, -0.00209691213, -0.0122412108, -0.0272045135, 0.00220350013, -0.0171688516, 0.00105255563, 0.000742015836, -0.00721928105, -0.0076005375, 0.0120936278, -0.00842044502, -0.00974049512, 0.00471036555, 0.008781204, 0.0104784109, 0.0125117805, -0.0216455441, -0.0134300767, -0.0208584331, 0.000214713145, 0.00679292949, -0.0162751544, 0.0349608324, 0.0143647706, 0.00319558755, 0.00120833796, 0.0160373803, 0.00428811368, -0.011609883, -0.0270405319, 0.00883039832, -0.000370751688, 0.00239207852, -0.00538268918, -0.0318943821, -0.0363382772, 0.0148075204, 0.0254335143, -0.000187425612, 0.016562121, 0.0364366658, 0.0337473713, 0.0178739727, 0.00483335182, 0.00181609392, 0.0146927331, 0.00759643828, -0.0349608324, 0.0166359134, -0.0101258513, -0.0103636244, 0.014840316, -0.018136343, -0.0012124374, -0.00769072771, 0.00273029017, -0.0368630178, -0.00664944574, 0.0109457579, -0.0203664899, 0.0111917304, -0.00932234246, -0.00138256815, 0.0145287514, -0.00168183423, 0.0127659515, 0.0124051925, -0.00459557865, 0.0233673491, 0.014053206, 0.00706349872, 0.00441109948, 0.00138359307, 0.00672733691, -0.0248923767, 0.0155372377, -0.00407903735, 0.0037961693, 0.000358709309, -0.0269257445, -0.0102652358, -0.0106751891, -0.00346820662, -0.0148977097, 0.0115524894, 0.00044146867, 0.0104948096, 0.0127085578, 0.00561226346, -0.000439162686, 0.00618619798, 0.00861722231, 0.0117164711, -0.0333046205, -0.00627638772, -0.00635017967, 0.012224813, 0.0136350533, -0.0044520949, 0.0117902625, -0.00317099015, -0.00613700366, 0.00742835738, -0.00539908744, 0.0228426084, 0.0279916245, 0.0328126773, 0.0288607255, 0.00369163114, -0.0101258513, 0.0193006098, 0.00772352377, 0.0104620131, -0.0150206955, -0.00503422879, 0.0143155763, -0.00689541781, -0.0371909812, -0.00527200196, 0.0139384186, -0.00153322611, -0.0146271409, -0.00225269445, -0.00281638047, -0.00788750499, 0.00095211697, 0.016521126, 0.0134956688, 0.000272106641, -0.00375517388, 0.00269339443, 0.0122822067, 0.0391587578, -0.0361742973, -0.00280203205, 0.0308449, 0.00498093478, -0.023154173, -0.0119214477, -0.00773172267, 0.0067355358, -0.0110031515, 0.0124707855, -0.0123396, 0.00915016234, -0.0379452966, 0.0123477988, 0.000615955098, 0.0017873972, -0.00731766969, 0.00307465112, 0.00120833796, 1.65742913e-05, 0.00532529596, -0.00384536386, -0.0137908356, -0.0161029734, 0.0012585572, 0.00413848041, 0.000636965211, 0.00385151315, 0.0124297896, 0.0144959558, 0.0268765502, -0.0277292542, 0.0049686362, -0.00368548185, 0.0136760483, 0.0155536355, -0.00748165138, 0.00137436914, -0.0202025082, -0.00607961044, -0.00902717561, -0.0202353038, -0.0061738994, 0.00698150788, 0.00194932881, 0.00221579871, -0.00938793458, -0.0108965635, 0.00995367114, 0.00133952301, -0.025236737, 0.0269913375, -0.0156356264, -0.00422662031, -0.00668634148, 0.00744065596, 0.0141105987, 0.00498503447, -0.0155946305, -0.0087976018, 0.016668709, 0.0130365212, 0.00778091745, 0.0109047629, 0.0257778764, -0.00869101379, -0.00353994849, 0.00170950603, -0.0189890452, -0.0201697126, -0.0237117093, 0.00539908744, 0.007994093, 0.016094774, 0.0214979611, 0.0164227374, 0.0399458669, -0.000540113717, 0.00493993936, 0.0134546738, 0.0028594255, -0.00121448725, -0.0193826016, -0.0125363776, -0.00452178717, -0.0243840329, 0.0109539572, -0.00952731911, -0.0153322602, -0.0114868972, -0.018349519, -0.00644446909, 0.00534169422, -0.00578444358, -0.0104866102, -0.000466065889, 0.00459557865, -0.0449637, -0.00570655242, -0.000871663622, -0.0323699266, -0.00288812234, -0.0109785544, 0.0336161852, -0.00964210648, -0.00124830834, -0.0212683864, -0.0061124065, 0.0213831738, -0.00652645947, 0.0264665969, -0.0243840329, -0.00320788613, 0.00357684423, -0.0101094535, 0.00771122519, -0.00829745829, -0.0146927331, 0.000354609772, 0.0214815624, 0.00742015801, 0.00711269304, 0.0119378455, -0.0123068038, 0.00663304748, -0.0215471555, -0.00609600823, 0.00122268626, 0.0220718961, 0.0074242577, 0.0291722901, -0.0106587904, -0.0116426796, 0.00114377029, -0.0143401735, -0.0111671332, 0.0037346764, 0.0243676361, -0.0172672402, 0.0113393134, 0.0124871833, 0.00727667427, -0.00220964942, -0.0124461884, -0.0223834608, -0.0285819583, 0.00805148669, -0.0110933417, 0.00805148669, 0.0123559982, -0.0042758151, -0.000444543315, -0.00286147534, 0.0112327253, -0.018497102, 0.0168244913, 0.0137990341, -0.00875660684, 0.0137170441, 0.01692288, -0.0167916957, 0.00502193, 0.00361988926, -0.00715368846, -0.00208461354, -0.00301930751, 0.000635427888, -0.0241052657, 8.56738723e-07, -0.00746525312, 0.0178903695, -0.0062722885, -0.00686262129, 0.00218710187, 0.015881598, 0.032402724, -0.000599557, 0.0142171867, 0.0152174737, 0.0132578956, -0.00375927356, -0.0136432517, -0.0230721831, 0.00823596586, -0.0142417839, -0.0099782683, 0.0203500912, 0.0129381325, 0.00121448725, 0.0263026152, 0.00950272195, -0.0229901914, 0.00684622349, 0.00484974962, 0.00850243587, -0.00832615513, 0.00740376, -0.0217111371, 0.0139056221, -0.00684212381, -0.00540318713, 0.00810478069, 0.011864054, 0.0028778736, -0.00270364317, -0.00216660416, 0.00471856492, -0.0112245269, 0.00660435064, 0.00992907397, -0.00220759958, -0.00869921315, -0.0138400299, -0.0134382751, 0.0128233451, 0.0197105631, -0.0284835678, 0.00226089358, -0.00864181947, -0.0192678142, 0.0213503782, -0.00405444, -0.00514491647, -1.46926686e-05, -0.0054236846, 0.00826056302, 0.0134054795, 0.0123887947, -0.0133480858, 0.0106669897, 0.00104128185, 0.00485794898, -0.00260730414, 0.00528020086, -0.00860902295, 0.00980608724, -0.00194727909, -0.0224490538, 0.0289263185, -0.0248431824, -0.00590333, 0.0226622298, -0.00156089792, 0.0149551034, -0.00644446909, -0.00326322974, -0.00324273203, 0.0213503782, -0.00217890274, 0.000700508, -0.0177263897, 0.000196777677, -0.00213380787, 0.0116344802, -0.0274996795, -0.00538268918, -0.00590333, -0.00833025482, -0.0167670976, -0.0166605096, -0.0067355358, 0.0248923767, 0.00375517388, -0.00277743489, 0.0107981749, -0.0150698908, -0.0125937713, 0.0188906565, 0.00252941297, 0.0233345535, -0.0154634453, -0.00846963935, 0.00960931, 0.00484974962, 0.0118066603, 0.01154429, 0.0322059467, 0.00469396729, 0.00739146164, -0.0207600445, 0.00928134751, 0.0230065901, 0.0103800222, 0.0139548164, 0.0200385265, 0.0129545303, -0.00263600098, -0.00748165138, -0.0135694603, 0.00387816, -0.00950272195, 3.9906412e-05, -0.0292542819, 0.00613290444, -0.00692411466, 0.0111425361, 0.00443979632, 0.00425531715, -0.0113229156, 0.0277948473, 0.00605501328, -0.024023274, 0.00541138602, -0.00115606887, -0.0138482293, 0.00471446523, -0.00599352, -0.000177945432, -0.00561636267, 0.00327757816, -0.00649366342, -0.0143401735, -0.0075308457, 0.0145369507, -0.000648751389, 0.00301725767, 0.0045135878, -0.0083343545, -0.00826876238, -0.00862542167, -0.00557126803, -0.00514901569, 0.00387201062, -0.00432500942, -0.00637887651, 0.0258434676, 0.00549747655, 0.0140286088, 0.00128315447, 0.0104128188, 0.0322223455, 0.00714958878, -0.0170048717, -0.00191140815, -0.0175132137, 0.00303160609, -0.0223178677, 0.00948632415, 0.00349280378, -0.00160291814, 0.0245972089, -0.0138646271, 0.0085106343, -7.35994618e-05, 0.00543598318, -0.0194317959, -0.00290042092, -0.0199401379, -0.0155536355, 0.0135038681, -0.0126593634, 0.00710449414, 0.0230393857, 0.0140286088, 0.0153896539, -0.0224982481, -0.000379463192, -0.00642397115, -0.00204361812, 0.00363013824, 0.0105768, 0.00725617679, 0.00855163, 0.0360759087, 0.00120526331, -0.0100520598, -0.0306481235, -0.0196121745, -0.0191366281, 0.0145451501, -0.00660845032, -0.0118066603, -0.00315869157, -0.0086582182, -0.000657975383, 0.00125343283, 0.00899438, 0.0153322602, -0.012331401, 0.0144467615, 0.0312712528, -0.00963390712, -0.0112163275, 0.00430451147, 0.0147583261, 0.018283926, 0.0129545303, -0.0217767302, 0.013118512, -0.0151190851, -0.0180051569, 0.000549850112, 0.00263600098, 0.00147788238, -0.0148485154, -0.00514081679, 0.0167261027, -0.013585859, 0.0158897974, -0.0203664899, 0.0229082014, 0.0168080926, -0.018349519, -0.0110523459, 0.00823186617, 0.00295781437, -0.00737916306, 0.0206780545, -0.00529659912, 0.00278768386, 0.00890419, 0.00061134313, 0.00432090973, 0.0290739015, 0.0146927331, 0.0178903695, -0.00375927356, 0.0195137858, -0.0081170788, 0.00343541033, 0.0139958123, 0.00851883367, 0.010716184, 0.00238797907, 0.0158078074, 0.00806788448, 8.14782543e-05, 0.0136022568, -0.0301233828, -0.00601811707, -0.0136022568, 0.00919935666, 0.0219079144, -0.00598532101, 0.0105112074, 0.000955704076, 0.00886319485, 0.00373262656, -0.00212150929, 0.00896158349, -0.00237773033, 0.00338621577, -0.0110605452, -0.000944430358, -0.0289591141, 0.0139548164, 0.0134956688, 0.0048989444, 0.00993727241, 0.00500143273, -0.000280818145, 0.0227442198, 0.0203008968, 0.0328290761, -0.00909276865, 0.00605501328, 0.0154716447, -0.0271061249, -0.00537449028, -0.0152256731, -0.00185606442, -0.0123887947, -0.00705529936, -0.00697330898, -0.00996187, 0.0128971366, 0.000218428351, 0.00934694, -0.0160537791, 0.0110113509, -0.00379821914, -0.0242200531, -0.0157176163, 0.0266797729, -0.00505062705, 0.00578444358, -0.00944532827, 0.00326322974, 0.00294551579, -0.00703480188, 0.00217275345, -0.000161803517, -0.0123232016, -0.00770712551, -0.0074693528, 0.0252695326, 0.00383511488, -0.0040503405, 0.0111261373, 0.0217111371, -0.000840404653, 0.000240975787, 0.017628001, 0.0153486589, -0.00597712211, -0.00585413584, 0.0240068771, 0.0105440039, -0.00672323722, 0.00238387962, 0.00561226346, 0.0133480858, -0.00837944914, -0.00372442743, -0.0178247783, 0.00466937, -0.00962570775, 0.00118169095, 0.0123559982, -0.0165539216, -0.0104702124, 0.00131082628, 0.0190546382, 0.000380231853, -0.00356454565, -0.00385356275, -0.0113475127, 0.00442749774, -0.00795719773, -0.0297626238, -0.00479645608, 0.00560816377, -0.0039703995, 0.00177304889, 0.00403804192, 0.017136056, -0.00379206985, 0.00705939904, 0.00181301928, -0.00404829066, 0.00780141493, -0.00351740094, -0.0120198363, -0.0117164711, 0.00910096709, 0.0074857506, -0.00940433331, -0.0047308635, 0.0172672402, 0.00336366845, -0.00544008287, -0.0102652358, -0.0172672402, 0.0182183329, 0.0103226285, -0.0139138214, 0.0108555686, 0.0147583261, -0.0277620498, -0.00221579871, -0.00549337687, -0.0112573225, 0.0101996427, 0.00244127307, -0.00485794898, -0.00448079174, -0.0199729335, -0.0188086666, 0.0112819197, 0.0207436476, -0.00118374068, -6.7834495e-05, -0.00151477812, -0.00583773758, 0.0139876129, 0.0212355908, 0.00666174432, -0.0106833884, 0.00575164752, 0.0139302192, -0.000859365, 0.00423072, -0.00828106049, 0.00277948473, -0.0200221278, 0.0134300767, -0.00141024, 0.00397654902, -0.0134956688, 0.000353841111, 0.00928954594, 0.0030521038, -0.017628001, 0.00128110463, 0.00030900244, 0.00585413584, 0.016521126, -0.000620054663, -0.012290406, 0.00742015801, -0.00502603, -0.0220063031, -0.00805968605, 0.0135366647, -0.00537449028, 0.000370239257, -0.00698560756, 0.00450948859, 0.0248595793, 0.00995367114, 0.0208256375, 0.00446849316, 0.0212519895, -0.0146435387, -0.0113639105, 0.00546468, 0.00750624854, -0.00726437569, -0.000831180718, 0.014840316, -0.0291886888, -0.0158160049, 0.0122412108, 0.0104702124, 0.0048620482, -0.00547287893, -0.000571372686, -0.00489484472, 0.0279752258, 0.0133644836, -0.00608370965, 0.00659615174, 0.0236297194, 0.00538268918, -0.0112491241, -0.0218915157, -0.0182019342, 0.0212355908, -0.0115196928, 0.024302043, 0.0128807388, 0.00562866125, -0.0149141084, 0.0162587557, -0.0109785544, -0.0100684576, 0.0113639105, 0.00386176188, 0.00651006121, 0.0142417839, 0.012585572, 0.00905997213, -0.00405444, -0.00282662944, -0.0135612618, 0.000673861068, -0.00716598704, 0.0108719664, 0.0112327253, -0.00951912, -0.011609883, -0.0017668996, -0.00261960272, 0.0124707855, 0.00339031545, 0.0028245796, 0.0236953124, -0.00669454038, -2.35563111e-05, -0.00849423651, -0.00625999, 0.00845324062, 0.0344032981, -0.00639527431, -0.00290247076, 0.0136186546, -0.00153117627, -0.00816217437, -0.0131103126, 0.00127905491, 0.00249046739, 0.00735046621, 0.00141638936, 0.0204648785, -0.00834665354, -0.000800434209, 0.00569835352, -0.00470216665, -0.018283926, 0.0083712507, -0.010503008, -0.0176607966, 0.0142827798, 0.00372237759, -0.0158570018, -0.012798748, -0.0127167571, -0.0197761562, -0.0122084152, 0.00407288782, -0.00727667427, -0.00612880476, 0.0196121745, 0.0103062307, 0.0256466903, -0.00297626224, -0.0106587904, 0.012118225, -0.0236133207, -0.0189562496, -0.0109129623, 0.00767022977, 0.0209404249, -0.00522690685, -0.00331857358, -0.0207928419, -0.0129627297, 0.0116344802, 0.00637477683, 0.0112737212, 0.00471036555, 0.00620259624, -0.00890419, 0.00513261789, 0.0150288949, 0.0112081282, -0.00332677248, 0.00588283269, 0.00327552832, 0.0104702124, 0.00228549074, 0.00579264294, -0.0291066971, 0.00196162751, 0.0266961716, 0.015734015, 0.00188886072, 0.00385151315, -0.0284343734, 0.00419792393, 0.00711269304, 0.0184807032, 0.0112081282, -0.00497273589, 0.023301756, 0.00530479802, -0.00730947079, 0.023662515, 0.0209076274, -0.000843479298, -0.0086582182, 0.00991267525, 0.00400934508, 0.00404419098, 0.001110974, 0.0012852042, 0.0193334073, -0.000982863479, 0.00755544286, 0.0074242577, 0.00966670364, 0.0292870775, -0.0114295036, -0.00669864, -0.0104538137, 0.00564505951, 0.00950272195, 0.00736686401, 0.0093141431, -0.00684622349, -0.00888779201, 0.0137416413, 0.022514645, 0.0148321176, 0.00165621215, -0.00037792587, 0.00349895307, 0.000678473036, 0.0108473692, -8.68589e-05, 0.0108637679, -0.0031668907, -0.00644446909, 0.0202517025, -0.00518181222, 0.00670683896, -0.0182183329, 0.00814577565, 0.025089154, 0.0211536, 0.00653055916, 0.0155454362, 0.005718851, 0.0121428221, 0.0238920897, 0.0176935922, -0.0112819197, 0.00421842141, 0.00913376361, -0.0151682794, -0.010396421, -0.0170048717, 0.0186118893, 0.0178903695, -0.0016869586, 0.00819087122, 0.00160086842, -0.00422662031, -0.00462837471, 0.0057639461, 0.0205468684, 0.022514645, 0.0249743666, -0.0324355215, -0.00174845161, 0.0113803092, -0.011290119, 0.0282867905, 0.0118066603, -0.0011847656, -0.00391095644, 0.00244332291, 0.00515311537, 0.0127167571, -0.00785061, -0.00984708313, -0.0203500912, -0.0244988203, 0.0195629802, -0.0193498041, 0.00119398953, -0.00338416616, -0.0129627297, 0.00468166871, -0.0118886512, 0.00994547177, -0.02194071, -0.00413233135, -0.017136056, -0.00509162247, 0.00129750278, 0.0215635542, 0.00596892275, -0.0265485886, -0.00911736581, -0.00465297233, -0.0217931271, 0.0176443979, 0.012544577, -0.00414053025, -0.0102324393, 0.00325503061, 0.0165539216, 0.000138231189, 0.00556306867, -0.00123396, 0.0130693177, 0.0085106343, 0.000497324858, 0.0102570364, 0.0252695326, 0.0158324037, 0.022727821, 0.00976509228, -0.0115524894, -0.00669454038, -0.00842864346, -0.000538576394, -0.00540318713, -0.0110441474, 0.0100684576, -0.0246955976, -3.14030767e-05, -0.00955191627, -0.00261140382, -0.00989627745, -0.00888779201, 0.0146271409, -0.000840404653, -0.0132824928, -0.00734636653, -0.00920755509, 0.000446849299, -0.000172949134, 0.0162833519, -0.000535501749, 0.00755954254, 0.0159635898, -0.0219735075, 0.0147173302, -0.0748411119, -0.00862542167, -0.000577009516, 0.0181035455, 0.00412003277, 0.0221374892, 0.00989627745, 0.00598532101, 0.0102406386, 0.00669044117, 0.0284343734, -0.0152584687, -0.00670683896, 0.00540728634, -0.0168244913, -0.00768252835, 0.011437702, 0.0201041196, 0.00798179489, -0.00294346618, 0.00364038697, -0.00299266051, 0.0192678142, -0.016094774, 0.00199749833, 0.016627714, -0.0062107956, 0.00285737589, 0.0134382751, -0.0105931982, -0.000273131503, 0.00871561095, 0.0101094535, -0.00658795238, 0.00153835048, 0.00382896559, 0.00121038768, -0.0203828868, 0.00563276093, -0.0239248853, -0.00280818134, 0.0100274626, -0.00173717795, -0.0086582182, -0.00419382425, 0.00636657793, 0.0045135878, 0.00803918764, 0.00691591529, 0.0204812773, -0.0176935922, -0.000750727311, -0.00646496657, -0.00943713, 0.0151846772, 0.00327142887, -0.00166236144, -0.00363628753, 0.0171524547, 0.0227934141, -0.0276800599, -0.0168080926, -0.00569015462, -0.0146353394, 0.0180871487, -0.00290862, -0.00184376584, 0.00508342311, -0.00596072385, 0.010035661, -0.00541958539, 0.00586643443, 0.00602631643, -0.00814577565, 0.00713729, 0.0195137858, -0.00435370626, 0.00329192658, -0.00105870492, 0.025089154, -0.00459147897, 0.0105440039, 0.0276308656, -0.0118476562, 0.0189726483, -0.00450128922, -0.0326814912, -0.00169925718, 0.00164596329, -0.00365063595, 0.0228590071, -0.00738326227, -0.0118066603, -0.000493481522, 0.00507112453, 0.00127393042, 0.00808018353, -0.0164637323, 0.0094207311, 0.00181814376, -0.00368343201, -0.00902717561, 0.000827593612, -0.00682572555, 0.0135366647, -0.0319271795, 0.0111179389, -0.0279096328, 0.00756774144, 0.0153896539, 0.0286311526, 0.00508752279, 0.0190054439, -0.0234657377, -0.00458328, -0.00887959264, 0.0117246695, 0.00721108168, 0.0138154328, 0.0181855373, 0.00814987533, -0.0239248853, -0.0044602938, -0.00428401399, 0.00196982664, 0.00651826058, -0.0113065178, 0.00533349486, -0.00292091863, 0.00933874, -0.0147993211, -0.00495223841, -0.000173717795, -0.0157422144, 0.00200159801, -0.00408313656, -0.00926494878, 0.0179395657, -0.0326650925, -0.0130939148, -0.00032130105, 0.00343131064, 0.0116262808, -0.0125117805, -0.0264502, -0.0150944879, 0.00973229576, 0.000133234891, -0.00347435591, -0.0135448631, -0.00209178776, 0.00489484472, 0.011970642, 0.0163571443, -0.00891238917, -0.0136760483, -0.00996187, -0.0121264243, -0.0122084152, 0.0118230591, 0.00157729606, -0.0176116023, -0.00250071636, 0.0155864321, -0.00710449414, -0.000440443779, 0.0121264243, 0.010035661, 0.0115852859, -0.0065756538, 0.00454228465, 0.024515219, -0.0325011127, -0.000136053321, 0.0187594723, -0.00726437569, -0.0120608313, -0.0103144301, 0.0257122833, 0.0159061961, 0.0161931626, 0.00689951703, -0.0195465833, -0.0188086666, -0.0242692474, -0.00841224566, -0.006505962, 0.0251875427, 0.0114950957, 0.00910916645, 0.00260935398, 0.00893698633, 0.010503008, -0.00681342697, 0.000586745911, -0.000294397847, -0.00411388325, 0.0136350533, 0.0165949166, 0.000913171389, 0.00352150039, -0.00332677248, 0.0301397815, -4.01306024e-05, -0.0124297896, -0.0109211607, -0.0262042265, 0.0160701778, -0.0310744755, 0.0070225033, 0.00595662417, -0.00156704721, -0.00429631257, 0.00860082451, 0.0228918027, 0.00616160082, -0.00893698633, 0.0137498397, -0.00373262656, 0.00589103159, 0.00979788881, -0.00351125165, 0.0147419274, 0.0083343545, -0.000469909195, -0.015947191, -0.0172180459, 0.0254007187, 0.0026442, 0.00313819386, -0.0202189069, 0.0140942009, 0.031763196, -0.0131841041, -0.0103882216, 0.0227606185, 0.00427991431, 0.0249087736, 0.0180215556, 0.00903537497, 0.0198745448, 0.00782191288, 0.0135202659, -0.00921575446, 0.0113885077, 0.012437989, 0.00591152953, -0.0148649132, -0.010503008, -0.0192514155, 0.00914196298, 0.00509982137, -0.0237445068, 0.0128069473, 0.0211699978, 0.00641577225, -0.00728487363, 0.0053088977, -0.00542778429, 0.0135202659, -0.0066207489, 0.00198622467, 0.00480875466, -0.018136343, -0.0150124971, -0.003226334, 0.00340466364, -0.00415897835, 0.010822772, -0.00465707155, 0.0109785544, -0.0164801311, -0.00343131064, -0.00697330898, 0.0162341576, -0.00201902096, 0.00823596586, 0.024449626, -0.0214651655, 0.0029393665, 0.00612060539, -0.0280408189, 0.00578444358, -0.000340005179, 0.000226371194, -0.010035661, -0.00925674941, 0.000495787477, -0.00579674216, -0.0191366281, -0.0111097395, -0.0112655219, -0.0135448631, -0.0298446137, -0.0147911217, -0.00369983027, 0.0013456723, -0.00260115485, -0.0209076274, -0.00306645222, 0.0185790919, -0.0180051569, -0.0128069473, 0.00753494538, -0.00604271423, -0.0125035811, -0.0122330124, -0.0102242399, -0.00346205733, -0.012544577, 0.0126101691, -0.00120013882, -0.0372237787, 0.00305825309, -0.00721108168, -0.0170704629, -0.00360349123, -0.0187430736, -0.00223629619, -0.00456688181, -0.0066822418, -0.0111917304, -0.00191653252, -0.0226294324, 0.0173164364, 0.0117492666, 0.0172672402, -0.0117082717, -0.00573115, -0.00708809588, -0.00726437569, -0.00548107829, 0.00217070384, -2.63907568e-05, -0.00568195526, -0.00413848041, -0.0236461181, -0.0157422144, -0.00741195912, -0.038929183, -0.0110605452, 0.00558356661, 0.0061124065, 0.011437702, 0.0160865746, -0.0176443979, 0.00212560897, -0.00626818882, 0.00319968699, -0.0254007187, -0.00141638936, -0.00310334796, 0.0141679924, 0.0137744369, 0.00115299423, 0.000268519536, 0.00465297233, -0.0210224148, 0.0149715012, -0.00828106049, -0.01692288, -0.00498093478, -0.00787930656, -0.00301725767, -0.0296478365, -0.00859262515, 0.00320378644, 0.00341081293, -0.0128397429, -0.00482925214, 0.00662484858, 0.00660845032, 0.00272414088, 0.0820562914, 0.00398064824, 0.010503008, -0.0373221673, -0.0136104561, -0.0278604385, -0.025597496, 0.04617716, 0.00301930751, -0.00180891983, 0.00520640938, 0.000123370381, -0.0131267104, 0.0165867191, -0.0149551034, -0.0104784109, 0.00421432173, -0.0146107422, -0.0370597951, 0.0109047629, 0.00471446523, -0.0185954906, 0.0228262097, -0.0148895103, 0.0062804874, 0.00160291814, -0.00659205206, -0.00875660684, -0.0216455441, 0.00179764605, 0.00555077, 0.0142909791, -0.00578444358, 0.00328987674, -0.00626408914, -0.00077634945, 0.00179149676, -0.0135284653, 0.00507112453, -0.0112983184, 0.0119952392, 0.0122412108, 0.0010976505, -0.0107571799, 0.00864181947, 0.0202353038, -0.00678883, -0.00462427549, 0.0131021133, -0.0107981749, -0.0241544601, -0.0196777675, -0.00259295595, -0.0214979611, -0.00919935666, -0.00967490207, 0.0399786644, 0.000169618259, 0.00488254614, -0.00184274092, 0.0110605452, 0.0156930201, -0.0083876485, 0.00974869449, 0.00242487481, -0.0216127485, -0.00216250471, 0.00956831407, -0.00977329165, -0.000648239, -0.0102078421, -0.0145451501, 0.0239576828, -0.0132332984, -0.00314639299, 0.00952731911, -0.0216127485, 0.00330217532, 0.00843684282, -0.00594432559, -0.02308858, 0.017562408, -0.0113065178, -0.00803508889, -0.0179723613, 0.0008834498, -0.0246955976, -0.000860902306, -0.0113147162, 0.036272686, -0.00737506337, 0.0203828868, -0.0228590071, 0.0190710369, -0.00896158349, 0.013479271, -0.0138974236, 0.0237609036, 0.0312548541, 0.000444287085, 0.0204976741, 0.0134874694, -0.0271881148, -0.00591562875, -0.0250563566, 0.0242200531, 0.0102980314, 0.0199073423, 0.0155864321, 0.0132251, -0.00664944574, 0.0120198363, -0.00462427549, 0.0173656307, 0.00932234246, 0.00507522421, 0.00881400052, 0.0101094535, 0.00659615174, -0.000563173613, 0.0142499832, 0.00563686062, 0.00151990261, 0.0197761562, 0.0120034385, -0.016094774, 0.0203336924, 0.00151477812, 0.00104640634, -0.00834665354, 0.0137826363, -0.00826056302, -0.00785061, -0.018710278, 0.0283195879, 0.00760873687, 0.0166769084, 0.021579951, 0.0115360916, 0.0174804162, 0.0194645915, -0.00462017581, 0.0233837478, -0.0159307923, -0.00575164752, -0.0155454362, 0.00520230969, -0.0325011127, 0.00789980404, 0.0274996795, 0.00740785943, -0.000213047708, 0.016414538, -0.0307957064, 0.00688311923, 0.0155946305, -0.0203500912, -0.0245808121, 0.0138892243, 0.0273029022, 0.00337801687, -0.00951912, 0.00992907397, 0.0105112074, 0.0145041542, 0.00496453699, 0.0205304716, -0.00333292177, 0.00773172267, 0.0119952392, 0.00605501328, 0.0180543512, -0.0053621917, 0.0117246695, 0.0101832449, 0.00523510622, -0.0130447205, -0.016242357, -5.85785092e-05, 0.0084040463, 0.0117410682, -0.00528430054, 0.0212355908, 0.0348296501, -0.00322428416, -0.00845324062, 0.0043455069, 0.0141515946, 0.0185462963, 0.00516541395, -0.0132251, 0.0202517025, 0.00838354882, -0.0015270767, 0.00908456929, -0.0121756187, 0.024662802, -0.00743245659, -0.0138974236, -0.000795822241, 0.00951092131, 0.00632558251, -0.00468166871, -0.0276472643, 0.00522690685, 0.0112655219, 0.00429631257, -0.0142335854, 0.0128151458, 0.00364653626, 0.00985528156]
21 May, 2024
Angular PrimeNG Form AutoComplete Force Selection Component 21 May, 2024 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use TreeTable Column Resize in Angular PrimeNG. Form AutoComplete Force Selection Component: It is used to validate the manual input to check whether it also exists in the suggestions list, if not the input value is cleared to make sure the value passed to the model is always one of the suggestions. Syntax: <p-autoComplete [forceSelection]="true">...</p-autoComplete> Creating Angular application & Module Installation: Step 1: Create an Angular application using the following command. ng new appname Step 2:  After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: Example 1: In the below code, we will use the above syntax to demonstrate the use of the Form AutoComplete Force Selection Component. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>A computer science portal for geeks</h3> <h2> Angular PrimeNG Form AutoComplete Objects Component </h2> <h3>forceSelection:false</h3> <h5>Multiple</h5> <span class="p-fluid"> <p-autoComplete [(ngModel)]="selectedCountries" [suggestions]="filteredCountries" (completeMethod)="filterCountry($event)" field="name" [forceSelection]="false" [multiple]="true"> </p-autoComplete> </span> </div> app.component.ts Javascript import { Component } from "@angular/core"; import { MenuItem } from "primeng/api"; import { SelectItem } from "primeng/api"; import { SelectItemGroup } from "primeng/api"; import { FilterService } from "primeng/api"; import { CountryService } from "./countryservice"; @Component({ selector: "app-root", templateUrl: "./app.component.html", providers: [CountryService, FilterService] }) export class AppComponent { selectedCountry: any; countries: any[]; filteredCountries: any[]; selectedCountries: any[]; selectedCountryAdvanced: any[]; filteredBrands: any[]; groupedCities: SelectItemGroup[]; filteredGroups: any[]; constructor( private countryService: CountryService, private filterService: FilterService ) { } ngOnInit() { this.countryService.getCountries() .then(countries => { this.countries = countries; }); this.groupedCities = [ { label: "Germany", value: "de", items: [ { label: "Berlin", value: "Berlin" }, { label: "Frankfurt", value: "Frankfurt" }, { label: "Hamburg", value: "Hamburg" }, { label: "Munich", value: "Munich" } ] }, { label: "USA", value: "us", items: [ { label: "Chicago", value: "Chicago" }, { label: "Los Angeles", value: "Los Angeles" }, { label: "New York", value: "New York" }, { label: "San Francisco", value: "San Francisco" } ] }, { label: "Japan", value: "jp", items: [ { label: "Kyoto", value: "Kyoto" }, { label: "Osaka", value: "Osaka" }, { label: "Tokyo", value: "Tokyo" }, { label: "Yokohama", value: "Yokohama" } ] } ]; } filterCountry(event) { let filtered: any[] = []; let query = event.query; for (let i = 0; i < this.countries.length; i++) { let country = this.countries[i]; if (country.name.toLowerCase() .indexOf(query.toLowerCase()) == 0) { filtered.push(country); } } this.filteredCountries = filtered; } filterGroupedCity(event) { let query = event.query; let filteredGroups = []; for (let optgroup of this.groupedCities) { let filteredSubOptions = this.filterService.filter( optgroup.items, ["label"], query, "contains" ); if (filteredSubOptions && filteredSubOptions.length) { filteredGroups.push({ label: optgroup.label, value: optgroup.value, items: filteredSubOptions }); } } this.filteredGroups = filteredGroups; } } app.module.ts Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; import { AutoCompleteModule } from 'primeng/autocomplete'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, AutoCompleteModule, FormsModule, HttpClientModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } countryservice.ts Javascript import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; @Injectable() export class CountryService { constructor(private http: HttpClient) { } getCountries() { return this.http.get < any > ('assets/countries.json') .toPromise() .then(res => <any[] > res.data) .then(data => { return data; }); } } countries.json Javascript { "data": [ {"name": "Afghanistan", "code": "AF"}, {"name": "Åland Islands", "code": "AX"}, {"name": "Albania", "code": "AL"}, {"name": "Algeria", "code": "DZ"}, {"name": "American Samoa", "code": "AS"}, {"name": "Andorra", "code": "AD"}, {"name": "Angola", "code": "AO"}, {"name": "Anguilla", "code": "AI"}, {"name": "Antarctica", "code": "AQ"}, {"name": "Antigua and Barbuda", "code": "AG"}, {"name": "Argentina", "code": "AR"}, {"name": "Armenia", "code": "AM"}, {"name": "Aruba", "code": "AW"}, {"name": "Australia", "code": "AU"}, {"name": "Austria", "code": "AT"}, {"name": "Azerbaijan", "code": "AZ"}, {"name": "Bahamas", "code": "BS"}, {"name": "Bahrain", "code": "BH"}, {"name": "Bangladesh", "code": "BD"}, {"name": "Barbados", "code": "BB"}, {"name": "Belarus", "code": "BY"}, {"name": "Belgium", "code": "BE"}, {"name": "Belize", "code": "BZ"}, {"name": "Benin", "code": "BJ"}, {"name": "Bermuda", "code": "BM"}, {"name": "Bhutan", "code": "BT"}, {"name": "Bolivia", "code": "BO"}, {"name": "Bosnia and Herzegovina", "code": "BA"}, {"name": "Botswana", "code": "BW"}, {"name": "Bouvet Island", "code": "BV"}, {"name": "Brazil", "code": "BR"}, {"name": "British Indian Ocean Territory", "code": "IO"}, {"name": "Brunei Darussalam", "code": "BN"}, {"name": "Bulgaria", "code": "BG"}, {"name": "Burkina Faso", "code": "BF"}, {"name": "Burundi", "code": "BI"}, {"name": "Cambodia", "code": "KH"}, {"name": "Cameroon", "code": "CM"}, {"name": "Canada", "code": "CA"}, {"name": "Cape Verde", "code": "CV"}, {"name": "Cayman Islands", "code": "KY"}, {"name": "Central African Republic", "code": "CF"}, {"name": "Chad", "code": "TD"}, {"name": "Chile", "code": "CL"}, {"name": "China", "code": "CN"}, {"name": "Christmas Island", "code": "CX"}, {"name": "Cocos (Keeling) Islands", "code": "CC"}, {"name": "Colombia", "code": "CO"}, {"name": "Comoros", "code": "KM"}, {"name": "Congo", "code": "CG"}, {"name": "Congo, The Democratic Republic of the", "code": "CD"}, {"name": "Cook Islands", "code": "CK"}, {"name": "Costa Rica", "code": "CR"}, {"name": "Cote D\"Ivoire", "code": "CI"}, {"name": "Croatia", "code": "HR"}, {"name": "Cuba", "code": "CU"}, {"name": "Cyprus", "code": "CY"}, {"name": "Czech Republic", "code": "CZ"}, {"name": "Denmark", "code": "DK"}, {"name": "Djibouti", "code": "DJ"}, {"name": "Dominica", "code": "DM"}, {"name": "Dominican Republic", "code": "DO"}, {"name": "Ecuador", "code": "EC"}, {"name": "Egypt", "code": "EG"}, {"name": "El Salvador", "code": "SV"}, {"name": "Equatorial Guinea", "code": "GQ"}, {"name": "Eritrea", "code": "ER"}, {"name": "Estonia", "code": "EE"}, {"name": "Ethiopia", "code": "ET"}, {"name": "Falkland Islands (Malvinas)", "code": "FK"}, {"name": "Faroe Islands", "code": "FO"}, {"name": "Fiji", "code": "FJ"}, {"name": "Finland", "code": "FI"}, {"name": "France", "code": "FR"}, {"name": "French Guiana", "code": "GF"}, {"name": "French Polynesia", "code": "PF"}, {"name": "French Southern Territories", "code": "TF"}, {"name": "Gabon", "code": "GA"}, {"name": "Gambia", "code": "GM"}, {"name": "Georgia", "code": "GE"}, {"name": "Germany", "code": "DE"}, {"name": "Ghana", "code": "GH"}, {"name": "Gibraltar", "code": "GI"}, {"name": "Greece", "code": "GR"}, {"name": "Greenland", "code": "GL"}, {"name": "Grenada", "code": "GD"}, {"name": "Guadeloupe", "code": "GP"}, {"name": "Guam", "code": "GU"}, {"name": "Guatemala", "code": "GT"}, {"name": "Guernsey", "code": "GG"}, {"name": "Guinea", "code": "GN"}, {"name": "Guinea-Bissau", "code": "GW"}, {"name": "Guyana", "code": "GY"}, {"name": "Haiti", "code": "HT"}, {"name": "Heard Island and Mcdonald Islands", "code": "HM"}, {"name": "Holy See (Vatican City State)", "code": "VA"}, {"name": "Honduras", "code": "HN"}, {"name": "Hong Kong", "code": "HK"}, {"name": "Hungary", "code": "HU"}, {"name": "Iceland", "code": "IS"}, {"name": "India", "code": "IN"}, {"name": "Indonesia", "code": "ID"}, {"name": "Iran, Islamic Republic Of", "code": "IR"}, {"name": "Iraq", "code": "IQ"}, {"name": "Ireland", "code": "IE"}, {"name": "Isle of Man", "code": "IM"}, {"name": "Israel", "code": "IL"}, {"name": "Italy", "code": "IT"}, {"name": "Jamaica", "code": "JM"}, {"name": "Japan", "code": "JP"}, {"name": "Jersey", "code": "JE"}, {"name": "Jordan", "code": "JO"}, {"name": "Kazakhstan", "code": "KZ"}, {"name": "Kenya", "code": "KE"}, {"name": "Kiribati", "code": "KI"}, {"name": "Korea, Democratic People\"S Republic of", "code": "KP"}, {"name": "Korea, Republic of", "code": "KR"}, {"name": "Kuwait", "code": "KW"}, {"name": "Kyrgyzstan", "code": "KG"}, {"name": "Lao People\"S Democratic Republic", "code": "LA"}, {"name": "Latvia", "code": "LV"}, {"name": "Lebanon", "code": "LB"}, {"name": "Lesotho", "code": "LS"}, {"name": "Liberia", "code": "LR"}, {"name": "Libyan Arab Jamahiriya", "code": "LY"}, {"name": "Liechtenstein", "code": "LI"}, {"name": "Lithuania", "code": "LT"}, {"name": "Luxembourg", "code": "LU"}, {"name": "Macao", "code": "MO"}, {"name": "Macedonia, The Former Yugoslav Republic of", "code": "MK"}, {"name": "Madagascar", "code": "MG"}, {"name": "Malawi", "code": "MW"}, {"name": "Malaysia", "code": "MY"}, {"name": "Maldives", "code": "MV"}, {"name": "Mali", "code": "ML"}, {"name": "Malta", "code": "MT"}, {"name": "Marshall Islands", "code": "MH"}, {"name": "Martinique", "code": "MQ"}, {"name": "Mauritania", "code": "MR"}, {"name": "Mauritius", "code": "MU"}, {"name": "Mayotte", "code": "YT"}, {"name": "Mexico", "code": "MX"}, {"name": "Micronesia, Federated States of", "code": "FM"}, {"name": "Moldova, Republic of", "code": "MD"}, {"name": "Monaco", "code": "MC"}, {"name": "Mongolia", "code": "MN"}, {"name": "Montserrat", "code": "MS"}, {"name": "Morocco", "code": "MA"}, {"name": "Mozambique", "code": "MZ"}, {"name": "Myanmar", "code": "MM"}, {"name": "Namibia", "code": "NA"}, {"name": "Nauru", "code": "NR"}, {"name": "Nepal", "code": "NP"}, {"name": "Netherlands", "code": "NL"}, {"name": "Netherlands Antilles", "code": "AN"}, {"name": "New Caledonia", "code": "NC"}, {"name": "New Zealand", "code": "NZ"}, {"name": "Nicaragua", "code": "NI"}, {"name": "Niger", "code": "NE"}, {"name": "Nigeria", "code": "NG"}, {"name": "Niue", "code": "NU"}, {"name": "Norfolk Island", "code": "NF"}, {"name": "Northern Mariana Islands", "code": "MP"}, {"name": "Norway", "code": "NO"}, {"name": "Oman", "code": "OM"}, {"name": "Pakistan", "code": "PK"}, {"name": "Palau", "code": "PW"}, {"name": "Palestinian Territory, Occupied", "code": "PS"}, {"name": "Panama", "code": "PA"}, {"name": "Papua New Guinea", "code": "PG"}, {"name": "Paraguay", "code": "PY"}, {"name": "Peru", "code": "PE"}, {"name": "Philippines", "code": "PH"}, {"name": "Pitcairn", "code": "PN"}, {"name": "Poland", "code": "PL"}, {"name": "Portugal", "code": "PT"}, {"name": "Puerto Rico", "code": "PR"}, {"name": "Qatar", "code": "QA"}, {"name": "Reunion", "code": "RE"}, {"name": "Romania", "code": "RO"}, {"name": "Russian Federation", "code": "RU"}, {"name": "RWANDA", "code": "RW"}, {"name": "Saint Helena", "code": "SH"}, {"name": "Saint Kitts and Nevis", "code": "KN"}, {"name": "Saint Lucia", "code": "LC"}, {"name": "Saint Pierre and Miquelon", "code": "PM"}, {"name": "Saint Vincent and the Grenadines", "code": "VC"}, {"name": "Samoa", "code": "WS"}, {"name": "San Marino", "code": "SM"}, {"name": "Sao Tome and Principe", "code": "ST"}, {"name": "Saudi Arabia", "code": "SA"}, {"name": "Senegal", "code": "SN"}, {"name": "Serbia and Montenegro", "code": "CS"}, {"name": "Seychelles", "code": "SC"}, {"name": "Sierra Leone", "code": "SL"}, {"name": "Singapore", "code": "SG"}, {"name": "Slovakia", "code": "SK"}, {"name": "Slovenia", "code": "SI"}, {"name": "Solomon Islands", "code": "SB"}, {"name": "Somalia", "code": "SO"}, {"name": "South Africa", "code": "ZA"}, {"name": "South Georgia and the South Sandwich Islands", "code": "GS"}, {"name": "Spain", "code": "ES"}, {"name": "Sri Lanka", "code": "LK"}, {"name": "Sudan", "code": "SD"}, {"name": "Suriname", "code": "SR"}, {"name": "Svalbard and Jan Mayen", "code": "SJ"}, {"name": "Swaziland", "code": "SZ"}, {"name": "Sweden", "code": "SE"}, {"name": "Switzerland", "code": "CH"}, {"name": "Syrian Arab Republic", "code": "SY"}, {"name": "Taiwan, Republic of China", "code": "TW"}, {"name": "Tajikistan", "code": "TJ"}, {"name": "Tanzania, United Republic of", "code": "TZ"}, {"name": "Thailand", "code": "TH"}, {"name": "Timor-Leste", "code": "TL"}, {"name": "Togo", "code": "TG"}, {"name": "Tokelau", "code": "TK"}, {"name": "Tonga", "code": "TO"}, {"name": "Trinidad and Tobago", "code": "TT"}, {"name": "Tunisia", "code": "TN"}, {"name": "Turkey", "code": "TR"}, {"name": "Turkmenistan", "code": "TM"}, {"name": "Turks and Caicos Islands", "code": "TC"}, {"name": "Tuvalu", "code": "TV"}, {"name": "Uganda", "code": "UG"}, {"name": "Ukraine", "code": "UA"}, {"name": "United Arab Emirates", "code": "AE"}, {"name": "United Kingdom", "code": "GB"}, {"name": "United States", "code": "US"}, {"name": "United States Minor Outlying Islands", "code": "UM"}, {"name": "Uruguay", "code": "UY"}, {"name": "Uzbekistan", "code": "UZ"}, {"name": "Vanuatu", "code": "VU"}, {"name": "Venezuela", "code": "VE"}, {"name": "Viet Nam", "code": "VN"}, {"name": "Virgin Islands, British", "code": "VG"}, {"name": "Virgin Islands, U.S.", "code": "VI"}, {"name": "Wallis and Futuna", "code": "WF"}, {"name": "Western Sahara", "code": "EH"}, {"name": "Yemen", "code": "YE"}, {"name": "Zambia", "code": "ZM"}, {"name": "Zimbabwe", "code": "ZW"} ] } Output: Example 2: In the below code, we will use the above syntax to demonstrate the use of the Form AutoComplete Force Selection Component. app.component.html HTML <div style="text-align:center;"> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>A computer science portal for geeks</h3> <h2> Angular PrimeNG Form AutoComplete Objects Component </h2> <h3>forceSelection:true</h3> <h5>Multiple</h5> <span class="p-fluid"> <p-autoComplete [(ngModel)]="selectedCountries" [suggestions]="filteredCountries" (completeMethod)="filterCountry($event)" field="name" [forceSelection]="true" [multiple]="true"> </p-autoComplete> </span> </div> app.component.ts Javascript import { Component } from "@angular/core"; import { MenuItem } from "primeng/api"; import { SelectItem } from "primeng/api"; import { SelectItemGroup } from "primeng/api"; import { FilterService } from "primeng/api"; import { CountryService } from "./countryservice"; @Component({ selector: "app-root", templateUrl: "./app.component.html", providers: [CountryService, FilterService] }) export class AppComponent { selectedCountry: any; countries: any[]; filteredCountries: any[]; selectedCountries: any[]; selectedCountryAdvanced: any[]; filteredBrands: any[]; groupedCities: SelectItemGroup[]; filteredGroups: any[]; constructor( private countryService: CountryService, private filterService: FilterService ) { } ngOnInit() { this.countryService.getCountries() .then(countries => { this.countries = countries; }); this.groupedCities = [ { label: "Germany", value: "de", items: [ { label: "Berlin", value: "Berlin" }, { label: "Frankfurt", value: "Frankfurt" }, { label: "Hamburg", value: "Hamburg" }, { label: "Munich", value: "Munich" } ] }, { label: "USA", value: "us", items: [ { label: "Chicago", value: "Chicago" }, { label: "Los Angeles", value: "Los Angeles" }, { label: "New York", value: "New York" }, { label: "San Francisco", value: "San Francisco" } ] }, { label: "Japan", value: "jp", items: [ { label: "Kyoto", value: "Kyoto" }, { label: "Osaka", value: "Osaka" }, { label: "Tokyo", value: "Tokyo" }, { label: "Yokohama", value: "Yokohama" } ] } ]; } filterCountry(event) { let filtered: any[] = []; let query = event.query; for (let i = 0; i < this.countries.length; i++) { let country = this.countries[i]; if (country.name.toLowerCase() .indexOf(query.toLowerCase()) == 0) { filtered.push(country); } } this.filteredCountries = filtered; } filterGroupedCity(event) { let query = event.query; let filteredGroups = []; for (let optgroup of this.groupedCities) { let filteredSubOptions = this.filterService.filter( optgroup.items, ["label"], query, "contains" ); if (filteredSubOptions && filteredSubOptions.length) { filteredGroups.push({ label: optgroup.label, value: optgroup.value, items: filteredSubOptions }); } } this.filteredGroups = filteredGroups; } } app.module.ts Javascript import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { HttpClientModule } from '@angular/common/http'; import { AppComponent } from './app.component'; import { AutoCompleteModule } from 'primeng/autocomplete'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, AutoCompleteModule, FormsModule, HttpClientModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule { } countryservice.ts Javascript import { HttpClient } from '@angular/common/http'; import { Injectable } from '@angular/core'; @Injectable() export class CountryService { constructor(private http: HttpClient) { } getCountries() { return this.http.get < any > ('assets/countries.json') .toPromise() .then(res => <any[] > res.data) .then(data => { return data; }); } } countries.json Javascript { "data": [ {"name": "Afghanistan", "code": "AF"}, {"name": "Åland Islands", "code": "AX"}, {"name": "Albania", "code": "AL"}, {"name": "Algeria", "code": "DZ"}, {"name": "American Samoa", "code": "AS"}, {"name": "Andorra", "code": "AD"}, {"name": "Angola", "code": "AO"}, {"name": "Anguilla", "code": "AI"}, {"name": "Antarctica", "code": "AQ"}, {"name": "Antigua and Barbuda", "code": "AG"}, {"name": "Argentina", "code": "AR"}, {"name": "Armenia", "code": "AM"}, {"name": "Aruba", "code": "AW"}, {"name": "Australia", "code": "AU"}, {"name": "Austria", "code": "AT"}, {"name": "Azerbaijan", "code": "AZ"}, {"name": "Bahamas", "code": "BS"}, {"name": "Bahrain", "code": "BH"}, {"name": "Bangladesh", "code": "BD"}, {"name": "Barbados", "code": "BB"}, {"name": "Belarus", "code": "BY"}, {"name": "Belgium", "code": "BE"}, {"name": "Belize", "code": "BZ"}, {"name": "Benin", "code": "BJ"}, {"name": "Bermuda", "code": "BM"}, {"name": "Bhutan", "code": "BT"}, {"name": "Bolivia", "code": "BO"}, {"name": "Bosnia and Herzegovina", "code": "BA"}, {"name": "Botswana", "code": "BW"}, {"name": "Bouvet Island", "code": "BV"}, {"name": "Brazil", "code": "BR"}, {"name": "British Indian Ocean Territory", "code": "IO"}, {"name": "Brunei Darussalam", "code": "BN"}, {"name": "Bulgaria", "code": "BG"}, {"name": "Burkina Faso", "code": "BF"}, {"name": "Burundi", "code": "BI"}, {"name": "Cambodia", "code": "KH"}, {"name": "Cameroon", "code": "CM"}, {"name": "Canada", "code": "CA"}, {"name": "Cape Verde", "code": "CV"}, {"name": "Cayman Islands", "code": "KY"}, {"name": "Central African Republic", "code": "CF"}, {"name": "Chad", "code": "TD"}, {"name": "Chile", "code": "CL"}, {"name": "China", "code": "CN"}, {"name": "Christmas Island", "code": "CX"}, {"name": "Cocos (Keeling) Islands", "code": "CC"}, {"name": "Colombia", "code": "CO"}, {"name": "Comoros", "code": "KM"}, {"name": "Congo", "code": "CG"}, {"name": "Congo, The Democratic Republic of the", "code": "CD"}, {"name": "Cook Islands", "code": "CK"}, {"name": "Costa Rica", "code": "CR"}, {"name": "Cote D\"Ivoire", "code": "CI"}, {"name": "Croatia", "code": "HR"}, {"name": "Cuba", "code": "CU"}, {"name": "Cyprus", "code": "CY"}, {"name": "Czech Republic", "code": "CZ"}, {"name": "Denmark", "code": "DK"}, {"name": "Djibouti", "code": "DJ"}, {"name": "Dominica", "code": "DM"}, {"name": "Dominican Republic", "code": "DO"}, {"name": "Ecuador", "code": "EC"}, {"name": "Egypt", "code": "EG"}, {"name": "El Salvador", "code": "SV"}, {"name": "Equatorial Guinea", "code": "GQ"}, {"name": "Eritrea", "code": "ER"}, {"name": "Estonia", "code": "EE"}, {"name": "Ethiopia", "code": "ET"}, {"name": "Falkland Islands (Malvinas)", "code": "FK"}, {"name": "Faroe Islands", "code": "FO"}, {"name": "Fiji", "code": "FJ"}, {"name": "Finland", "code": "FI"}, {"name": "France", "code": "FR"}, {"name": "French Guiana", "code": "GF"}, {"name": "French Polynesia", "code": "PF"}, {"name": "French Southern Territories", "code": "TF"}, {"name": "Gabon", "code": "GA"}, {"name": "Gambia", "code": "GM"}, {"name": "Georgia", "code": "GE"}, {"name": "Germany", "code": "DE"}, {"name": "Ghana", "code": "GH"}, {"name": "Gibraltar", "code": "GI"}, {"name": "Greece", "code": "GR"}, {"name": "Greenland", "code": "GL"}, {"name": "Grenada", "code": "GD"}, {"name": "Guadeloupe", "code": "GP"}, {"name": "Guam", "code": "GU"}, {"name": "Guatemala", "code": "GT"}, {"name": "Guernsey", "code": "GG"}, {"name": "Guinea", "code": "GN"}, {"name": "Guinea-Bissau", "code": "GW"}, {"name": "Guyana", "code": "GY"}, {"name": "Haiti", "code": "HT"}, {"name": "Heard Island and Mcdonald Islands", "code": "HM"}, {"name": "Holy See (Vatican City State)", "code": "VA"}, {"name": "Honduras", "code": "HN"}, {"name": "Hong Kong", "code": "HK"}, {"name": "Hungary", "code": "HU"}, {"name": "Iceland", "code": "IS"}, {"name": "India", "code": "IN"}, {"name": "Indonesia", "code": "ID"}, {"name": "Iran, Islamic Republic Of", "code": "IR"}, {"name": "Iraq", "code": "IQ"}, {"name": "Ireland", "code": "IE"}, {"name": "Isle of Man", "code": "IM"}, {"name": "Israel", "code": "IL"}, {"name": "Italy", "code": "IT"}, {"name": "Jamaica", "code": "JM"}, {"name": "Japan", "code": "JP"}, {"name": "Jersey", "code": "JE"}, {"name": "Jordan", "code": "JO"}, {"name": "Kazakhstan", "code": "KZ"}, {"name": "Kenya", "code": "KE"}, {"name": "Kiribati", "code": "KI"}, {"name": "Korea, Democratic People\"S Republic of", "code": "KP"}, {"name": "Korea, Republic of", "code": "KR"}, {"name": "Kuwait", "code": "KW"}, {"name": "Kyrgyzstan", "code": "KG"}, {"name": "Lao People\"S Democratic Republic", "code": "LA"}, {"name": "Latvia", "code": "LV"}, {"name": "Lebanon", "code": "LB"}, {"name": "Lesotho", "code": "LS"}, {"name": "Liberia", "code": "LR"}, {"name": "Libyan Arab Jamahiriya", "code": "LY"}, {"name": "Liechtenstein", "code": "LI"}, {"name": "Lithuania", "code": "LT"}, {"name": "Luxembourg", "code": "LU"}, {"name": "Macao", "code": "MO"}, {"name": "Macedonia, The Former Yugoslav Republic of", "code": "MK"}, {"name": "Madagascar", "code": "MG"}, {"name": "Malawi", "code": "MW"}, {"name": "Malaysia", "code": "MY"}, {"name": "Maldives", "code": "MV"}, {"name": "Mali", "code": "ML"}, {"name": "Malta", "code": "MT"}, {"name": "Marshall Islands", "code": "MH"}, {"name": "Martinique", "code": "MQ"}, {"name": "Mauritania", "code": "MR"}, {"name": "Mauritius", "code": "MU"}, {"name": "Mayotte", "code": "YT"}, {"name": "Mexico", "code": "MX"}, {"name": "Micronesia, Federated States of", "code": "FM"}, {"name": "Moldova, Republic of", "code": "MD"}, {"name": "Monaco", "code": "MC"}, {"name": "Mongolia", "code": "MN"}, {"name": "Montserrat", "code": "MS"}, {"name": "Morocco", "code": "MA"}, {"name": "Mozambique", "code": "MZ"}, {"name": "Myanmar", "code": "MM"}, {"name": "Namibia", "code": "NA"}, {"name": "Nauru", "code": "NR"}, {"name": "Nepal", "code": "NP"}, {"name": "Netherlands", "code": "NL"}, {"name": "Netherlands Antilles", "code": "AN"}, {"name": "New Caledonia", "code": "NC"}, {"name": "New Zealand", "code": "NZ"}, {"name": "Nicaragua", "code": "NI"}, {"name": "Niger", "code": "NE"}, {"name": "Nigeria", "code": "NG"}, {"name": "Niue", "code": "NU"}, {"name": "Norfolk Island", "code": "NF"}, {"name": "Northern Mariana Islands", "code": "MP"}, {"name": "Norway", "code": "NO"}, {"name": "Oman", "code": "OM"}, {"name": "Pakistan", "code": "PK"}, {"name": "Palau", "code": "PW"}, {"name": "Palestinian Territory, Occupied", "code": "PS"}, {"name": "Panama", "code": "PA"}, {"name": "Papua New Guinea", "code": "PG"}, {"name": "Paraguay", "code": "PY"}, {"name": "Peru", "code": "PE"}, {"name": "Philippines", "code": "PH"}, {"name": "Pitcairn", "code": "PN"}, {"name": "Poland", "code": "PL"}, {"name": "Portugal", "code": "PT"}, {"name": "Puerto Rico", "code": "PR"}, {"name": "Qatar", "code": "QA"}, {"name": "Reunion", "code": "RE"}, {"name": "Romania", "code": "RO"}, {"name": "Russian Federation", "code": "RU"}, {"name": "RWANDA", "code": "RW"}, {"name": "Saint Helena", "code": "SH"}, {"name": "Saint Kitts and Nevis", "code": "KN"}, {"name": "Saint Lucia", "code": "LC"}, {"name": "Saint Pierre and Miquelon", "code": "PM"}, {"name": "Saint Vincent and the Grenadines", "code": "VC"}, {"name": "Samoa", "code": "WS"}, {"name": "San Marino", "code": "SM"}, {"name": "Sao Tome and Principe", "code": "ST"}, {"name": "Saudi Arabia", "code": "SA"}, {"name": "Senegal", "code": "SN"}, {"name": "Serbia and Montenegro", "code": "CS"}, {"name": "Seychelles", "code": "SC"}, {"name": "Sierra Leone", "code": "SL"}, {"name": "Singapore", "code": "SG"}, {"name": "Slovakia", "code": "SK"}, {"name": "Slovenia", "code": "SI"}, {"name": "Solomon Islands", "code": "SB"}, {"name": "Somalia", "code": "SO"}, {"name": "South Africa", "code": "ZA"}, {"name": "South Georgia and the South Sandwich Islands", "code": "GS"}, {"name": "Spain", "code": "ES"}, {"name": "Sri Lanka", "code": "LK"}, {"name": "Sudan", "code": "SD"}, {"name": "Suriname", "code": "SR"}, {"name": "Svalbard and Jan Mayen", "code": "SJ"}, {"name": "Swaziland", "code": "SZ"}, {"name": "Sweden", "code": "SE"}, {"name": "Switzerland", "code": "CH"}, {"name": "Syrian Arab Republic", "code": "SY"}, {"name": "Taiwan, Republic of China", "code": "TW"}, {"name": "Tajikistan", "code": "TJ"}, {"name": "Tanzania, United Republic of", "code": "TZ"}, {"name": "Thailand", "code": "TH"}, {"name": "Timor-Leste", "code": "TL"}, {"name": "Togo", "code": "TG"}, {"name": "Tokelau", "code": "TK"}, {"name": "Tonga", "code": "TO"}, {"name": "Trinidad and Tobago", "code": "TT"}, {"name": "Tunisia", "code": "TN"}, {"name": "Turkey", "code": "TR"}, {"name": "Turkmenistan", "code": "TM"}, {"name": "Turks and Caicos Islands", "code": "TC"}, {"name": "Tuvalu", "code": "TV"}, {"name": "Uganda", "code": "UG"}, {"name": "Ukraine", "code": "UA"}, {"name": "United Arab Emirates", "code": "AE"}, {"name": "United Kingdom", "code": "GB"}, {"name": "United States", "code": "US"}, {"name": "United States Minor Outlying Islands", "code": "UM"}, {"name": "Uruguay", "code": "UY"}, {"name": "Uzbekistan", "code": "UZ"}, {"name": "Vanuatu", "code": "VU"}, {"name": "Venezuela", "code": "VE"}, {"name": "Viet Nam", "code": "VN"}, {"name": "Virgin Islands, British", "code": "VG"}, {"name": "Virgin Islands, U.S.", "code": "VI"}, {"name": "Wallis and Futuna", "code": "WF"}, {"name": "Western Sahara", "code": "EH"}, {"name": "Yemen", "code": "YE"}, {"name": "Zambia", "code": "ZM"}, {"name": "Zimbabwe", "code": "ZW"} ] } Output: Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component
https://www.geeksforgeeks.org/angular-primeng-form-autocomplete-force-selection-component?ref=asr10
Languages
Angular PrimeNG Form AutoComplete Force Selection Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
null
07 Oct, 2022
Angular PrimeNG Form Calendar Selection Mode Component 07 Oct, 2022 Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will see Angular PrimeNG Form Calendar Selection Mode Component. The Calendar Component is used to input the user’s date and time. Users can select only one date by default but multiple dates can be selected by setting the selectionMode property to multiple. Here, the values will be stored in a Date array whose length can be controlled using the maxDateCount property. The third selection mode is the range mode where a start and end date can be selected which will be stored in a Date Array of length 2. Angular PrimeNG Form Calendar Selection Mode Properties: selectionMode: It specifies the selection mode of the calendar. It can be set to “multiple” and “range”. maxDateCount: When the calendar is in the “multiple” mode, this property is used to restrict the length of the Date array. Syntax: <p-calendar placeholder="Select the Date" selectionMode="..." [maxDateCount]="..." [(ngModel)]="...."> </p-calendar> Creating Angular Application and Installing the Module: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Finally, Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: The project Structure will look like this after following the above steps: Project Structure Example 1: In this example, we set the selectionMode property to “multiple” and the maxDateCount property to 4. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>Angular PrimeNG Form Calendar Selection Mode Component</h4> <p-calendar placeholder="Select the Date" selectionMode="multiple" [maxDateCount]="4" [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Example 2: In this example, we set the selectionMode to “range” that has a start date and an end date. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>Angular PrimeNG Form Calendar Selection Mode Component</h4> <p-calendar placeholder="Select the Range" selectionMode="range" [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Reference: http://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-selection-mode-component?ref=asr10
Languages
Angular PrimeNG Form Calendar Selection Mode Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.040908929, -0.00759014767, -0.0182709415, 0.0168580748, 0.0421612412, 0.0336840376, -0.0245164577, 0.0251747258, 0.00373687339, 0.00245445548, 0.0240508541, 0.00604883768, 0.0164245814, -0.0578312241, -0.00422254624, -0.0125552518, -0.047363162, -0.0106446706, 0.00295819086, 0.0034017188, -0.0344546959, 0.0269889757, -0.0258008819, 0.0177090056, 0.0109256385, 0.0400740542, 0.016312195, -0.00577589776, -0.00866183918, 0.0177250616, 0.00783499144, 0.00553506799, 0.0245485678, -0.00459181843, -0.0678176284, -0.0359317809, 0.0139440363, 0.0357391201, -0.00214539072, 0.00113390619, -0.00474835793, -0.00724897208, 0.0126756672, 0.0316450149, -0.0315968506, 0.00818018056, -0.00251867669, -0.031998232, -0.026780257, -0.0157823693, 0.0195393115, 0.0475237146, 0.0356427878, 0.0394639522, -0.00827651192, 0.0296059903, -0.0110139428, 0.0159509499, 0.00895886309, -0.00165771076, 0.0510558859, -0.0426429026, -0.00816813856, -0.023681581, 0.0251265597, 0.0354822353, 0.00490891095, 0.0149956588, 0.00662281504, 0.0121779526, -0.0146986358, 0.0099623194, -0.000802765484, -0.021851277, -0.0203902423, -0.00525811408, -0.00679139607, 0.012908469, -0.0500925668, 0.0310028028, -0.0332987122, 0.0128763579, -0.0165530238, 0.0165690798, 0.00761423074, -0.00671111932, 0.0411979258, -0.0571247898, -0.00675125746, 0.00571970409, 0.0290922206, 0.0099623194, -0.0048045516, -0.0122421738, 0.0224613789, 0.00910336059, 0.0630973652, 0.0219957735, -0.0426750146, -0.0005493926, -0.00132456305, -0.0109015554, 0.0194429792, -0.0568357967, 0.0387254059, -0.0019005473, 0.0343583636, 0.011383214, 0.00265313988, -0.0422575735, 0.0189773757, -0.0179498363, 0.0282894559, 0.00889464188, -0.0791205689, 0.0286747832, -0.0157582872, -0.0285302848, 0.0298628751, -0.0404914916, -0.00980176684, 0.00281168614, -0.0119290948, 0.00313881296, -0.0479411557, 0.0285623949, -0.0108373342, -0.00264310534, 0.0173879, -0.0519549809, 0.0258329939, 0.000427472609, -0.00307659875, -0.00561534474, 0.0265554823, 0.0334913768, 0.0207595155, 0.0109336656, -0.052886188, -0.0161917806, -0.0149314376, -0.0331060477, 0.0307138078, -0.0184957162, -0.00198885147, 0.0111343572, 0.0119852889, 0.0782214701, 0.00401984807, 0.016320223, -0.0456613, -0.0352574587, -0.00540662557, -0.00197480316, 0.0182388313, -0.0502852313, -0.0121217584, -0.0128362197, -0.00948868785, -0.0373125412, 0.00393756479, 0.0162720568, 0.0033997118, -0.000203325442, 0.018463606, -0.00379507383, 0.00948066, -0.0195874777, -0.0204705205, 0.0428997874, 0.0123706162, 0.0162158627, -0.00655458029, 0.0134142116, -0.032592278, 0.00446337601, 0.0177411176, 0.00893478, 0.029236719, 0.0240508541, -0.00614516949, 0.0114795463, 0.00125933834, 0.0200049151, 0.0404272713, 0.00303445361, 0.0372804292, -0.0102031492, -0.0246449, 0.00976965576, 0.00266317441, 0.0257045515, 0.0560651422, 0.05966153, 0.0230233148, -0.00196376513, -0.0385648534, 0.0078109079, -0.0175966192, 0.00134262524, 0.0033997118, -0.0368629918, -0.000116275565, 0.028915612, 0.0390465111, 0.0258972142, -0.00452358369, 0.021514114, 0.0240508541, -0.0149956588, -0.00185137789, -0.0207755715, 0.0329454951, -0.00973754562, 0.0105965044, 0.0288032256, -0.00872606, -0.0206792392, 0.015389014, -0.0237618573, -0.0153328208, 0.0595009774, 0.00247452455, 0.00252469745, -0.0665332, 0.00968135148, -0.00605686568, -0.00466005364, 0.0111423852, 0.00432690606, -0.00227985391, 0.00689575542, -0.00664689811, 0.0125472248, 0.0418401361, 0.00899900123, 0.015389014, -0.00592440926, 0.00557520613, 0.0808545426, 0.00173297, -0.0305372, -0.0225737654, -0.0266678687, 0.0267320909, -0.00142290175, -0.00759014767, 0.0617808327, 0.0101148449, 0.0306335315, -0.0212893412, -0.0136710964, -0.061845053, 0.00789118465, -0.00816412456, -0.0151160741, -0.0128603028, -0.00271736109, 0.0203099661, 0.0201494135, 0.0115919337, 0.0165530238, 0.000562437577, 0.0444410965, 0.000451555592, -0.0211287867, 0.016296139, -0.0195072014, -0.0158947557, 0.0291885529, 0.0402024947, -0.0236334149, 0.03138813, 0.0105483383, -0.0199085847, -0.00746170525, -0.0292688292, -0.0309546366, 0.0294454377, 0.0334592648, 0.00141989149, -0.0119852889, 0.00734129036, -0.00145400898, -0.011688265, -0.0179819465, 0.0132937962, 0.0247091223, -0.0316610709, 0.0199085847, -0.0192824267, -0.0281289015, -0.0210645664, 0.0224453229, 0.0204062983, 0.0308261942, -0.0176768955, 0.00209521782, -0.01386376, 0.0231035911, -0.0105483383, -0.0159670059, -0.00622946024, -0.0112628, -0.0309546366, 0.0425144583, 0.0356748961, -0.00703222537, -0.0300876498, -0.0227985401, 0.0283697322, -0.0312115215, -0.0249820612, -0.0249499511, -0.00580800837, 0.0309385806, 0.0216265023, 0.0422575735, -0.0140323406, -0.00859761797, 0.0172273479, -0.0227824841, 0.00179117045, 0.00894280709, 0.0186562706, -0.00662281504, -0.0384685211, -0.0169704631, 0.016256, -0.0142250042, -0.0476842709, -0.0210485104, -0.0121618966, 0.00266919518, -0.00602876861, -0.0155656226, 0.0312917978, -0.0343262516, -0.00610503135, 0.0182869975, -0.0238581896, 0.00468815025, 0.00895886309, -0.0104279239, 0.0140002295, -0.0237458032, 0.00731720729, -0.0145300552, 0.0355785675, 0.0177732278, 0.00150819565, 0.0145461103, 0.0500604548, -0.00342981541, 0.0354180112, -0.00459583243, -0.0021835221, -0.0369914323, -0.00864578411, -0.0251426157, -0.0247412324, -0.0260256566, -0.00946460478, 0.0617808327, 0.0491292477, -0.0194590352, -0.00359638943, 0.0354501233, 0.0082203187, -0.0164566915, -0.00506143644, 0.000860464235, 0.00180923264, 0.0200691372, -0.040298827, -0.00789118465, 0.0220599957, 0.0164727475, 0.0231678113, -0.011704321, -0.0418401361, 0.0840656, -0.0131894369, 0.0149073545, 0.0214017276, 0.0256884955, 0.00805575121, -0.0168420188, -0.0210164, -0.0240187421, 0.00500524277, 0.0494824648, 0.020631073, -0.00299030147, 0.00348199531, -0.0248375647, 0.00796744693, 0.0167456884, 0.0691020489, -0.00185539166, 0.0281931236, 0.0217388887, -0.00961713, -0.0174681768, 0.0109015554, -0.0070121563, -0.0327367745, 0.00402787561, 0.0329776071, 0.0142169762, 0.0157903973, 0.0177090056, -0.0666616485, 0.00334552513, 0.0284339525, 0.0324477814, 0.00761824427, 0.0351932384, -0.00709644658, -0.0159108117, 0.0531430729, 0.00925588608, -0.0150197418, 0.00819222163, -0.00220359117, -0.00657063536, -0.0491613559, 0.0175805632, 0.00734129036, 0.0247572865, -0.00929602422, -0.0105242552, 0.00571167655, -0.0165209137, 0.028931668, 0.000410163, 0.0146183595, 0.0447943136, 0.00600869954, -0.0283055101, -0.0197640862, 0.0136791235, 0.00277756853, -0.04363833, -0.0399134979, -0.00228788168, -0.0614918359, 0.00269729202, -0.0340372548, 0.0334913768, -0.0275509115, -0.0350326858, -0.0248215087, 0.0041783941, 0.0285784509, -0.00115598226, 0.0345831364, 0.0156218158, -0.0138878431, 0.00612911442, 0.00673921639, 0.0397850573, 0.00853339676, -0.018463606, -0.00586821558, -0.0241150744, -0.0256724395, 0.0121458415, 0.00326926238, 0.0235049725, 0.029028, 0.0176929515, 0.0112226615, -0.00060056895, 0.0221081618, -0.0107008638, -0.0218994431, -0.0175484531, -0.00487680035, 0.0245004017, 0.0527256355, 0.00846917555, 0.0268765874, 0.0323353931, 0.00392953679, -0.0395602845, -0.022156328, -0.0262022652, -0.0324317254, 0.0216425564, 0.0208719019, 0.0148029951, -0.0439273268, 0.035353791, 0.00517783733, -0.00237618573, 0.0129726902, 0.00419846363, 0.00144196744, -0.00862170104, 0.012603418, 0.0246288441, -0.02153017, 0.0176768955, 0.045243863, -0.010460034, -0.0123946993, -0.0179980025, -0.00166674179, -0.00826848485, -0.00504136737, 0.0265073162, -0.00389140565, 0.0316289589, 0.00826848485, -0.00231397152, -0.000355474593, 0.0315968506, 2.50550638e-05, -0.0251426157, 0.0210003443, 0.0183191076, -0.012306395, 0.00680745114, 0.000388839515, 0.00466808118, -0.0171470698, -0.0164245814, 0.0170989055, -0.00988204312, -0.0100747067, -0.00843706541, 0.0115598226, 0.0371519849, -0.000649236608, -0.024291683, -0.0360602252, -0.0142731704, -0.0239224117, -0.00694392156, -0.0308904164, 0.027663298, -0.039656613, -0.00177611865, -0.00629769498, 0.00270531955, -0.0221081618, -0.0182709415, 0.0158787016, 0.0321908966, -0.00866183918, 0.0192824267, 0.0193466488, -0.0130288834, -0.0244040713, -0.032560166, -0.0316931829, -0.0223008245, 0.000120916549, -0.000448796083, 0.0245325137, -0.0230072588, 0.0388217382, 0.0322069526, -0.0268444773, -0.0151401572, 0.00907124951, -0.000658267702, 0.000962816819, -0.0153408479, 0.000554409926, -0.011070136, -0.00670309179, 0.0134543497, 0.0121217584, 0.0148993274, 0.0476200469, 0.013855732, 0.0205829069, -0.00788315665, -0.00405396568, 0.00496109063, 0.0252228919, -0.0151963504, 0.0106767807, -0.0017169147, 0.0225898214, -0.00530226575, -0.0400419421, -0.0044031688, 0.0291564427, 0.0182548873, 0.00832467806, -0.00584413251, 0.0167617425, 0.0153007098, -0.0124187823, -0.00709243305, 0.0240669083, -0.0294614937, -0.00995429233, 0.00993823633, -0.0115357395, 0.0248054527, -0.0235852506, -0.00143895717, -0.0291885529, 0.0113189928, 0.0275990777, 0.00228988845, -0.00877422653, 0.00867789518, 0.010138928, -0.000659271143, 0.0149394656, -0.0226379856, 0.00419043563, -0.000647731416, -0.00153428549, -0.0176608413, -0.0163603611, 0.0166975223, 0.0392712876, 0.0210806206, 0.00875817146, -0.0182227772, 0.0105001722, -0.0268284231, 0.00153729587, -0.0160312261, -0.00495306309, -0.021514114, 0.0107169189, -0.00736938696, 0.0299913175, -0.00530226575, -0.000869997079, -0.00273542339, -0.0107410019, 0.0280325711, 0.00826045685, -0.00954488106, -0.000195297791, 0.0829096213, -0.00878225453, 0.0469136126, -0.0146344146, 0.0380831957, 0.0194108691, -0.0262825415, -0.0269889757, -0.00547084678, 0.0340693668, 0.0218833871, 0.00724094454, -0.0204865746, 0.0102673704, -0.00114293734, -0.016922297, -0.00668703625, -0.0179177262, 0.00893478, 0.0150197418, -0.024307739, 0.0372162089, 0.0106607256, 0.00868592225, 0.0214498937, 0.0197159201, 0.0456291884, -0.00948066, -0.0179337803, -0.0101870941, -0.013839677, -0.018174611, -0.0397850573, -0.0031990204, 0.0201012474, 0.000107432599, -0.00214539072, -0.011078164, 0.0176447853, 0.0297023226, 0.0247251764, 0.00852537, -0.00986598805, -0.0318697877, 0.011375187, -0.00728911068, 0.004768427, 0.0234407522, -0.0271174181, 0.0273261368, -0.0252871122, 0.00212331465, -0.0319179557, -0.0195553675, -0.00434697513, 0.0209040139, -0.039688725, -0.00155034079, -0.0167135764, -0.021819165, 0.00735333189, -0.0121538695, 0.0144256959, 0.00100395852, 0.0289798342, -0.0257848278, -0.00345991924, 0.00874211639, 0.0103877857, -0.010765085, 0.0573495664, -0.00790724, 0.0133259073, -0.00895083509, 0.0041783941, -0.0247251764, -0.00802765507, 0.0274866894, -0.0164727475, 0.0137272896, -0.0116641819, -0.0294454377, 0.0276954081, 0.0170346834, -0.0647350103, -0.00554309553, -0.00708841905, -0.00649437262, 0.0183351636, 0.0225256, -0.00496109063, 0.000624651904, -0.0219797194, -0.00195573736, 0.0142892255, -0.00695194909, 0.0165369697, 0.0229109265, -0.00895886309, 0.0246770103, -0.00777478376, 0.00342178787, 0.00413424242, -0.00242234487, -0.0311473012, -0.00504939491, -0.0057839253, -0.0057799113, -0.0135908192, 0.0289958883, -0.00946460478, -0.00333950436, -0.0100747067, -0.00131753879, 0.0536889546, 0.0240508541, 0.015380987, -0.00632980559, 0.00783097744, -0.0322872289, 0.0099623194, 0.0146424426, 0.0385327414, -0.0174842328, -0.0315647386, 0.0220599957, 0.0070201843, -0.0123144221, 0.0147869401, 0.0225577094, 0.0151642403, 0.00263507757, -0.0117685422, -0.0293972716, -0.0197961964, 0.0127559435, -0.000685361039, -0.0194750912, 0.00484870328, -0.0151000191, -0.0159188397, 0.00207916251, -0.0132777411, -0.00881436467, 0.0138236219, 0.0340372548, 0.02645915, 0.0280165151, 0.00771457609, -0.0096010752, 0.00388739188, 0.0229912028, -0.0438309945, -0.0108935274, -0.00571970409, -0.0183512196, -0.0561614744, -0.0241471864, -0.0172755122, 0.015397042, 0.0267320909, 0.0047965236, -0.0186723247, -0.0231517572, -0.00686765881, 0.00403389661, 0.00883042067, 0.00082132942, 0.0033856635, -0.0029662184, 0.007995544, 0.0209682342, -0.0091595538, 0.0247893985, 0.00655056629, -0.0563862473, 0.0221081618, 0.0278880727, -0.0194911454, 0.018142499, -0.00943249464, -0.0344225839, 0.0146906078, -0.015380987, 0.0189613197, 0.00842100941, 0.01660119, 0.0100345686, -0.040266715, -0.0660194308, 0.0411658138, -0.00361043774, 0.00771056255, -0.000357983226, 0.0227985401, 0.029846821, 0.029830765, -0.0169544071, 0.030151872, 0.00060608791, -0.026748145, 0.0164888036, 0.00671111932, -0.0065826769, 0.00635388866, 0.0266518146, 0.00104660552, 0.0341657, 0.0436062217, 0.00981782191, 0.0276954081, -0.0217549447, 0.0258811582, 0.00464399811, 0.0130128283, -0.00166573841, -0.0114153251, -0.00500925677, -0.0232802, 0.0253513344, 0.00801159907, 0.0120173991, 0.0309385806, -0.0183030535, -0.046464067, -0.0126836943, -0.0328491628, -0.0161436144, 0.00902308431, 0.0262343753, 0.00907124951, 0.00935221743, -0.015678009, -0.0313239098, -0.00943249464, 0.0256563853, -0.0179498363, 0.00887055881, -0.0226861518, -0.0308904164, -0.00393555779, 0.0048005376, -0.00108875067, -0.0127800265, -0.0390786231, -0.00884647574, -0.0135908192, 0.00415029749, -0.0496751294, 0.00478046853, -0.039688725, 0.0164406374, 0.0349684656, -0.00131954579, -0.0220921058, -0.0348079093, 0.0304087568, 0.00547084678, 0.00284981751, 0.0141045898, -0.0127158053, 0.0031649028, -0.0232320335, 0.0231838673, -0.00502932584, -0.0311151892, 0.0116802379, -0.00451154215, 0.0387254059, -0.00502531184, -0.0140323406, 0.00405597268, -0.0219957735, -0.0550697111, 0.0382758565, 0.00280967914, -0.0330739394, -0.0193145368, -0.00334351812, -0.0171952359, 0.0219636634, -0.00634586113, -0.00618932163, -0.00629769498, 0.0197961964, -0.0116802379, 0.0246930663, -0.014160783, 0.045211751, 0.0241792966, 0.0171631258, -0.0392391756, -0.00915152673, 0.00140785, 0.0165690798, -0.0388538502, 0.00352213345, 0.0130449394, 0.0330739394, -0.00228788168, -0.000808284502, 0.0121217584, -0.0484870337, -0.00360843074, 0.0143775297, 0.0232159775, -0.00143293641, 0.0127479155, -0.0180461686, 0.0147468019, 0.0343583636, 0.0128281927, -0.0196356438, -0.0339409262, 0.0223650467, 0.00420247717, 0.0446979813, -0.0300073735, -0.0283376221, -0.0175323989, 0.00385728804, 0.0303766448, 0.0193466488, 0.0136229303, 0.00443929294, 0.0177571718, -0.0213535614, 0.0127398884, -0.0209040139, 0.029814709, 0.00700814277, 0.00388939865, 0.0163443051, -0.00212331465, -0.00267320895, 0.0053785285, -0.0310188588, 0.0243880153, 0.001016, 0.0259614363, -0.0285623949, 0.0407162644, -0.0189613197, 0.00045331163, -0.0404272713, -0.00641409634, 0.00673921639, 0.0249660071, 0.00722488947, -0.0108935274, -0.0272298045, -0.0330418274, -0.00123124151, 0.0620056055, 0.00652648322, -0.024580678, 0.00215341849, -0.0104038408, -0.0256242733, -0.00656260783, 0.0269568656, -0.00262102927, 0.0228306502, 0.0246770103, 0.0259774905, -0.0108373342, -0.00426669838, -0.0143855577, 0.00300836354, -0.0127238324, 0.0112306895, 0.0281449575, 0.0145380832, -0.0114554632, 0.0294133276, -0.00683956174, -0.0168099087, 0.00913547073, -0.00267922971, 0.00324718631, -0.00922377501, 0.00879831, 0.0142490873, -0.0104841171, -0.0223329347, -0.000975861796, -0.000143494326, -0.00330137298, 0.00110380258, 0.018784713, 0.0188168231, 0.00561534474, -0.0232802, -0.0164566915, -0.0278077964, -0.00333950436, -0.0229912028, -0.00233404059, -0.0062134047, 0.0188328773, -0.0174521208, -0.0149796037, 0.00323313801, -0.00403791, 0.0360281132, 0.0252228919, -0.0122742839, -0.00948868785, -0.0290922206, 0.0214659497, -0.02337653, -0.00539057, -0.000573977304, -0.0096091032, -0.0191218741, -0.00441119634, -0.031356018, -0.0133178793, -0.020615017, -0.0204705205, 0.00114494422, -0.00282974821, 0.0152284615, 0.016304167, 0.00180923264, 0.00111183024, 0.0223489907, -0.00779886683, -0.0202939119, 0.00547486078, -0.0206792392, 0.00619734963, -0.0283857863, 0.00728509668, -0.0182709415, -0.00245646224, 0.0131733818, 0.0278880727, -0.00763028581, 0.0198283065, 0.0428997874, -0.0107169189, -0.0220599957, -0.00610101782, -0.0236013047, 0.00721284794, -0.00378905307, -0.00906322245, 0.00786308758, -0.0130128283, -0.00919969194, -0.00126234873, -7.63254357e-05, -0.0263788737, 0.0864417851, 0.0128041096, 0.000732523506, -0.0244843476, -0.000766641053, -0.0338767022, -0.0140082575, 0.0160874203, 0.0100185135, -0.0247412324, 0.0376015343, 0.0011830756, -0.00271334732, 0.0117685422, -0.0107169189, -0.0308904164, 0.00860564597, 0.0229430366, 0.0290922206, -0.0415511429, 0.0151000191, 0.00911138859, -0.00674323, 0.0255118869, -0.0238903, 0.00222566724, 0.0205347408, 0.021851277, -0.00911138859, -0.0104279239, 0.0119772609, -0.0154050691, 0.0194429792, -0.00349805062, -0.00187546085, 0.00620136317, -0.00669506425, 0.0174200106, -0.0189292096, -0.00326524861, -0.00192864402, 0.018174611, -0.0434777774, -0.00974557269, 0.0177892838, -0.00277154776, -0.012924524, -0.0168259647, 0.00443126541, 0.0136149023, -0.0198604185, 0.00655458029, -0.00820025, 0.0188007671, -0.0151160741, 0.0282412898, -0.0349363536, -0.0289637782, 0.0121699246, -0.0354180112, -0.00828454, -0.00157041, 0.00227784715, -0.0371198766, 0.00786710158, 0.00864578411, -0.0144818891, -0.00048567311, -0.00252670445, 0.0253352784, 0.0279041287, -0.00733727636, 0.00478448207, -0.0065826769, 0.00567153795, -0.00555915106, 0.00512565766, 0.012306395, 0.045211751, -0.0153408479, -0.0135105429, 0.00252269045, -0.0275509115, 0.0274706353, -0.0238260794, -0.00883844774, -0.0124027263, -0.032592278, -0.00393154379, -0.000547887466, -0.0223650467, -0.00670309179, -0.026138043, -0.0127238324, -0.000379306701, -0.013855732, 0.0247733425, 0.0122502008, -0.000425716571, -0.00535043189, 0.00775471469, 0.0300715957, 0.0114715183, -0.00284379674, 0.001768091, -0.0105724214, 0.020631073, 0.0103958128, -0.00732523482, -0.0100345686, 0.0277114641, 0.00289798342, -0.00989809819, -0.00790322572, 0.00490891095, 0.0106526976, 0.0144256959, 0.0108774723, 0.0152766267, 0.01259539, -0.0231999215, -0.0099703474, 0.0250783935, 0.0182709415, 0.00437507173, -0.00505742244, -0.0136871515, 0.0124749755, -0.0112226615, 0.0224934891, 0.00512967119, 0.0129486071, -0.00163663807, 0.00139079115, -0.0133580174, -0.000689876557, -0.0323514491, 0.0348079093, 0.00735333189, 0.0179337803, -0.00136670819, 0.00965726841, -0.00580800837, -0.000658769393, 0.00636593, -0.00522198947, -0.01968381, 0.0028157, 0.0420006886, 0.0152124055, -0.0205989629, 0.00652648322, -0.00122823112, -0.000423207937, 0.00533839036, -0.0324156694, 0.0190255418, -0.0393033959, 0.000374038529, -0.00382919144, 0.00435500266, 0.0241792966, 0.00352213345, 0.00590434, -0.0145059722, -0.00247251778, 0.00952882599, -0.0269408096, -0.0277114641, 0.0143935848, 0.0135506811, -0.00647028955, -0.00413825596, -0.00420247717, -0.00492496602, -0.0180461686, 0.0287711155, -0.0112949107, 0.00871803332, 0.0213696174, -0.0416474715, -0.0075981752, -0.0118086804, -0.00537451496, -0.0028177069, -0.00276352023, 0.00315286149, 0.00012329976, -0.00467209518, 0.0265233722, 0.00196075463, 0.00814806949, 0.0203099661, 0.0105001722, 0.0220278855, 0.0177250616, -0.0253192224, -0.0444732085, -0.0101068178, 0.0179337803, -0.0242595728, -0.00382317067, 0.00651444169, 0.0217067786, 0.00137674285, 0.00545479124, -0.0240508541, 0.00687970035, -0.00303043961, -0.0141126169, 0.00789118465, 0.0124669475, 0.00543472217, -0.00347597455, -0.0252550021, -0.0183672737, 0.0251907799, -0.0152846547, -0.00611707289, -0.00549091585, -0.00825242884, -0.00818018056, -0.0218031108, 0.00528621068, -0.0244361814, -0.00631776452, 0.00935221743, 0.00082885538, -0.0100345686, -2.75323473e-05, -0.0151562123, 0.0172112919, -0.00104058476, 0.00179317733, 0.00306656421, 0.0301679261, 0.00308462628, -0.0161837526, -0.0335555971, -0.00209120405, 0.0128924139, 0.0157663133, -0.00162459665, 0.0229751486, 5.96116079e-05, -0.000194294335, 0.0348079093, -0.00289396965, -0.0222366042, 0.00176508061, 0.0249338951, 0.00197179266, 0.00427874, -0.0330097154, 0.0176929515, -0.0121217584, -0.0155575946, 0.0225256, 0.016312195, -0.000582506706, 0.0163683873, 0.00018024593, 0.00607292075, -0.014770885, -0.0164566915, -0.00871000532, -0.015710121, -0.000197931862, -0.0277917404, -0.00230795075, -0.0368629918, 0.00810793135, -0.0122261178, -0.0122421738, 0.0159268677, 0.0048005376, 0.0152204335, 0.00301237754, 0.00817616656, -0.00771457609, -0.017853504, 0.0146183595, 0.000818319037, 0.0259453803, -0.0250944495, 0.0252710581, 0.00628565392, 0.00345189148, 0.0351611264, -0.0143213365, 0.027679354, 0.00430282298, -0.00681949267, 0.00651042815, 0.0122502008, 0.0169865172, -0.0014148741, 0.00537050096, -0.00492496602, 0.00597257493, 0.0285463408, -0.00813201442, 0.0065786629, 0.0104439789, -0.0090070283, -4.20589549e-06, 0.0361886695, -2.7359878e-05, 0.015075936, -0.0107088918, -0.0103315916, -0.0197640862, 0.00628565392, -0.0243719593, -0.00582005, -0.0256563853, 0.0245164577, -0.0165369697, -0.00495707663, -0.0122020356, -0.00579998037, 0.00612911442, -0.0155014014, 0.011078164, -0.0100425957, 0.0123304781, -0.0243398491, -0.00334552513, -0.00769049348, 0.0194269251, 0.0100345686, -0.0206952933, -0.0294454377, 0.00405396568, -0.0268765874, 0.0379226394, -0.030135816, -0.00343784317, 0.00122923462, -0.00105362968, -0.0180461686, 0.0327849425, -0.0261219889, 0.0116401, 0.00964924134, -0.0222044922, -0.0342941396, -0.00401382754, -0.026154099, -0.00544274971, -0.00455569429, -0.0243398491, -0.00228988845, 0.00846114848, 0.012924524, 0.0258008819, 0.0206792392, 0.0102111772, 0.00675125746, 0.047427386, -0.000748077058, 0.00470420578, -0.00528219668, 0.026443094, 0.0219957735, -0.00789118465, -0.0147468019, -0.0110861911, 0.0139279813, 0.0225577094, -0.0200851914, 0.000731520064, 0.00748177432, 0.0144256959, -0.00342780864, 0.00223971577, 0.0024163241, 0.00492898, -0.00602074107, 0.00727305515, -0.0264109839, -0.0199567489, -0.00528219668, 0.00323313801, -0.00444732094, -0.00814004149, -0.0105804494, 0.00482863421, -0.00623748777, 0.00713658519, 0.0128522757, -0.00390144018, 0.0125552518, 0.027679354, -0.0136149023, 0.00563541381, -0.00809990335, 0.00976162776, 0.00271535432, -0.000922176871, 0.0145300552, 0.0177090056, 0.0223489907, -0.001998886, 0.00850931369, -0.00612108689, -0.0119451499, -0.0204384085, 0.0147468019, -0.0361886695, -0.000972349662, -0.00792730879, -0.00345590548, -0.0261219889, 0.00924785808, -0.00268926425, 0.00785907358, 0.0384364128, 0.00711651612, 0.0573174544, -0.00763831334, 0.0016155655, 0.000550897792, -0.013221547, 0.00343182241, -0.00972951762, 0.00195373059, -0.0112146335, 0.00705630844, -0.0182548873, -0.00842100941, -0.00811997242, -0.015372959, -0.00359638943, -0.0318055674, -0.0145461103, -0.0103717297, -0.0149796037, 0.00493700756, 0.00313680619, -0.0184154399, 0.00944855, -0.00677935453, 0.00423458777, 0.0192824267, 0.00127037638, -0.000505240518, 0.0312275775, 0.020631073, 0.00388538488, 0.00290199718, 0.0101228729, -0.0045837909, 0.0145862484, -0.00363652757, 0.00715665426, 3.90093846e-05, -0.0397850573, -0.0104439789, -0.0100265406, 0.018784713, 0.00290601095, 0.00579596683, -0.0153569039, 0.00671914686, 0.0132616861, 0.014514, 0.00190456107, 0.00307057798, 0.0124027263, -0.00355825806, -0.0245164577, -0.0111985784, 0.00755803706, -0.00248857308, 0.00784703251, -0.0118648736, 0.00435098866, -0.0131252157, -0.0134061836, 0.00841298234, -0.00761423074, 0.0177571718, 0.00481257914, 0.0174521208, 0.0377620868, 0.00689174142, 0.00688371388, 0.015075936, 0.0137754558, 0.0120655652, -0.00710447459, 0.00268725748, 0.0203099661, 0.00218954287, -0.0032170827, -0.00346995378, 0.0107088918, -0.0148591893, -0.00887055881, -0.00508150551, -0.00244241394, -0.0157181472, -0.0209040139, -0.0015162233, 0.026154099, 0.00811997242, 0.0300234295, -6.67142e-06, 0.0128683308, 0.00822834577, -0.0244843476, -0.0187204909, 0.0299592074, 0.0175484531, -0.0253031682, -0.0229912028, -0.00295217, 0.00271736109, 0.011062108, 0.0215783361, 0.0083567882, 0.0106687536, -0.0147146909, 0.00179819472, -0.0132456301, 0.00455569429, -0.0116481269, -0.021819165, 0.0109738037, -0.0146023044, 0.00742156664, -0.00100747065, -0.0219154973, -0.0255600531, 0.00872606, -0.0180301126, -0.00356427883, 0.0142651424, 0.019057652, -0.00120916555, 0.00793132279, -0.00615319749, 0.0152766267, -0.00605686568, -0.00174501142, 0.0105242552, -0.0106607256, -0.0172112919, -0.0176126752, -0.0304248109, -0.0213053953, -0.0143935848, 7.66390149e-05, 0.0239384659, 0.00675125746, 0.00545077771, -0.0131412707, -0.0156619549, 0.0133901285, 0.00771056255, -0.00785907358, 0.00614115596, -0.00828454, -0.00679139607, 0.00626558438, 0.00478849607, 0.0117364312, 0.0093843285, -0.0124107543, -0.0253031682, 0.0174521208, 0.0173718445, 0.0184314959, 0.0180301126, 0.0186723247, 0.0109095825, 0.0201173034, -0.0219957735, -0.0157582872, -0.00838087127, -0.0126435561, -0.000270431628, -0.0212893412, 0.00972951762, 0.0260898788, 0.00547486078, 0.0411015935, -0.0134463217, 0.0129726902, 0.0205668509, 0.00678336807, -0.0158787016, -0.00473230239, -0.0251747258, -0.00128944207, -0.0240187421, 0.00166373141, -0.012932552, -0.0229430366, 0.00280767237, -0.0228948705, -0.00134061836, -0.00377500476, -0.00964121334, -0.0122823119, -0.0210806206, 0.0100907618, -0.0379868634, 0.000738544215, -0.00961713, -0.0328652188, 0.00738945603, -0.0118247354, 0.0422254652, 0.00641409634, -0.00427874, -0.0100185135, -0.00210525235, 0.0254637208, 0.0140724787, 0.00791928172, -0.0105965044, 0.00309666782, 0.00420247717, -0.00403590361, 0.00811595935, 0.000703423226, -0.0160633363, 0.0122100627, -0.0111664673, -0.00629769498, 0.0114634912, 0.00995429233, -0.0207916256, -2.83476566e-05, -0.0173076242, -0.0179337803, -0.00767042395, 0.011375187, -0.014152755, 0.0206471272, -0.0124990586, 0.00224372954, -0.00257085636, -0.0274706353, -0.0169383511, 0.00605686568, -0.0108935274, -0.00250663515, -0.00562738581, 0.0175966192, 0.00652246969, -0.0166814663, 0.00828454, -0.0251586698, -0.0194750912, 0.0182067212, -0.012924524, 0.0106687536, 0.006767313, -0.011383214, 0.00557922, 0.00411818689, 0.0168420188, -0.00551098492, 0.00462392904, 0.00999443047, -0.0131492987, 0.00591236772, 0.00231597829, -0.000547887466, 0.00660676, 0.00095629436, 0.0147227189, 0.018479662, 0.00536648743, 0.00534641789, -0.0250141714, 0.00412220089, 0.00155736506, 0.00993020926, -0.016296139, -0.00700412877, 0.0238421354, -0.00911941566, 0.0367666595, -0.0174039546, 0.00424662931, 0.0192984827, 0.0177892838, 0.000536849431, -0.0113189928, -0.0151160741, 0.0190897621, -0.0182227772, 0.00286787958, 0.0194429792, 0.00437908573, 0.00770253455, 0.0317413472, 0.00225175708, -0.029846821, 0.000899097358, 0.0165530238, 0.00107068848, 0.0149394656, 0.0305372, -0.00449548662, 0.00122020347, -0.00717672333, -0.0147548299, -0.0105082, 0.0180301126, -0.00863775611, -0.0102272322, -0.00588427112, 0.0108533893, -0.010765085, 0.00588025711, 0.0108935274, -0.000265916053, 0.00972149, 0.00327729015, -0.00350206438, 0.00417036656, 0.00315687526, -0.0165048577, 0.00206310721, -0.00715665426, -0.0154130971, 0.0127960816, -0.00761423074, -0.00859761797, -1.17827785e-05, -0.00433894759, 0.00413022842, -0.00240628957, 0.00168580748, -0.00494503556, 0.00226981938, 0.00250663515, 0.00702821184, 0.0102834255, 0.0216586124, 0.0015824514, 0.0101148449, -0.0147146909, 0.00187546085, 0.0159750339, -0.0182067212, -0.00877422653, 0.0134944879, -0.00712052966, 0.0114313802, -0.000777177338, -0.00531029375, 0.000854443526, 0.020936124, -0.00248054531, 0.00488884188, -0.0108774723, 0.0170507394, -0.00539859803, 0.0159509499, -0.00310469558, -0.000482411881, -0.00954488106, -0.016922297, -0.0156458989, -0.00628565392, 0.00391147472, 0.0190897621, -0.00708841905, -0.0113189928, 0.017853504, 0.00607693475, -0.0196356438, 0.00179618772, -0.0067994236, 0.0252550021, -0.00445936201, 0.00453161122, 0.0152204335, 0.0140243126, 0.0174842328, 0.01844755, 0.0101951212, -0.0149635486, -0.000277957559, -0.0293651614, 0.0230554249, 0.0173879, 0.000351962488, 0.0423539057, 0.00112688204, 0.0099703474, 0.023713693, -0.00809187628, -0.0106125595, 0.00372884562, -0.0104359509, -0.0210966766, -0.0308261942, 0.000737540773, 0.00500925677, -0.0074175531, 0.00392953679, -0.00744966371, -0.006771327, 0.00662682904, -0.00712052966, -0.0180782788, 0.00729713822, 0.01786956, -0.0121297864, 0.00162961392, -0.0168259647, 0.008003572, -0.0143373916, 0.00895083509, -0.00471223332, 0.0283376221, -0.0160954483, 0.00585216051, 0.00483264821, -0.00416233903, -0.00870197732, -0.0150117148, -0.00222968101, -0.00252068369, -0.0214659497, -0.018768657, -0.0033836565, -0.0152766267, -0.00687970035, 0.0215943921, 0.00128743518, -0.00588025711, -0.00192663714, -0.00862170104, 0.021225119, 0.00171791809, -0.0128603028, -0.0134784328, -0.00766641041, -0.0183833297, -0.00784301851, 0.00888661388, -0.00335355289, 0.00235611666, 0.00868592225, -0.0146263866, 0.00766239641, -0.0173879, 0.0210003443, 0.00637797173, -0.00727706915, -0.0308904164, 0.000945758075, 0.0194590352, -0.0263307076, 0.0138878431, 0.00495306309, 0.00980176684, -0.000944754633, -0.0122582288, -0.0134302666, -0.00600869954, -0.00107871613, 0.00908730552, 0.0112868827, 0.0196677539, 0.00190456107, 0.0329133831, -0.00649838662, 0.00554710953, -0.0120093711, -0.00524607254, 0.00202898984, 0.0316450149, -0.00188148161, -0.0121779526, 0.00139580842, 0.00323113101, -0.00899900123, 0.000303545705, 0.00662281504, 0.0143614747, -0.00333749736, 0.0249660071, 0.0194108691, 0.0062134047, -0.0170989055, -0.00531832129, 0.00751789892, 0.00492095249, 0.0042185327, 0.00284781051, 0.014160783, -0.00979373883, 0.000797748216, 0.0187044349, 0.0011007922, -0.00944855, -0.000794236083, 0.00413825596, 0.0085895909, -0.0123545611, 0.0423860177, 0.000211854829, 0.00387535035, 0.0112146335, -0.0193145368, 0.00653049722, 0.000135592112, -0.0132054919, 0.00144497782, 0.0056033032, -0.0103476467, 0.0043710582, -0.00647028955, 0.0140805067, 0.00537050096, 0.0096091032, 0.0167296324, 0.0188168231, 0.00482462067, 0.0304890331, 0.013847704, -0.00573977316, 0.0152846547, -0.00619734963, 0.00622544624, -0.00708841905, 0.014128672, -0.00169182825, 0.000226028656, 0.00945657771, -0.0085815629, -0.0103556747, -0.0113350488, 0.0143052805, 0.00936024543, 0.00510960212, 0.0197801422, 0.00293410779, -0.00683153421, 0.0091595538, -0.00783097744, -0.00170888705, 0.00686364481, 0.0165369697, -0.0107490299, 0.00844509248, -0.0281289015, 0.0209521782, 0.0217709988, -0.00752994, -0.00433493359, 0.00168982137, 0.00515776826, 0.0253031682, 0.000624150154, 0.0170507394, -0.0344868042, -0.000308562972, 0.027374303, -0.0145782214, -0.00826045685, -0.00168681098, -0.00435901666, 0.0161676966, -0.0106366426, -0.00196075463, 0.00683554821, -0.0147789121, 0.00259092567, 0.010757057, 0.00533036282, 0.0134543497, 0.00385528128, -0.0106125595, -0.0131252157, -0.00826848485, -0.00845312048, 0.0174681768, -0.00502932584, 0.00107169186, -0.0100425957, 0.00374088716, 0.00448344508, 0.0150919911, 0.00726904161, -0.0197640862, -0.0158706736, 0.0306816958, -0.000922678562, -0.00558724767, 0.00659873243, 0.0207434595, 0.00571569, -0.00154833391, -0.00786710158, 0.0104520069, -0.00859761797, -0.00193065102, 0.00290199718, 0.00874211639, -0.0242114067, -0.0046118875, -0.00783097744, 0.0169383511, -0.0201975796, -0.00840495434, -0.0207434595, -0.00894280709, -0.00213736319, -0.00199687923, 0.0121618966, -0.0152686, -0.00584413251, -0.00689575542, 0.0149234105, -0.0201012474, -0.00419043563, 0.00624150177, -0.0163844433, 0.00451956969, -0.00972149, -0.0239545219, -0.00193366129, -0.00552302646, -0.00589631265, 0.00456773536, -0.0119852889, 0.0082203187, 0.0121458415, -0.00251265592, 0.0262985975, -0.0057799113, -0.00121217582, 0.00277756853, -0.00875817146, -0.0169383511, 0.0139360083, -0.00133259071, -0.0115116574, -0.00347396755, 0.00308061251, -0.00331542152, 0.00974557269, -0.00911138859, -0.0026009602, -0.00612108689, 0.00404593814, 0.00611305889, -0.00753395399, 0.0155736506, -0.0167135764, -0.000641710649, -0.00651042815, -0.00674724393, 0.00659873243, 0.00403389661, -0.0016005137, -0.015067908, -0.023986632, -0.0235852506, 0.026780257, 0.0243559051, 0.0111664673, -0.00523804454, 0.00773865916, -0.0135827921, 0.00660274597, 0.015710121, 0.00724094454, -0.00506143644, 0.00234006136, 0.00270130578, 0.00373486639, 0.00269729202, -0.0135988472, -0.0111825233, -0.00793533679, 0.0166333, 0.0113189928, 0.0185920484, -0.0133178793, -0.000474384229, -0.00713257119, -0.0191860944, -0.0252068359, -0.00728108268, -0.0157582872, -0.00392552326, 0.00275147869, 0.018768657, -0.0220599957, 0.0122261178, 0.00443126541, -0.0063940268, -0.00273341639, 0.00628966745, 0.0122261178, -0.0168420188, -0.00539057, 0.00391348172, 6.98029689e-05, 0.00234206836, 0.0112306895, 0.00704025337, 0.0090070283, -0.0107971961, 0.0045797769, 0.00555915106, 0.0276472438, 0.0116320718, 0.00575582869, 0.00377299776, -0.0218994431, -0.0231838673, -0.00233002682, 0.0350969061, 0.000857453851, -0.0114233531, 0.000931709656, 0.0139841745, 0.0162238907, -0.00528621068, -0.00961713, 0.00923983101, 0.0205347408, -0.00406199321, -0.0283376221, -0.000349955575, -0.0098097939, 0.0181906652, -0.00785907358, 0.0252228919, 0.0221884381, -0.0117926253, 0.000127376305, 0.0225256, -0.0121458415, -0.00349805062, 0.021241175, -0.00205507968, -0.0175484531, 6.81723468e-05, 0.00682752, -0.0064020548, -0.000305050868, -0.0146344146, -0.013237603, -0.00640606834, -0.00342178787, -0.00570766255, 0.0278720167, -0.0197319761, -0.0105322832, -0.00905519444, 0.00410213182, 0.00273140962, -0.00871803332, 0.00150418177, 0.011062108, -0.0168580748, -2.35969146e-05, -0.0245646238, -0.00183331571, -0.0024143171, 0.0312275775, -0.0112387165, 0.00443527941, 0.0130449394, -0.0030183983, -0.0140243126, -0.0157261752, -0.015686037, 0.00420247717, -0.0130690215, 0.00670710579, 0.000903111184, 0.00367465895, -0.00543472217, -4.18629643e-05, 0.000139605938, -0.016890185, -0.00641811, 0.00118708948, -0.0100425957, 0.00899097323, 0.0182709415, -0.00785506051, -0.00919969194, 0.000563942769, -0.00671914686, -0.00830862299, 0.00259293243, -0.0147789121, -0.0163924713, 0.023681581, 0.00212130789, 0.0295899361, -0.0120254271, -0.00305853644, 0.00660676, -0.0246930663, -0.019057652, -0.013229575, -0.00395362, 0.0278238505, 0.00543070864, -0.0121940076, -0.0118407905, -0.0172434021, 0.012916497, 0.00630572299, 0.00862170104, 0.0145942764, 0.00828454, 0.0122502008, 0.0143373916, 0.0116802379, -0.0065826769, 0.00299632223, 0.00866183918, 0.00825242884, 0.00264109834, 0.0053785285, -0.00062113977, -0.00972951762, 0.00512967119, 0.0122582288, -0.00944052171, 0.00398974447, 0.00586018804, -0.0138958702, 0.00722488947, 0.0110460529, 0.00809187628, 0.00255078729, 0.00479251, -0.00678738207, 0.0117765693, -0.0148993274, 0.0331060477, 0.00740551157, -0.00542669464, -0.00899900123, 0.00797948893, 0.0106687536, -0.000479401497, 0.00385528128, 0.0208237357, -0.00207314175, 0.000872004, -0.00496911816, -0.000929201, 0.00771056255, 0.0128201647, -0.0218031108, 0.00408206228, -0.00623347377, -0.0194108691, 0.00854142476, 0.0304569229, 0.0157823693, -0.00146504701, -0.00308864028, -0.0161837526, 0.00476039946, -0.0014148741, 0.00689976942, 0.000912142277, 0.0101148449, 0.000530327, 0.00271535432, -0.00495707663, 0.0197961964, 0.000952280534, 0.00695997663, 0.0256403293, -0.0115437675, 0.0082082767, -0.00460787397, 0.00291002495, 0.0183030535, 0.00273943716, 0.0201173034, 0.0195874777, -0.0142571153, 0.0233283639, 0.00964924134, 0.00287791435, -0.016617246, 0.0119130397, 0.0109738037, -0.0379868634, -0.0136550404, 0.00964121334, 0.0114313802, -0.00169483863, -0.021225119, 0.018174611, 0.00649035908, -0.00646226201, 0.00177812553, -0.000332144205, 0.00537451496, 0.0183512196, 0.0171470698, -0.0133419624, 0.00199587573, 0.0213856716, 0.000447541766, 0.0303605907, -0.00389742642, -0.003995765, 0.00553506799, 0.00942446664, -0.003997772, -0.0123866713, -0.0174360666, -0.0054106391, -0.0170667935, -0.0207755715, 0.0102513153, -0.0246930663, 0.00459181843, 0.0226058755, -0.0173236784, 0.0162238907, 0.00571569, 0.0153007098, -0.0142089492, -0.004768427, -0.00889464188, 0.0021995774, -0.00874211639, 0.0127077773, -0.0108212782, -0.01844755, -0.00295016309, -0.0137192616, 0.00509756058, 0.00547084678, 0.0170346834, 0.0109336656, -0.0104841171, -0.00212933542, 0.0010997887, -0.0107410019, 0.0102994815, 0.00112788554, 0.00717270933, -0.00829256698, -0.0188649893, 0.00226179184, 0.0118086804, 0.0090150563, 0.00420247717, 0.00266919518, -0.0223650467, 0.000159925941, -0.0306335315, -0.00877422653, -0.0133178793, 0.00432289205, 0.0121779526, -0.0100345686, 0.0115999607, -0.00326324161, 0.00646627601, 0.000102728896, -0.014144728, -0.00360441697, 0.00431085052, -0.00378905307, -0.0173879, -0.0224453229, 0.00450351415, 0.0137032066, 0.018768657, -0.00332746282, 0.0169704631, -0.00210123858, -0.0137674278, 0.0085735349, -0.0615881681, -0.0019858412, 0.0021694738, 0.022140272, -0.00554710953, 0.0189452656, 0.024596734, -0.00301237754, 0.0121297864, 0.0195874777, 0.0210164, -0.0160472821, -0.00431085052, 0.00587222958, -0.0224453229, 0.00173297, 0.0115517955, 0.00576385623, 0.0124187823, -0.0135747641, 0.000344436557, 0.0177892838, 0.0155736506, -0.00275749946, 0.00106366421, -0.0110139428, 0.00464801211, 0.00867789518, 0.0179177262, 0.00196075463, 0.00608094828, -0.00226781238, 0.00712052966, -0.0194108691, 0.00273542339, 0.0131011326, 0.00563942734, -0.0213214513, -0.00127740053, -0.023392586, 0.0210966766, 0.0126676392, 0.0126676392, -0.0127559435, -0.0150197418, 0.0174681768, -0.00652246969, -0.00850128662, -0.0240829643, 0.0228627604, -0.0107891681, -0.0105804494, 0.000697904208, -0.016015172, 0.0068034376, -0.00117304106, 0.00672316086, -0.00801962707, 0.00828454, 0.0127238324, -0.0177732278, -0.0300715957, 0.0121699246, -0.0138958702, 0.000907125, 0.0103637027, -0.0116160167, -0.00293410779, -0.0124107543, -0.00144196744, -0.0216425564, 0.00944855, -0.0107329749, -0.00792730879, -0.0154050691, 0.000685361039, -0.00297223916, 0.00296019763, -0.0108052231, 0.0221723821, 0.0137353176, 0.0155897057, 0.0274866894, -0.00370676955, 0.00929602422, 0.000776675588, -0.0314844623, 0.0148912994, 0.0185599383, 0.00508953305, 0.00588427112, 0.0107410019, -0.0152766267, 0.00507347798, -0.000820827729, 0.014514, -0.00245044171, -0.00425465684, -0.00132958032, 0.00238622027, -0.00176407711, 0.0110540809, 0.0151241012, 0.00571970409, 0.0116561549, -0.0329133831, 0.0108052231, -0.0194429792, -0.011070136, 0.0143293636, 0.0279844049, 0.00439112727, 0.000781191164, -0.00941643864, 0.015075936, 6.27787667e-05, 0.00708039152, 0.0065024, 0.0166814663, 0.0110540809, -0.00112487515, -0.0217067786, -0.000443778787, -0.0042105047, 0.00935221743, -0.00623347377, -0.0111423852, -0.000413424219, 0.00225175708, 0.00549894338, 0.000679842, 0.00246047624, -0.00307659875, 0.00527015515, 0.016312195, 0.00492095249, -0.00185438828, -0.00117003068, -0.0118729016, 0.00228186091, -0.000958301302, 0.000238948167, -0.0123866713, 0.00319299963, -0.023681581, -0.00646627601, 0.00971346255, -0.00453161122, -0.0143213365, -0.0106848087, -0.0232802, -0.00370476278, 0.00811997242, 0.0106687536, -0.0105804494, -0.0230393689, 0.00678336807, -0.0159670059, -0.0119531779, 0.00293009402, -0.0197480302, -0.00705630844, 0.00813201442, 0.0115357395, -0.000913145719, 0.007999558, 0.0193466488, 0.00107068848, -0.000176357542, -0.0012011379, -0.00179819472, 0.0132777411, -0.0223329347, -0.0119772609, 0.00792730879, -0.0125632798, 0.00758613367, -0.00134663912, 0.0158947557, 0.00904716738, 0.0186241586, 0.0167456884, -0.00551499892, -0.0142490873, -0.0224292669, -0.00534641789, 0.00788315665, 0.0177090056, -0.00217348756, -0.0051617818, 0.0228948705, 0.00373687339, 0.00974557269, -0.0163764153, -0.0175002869, 0.00838889927, -0.00224975031, 0.00955290906, 0.0116722099, 0.000258390151, -0.00428275391, -0.0103396196, 0.0179177262, -0.00390946772, -0.0189131554, -0.00603679661, -0.00793533679, 0.00231597829, -0.0155736506, 0.0126435561, 0.000109125933, 0.00466406764, 0.00802364107, 0.00859761797, 0.0183512196, 0.00964121334, -0.0117685422, 0.0194429792, 0.0118568465, 0.0151562123, -0.00416233903, 0.0051617818, -0.00314082, 0.0179980025, 0.00873408839, -0.00647831755, 0.00518586487, 0.00663084304, -0.0158546176, -0.0255439971, -0.00843706541, 0.0307459179, 0.0220118295, 0.0129405791, 0.00315286149, 0.0201815236, -0.00191961299, 0.000624150154, 0.00752994, -0.00684357574, 0.0465282872, 0.00159248605, 0.0193466488, -0.000948266708, 0.00335756666, 0.00725298608, 0.00718876487, -0.0233444199, -0.0120655652, -0.0164888036, 0.000933214847, 0.00838889927, -0.0200370271, 0.0213696174, 0.0122421738, 0.00420247717, 5.63503745e-05, -0.00952079892, 0.00311071612, 0.0120495101, -0.00447943155, -0.00745769124, -0.00766239641, -0.0141367, 0.00311071612, -0.0163844433, -0.00859761797, 0.000225652358, 0.00673921639, 0.00952079892, -0.00789519865, -0.0247733425, 0.0123385051, -0.00389140565, -0.0104359509, -0.0106446706, -0.00629368145, 0.0210485104, -0.0216586124, 0.00642212387, 0.00757810613, -0.0163764153, -0.0107088918, 8.24088929e-05, 0.00815208349, -0.0142972535, -0.0212732852, -0.0183351636, -0.0106848087, -0.00834876113, -0.016617246, 0.00320704817, 0.00735734543, -0.0151160741, -0.0194590352, 0.00842100941, 0.0194269251, -0.00648233108, -0.0140885338, 0.00772661762, 0.0211608987, 0.00139580842, -0.00105965044, 0.0065866909, -0.00598461647, -0.0282412898, -0.00583610497, -0.00543472217, -0.0120655652, -0.00752994, -0.00434697513, -0.000925187196, -0.0406841561, 0.00262905704, -0.0112146335, -0.0103075085, 0.0110219698, -0.0236334149, 0.0178856142, -0.000996934366, -0.0149876317, -0.00611707289, 0.0205989629, -0.0117123481, -0.00148913, 0.00673118839, 0.0107008638, 0.00103657087, 0.000101035563, -0.0118568465, -0.00547486078, -0.00769049348, 0.00972951762, 0.00614918349, -0.0117845973, -0.0105884764, -0.0217388887, -0.0137995388, -0.00225978484, -0.028626617, -0.0129807182, 0.00337964273, 0.010171039, 0.0124027263, 0.011078164, 0.000614617311, -0.00299431523, -0.0143293636, -0.00383922597, 0.00383721897, -0.0034157671, 0.0121297864, 0.00479251, 0.0275027454, 0.00160553097, -0.0141768381, -0.0160954483, -0.0230714791, 0.027085308, 0.00275950623, -0.0135025149, -0.0150518529, -0.00097937393, -0.00799153, -0.045821853, 0.0121057034, 0.00412621442, 0.0117123481, -0.00319299963, 0.0124107543, -0.0148110231, 0.0218833871, 0.0146825807, 0.0698084831, -0.00334552513, 0.0192182064, -0.0521155335, -0.016922297, -0.0322390608, -0.00295618386, 0.0467851721, -0.00964924134, 0.00831665, 0.00639001327, -0.00233404059, -0.0236013047, 0.025865104, 0.00751789892, -0.0074175531, -0.00530627975, -0.0116240438, -0.00443929294, 0.000157793591, 0.0048045516, -0.018784713, 0.00797547493, -0.023986632, 0.00964924134, -0.0049811597, -0.0180782788, -0.0136710964, 0.000863976369, -0.00412621442, 0.012900441, 0.00810391735, 0.00387535035, -0.0221081618, -0.0245646238, -0.00755402306, 0.00972149, 0.00941643864, 0.00481659267, -0.0163683873, 0.0203099661, 0.00972951762, -0.0114313802, -0.000710949185, 0.000360742735, 0.0139761474, -0.0216265023, 0.00350607815, 0.00314483372, -0.013229575, -0.0147789121, -0.0215783361, -0.00848523155, -0.000262905698, -0.000594548183, 0.00935221743, 0.0174360666, -0.000184510631, 0.0174842328, 0.012627501, -0.00831665, 0.0133580174, -0.00268525048, 0.0138878431, -0.00273140962, -0.024596734, 0.00117805833, 0.00749782939, 0.00429880898, -0.00500925677, -0.00381715, -0.0115758786, 0.00283777597, -0.012908469, -0.0142651424, -0.0149474936, -0.0254155546, 0.0136871515, 0.00382317067, 0.000205708653, -0.0180461686, 0.0204544645, -0.00505340891, -0.0123706162, -0.0177090056, 0.000248982717, -0.0211608987, 0.00447541755, -0.00617326656, 0.0251105037, -0.00249057985, 0.011688265, -0.0215943921, 0.0177090056, 0.012290339, 0.0109818317, -0.0233444199, 0.00212732842, 0.0153488759, 0.0214017276, 0.00553105399, 0.00909533259, -0.0171631258, -0.0213053953, -0.00241231034, 0.0390786231, 0.0099623194, 0.0203741882, 0.000727506238, 0.00863775611, -0.0106687536, 0.0230875351, 0.0105643934, 0.031998232, 0.00387535035, 0.000485171389, -0.00286185881, -0.00103456399, 0.00850128662, -0.0120173991, 0.0144979442, 0.00726502761, -0.00559126167, 0.0125070857, 0.0114875743, -0.0236173607, 0.0107008638, -0.00355625106, -0.00444732094, -0.0237779133, 0.0159429219, -0.0192663707, 0.00991415326, -0.0043951408, 0.0171470698, 0.00401583407, 0.0135667361, -0.00230594375, 0.00572371762, 0.0166333, 0.00777076976, -0.0088063376, 0.018768657, 0.0105001722, -0.0274064131, -0.0163443051, 0.0287550595, -0.0199085847, 0.000233554587, 0.0367345475, 0.000862972869, -0.00525811408, 0.0196516979, -0.00693990756, 0.00665492564, 0.0172594581, -0.0137995388, -0.0250302274, 0.0238903, 0.0148591893, 0.00343985017, -0.00815609749, 0.0042145187, 0.0119451499, 0.0200851914, 0.000546883966, 0.0149474936, -0.0356748961, 0.026764201, 0.0105322832, 0.0121458415, 0.0218833871, -0.00645022048, 0.0075941612, 0.0159268677, 0.0185759924, -0.0176608413, -0.032576222, 0.00856550783, -0.00527015515, -0.00619333563, 0.0120173991, 0.0249981172, 0.0451475307, -0.00333348359, -0.00398171693, 0.0108453613, 0.00552302646, 0.015991088, -0.0235210285, -0.0117685422, 0.024596734, 0.00746170525, 0.00883844774, -3.50582741e-05, -0.0145782214, 0.0215783361, 0.013221547, -0.0142892255, -0.00487680035, 0.0194590352, 0.00257888413, -0.00999443047, -0.0266036484, -0.0206952933, 0.0295738801, 0.0128924139, 0.00491693849, 0.0170186274, -0.00453161122, 0.0106125595]
07 Oct, 2022
Angular PrimeNG Form Calendar Disable specific dates and/or days Component 07 Oct, 2022 Angular PrimeNG is a collection of Interactive UI components for Angular applications. Developers can use these components to make beautiful and responsive web interfaces in no time as most of the components have all the necessary functions implemented. In this article, we will be discussing the Angular PrimeNG Form Calendar Disable specific dates and/or days Component. The Calendar Component is used for date and time input from the user. To disable specific dates and/or dates first set the readonlyInput to true so that the user cannot enter the dates using the keyboard. Now disable the dates using the disabledDates property and/or disable days using the disabledDays property. Angular PrimeNG Form Calendar Disable specific dates and/or days Properties: readonlyInput: This property is used to disable the manual entering of the date by the user. disabledDates: It specifies the disabled dates which cannot be selected. It accepts an array of type Date and the default value is null. disabledDays: It specifies the disabled days in a calendar. It accepts an array of type Number (weekday numbers). The default value is null. Syntax: <p-calendar [(ngModel)]="..." [disabledDates]="..." [disabledDays]="[0,1]" [readonlyInput]="true"> </p-calendar> Creating Angular Application and Installing the Module: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Finally, Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: The project Structure will look like this after following the above steps: Project Structure Example 1: In this example, we disabled “10/2/2022”, “10/4/2022”, and “10/6/2022” so these dates cannot be selected by the user. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>Angular PrimeNG Form Calendar Disable specific dates and/or days Component</h4> <p-calendar [(ngModel)]="calendarVal" [disabledDates]="disabledDatesArr" [readonlyInput]="true"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; disabledDatesArr = [ new Date("10/2/2022"), new Date("10/4/2022"), new Date("10/6/2022") ]; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Example 2: In this example, we set the disabledDays to [0, 2, 4] to disable the selection of Sundays, Tuesdays, and Thursdays. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>Angular PrimeNG Form Calendar Disable specific dates and/or days Component</h4> <p-calendar [(ngModel)]="calendarVal" [disabledDays]="[0,2,4]" [readonlyInput]="true"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Reference: http://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-disable-specific-dates-and-or-days-component?ref=asr10
Languages
or days Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.033225473, -0.0162390675, -0.0103304135, 0.0232920852, 0.0490130223, 0.0194619689, -0.0206452571, 0.00990225, 0.0298001673, -0.00136331096, 0.00882016402, 0.0125568621, -0.0076835854, -0.066824615, 0.00764076924, -0.0152114751, -0.0582613498, 0.00524694705, 0.00956750382, 0.0101046544, -0.00633681705, 0.0214860141, -0.0252382811, 0.0162234977, -0.00887465756, 0.0508813709, 0.00745782675, 0.00631346274, -0.00815845747, 0.00231208187, 0.0184966549, -0.0154216643, 0.0235100593, 0.00259428052, -0.0645826, -0.0151569815, 0.0203494355, 0.0303451028, -0.0214393046, -0.00255924882, -0.0249891691, -0.00741501, 0.00922497362, 0.0120430663, -0.0331631936, 0.00118036848, -0.0180607066, -0.00796383806, -0.0256275199, 0.0009181184, 0.0267173909, 0.0167061538, 0.0428474694, 0.0403874777, 0.00808839407, 0.0312792771, -0.00715032732, 0.00988668, 0.00801054668, 0.00720871333, 0.0266084038, -0.051348459, -0.0104394006, -0.0220776573, 0.0308433287, 0.0350938216, -0.000413080299, 0.0261257477, 0.00266045122, -0.00614219764, -0.0200536121, -0.001343849, -0.0180762764, -0.0156707782, -0.0290216878, -0.0399203897, -0.0169552676, 0.00211746222, -0.0284611844, 0.024288537, -0.0214237347, 0.00348563865, -0.0288504232, 0.0106495898, -0.00732937735, -0.0163169149, 0.0483279601, -0.0481099859, 0.0123700276, 0.000119022101, 0.0275425781, 0.0148144504, 0.00101396861, -0.0445289835, -0.00265850499, 0.00813510269, 0.0262035951, 0.0169085581, -0.0441241749, -0.00383206178, -0.0242573973, -0.00924832746, 0.000459789, -0.0444667079, 0.0209255088, -0.000786263554, 0.0437505059, -0.0115681943, 0.0351561, -0.00861776, -0.00579577452, -0.0231208187, 0.0226693023, 0.012564647, -0.0719937161, 0.0223734789, -0.00347590772, -0.0150947031, 0.028507892, -0.0124634448, -0.00553498417, -0.00262541953, -0.00420378521, 0.0455565788, -0.00612273533, 0.0316062383, 0.00131368288, -0.0117005361, 0.0207231045, -0.0105873113, 0.00953636505, 0.0176091902, -0.0123855975, 0.00641466491, 0.0259544812, 0.0360279977, 0.000680195808, 0.0180918463, -0.0456499942, 0.00573349604, -0.00969984569, -0.0152893225, -0.00303217466, -0.022482466, -0.0291773845, 0.00868782308, 0.0105250329, 0.0576385669, 0.0165660288, 0.00710751116, -0.0519712418, -0.037927486, 0.0130550889, 0.00595147, 0.0334123075, -0.0344087631, -0.0019695512, -0.0378029272, -0.0435325317, -0.0388927981, 0.00862554461, 0.0138257826, 0.00245220819, -0.00478764437, 0.0213147476, -0.014137174, 0.009178265, -0.0188703258, 0.00903035328, 0.0427229144, 0.00400138088, -0.00946630165, -0.0226070229, -0.00144991674, -0.0262658726, 0.00644191168, 0.0137401503, -0.00806504, 0.0311858598, -0.0100501608, -0.0271689091, 0.0179205816, -0.00329101901, 0.00140126178, 0.0194152594, -0.00981661677, 0.00833750796, -0.00665599341, -0.0339728147, 0.0047253659, -0.0108909179, 0.00551941432, 0.0222956315, 0.0581679344, 0.0132574933, -0.0243975241, -0.0272623263, 0.0134676825, 0.010026806, -0.0137946438, 0.00203961437, -0.00192381558, -0.00171265332, 0.0196176656, 0.00756681338, 0.0401695035, 0.00892915111, 0.047487203, 0.0293330792, -0.0126035707, -0.0243041068, 0.00732548535, 0.00629400089, -0.0131251523, 0.00518856104, 0.0191817172, -0.0289438404, -0.0197110828, -0.00559726218, -0.0172199495, -0.0184032377, 0.0350938216, -0.00745004183, 0.0206452571, -0.0751076341, 5.38853274e-05, -0.00648083584, 0.00800276175, 0.0128604695, -0.00558558526, 0.0149312224, -0.0177337453, 0.0171109624, -0.0094429478, 0.0514418781, 0.016067801, 0.00898364466, 0.00625118427, 0.00379508385, 0.0561438873, 0.0122921793, -0.0423803851, -0.039609, -0.0401383638, -0.00728656119, -0.0177337453, 0.0226381626, 0.0522826351, 0.0246622078, 0.0147132482, -0.00495112501, -0.0100890845, -0.0455565788, 0.00411426043, -0.0240861326, -0.0189326033, -0.0187924765, -0.0191505775, 0.0236968938, 0.0347512923, 0.024880182, 0.0130784428, 0.000842703274, 0.0272156168, -0.0139581244, 0.00425827876, 0.00736051658, -0.00473704329, -0.00704912515, 0.0128293298, 0.0453386046, -0.0117005361, 0.032851804, 0.014736603, -0.025861064, -0.0101902867, -0.0315128192, -0.0144797051, 0.0563307218, 0.0516287126, 0.000606240355, -0.0180295687, -0.00934174471, -0.00902256928, 0.0132574933, -0.0439996198, -0.00170973397, 0.0236190464, -0.033599142, 0.0481411256, -0.0143317943, -0.012074206, -0.00199874421, 0.020909939, 0.0330386385, 0.022591453, -0.00203377567, -0.0141994525, -0.0141216051, 0.0488573276, -0.0289594103, -0.00618890626, 0.00181385549, 0.000627161935, -0.0199913345, 0.0161145106, 0.028274348, -0.0277605522, -0.0378029272, -0.0443110093, -6.93332622e-05, -0.0185277946, -0.0336925611, -0.00940402318, -0.0255029649, 0.0299247243, -0.000288766954, 0.0408545658, -0.0159899537, -0.00229262, 0.00797940698, -0.0177337453, -0.0150791332, -0.00118912628, 0.0248490423, -0.0198979173, -0.0400449485, -0.00817402732, -0.00277916924, -0.041570764, -0.0621537454, -0.00829858333, -0.00134287588, 0.0170019753, 0.00535982614, -0.00855548121, -0.00455020834, -0.0350315459, 0.0122688254, 0.00641077245, -0.00935731456, -0.0138024287, 0.0317619331, 0.0116460426, 0.0403252, -0.016067801, 0.0212524701, -0.00515742181, 0.0266551133, -0.00287064048, 0.00145380909, 0.011241233, 0.0298780147, 0.00405976688, 0.0223112013, -0.0312792771, -0.0073099155, -0.0616866574, -0.0282432102, -0.0270754918, 0.00332021201, -0.0308744684, -0.00686618267, 0.0519401021, 0.0480165705, -0.0321044624, 0.00553887617, 0.0157174859, -0.027293466, -0.0083997855, -0.032384716, -0.010268135, -0.0153827406, -0.0156474225, -0.0430654436, -0.0256430898, 0.0132730631, 0.0198045, 0.0120197125, -0.0164726097, -0.0767891482, 0.0652676597, 0.017033115, 0.0340350904, 0.0208788011, -0.000596022815, -0.00551552186, -0.00952858, -0.00804947, -0.0253472682, -0.0154917277, 0.0652676597, 0.00323847169, -0.0200847518, -0.00282782409, -0.0259077735, 0.0151414117, 0.0134054041, 0.050632257, -0.0288192835, 0.0200380441, 0.0253005605, -0.0056400788, -0.0135143911, 0.00788209774, 0.0037678373, -0.0387371033, -0.00572181866, 0.0603788123, 0.0209877882, 0.0261568855, 0.0263748597, -0.0398269743, 0.00123972737, 0.0293330792, 0.0220309496, 0.0184032377, 0.0228717066, -0.0105016781, -0.0289749801, 0.0320733264, 0.0150168557, -0.0325404108, 0.00988668, 0.00927168224, -0.0123077491, -0.0475183427, 0.0181541238, 0.0075162123, 0.0479231514, -0.0179672893, 0.0208476614, 0.0218441132, -0.0165348891, 0.023307655, 0.0225136057, 0.0205829777, 0.0498849191, 0.0215171538, 0.00293875742, -0.03552977, -0.0240705628, 0.00723985257, -0.0427229144, -0.0258143563, -0.0185745023, -0.0759172514, 0.0159121063, -0.00816624239, 0.0222333539, -0.030563077, -0.031637378, -0.0108675631, -0.00606045732, 0.0162857752, 0.00103829603, 0.0286168791, -0.00079502142, -0.00268575177, -0.0121209146, 0.00581523636, 0.0345333181, 0.0022770504, -0.0061499821, 0.018372098, -0.0185433645, -0.0143162245, 0.0194619689, 0.00201431382, 0.0218129754, 0.00432834169, 0.0191817172, 0.0203494355, 0.00694403052, 0.0289594103, 0.0215638615, -0.0232609455, -0.0116771813, -0.0362459719, -0.0144874901, 0.0599117242, 0.0146976793, 0.0482656844, -0.0258766338, -0.0013886115, -0.0206452571, 0.00892136618, -0.0463661961, -0.041446209, 0.0190260205, 0.026406, 0.00756292138, -0.0457745492, 0.0148455901, 0.00385930855, -0.00395078, -0.00629400089, -0.012440091, 0.00753567461, -0.0129227471, 0.0316218063, 0.0312792771, -0.0135922395, 0.0168462805, 0.0374603979, -0.0235879067, -0.0169708375, -0.00267407461, -0.01099212, -0.00896029081, -0.015336032, -0.00670659449, 0.00446846802, 0.034782432, -0.00878124, -0.0100657307, -0.0216572788, 0.0250358768, -0.00188586477, -0.0114358533, 0.0305163674, 0.00637184875, -0.0182942506, -0.00141877751, -0.00704523269, 0.030204976, 0.00157447334, -0.031637378, -0.00896807574, 0.0220620874, 0.00542210462, 0.00446846802, 0.0326338299, 0.0550540164, -0.00677276542, -0.0209877882, -0.0295043457, -0.0163947623, -0.0100735156, -0.00138471904, -0.0543378182, 0.0308277588, -0.0358100235, 0.0209877882, -0.0131796449, -0.0147132482, -0.0270443521, -0.0166283064, 0.00402084272, 0.0199601948, -0.00394104887, 0.028025236, -0.00162507442, -0.00708026439, -0.0360591374, -0.0458991081, -0.0115837641, -0.00465919543, -0.00912377145, -0.0298001673, 0.0208632313, -0.0198045, 0.0476740375, 0.0178583022, -0.0259856209, -0.0258299261, -0.000940013095, 0.00296989642, 0.0195398163, -0.0123077491, 0.0196332335, -0.0116149029, -0.0155228665, 0.0163013451, -0.0156863462, -0.0074072252, 0.00567121757, 0.0400449485, 0.0178427324, -0.000901575724, -0.0083608618, 0.0135611, 0.00440619, -0.016425902, 0.00409869058, -0.0113346511, 0.0229806937, -0.0147833116, -0.0372735634, -0.00250280928, 0.0223579109, 0.0303762406, 0.0150947031, 0.00777311064, 0.0297534578, 0.0301115587, -0.0238992982, 0.0150791332, 0.00252421736, -0.0281342231, -0.0111400308, 0.0207075346, -0.0104238307, 0.0149390073, -0.0116149029, 0.00751232, -0.026219165, -8.46595649e-05, 0.0310613029, -0.00607213425, -0.0102759199, 0.0141760986, -0.00484213792, -0.00658203801, 0.0318709202, -0.0407922864, 0.0206141174, -0.00772640156, -0.00600596378, -0.00818959624, -0.0306253545, 0.0244753715, 0.0500094742, 0.00977769308, 0.0427229144, -0.0290216878, -0.00337081309, -0.0147755267, 0.00453463895, -0.0184343774, -0.00492387824, -0.0439684801, -0.0083608618, 0.00621226057, 0.0261568855, -0.00055904506, -0.0239304379, 0.000665112806, -0.0121442685, 0.0232453756, 0.014868944, 0.00599428639, -0.00517299119, 0.078283824, -0.0108442092, 0.0297223199, -0.0145419836, 0.020302726, 0.0225758832, -0.0130239492, -0.0415396281, -0.00881238, 0.023074111, 0.0208788011, 0.0083219381, 0.012074206, 0.011358005, 0.00340973702, -0.0257987864, 0.0234477799, -0.0278851092, 0.00765244616, 0.0184188075, -0.0282432102, 0.0223112013, 0.0253161285, 0.0305475071, 0.0249424595, 0.0225291755, 0.0268886555, 0.00155987684, -0.0260634683, 0.000130395187, 0.00220309501, -0.0168307107, -0.0193685517, -0.00778478757, 0.0288037136, 0.015818689, 0.0148845138, -0.0143006546, 0.00927168224, 0.0154294493, 0.0060176407, 0.0105406027, 0.00263904291, -0.0369621702, -0.00811174884, -0.00220893347, 0.000936607248, 0.0325092748, -0.0158887524, 0.015343816, -0.0146354008, 0.00203961437, -0.0184499472, 0.00617722888, -0.0169864073, 0.0119963577, 0.00128059753, -0.0196020957, -0.0167061538, -0.0230429713, 0.0282587782, -0.00840757, 0.0160989407, 0.00439062, 0.0307187717, -0.0275892876, -0.00482267607, -0.000997425872, -0.0121520534, -0.0135066062, 0.0192751344, -0.0142383762, 0.0314816795, -0.0169085581, 0.0071036187, -0.00277916924, -0.0189793129, 0.00520023797, -0.0313726924, 0.00127670518, 0.00487716962, -0.0354674906, 0.00767969294, 0.00523526967, -0.0585416034, -0.0173289366, 0.0028881561, -0.0283677652, 0.0212369, 0.0308900364, -0.0172510892, -0.00488106161, -0.0465218909, -0.00620058319, 0.021750696, 0.0127670513, -0.00639909552, -0.000601861393, -0.0200847518, -0.00462027127, -0.00020130974, 0.00525862398, -0.0060526724, 0.00747339614, -0.0217039883, -0.00369388168, 0.00536761107, -0.00614608964, -0.00766801601, 0.0308277588, -0.0133197717, 0.0108831329, 0.00392353302, -0.0113891447, 0.017764885, 0.0182475429, 0.0146976793, 0.0167217236, 0.0134676825, -0.0417576022, 0.0169396978, 0.00769137032, 0.0256275199, -0.0180607066, -0.0142850848, 0.0176558979, -0.00681947405, -0.0232298058, -0.00200263667, 0.0304540899, 0.0129461018, 0.00237241411, -0.00771472463, -0.0252382811, -0.0257676467, 0.00695181545, 0.00562061649, -0.0131796449, -0.0135455308, -0.00990225, -0.0270443521, 0.00381843839, -0.0118951555, -0.00813510269, -0.00402084272, 0.0271844789, 0.0280408058, 0.00693235314, 0.0275581479, 0.00918604899, -0.00223618024, 0.016192358, -0.0444667079, -0.0189793129, 0.00832972303, -0.00181872095, -0.0591332465, -0.027309034, -0.0162857752, -0.00100715691, 0.017033115, -0.0175780505, -0.0189014636, -0.0278384, -0.00465919543, -0.00548827508, -0.0123466728, 0.00330853462, -0.00387487793, -0.009785478, 0.0108052855, 0.00726709934, -0.000571695331, 0.0284144748, 0.0113268662, -0.0395778604, 0.0124089513, 0.0293330792, -0.031652946, 0.0120897749, 0.00095120375, -0.0361214131, 0.0301894061, -0.0185745023, 0.00962978229, 0.00775754079, 0.0259700511, -0.00334162, -0.0232298058, -0.0422246866, 0.0343153439, 0.00994895864, 0.0114436373, -0.00523916213, 0.0271377694, 0.0206296872, -0.00102661888, 0.0196488034, 0.026219165, -0.0177960247, -0.0267796703, 0.015585145, 0.0243975241, -0.025720939, -0.0087734554, 0.00694792299, 0.0152893225, 0.0470201187, 0.0335057266, -0.00428552553, 0.0193996914, -0.0396712758, 0.0201314613, 0.010875348, 0.0222489238, 0.00442954432, -0.0174534936, 0.00322290207, -0.0238370188, 0.0105483877, 0.00477596698, -0.000910333591, 0.0154138794, 0.0200224742, -0.0444978476, 0.000188051272, 0.0073449472, -0.000511363207, 0.0119262943, 0.0146509707, 0.0100034522, -0.0059436853, -0.0335057266, -0.0153282471, -0.0212369, 0.00357516366, -0.0137323653, 0.0280408058, -0.043003168, -0.0370555893, -0.00576463528, 0.00190824608, 0.00173503452, 0.00147813652, -0.051815547, -0.00898364466, 0.000924443535, 0.0189326033, -0.0163947623, -0.011241233, -0.0361214131, 0.0371801443, 0.0329140835, -0.0017554696, -0.0298935845, -0.00824409, 0.0156240687, 0.00118231459, 0.0201937389, 0.0161300804, -0.00822852086, 0.0236190464, -0.0271689091, 0.00981661677, -0.0129538868, -0.0200224742, 0.0225447454, -0.00623950735, 0.0143162245, -0.0144874901, -0.00483046053, 0.00308861444, -0.024039425, -0.0589775518, 0.0308588985, 0.0145964772, -0.0496669449, -0.019570956, 0.0196332335, -0.0170019753, 0.0355609097, -0.0242262594, -0.0168929882, -0.000831999176, 0.020178169, -0.0184343774, 0.00998788234, -0.00274024531, 0.0344399, 0.0112334481, 0.018730199, -0.0401695035, -0.00395661825, 0.00412204489, 0.00911598653, -0.0482345447, -0.0124089513, 0.0278228316, 0.0362459719, 0.00463973358, -0.00785485096, 0.0134910373, -0.0228094272, 0.00506789656, 0.0250047371, -5.37636879e-05, -0.00767969294, 0.00598260947, -0.0109999049, 0.0167061538, 0.0132652782, -0.0047214739, -0.047829736, -0.0442487337, 0.00235295203, 0.00481099868, 0.024148412, -0.0348447077, -0.0411348194, -0.0155617902, 0.00935731456, 0.0293486491, -0.00488495408, 0.00567511, -0.00780424941, 0.0335368663, -0.0223890487, 0.00488884654, -0.0189014636, 0.0528742783, 0.00709972624, -0.00310029159, 0.0226537324, 0.0152270449, -0.017391216, -0.00881238, -0.0388927981, 0.0122532556, 0.0158809666, -0.00106748904, -0.00728656119, 0.0360279977, -0.0230429713, 0.0169241279, -0.0308744684, -0.0110388286, 0.00750064291, 0.00502508041, -0.00716589717, -0.0176558979, -0.0327583849, -0.0103693372, -0.0162234977, 0.0415396281, 0.00763298431, -0.0176870376, 0.024522081, 0.0266239736, -0.016550459, 0.0109298415, 0.00424660183, 0.00582302129, 0.0365885, 0.0215171538, 0.040698871, -0.00291345688, 0.0034369838, -0.01099212, -0.0147910966, -0.0012932478, 0.00234516733, 0.046272777, 0.00182066718, -0.000126746076, 0.0430654436, -0.0327895246, -0.00882016402, 0.0120041426, 0.0189793129, -0.0171888117, -0.00436337339, 0.0103771221, 0.0189948808, 0.000881627202, -0.0157252718, 9.4192892e-06, -0.00051282288, -0.00931060594, 0.0113346511, 0.0187769085, 0.0128838234, -0.00427384861, -0.0244286638, -0.0159743838, -0.0290372577, -0.0060526724, -0.0191817172, -0.0100501608, 0.00214081653, 0.00312559213, 0.00239966088, -0.00723596, 0.00281809317, 0.0098555414, 0.0258766338, 0.0212369, -0.0266084038, -0.00574906543, -0.00364522683, 0.00958307367, -0.0260167606, 0.00328518031, 0.00980883278, -0.0283521973, -0.0202871561, -0.00803390052, -0.0333811678, -0.00111809012, -0.0242262594, -0.0243975241, -0.0136778718, 0.000600888277, 0.0219686702, 0.0124556599, 0.00573349604, -0.0212057605, 0.0248334724, -0.00653922139, -0.00809617899, 0.00180509768, -0.00600207131, 0.0211590528, -0.0253316984, 0.0270287823, -0.0193996914, 0.0041415072, 0.00311586121, 0.0249736, -0.00544545893, 0.006523652, 0.0319176279, -0.0163013451, -0.0190727301, -0.00662485417, -0.00417264597, -0.00229651225, -0.0211123433, -0.00417653844, 0.0102603501, -0.0172043815, -0.00952858, 0.00232959772, 0.00246193912, -0.0196488034, 0.0710595399, -0.0135533148, 0.0110543985, 0.00145283598, -0.00497058686, -0.0166283064, -0.000452734064, 0.0268108081, 0.00917048, -0.0311547201, 0.0433768369, -0.0209255088, -0.0131718609, 0.013280848, -0.00933396071, -0.0357477441, 0.00173503452, 0.0184966549, 0.0377406515, -0.0171888117, 0.0244442336, -0.00745004183, 0.00799497683, 0.0117083201, -0.00683115097, -0.0120975599, 0.00960642751, 0.0100579457, -0.011474777, -0.0170642547, -0.000712794601, -0.0204739906, 0.0239615757, -0.00549216755, 0.0100423759, 0.00299130473, -0.0140904654, 0.00686229, -0.0082907984, -0.0198512077, 0.0121286986, 0.00260011898, -0.0391730517, -0.00525083905, 0.0270132124, -0.00354207843, -0.0211590528, -0.0122143319, -0.00543378154, 0.0129227471, -0.0062434, 0.0087345317, -0.0165348891, 0.00618112134, -0.0160989407, 0.0156474225, -0.0307343416, -2.25941294e-05, 0.0100813, -0.0229962617, 0.0088045951, -0.019570956, -0.00747339614, -0.0423492454, 0.00910041668, 0.0121520534, 0.000439353957, 0.0137401503, -0.000332313124, 0.00578020466, 0.0237436015, 0.0132574933, 0.0121286986, -0.00250280928, 0.00082567404, 0.0175313409, 0.012206547, 0.0119107254, 0.0217039883, -0.0283054877, -0.00889801234, 0.000772153609, -0.00465530297, 0.0169864073, -0.0136311632, -0.00100521068, -0.000203742486, -0.0362148322, 0.00276359962, -0.00477596698, 0.00168637966, -0.0062589692, -0.0326649696, -0.012206547, 0.00640298799, -0.0138724912, 0.021750696, -0.00801054668, 0.00862554461, 0.0111322459, 0.0320421867, 0.0187613387, 0.0173756462, 0.018605642, -0.00167275628, -0.0049277707, 0.0296444707, 0.0155540053, -0.0207231045, 0.0242418293, 0.0523449108, 0.0234010722, -0.00576463528, -0.00104218849, -0.00292902626, -0.0033357814, 0.0345644578, 0.0152503988, 0.0231986679, 0.0214704443, -0.0269665048, -0.0150168557, 0.0144096417, 0.0135066062, 0.0180762764, 0.00780424941, -0.020302726, 0.012440091, -0.0133976191, 0.0237903111, -0.00990225, 0.0121131297, -0.0103459824, -0.00456967, -0.0267796703, 0.0272623263, -0.0313571244, 0.0369310342, -0.0167372935, 0.0182319731, -0.0138102137, 0.00609159609, -0.00709972624, -0.0151414117, -0.00830636825, -0.0123933814, -0.0177804548, -0.0102603501, 0.0220932271, 0.0129694557, -0.0137323653, 0.0155695751, -0.000143653655, 0.0127670513, 0.00219725631, -0.00953636505, 0.00929503608, -0.0104783243, -0.00460080942, 0.0103537673, 0.00853212737, 0.0225447454, 0.0180918463, -0.00836864673, -0.00915491, -0.00850098766, 0.00998009741, -0.0319799073, -0.00931839086, -0.0106106652, 0.00217000954, -0.0145653374, 0.000406025327, 0.011241233, 0.00481489114, 0.00152971072, 0.012805976, -0.0361525528, 0.0132419234, 0.0205207, -0.0240861326, -0.00249307812, -0.0172822289, 0.00370555883, -0.00782371126, -0.0126658492, -0.00235295203, -0.0122921793, 0.0109298415, -0.00426995615, -0.00514185242, -0.00118718, 0.00918604899, 0.0216417089, 0.0451829061, 0.0144174267, -0.00540264277, -0.0134287588, -0.00399359595, 0.0245687906, -0.0168307107, -0.0122610405, 0.0216105711, 0.0205985475, -0.00189948815, -0.00544156646, -0.0126658492, 0.00398191903, 0.00709583377, -0.00846206397, -0.0124712298, 0.000194862965, 0.0143473633, -0.012689204, -0.0320421867, -0.0282587782, -0.0031217, -0.0128993932, -0.0158731826, -0.0222022142, -0.00653143693, -0.000635433302, -0.0129616717, -0.00134190277, -0.0228405669, 0.00381065346, -0.00055417954, -0.00681558158, -0.0147677418, -0.000596509373, -0.0191194378, 0.000443489611, 0.00683893589, -0.0171265323, -0.00736440904, 0.00871117692, 0.00661317725, -0.0275114402, -0.027293466, 0.0124089513, 0.0116149029, -0.00950522535, -0.0138724912, -0.000552233367, 0.00348758488, -0.000171873515, 0.0249113198, 0.00168735266, -0.0247867629, 0.0151180578, -0.00315283891, 0.000227705037, -0.00274997624, -0.0126580643, 0.00987111, -0.0187613387, -0.0162234977, 0.014503059, 0.00911598653, -0.00981661677, 0.0148066664, -0.00567511, -0.00895250589, -0.012206547, -0.013288632, -0.002144709, -0.0231363885, 0.00862554461, -0.0401383638, 0.00503286533, -0.0159743838, 0.00966092106, 0.0103459824, -0.0256119519, 0.0119807879, -0.0105250329, 0.0307499114, 0.00602542562, 0.0116304727, -0.0123466728, -0.0287570059, 0.0300181415, 0.00105678488, 0.0199913345, -0.0162702054, 0.00814288761, 0.00552330678, 0.00252616359, 0.0453074649, -0.0188391861, 0.0279318187, 0.00221282593, 0.00392742548, 0.0110388286, 0.0110777523, 0.025129294, -0.00345449941, 0.00163577846, -0.0125802169, 0.00818181131, 0.0188858956, -0.00283366279, 0.00811174884, 0.0254718252, -0.00290177949, 0.00209800014, 0.0305007976, -0.00280252355, 0.0137167955, -0.00649251277, -0.0132263545, -0.0219686702, 0.00527808582, -0.000521094247, -0.0117316749, -0.0463661961, 0.0169708375, -0.00837643165, 0.0192907043, -0.00721649826, -0.0225447454, 0.0184188075, -0.00343503756, 0.0118017383, -0.0111711705, 0.0179361515, -0.0314505436, 0.00645358907, -0.0101747178, 0.0328829437, 0.0206296872, -0.0192751344, -0.0321044624, 0.0318553522, -0.00931060594, 0.0255341027, -0.0358100235, -0.00396829564, -0.00217779423, 0.0179828592, -0.0268575177, 0.0441553146, -0.0251915734, 0.0144952741, 0.00130103261, -0.0296444707, -0.0312169977, 0.0113424351, -0.0315751, -0.00414929166, -0.00582302129, -0.0133197717, 0.000118413918, 0.024646638, 0.0270132124, 0.0275270082, 0.00902256928, 0.0113813598, 0.0114825619, 0.0255652424, 0.00192284258, 0.0200380441, 0.00738776335, 0.0338482559, 0.0194308292, -0.00325987977, -0.0118250921, -0.00931060594, -0.00948965643, 0.0202715863, -0.0272000488, -0.00394494133, -0.00264877407, 0.0213614572, 0.0117550297, 0.00966092106, 0.000403106038, 0.0119340792, -0.00203377567, 0.00171265332, -0.0133275567, -0.011108892, -0.000180144852, 0.003804815, -0.014619831, -0.0121131297, -0.0024833472, 0.0240549929, -0.0196488034, 0.0237903111, 0.0302983932, 0.0122143319, 0.00859440584, 0.00936509948, -0.0284300447, 0.0243508164, -0.0226693023, 0.00840757, -0.0102603501, -0.00779257249, 0.0179205816, 0.0141293891, 0.0210656356, 0.00354986312, 0.0164414719, 0.0165815968, 0.00254367944, -0.015958814, 0.0202715863, -0.0216417089, 0.00701798592, -0.0219063926, -0.00581912883, -0.0104238307, 0.00896029081, 0.00343503756, -0.0165348891, 0.0394221656, 0.0250981543, 0.028507892, 0.0072748838, 0.0132419234, 0.00448793, -0.00300103566, 0.00993338879, -0.0103771221, 0.006523652, -0.0154372342, 0.000813023769, -0.0107897157, -0.0104082609, 0.00708804931, -0.0115370555, -0.0156396385, -0.0258922037, -0.0129616717, -0.00900699943, -0.00369193545, -0.00137012266, 0.00116771809, -0.0076485537, 0.0198979173, 0.0041415072, -0.00353818596, 0.0101591479, -0.00951301, 0.00937288441, 0.0241328422, 0.00504065, -0.00353818596, 0.0133042019, 0.00614219764, 0.00754735153, 0.00395272579, 0.00782371126, 0.00528587075, -0.0001744279, -0.0426294953, -0.0115137007, -0.028507892, 0.0209877882, -8.15578169e-05, 0.0173133668, -0.00244831573, 0.00223812647, 0.0224201884, 0.00976990815, 0.0121209146, 0.00242690742, 0.0173600763, -0.00488884654, -0.0345644578, -0.00475261267, 0.00436726585, -0.00762519939, 0.00187808, -0.0018518063, -0.00466698036, -0.00957528874, -0.017157672, 0.0101980716, 0.0064263423, 0.0186523516, 0.00845427904, 0.0224357583, 0.0305475071, 0.0166750159, 0.0102447802, 0.0206296872, 0.00555444602, 0.0139425546, 0.00215249369, -0.00349536957, 0.0108052855, -0.00350899296, -0.00233932864, -0.00696349237, -0.00139639631, -0.00839200057, -0.0168618504, 0.0124011664, 0.00808060914, -0.0295821931, -0.0150869181, 0.0169241279, 0.0242729671, 0.00477596698, 0.0286635887, -0.0239460059, 0.00531701, 0.00184402161, -0.0290528275, -0.0245843586, 0.0328829437, -0.00644969661, -0.0281653609, -0.00653143693, -0.00777700264, 0.00078480388, 0.00537150353, 0.0173289366, 0.00458134757, 0.00546102831, -0.0232453756, -0.00430888, -0.00279863109, 0.00591643853, 0.00425049383, -0.0237747412, 0.00920940377, -0.0137323653, 0.00470590405, -0.00272078323, -0.0263748597, -0.0239460059, 0.00137109577, -0.00184596772, -0.0181074161, 0.00959864352, 0.0180295687, -0.00402084272, 0.017515773, -0.00950522535, 7.26782891e-05, -0.0152270449, -0.0129149631, 0.0209255088, -0.00553109171, 0.00729045365, -0.010509463, -0.0176870376, -0.0241172723, -0.0112023093, 0.00336108194, 0.0160210934, -0.00380870723, -0.0144407814, -0.0232609455, -0.00304190582, 0.00909263175, 0.0142461611, -0.00906149298, 0.0157019161, -0.00720482087, 0.00342336041, 0.00861776, 0.00440619, -0.00732937735, 0.0132341385, -0.0180295687, -0.0144563504, 0.0080261156, 0.0253005605, 0.0147677418, 0.02416398, 0.0170486849, 0.0130706588, 0.0169241279, -0.00979326293, -0.00516131427, -0.00510292826, -0.0340039507, -0.0031294846, -0.00983997155, 0.0190260205, 0.0217039883, 0.00846984889, 0.0381454602, -0.00311975367, 0.0194308292, 0.0112178791, 0.0037678373, -0.00142461609, -0.00571792666, -0.0201158915, -0.00458134757, -0.0164414719, 0.00722428272, -0.0212836098, -0.0219998099, -0.000785290438, -0.00553109171, -0.000867517258, -0.000362722436, -0.0269976426, -0.0224668961, 0.000774099841, 0.000340584462, -0.0427540541, -0.0114669921, -0.00416486152, -0.0313259847, 0.00498615624, -0.0115759792, 0.0255963821, 0.00282587786, -0.00207659206, -0.0174846333, 0.00319370907, 0.0207386743, 0.0168618504, -0.00284923217, -0.0185900722, 0.00475261267, 0.0071036187, 0.0177181773, 0.0149156535, -0.00881238, -0.00515742181, 0.00685450528, -0.00949744, 0.0162079278, 0.0133431256, 0.000951690308, 0.00355180935, -0.00325404131, -0.0267796703, -0.0122221168, -0.011716105, -0.00277138432, -0.00441008201, 0.00857105106, -0.0186523516, -0.000245585717, 0.0083608618, -0.0254562553, 0.000430596061, 0.00383011554, 0.00341946795, 0.00419989275, 0.0195865259, 0.0117316749, 0.0159743838, -0.00114825612, 0.00708804931, -0.0213303175, -0.00889022741, 0.00704523269, -0.00813510269, -0.00314310798, 0.014853375, 0.0139114158, 0.00648472784, 0.0145964772, 0.0177493151, -0.000690899906, 0.00648083584, 0.0125568621, -0.00313143083, 0.0109064877, 0.00755513646, -0.00799497683, -0.0054727057, -0.00168929889, 0.0186367817, 0.0211123433, 0.00827522948, 0.00267602084, -0.00826744456, 0.00178952806, -0.0106106652, 0.0069362456, -0.019570956, -0.00259038806, 0.0284456145, -0.00610327348, 0.026826378, -0.0210344959, 0.000171873515, 0.0169708375, 0.0209566485, -0.0066326391, 0.010151363, -0.012447875, 0.0122376857, -0.00696349237, -0.0124945845, 0.0196488034, -0.0133197717, -0.00174671167, 0.0156007139, 0.00354791689, -0.0221866444, 0.000624242646, 0.0242262594, 0.0112256641, 0.00112003635, 0.0169241279, -0.0110543985, -0.0150635643, -0.00271299854, -0.00311586121, 0.00363354967, 0.00595536269, 0.0141838826, -0.0177181773, -0.00494723255, 0.0150791332, -0.00552330678, -0.00563229388, -0.000665112806, -0.0131407212, 0.0122610405, 0.0191038679, -0.00293291872, 0.0140671115, 0.0130784428, -0.0190104507, 0.00886687264, -0.00677665742, -0.0108831329, 0.028865993, 0.011474777, -0.00700241653, -1.01339083e-05, -0.0105406027, 0.0016163165, -0.00392742548, 0.00876567047, 0.00959864352, 0.01281376, 0.0130005954, 0.00898364466, 0.00279668486, 0.0195242465, -0.0069712773, 0.00712308055, -0.0110543985, 0.00579577452, 0.0184966549, -0.00672605634, 0.00181093626, 0.0221710745, 0.00621226057, 0.00553498417, -0.00665988587, -0.000770207436, 0.0091082016, 0.0183409601, -0.015468373, 0.0063913106, -0.0061499821, 0.0117550297, -0.0184188075, 0.00504065, -0.00750842784, 0.0104861092, -0.00645748153, -0.0194775388, -0.02416398, -0.0184343774, 0.0116382577, 0.0167217236, -0.003775622, -0.0142150223, 0.0258922037, 0.00494334, -0.0160055235, 0.0118484469, -0.0110076899, 0.0159043204, -0.0110777523, 0.00213303184, -0.00182553264, 0.00544935139, 0.00455020834, 0.0158809666, 0.0199601948, -0.00868003815, 0.00126016245, -0.0274491608, 0.0295043457, 0.0130628739, 0.00184110226, 0.036744196, 0.0152737536, 0.0079482682, 0.0116538275, 0.00239576842, -0.0196176656, 0.00366468867, -0.00215054769, -0.0095207952, -0.0201314613, 0.00400527334, 0.000231475788, -0.0135143911, 0.00659371493, 0.015958814, -0.015460588, 0.0178583022, 4.375142e-06, -0.0192439947, -0.00386709324, 0.00850877259, -0.0206608269, 0.015826473, -0.00246777758, -0.000356154022, 0.0107741458, 0.0145108439, -0.012798191, 0.0207542442, -0.0137090106, 0.013888061, -0.0050990358, -0.00737219397, -0.0120508512, -0.0220620874, -0.00654311385, -0.00853991229, -0.0144874901, -0.0205985475, 0.00576463528, -0.0177804548, -0.0171888117, 0.0211590528, 0.00711529609, 0.0187146291, 0.00616555195, -0.00685839774, 0.0118173072, 0.0084309252, -0.015102488, -0.0033357814, 0.00122123852, -0.00976212323, -0.0224513281, 0.00479932176, -0.00249113212, 0.000799400383, 0.0224046186, -0.015958814, -0.000758043665, -0.00649640523, 0.0188703258, 0.0161456503, -0.00660928478, -0.0123388879, -0.000340584462, 0.0195086785, -0.0243352465, 0.00418821583, -0.00361603382, 0.0211901926, 0.000832485734, -0.00303606712, -0.00707637193, -0.0111478157, -0.00733327, 0.0147210332, 0.0135844545, 0.0293642189, -0.00678055, 0.0387993827, -0.00315673137, -0.014985716, -0.00487327715, 0.00302244374, -0.00523526967, 0.00882016402, 0.0071036187, -0.011957434, 0.00811174884, -0.00976212323, -0.00376199861, 0.00901478436, -0.00845427904, 0.000747339625, -0.00588140683, 0.0240549929, 0.0307499114, 0.000702090503, -0.00698684668, -0.005437674, 0.00422713952, 0.0187769085, 0.00560893957, -0.00283366279, 0.0111011071, -0.00531311752, -0.0168307107, 0.0130083803, 0.00998788234, 0.00074101449, -0.00525083905, -0.00404030457, 0.0161456503, -0.0268108081, 0.039141912, -0.00800276175, -0.0057763122, 0.0128993932, -0.0238214508, -0.0035342935, 0.00300103566, -0.00605656486, -0.0152971074, 0.0129616717, -0.014868944, 0.0161767881, 0.00125529699, 0.0153204622, 0.00788209774, 0.00061061926, 0.017515773, 0.00213497807, 0.00504454225, 0.0439684801, 0.0128682535, 0.00140710035, 0.0147132482, 0.00180607068, -0.0123778125, 0.00236852164, 0.0318397805, -0.00694403052, 0.00810396392, 0.0140359718, -0.0141138202, -0.0132419234, -0.00444900617, 0.0120508512, 0.0112723727, -0.00715422, 0.00750453537, -0.00131660223, -0.00191505777, 0.0139503395, -0.0150791332, -0.011591549, 0.00357905612, 0.00860997476, -0.0073099155, 0.0143862879, -0.00350510073, 0.00724374503, 0.0182942506, 0.0107040834, 0.00716978917, -0.0131329363, 0.0083219381, 0.0238681585, 0.00794437621, 0.0203805733, -0.0124790147, -0.00397802657, 0.0163324848, -0.0351561, -0.00931060594, 0.0145341987, -0.00682336651, -0.000280738896, 0.0066910251, 0.00458524, 0.00354207843, 0.000874815509, 0.00814288761, -0.00813510269, -0.00269548269, 0.00555055356, -0.00453463895, -0.0197889302, -0.014253946, -0.00809617899, -0.00229651225, 0.0105483877, -0.00582302129, -0.00938845426, -0.0178894419, -0.0017700661, 0.00465530297, 0.020178169, 0.0084309252, -0.0227004401, -0.000127719177, 0.0297690276, -0.0141838826, -0.00962978229, 0.0255185328, 0.0127514824, 0.0113268662, -0.0149156535, -0.000716200448, 0.00684672082, -0.0028570171, 0.00596703961, 0.00867225323, 0.00844649412, -0.00743447198, -0.0190260205, -0.00756292138, 0.0149935009, -0.0200691819, -0.00276554585, -0.0133275567, -0.000950717193, 0.00185277942, 0.00130881742, -0.00110057439, -0.0140671115, -0.0143862879, -0.00451128464, 0.00253394828, -0.00815067254, -0.000373913092, 0.000314797362, -0.0162857752, 0.000981369754, -0.0216728486, -0.0387371033, -0.00239576842, 0.00831415318, -0.0103070587, 0.00462027127, -0.0185122248, -0.00209994637, 0.00799497683, 0.00634460198, 0.0228872746, -0.00813510269, 0.0163013451, 0.0116849663, -0.00728266872, -0.0137401503, -0.00293097249, -0.0128682535, -0.0116460426, 0.00119788421, 0.00270715985, -0.00474482821, 0.0161456503, -0.0174690634, -0.00952858, 0.005437674, 0.023681324, 0.00817402732, -0.00614219764, 0.0138179976, -0.033941675, -0.01762476, -0.0133742653, -0.00282782409, 0.00955971889, 0.000927849382, -0.00478375191, -0.00608381163, -0.0277916919, -0.030080419, 0.0129850255, 0.012440091, 0.00739554828, -0.0162857752, 0.0019325735, -0.0192907043, 0.0138335675, -0.00759016769, 0.00580745144, -0.00966870598, 0.0080572553, 0.00164940185, 0.00481489114, 0.00822852086, -0.00757070584, -0.00101883407, -0.0171732418, 0.0198045, 0.0169864073, 0.0112723727, -0.0139814783, -0.00236462918, 0.0150246397, -0.00629010843, -0.0441553146, 0.000339854625, -0.00813510269, -0.0159743838, 0.0098555414, 0.0147833116, -0.0190104507, 0.023074111, 0.000721065968, 0.00148397509, -0.0147755267, 0.0132107846, -0.00637184875, -0.00746171875, -0.00349926203, -0.00320344, 0.000906927744, 0.000445922371, 0.0270443521, 0.00850877259, 0.013654517, -0.0103459824, -0.0083997855, 0.0293953586, 0.025736507, 0.00414929166, 0.00739554828, 0.0098555414, -0.0234633498, -0.0186990593, -0.00430888, 0.0337237, 0.000929795555, -0.0113813598, -0.00113949832, 0.0166127365, 0.0276359953, -0.00622783, -0.00435948092, -0.00435169647, 0.0257676467, -0.00280057732, 0.00921718869, 0.000891358184, -0.0051690992, 0.0148300203, 0.000441543409, 0.0199601948, 0.0292708017, -0.0125802169, -0.0138413524, 0.028507892, 0.000560991233, 0.000831512618, 0.0233387928, -0.0144641353, -0.010019022, 0.0105016781, -0.000373669813, -0.0254406855, -0.00639520306, -0.00116577197, -0.0189948808, -0.00381454593, -0.0122999642, -0.00154819968, 0.00483046053, -0.00286090933, -0.0179672893, 0.00470979651, -0.00235100579, -0.0145809073, -0.00352650881, -0.0102525651, 0.0144797051, -0.0140671115, -2.23964689e-05, -0.0255185328, -0.0104160458, 0.0124790147, 0.0221243668, -0.00667545525, 0.0103615522, 0.0091082016, -0.00644191168, -0.0140982503, -0.00211746222, -0.00683893589, -0.00906149298, -0.00565954065, 0.0154995117, 0.0142072374, -0.0142773008, -0.0134521127, -0.00308277598, -0.00983997155, -0.00581912883, 0.00178174325, -0.00941959303, -0.0165348891, 0.024880182, 0.0175313409, -0.00548438309, -0.013529961, 0.00884351879, -0.00993338879, 0.00587751484, -0.00350120827, -0.00445289863, -0.00511849765, 0.0144018568, -0.00411426043, 0.0151569815, -0.0182786807, -0.010151363, 0.0218129754, -0.0205674097, -0.0159743838, -0.0100034522, 0.00186932215, 0.0203182958, 0.0213303175, -0.0270287823, -0.0326026902, -0.00885908864, 0.0231675282, 0.0106651587, 0.0132341385, 0.0124556599, 0.0121831922, 0.00772640156, 0.00405976688, 0.0141293891, 0.00735273166, -0.00451517664, 0.00604488747, 0.000914712553, 0.0172355194, 0.0145497676, 0.0173445065, -0.00658982247, 0.00973098446, 0.023307655, -0.0010363498, 0.0147521729, 0.0095207952, -0.0200069044, 0.00403252, 0.0180451386, 0.0258766338, -0.00674162619, -0.00216611708, 0.00962978229, -0.00605656486, -0.012206547, 0.0321044624, 0.0191350076, -0.00599039393, -0.0292085223, 0.00641466491, 0.00586194498, -0.0131952148, 0.00325793354, 0.0298935845, 0.00681168912, 0.00963756721, 0.00201042136, -0.00515742181, 0.00740333321, 0.0212213304, -0.0236034766, 0.00484603038, 0.000409431173, -0.01099212, 0.00446457556, 0.00868782308, 0.0100735156, 0.000324285065, -0.0155929299, -0.0162079278, 0.0172666591, 0.0142228073, 0.00746950367, -0.005978717, 0.00442565186, 0.0143162245, 0.00926389731, -0.00496280193, 0.0095207952, 0.00342141418, -0.00192186947, 0.0309990235, -0.00714643486, 0.0038787704, -0.017033115, 0.0140048331, 0.0172977988, 0.00437505078, 0.0426294953, 0.00896807574, -0.00218168669, 0.0168307107, 0.0139659094, 0.0125257233, 0.00317424722, 0.0156629924, 0.00983997155, -0.000663653133, -0.0192907043, 0.00773807894, 0.00581912883, 0.00404030457, -0.00343893, 0.0100112371, 0.00124751218, -0.00950522535, 0.0136155933, 3.82397275e-06, 0.0083608618, 0.0146354008, 0.0127826212, -0.0217195582, -0.00769137032, 0.0154372342, -0.0148455901, 0.0286947265, 0.00448403787, 0.00218947162, 0.0102525651, -0.00694792299, -0.00378729915, -0.00535204168, -0.0126502803, -0.0208165217, -0.0223579109, -0.0308588985, 0.0145809073, -0.00980883278, 0.00375226769, 0.00273051416, -0.0117628137, 0.00535593368, 0.013646733, 0.0233855024, 0.0018216403, -0.00185959111, -0.00330658862, -0.00186251046, -0.0139970481, 0.00312364614, -0.00552719925, -0.0172355194, -0.00745004183, -0.00566343311, 0.00983218662, 0.0117550297, 0.0105016781, 0.0115604093, -0.0280563738, 0.010517248, -0.00419210829, -0.0126658492, 0.019337412, 0.00680779666, -0.000342773943, 0.0055077374, -0.0042154626, 0.00396634918, 0.0254251156, 0.0109220566, 0.00756292138, -0.00585416, -0.023914868, 0.0204428528, -0.0222177841, 0.00254367944, -0.0149390073, 0.0135533148, 0.00669491757, -0.0105406027, 0.00638741814, -0.0157252718, -0.0036004642, 0.00342141418, -0.0207542442, -0.0016824872, 0.00211746222, -0.0152270449, -0.001086951, 0.0032676647, 0.0179050118, 0.0222333539, 0.00801054668, -0.0212213304, -0.00111419777, -0.00781203434, -0.0140359718, 0.0201314613, -0.059320081, -0.000346909597, -0.000416486146, -0.0040480895, -0.00990225, 0.0115292706, 0.0215638615, -0.0107741458, 0.025129294, 0.0139503395, 0.0162702054, -0.0130239492, -0.00236657541, -0.00185764499, -0.00638741814, -0.010517248, 0.00792491343, 0.0184655171, 0.0119029405, -0.0194463991, -0.00748507306, 0.000427190214, 0.0153983096, -0.0159743838, -0.00175936194, 0.00510682072, -0.00127670518, 0.00731770042, 0.00879681, 0.0154761579, -0.00317619345, 0.0141216051, 0.00854769722, -0.0177337453, 0.00927168224, 0.0090381382, -0.00550384494, -0.0283054877, -0.000729823834, -0.0173756462, 0.0045930245, 0.0088045951, -0.00860219076, -0.0113035114, -0.009178265, 0.0124011664, -0.00822073594, -0.000580453197, -0.0106885135, 0.0136623019, -0.0108675631, -0.00786263589, -0.00563229388, 0.00643412676, 0.026328152, -0.00301465904, 0.0126113556, 0.00369193545, -0.00411815243, 0.00406755134, -0.0166438762, -0.0336925611, 0.00994117372, -0.0189170334, 0.0203182958, 0.0170642547, 0.00340584456, 0.0001845238, 0.0106495898, -0.00437115831, -0.0184188075, 0.0217195582, -0.00828301441, -0.00815067254, 0.00259817275, 0.00825187471, -0.00697906222, 0.000854867, -0.0158576127, 0.0254406855, 0.00710751116, 0.0131718609, 0.0245065112, 0.00150441017, 0.0108364243, 0.000549800636, -0.0230896808, 0.0312169977, 0.0136311632, 0.00606434932, 0.0288815629, -0.00379508385, -0.0134521127, -0.00189948815, 0.00896029081, 0.00946630165, 0.00997231249, -0.0017116802, -0.013280848, 0.0179517195, -0.0108208545, -0.000140491087, -0.0105016781, 0.00863332953, 0.0136856567, -0.0181541238, 0.0195865259, -0.0119262943, -0.00235295203, 0.00442954432, 0.0090692779, 0.00735273166, 0.00557390787, 0.0151803354, 0.0247867629, -0.00462416373, 0.00690899882, 0.00212719315, 0.0209877882, -0.00933396071, -0.00341168325, -0.0167684332, 0.0101980716, 0.0114669921, 0.00448403787, 0.00785874296, -0.0098944651, 0.00434001908, 0.0111711705, -0.00848541874, 0.00103051122, 0.00808839407, 0.00417653844, 0.00440229755, 0.0108675631, -0.00311780744, 0.00699463161, -0.00466308789, -0.0139581244, -0.00125918945, 0.00195300858, -0.00502897287, -0.00330658862, 0.00355959404, -0.0243352465, -0.0177181773, -0.00129714026, -0.00344671472, 0.00128449, -0.0101357931, 0.00723206764, -0.00398191903, 0.00643412676, 0.00362576474, -0.00206491491, -0.0126113556, 0.00483824546, -0.0198979173, -0.00388460909, 0.00758627569, -0.0135455308, 0.0025203249, -0.010517248, 0.0266862512, -0.00311196875, -3.10783325e-05, 0.018730199, 0.00486549223, 0.000318933016, 0.00834529195, -0.0111945244, 0.0168462805, -0.00826744456, -0.00364328059, 0.01208199, -0.0241172723, 0.0131251523, 0.00118036848, 0.0362459719, 0.0167684332, 0.0229651239, 0.00484992284, -0.0181385558, -0.0113891447, -0.0177493151, -0.0216417089, -0.000478277885, 0.0128604695, -0.000218217334, 0.00143337401, 0.000555152656, 0.000924443535, 0.0129928105, -0.0103381984, -0.00355959404, -0.0116538275, 0.00181580172, 0.0221243668, 0.0188858956, -0.0126191406, -0.00618112134, -0.00883573387, 0.00499394117, -0.000262493297, -0.019695513, -0.0109531963, -5.69262593e-05, -0.000386563363, -0.0301426984, 0.00198317459, 0.0234789196, -0.0080572553, -0.00539875031, -0.0043127723, 0.022342341, 0.0196799431, -0.00929503608, 0.0231675282, 0.000860219, 0.014619831, -0.00488106161, 0.00990225, -0.0214237347, 0.0183409601, 0.00848541874, -0.0171265323, 0.00718535902, 0.0216105711, -0.0116226878, -0.0148144504, -0.0120119276, 0.0237903111, 0.0295821931, 0.00937288441, 0.00797162205, 0.0151881203, -0.00707637193, 0.00619279873, -0.000419162156, 0.00109278958, 0.0416641831, 0.00623172242, 0.00889022741, -0.00286869425, -0.00189754192, 0.0209722184, -0.00789377466, -0.0237591714, -0.00517688366, -0.00764466124, 0.00561283203, 0.00972319953, -0.0336302817, 0.0160833709, 0.00818959624, -0.00506400457, -0.00750064291, 0.00753178215, -0.00155306514, 0.012074206, -0.00104510773, -0.0104627544, -0.0003488558, -0.0283677652, 0.00374448276, -0.00511460565, -0.00305358297, 0.00226342701, 0.0157797653, -0.0128760384, -0.00147132482, -0.0182942506, -0.00262347353, 0.0116460426, -0.0107585769, 0.000649543188, -0.00968427584, 0.0121909771, -0.0239304379, 0.0141527439, -0.00548049062, -0.0144563504, -0.0192907043, -0.00460080942, 0.00725931441, -0.0210812055, -0.0224668961, -0.000813510327, -0.0171421021, -0.0105328178, -0.0128993932, 0.00135649927, -0.000726904545, 0.00531701, -0.0170953944, 0.00231986679, 0.0341907889, -0.00417264597, -0.0151491966, 0.0113813598, 0.0192907043, -0.019570956, 0.013203, 4.12958652e-05, 0.0018216403, -0.0233387928, 0.00157350022, -0.00647305092, 0.00281225448, -0.00564786326, 0.010750792, 4.46408922e-05, -0.0174223538, 0.00295821927, 0.000235124913, -0.00503675779, -0.00653922139, -0.023556767, 0.0113268662, -0.0126736341, -0.0187769085, 0.00639909552, 0.00633292459, -0.0229806937, 0.00943516288, 0.0100112371, 0.0112256641, 0.00629789336, 0.0138724912, -0.00861776, -0.00800276175, -0.0171421021, 0.00682336651, 0.00220698724, -0.00237630634, -0.00934953, -0.0211279131, -0.0185122248, -0.00603710301, -0.0402940623, -0.020785382, 0.00773029402, 0.0071036187, 0.0221555047, -0.0105717415, -0.016067801, -0.00601374824, -0.0084309252, 0.0163480546, -0.00713086547, -0.00214860146, 0.00841535535, 0.00539875031, 0.00402084272, 0.000345693232, -0.0145886922, -0.00184012915, -0.00674162619, 0.0368998945, 0.00488495408, -0.0194463991, -0.0282120705, 0.00144894363, -0.00356348651, -0.0341596492, 0.0207075346, 0.0121131297, 0.0131952148, -0.00758238323, 0.00996452849, -0.000770207436, 0.013888061, -0.0058113439, 0.0694403052, 0.00518466858, -0.000474872038, -0.0307810493, -0.0060526724, -0.0195086785, -0.00246777758, 0.0453697406, -0.00739165582, 0.00908484682, 0.0122766104, -0.0101747178, -0.0190571602, 0.0213614572, 0.0142228073, -0.00996452849, -0.00875788648, -0.014868944, -0.00939623825, 0.00214276277, -0.00931839086, -0.0267641, 0.00897586, -0.0210656356, 0.00525083905, -0.0191505775, -0.0145186288, -0.00736830151, -0.0224357583, -0.00246193912, 0.00514185242, 0.00516520673, 0.00665988587, -0.0152815385, -0.00927946717, 0.00199290551, 0.0145419836, -0.00651975954, 0.00905370805, 0.00233543618, 0.0130550889, 0.013047304, -0.0189481732, -0.00146743248, -0.000521094247, 0.00125724322, -0.00548438309, -0.00759795262, 0.00708026439, -0.025487395, -0.00188391865, -0.0117083201, -0.00293291872, 0.0149312224, 0.0188080464, -0.0131251523, 0.0283366274, -0.000723012141, 0.017764885, 0.00657425309, -0.0090692779, 0.0124323061, 0.0118095232, 0.0157875493, -0.00450739218, -0.0273713134, -0.0062589692, 0.0135844545, -0.00551941432, 0.0056050471, -0.0100423759, -0.0153905246, 0.00785485096, -0.00633681705, 0.00187224138, -0.00748118106, -0.0300648492, 0.00899143, 0.0141683137, 0.00375032146, -0.0218129754, 0.0184655171, -0.0136155933, -0.00619279873, -0.0163013451, -0.0101591479, -0.0100501608, -0.00682336651, -0.00452685403, 0.0405743122, -0.000474385481, 0.0130239492, -0.0259700511, 0.013529961, 0.0179205816, 0.0094507318, -0.0241328422, 0.00955971889, 0.0267485306, 0.00915491, 0.00265655876, 0.00063348707, -0.0135611, -0.00265461253, -0.0102603501, 0.026452709, -0.00294848834, 0.0318553522, 0.00180412456, 0.0163169149, -0.017157672, 0.0148066664, -0.00532479491, 0.011840662, 0.0235723369, 0.00239382219, -0.00578020466, 0.00256508752, 0.0179361515, 0.00375810615, 0.0098244017, 0.0107897157, -0.0126347104, 0.0131095825, 0.0067649805, -0.0127904061, 0.00241133804, 0.00232959772, 0.0034973158, 0.00121734617, 0.00962978229, -0.0202248786, -0.000545908231, 0.00238992972, 0.0281030834, -0.00243858481, 0.0128916083, 0.00118620705, 0.0067649805, 0.00766412355, 0.00681558158, 0.000607213413, 0.0179361515, 0.0110855373, -0.00289788726, -0.0191194378, 0.0267796703, -0.00904592313, -0.0104627544, 0.0261101779, 8.92209646e-05, -0.0105328178, 0.0231208187, -0.0113891447, 0.015102488, 0.00834529195, -0.0175936203, -0.0171421021, 0.013779074, 0.0172510892, -0.0112490179, -0.00504843472, 0.00694403052, -0.00185861799, 0.0131796449, 0.0107819308, 0.0233543627, -0.0274647307, 0.00938066933, 0.00957528874, 0.00545713631, 0.0184810851, -0.00193354662, 0.00940402318, -0.0014985716, 0.0231363885, -0.010875348, -0.0296600405, 0.00100910314, -0.0172199495, -0.0126502803, 0.0222177841, 0.0219998099, 0.0442487337, -0.00645748153, -0.015460588, 0.000145356578, 0.00308861444, 0.00388266286, -0.00980104785, -0.0111867394, 0.0413216539, 0.00681558158, -0.00149078679, 0.00346228434, -0.0143317943, 0.0289282706, 0.0124712298, -0.0112879416, 0.00474482821, 0.0166594461, 0.00537928846, -0.0220776573, -0.023914868, -0.00936509948, 0.018963743, 0.0111400308, 0.00440229755, -0.00171557255, 0.00372112845, 0.0100112371]
07 Oct, 2022
Angular PrimeNG Form Calendar Custom Content Component 07 Oct, 2022 Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will see Angular PrimeNG Form Calendar Custom Content Component. The Calendar Component is used to input the user’s date and time. Custom content can be added to the calendar by using the header and footer templates provided by the calendar component. Angular PrimeNG Form Calendar Custom Content Properties: inline: This property is used to show the calendar in inline mode. Angular PrimeNG Form Calendar Custom Content Templates: header: This template is used to add content to the top of the calendar UI. footer: This template is used to add content to the bottom of the calendar UI. Syntax: <p-calendar [(ngModel)]="..."> <ng-template pTemplate="header"> ... </ng-template> <ng-template pTemplate="footer"> ... </ng-template> </p-calendar> Creating Angular Application and Installing the Module: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Finally, Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: The project Structure will look like this after following the above steps: Project Structure Example 1: In this example, we used the header template to add custom content to the header of the calendar UI. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>Angular PrimeNG Form Calendar Custom Content Component</h4> <p-calendar [(ngModel)]="calendarVal" [inline]="true"> <ng-template pTemplate="header"> <div class="text-center"> <h4 style="color: green;"> GeeksforGeeks Calendar </h4> </div> </ng-template> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Example 2: In this example, we used both the header and footer template to add custom content to the header and footer of the calendar UI. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>Angular PrimeNG Form Calendar Custom Content Component</h4> <p-calendar [(ngModel)]="calendarVal" [inline]="true"> <ng-template pTemplate="header"> <div class="text-center"> <h4> Header Custom Content </h4> </div> </ng-template> <ng-template pTemplate="footer"> <div class="text-center"> <h4> Footer Custom Content </h4> </div> </ng-template> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Reference: http://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-custom-content-component?ref=asr10
Languages
Angular PrimeNG Form Calendar Custom Content Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0243250821, -0.00401507039, -0.0182636976, 0.025740996, 0.0499865338, 0.0165614206, -0.0212546177, 0.0218591653, -0.00872616563, -0.0129023166, 0.0231318958, 0.014708004, 0.00453410624, -0.0827275515, -0.013904593, -0.029686464, -0.0464228839, -0.00285966881, -0.0208409801, -0.00166449428, 0.00655059051, 0.0325660184, -0.0256773606, -0.0111364014, 0.00841593742, 0.0465819761, 0.00297103287, 0.00757275289, -0.00136918074, 0.0348092094, 0.0126716336, 0.00206023431, 0.0193296112, -0.010897764, -0.0599774756, -0.03033874, 0.0145886857, 0.0401228629, 0.0133398175, -0.0140239112, -0.000539419416, 0.0107386727, 0.0197909754, 0.0100466246, -0.0195205212, -0.00895684864, 0.00284574833, -0.0336637497, -0.0336001143, 0.00534149539, 0.0204909779, 0.0187250637, 0.0552047342, 0.0424774177, -0.00414433237, 0.0295114629, 0.000207440331, 0.0193773378, 0.00838412, 0.0151375514, 0.0353501216, -0.0502728969, -0.0132602723, -0.0165773295, 0.0134273181, 0.0233705342, -0.0306410138, 0.0441319682, 0.0356683023, 0.00733809313, -0.00468524313, 0.00503126718, -0.00319177215, -0.021795528, -0.0105079906, -0.0202523414, -0.00202344428, 0.00867048372, -0.0389137678, 0.000309731171, -0.0234659892, 0.0282864589, -0.0119557222, 0.000632388517, 0.0165455099, -0.0196477938, 0.0396137722, -0.0574320145, 0.00557217794, 0.0224000756, 0.0337273888, 0.0106193544, 0.0162830092, -0.0467092507, 0.00672559114, 0.032963749, 0.0269341823, 0.0065386584, -0.0378637649, 0.0182000622, -0.0204114337, 0.0104125356, -0.0122739049, -0.0556501895, 0.00272046379, 0.0170386937, 0.0401865, -0.0351273902, 0.0354455747, -0.0407910459, 0.00451421971, -0.0317228362, 0.0147159593, -0.0019061144, -0.0614093, 0.0350001194, -0.0141670937, -0.0320728347, 0.0418410525, -0.00722672883, -0.0180091523, -0.0231637154, 0.0135148186, 0.0611865707, -0.0232114419, 0.0288114622, -0.0299728289, -0.0153364157, 0.042000141, -0.0283819139, -0.0233387146, -0.00433524186, -0.00168935233, 0.00296705542, 0.0298773739, 0.0126477703, -0.00825684611, -4.49619765e-05, -0.0224159844, -0.0129898172, 0.010476172, -0.0201568864, 0.00943412259, -0.0228614416, -0.0304978304, 0.00992730632, 0.0120352684, 0.0594365634, 0.0100227613, 0.0113273114, -0.0482683443, -0.020856889, 0.00240426953, 0.0106591275, 0.0463910662, -0.0403774083, -0.00615683896, -0.00906025805, -0.0394546799, -0.00380626298, 0.0146125499, 0.0116295852, -0.0108739007, 0.00378438784, 0.0266637262, -0.0209046155, 0.0126079973, -0.0124091329, -0.0273955483, 0.0383410379, 0.00988753326, -0.0182318799, -0.00317188585, -0.00587445172, -0.058704745, 0.00484433444, 0.0369728543, -0.0166886933, -0.00111264584, -0.00645115832, -0.0235137157, 0.00556422351, 0.013904593, 0.0120432228, 0.0177068785, 0.00558013236, 0.0304023754, -0.0272841826, -0.00630002143, -0.00614093, -0.0175796058, 0.0174523313, 0.0180250611, 0.0349364839, 0.0204114337, -0.0377364904, -0.0229409877, 0.0165773295, -0.0117250402, 0.00719888788, 0.0011554017, -0.0255500861, -0.0139523204, 0.0189955197, 0.0111523103, 0.024802357, -0.016720511, 1.37651386e-05, 0.0143182306, -0.013578455, -0.0353501216, -0.000259517925, 0.030243285, -0.00221335981, 0.00197969424, 0.0151295969, -0.014556868, -0.0155830076, 0.00734207034, -0.0100625344, -0.0107148094, 0.0278728213, 0.0168000571, 0.0109852646, -0.07496389, 0.00651479466, -0.0145966401, -0.00968071446, 0.0112398108, 0.000834732957, -0.00703979656, -0.00998298824, 0.00307643088, 0.00848752912, 0.0592456572, -0.00290540769, -0.0128307249, 0.013005726, 0.0166727845, 0.0549820028, 0.00746138906, -0.0206182525, -0.0352546647, -0.0297023728, -0.00495967595, -0.0272205472, 0.0112398108, 0.0624593, 0.00667786365, 0.0280796401, -0.017181877, 0.0104523078, -0.00527388137, 0.0319614708, 0.00149446528, 0.00169034663, 0.00655854493, -0.00608524773, 0.0355728492, 0.0371637642, 0.0146602774, 0.00416024122, 0.0209205262, 0.0339182951, 0.00495569874, -0.0397092253, 0.0274432749, -0.00583467865, -0.00409262767, 0.0270137284, 0.0649411306, -0.0220978018, 0.0466137938, 0.0102613987, -0.0229887143, 0.00724263815, -0.0249614492, -0.0221455302, 0.01785006, 0.0608047508, 0.0234341696, -0.00543297315, 0.0285410061, -0.0055005867, -0.0110409465, -0.0283819139, 0.00499944855, 0.000476528599, -0.016720511, 0.00885343924, -0.0132045904, -0.0176432412, -0.00731422938, 0.0315955617, 0.0285410061, 0.0330273844, -0.000781536743, -0.00541308662, 0.0207296163, 0.0208250713, -0.00693241, -0.00984776113, 0.00560399611, 0.017754605, -0.0243728105, 0.0302273761, 0.0201091599, 0.0130773168, -0.0315796509, -0.0226546228, 0.0250569023, -0.0339819342, -0.0277455486, -0.0013115101, -0.0460728817, 0.0461047031, 0.0210000705, 0.0438137837, -0.0249932669, -0.0127829975, -0.00990344305, -0.0163864195, -0.0147636868, 0.0136500467, 0.0136818644, -0.00746536627, -0.0212705266, -0.00838412, 0.051004719, -0.0210796166, -0.047441069, -0.00953753199, 0.0122261774, -0.00933866762, 0.00652672676, 5.99700179e-05, 0.00167543185, -0.0426683277, -0.0189955197, 0.015781872, -0.0252159946, 0.0117807221, 0.0108579909, -0.0161636919, 0.0305296481, -0.0291932803, 0.00532160886, 0.0170386937, 0.0293205548, 0.0113829933, 0.00149744831, 0.0299410112, 0.0759820789, -0.00584263355, 0.0430501476, -0.0158455074, -0.000866054092, -0.0488092564, -0.00999094266, -0.0127989072, 0.00308239693, -0.0266000908, 0.007421616, 0.0501138046, 0.0212228, -0.0187568814, -0.00888525695, 0.0269341823, -0.0230841693, -0.0391046777, -0.0373546705, -0.00787502714, -0.0375774, -0.00478865253, -0.0366864875, -0.0197114311, -0.0025713155, 0.0328046568, 0.00254148594, 0.00696422812, -0.0517047197, 0.0457228832, 0.0353183, 0.0366228521, 0.0399637707, 0.0304660127, -0.00474888, -0.014365958, -0.0161636919, -0.0240546279, -0.0256137233, 0.0642093122, 0.0192500651, -0.0189318825, -0.0135864094, -0.0224318951, -0.0134909544, 0.000478020083, 0.0708275139, -0.0167682394, 0.033441022, 0.0246273559, 0.0297501013, -0.00893298443, 0.00834434666, 0.0110966284, -0.0130136805, 0.0198546126, 0.0419683233, 0.0333455689, 0.0424137786, 0.00628411211, -0.0457547, -0.0265205447, 0.0347773917, 0.0269978195, -0.00113253226, 0.0471228883, -0.0189318825, -0.00746536627, 0.0483319834, 0.00227898499, -0.0322319269, 0.00826480053, -0.00452615181, 0.00193594408, -0.0467728861, 0.0301160105, -0.00704377377, 0.0392319523, -0.0349046625, -0.00466933381, 0.0158614181, 0.00605740678, 0.0196159761, -0.00497160759, 0.0130216349, -0.00477672089, 0.0371001251, -0.00610115705, -0.0124409515, 0.000147408166, 0.0221296214, -0.0479183458, -0.0522774495, -0.00468922034, -0.076300256, -0.00229688268, -0.0322637446, 0.0203318875, -0.0230841693, -0.0335364789, -0.0352864824, -0.000831252837, 0.00912389439, 0.0236409884, 0.0268069096, 0.0151932333, 0.000408169, -0.00901253056, 0.0269500911, 0.0201887041, -0.0143580036, -0.0159011912, 0.0268546361, -0.0149943689, 0.006598318, 0.0144136855, 0.00219148467, 0.028556915, 0.0160602815, 0.0181523338, 0.0213818904, 0.0052022906, 0.00317188585, -0.0134114092, 0.0178182423, -0.0199818853, -0.00303864665, -0.0299251024, 0.0245319, 0.0178659689, 0.0605183877, 0.011414811, 0.00149247667, -0.0101102619, -0.00245597423, -0.0462001562, -0.0315478332, 0.025168268, 0.0336955674, 0.0311341956, -0.0193455201, -0.00337671605, 0.0183273349, -0.00322955637, 0.0100545799, -0.0032474543, 0.0181046072, -0.0117170848, 0.0263455436, 0.0409183204, -2.33976298e-05, 0.0416501425, 0.0406955928, 0.00362927373, -0.000242738752, -0.0145648224, -0.0193455201, -0.00663013617, -0.0237841718, 0.0284296423, -0.0101182163, 0.0257091783, -0.00147756177, -0.0153443702, -0.0141193662, 0.0479819812, -0.0162432361, -0.0219068918, 0.0202682503, 0.0105716269, -0.0155273257, 0.0162114184, 0.00558013236, 0.0276023671, 0.0123375421, -0.0166409649, 0.032311473, -0.033631932, -0.00103310007, 0.00341450027, 0.0283819139, 0.0307364687, 0.00816934556, -0.00583467865, -0.00677331863, -0.0179614238, -0.0239750817, -0.0215091631, -0.0439410582, 0.0177386962, -0.0139364107, -0.00828866474, -0.0178023335, 0.000936650904, -0.00489206193, -0.00925912242, 0.0155830076, 0.0255659949, -0.00316989701, 0.0170227848, 0.0221296214, 0.0110250376, -0.0120750405, -0.00565172359, -0.0333773866, -0.00756479846, -0.00505513093, -0.00489206193, 0.0281591862, -0.0187250637, 0.0296387374, 0.0276500937, -0.0245000832, -0.0372592174, -0.00587445172, -0.00474092504, 0.0202046148, -0.00596592948, 0.0198546126, -0.0213341638, -0.0112000378, 0.0240387172, 0.0127034523, 0.00932275876, 0.0465819761, 0.00490797125, 0.00185242109, -0.00605740678, 0.0168796033, 0.0255659949, 0.0115739033, -0.014843232, 0.00507899467, 0.000294567755, 0.017754605, 0.00656252215, -0.0464228839, -0.00439490145, 0.0198705215, 0.0225114394, 0.000882460386, 0.0076880944, 0.00554035977, 0.0125920884, -0.0173091497, 0.0322160199, 0.00783923082, -0.0236569, -0.00369489891, 0.0257728156, -0.0160841458, 0.0134034548, -0.0219068918, -0.0237682629, 0.00526990416, -0.0133636817, 0.0520229042, -0.0215728, -0.0200773403, 0.0141830025, -0.00456194719, -0.00434319675, 0.0200773403, -0.0290023703, 0.00946594123, -0.0279364586, -0.00994321518, -0.0161875542, -0.00196080212, 0.00524604041, 0.0282387324, -0.0102375345, 0.0335046574, -0.0168955121, -0.00894889422, -0.0289228261, -0.00926707685, -0.0230364408, 0.00723866094, -0.0460728817, -0.0342046618, -0.00995912496, 0.0225750767, 0.0172932409, -0.0182000622, 0.00386989955, 0.00526194973, -0.00361535326, 0.0138966376, 0.0137852738, -0.016625056, 0.0912548527, -0.00633581681, 0.0199500676, -0.0107386727, 0.0252159946, 0.00501138065, -0.019440975, -0.0248500835, -0.01953643, 0.0141511848, 0.0174046047, -0.0106989, -0.0119716311, 0.0174841508, -0.0111761745, -0.0209523439, 0.00767218508, 0.00828866474, -0.0170068759, 0.0172296036, -0.0337592065, 0.0275546387, 0.0140000479, 0.0171023309, 0.0145011852, 0.0132841356, 0.0342682973, 0.0131727718, -0.00770002604, 0.00397132, 0.00317188585, -0.0173886959, -0.0312455613, -0.0351273902, 0.0211432539, -0.00585058797, 0.00470910687, -0.0246432647, 0.0350637548, 0.026679635, 0.00980003364, 0.00281393, -0.00410853652, -0.0244523548, -0.0158852804, -0.00261705439, 0.0331864767, 0.032311473, -0.0302910116, 0.0208409801, -0.0109375371, 0.000456890761, -0.0322637446, 0.00522217667, -0.00160284631, 0.0242137183, -0.0100148069, -0.0165614206, -0.0108420821, -0.00736593409, 0.0226864405, -0.00740968436, 0.0362092145, 0.000475534296, 0.0168318748, -0.0287160072, 0.000340057974, 0.0159409624, 0.0166091472, -0.00925912242, 0.0425092354, -0.0115182204, 0.0228455327, -0.0106989, 0.0133795906, -0.0351592116, 0.000497906527, -0.00473694783, -0.00451024249, -0.00253949733, -0.00349404593, -0.0381183103, 0.0106511721, 0.0118284496, -0.0481728911, -0.014095502, 0.00202145567, -0.0249773581, 0.00848752912, 0.0055522914, -0.0193455201, 0.00546876853, -0.0188523363, 0.0103250351, 0.0287000965, -0.00916366745, 0.0225114394, 0.0117250402, -0.00888525695, 3.56091405e-05, -0.0159171, 0.0399001352, 0.00438296935, 0.0127114067, -0.0217478015, 0.017277332, -0.0111761745, -0.00611706637, -0.010245489, 0.0314841978, -0.017181877, 0.00464149285, -0.00970457867, -0.0203477964, 0.0149943689, 0.0377364904, 0.0208887067, -0.000269709708, 0.0087182112, -0.0372592174, 0.0158614181, -0.00921934936, 0.0270773638, -0.0318182893, -0.00835230108, 0.0108261732, 0.012584134, 0.00585058797, 0.0253750868, 0.0319455639, 0.00372472848, 0.005755133, -0.0350955725, -0.0190909747, 0.000963000406, -0.0112716295, -0.00859093852, -0.001515346, -0.0339819342, -0.0273000933, -0.0358592123, 0.00905230362, -0.00722672883, 0.00916366745, -0.0132443635, -0.00368296704, 0.0290819164, 0.035413757, 0.0205068886, 0.0197591577, -0.00206620013, 0.0288750976, -0.0477910712, -0.00526990416, -0.00597786112, -0.00604945235, -0.0468365215, -0.00400313875, -0.0270773638, 0.00347813684, 0.0301319212, -0.000813355, -0.00970457867, -0.0157898255, 0.0154080065, -0.0230046231, -0.00815343671, -0.00278410036, 0.00626422558, -0.00846366491, 0.0087898029, 0.000712431385, -0.0127352709, 0.0473456159, 0.0111204926, -0.029781919, 0.000469071179, 0.0224318951, -0.00647899928, 0.00772389, 0.00354773924, -0.0371955819, 0.0238478091, -0.00304660131, 0.0270137284, 0.0168955121, -0.00847161934, 0.0107386727, -0.0280000959, -0.0300682839, 0.0107784458, 0.0164977834, 0.0168000571, 0.00864662, 0.0274910014, 0.0399955884, 0.00529774511, -0.00475285714, 0.0198864304, -0.0029093849, -0.0225273483, 0.0101977615, 0.0332182944, -0.0271091834, -0.0230046231, 0.00440285588, -0.00512672216, 0.0467092507, 0.0528819971, 0.0018723075, 0.0434956029, -0.0249137208, 0.0072665019, -0.0151455058, 0.0310546514, 0.0264250897, -0.00402501365, 0.010897764, 0.000623936765, 0.0125761786, 0.0146364132, 0.00122699281, 0.0323751085, 0.0212546177, -0.0305137392, 9.06075511e-05, 0.00999889709, -0.00583467865, 0.00488808472, 0.0475047082, 0.0209364351, -0.00518240407, -0.0434637852, 0.00181364256, -0.00231676921, 0.0150261875, 0.0069085462, 0.00151136878, -0.00983185135, -0.0129102711, -0.00717104692, -0.0267273635, 0.00631593028, -0.003979275, -0.0202046148, -0.011740949, -0.0122102685, -0.00478467532, -0.0114068566, -0.0013771354, -0.0653547645, 0.0282705501, 0.0288273711, 0.00171023305, -0.00320569263, -0.0216523465, 0.0186773352, 0.00126179401, 0.0157102812, -0.000839704531, -0.0155034615, 0.0281432774, -0.0191864278, 0.0317864716, -0.00571933761, -0.0343637541, 0.00452615181, -0.00605740678, 0.0297023728, -0.0178977884, -0.0151216425, 0.00968866888, -0.0210796166, -0.0451501533, 0.0262659974, 0.0222409852, -0.0369410329, -0.00326137478, 0.0196637027, -0.00718695624, 0.0108102644, -0.0220023468, 0.00423978688, -0.00847957376, 0.0178659689, -0.0178023335, -0.00127472018, -0.0174364224, 0.0425092354, 0.00723866094, 0.00809775479, -0.0236409884, -0.00720684277, -0.0294160079, 0.028556915, -0.0439092405, -0.0037923425, 0.00901253056, 0.0287000965, -0.00960912369, 0.00900457613, 0.0110648107, -0.0597547479, 0.0127909528, 0.00742957043, 0.0134989098, 0.00662615895, 0.014843232, -0.0157580078, -0.00773582188, 0.00893298443, 0.0117648123, -0.0186773352, -0.03589103, 0.0133000454, -0.00660627242, 0.0179614238, -0.0172614213, -0.0424774177, -0.0066420678, -0.00101719098, 0.0275546387, 0.0184227899, -0.0137614105, -0.00214375718, 0.0427956, -0.0242137183, 0.0200137049, -0.0276500937, 0.0163546018, 0.0124648148, 0.0106670819, 0.0305932853, -0.0087182112, -0.0115579935, -0.0122898147, -0.0385637656, 0.0220182557, 0.0186773352, 0.0161398277, -0.011836404, 0.0439092405, -0.0374183096, -0.000360441569, -0.0263773613, -0.0205387063, 0.0300682839, 0.00901253056, 0.0101102619, -0.00752104819, -0.0279682763, -0.0126000429, 0.00110966281, 0.0738184303, 0.00900457613, -0.0248341747, 0.0051386538, 0.00377842202, -0.0223364402, -0.00686479593, 0.00522217667, -0.0246591754, 0.0122898147, 0.0269819088, 0.0241659917, -0.020665979, 0.0249137208, -0.0287319161, -0.0107784458, -0.00397728616, 0.0129898172, 0.0203318875, 0.0073818434, -0.00154418137, 0.017372787, -0.0110807195, -0.00313012418, 0.00024286304, 0.0187727902, 0.00531763164, 0.0208250713, 0.011223902, 0.0127352709, -0.000989349908, -0.0109375371, 0.00694434159, -0.00915571302, -0.00191904057, 0.0161716454, 0.0136898188, 0.0125761786, 0.0133398175, -0.015551189, -0.00599774765, -0.03589103, -0.00682900054, -0.0221614391, -0.016625056, -0.00200057495, -0.00443467405, -0.0120670861, -0.00906821247, -0.00512672216, -0.0051386538, 0.0220023468, 0.00521422224, 0.000359944388, -0.0182318799, -0.0104443533, 0.0163705107, -0.0179136973, -0.0141670937, -0.0078551406, -0.021890983, -0.0091477586, -0.00607729331, -0.0352546647, -0.00525797252, -0.0144375488, -0.0210796166, -0.0338228419, -0.0177864246, 0.0252637211, 0.0104284445, -0.0278410036, -0.0134989098, 0.0256296322, 0.0026210316, -0.0112159476, 0.0120909503, -0.0184227899, 0.010802309, -0.0100545799, 0.0212228, -0.0210318901, 0.00682900054, -0.00846366491, 0.0182477888, 0.00162273273, 0.0226387139, 0.0556501895, -0.00565172359, -0.0305137392, 0.0108659463, 0.00947389565, 0.002959101, -0.0255819056, -0.0101977615, 0.0100625344, -0.02865237, -0.0211591627, 0.00156605639, 0.008407983, -0.0295751, 0.0676456839, -0.00849548355, 0.0164182372, -0.0303228293, -0.00303864665, -0.0318978354, 0.00275029335, 0.00370285357, 0.0144693675, -0.0220659841, 0.0308319218, -0.00271052052, -0.00995912496, -0.000216762099, -0.0191068836, -0.0245319, -0.00977616943, -0.00130057265, 0.023672808, -0.0271410011, 0.00747729791, 0.00954548735, 0.0085829841, 0.0248341747, -0.0126239061, -0.0215728, 0.00855912, -0.00317586306, -0.011605721, -0.00931480434, 0.00687275035, -0.00356961438, 0.0166886933, -0.00101917959, 0.0216046181, 0.0144136855, 0.00399717269, -0.0103091262, -0.00381024019, -0.0134909544, 0.0207773428, 0.000272941281, -0.00490001682, -0.0223205294, 0.0254864506, 0.00129957823, -0.0175318774, 0.000487714715, 0.00351989828, 0.0164023284, 0.00353978481, -0.00593808852, -0.00408467278, -0.00321961311, -0.0178818796, 0.028095549, -0.0359864868, -0.00804207288, 0.00767218508, -0.0364001244, 0.0104125356, -0.00247387192, 0.0103011709, -0.0176432412, 0.0198705215, 0.0172455125, -0.0103409439, 0.00874207541, -0.0142943664, 0.0172614213, 0.0246909931, 0.00688070524, 0.000214649161, -0.014556868, 0.00137116946, 0.00900457613, -0.0019578191, 0.00714320596, 0.0208091624, -0.030816013, -0.0218750741, 0.0165614206, -0.0227341689, 0.0242614467, -0.00305853318, -0.00128864078, -0.0177386962, -0.0392955877, 0.00122102688, -0.012257996, 0.00384205859, -0.00205227965, -0.0236250795, -0.0202046148, 0.0161716454, -0.00463751564, 0.00568354223, 0.00512672216, -0.00616479386, 0.0204114337, 0.0278728213, 0.0378319472, -0.00384205859, 0.00433524186, 0.00131349883, -0.00849548355, 0.0412365049, 0.0144852763, -0.0196477938, 0.0159011912, 0.0256932694, 0.0137614105, -0.00947389565, 0.00432728743, 0.0100227613, 0.00571933761, 0.0356364846, -0.00364717143, 0.0232909881, 0.0132443635, -0.013904593, 0.0232909881, 0.0125523154, 0.0214932542, 0.019075064, 0.00405484345, -0.0223841667, 0.00903639384, -0.00230881455, 0.0301955566, -0.0149943689, 0.0314523801, -0.00278410036, -0.00449035596, -0.021318255, 0.00816934556, -0.0172932409, 0.023672808, 0.00133040221, 0.00554433698, -0.0132125448, -0.00111065712, -0.0203477964, -0.0126636792, -0.00358552346, -0.0169432387, 0.00227699638, 0.0118841315, 0.011645494, -0.00244404236, -0.0320728347, 0.00350001198, -0.0053057, 0.0127432253, 0.00368694426, -0.017754605, 0.000132617643, -0.0140557298, 0.00494774384, -0.00779945822, 0.00866252929, 0.0260591786, 0.01804097, -0.00756082125, -0.0130295893, 0.00598979322, 0.0227341689, -0.03014783, -0.0220182557, -0.00758866221, 0.0213659815, -0.00913980417, -0.00852730125, -0.00176392647, 0.008407983, 0.0087182112, 0.00926707685, -0.0215091631, 0.0120591316, 0.0229409877, -0.0052022906, 0.00744150253, -0.0209523439, -0.00973639637, -0.00525001762, -0.00612502079, -0.00624433951, 0.00119517453, 0.0116295852, 0.00893298443, 0.00790684484, 0.00494774384, 0.00657047704, 0.0162273273, 0.0319614708, 0.0127034523, -0.0130375447, -0.0254705418, -0.00180966523, 0.0066420678, -0.00924321357, -0.0272046383, -0.0099193519, 0.0132284537, -0.00622047577, -0.0151614146, -0.0220659841, -0.0151534602, 0.014747777, -0.00485626655, -0.000375604955, 0.0172455125, 0.0165932383, -0.00195483607, -0.0289228261, -0.011128447, 0.0198387038, 0.000649291964, -0.00156207918, -0.0312455613, -0.0240228083, 0.000518041546, -0.012257996, 0.0144932307, 0.00480456185, -0.00682104565, 0.00517842686, -0.00390171772, -0.0118125398, 0.00611706637, -0.0345228426, 0.0251523573, 0.0273955483, -0.0146602774, 0.00581081538, 0.00218154141, 0.0131568629, -0.0184705164, -0.0163705107, 0.0221455302, 0.0203955229, -0.0137773193, -0.0148670962, 0.0138568655, -0.00252955407, -0.000258275017, 0.0320887454, -0.00639945362, -0.0233387146, 0.00538126845, -0.00987162441, 0.0183273349, 0.00026896398, -0.0231478065, 0.0198227949, 0.00455797, -0.017468242, 0.0224000756, 0.0131329987, -0.00345029589, 0.00653468119, -6.30772702e-05, -0.00638752151, -0.00147358456, -0.0195046123, -0.00489206193, -0.0256932694, -0.021127345, -0.0480456166, -0.00159489177, -0.0254387222, 0.0159568731, 0.0103409439, -0.0214137081, 0.0152966427, 0.00757673, 0.0290341899, 0.00737388851, 0.00297302147, -0.00758866221, -0.00854321104, 0.0262819082, 0.00266279303, 0.0111920834, -0.00637161266, 0.0175636951, 0.00986367, 0.0140398201, 0.0321682915, -0.00386194489, 0.0192341562, 0.0153443702, 0.0145409582, 0.00960912369, -0.00104304333, 0.0248978119, -0.000857105188, 0.00605342956, -0.00645513553, -0.00208409806, 0.00355967111, -0.00427160552, 0.0174364224, -0.00195881352, -0.0247864481, -0.0091477586, 0.034109205, 0.00917162187, 0.0124648148, 0.00959321391, -0.0232432615, -0.0171182398, -0.00237841718, -0.0114068566, -0.0141670937, -0.0394546799, 0.00518638128, 0.00867048372, 0.00348012545, -0.013522773, -0.0121704955, 0.00660229521, -0.0131409541, -0.00295114634, -0.0253909957, -0.0122500416, -0.0181523338, 0.00732218381, 0.00224716682, 0.0233705342, 0.00503126718, -0.0170068759, -0.0403774083, 0.0127193611, -0.0189477913, 0.0226068944, -0.0126557248, -0.0179296061, -0.00891707558, -0.00476081157, -0.0283978228, 0.0251841769, -0.0163227823, 0.0200773403, 0.00495569874, -0.014747777, -0.0161000546, 0.0189477913, -0.0319137461, -0.00219745073, -0.00506706256, -0.0119557222, 0.00605740678, 0.0148909595, 0.00456990208, 0.0141750481, 0.0235296246, 0.0360819399, 0.0116932215, 0.00657843146, -0.00772786699, 0.0181841534, 0.0143818669, 0.0112716295, -0.000294070604, 0.00263694068, -0.0227341689, -0.0132045904, 0.0254387222, 0.0505592637, -0.028747825, -0.00711138779, 0.00191804627, 0.0114307208, 0.00455797, 0.0144295944, -0.00137116946, 0.0103966258, 0.0166091472, -0.00842389185, -0.0358592123, -0.00486819819, -0.00577899674, 0.0115739033, 0.0139523204, 0.00234262156, -0.00894094, 0.00797048118, -0.0134909544, -0.003710808, 0.0393274054, -0.00117230508, -0.00100625341, 0.029113736, -0.0377364904, -0.000982389669, -0.0255341772, 0.0111841289, -0.00632786239, -0.00641138526, 0.00427956, 0.0291296449, 0.0121864052, 0.000889420626, 0.0121068591, 0.0148511864, -0.00216960954, -0.0167364199, 0.0115341302, -0.024802357, -0.00964889675, -0.0302591939, -0.00181761978, -0.0130295893, 0.00464944774, 0.0206341613, -0.0134193636, 0.0276660025, 0.0202205237, 0.0324069299, -0.00538922288, 0.00249574706, 0.0113670845, 0.00910003111, 0.00595399737, -0.0265841819, 0.0120034497, -0.00859889295, -0.00477672089, 0.00662218174, -0.0212546177, 0.00521422224, -0.00837616436, 0.0193773378, -0.0216523465, -0.0105318539, -0.01804097, 0.00103210576, 0.00999889709, 0.000624931068, -0.00771593535, 0.0242614467, -0.00257927016, -0.00674945489, 0.0113034472, -0.00901253056, 0.00199759193, 0.0199023411, 0.0025375085, 0.0138886832, 0.0154080065, 0.0119079947, -0.0117807221, 0.0129023166, 0.00958525948, 0.00351393246, -0.0129341343, -0.0299887378, -0.00962503254, -0.0209523439, 0.0193614289, -0.00368097844, 0.0200614315, -0.00241023535, -0.00471308408, 0.041522868, 0.00955344178, -0.00872616563, 0.0125284512, 0.00962503254, 0.0143977758, -0.0308319218, -0.00167145452, -0.00662615895, -0.00439092377, 0.00494376663, -0.00244404236, 0.00536535913, -0.00488808472, -0.00230284873, 0.00158992014, -0.0110568553, 0.0127273155, 0.00173210818, 0.0190114286, 0.0329001099, 0.00786309503, 0.0157580078, 0.0210955255, 0.00727445632, 0.0195523389, -0.00728241121, -0.00138409564, 0.00509092631, -0.00613695243, -0.00855116546, 0.012257996, 0.0134034548, -0.00877389312, -0.00595002, 0.00598979322, -0.00416819612, -0.0238318983, -0.0110011734, 0.0105477627, 0.0280160047, -0.00701593282, 0.0149307325, -0.0157023259, 0.00727445632, 0.0196796115, -0.0342682973, -0.0118602673, 0.0202046148, 0.0116852671, -0.0181046072, -0.0170227848, -0.00908412132, 0.0156148253, 0.00782332197, 0.0288432799, -0.000366407505, 0.00698013743, -0.0257887244, -0.00189119962, 0.00400711596, 0.00557217794, 0.0132761812, -0.00670968182, 0.0154080065, 0.000116335621, 0.00294915773, -0.00409262767, -0.0213818904, -0.0220659841, 0.0151852788, 0.00162571575, 0.00746934349, 0.00333097717, 0.010380717, -0.00201548985, 0.0152330063, -0.00677729584, -0.00184943806, -0.0134114092, -0.00418410497, 0.0164818745, -0.0127511797, -0.00589831546, -0.0154398251, -0.0124170873, -0.00741763879, -0.00615286175, 0.0138966376, 0.0280319136, 0.00881366618, -0.00161378388, -0.0234500803, 0.00285171415, 0.00655456772, -0.00374660362, -0.016720511, 0.0193773378, -0.0119000403, -0.00602161139, 0.00997503381, 0.00329717016, 0.00836025551, 0.0165455099, -0.0058704745, -0.0107704913, 0.0228614416, 0.0265682712, 0.0107466271, 0.027618276, 0.0187727902, 0.012257996, 0.0100704888, -0.0159886908, -0.00215767766, -0.00489603914, -0.028556915, 0.00764434412, 0.00218353025, 0.00841593742, 0.021890983, 0.00532558607, 0.0359228477, -0.0154159609, 0.00683297776, 0.0062403623, 0.00749320723, -0.0114784483, -0.0223841667, -0.0249137208, 0.00257529272, -0.0173250586, 0.00654263562, 0.000182706586, -0.0152250519, 0.00475285714, -0.00673752278, -0.0154795982, 0.00395342242, -0.0123136779, -0.0256932694, 0.015877327, 0.00590229267, -0.0310228318, -0.0035377962, -0.00552047323, -0.0411410481, -2.50134017e-05, -0.00953753199, 0.0389774032, 0.0106909452, -0.00706763752, -0.00703979656, -0.000775073655, 0.0127591342, 0.00317188585, 0.00586252, -0.015264824, -0.0160682369, 0.0054807, -0.000604547502, 0.00469319755, -0.0117329946, -0.0167046022, 0.00349802314, 0.00133537385, 0.00960116927, 0.0145330038, 0.0181523338, -0.00971253309, -0.0164659657, -0.0183750615, 0.0011046913, -0.00141989114, 0.011319357, 0.00760059385, 0.0296387374, -0.0035059778, -0.0017877901, -0.00341052283, -0.0312296506, -0.0114625385, 0.0190591551, -0.00941025931, -4.5956298e-05, 0.00478865253, 0.0242614467, 0.0123295877, -0.00712729711, 0.00423183246, -0.0219705291, -0.0205227975, 0.00998298824, -0.00550456392, 0.0147557314, 0.0133159542, -0.00405882066, -0.015877327, -0.00498751691, 0.0172455125, -0.00700002396, -0.011319357, 0.0192659739, -0.00647104485, 0.0190591551, -0.00482842559, -0.00317188585, 0.0122102685, -0.00349802314, 0.0118125398, 0.0127989072, 0.0161477812, 0.0175159685, -0.0158295985, 0.000963994768, -0.00940230489, 0.0179773346, -0.0169750582, -0.00528979069, 0.00774377631, -0.00490797125, 0.0291455537, -0.0119557222, -0.00239034905, 0.0239114445, 0.0125204967, -0.00666593155, -0.0115500391, -0.0238796268, 0.0177386962, -0.016911421, -0.0124807246, 0.022447804, 0.00262898626, -0.00417217333, 0.013308, 0.0101341251, -0.0193296112, -0.00792275369, 0.0208250713, -0.00475285714, 0.00434319675, 0.0270296372, -0.0068051368, 0.00320370402, -0.00362927373, -0.0055085416, -0.000632885669, 0.00592615642, -0.00420796871, -0.0244364459, -0.00321563589, 0.019170519, -0.0161796, 0.0109375371, -0.0112557197, -0.0106670819, -0.00633979402, 0.00728241121, -0.0161318723, 0.0195841566, 0.00546876853, -0.0257250872, 0.0157023259, 0.00902843941, -0.0069483188, 0.0360183045, 0.00766423065, -0.00859093852, -6.12129224e-06, 0.00929094106, -0.0029093849, 0.000412394875, 0.00880571175, -0.00866252929, 0.0167046022, -0.0104523078, 0.0104523078, 0.0125761786, 0.0128625436, -0.00780343544, 0.00290739629, -0.000758170208, 0.00225114403, 0.0310387425, -0.000826778356, -0.00547274575, 0.0174205136, -0.0117648123, 0.01804097, -0.0011404868, 0.0149307325, 0.00654263562, 0.026616, 0.000550357, 0.00892503, -0.0298614651, -0.00298893056, -0.00674945489, 0.000115030576, -0.0198227949, 0.0198068861, -0.0151852788, -0.0174841508, -0.0127273155, -0.0203955229, -0.00145270384, 0.0316591971, -0.00636365777, -0.00068111025, 0.0176750608, 0.0106829908, -0.00976821501, 0.00705570588, -0.00131349883, 0.00778354891, -0.0109773101, 0.00314006745, 0.00852730125, 0.00786707178, 0.00643922621, 0.015781872, 0.0289864615, -0.00607331609, -0.00651081745, -0.0197432488, 0.0216523465, 0.0126079973, -0.000908809889, 0.0233546253, -0.000850144948, 0.0142545942, 0.000450427673, 0.00600967929, -0.00126676564, 0.00422387803, 0.00364717143, -0.0221932568, -0.0311023779, -0.00676536374, 0.00139105588, -0.0196637027, -0.00906025805, 0.0152886882, -0.0200296137, 0.00710741058, 0.00698411465, -0.0305773765, -0.0038142174, -0.004625584, -0.0143580036, 0.00982389692, -0.005611951, -0.00847957376, 0.00361535326, 0.00455001555, -0.00603752024, 0.00219943933, -0.00102415122, 0.0117807221, -0.000757175847, 0.0109295826, -0.0163068734, -0.00888525695, -0.00612104358, -0.0118045853, -0.00361137581, -0.0239432622, 0.00545285922, 0.00160582934, -0.00604149792, 0.0295591913, 0.00215370045, 0.00803014077, -0.00382614927, -0.00913184881, 0.0262500886, -0.00890912116, -0.012775043, -0.0104682175, -0.00589831546, -0.0106670819, -0.0256614499, 0.0112636741, -0.00789491273, 0.00194290432, 0.0124329971, -0.00643922621, 0.000671167043, -0.00721082, 0.0282864589, -0.0068966141, -0.0224796217, -0.0152966427, 0.00480058463, 0.0209364351, -0.0182955172, 0.011032992, 0.00399120664, 0.0110489009, 0.00538126845, 0.00134631142, -0.010150034, -0.00526592694, -0.0116295852, -0.00814548228, 0.0182318799, 0.024245536, -0.00243807654, 0.0378955826, 0.00542501826, 0.00294319191, -0.00828071, -0.00198665448, 0.0103091262, 0.00902843941, 0.0106909452, -0.0111920834, 0.0144932307, -0.0113273114, 0.000673652859, 0.00596592948, -0.0130295893, -0.00357756903, -0.0144057311, 0.00520626782, 0.0181682426, -0.00432331, -0.0196637027, 0.000818326662, 0.0126398159, 0.0106591275, 0.0151295969, -0.00820911862, 0.0124568604, -0.00987162441, 0.00386194489, 0.0202046148, 0.00863866601, -0.00687672803, -0.0190114286, -0.00848752912, 0.00619263481, -0.022829622, 0.0318819247, 0.00362529629, 0.00188225065, 0.0210955255, -0.0164977834, 0.00731422938, 0.000975926581, -0.000915770128, -0.00585058797, 0.00399916107, -0.00937048625, -0.000942119688, 0.0096409414, 0.0136341369, -0.00281989598, 0.0025375085, -0.00179077312, -0.0169909671, 0.00517842686, 0.0409501381, -0.00178977882, -0.00378836505, 0.0198864304, -0.00236847391, 0.00563581474, 0.0185500626, 0.0242614467, 0.00546876853, 0.00124986214, -0.00598183833, -0.00821707305, 0.00887730252, -0.0199818853, 0.0103886714, 0.00770400325, -0.00060405035, 0.00828866474, 0.0112159476, 0.000686081883, 0.000921736064, -0.00162571575, -0.0092829857, -0.00154517568, 0.00326535199, -0.00155810185, 0.0131489085, -0.0287955515, 0.00420796871, 0.030816013, 0.0164023284, 0.0113829933, -0.00759661663, 0.00177188101, 0.0255659949, 0.00157102803, 0.022829622, -0.0119079947, 0.000739775249, 0.00994321518, -0.0115182204, 1.31592242e-05, -0.00142287416, 0.000690556306, -0.00238836044, -0.0114227664, -0.0092829857, -0.00154119846, -0.00146065839, 0.0083045736, -0.000917758793, 0.0119557222, 0.00520626782, 0.000777559471, -0.0204432514, -0.00124588492, 0.0206182525, -0.00850343797, 0.00326137478, -0.00196875678, -0.00303268083, -0.0160841458, -0.0119636767, -0.00801025424, -0.00288750976, -0.0115818577, -0.0282069147, -0.00262302021, 0.0165136922, -0.000343786669, -0.00495967595, 0.0314364694, 0.0117329946, -0.00140398205, -0.000952560047, 0.00729434285, 0.0087182112, -0.0209046155, -0.0073818434, -0.00173011946, 0.000857105188, -0.0148352776, -0.00351194362, 0.00202245, 0.0171023309, -0.0101738982, 0.015495507, -0.0246432647, 0.00578297395, 0.00277216849, 0.00486422097, 0.0028278504, -0.00618468, 0.00128565775, -0.00199560332, 0.00943412259, -0.00225313264, -0.00525797252, 0.00174105703, -0.00334688625, 0.00753695751, -0.00953753199, -0.0217159819, -0.00465740217, -0.0090761669, 0.0101738982, 0.00387387676, -0.00855116546, 0.000141939396, 0.0143739125, -0.000913781521, 0.0148909595, -0.00204233639, 0.0105477627, 0.0106989, -0.0126636792, -0.00705172867, 0.0053454726, 0.00642331736, -0.019631885, -0.000440733042, 0.00602558861, -0.00375256944, 0.00614490733, 0.00290143024, -0.00711536501, 0.00778752659, 0.0188205186, 0.00880571175, 0.000738780887, 0.0178023335, -0.0182636976, -0.00770002604, -0.00219745073, -0.0063954764, 0.00188821659, -0.00406478671, 0.000350498362, -0.0119000403, -0.0307046492, -0.0252478123, 0.0214455277, 0.0155989164, -0.00634774892, -0.0246273559, -0.00647104485, -0.00569547387, 0.0122977691, 0.00635172613, 0.00168338639, -0.0042159236, 0.0018196085, 0.00782332197, 0.00438296935, 0.0105477627, -0.00560001889, -0.00124588492, -0.00687275035, 0.0108102644, 0.00257927016, 0.00446649222, -0.018884154, 0.00214972324, 0.0090761669, -0.0104682175, -0.00659434032, -0.00735400198, -0.0158295985, 0.000577203638, 0.0144852763, 0.0207137074, 0.000612502103, 0.00250171311, -0.00380029692, -0.0258523598, -0.000932176481, 0.0294319186, 0.00636763545, 0.00370683079, 0.00246194028, -0.0212228, 0.00367898983, 0.00448240153, 0.00201350125, 0.0114784483, 0.0146602774, -0.0132761812, 0.0156148253, 0.000243981645, 0.0213659815, 0.00210995041, 0.00708354684, 5.64898946e-05, -0.0201250687, -0.0199500676, 0.00400711596, 0.0338228419, 0.000241495844, -0.0258841794, -0.00322359055, 0.00187926774, 0.0228773504, 0.00253154268, -0.00457785651, 0.00369688752, 0.0149148237, -0.00288949837, 0.00787104946, -0.0127352709, 0.00135824329, 0.0240387172, -0.00412444584, 0.0203159787, 0.0330910198, 0.0196796115, -0.0228137132, 0.0241023544, -0.00732616102, -0.00212585949, 0.0406001359, -0.00214176858, 0.00844775606, 0.0236887168, 0.0103011709, -0.00972844195, -0.00951366872, -0.00322160195, -0.0172296036, 0.00754491193, -0.014365958, -0.00633581681, 0.0118125398, -0.00906025805, -0.0145091405, -0.0128943622, -0.000977915246, -0.0161955096, 0.00286165741, -0.000112234047, 0.0103886714, -0.0166091472, -2.65981016e-05, -0.01423073, -0.0125920884, 0.00116832787, 0.0386274047, -0.000950074231, 0.00230284873, -0.00187628472, -0.00163168169, -0.00636365777, -0.00607729331, 0.000297053572, 0.0120670861, 0.000567260431, 0.00718695624, 0.0178023335, -0.00598979322, -0.000955045864, -0.00226506451, -0.00290540769, -0.00554831419, 0.000142685138, 0.000545882562, -0.0209523439, 0.0165136922, 0.0138727743, -0.00685286429, -0.00696422812, 0.00729434285, -0.005611951, 0.000580683816, 0.00117429381, -0.0170705132, -0.0148114143, 0.0182477888, -0.0139761837, 0.0259159971, -0.00465740217, -0.010897764, 0.0224637128, -0.016012555, -0.0245319, -0.00534945, 0.0102773076, 0.0170227848, 0.0122420872, -0.0034224547, -0.0099193519, -0.0184864271, 0.0013622205, 0.0128307249, -0.00170426711, 0.00906821247, 0.0110170832, 0.000922233216, 0.0124329971, 0.00855116546, -0.00954548735, -0.00679718237, -0.00783525407, 0.0211909804, -0.00205029105, 0.0151932333, -0.00225909846, 0.00399518386, -0.00649490859, 0.0140398201, -0.00820911862, 0.00691650063, 0.0124807246, -0.0148273231, -0.0131489085, 0.0139682293, 0.0191068836, -0.00540910941, 0.00370881939, 0.0137455007, 0.0148114143, 0.00160582934, 0.0265364535, 0.0193296112, -0.00250767893, -0.00696820533, 0.0171659682, -0.00637559, -0.0048204707, -0.000730329193, 0.0129739074, 0.00598979322, -0.00306847622, -0.00612502079, 0.003064499, 0.000120188619, 0.00862275623, -0.0160046, -0.00637161266, -0.00453808345, -0.0126159517, 0.0100227613, 0.0132284537, 0.0157102812, -0.00171023305, -0.0166091472, 0.00497558527, 6.40094513e-05, 0.0296069179, -0.00827275496, 0.000994818751, -0.00310824928, 0.0147955045, 0.00703184213, -0.00862275623, 0.0102613987, 0.00327728386, -0.00694036437, 0.0244682655, -0.00859093852, 0.00446649222, -0.0102216257, 0.0183909722, 0.0237523541, 0.0020244387, 0.0302114654, 0.0184546076, -0.00767616229, 0.0168796033, 0.0142466389, 0.0125602698, -0.0204432514, 0.0120273139, 0.0016863693, -0.0149148237, -0.0220023468, -0.0113670845, 0.00589433825, -0.00169929559, -0.00532558607, 0.00349404593, 0.0104045812, -0.00945003238, -0.00716309249, 0.00525001762, -0.00870230235, 0.0161318723, 0.0282228235, -0.0205227975, -0.00423978688, -0.00157699396, -0.00703979656, 0.0320887454, -0.00560399611, -0.00175497751, -0.00230483734, 0.0127829975, -0.00104006031, -0.0089727575, 0.00820911862, -0.00735797966, -0.013904593, -0.0273478199, 0.0351910293, -0.0216205288, -0.00540910941, 0.00985571556, -0.0142466389, 0.00145668106, -0.0123057235, 0.0281910039, -0.00627218047, 0.00596195227, -0.00735797966, 0.00174503436, -0.0102773076, -0.000670669891, -0.00363325095, -0.019170519, -0.0127591342, -0.00713922875, -0.00453808345, 0.00454603834, 0.0185341537, 0.00922730379, -0.0197750665, -0.00263097486, -0.00741366157, -0.00826480053, 0.0265682712, -0.00444660615, 0.0119636767, -0.00185341539, -0.00875003, 0.00171023305, 0.0196955223, -0.00444660615, 0.012353451, 0.0105000352, -0.00210995041, 0.00375455827, -0.0196955223, -0.0283500962, 0.00875798427, 0.0100545799, 0.00937048625, -0.0219228, 0.0111125372, -0.0132284537, 0.00264091813, -0.00853525661, -0.0145170949, 0.000658240868, 0.0023326783, 0.00115937891, -0.0103966258, -0.00678127306, 0.0131648174, 0.0147318682, 0.0135466373, -0.00533751817, 0.00162372715, -0.00574320136, -0.0250409935, 0.0220341664, -0.0664365888, 0.00234461017, 0.00135128305, 0.0077915038, 0.00361336442, 0.0189477913, 0.0389774032, 0.00604945235, -0.00032017153, 0.0180250611, 0.0234978069, -0.0158057362, -0.00425171899, -0.00214574602, -0.00196179631, -0.00918753073, 0.00297501, 0.0154318707, -0.011605721, -0.0055005867, 0.000735300768, -0.00185739261, 0.0279682763, -0.011876177, -0.010245489, 0.00412046863, 0.00161278958, 0.0213500727, -0.00681706844, 0.00638752151, -0.00397330895, 0.0145091405, 0.0207137074, -0.023386443, 0.0156705081, 0.0129102711, -0.00915571302, -0.0152568696, -0.000656749413, -0.0178023335, 0.0109136738, -0.000363921688, 0.00276620267, -0.00161676679, -0.0121307233, 0.0138648199, -0.00509490352, -0.00372870592, -0.0213500727, 0.006292067, -0.00700400118, -0.00886934809, -0.00237046252, -0.00616479386, 0.0297501013, -0.00208210922, 0.0137614105, -0.00134332839, -0.00258125877, -0.00725457026, -0.0211909804, -0.0115261758, 0.00774377631, -0.0103886714, 0.0160602815, 0.00850343797, 0.00885343924, 0.0116773127, 0.0110409465, 0.00631593028, -0.0182796083, 0.0196955223, -0.00648297649, -0.00766423065, 0.000313459866, 0.0028258618, 0.0026011453, 0.00327330665, -0.0252796318, 0.0173250586, -0.00441876519, 0.00533751817, 0.0298932828, -0.000890414929, 0.0205864329, -0.0119159492, -0.0329319313, 0.028095549, 0.00491194846, -0.0146920951, 0.0166727845, -0.00398722943, -0.00428353716, -0.00871025678, -0.00817730092, 0.00839207415, 0.00173210818, -0.00540115451, 5.14872117e-05, 0.0134114092, -0.0107864, 0.0032474543, 0.000121245088, -0.0180250611, 0.0155114159, -0.00910798553, 0.00662218174, -0.0151136881, 0.00354575063, 0.00765229855, 0.0380228572, 0.0055522914, 0.010285262, -0.00432331, 0.00417217333, -0.00350200059, 0.000347266789, -0.000414632086, 0.00575911, 0.00752900261, -0.0198068861, -0.0293682814, -0.00565967849, -0.00869434793, 0.00670570461, -0.00965685118, -0.0148670962, -0.000357458601, 0.00941821374, 0.0103011709, -0.00115838461, 0.0028258618, 0.00263097486, -0.00184744946, 0.00503524439, -0.0163386911, -0.00265682722, 0.00559206447, 0.00326535199, 0.00324347685, -0.000514064217, -0.00742957043, -0.00795457233, 0.0127114067, -0.0198387038, -0.0268069096, 0.0117170848, 0.00402899086, -0.0200932492, -0.020570524, -0.00540513219, -0.00988753326, 0.0106829908, -0.00658240868, -0.0076880944, -0.0111920834, -0.00300086243, -0.016720511, -0.00523013156, 0.00180966523, 0.00346023892, 0.0125045879, 0.00316790841, 0.0148114143, -0.00605740678, -0.000892900745, 0.00594206573, 0.00443467405, -0.00719093345, -0.00119716313, 0.00712331943, 0.0162193738, -0.0275546387, 0.00530172233, 0.00762445759, -0.00894094, 0.00427160552, -0.0017529889, 0.0210796166, 0.0152250519, 0.0177068785, 0.0159330089, -0.0108261732, -0.0259000883, -0.0285091884, -0.00987162441, 0.00957730506, 0.0222091656, 0.00759661663, 0.00470115244, 0.0107864, -0.00633581681, -0.00123892468, -0.0117489034, -0.0110170832, -0.0163386911, -0.000750712759, 0.0238955356, 0.0114227664, -0.00820116419, 0.00702388724, -0.00651877234, 0.014095502, 0.0070636603, -0.0168318748, -0.0076363897, -0.00385001302, 0.0173568763, -0.0127273155, 0.0122023141, 0.0252319034, -0.00140795927, 0.00544490479, 0.000216513523, 0.00822502747, 0.022925077, -0.026870545, 0.0306569226, -0.000600073079, 0.0131250443, -0.00694036437, 0.0152727794, 0.00731422938, 0.017754605, 0.0131329987, -0.00531763164, -0.0150102777, 0.00631195307, -0.0296387374, -0.0101579893, -0.00494774384, 0.00719491066, 0.0211114343, 0.00484035723, 0.00556422351, 0.0188205186, 0.0132523179, 0.0126716336, -0.00414830958, 0.00420001429, 0.0291296449, 0.00176989241, 0.0162750557, -0.00417217333, 0.0108739007, 0.00596990669, -0.00500740344, -0.0220341664, -0.017945515, -0.0150500508, 0.0132841356, 0.0096409414, -0.0247387197, -0.00234659878, 0.0164977834, 0.00272841845, -0.0041005821, -0.0153045971, 0.00253154268, 0.0131091354, -0.00739775226, 0.00192600081, 0.00921139494, -0.0183750615, -0.004768766, -0.00504319882, -0.017372787, -0.000563780311, 0.0112318564, -0.00736593409, 0.0025196108, -0.0155989164, -0.00490399403, -0.0054807, -0.00297898729, 0.0109454915, -0.00919548608, 0.0189477913, -0.0226705316, 0.0119557222, -8.15654403e-06, -0.00475285714, -0.0167364199, -0.0202364326, 0.00542501826, -0.0173091497, -0.00339660235, -0.0132204993, -0.0117648123, 0.00150440854, -0.0174364224, 0.00250171311, -0.00258125877, -0.0180727877, -0.0131409541, -0.00364319421, 0.00189418253, 0.00661820406, -0.0184864271, 0.00734604755, 0.0112000378, -0.00317785167, 0.0220182557, -0.00503922161, 0.00197869982, -0.0235137157, 0.00891707558, -0.0125761786, -0.00845571049, -0.0113352658, -0.00191804627, -0.0133716362, -0.0356046669, 0.00219943933, -0.0202682503, -0.0120273139, -0.00711536501, -0.0227023493, 0.00876593869, -0.00194887025, -0.0119000403, 0.00608524773, 0.0134591367, -0.00755684404, 0.00247983797, 0.00609320262, 0.00631593028, 0.013061408, -0.00789093599, -0.0113750389, -0.00501535786, -0.00272245239, 0.00137912401, 0.00404688856, -0.00373467174, -0.0190273374, -0.0179296061, -0.0202364326, -0.00680115959, -0.0443228781, -0.0222728029, 0.00920344051, 0.00196179631, 0.0157500543, 0.00320768123, -0.0166409649, -0.0197750665, -0.0214137081, -9.88107058e-05, -0.0208250713, 0.00217358698, -0.0197432488, 0.0115739033, 0.0110568553, 0.00668184087, 0.000849150587, -0.0192818828, -0.00500740344, 0.00552047323, 0.003064499, -0.0221137106, -0.00582672423, -0.00147457886, -0.0271728188, -0.0228614416, 0.00075866736, 0.0169591475, 0.0150420964, -0.00567161, 0.0109773101, -0.0153682344, -0.00390967214, 0.00760059385, 0.0690456852, 0.00436706049, 0.0192341562, -0.0355410278, 0.00847957376, -0.0315955617, -0.0107545815, 0.0452774279, -0.0120432228, -3.98039338e-05, 0.013196636, -0.00130753289, -0.0150898239, 0.0214614365, -0.0063318396, -0.00465342496, -0.0215091631, -0.0109375371, -0.0174364224, -0.01972734, 0.0093545774, -0.0279364586, 0.0135545917, -0.0194091573, -0.00562786, -0.00605342956, -0.00014082079, -0.0038122288, -0.0182796083, -0.0229409877, -0.00202344428, 0.0153284613, -0.00259716786, -0.00274035, -0.0093545774, 0.00171421038, 0.0100466246, -8.12857907e-05, 0.00395143405, -0.0076363897, 0.0237841718, 0.0311182868, -0.0254228134, -0.00276620267, 0.00723070651, 0.00313012418, -0.00987957884, -0.00150043122, 0.00182358571, -0.00647502206, -0.0098159425, -0.015495507, 0.00124091329, 0.00211989344, 0.000848156284, 0.00522217667, 0.0239273533, 0.012584134, 0.0132841356, -0.00313211279, -0.00263097486, 0.0195841566, 0.00429546926, 0.00289745303, -0.0201250687, -0.039741043, -0.00997503381, 0.00444262847, -0.0037923425, 0.00447047, -0.00919548608, -0.0131091354, 0.00385995628, -0.0147557314, 0.00133437954, -0.0125443609, -0.0178182423, -0.00100923632, 0.0118920859, 0.00863866601, -0.0318660177, 0.0169432387, -0.0149625512, -0.00186833018, -0.0219387114, -0.0127829975, -0.026791, 0.00312813558, -0.00123594166, 0.0296705551, -0.00943412259, 0.020665979, -0.0272682738, 0.00292131677, 0.00256336108, 0.0143102761, -0.0181046072, 0.0125364065, 0.0087182112, 0.00370484218, 0.0140159568, 0.00387387676, -0.0106511721, -0.00543695036, -0.00598581554, 0.0449274257, 0.00413637748, 0.0343319364, 0.0161796, 0.0171977859, -0.00997503381, 0.00506308535, 0.000308239687, 0.012965953, 0.0269182734, -0.00891707558, -0.000668681227, -0.0158295985, 0.00852730125, -0.0034542731, -0.00215171184, 0.0162034649, -0.0113511747, -0.00694036437, 0.0197750665, -0.0139841381, 0.0118602673, -0.000919250248, 0.00594206573, -0.000556322921, 0.00349603454, -0.0116375396, -0.0102375345, -0.00792673137, 0.0236091707, -0.00224716682, 0.019170519, 0.000103906605, 0.0194250662, 0.0253273584, 0.00678127306, 0.00788695831, 0.0242296271, 0.00582672423, -0.0123773143, -0.00434319675, 0.0179136973, -0.0192977935, -0.00631195307, 0.0283978228, 0.0128466347, -0.00299489661, 0.0108659463, -0.0284932777, 0.00949776, 0.0137057286, -0.027618276, -0.0145886857, 0.0291614626, 0.0192977935, 0.00547672296, -0.00357160298, 0.00980003364, -0.00401507039, 0.0144852763, 0.0178977884, 0.0183432437, -0.0259796344, 0.0121943597, 0.0120034497, 0.0099193519, 0.0208887067, -0.0149466414, 0.00370484218, 0.011414811, 0.0268228184, -0.0102534443, -0.0334092043, 0.00353978481, -0.0160841458, -0.0111682201, 0.0169273298, 0.0134909544, 0.0502410792, 0.00733411592, -0.00963298697, 0.0108261732, 0.00269858865, 0.0304023754, 0.00186236424, -0.00952162314, 0.0250091758, 0.0228932593, -0.00701991, 0.0086863935, -0.0116614029, 0.0271250922, -0.00508297188, -0.0255023595, 0.00666195434, 0.00980798807, -0.00623638462, -0.00915571302, -0.0224318951, -0.0162909646, 0.0293046441, 0.0116693573, 0.000715911505, 0.00753695751, 0.0135466373, -0.00571933761]
07 Oct, 2022
Angular PrimeNG Form Calendar Time Component 07 Oct, 2022 Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will see Angular PrimeNG Form Calendar Time Component. The Calendar Component is used to input the user’s date and time. The time picker in a calendar is used to enable the user to pick the time. It can be shown with or without the calendar. The hourFormat property is used to specify the time format to use. Angular PrimeNG Form Calendar Time Properties: showTime: This property is used to specify whether to show the time picker with the calendar. hourFormat: It is used to specify whether to display the time picker in 12-hour or 24-hour format. showSeconds: It is used to specify whether to display seconds in the time picker. timeOnly: If this property is set to true, only the time picker will be shown. timeSeparator: This is a string used to separate the hour, minutes, and seconds. Syntax: <p-calendar [(ngModel)]="..." [showTime]="true" hourFormat="12" [timeOnly]="true"> </p-calendar> Creating Angular Application and Installing the Module: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Finally, Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: The project Structure will look like this after following the above steps: Project Structure To run the above file run the below command: ng serve --save Example 1: This is a basic example illustrating how to enable datepicker in the 12-hour format shown with the calendar. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>Angular PrimeNG Form Calendar Time Component</h4> <h3>Calendar with Time in 12-hour Format</h3> <p-calendar [showTime]="true" hourFormat="12" [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Example 2: In this example, we set the timeOnly property to true to show only the time picker and disable the date picker. The hourFormat has been set to “24”. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4> Angular PrimeNG Form Calendar Time Component </h4> <h3>TimeOnly in 24-hour Format</h3> <p-calendar [showTime]="true" [timeOnly]="true" hourFormat="24" [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Reference: http://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-time-component?ref=asr10
Languages
Angular PrimeNG Form Calendar Time Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0379466414, -0.0296110194, -0.00968226232, 0.0149033107, 0.0325901769, 0.0127291279, -0.00864407048, 0.0242395084, -0.000487592537, -0.0152418511, 0.0395716392, 0.0168367531, -0.000622068415, -0.0666849837, 0.00605987711, -0.000315736164, -0.0506456792, 0.00633447152, -0.00734257, 0.0232615024, -0.0193795711, 0.03887951, -0.0267371871, 0.0100885108, 0.007846619, 0.0381572917, 0.0198460035, 0.00253905472, -0.00102126424, 0.0209443811, 0.0109235775, 0.0220578033, 0.0304686558, -0.0176342055, -0.0795043856, -0.0215010922, 0.011329826, 0.0332221203, 0.00376344332, -0.00100715843, -0.000554360275, 0.00144255918, 0.00978758559, 0.00968226232, -0.0288436618, -0.00794442, 0.0039759716, -0.0153321289, -0.0138124572, 0.00545426551, 0.0201017894, 0.0251121912, 0.0377961807, 0.0409258, 0.0141434753, 0.0320786051, 0.0123529714, 0.0158737935, -0.00769615686, 0.032560084, 0.0426410735, -0.0292499103, -0.0272186659, -0.0094264755, 0.0308749061, 0.0419489443, -0.00863654725, 0.0400230251, 0.00525866449, -0.00138331461, -0.0164154582, -0.00529251853, 0.00458910642, -0.0107731149, -0.00286254915, -0.0339744315, 0.00908041187, 0.0123529714, -0.0327707343, 0.0222985428, -0.00319356658, 0.0210196115, -0.0168217085, 0.0181006398, 0.0177395288, -0.0161295794, 0.0402637646, -0.051157251, 0.00410386454, 0.0254432093, 0.0389096029, 0.00645860285, 0.00581913721, -0.0310554598, -0.000883026805, 0.0311457384, 0.0264061689, 0.0143014612, -0.0445669927, -0.00196917797, -0.00139459933, 0.0100433724, 0.012601235, -0.036442019, 0.0323193446, 0.00792937353, 0.0293552335, -0.00763221039, 0.0206885934, -0.0519998409, -0.0084259, -0.0147227561, 0.026376076, -0.00174348429, -0.0853423327, 0.0282568578, -0.00202936307, -0.0351179466, 0.0259698275, -0.00844094623, -0.0235925205, 0.00616896246, 0.02142586, 0.0503748469, -0.0299721304, 0.0354489647, 0.00805726741, 0.014655048, 0.0257742275, -0.03887951, 0.00186761585, 0.00449506706, -0.000774881861, -0.00182153669, 0.0265265387, 0.0274594072, 0.0141209057, -0.0129548218, -0.0441757888, 0.00588308368, -0.00292837643, -0.0271735284, 0.0157082845, -0.0470646694, -0.0326503627, 0.00636832556, 0.0110138552, 0.0547081642, 0.0087569179, 0.0256538559, -0.0493517, -0.049171146, 0.0144067844, -0.00551068923, 0.0143691693, -0.0419489443, 0.00445369026, -0.00736890081, -0.0334026739, -0.0369836837, 0.0106301755, 0.0113599189, 0.0155879147, -0.0215763226, 0.0165809672, -0.0143240299, 0.0193193853, -0.0193645246, -0.00705669122, 0.0393609889, 0.018852951, 0.00384807843, 0.00390826352, -0.0103969593, -0.0444165319, 0.0128871137, 0.0101863118, 0.00364871556, 0.00850113109, -0.0110890865, -0.0195902176, 0.00634575589, 0.00424680393, 0.00895251893, 0.0213355832, -0.0070077912, 0.0177846681, -0.0115630431, -0.036080908, -0.0019155757, -0.0100885108, 0.0162048116, 0.0336434171, 0.0318077728, 0.00143879768, -0.0196504034, -0.00539408065, 0.00575895235, -0.0233367346, 0.0155427763, -0.00417157309, -0.0248864982, -0.0162198581, 0.016641153, 0.0127742663, 0.0245103408, -0.00889985729, 0.0149634955, 0.0316573121, -0.0298818536, 0.0031277393, 0.00158831978, 0.00406624889, -0.012668943, 0.013090238, 0.0213054903, -0.00388569408, -0.0116533209, 0.0171075873, -0.0246758498, -0.0266920477, 0.0617498122, 0.00917821284, 0.0204929933, -0.0601248145, -0.0060561155, -0.01588884, -0.00621786295, 0.00975749362, 0.00908793509, -0.000954026298, -0.00364683499, -0.0155578228, 0.00127516966, 0.0349975787, -0.00195601257, 0.0181909166, -0.00704164524, -0.00371454307, 0.0723423734, 0.0192592, -0.036532294, -0.0147603713, -0.0298818536, -0.00427689683, -0.0306341648, 0.0111718411, 0.0457706936, 0.0393008068, 0.0377961807, -0.0137146572, -0.00407377211, -0.0454396755, -0.000457029848, -0.0139779663, 0.00211399817, -0.00431451201, 0.019635357, 0.0235172883, 0.041678112, 0.0136243794, 0.017649252, 0.00363555015, 0.0464929119, 0.000984589, -0.0168217085, 0.00442735897, -0.0239084922, -0.0191689227, 0.0276399609, 0.0535345599, -0.0197105873, 0.0474558733, 0.0215612762, -0.0156029612, -0.00788423512, -0.052782245, -0.0176642984, 0.0408355221, 0.0460415259, -0.00164004124, -0.00932115223, 0.0243448336, -0.00637961, 0.00578152156, -0.0346364677, 0.0133385006, -0.0189883672, -0.0156180076, 0.0167314298, -0.00340421405, -0.00783909671, -0.0161747187, 0.0279258396, 0.0201770216, 0.0460415259, -0.0192592, -0.0137447491, 0.0102164038, 0.0218772478, -0.0235925205, -0.00172843796, -0.0123228785, 0.0241793245, -0.01468514, 0.0406549685, 0.0461618938, -0.0237279367, -0.0314767547, -0.022238357, 0.00744413212, -0.0284223668, -0.026180476, -0.00320673198, -0.0151967127, 0.0171527248, -0.0110138552, 0.0500438288, -0.0376156271, 0.00146794983, 0.0266619548, -0.00810240582, -0.0158437, 0.018040454, 0.029731391, -0.00435212767, -0.0258945972, -0.0297012981, 0.0443262532, -0.0324397162, -0.0453493968, 0.00131184491, -0.0152945137, 0.0174837429, 0.0169420782, 0.00208954792, 0.027158482, -0.0471248552, 0.0138876885, 0.00565739, -0.0187777206, 0.00994557142, 0.0177094359, -0.0244050175, 0.0335531384, -0.0395114534, 0.0285427365, 0.00188924477, 0.0252325609, 0.0274443608, 0.00141716865, 0.00602602307, 0.0671062768, 0.00398349483, 0.0371040516, -0.0330716595, -0.00866664, -0.040504504, -0.0186573509, -0.0201168358, -0.00523233367, -0.0263309386, 0.00596583821, 0.0603354648, 0.0124507723, -0.0352082253, -0.0123830643, 0.0303031486, -0.0327105485, -0.033282306, -0.0170474015, 0.014263845, -0.00541665, 0.0118940603, -0.040414229, -0.0190786459, 0.00771872653, 0.0238633528, 0.0305288415, -0.00857636239, -0.0774581, 0.0772775412, 0.0159791168, 0.0157082845, 0.0303633325, 0.0128494976, 0.0144444006, -0.0283170436, 0.00257855118, -0.0218922943, -0.00662787305, 0.0450484715, 0.0225693751, -0.0441457, 0.00525490288, -0.0334327668, 0.0192892924, 0.0168518, 0.0817914158, -0.00806479, 0.0208691489, 0.0266318619, 0.0114050573, -0.0199663732, 0.0106301755, 0.00612382405, -0.0430623665, 0.0233517811, 0.0373748839, 0.0142939379, 0.0226446074, 0.0275647305, -0.069393307, -0.0298818536, 0.0148205562, 0.0225392822, -0.00353210722, 0.0370137766, -0.0214860458, -0.00321613601, 0.0285728294, 0.0164605975, -0.036080908, -0.0172580481, 0.0120069077, 0.00653383415, -0.0190636, 0.0186122116, 0.0314165689, 0.0156330541, -0.0142036602, -0.0151214814, 0.00732752401, -0.00590565335, 0.0272487588, 0.00191275461, 0.0228402074, 0.0356295221, 0.0224790983, -0.022208266, -0.0373447947, 0.0184166096, 0.0327105485, -0.039601732, -0.0500739217, 0.00494269328, -0.072222, -0.00422799634, -0.0170323551, 0.0182811935, -0.0250520073, -0.00936629064, -0.0207939185, 0.0247661285, 0.0206284095, 0.0122476481, 0.0163703207, 0.0188379046, -0.0342452638, -0.00655640336, 0.01191663, 0.0349073, -0.00737642404, 0.0064962185, 0.0269929729, -0.0319883265, 0.00671438919, 0.0244050175, 0.00394587917, 0.036442019, 0.0208841953, 0.0403239504, 0.0202973913, -0.0029810383, 0.0100734644, -0.00715825334, -0.00710559171, -0.00277227163, -0.0135867642, -0.0110589936, 0.0619905517, 0.00616143923, 0.0516688228, 0.00505177863, -0.00773377251, -0.0283922739, -0.0114727654, -0.0371943302, -0.0276851, 0.0366526656, 0.0207487792, 0.0190335065, -0.0339443386, 0.014361646, 0.00587932207, 0.00786166545, -0.000429053238, -0.0224339589, 0.00812497549, -0.0200566519, 0.010389436, 0.031747587, -0.0323494375, 0.0406549685, 0.0271885749, -0.0022061565, 0.0150913885, -0.0292348638, -0.0333725847, -0.00775634218, -0.00136074529, 0.0279860254, 0.0114351502, 0.05476835, 0.0087569179, -0.0176642984, -0.0175740197, 0.0369535908, -0.00999071, -0.0184767954, 0.0211700741, 0.0153020369, -0.00318416278, 0.0113523956, -0.0192592, 0.0222233124, 0.002132806, -0.0113900118, 0.0226897448, -0.0225844216, 0.000504049356, -0.0147678945, 0.00951675326, 0.028196672, -0.00553325843, -0.0199513286, -0.0320786051, 0.00665044272, -0.0159941632, -0.00194472785, -0.046011433, 0.0356295221, -0.0286330134, 6.38290148e-05, -0.0142187066, -0.0250068679, -0.000490413688, -0.00809488259, 0.0180254076, 0.025789272, -0.0212753974, 0.0195601247, 0.0119993845, 0.00504049379, -0.0348170213, -0.0172430035, -0.0426410735, -0.0251121912, 0.00692127505, -0.00232276483, 0.0218170621, -0.0181758702, 0.028557783, 0.0277001467, -0.0288135689, -0.0246457569, 0.00701907557, 0.00908793509, 0.0184767954, 0.00124131562, 0.0167163834, -0.00837323815, -0.0163552742, 0.0136619955, -0.0128494976, 0.00503673218, 0.0340346172, 0.0106527451, 0.00285690674, 0.00332522136, -0.00707926089, 0.0350276716, 0.0299871769, -0.017874945, 0.00656392658, -0.00646236446, 0.0239536297, -0.0132632693, -0.0448077321, 0.000862808432, 0.0333124, 0.0217117388, 0.0210497044, -0.00464552967, 0.0078767119, -0.00248451205, -0.0084259, 0.0110514704, 0.0362012796, -0.0124282027, -0.0202372074, 0.0239235386, -0.00538279582, 0.0344258212, -0.0257441346, -0.000864219, -0.0070303604, -0.0110966098, 0.0321387909, -0.00669182, -0.0163552742, 0.0157684702, -0.00194848934, -0.0138801662, 0.0230809469, -0.0211550277, 0.0030637926, 0.00051956583, -0.0116006592, -0.0232915953, -0.0111868866, 0.0224038661, 0.0436040312, 0.0152644208, 0.0163853671, 0.00131936802, 0.00464176806, -0.0302279163, -0.00179050374, -0.0382475667, 0.014655048, -0.0331619345, -0.010389436, -0.0125410492, 0.045560047, 0.0167464763, -0.00642098719, 0.00219487166, 0.0111342249, 0.0271133427, 0.020222161, -0.00307883904, -0.0300774537, 0.0892543569, -0.00376532413, 0.0269779265, -0.0170774944, 0.0270230658, 0.0116382744, -0.00368445041, -0.0266168173, -0.016866846, 0.0270982962, 0.024811266, 0.00413019583, -0.0182962399, 0.00989291, -0.0186122116, -0.0230358094, -0.000116020696, -0.0127817895, 0.0111944098, 0.0171075873, -0.0157233309, 0.0303332396, 0.0116984593, 0.0179652218, 0.00801965129, 0.0069363215, 0.0371642374, -0.00838828459, -0.0299871769, -3.70866546e-05, 0.000754663488, -0.030182777, -0.0355091505, -0.0168217085, 0.0087569179, -0.0147227561, 0.00600345386, -0.0237429831, 0.0258945972, 0.0168367531, 0.0108709158, 0.0307244435, -0.00204252847, -0.0352383181, -0.00342302187, -0.00537151145, -0.00723724626, 0.0172730945, -0.0208841953, 0.0238784, -0.00720715383, -0.011593136, -0.030182777, -0.0189281832, 0.00647741091, 0.00967473909, -0.0218020156, -0.0164004136, -0.0176041126, -0.0266770013, 0.0134964865, -0.0128043592, 0.0143842148, 0.00355655747, 0.012796836, -0.0213957671, -0.00860645529, 0.00467938371, -0.000192074789, -0.000329842, 0.0260901973, -0.00742156291, 0.0206284095, -0.00760211796, 0.0207638256, -0.00584922964, -0.00839580782, 0.0169119854, -0.0118263522, -0.00131184491, 0.0010729857, -0.0342753567, 0.0157383773, 0.0165809672, -0.0458007865, -0.0297765285, 0.00297351507, -0.0150913885, -0.00255786255, 0.019048553, -0.00856131595, 0.00517967157, -0.027970979, -0.00248451205, 0.0161145348, -0.00678209728, 0.0255936719, -0.00328196329, -0.0033590754, -0.000662035, -0.0145422006, 0.0386086777, 0.00994557142, -0.00159490248, -0.0215010922, -0.0133610703, -0.00668429676, -0.0165659208, -0.0171075873, 0.00257102796, -0.0105699906, 0.00580785237, -0.007195869, -0.0189582761, 0.021200167, 0.0216816459, -0.0041001034, 0.0119993845, 0.000956847449, -0.0353285968, 0.0168818925, 0.00957693812, 0.0225543287, -0.0070077912, -0.0111191785, 0.0140005359, 0.00613510842, -0.00353398803, 0.0195450783, 0.049622532, 0.018627258, -0.00485617714, -0.0211399812, -0.0221781731, 0.000374510564, 0.00499911653, 0.00466057612, 0.00134005665, -0.0114201037, -0.0199814197, -0.0269779265, -0.000163863064, -0.0153471753, 0.0013692088, -0.0113749653, 0.0246307123, 0.022208266, 0.00546178874, 0.0122326016, 0.00999823306, 0.00646988768, 0.00055859203, -0.0446873643, -0.0124357259, -0.00216854084, 0.0154224066, -0.051157251, -0.0298517607, -0.0136544723, 0.0258795507, 0.0262557063, 0.0168367531, -0.00974997, -0.0242545549, 0.00599969225, 0.00653759576, 0.00420542713, -0.00589436851, 0.00595831499, -0.00156669074, -0.00123849441, 0.016866846, -0.0178298056, 0.0257140417, 0.0153622217, -0.042400334, 0.00713568414, 0.0180254076, -0.022208266, 0.0133535471, -0.000925814558, -0.034094803, 0.0299119446, 0.00302617718, 0.00589813, -0.00903527346, -0.000640876242, -0.0107505461, -0.0537753, -0.0359003544, 0.0311457384, 0.00905032, 0.014655048, 0.00270644436, 0.0237429831, 0.030182777, 0.0142187066, -0.0275045447, 0.0436040312, 0.00287195295, -0.0310253687, 0.000879265252, 0.0238934457, -0.0290844012, -0.0108934855, 0.0242094174, 0.00761716394, 0.0447174571, 0.0346966535, 0.00346251833, 0.0266318619, -0.000767828955, 0.0417984836, -0.020026559, 0.0206735469, 0.0224038661, -0.00697393715, -0.00464176806, -0.0271283891, 0.0203124378, 0.00944152195, 0.00728614675, -0.000818610075, -0.0148130329, -0.0283772275, -0.00400982564, 0.00211964059, -0.0263610296, 0.000541194808, 0.0342753567, 0.0170925409, -0.0169270318, -0.0120520461, -0.0217568781, -0.0248864982, 0.00259923982, -0.00752688665, 0.0193193853, -0.0129849138, -0.0168217085, 0.0181758702, -0.0250520073, 0.0246758498, -0.00576271396, -0.0319582336, -0.0191839691, -0.023773076, -0.0113599189, -0.0188679975, 0.00219675247, -0.0437544957, 0.030348286, 0.0344559141, 0.00214220979, -0.00241304236, -0.0184015632, 0.015663147, 0.00297727669, 0.0177244823, 0.0153095592, -0.0119993845, 0.0164906904, -0.0424605198, 0.0164305046, -0.0038932173, -0.0321387909, 0.00680842809, -0.00850113109, 0.0373147, -0.015467545, -0.01061513, 0.00653383415, -0.0284825508, -0.0521202125, 0.0345762819, 0.00609373115, -0.0372244231, -0.0159941632, 0.00924592093, -0.00368256983, 0.0197406802, 0.00647364929, -0.0086816866, -0.000150580046, 0.0033684792, -0.0049690241, 0.0244501568, 0.000382974074, 0.0438146815, 0.0107806381, 0.0120971855, -0.0189733207, 0.00987034, -0.00684228214, 0.0217568781, -0.0375253484, -0.00508563267, 0.0203124378, 0.000429288339, -0.0168217085, -0.00859140884, 0.0168969389, -0.0472753197, 0.0304686558, 0.0122175552, 0.00739899371, -0.0112696411, 0.0145948622, -0.0239084922, 0.0238633528, 0.0151290046, 0.0198159106, -0.0322591588, -0.0376758091, 0.00438598171, 0.00905032, 0.0323795304, -0.0176793449, -0.0204779468, -0.0174235571, 0.00337976404, 0.0162950885, 0.0170925409, -0.00478470745, -0.00983272493, 0.022012664, -0.0280612558, 0.0171828177, -0.0350577645, 0.0286631063, 0.00606363872, 0.0188078135, 0.0173633732, 0.00640594121, -0.000400371326, -0.00684980536, -0.0360508151, 0.0156330541, 0.00356784207, 0.0128795905, -0.0275647305, 0.0253378861, -0.0450183824, -0.00946409162, -0.0285126437, -0.0112395491, 0.00772624929, 0.00363366934, 0.0137597956, -0.00458910642, -0.0313563868, 0.00140870514, -0.00873434823, 0.0534442812, 0.00659778062, 0.00270456355, 0.000604201, -0.0044348822, -0.0242395084, -0.00703788362, 0.0252175145, -0.00876444113, 0.0258043185, 0.0323494375, 0.0179501772, -0.0132407006, -0.00704916799, -0.0256839488, -0.00578152156, 0.00238671154, 0.000136944393, 0.0176642984, 0.00933619868, 0.00669558113, 0.0137146572, -0.00126670615, -0.00449506706, 0.000364166277, 0.00968978554, 0.0132783158, 0.00886224117, 0.0119392, 0.0148506491, 0.00286066835, -0.00977253914, 0.00911050476, 0.0126614198, 0.00502544735, 0.0143466, 0.0185520258, 0.00896756537, 0.0121047087, -0.0221480802, -0.00129303709, -0.0229455307, 0.00456277514, -0.00256726635, -0.0155427763, -0.0208541024, 0.00549564278, -0.0309952758, -0.013315931, -0.00745541696, -0.00816259068, 0.0368031263, 0.0285728294, -0.0203274842, -0.016701337, -0.0124282027, 0.0211851206, -0.0222834963, -0.00928353611, -0.0104797129, -0.0185068883, -0.00635704072, -0.00820772909, -0.0330415666, 0.000905126, -0.0171075873, -0.0251422841, -0.00225505675, -0.0173332803, 0.0211851206, 0.00786166545, -0.0096296, -0.00179238454, 0.0262707528, -0.030769581, -0.00384619762, 0.00931362901, -0.00695136748, -0.00126482546, -0.0163552742, 0.0203575771, -0.0183413792, -0.0059620766, 0.0119692916, 0.0143842148, 0.00715825334, 0.0170323551, 0.0433632918, 0.00133347395, -0.0259096436, -0.00637584832, -0.0135341017, 0.00271396735, -0.0199663732, -0.00868921, 0.0126463734, -0.0291897245, -0.0154976379, 0.0159941632, 0.0201168358, -0.0324698091, 0.0675877556, -0.0130450986, 0.00245065801, -0.0298066214, -0.0056272978, -0.0385484919, 0.000747610582, 0.0141886137, 0.00323494384, -0.0254131164, 0.0290543083, -0.0121047087, -0.00225505675, 0.00907288864, -0.0117059825, -0.0171376783, -0.000428112835, 0.0141585218, 0.018627258, -0.0259547811, 0.023186272, 0.00503673218, 0.0193795711, 0.0326804556, -0.0124658179, -0.0199212357, -0.00171621295, -0.00129303709, -0.0210797973, -0.0204027146, -0.000328666531, -0.0125861885, 0.0086515937, 0.00137955311, -0.00176605361, 0.0218170621, -0.00141152635, -0.0138124572, -0.0115555199, 0.00486746198, 0.0201920681, -0.000559062231, -0.0206885934, -0.0175138358, 0.0386989564, 0.00279107946, -0.0193344317, -0.00319356658, -0.00454396755, 0.00799708162, -0.0029076878, -0.000666737, -0.00720715383, 0.0199362822, -0.0227499306, 0.020839056, -0.0188830439, -0.012503434, 0.007489271, -0.0211550277, 0.00255974336, -0.00565362861, 0.0202071145, -0.0227499306, 0.0019767012, 0.0221179873, -0.0112621179, 0.00962207653, -0.0197406802, 0.0278656557, 0.0292649567, 0.0212603509, 0.00141622825, -0.00339481025, 0.00340233324, 0.0204779468, 0.0132707926, 0.00871930178, 0.0197406802, -0.0299269911, -0.0185369793, -0.00593950739, -0.0109160542, 0.0341549888, -0.0117059825, -0.0110364249, -0.0170474015, -0.0351480395, -0.00880205631, -0.00832057651, -0.0113523956, 4.05543469e-05, -0.0157534238, -0.0226596519, 0.0109461471, 0.00665796548, 0.013315931, -0.00698146, -0.00795946643, 0.0102615422, 0.0161145348, 0.0326202698, 0.0112169795, 0.00686109, 0.0118113067, -0.00856131595, 0.0407753363, 0.00931362901, -0.035268411, 0.00882462598, 0.0229906701, 0.00392707111, -0.0133535471, -0.0224941447, 0.0114125805, -0.00749679422, 0.0189131368, 0.0108633926, 0.0296110194, 0.0102088805, -0.0230659023, -0.0136168562, 0.0141810905, 0.0345762819, 0.0145346774, -0.00287947617, -0.0202672984, 0.00860645529, 0.00896004215, 0.0193645246, 0.00276851, 0.0268726032, -0.000248263124, -0.0122250784, -0.0242696013, 0.0196504034, -0.026180476, 0.0405947827, -0.0116533209, 0.0213807207, -0.00948666, 0.00468314532, -0.00450635189, -0.017874945, -0.00544674275, 0.00783157349, -0.0156781934, 0.0138199804, 0.0321989767, 0.00944904517, -0.00779395737, 0.0182511, -0.00774129573, 0.0101411724, 0.0103142047, -0.0279408861, -0.00799708162, -0.0238182135, 0.0040286337, -0.00353774964, -0.00141998986, 0.0229756236, 0.0209895186, 0.00169646472, -0.0039007403, -0.0040700105, 0.0209443811, -0.0244802497, -0.0293251425, 0.00506682461, 0.0050216862, 0.00277227163, 0.00333462516, -0.0137146572, 0.0157383773, -0.0264964458, 0.0116758905, -0.0334929526, 0.0112922108, 0.0294455122, -0.0419188514, -0.00440102816, -0.0401133038, -0.0161897652, 0.0149033107, -0.00242620776, -0.0083581917, -0.0125711421, 0.0151515743, 0.00698522152, 0.00608996954, 0.0074178013, 0.0119091067, 0.0176642984, 0.0202071145, 0.00655264175, -0.0136394259, -0.0344258212, 0.00412643421, 0.00271772896, -0.00783157349, -0.00590941496, 0.0179802682, 0.0216816459, -0.00371454307, 0.00820020679, -0.0262557063, 0.00416405, 0.00580032961, 0.00159020058, -0.000445039856, 0.0070303604, 0.0191689227, -0.00108615123, -0.017062448, -0.0298367143, 0.0123680178, -0.0238784, -0.0140155824, -0.0299420375, -0.0158737935, 0.00226634135, -0.0143315531, 0.00839580782, -0.00729367, 0.00705292961, 0.0035151802, -0.00313150091, -0.0198911428, -0.000425526756, -0.0275797769, 0.0225091912, 0.014196137, -0.0216666, 0.00650374172, 0.0261353366, -0.00636832556, -0.02539807, -0.0180103611, 0.00143597648, 0.0013804934, 0.00454396755, -0.0145572471, 0.0139779663, -0.00651502656, -0.000161747186, 0.0271885749, -0.0106226522, -0.00858388562, 0.011623228, -0.0120595694, 0.0113448724, -0.00721843867, -0.0311156455, 0.00153659831, -0.0226596519, -0.0134438248, 0.0252626538, 0.0120294774, 0.00260112039, 0.0153546985, 0.0124733411, -0.00171151094, -0.00834314618, -0.0224640518, -0.0210497044, -0.0156330541, -0.0204629, -0.0268425103, -0.000439397525, -0.0370438695, 0.0174235571, -0.00614639325, -0.0290242173, 0.0150612965, 0.00251272367, 0.0129999602, 0.0143390764, 0.00915564317, -0.0106527451, -0.0273992214, 0.00598840741, 0.000978946686, 0.023411965, -0.0117059825, 0.033282306, -0.00965969265, 0.0044160746, 0.0312661082, -0.00810992904, 0.0205381308, 0.0037333509, 0.00810992904, 0.00292837643, 4.20237047e-05, 0.0206735469, 0.0162048116, 0.0111868866, -0.00941142906, -0.0038273898, 0.0159339793, 0.00114163419, 0.0164906904, 0.00684604375, -0.020026559, 0.00490131602, 0.0390299745, 0.00695512909, 0.000191487037, -0.0107279764, -0.017649252, -0.0161145348, 0.0102314502, -0.0151139582, -0.0164455511, -0.0292198174, 0.0175589733, -0.0180705469, -0.00367692742, -0.0180254076, -0.00552949682, 0.00834314618, -0.0102916351, 0.00381422439, -0.00180743076, 0.00217042165, -0.0256388094, -0.00167389528, -0.0062780478, 0.023186272, 0.0157835167, -0.0180555, -0.0218922943, 0.0111567946, -0.0179953147, 0.0132181309, -0.0238633528, -0.0158437, 0.0118188299, -0.00214785221, -0.0190636, 0.0247661285, -0.0205381308, 0.00867416337, 0.0176041126, -0.0140456744, -0.0185520258, 2.54934021e-05, -0.0316272192, -0.00837323815, -0.00714696897, -0.0209594257, -0.00087879505, 0.0179802682, 0.0272487588, 0.0219073407, 0.0191538762, 0.0120746158, 0.0117511218, 0.0153095592, 0.0132407006, 0.0151440511, 0.0112922108, 0.0278807022, 0.0104872361, -0.0130977612, -0.0257290881, -0.0285276901, 0.0255936719, 0.0347869322, -0.0239235386, -0.010419528, 0.00735009322, 0.030182777, 0.0274443608, 0.0167615227, 0.00576271396, 0.0145422006, 0.00411138777, -0.00732000079, -0.035268411, -0.00818516, 0.00694008311, -0.0105624674, 0.01338364, 0.00721091544, -0.00383491302, 0.0197406802, -0.0235624276, 0.0186573509, 0.0231260862, -0.00242056558, 0.00800460484, 0.0213355832, -0.0230057165, 0.00195413176, 0.000813908118, 0.00170680904, -0.00440479, -0.00730871595, 0.0307545345, 0.0264061689, 0.0306492113, 0.00345687591, 0.0149409268, 0.0125410492, -0.00667677354, -0.0163101349, 0.00996061787, -0.0217117388, -0.0128118824, -0.0224189125, -0.0091330735, -0.0180855934, 0.0206585024, -0.0136243794, -0.0110966098, 0.0327707343, 0.0294455122, 0.0485993885, 0.0070077912, 0.00974997, 0.00427313522, -0.00350953778, 0.0139253046, -0.00752312504, 0.00719210738, -0.0114878118, 0.010389436, -0.0146249551, -0.0163251814, 0.0157082845, -0.00857636239, 0.0111567946, -0.024585573, -0.0126538966, -0.0070303604, -0.0180855934, -0.00237730751, 0.00944152195, -0.00733128563, 0.0181307308, 0.00147547293, -0.00551068923, 0.0164004136, -0.00608244678, -0.000982708181, 0.0283170436, 0.00741027808, 0.00697017554, 0.0054505039, 0.0186122116, -0.0110213785, 0.00647741091, 0.0134513481, -0.00461919885, -0.00985529367, -0.0315971263, -0.0147453249, -0.0136394259, 0.0138952117, -0.000944622385, 0.012503434, -0.0113749653, 0.00722220028, 0.017874945, 0.0131429, 0.00261240522, -0.00154035981, 0.0153998369, -0.000295282662, -0.0304536112, -0.00421295, -0.00236038049, 0.00645860285, 0.00393835595, 0.00502544735, 0.0112245027, -0.0111793643, -0.00690622861, -0.000657803263, -0.0152117591, 0.0161747187, 0.00674072, 0.028362181, 0.0348170213, 0.00485241553, -0.0096296, 0.0230809469, 0.0107731149, 0.0176191591, -0.000389556808, 0.00564610539, 0.00966721587, 0.000499347399, 3.55952557e-06, -0.00191745651, 0.00225129514, -0.00758331, -0.00442735897, 5.96266436e-05, 0.00424304232, -0.00531508774, -0.0119392, 0.0111267017, 0.0374049768, -0.00789175835, 0.0136996107, -0.00336283701, 0.011104133, 0.0214860458, -0.0193193853, 0.00137297029, 0.0321387909, 0.0036600004, -0.0289790779, -0.0174386036, -0.00136638759, 0.00791432802, 0.00391578674, 0.0227800235, 0.00223624893, 0.00639841799, -0.032108698, -0.00777138816, -0.0121724168, 0.0194698479, -0.000430698914, -0.030318195, 0.0114201037, -0.00499535492, 0.015271944, -0.000128128231, -0.0121348007, -0.024811266, 0.00571381347, -0.00896756537, 0.00667677354, 0.00446873624, 0.023607567, -0.000586333568, 0.0106978836, -0.0169270318, 0.0102540199, -0.0161897652, -0.00284186052, 0.00862902403, -0.014655048, -0.0131654693, -0.00552573521, -0.0300925, -0.0229304861, -0.00643603364, 0.0146249551, 0.0150462501, 0.0140306279, -0.00346063753, -0.0192291085, -0.00603354629, 0.00548435841, -0.00638337154, -0.00666548871, 0.0216666, -0.0106226522, 0.00150744617, 0.017649252, -0.00341361808, 0.00841837656, 0.0123680178, -0.0176642984, -0.0177395288, 0.0277151931, 0.0199964661, 0.0149258804, 0.0244952962, 0.0115479967, 0.0107355, 0.0185520258, -0.0219524782, -0.0113523956, -0.0139403511, -0.0252777, 0.00598840741, -0.00800460484, 0.00720715383, 0.0195450783, -0.00513829431, 0.0312360153, -0.0174987894, 0.00539031904, 0.0161747187, 0.00199550902, -0.0190034136, -0.0191538762, -0.0358100757, 0.00437469734, -0.0216966923, -0.000309153431, 0.00871177856, -0.0198309571, -0.00350201479, -0.0207788721, -0.00318416278, 0.00323494384, -0.00698522152, -0.0272337124, -0.00211775978, 0.00337224081, -0.0427614413, -0.00574014429, -0.0071733, -0.0317174941, 0.00215161382, -0.0078767119, 0.0322591588, 0.0094565684, -0.00371454307, -0.0110514704, -0.00184974843, 0.0241642781, 0.00959198456, -0.000369808608, -0.0164906904, -0.00617272407, 0.0102314502, -0.000186314894, 0.0101712653, -0.00477718422, -0.00718834624, 0.00660530385, 0.00331017515, 2.51113688e-05, 0.0115404734, 0.00242244639, -0.00296599208, -0.00445369026, -0.0124883875, -0.00270644436, -0.00660154223, 0.000608902948, -0.00329889031, 0.023803167, -0.0153923137, -0.000972363923, 0.0125410492, -0.0160242561, -0.0197707731, 0.0170173086, 0.00790680479, -0.00515710237, 0.000853404519, 0.0175589733, 0.00372582767, -0.00713192252, 0.0059846458, -0.0201469287, -0.0163251814, 0.00534894178, -0.0187024884, -0.000581631612, 0.0157233309, -0.00188454287, 0.000857166073, 0.00588684529, 0.0123228785, -0.00768487249, -0.00310328905, 0.0109912856, -0.00658649579, 0.0149183571, -0.00423551956, -0.0148280794, 0.00893747248, 0.00619905489, 0.0129172057, 0.0187777206, 0.00821525231, 0.0111417482, -0.0109160542, 0.0133234542, -0.00497654732, 0.01338364, -0.00661282707, -0.000433755195, 0.00619905489, -0.0100358492, 0.0297765285, -0.0128720673, 0.000732094108, 0.0154224066, 0.0170925409, 0.00133629504, -0.0132331774, -0.0191237833, 0.0127291279, -0.00446121302, 0.00758331, 0.0157534238, 0.00371078146, 0.00546178874, 0.00955436844, 0.0134287784, -0.033282306, -0.00352834561, 0.0239837226, 0.00195413176, 0.00184880802, 0.0111492714, -0.0108408229, 0.005356465, -0.00405872613, -0.0174837429, -0.00383491302, 0.0102540199, -0.0122702168, -0.00174348429, -0.0132557461, 0.00369761605, -0.0145121086, 0.0123529714, 0.0117511218, -0.000362990773, 0.00272525195, 0.00791432802, -0.000188430771, 0.0132256541, 0.00681971293, -0.0400832109, 0.00379917817, 8.40474095e-05, -0.0210948419, 0.0188980903, -0.00027788544, -0.00302805775, -9.88879492e-06, 0.00347568374, -0.00210459414, -0.00096860237, 0.0225543287, -0.00108615123, 0.0213355832, -0.00226634135, -0.00385936326, 0.00370137743, 0.01348144, -0.00036111, 0.00432579685, -0.00974244718, 0.001986105, 0.0295658819, -0.00492012361, 0.000324434775, 0.0162349045, 0.00542417308, 0.0101035573, -0.00871930178, 0.0078767119, -0.00161088922, 0.0101035573, 0.000999635202, 0.0094264755, -0.00193344313, -0.00112564757, -0.0186122116, 0.00987786334, -0.0220728498, 0.0108859623, -5.16847513e-06, -0.022208266, -0.0134438248, -0.0233066417, -0.000512042723, 0.0159791168, -0.00470947614, 0.00140588405, 0.0201619752, 0.0045289211, -0.00242432696, -0.00369197363, -0.0132106077, 0.0112771643, -0.0184015632, 0.00730495434, 0.00626676297, 0.00288511836, 0.0169119854, 0.0174837429, 0.0169420782, 0.00111624366, -0.00149616145, -0.0157233309, 0.0266017709, 0.0260300133, -0.00477342308, 0.0327707343, 0.00381422439, 0.0154374531, 0.0232464559, 0.00106170098, -0.0136695178, 0.0153847905, -0.00808735937, -0.0186122116, -0.0385184, -0.00632694829, -0.00332145975, -0.00384055544, 0.00281929108, 0.0039233095, 0.00140212243, 0.00871177856, -0.00162029301, -0.0209594257, 0.00231148023, 0.00470195338, -0.00569500588, 0.00131184491, -0.00721091544, -0.00812497549, 0.000313620287, -0.0131579461, -0.0158587471, 0.0147227561, -0.00798955839, 0.012210032, 0.0137372268, 0.00807231292, -0.0116683673, -0.00818516, -0.00317475875, -0.0130827148, -0.00487874681, -0.016054349, 0.00451763673, -0.00250708149, -0.00934372097, 0.0211550277, -0.000826603384, 0.0155126844, 0.00859893207, -0.0134137319, 0.030709397, 0.00116608443, -0.0189432297, -0.0134363016, -0.0110138552, 0.00218358706, -0.0150011117, 0.0084635159, 0.000287054252, 0.00357912667, 0.0140908137, -0.0110815633, 0.00687989779, -0.00568748266, 0.0216064155, 0.00295470748, -0.0153321289, -0.026180476, -0.00336095621, 0.00889985729, -0.0160693955, 0.012796836, -0.00863654725, 0.005209764, 0.0122626936, -0.0194999408, -0.0158136096, 0.000679902441, -0.0151515743, 0.00106076058, 0.0055972049, 0.0207939185, -0.00608620839, 0.0361711867, -0.00335531379, 0.00769615686, -0.00762844877, -0.00538279582, 0.00795946643, 0.0194999408, 0.00459286803, -0.00606363872, -0.00428065797, -0.00282869511, -0.00181589427, 0.000665796571, 0.00489379279, 0.00979510881, -0.0101035573, 0.0166562, 0.0195751712, 0.0027421792, -0.0216365084, -0.0099380482, 0.00661282707, 0.0189432297, 0.0154976379, 0.000773001113, 0.0165057369, -0.000290815806, 0.00224941433, 0.0193494782, 0.00337412162, 0.00570252864, -0.00641722558, -0.00925344415, 0.00947913807, -0.018461749, 0.0390600637, 0.0054505039, -0.00552949682, 0.0234871972, -0.0274293143, -0.00475837663, 0.00444240542, -0.0186723974, -0.0105699906, 0.0234721508, -0.0132106077, -0.000627710775, 0.00735385483, 0.00253717392, 0.0094565684, 0.00509691704, 0.0243448336, -0.000338540616, 0.00484489277, 0.0339443386, 0.00709054526, -0.00566115184, 0.0152945137, 0.000844000606, 0.00216289843, 0.0149334036, 0.0186723974, -0.00384807843, -0.00448378269, 0.00154224061, -0.0170474015, -0.00583042204, -0.0168066621, 0.00902775, 0.0123379249, 0.00272901356, 0.0185670722, 0.0107430229, 0.000364636478, 0.00962207653, -0.00451763673, 0.00112846878, -0.000664856168, 0.00949418359, -0.0127516966, 0.0210497044, -0.0149334036, 0.0112169795, 0.019214062, 0.00427689683, 0.00896756537, 0.00870425534, -0.00187231775, 0.0360508151, 0.0101562189, 0.0358100757, -0.0257441346, 0.00558215892, 0.0233517811, -0.0219976176, -0.00387064787, 0.00193908555, -0.00328760571, 0.0128269279, 0.00674448162, -0.00441231299, 0.0124658179, -0.00379917817, -0.00461919885, 0.0038292706, 0.0118338754, 0.00526618771, -0.005649867, -0.0177395288, -0.0164906904, 0.00725229271, -0.00513453269, 0.0110364249, -0.0107655916, 0.00514205592, -0.00958446134, -0.0110890865, -0.0103668664, -0.00583794527, -0.00388945569, -0.0370438695, -0.00470947614, 0.0282568578, 0.00568372104, -0.00823782198, 0.0202973913, 0.0198309571, -0.00364119257, 0.000517685, -0.00838828459, 0.0038932173, -0.0161897652, -0.0171527248, 0.00545426551, 0.00993052498, -0.0226746984, 0.00198046258, -0.00953932293, 0.0215010922, -0.0144143077, -0.00341549888, -0.0212753974, 0.00433332, 0.00664668111, 0.0106602684, 0.0110514704, -0.0102690654, -0.00263685524, -0.00488250796, 0.0159339793, -0.0186423045, -0.0113674421, -0.00390450191, -0.0133535471, 0.00612382405, -0.00810992904, -0.0278054699, -0.00616143923, -0.00651502656, 0.00967473909, 6.78844517e-05, -0.00272713276, 0.0033590754, 0.0198159106, 0.0045289211, 0.0127592199, -0.00936629064, 0.00316159334, 0.0235172883, -0.00725605432, -0.0152192824, -0.00517967157, -0.00302993855, -0.00806479, 0.000116843534, -0.00460791402, 0.00313526229, 0.0144820157, -0.0208992418, -0.00852370076, 0.0134739168, 0.00409258, 0.0116909361, -0.00139271852, 0.0200115126, -0.0130601451, -0.00296034967, -0.00174536498, -0.00387064787, 0.0131504228, -0.00113505148, -0.000205945544, -0.013872643, -0.0445369, -0.0144594461, 0.0128795905, 0.011299734, 0.000332428084, -0.0153772673, 0.00136356638, -0.00935876742, 0.0136168562, 0.0045101135, 0.00104289327, -0.00314278551, 0.0064247488, 0.0160844419, 0.0079519432, 0.00451763673, -0.0143390764, -0.0137372268, -0.0116834128, 0.00345499511, 0.00268011331, 0.0164605975, -0.0143766925, 0.00279296027, 0.005063063, -0.00866664, -0.0241492316, -0.0028964032, -0.00974244718, -0.010517329, -0.00243185018, 0.0216515549, -0.0146625713, 0.011495335, -0.00406248774, -0.00762844877, -0.00364495418, 0.0233818721, 0.0113523956, -0.0113223037, -0.00288511836, -0.00233216886, 0.00739899371, 0.00980263203, 0.010517329, 0.0141810905, -0.000102032383, -6.11841679e-05, 0.00602226146, 0.0159941632, 0.0251573306, 0.00178109983, 0.0148205562, 0.0147378016, -0.0231561791, -0.0227047913, 0.00225505675, 0.0274744537, -0.000928635767, -0.0156781934, -0.00725229271, 0.007489271, 0.0190184601, -0.00555206649, -0.0028249335, 0.00811745226, 0.0256689023, -4.89590857e-05, -0.0016776569, -0.0149559723, 6.50632792e-05, 0.0094264755, -0.00434836652, 0.0325299911, 0.0233367346, -0.00420918828, -0.0183413792, 0.0229906701, -0.0146475248, -0.00636080233, 0.021471, -0.00653759576, 0.00246570422, 0.00323118223, 0.00815506745, -0.00485617714, -0.00905032, -0.00274594058, -0.0211550277, -0.00669558113, -0.0117360754, -0.00334026758, 0.00892242603, -0.0140381511, -0.00455525238, -0.00105135678, -0.00890738051, -0.0272638053, -0.00596583821, -0.00393083273, -0.00164192205, -0.00631566346, -2.42738333e-05, -0.0210497044, -0.00322177843, 0.0100809876, 0.0293251425, 0.00470195338, -0.00317852036, 0.0100057563, -0.0200867448, -0.0184767954, -0.0116006592, -0.00513453269, 0.00378789357, -0.00561977457, 0.00210271357, 0.0168066621, -0.0158737935, -0.00575142913, 0.00189018517, -0.00387817109, -0.0141133824, -0.0042881812, -0.0113523956, -0.0191087369, -0.00232276483, 0.0183865186, -0.00269892113, -0.00615015486, 0.000851523713, -0.00799708162, -0.000924404, -0.00542041147, -0.0166862924, -0.00927601289, 0.0219825711, 0.00693256, 0.0328610092, -0.00835066848, -0.000476542948, 0.0169872157, -0.010126126, -0.0322892517, -0.0202372074, 0.00272149057, 0.0227950681, 0.0184767954, -0.00775634218, -0.0212152135, -0.0207939185, 0.0222684499, 0.0179652218, 0.0108182542, 0.0197105873, 0.00337224081, 0.00023439237, 0.0120670926, 0.00960703101, -0.00838076137, 0.00236978452, 0.0115780896, 0.00692879828, 0.00271208654, 0.0126087572, 0.0042167115, -0.00560472813, 0.00245441962, 0.0186874419, 0.00271772896, -0.00746294, 0.00975749362, -0.0165659208, -0.00669558113, 0.0165207833, 0.0153321289, -0.000387911132, 0.00497654732, -0.000955907104, 0.0163251814, -0.00169458392, 0.0249165911, 0.0216365084, 0.00155070412, -0.00776386494, 0.00311081228, 0.0038273898, 0.00593198417, 0.00354339182, 0.0110589936, 0.0141058592, -0.00140588405, -0.00300736935, -0.00170963013, 0.0097198775, 0.0227950681, -0.0256087184, -0.000203241929, -0.00525114127, -0.0034324259, 0.00823782198, 0.0167314298, 0.0120445229, -0.00393835595, -0.0175439268, -0.00231712242, 0.0113749653, 0.0060185, -0.00137955311, -0.00674448162, 0.00133253355, 0.0240288619, 0.0079820361, -0.0169872157, 0.0238934457, -0.012796836, 0.00176511321, 0.0278205164, -0.00999071, 0.00764725683, -0.0105850371, 0.00806479, 0.0322892517, 0.00522857206, 0.024585573, 0.0107881613, -0.0128043592, 0.0330114737, 0.0157534238, 0.0151590975, -0.0141209057, 0.0184166096, 0.00715449173, -0.0196203105, -0.0204328075, -0.00602602307, 0.0114802886, 0.00708678365, -0.016701337, 0.0168818925, -0.00132030842, -0.00238106912, 0.0011397535, 0.00216854084, 0.0109837623, 0.0173784196, 0.0163703207, -0.0232013185, -0.00128645438, 0.00941895228, -0.00637961, 0.0294455122, 0.00108333, -0.00236978452, 0.00194096623, -0.00470947614, -0.00369573524, -0.0103292512, -0.00931362901, -0.0122476481, -0.0142262299, -0.0300323162, 0.0198911428, -0.0242545549, -0.000394964067, 0.0159640722, -0.00840333104, 0.0031371431, -0.0107655916, 0.02676728, -0.00443864381, 0.00796699, -0.013970443, 0.00370325823, -0.00463424483, -0.00564234378, -0.00830553, -0.00891490281, -0.0122927865, -0.0182511, -0.00332522136, 0.00974244718, 0.0216515549, 0.00494269328, -0.0154976379, -0.002604882, 0.00295282668, -0.0102765886, 0.0162950885, -0.00562353618, 0.00320861279, 0.0040474413, -0.0148280794, -0.00735761644, 0.0193946157, -0.00251272367, 0.00912555, -0.0122025087, -0.007846619, 0.0160393026, -0.0178598985, -0.0174686965, -0.00797451288, 0.00536022661, 0.0169270318, -0.0122250784, 0.015663147, -0.00808735937, -0.00458534481, -9.53908748e-05, -0.0260601062, 0.00919325929, 0.000331722811, -0.0135566713, -0.0131278532, -0.0113223037, 0.00811745226, 0.0065187877, 0.00438222056, -0.0140832905, 0.00592822256, -0.0083581917, -0.0236827973, 0.023998769, -0.0586803742, -0.0035057764, 0.000412126188, 0.0233216882, -0.00231900322, 0.0250520073, 0.0193193853, -0.00383115141, 0.0169270318, 0.0130225299, 0.0166110601, -0.0203124378, 0.00292461482, -0.00188172166, -0.021786971, -0.00139459933, 0.00463424483, 0.0186573509, -0.00112094567, -0.013188038, 0.00179802685, 0.00938133709, 0.0219825711, -0.00725981593, -0.0158587471, 0.00760964118, -0.00641346397, 0.0138199804, 0.00323682465, 0.00452516, -0.000615015451, 0.00441231299, 0.0147603713, -0.0106978836, 0.0103593431, 0.0162649956, -0.00663539628, -0.0305890273, -0.00275534461, -0.0241642781, 0.0166261066, 0.00525866449, -0.0009154703, -0.0227499306, -0.00420166552, 0.0044160746, 0.00643979525, -0.000511572522, -0.00373899308, 0.0126463734, -0.0125636188, -0.00660906546, 0.00461543724, 0.00223624893, 0.0177696217, 0.0103819128, 0.0207186863, -0.00819268357, 0.000331722811, -0.00119993847, -0.0250219144, -0.017227957, -0.00123661372, -0.00892994925, 0.0230809469, -0.00211399817, 0.0055558281, 0.00753817149, -0.0113147805, 0.0136845643, -0.0289640315, 0.0115479967, -0.0191087369, -0.0149258804, -0.00435965089, -0.000641346385, -0.0009544965, 0.000767358753, -0.0216365084, 0.0047282842, 0.00813249778, 0.0145572471, 0.0228101145, -0.00323306303, 0.00779395737, -0.0120219542, -0.0278355628, 0.0205080397, 0.000509691716, -0.0118338754, 0.00959198456, 0.00501040136, -0.00487874681, 0.0059846458, -0.00691375183, -0.00350953778, -0.000749961531, -0.0122250784, -0.000599499035, 0.00831305329, -0.00694760587, 0.000398020347, 0.000146700942, -0.00738770887, 0.0202973913, -0.0089750886, 0.0243598782, -0.0132256541, -0.00632318668, 2.56991134e-05, 0.0265867244, -0.0032744403, 0.00827543717, -0.002132806, 0.0188078135, -0.00972740073, -0.00195037015, -0.00015010986, 0.0103518199, 0.00862902403, -0.00692879828, -0.0266318619, -0.00922335126, -0.00768487249, 0.000497936853, -0.00258795498, -0.02539807, -0.000267306052, 0.000751842337, 0.00476966146, 0.0078767119, -0.00584922964, -0.00377848954, -0.000583512418, 0.0122927865, 0.0004210599, -0.00111530325, -0.0016071276, -0.022238357, -0.000518625428, 0.000830364937, -0.0104721906, -0.00278919865, 0.0109235775, -0.0273992214, -0.00671815081, 0.0118714916, -0.00277415244, -0.00810992904, -0.0146023855, -0.0159791168, -0.00742156291, 0.00659778062, -0.0046756221, -0.00414900342, -0.0111643178, 0.000847291958, -0.0164906904, -0.00627052458, -0.000189958912, -0.00203500525, -0.00495021651, -0.00306191202, 0.022208266, -0.00191181421, -0.000207356134, 0.0184166096, 0.0075419331, -0.0101938341, 0.000619717408, 0.0137597956, 0.0187024884, -0.0210647509, -0.00786166545, 0.00592446094, -0.0186723974, 0.0112320259, -0.00187231775, 0.0218020156, 0.016701337, 0.00669182, 0.0187626742, -0.0074704634, -0.0170774944, -0.0282719042, -0.00207826332, -0.00284186052, 0.0251874235, -0.0011397535, -0.00947913807, 0.016280042, -0.000241680391, 0.00567619782, -0.0096446462, -0.00291333022, -0.00256914715, 0.00146700942, 0.0129548218, 0.00862150174, -0.00756826391, 0.00531884935, -0.0156029612, 0.0209744722, -0.00104759517, -0.0276550073, -0.00675952807, -0.0236527044, 0.00322742062, -0.0212753974, 0.0153546985, 0.00865911692, -0.00375403953, -0.0106903603, -0.0025108431, 0.023607567, 0.0200716984, -0.00715825334, 0.035719797, 0.00104947598, 0.0189883672, -0.00446873624, 0.00753441, -0.00234157266, 0.0170774944, 0.00239047292, -0.00783157349, -0.000356172939, 0.0129849138, -0.0077112033, -0.0136695178, -0.00482608471, 0.0227499306, 0.0174686965, 0.00362426555, 0.00524737965, 0.0125485724, 0.000359699421, 0.0226145145, 0.00722220028, 0.00188078126, 0.0341248959, -0.00578528317, 0.0336735062, -0.00441983622, -0.000555770879, 0.0189131368, -0.0113824885, -0.024585573, -0.0215462297, -0.0161295794, -0.00801965129, 0.00163722015, -0.0102841118, -0.00375968171, 0.0172430035, -0.00220051408, -0.0140231056, -0.000413301692, 0.000778643473, 0.0129773906, -0.00396844838, -0.00393459434, 0.00408505695, -0.0253679771, 0.000887728762, -0.00686861342, 0.00981767848, -0.0130676683, 0.0131579461, -0.00410386454, -0.00136826839, -0.0151515743, -0.00927601289, 0.00450635189, 0.00151402887, -0.00689494424, 0.00110872055, 0.0140231056, -0.0246758498, 0.0190034136, 0.00982520171, -0.0107881613, -0.000812967715, -0.00481103826, 0.0104872361, -0.012037, -0.0190636, -0.00855379365, -0.0138651198, -0.00799708162, -0.00868921, -0.00273089437, 0.0071243993, -0.00835066848, -0.0241341852, 0.0116758905, 0.00988538656, -0.00275722542, -0.0280763023, 0.00606363872, 0.0311156455, -0.00398725644, 0.0123680178, -0.0022907916, -0.00230395701, -0.0244652033, -0.00100903912, -0.0142487986, -0.00602226146, -0.011495335, -0.00431451201, -0.0121799391, -0.0320184194, 0.00686861342, -0.00797451288, -0.0176793449, 0.000389321736, -0.0204929933, -0.00136638759, -0.00186291384, -0.0144143077, -0.00428065797, 0.0229906701, -0.00906536542, 0.0165809672, 0.00826791488, 0.0193645246, -0.00201431685, 0.00618777052, -0.0221179873, -0.0127140814, -0.00937381387, 0.00263497466, 0.00101562194, -0.0106978836, -0.00307319663, -0.0260601062, -0.0138124572, -0.00647364929, -0.0320786051, -0.0324698091, 0.0198159106, 0.0160693955, 0.0288135689, 0.0134212552, -0.00766230281, -0.00674824324, -0.0149634955, 0.00230583781, -0.00654135738, 0.00910298154, -0.00343994889, 0.00789175835, 0.019048553, 0.00458534481, -0.00668429676, -0.0147453249, -0.0183263328, 0.0224038661, -0.0101712653, -0.024194371, -0.0110364249, 0.00576271396, -0.0155427763, -0.0273992214, 0.0117135057, 0.00470195338, 0.0155427763, 0.00318980496, 0.0032857249, 0.00204817089, 0.0120294774, -0.00118019024, 0.0668053478, -0.00158549857, 0.0209293347, -0.0375855342, -0.0219073407, -0.0243147407, -0.00453644432, 0.0415276513, 0.00120840198, -0.0107731149, 0.00169834553, -0.0136845643, -0.0318378657, 0.0232314095, 0.0103593431, -0.0065902574, -0.0154825915, -0.0138876885, -0.0143089835, -0.00203500525, 0.00148393644, -0.0187476277, 0.0175138358, -0.0276700538, 0.00647741091, -0.0122250784, -0.0108934855, -0.0142713683, -0.00765477959, -0.00869673304, 0.00795946643, 0.0218020156, -0.00420918828, -0.020839056, -0.0175439268, 0.000580221, 0.0109235775, -0.0179501772, 0.012503434, -0.00955436844, 0.0221932195, 0.00786166545, -0.0159640722, -0.00114915741, 0.000832715887, 0.0160693955, -0.00451387512, -0.00826039165, 0.00317287794, -0.0126162805, -0.00948666, -0.0227800235, -0.000946033, 0.00606363872, 0.00772624929, 0.0028362181, 0.0237429831, 0.00147735374, 0.00826791488, 0.00609749276, -0.00522481045, 0.0107279764, -0.00583042204, 0.00806479, -0.00751560181, -0.0401133038, 0.00700026797, 0.00917069, 0.00470947614, 0.00420166552, 0.00337036, -0.00870425534, -0.000498877256, -0.0166110601, -5.22210685e-05, -0.0107881613, -0.0411966331, 0.0072485311, 0.00521352561, -0.00209330954, -0.0181307308, 0.0229906701, -0.0074704634, -0.00502920896, -0.0174987894, -0.0145873399, -0.0123379249, 0.00190146989, 0.00160900841, 0.0250520073, -0.0122025087, 0.00440102816, -0.0238483064, 0.0176793449, 0.0156180076, 0.0142187066, -0.0204779468, 0.0023735459, 0.013902735, 0.0187325813, 0.00215537543, 0.00781652704, -0.024224462, -0.0165358298, 0.00156763115, 0.0393609889, 0.0062780478, 0.0181909166, 0.00370325823, 0.0129172057, -0.0118338754, 0.015467545, 0.00219487166, 0.0165960137, 0.0135341017, 0.00466057612, -0.0133610703, -0.0124282027, 0.00780148059, -0.0171226319, -0.00750807906, -0.00431451201, -0.0092383977, 0.0103743896, 0.0167314298, -0.0145196319, 0.0119542461, 0.00233216886, -0.003524584, -0.00623667054, -5.95678684e-05, -0.000364636478, -0.0041001034, 0.00837323815, 0.0251272377, 0.00191651611, 0.0120219542, -0.000647929148, 0.0221029408, 0.00568748266, 0.0107204532, -0.0027402984, 0.0117360754, 0.00879453309, -0.0134663936, -0.0111492714, 0.0117360754, -0.00764725683, 0.00254657795, 0.0312661082, 0.00620657811, 0.00192968163, 0.00879453309, -0.01468514, 0.0166110601, 0.00595831499, -0.0337036, -0.0290844012, 0.0233668257, 0.0223286357, 0.0089750886, -0.00576271396, 0.000441278302, -0.00306755421, 0.00918573607, 0.00139648013, 0.0258344114, -0.0347267464, 0.0171376783, 0.00264625927, 0.00835066848, 0.0296712052, -0.00997566432, 0.00292085321, 0.0108934855, 0.0144143077, -0.0156330541, -0.0455901362, -0.00390450191, -0.0254131164, -0.00791432802, 0.014880741, 0.0173483267, 0.0447174571, -0.00151873089, -0.0120294774, 0.0157985631, -0.00118395186, 0.0218772478, 8.41061847e-05, -0.0135416249, 0.0237429831, 0.00502920896, -0.000816259068, 0.0012958583, -0.016475644, 0.021034658, -0.00747422455, -0.00286443, -0.000399195822, 0.0159339793, -0.00100433722, -0.0235473812, -0.0249316357, -0.0175439268, 0.0283922739, 0.0156330541, 0.0120294774, 0.00403991807, 0.00393835595, 0.00407377211]
03 Oct, 2022
Angular PrimeNG Form Calendar Touch UI Component 03 Oct, 2022 Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will be seeing Angular PrimeNG Form Calendar Touch UI Component. The Calendar Component is used to input the user’s date and time. The Calendar Touch UI mode is optimized for touch devices and can be enabled by setting the touchUI property to true. In this mode, the calendar overlay will be displayed in the center of the screen. At the same time, set the readonlyInput property to true to prevent the opening of the keyboard on touch devices. Angular PrimeNG Form Calendar Touch UI Properties: touchUI: This property is used to enable the touchUI mode of the calendar component. readonlyInput: This property is used to disable the manual entering of the date by the user. Syntax: <p-calendar [(ngModel)]="..." [touchUI]="true" [readonlyInput]="true"> </p-calendar> Creating Angular Application and Installing the Module: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Finally, Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: The project Structure will look like this after following the above steps: Project Structure Example 1: In this example, we set the touchUI property of the calendar to true to display it as an overlay in the center of the screen. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4> Angular PrimeNG Form Calendar Touch UI Component </h4> <p-calendar placeholder="Select the Date" [touchUI]="true" [readonlyInput]="true" [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Example 2: In this example, we set the timeOnly property of the calendar to true, so when the calendar overlay appears it shows us the options to pick hour and minute only. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>Angular PrimeNG Form Calendar Touch UI Component</h4> <p-calendar placeholder="Select the Date" [touchUI]="true" [readonlyInput]="true" [timeOnly]="true" [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Reference: http://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-touch-ui-component?ref=asr10
Languages
Angular PrimeNG Form Calendar Touch UI Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0477406159, -0.00501610897, -0.0089414129, 0.00607904606, 0.051180236, 0.0292208251, -0.024730213, 0.0285201613, 0.0118555333, 0.0033520346, 0.026051918, 0.0233766604, 0.0137584703, -0.065671213, -0.00461402396, -0.0150483269, -0.0485686734, 0.00472947396, -0.0162426382, 0.00559734041, -0.00605516, 0.026051918, -0.0331540927, 0.00414426159, -0.0113698468, 0.043759577, 0.0263226293, -0.000978838, -0.00385364564, 0.0148970475, 0.00278075552, 0.00843980256, 0.0284564663, -0.00393127603, -0.0738243833, -0.0219434854, 0.0147855785, 0.0276761819, -0.000438660703, -0.0056769615, -0.00263942871, 0.00640151044, 0.027150685, 0.0179305989, -0.0381542742, -0.0205421597, -0.0102392314, -0.0203192215, -0.0105816014, 0.0239658542, 0.039937783, 0.0201918297, 0.0546517, 0.0507662073, 0.00103706063, 0.044332847, -0.00118435908, 0.0106214117, 0.00805762224, 0.0128985662, 0.0265296418, -0.0334725752, -0.0218957141, -0.0196344834, 0.0387275442, 0.0387593955, -0.0123252962, 0.0250964686, 0.0103268148, 0.0148492744, -0.0173414052, 0.00127990393, -0.00227516377, -0.0152394166, -0.0197937246, -0.0199211184, 0.00434331317, 0.00992074888, -0.0260678418, 0.0276761819, -0.0155101269, 0.0203829184, -0.0373899154, 0.0188701246, 0.0139256734, 0.00783866551, 0.0463074446, -0.0540465824, 0.012102358, 0.0165929701, 0.0426130407, -2.28132176e-05, -0.000534454477, -0.0180739164, 0.0295393076, 0.0203032978, 0.0422627069, 0.0178828258, -0.0511165373, -0.0150722126, -0.00404473534, 0.000101516489, -0.00599942543, -0.0344280228, 0.0167044383, 0.00344359851, 0.0352879278, -0.00932359323, 0.0348102041, -0.0344598703, 0.0071658697, -0.0235518254, 0.0284564663, -0.0113857714, -0.0868821889, 0.039077878, -0.0106691839, -0.0271029118, 0.0147457682, -0.0108841602, -0.0180102196, -0.00123810302, 0.0127552487, 0.0467214696, -0.0295393076, 0.0371351317, -0.00166108843, 0.00273298309, 0.0407976843, -0.0380905792, 0.00956245512, 0.019140834, -0.00380985416, 0.0185834896, 0.0435684882, 0.0440780632, 0.017006997, -0.00192085118, -0.0441099107, 0.0161550548, 0.0067558228, -0.0167681351, 0.0135992281, -0.0319120064, -0.039077878, 0.00912454072, 0.00825667474, 0.0542695224, 0.0224530585, 0.0120625477, -0.0585053451, -0.060352549, 0.0148651991, 0.0139336362, 0.0349375978, -0.0422308594, 0.00577250635, -0.00422388222, -0.023169646, -0.0247461367, 0.0236951429, 0.0058919373, 0.0198414978, -0.0253990274, 0.0237906873, -0.014411361, 0.0130100353, -0.017006997, -0.0208924916, 0.0450335108, 0.0145626403, 0.0138699394, -0.0169114526, -0.017405102, -0.0329311527, 0.00881402, 0.0233925842, -0.00428757863, 0.00965003762, -0.0190930627, -0.0245709717, -0.00855127163, 0.0223734379, -0.00671999343, 0.0131852, -0.00826463662, 0.0251123924, 0.00623430684, -0.0346191153, 0.00488871569, 0.00304151373, 0.0290297344, 0.0274850912, 0.0371988267, 0.00335999671, -0.033663664, -0.0233129635, 0.017580267, -0.0132090868, 0.00486482959, -0.00527089555, -0.0334407277, -0.00523108477, 0.0182013102, 0.0216250028, 0.0251601655, -0.0128269074, -0.00584814604, 0.0244276542, -0.0140530672, -0.00574065791, -0.000429454551, 0.00751620112, -0.0097137345, 0.00078028359, 0.0187745783, 0.000248814933, -0.0215931553, 0.00762368925, -0.0176439639, -0.032517124, 0.0752894059, 0.0109080467, 0.0114415055, -0.0642698929, 0.00132966693, -0.0105417911, -0.0233925842, 0.0221027266, 0.00906084478, 0.00425174925, -0.00229506893, 0.00194573274, 0.00015849511, 0.0404155068, 0.00175265234, 0.0293800663, -0.011990889, 3.10707655e-05, 0.0634099841, 0.013025959, -0.0350012928, -0.0317527652, -0.00689914031, 0.0225486029, -0.0244117305, 0.018965669, 0.0682827756, 0.00947487261, 0.028185755, -0.0184401721, 0.006254212, -0.0363389216, 0.00705440063, -0.0213542916, -0.00062402786, -0.00497231726, 0.00359288743, 0.0221505, 0.0298418663, 0.0168159083, 0.0218957141, 0.00343762711, 0.0410524718, 0.0211472791, 0.00542217493, 0.0299692601, -0.0293482188, -0.00690312125, 0.0202236772, 0.0607665777, -0.0117997993, 0.0679006, 0.0138699394, -0.0319757052, -0.00278871763, -0.0467533208, -0.0210358091, 0.0352560803, 0.0416257419, 0.00381383509, -0.00750823924, 0.0354153216, -0.00911657885, 0.00906084478, -0.0347465053, 0.00890160259, 0.00978539325, -0.0378357917, 0.0325967446, -0.0139177116, -0.0191567596, -0.0258926768, 0.0293641426, 0.0300011076, 0.02686405, -0.00997648295, -0.0208128709, -0.0138699394, 0.00532264868, -0.024443578, -0.0211791266, -0.0116166715, 0.00671203155, -0.0116883302, 0.049173791, 0.0473265909, -0.0244117305, -0.0404473543, -0.0326126702, 0.0207332503, -0.0295393076, -0.0324693508, -0.0308450889, -0.00815316755, 0.0186631102, 0.00396312401, 0.0574543513, -0.0267844293, 0.010494018, -0.00851942319, -0.0252238624, -0.0203032978, 0.00545800431, 0.0423901, -0.0189975165, -0.0146104125, -0.0354471691, 0.0444920883, -0.0368166454, -0.0410843194, -0.014873161, -0.0171662401, 0.0128348693, 0.0189019721, 0.0017178182, 0.00928378291, -0.0474539809, 0.018503869, 0.0162346754, -0.0213065203, 0.00305345678, 0.0117759127, -0.0105338283, 0.0155180888, -0.0307654683, 0.0137823559, -0.00368445134, 0.0259722974, 0.0134559115, 0.00154165726, 0.0100640664, 0.0599385202, -0.0137266219, 0.0279309675, -0.00931563, 0.0125960065, -0.0459889621, -0.0294278394, -0.00131672854, 0.00144014077, -0.0297144745, 0.000582226901, 0.0615946315, 0.032517124, -0.0309724826, -0.00808549, 0.0431226119, -0.0253671799, -0.0249213036, -0.0259563737, -0.0116644436, -0.0193319246, 0.0134638734, -0.0457978696, -0.0115370508, 0.00985705201, 0.0141088013, 0.0210676566, -0.010661222, -0.0812768862, 0.0618812665, 0.0157251041, 0.0410206243, 0.024555048, 0.0217683204, 0.0151518341, -0.0176280402, -0.00535449712, -0.0252716336, -0.0067558228, 0.0513394773, 0.00658065733, -0.033313334, 0.0128189446, -0.0318960845, 0.0197618771, 0.00286037638, 0.0504158773, -0.00710217329, 0.0194593184, 0.0118794199, 0.0139177116, -0.024555048, 0.0116166715, -0.00313506811, -0.0373262204, 0.015796762, 0.0507025085, 0.00405070698, 0.0359248929, 0.0165611207, -0.0501610897, -0.0184083227, 0.0190134421, 0.023058176, 0.0035709918, 0.0305743776, -0.008415916, -0.0102073839, 0.044046212, 0.0277558025, -0.0539510362, 0.00203431072, 0.00314900163, 0.00460606208, -0.0456704758, 0.0197778, 0.0123332581, 0.019252304, -0.00500416569, -0.00380587322, 0.0165292732, -0.0177713577, 0.0363707691, 0.00278672716, 0.0164496526, 0.0220071822, 0.0217205472, -0.0177395083, -0.0285360869, 0.0131374281, 0.023169646, -0.0529955886, -0.0461482033, 0.00884586852, -0.0540465824, -0.0131135415, -0.00773913926, 0.0305425301, 0.00244833878, -0.0182968546, -0.0234085079, -0.00917231385, 0.00429156, 0.00292009185, 0.0189338215, 0.017293632, -0.0154543929, -0.00968188606, 0.0167203639, 0.0461163521, -0.0109080467, -0.0143078538, 0.00785458926, -0.0334725752, -0.0150483269, 0.0126358168, 0.0060870084, 0.0344917215, 0.0142600806, 0.0296189282, 0.0276602581, 0.0110513633, 0.0098889, -0.020462539, -0.0182650052, -0.000440900039, -0.0012580083, -0.00678767124, 0.051180236, 0.0051196157, 0.0344598703, -0.0112106055, 0.00772719644, -0.0311954208, 0.00271108747, -0.0419760719, -0.017405102, 0.0308769364, 0.0242843367, 0.0210517328, -0.0380268842, 0.0040128869, -0.000784762262, -0.0311476476, 0.00676776608, 0.0019079129, 0.00549383368, 0.000604122644, 0.0235359017, 0.0315935239, -0.0168477558, 0.0395556, 0.034300629, -0.00632985169, 0.0105099427, -0.0031012292, 0.010836388, 0.00710217329, 0.0109000839, 0.0014252119, 0.011417619, 0.0381861255, 0.00992074888, -0.0130418828, -0.0134001765, 0.0375491567, -0.00799790677, -0.0306380745, 0.0212905947, 0.0164496526, -0.00915638916, -0.00956245512, 0.00504795741, 0.0265933387, -0.005533644, -0.0304151364, 0.0175961908, -0.0108921221, -0.0192363802, -0.0134559115, 0.0182490814, 0.0378039442, -0.00637762435, -0.00308729568, -0.0125641581, -0.0189497452, -0.02789912, -0.0271825325, -0.0441099107, 0.01498463, -0.0262589324, -0.00560132181, -0.0114494674, -0.0110832117, -0.0191726834, -0.00339582609, 0.00182928739, 0.029921487, -0.00705838203, 0.0314979777, 0.0071698511, 0.00673591765, -0.0185516402, -0.0163222589, -0.037708398, -0.0119670024, -0.00796605833, -0.0118953437, 0.0292845219, -0.0232651904, 0.0476450734, 0.018854199, -0.0389823318, -0.0355745628, 0.00740075111, -0.00399298174, 0.00427165441, -0.00262748566, 0.0162107907, -0.0114096571, -0.0200485121, 0.0097694695, 0.0106771458, 0.0153349619, 0.0414028019, 0.00892548915, 0.019714104, -0.00202336302, 0.00251800707, 0.0139256734, 0.0174687989, -0.0130737312, 0.000516042172, -0.0135196075, 0.0261793118, -0.00239658542, -0.0316094495, -0.00490464, 0.0362752266, 0.0136231147, 0.0130020725, -0.0036545936, 0.0135116456, -0.00281061349, -0.0142600806, 0.0333451815, 0.0128109828, -0.0161709804, -0.000409549364, 0.0233766604, -0.0081332624, 0.0470081046, -0.0215135328, 0.00685534906, -0.0121103199, -0.0167840589, 0.0325808227, 0.00307734311, -0.0256219655, 0.0133683281, -0.0121342065, -0.00476530334, 0.0197300278, -0.0181376133, 0.0125243478, -0.00591184245, -0.000233139581, -0.0168477558, 0.00167800789, 0.0191567596, 0.0256856624, 0.00757591706, 0.00944302417, -0.0181057639, -0.0123730684, -0.0350649916, 0.000369739, -0.0198733453, 0.0054818904, -0.0354471691, -0.0121899405, -0.0163541082, 0.0301125776, 0.00578444917, -0.0100322179, 0.00466179661, 0.00317089749, 0.0369121917, 0.0274691675, 0.0147139197, -0.014697995, 0.0831240937, -0.0111150602, 0.0246346686, -0.0195548628, 0.0286316313, 0.0103427386, -0.0180739164, -0.0404473543, -0.0163541082, 0.025590118, 0.0183605514, 0.0156056723, -0.00746444799, 0.0262270831, 0.00122516474, -0.0201122072, -0.000430947461, -0.0067558228, 0.0177395083, 0.0157410279, -0.010318853, 0.0201918297, 0.00297781709, 0.0291412044, 0.0151359094, 0.00845572632, 0.0377720967, -0.00251203543, -0.0110513633, -0.00757591706, -0.00622236356, -0.0218001679, -0.029746322, -0.00280265138, 0.0103905117, -0.00490862085, 0.0100003695, -0.017293632, 0.0156375207, 0.0306380745, 0.00075938314, 0.0231855698, -0.00337393046, -0.0463711396, 0.00747639081, -1.6468437e-05, 0.0178350545, 0.0252716336, -0.0309406333, 0.0148094641, -0.0170388464, -0.00299374107, -0.0359248929, -0.00842387788, -0.0109239705, 0.0244117305, -0.0171025433, -0.0268958975, -0.0193478484, -0.0256697387, 0.00721364236, -0.0113778086, 0.0264818706, 0.00180739164, 0.0152712651, -0.037995033, 0.00493648835, 0.00770729128, -0.012508424, -0.0018949745, 0.0358611979, -0.025765283, 0.0134559115, -0.0118634952, 0.00347146578, -0.0160276629, 0.00708624907, 0.00130677596, -0.00166905054, 0.0117759127, 0.016656667, -0.0461163521, 0.0160993207, 0.00173374242, -0.0264659468, -0.0286634788, 0.00294198771, -0.0186153371, 0.0150642507, 0.0188223515, -0.0120386612, -0.00642539654, -0.0196663309, -0.00397307659, 0.0239021573, -3.44297659e-05, 0.0157569516, -0.000914643693, -0.00264141918, -0.00416416675, -0.00443885848, 0.0210995059, -0.00354113407, -0.00757193565, -0.00807354692, -0.00203829189, -0.00494046928, -0.00212189369, -0.0101357251, 0.0199529659, -0.0201440565, 0.00558539759, -0.0144033981, 0.000652890361, 0.0326126702, 0.00770729128, 0.00421193894, 0.00461004302, 0.00541023165, -0.048887156, 0.0245072749, -0.00361080212, 0.0239658542, -0.0158126857, -0.00932359323, 0.0193319246, 0.0112265293, -0.003429665, 0.0114892777, 0.0558937863, 0.0174210258, -0.00312113436, -0.0180420671, -0.0206058566, -0.00742463721, 4.30449836e-05, -0.0142600806, 0.00572075276, -0.0199848153, -0.0208447184, -0.0223256648, 0.00509971054, -0.0146183744, 2.62966278e-05, -0.0129941106, 0.0252238624, 0.0215135328, 0.0204147678, 0.0135753425, 0.0177554339, 0.0134081384, 0.0137425456, -0.0490463972, -0.00673591765, -0.0101357251, 0.0157171413, -0.0586645864, -0.0287271757, -0.00301165576, 0.00977743138, 0.00765553769, -0.00363866938, 0.0006852363, -0.00963411387, 0.00458615692, -0.0176280402, -0.0107647292, -0.00305544725, 0.00494843116, -0.0141565744, 0.00646520685, 0.0108523117, -0.014586526, 0.0348739, 0.018503869, -0.0393963605, 0.00591582386, 0.0220708791, -0.0150722126, -0.00572871463, 0.00138241576, -0.0300011076, 0.0199211184, 0.00282852817, 0.0172777083, -0.00239260425, -0.00113957236, 0.0111389467, -0.0375173092, -0.0326763652, 0.0326126702, 0.0114892777, 0.0013445958, 0.00183724938, 0.0244595017, 0.0286316313, 0.00979335513, -0.00486084819, 0.0248576067, -0.00311914389, -0.0391734205, 0.0133444425, 0.0186949577, -0.00934747886, 0.0015794771, 0.0203510709, 0.00518331258, 0.048887156, 0.02743732, 0.0114016952, 0.0280424375, -0.0180579927, 0.0220071822, -0.00414824253, 0.0299533363, 0.0165770464, -0.00702255266, -0.00552568166, -0.0259086, 0.0235677492, 0.00929970667, -0.00487677241, 0.00429554097, -0.0124049168, -0.0275010169, -0.0140530672, -0.00547790946, -0.0276284087, -0.0100799901, 0.018503869, 0.0233607348, 0.000180888455, -0.0144272847, -0.0247620605, -0.00909269229, 0.00520321773, -0.0142919291, 0.0251123924, -0.00349137094, -0.0323738083, -0.00037645697, -0.0176598877, 0.00298179802, -0.0100640664, -0.0298896395, -0.00416814769, -0.0195548628, -0.00169293676, -0.0100959148, -0.000362772174, -0.0323578827, 0.00985705201, 0.043982517, -0.00281658489, -0.00857515726, -0.0261156149, 0.024841683, 0.0101834973, 0.0209721122, 0.0136549631, -0.0170388464, 0.00367848, -0.0311158, 0.00559734041, 0.00707430579, -0.0179465227, 0.0187108833, 0.00134658639, 0.0468170159, -0.024156943, -0.0174210258, -0.00302957045, -0.0187586546, -0.0682827756, 0.0421353132, 0.013662925, -0.0328674577, -0.0207969472, 0.0206058566, -0.00042621998, 0.0103586633, -0.00793022942, -0.00782274082, 0.00165511691, 0.0246028192, -0.0156056723, 0.0112504158, -0.00977743138, 0.0443965457, 0.0176121164, 0.00966596231, -0.0376128554, 0.00282255653, -0.00221146713, 0.0127234, -0.0399696305, -0.000925591507, 0.024156943, -0.00957041699, -0.0135514559, -0.01371866, 0.0120386612, -0.0321508683, 0.0127632106, 0.0168159083, -0.00931563, -0.00565307494, 0.0120625477, -0.0325012021, 0.027150685, 0.0100083314, 0.00875828508, -0.0419442244, -0.0338547528, -0.00343364594, 0.00682748156, 0.0349694453, -0.0402562656, -0.0325012021, -0.0234562811, 0.00639752951, 0.0294437632, 0.00276284083, -0.00359885907, 0.00437914254, 0.043409247, -0.0206058566, 0.0209402647, -0.0205899328, 0.0311158, -0.0003249523, 0.0178191289, 0.0215294585, 0.00670805061, -0.0124447271, -0.0135036837, -0.0355745628, 0.0195230152, 0.00310919131, 0.014355626, -0.0259245243, 0.0274054706, -0.0217046235, -0.00575658213, -0.0363389216, -0.00793819129, 0.0182013102, 0.0147298435, -0.000885283516, -0.00974558294, -0.0421034656, -0.00376606267, -0.00871847477, 0.0633462891, -0.000777297828, -0.0157171413, -0.00670008827, -0.0202236772, -0.0201281328, 0.00248217769, 0.0255582687, -0.00452644099, 0.0219434854, 0.0185516402, 0.0200803597, -0.010143687, -0.00577648729, -0.0223575141, -0.000282653753, -0.0154623548, -0.00812131912, 0.0325648971, 0.00462198583, -0.00669610733, 0.0175643433, -0.0050599, -0.00754008768, 0.0141486116, 0.0304469857, 0.0147935404, -0.00530274352, 0.0113379983, 0.0215453822, -0.00925989635, -0.0218160935, -0.000525497133, 0.00507980539, -0.00430748379, 0.0108523117, 0.0239021573, 0.00596359605, 0.0104701323, -0.0115211261, -0.0167044383, -0.0291889757, 0.00681951968, -0.0036804704, -0.00286435732, -0.0169910733, -0.000200171606, -0.00792624801, -0.00390141807, -0.00727733877, -0.00995259732, 0.033663664, 0.0285520107, -0.0209243391, -0.0159480423, -0.00572871463, 0.0207014009, -0.0239021573, -0.0163541082, -0.00377402478, -0.015796762, 0.00151578058, 0.000567795651, -0.0364344679, -0.00460606208, -0.0222938173, -0.0287112519, -0.0165929701, -0.0139973322, 0.000858411484, 0.0131852, -0.0152075682, -0.0097137345, 0.0164815, -0.0279787406, -0.0145626403, 0.0139814084, -0.0118077612, 0.0130976178, -0.0206377059, 0.023870308, -0.0241091717, 0.0118873818, 0.0235677492, 0.0190134421, -0.00698274188, 0.014411361, 0.0451609045, -0.0155340135, -0.0326763652, -0.00868662633, -0.013487759, 0.00152274733, -0.0349694453, -0.00956245512, 0.00356900133, -0.0353834741, -0.0192045309, 0.00382776884, 0.00150781847, -0.0469125621, 0.0807673186, -0.0125163859, 0.00428757863, -0.0298896395, 0.00998444576, -0.0304629095, -0.000485437922, 0.00935544167, 0.014355626, -0.0304310601, 0.0389186367, -0.00811335724, -0.0177872814, 0.000909667346, -0.00863089226, -0.016656667, -0.00465781521, 0.0253671799, 0.0193478484, -0.0341413878, 0.017006997, 0.0123969549, 0.0130578075, 0.0309884064, -0.0148333507, -0.0201122072, 0.00787051395, 0.00638160529, -0.0127552487, -0.0109080467, -0.00306340936, 5.27176635e-05, 0.00790634286, 0.00377800572, 0.0144511713, 0.0109558189, -0.00872643664, -0.0109398942, -0.0235518254, -0.00624625, 0.0157489888, 0.00032345939, -0.0265774149, -0.0199688915, 0.0224530585, 0.00928378291, -0.0069986661, -0.0152951507, -0.00297781709, 0.0218638647, 0.00344558898, -0.00135952479, -0.00728928205, 0.00746444799, -0.0173254814, 0.0167681351, -0.0263544768, -0.012795059, 0.00642539654, -0.0300966538, -0.0127234, -0.0080815088, -0.00650501763, -0.0354471691, 0.0183446277, 0.0113459602, -0.00461004302, 0.010836388, 0.00139236834, 0.0162744857, 0.0359567441, 0.00366852735, 0.0166248176, -0.00438312395, -0.00416814769, 0.00849553663, 0.0194593184, 0.016370032, 0.0179624464, -0.0176121164, -0.0124208415, -0.00321468874, -0.0217205472, 0.0187745783, -0.00571677182, 0.000499869173, -0.0158604588, -0.0342050865, 0.0138062425, 0.00901307166, -0.00515942648, -0.00430350285, -0.027612485, 0.0036287168, 0.00515544508, 0.000549383345, 0.0169273764, -0.0023229362, -0.00583620276, -0.00236672768, 0.0332814828, 0.0296826251, 0.00798596349, 0.0102073839, 0.0178350545, -0.0027986702, 0.0418486781, 0.011759989, -0.0294119138, 0.0160037763, 0.0424538, 0.00576852541, -0.0130100353, -0.0256219655, 0.0118953437, 0.00561724557, 0.0149607435, 0.0068075764, 0.024156943, 0.00961022731, -0.0293482188, -0.00578843057, 0.025478648, 0.0254945718, 0.0212428235, 0.000874335645, -0.0107567664, 0.0136788497, -0.0018979602, 0.0232970398, 0.000901705294, 0.0227396935, -0.0080775274, -0.00385762658, -0.0222460441, 0.0196026359, -0.0348420516, 0.0402562656, -0.0160595104, 0.00386956963, -0.00932359323, 0.0115688983, 0.0110354396, -0.0123014096, -0.00900511, -0.00773117738, -0.0257015862, 0.0157888, 0.0163541082, 0.0148890847, -0.0135355322, 0.0229148585, -0.00459013786, 0.00610293262, 0.00915638916, -0.015446431, 0.00482501881, -0.0145546775, -0.00202933443, -0.00132170494, 0.00348141836, 0.0250009242, 0.00774312066, 0.00176459551, -0.0177395083, -0.00658463826, 0.00715392688, -0.0249690749, -0.0180898402, -0.0103108902, 0.00280464184, -0.0103108902, -0.022309741, -0.000830544217, 0.00392132346, -0.0178509783, 0.0368166454, -0.0218797885, 0.0119670024, 0.022421211, -0.0288067963, 0.00596359605, -0.0233448111, -0.00737288408, -0.00154364784, -0.00244236737, -0.00353516242, -0.0181376133, 0.00450653583, 0.000845970761, -0.00347146578, 0.00687923515, 0.0102471942, 0.00871051289, 0.0293959901, 0.0107010324, -0.0266729593, -0.0225486029, 0.00527487649, 0.00595165323, 0.000907179201, -0.011704254, 0.011990889, 0.0232333429, 0.00227914471, -0.000155509333, -0.00240056636, -0.0107488045, 0.0139177116, -0.00337393046, 0.00150284218, 0.0136390394, 0.0132409353, -0.00144312659, -0.0172299352, -0.0257015862, 0.00948283449, -0.0151120229, -0.0137584703, -0.0191567596, -0.0264977943, -0.00583620276, -0.0157888, 0.00219355244, 0.00945098605, 0.00902103353, 0.0144750569, -0.00129781861, -0.0257015862, 0.00204426353, -0.0350012928, 0.0189338215, 0.00875032321, -0.0170547701, -0.00530672492, -0.00577648729, 0.00376606267, -0.02904566, -0.0275487881, 0.013543494, 0.00463392911, 0.00832037069, -0.00845572632, 0.00873439945, -0.0199848153, -0.000198181093, 0.0399696305, -0.0104064355, -0.00788245723, 0.0100481417, -0.0126517415, 0.0171662401, 0.000556847779, -0.00718577486, 0.0149607435, -0.0141963847, -0.00566501822, 0.0132887075, 0.0130896559, -0.00448264973, 0.0215294585, 0.0128030209, 0.00533459196, -0.0144272847, -0.0266092643, -0.0244754273, -0.0127154384, -0.0274532437, -0.0289660376, -0.000590686628, -0.0395556, 0.00944302417, -0.0165292732, -0.00975354481, 0.016370032, -0.00196066173, 0.0233766604, 0.0138858631, 0.0157489888, -0.0164337289, -0.0217046235, 0.0143476641, 0.00848757476, 0.032230489, -0.00622236356, 0.0336318165, -0.00708624907, 0.0105258664, 0.0394600555, -0.00555753, 0.0216568504, 0.00277876505, -0.000845970761, 0.0144272847, 0.0129065281, 0.0162107907, 0.0131613147, 0.0107647292, 0.00103208434, -0.00549781462, 0.0222778935, -0.00480511365, 0.0140849156, 0.0244754273, -0.00430748379, 0.00837610569, 0.038568303, -0.0100322179, 0.00744056143, -0.0100720283, -0.0132409353, -0.0138380909, 0.00910861697, -0.00863089226, -0.0114096571, -0.0339821465, 0.0150960991, -0.0139256734, -0.00430748379, -0.0195230152, -0.0187586546, 0.00880605821, -0.0161232073, 0.00703051453, -0.0124447271, 0.00631392747, -0.0203192215, -0.0140928775, -0.00633383263, 0.0161630176, -0.00749629596, -0.0209402647, -0.0122377137, 0.0125960065, -0.0189497452, 0.0176121164, -0.0202714503, -0.00721762329, -0.0111946808, 0.011871458, -0.0194752421, 0.0435684882, -0.0193796977, 0.00843980256, -0.00590388058, -0.0207969472, -0.0285679344, -0.0122695612, -0.0297781695, -0.0133046322, -0.0108761983, -0.0145148672, 0.0100401798, 0.0127552487, 0.0236792192, 0.030208122, 0.0222460441, 0.00565705635, 0.0094350623, 0.0123412199, -0.000990283443, 0.0178828258, -0.000884288223, 0.029746322, 0.0102233076, -0.0148651991, -0.0172777083, -0.0163541082, 0.00800188817, 0.0373899154, -0.0358930454, -0.00621838262, 0.00949079636, 0.030956557, 0.0293163694, 0.0115052024, 0.0040646405, 0.00462596724, 0.0100162933, -0.00545800431, -0.0240136255, -0.00653686561, 0.000901705294, -0.00615070481, -0.00191388442, -0.00312909647, 0.00031052102, 0.0110195158, -0.0226282254, 0.0168477558, 0.0378357917, 0.0201281328, 0.00387753174, 0.00645326404, -0.0292526726, -0.00433933223, -0.0165133495, -0.000223684619, -0.0118634952, -0.00926785823, 0.0235836748, 0.0226123, 0.00523108477, 0.00433933223, 0.0111230221, 0.000413530419, 0.00177156227, -0.0227556173, 0.00778691191, 0.000968885317, 0.00393525697, -0.0105417911, -0.00646122592, -0.0170706939, 0.00745648565, 0.00514350226, -0.0033201864, 0.02893419, 0.0130418828, 0.0266251881, 0.00472549303, 0.0201918297, -0.00164018804, -0.00453838427, 0.0221027266, -0.00560928369, 0.0104223592, -0.018965669, 0.00463791, -0.01314539, -0.0165292732, -0.00109179993, -0.005649094, -0.00314900163, -0.0250486955, -0.0188860483, -0.0148811229, -0.0114813158, -0.00235080346, 0.00234284136, -0.00665231608, 0.00795013458, -0.00505193835, -0.00237070862, 0.0206854772, -0.00965003762, -0.00374217657, 0.0264340974, 0.0106373355, -0.00137743948, 0.00767544284, 0.0127791343, -0.0142521188, 0.020000739, 0.00459809974, -0.000457819464, -0.00320473616, -0.0351923816, -0.00132270018, -0.00689515937, 0.0165292732, 0.00218957127, 0.00419601472, -0.0132090868, 0.0123332581, 0.0318801589, 0.0116883302, -0.00224928698, 0.00970577262, 0.0221664235, -1.87077731e-05, -0.0288386457, -0.0110752499, -0.00859108195, 0.00535051618, 0.00687923515, 0.00052599475, 0.00298776967, -0.00188900286, -0.0025160166, 0.00345355109, -0.00890160259, 0.0180261433, 0.000222440547, 0.0240136255, 0.0418486781, 0.00670805061, -0.00191388442, 0.0122695612, 0.00451449817, 0.0204943884, -0.00134360057, -0.0080297552, 0.0140291806, 0.00367051782, -0.00770331, 0.00139833987, -0.00142023561, -0.011417619, -0.00836018194, 0.0103586633, -0.00188502192, -0.010780653, -0.00994463451, -0.00984112825, 0.0222301204, -0.00600340636, 0.0102471942, -0.00382378767, 0.0100003695, 0.0127870962, -0.0348420516, 0.00178450067, 0.030032957, 0.0105895633, -0.0228989348, -0.0232651904, -0.00871847477, 0.00555753, 0.00364862196, 0.0159480423, 0.00281459442, 0.000280663226, -0.0212587472, -0.00408454565, -0.00288227201, 0.00735297846, 0.00414028, -0.0209721122, 0.000888766896, -0.0207969472, 8.14246814e-05, -0.00361876423, -0.0195707865, -0.0257015862, 0.000217215435, -3.79131743e-05, 0.00566103728, 0.00928378291, 0.0319916271, -0.00156852929, 0.0133603662, -0.00964207575, 0.00173473766, -0.013025959, -0.0199529659, 0.012102358, -0.00190990337, -0.00533061102, -0.0148572372, -0.0311954208, -0.015040365, -0.00285241427, 0.0115131643, 0.0118077612, 0.0231059492, -0.0102870045, -0.0178350545, -0.016083397, 0.0120545859, -0.00429554097, -0.00621838262, 0.0179624464, -0.00350132352, 0.0040168683, 0.0297144745, 0.00215175143, 0.0101675736, 0.0111309849, -0.0114415055, -0.0104701323, 0.0254627243, 0.0148890847, 0.028185755, 0.0152075682, 0.0152155301, 0.00308729568, 0.00464985333, -0.0236155223, -0.00830444694, -0.0100799901, -0.0152394166, 0.015104061, -0.00489667756, 0.0171821639, 0.0237429161, 0.00168995094, 0.0357338041, -0.0105338283, 0.0126676653, 0.0120068127, 0.00518729351, -0.0158206485, -0.00480511365, -0.0261474624, 0.00392928533, -0.0179146752, -0.00147796061, -0.000557345455, -0.0242047161, 0.00034908735, -0.0195548628, -0.00490464, -0.0125641581, -0.00854330882, -0.0195707865, -0.0108602736, -0.00175364758, -0.0514987186, 0.00316691631, -0.00984112825, -0.0371669792, 0.010263118, 0.000798695895, 0.0453519933, 0.00155658612, -0.0112265293, -0.00448663067, 0.000291611097, 0.0189975165, 0.00573667698, 0.0095226448, -0.0121819787, -0.00854330882, 0.00646918826, 0.00167502207, 0.00743658049, -0.00372227118, -0.0190930627, 0.00821686443, 0.00369639462, 0.00819297787, -0.00127990393, 0.00367051782, -0.00168198894, -0.00130478549, -0.0221186522, -0.00797402114, -0.00132568588, 0.00647715, 0.000348838512, 0.0199051946, -0.0120705096, -0.00718179392, 0.0110991364, -0.0255741924, -0.0132409353, 0.0178350545, 0.00708226813, -0.0107249189, 0.00418805284, 0.0179465227, 0.0121342065, -0.00233288878, 0.000535449712, -0.0163063351, -0.0150324022, -7.94341686e-05, -0.0260837656, 0.00303355162, 0.0198574215, -0.00895733759, 0.00194573274, 0.00658065733, 0.0262589324, -0.00638956716, -0.00521914195, 0.0159878526, -0.00708226813, 0.00586008932, -0.00452644099, -0.0149448197, -0.00165312632, 0.000493897649, 0.0138062425, 0.0152951507, -0.00342568383, 0.00694293156, -0.0129781868, -0.00129085185, -0.0110513633, 0.00590786152, -0.0189178959, 0.000192707157, 0.0247620605, -0.00640947232, 0.0257971324, -0.00622236356, 0.000730022963, 0.0158923063, 0.0160117373, 0.00195668056, -0.00734501658, -0.0205262359, 0.0249690749, -0.0129861487, 0.000249188161, 0.0143397022, 0.00272900215, 0.00465383427, 0.0135196075, 0.0154225444, -0.034013994, 0.0047613224, 0.0207650978, 0.00651297951, -0.00486881053, 0.0149925919, -0.00560132181, 0.00608302746, -0.00685534906, -0.00209601689, -0.00466975849, 0.0105577148, -0.00213184627, -0.0113618849, 0.00112961978, 0.0142760053, -0.00542615587, 0.0112026436, -0.000183127791, 0.000811634294, -0.00806558505, 0.00246227253, -0.00641743466, 0.00315696374, 0.00912454072, -0.0243002605, 0.00422786316, 0.000150284221, -0.0120227374, 0.0219275616, 0.000779288355, -0.010318853, -9.15949931e-06, -0.00359288743, 0.00427563582, 0.00451449817, 0.012221789, 0.0019367754, 0.0153508857, -0.00506786257, 0.00383573095, 0.00375611, 0.00871051289, -0.00165412168, -0.00314303022, -0.0130339209, 0.00516340742, 0.032803759, -0.0235518254, 0.00934747886, 0.0163541082, -0.0037063472, 0.00355506758, 0.00347146578, 0.00885383, 0.0013445958, 0.0105338283, -0.0101914592, 0.0154782785, -0.0101118386, 0.00876624789, -0.00925989635, 0.00114653923, -0.0148015022, 0.00651297951, 0.00354113407, -0.00937136542, -0.0129861487, -0.0167999845, -0.00489269663, 0.0165133495, -0.00433535129, -0.00779089285, 0.0236314461, 0.00185118301, -0.0016600932, -0.00523506617, -0.0101118386, 0.0206536297, -0.0101755355, 0.00505591929, 0.010549753, 0.00494046928, 0.00788245723, 0.0253831036, 0.0195230152, -0.00314103952, -0.0183605514, -0.015446431, 0.031641297, 0.0268003531, -0.00328236655, 0.0317527652, 0.00125502248, 0.0122138271, 0.0117440643, 0.00389743689, -0.018503869, 0.00728928205, -0.00424378738, -0.0206854772, -0.0267844293, 0.00496833632, -0.000137345836, -0.0073330733, 0.00459809974, 0.00131871912, 0.00286236685, 0.0123889931, 0.00423980644, -0.00761970831, -0.00531070586, -0.00321867, -0.00458217552, 0.000201415678, -0.0101277623, 0.000489667756, -0.00791828614, -0.00277478411, -0.0162267145, 0.0206217803, 0.000496634573, 0.011584823, 0.0150642507, 0.00126995135, -0.0162426382, -0.0151199857, 0.00697079906, -0.00773117738, -0.0126676653, -0.000711610715, 0.00443089614, 0.000659857178, -0.00653686561, 0.0155021651, 0.000175787747, 0.0163063351, 0.00970577262, -0.0165133495, 0.021561306, 0.00204227283, -0.0182331577, -0.0121342065, -0.0104064355, -0.000557843072, -0.025876753, 0.00833629537, -0.0129861487, 0.00359288743, 0.0184401721, -0.0168796051, 0.00960226543, -0.0147218816, 0.0223256648, 0.0126835899, -0.0199211184, -0.014236195, -0.00855923351, 0.00674387952, -0.0213383678, 0.0176121164, 0.00289620575, 0.0148572372, 0.00607904606, -0.0130020725, -0.0128746796, -0.00573667698, -0.00965003762, -0.00535449712, 0.0181694608, 0.028759025, -0.00113857712, 0.0331222415, -0.012795059, 0.000300319603, -0.0166407414, -0.0009201176, -0.00169791305, 0.0237429161, 0.000937534613, -0.0233288873, -0.00132568588, -0.00761174643, 0.00604321714, 0.00828852318, 0.00494046928, 0.0134081384, -0.00466179661, 0.0156852938, 0.0113300364, -0.0032963, -0.0268162768, 0.00184819731, 0.00246625347, 0.0223256648, 0.00855127163, -0.00671999343, 0.0215772297, -0.015621596, -0.00779487379, 0.0190930627, 0.0112663396, 0.00395516213, -0.00683942484, 0.00327042327, 0.014236195, -0.00938728917, 0.0385364555, 0.00820890162, 0.000264987902, 0.0180739164, -0.0284086931, -0.00394919049, -0.00494046928, -0.00922804791, -0.00938728917, 0.0110752499, -0.0127791343, 0.00600738777, 0.0102153458, 0.00864681602, 0.00795411598, 0.00785458926, 0.0119510787, 9.34922064e-05, -0.00412833737, 0.0354790166, 0.0112026436, -0.00244037691, 0.0143795125, 0.00455430849, -0.00165710738, 0.0175324958, 0.031068027, 0.00236871815, -0.00104999903, 0.00660852436, -0.00762368925, 0.00492454506, -0.022309741, 0.0108841602, 0.0063617, 0.00395516213, 0.0114255818, -0.00574463885, -0.00809743255, 0.00543809915, -0.0032943096, -0.00655279, -0.0011355913, 0.0109319324, -0.0102471942, 0.00795809645, -0.0177872814, 0.011759989, 0.0138858631, 0.00335999671, 0.0053425543, 0.012452689, 0.00317487842, 0.0255582687, 0.0113857714, 0.0281061344, -0.0153827341, 0.00786255207, 0.0239021573, -0.0116803674, -0.00809743255, -0.00354113407, 0.00313307764, 0.00873439945, -0.00267525809, -0.00713004032, 0.00856719539, -0.00955449324, -0.0102312695, -0.00013112546, 0.00662444858, 0.00757193565, -0.00320672686, -0.0236314461, -0.0144750569, -0.00409648893, -0.00460208068, 0.00533459196, -0.0033460632, 0.000514051644, -0.0103666252, 0.00573667698, -0.0017178182, 0.00159142027, -0.00424378738, -0.0225645285, 0.0101914592, 0.0340458453, 0.00205620658, -0.0152075682, 0.0173095576, 0.022994481, 0.000806658, 9.65401923e-05, -0.00384568353, 0.00438312395, -0.011011553, -0.00876624789, -0.000255532941, 0.0109398942, -0.0249531511, -0.00865477882, 0.00317686889, 0.0291730519, -0.0162983723, 0.00177355274, -0.0106532602, 0.00632189, -0.00201241509, -0.00103307958, -0.00529876258, -0.0110434014, -0.0033520346, 0.00160734437, 0.00919619948, -0.00544606103, -0.00595165323, 0.00458217552, -0.00784662738, 0.015852496, -0.016250601, -0.0258130562, 0.00483696209, -0.0104382839, 0.00331023382, 0.0031012292, -0.0143237775, -0.00517535023, 0.0215931553, -0.000317736674, 0.0226123, -0.0100799901, 0.00812131912, 0.0136470012, -0.00300170318, -0.00746046659, 0.00407459307, -0.0106214117, -0.01337629, -0.00116345857, -0.0129781868, -0.000449110928, 0.00927582, -0.0199051946, -0.0169114526, -0.00212189369, -0.000467772072, 0.0113698468, 0.00674786093, 0.021386141, -0.0222778935, -0.007579898, -0.00948283449, -0.00296388334, 0.00924397167, 0.0043990477, -0.00377800572, -0.00670008827, -0.0297622457, -0.0138221672, 0.0207650978, 0.0190771371, 0.0122854859, -0.00791430473, 0.000610094226, -0.0160595104, 0.0135514559, -0.00286833849, 0.0105816014, 0.00613478059, 0.00120426423, 0.0124845374, 0.00370833767, 0.00335402531, -0.00948283449, -0.00116544915, -0.00898918603, 0.0151757197, 0.00456227036, 0.025478648, -0.019252304, 0.0029599024, 0.00386359822, 0.000290864642, -0.0272143818, -0.00739677, 0.00358691602, -0.00972169638, 0.00515146414, 0.0236792192, -0.0147378054, 0.0200644359, 0.00492056413, -0.00275089778, -0.00366255571, 0.0101596108, 0.0023547844, -0.0157251041, -0.00883790571, -0.0115211261, 0.00482103787, 0.0103507005, 0.00809345208, 0.0116485199, 0.00999240763, 0.00166506949, -0.00168696523, 0.0193796977, 0.0255104974, -0.00443885848, 0.00374018587, 0.00597553933, -0.0172777083, -0.0244117305, 0.0119510787, 0.0368803442, 0.0113618849, -0.0019108986, -0.00736492174, 0.00770331, 0.0196822565, -0.00389146549, -0.00711013516, -0.00472947396, 0.0265614912, 0.00843184, -0.0133046322, -0.00549781462, -0.00422388222, 0.00859904382, -0.0159798898, 0.0179465227, 0.0321508683, -0.0108921221, -0.00309923873, 0.0162904114, -0.0149766682, -0.00790236238, 0.0248894542, -0.00376208173, 0.0016471548, 0.0107647292, -0.00158047245, -0.0130418828, -0.00632587075, -0.010374587, -0.0209084153, 0.00914046541, -0.0109398942, -0.00664435374, 0.00676378515, -0.00771525316, -0.00953856856, 0.000458317081, -0.00285838591, -0.0158923063, -0.00617459137, -0.0051235971, 0.0116087096, -0.00805364177, -2.59856097e-05, -0.0196185596, -0.00918027572, 0.0126835899, 0.0229307842, -0.00250208285, 0.00047772465, 0.00292805396, -0.0126835899, -0.0180579927, -0.0159560032, -0.0064214156, 0.00611487543, -0.00648113107, 0.00638160529, 0.0165929701, -0.0143237775, -0.0118953437, 0.0010937904, -0.00846368819, -0.0124128787, -0.000836018124, -0.00999240763, -0.0156375207, 0.00633383263, 0.0141167641, -0.0125482343, -0.0177235845, 0.0103984736, -0.0178828258, 0.00504795741, -0.00368445134, -0.00909269229, -0.0160197, 0.015852496, 0.0080257738, 0.0326763652, -0.0134479487, -0.00893345103, 0.0236314461, -0.0176758114, -0.0188223515, -0.0215294585, 0.0118873818, 0.0415620469, 0.00393525697, -0.0267048087, -0.0123093724, -0.0148890847, 0.0226123, 0.0103666252, 0.0160117373, 0.0245391224, 0.00529478164, 0.0109637808, 0.00843184, 0.0117838746, -0.0108921221, -0.00344359851, 0.00761174643, 0.0148970475, 0.0125323106, 0.0157012176, 0.00644132076, -0.00230303104, 0.00582824089, 0.0169751495, 0.0020074388, 0.00176360016, 0.00419601472, -0.0112424539, -0.00832037069, 0.00965003762, 0.011584823, 0.000687226828, 0.000886278751, -0.00602331152, 0.0158445351, 0.00285639544, 0.0299533363, 0.0208447184, 0.00849553663, -0.0137425456, 0.00573269604, 0.0107408427, 0.00342170289, -0.00580833573, 0.02778765, 0.00771127222, -0.0077232155, -0.0111070983, -0.00187407399, 0.0140451053, 0.0136071909, -0.020574009, 0.000567795651, -0.011067288, -0.00953060668, 0.00551373884, 0.0199529659, 0.017405102, -0.000574762467, -0.0147776157, -0.0164974257, 0.00311317225, 0.0252716336, 0.000858411484, -0.00275487895, 0.00753610628, 0.0182968546, 0.00219554291, -0.0153429238, 0.0179146752, -0.0089971479, 0.00100720278, 0.0281539056, -0.00546994712, 0.0105736395, 0.000444134639, 0.013432025, 0.0270232912, 0.0102471942, 0.0227556173, 0.020574009, -0.00118236849, 0.0369440392, 0.0136708869, 0.0182490814, 0.00409648893, 0.0222141966, 0.0170229226, -0.0172458608, -0.0317209177, 0.00251004496, 0.00730122533, 0.00186014036, -0.0132648209, 0.0139734466, 0.00511165382, -0.0100799901, -0.00818501599, 0.00665231608, 0.00851146132, 0.0183605514, 0.0190452896, -0.0206695534, -0.00285241427, 0.0199688915, -0.00798596349, 0.0355745628, 0.000423731806, 0.000540923676, 0.00819297787, 0.00494046928, 0.000115139104, -0.00504795741, -0.0122695612, -0.00620643934, -0.0136549631, -0.0214816853, 0.0259086, -0.0261952356, 0.00558141619, 0.016370032, -0.0119431168, -0.00233288878, -0.0156295579, 0.0167203639, 0.000847463612, -0.00180639641, -0.0167362876, 0.000656373799, -0.00475734146, -0.00110274774, 0.00590786152, -0.00426767347, -0.0101994211, -0.0142441569, 0.000938529905, 0.00494843116, 0.0147616919, 0.00658463826, -0.0182331577, -0.00488871569, 0.00140630198, -0.00622236356, 0.0158445351, 0.00793819129, -0.00191587489, -0.000414028036, -0.00824871287, 0.00286037638, 0.031641297, 0.00354710547, 0.0186312608, -0.0103825489, -0.0161630176, 0.0106532602, -0.0131692765, -0.0148174269, -0.0017984343, 0.00639752951, 0.0114574293, -0.0157330651, 0.0201440565, -0.0103825489, 0.00376009126, 0.00222938182, -0.0182490814, 0.00133961951, -0.00374217657, -0.0128985662, -0.0080297552, -0.00559734041, 0.0115052024, 0.0113220746, 0.0107567664, -0.00134260533, 0.0117997993, -0.00642539654, -0.0113937333, 0.0224530585, -0.0599066727, -0.0129543, -0.0054818904, 0.0128985662, 0.000282156136, 0.0224371348, 0.0224689823, -0.00494843116, 0.0161630176, 0.00618653418, 0.0206217803, -0.0186631102, 0.0125243478, -0.000794714899, -0.020574009, -0.00693895062, 0.00289023411, 0.016370032, 0.00929970667, -0.0104382839, 0.00284445216, 0.00470956881, 0.0138221672, -0.00260558981, -0.0174528733, 0.00915638916, 0.00281857536, 0.00541421259, -0.00416814769, 0.00693496969, 0.000672795577, 0.0127552487, 0.00780283613, -0.0229785554, 0.00820094, 0.0169273764, 0.00494445, -0.0294915363, -0.00320871733, -0.0190293659, 0.00999240763, 0.00266530551, 0.00198255735, -0.021736471, -0.00583620276, 0.00989686232, -0.00718577486, -0.00543013681, -0.00959430356, 0.0247939099, -0.00863885414, -0.00283250911, -0.00205819705, -0.00107089942, 0.0250009242, 0.000160734446, 0.0108443499, 0.00249611144, 0.00646122592, 0.0135355322, -0.027612485, -0.0166725907, 0.002464263, -0.00640549138, 0.0102471942, 0.0062303259, 0.0064731692, 0.00668416405, -0.00145805546, 0.00408056471, -0.0260837656, 0.0143874744, -0.0159480423, -0.00524302805, -0.00675184187, 0.00894937478, 0.00291412044, 0.00277876505, -0.0215772297, 0.0221027266, 0.00846368819, 0.008471651, 0.0210676566, 0.00253990269, 0.00975354481, 0.000806658, -0.0341095403, 0.017691737, 0.00136549631, -0.00285241427, 0.0122934477, -0.00810539536, 0.0029857792, -0.0062263445, -0.00676776608, -0.00617061, -0.000107799067, -0.0126437796, 0.0102790426, 0.0115211261, -0.00402084924, -0.00339184515, 0.00658463826, -0.00449061161, 0.0268481262, -0.0188860483, 0.0231377967, -0.0196663309, -0.000334904878, 0.0146900332, 0.0280583613, 0.00468568271, 0.0055097579, -0.00597155839, 0.0262111593, -0.0148811229, 0.00025254715, 0.00295791193, 0.016370032, 0.00634975685, -0.0118475715, -0.0206217803, -0.000903198204, -0.00722160423, 0.000874833262, 0.00246227253, -0.0170706939, -0.00991278701, 0.00884586852, 0.00184919254, -0.000356800592, 0.00124307931, -0.00506388117, 0.0114972405, 0.0104462458, 0.00374217657, 0.00460208068, 0.0030435042, -0.0159002692, 0.00648909342, -0.00304151373, -0.00228113518, -0.00120227376, 0.0211950503, -0.0335362703, -0.00564113213, 0.0205421597, -0.00344957015, -0.0116644436, -0.018392399, -0.00917231385, -0.0102153458, 0.00562918885, 0.002766822, 0.00547790946, -0.0122377137, -0.00937136542, -0.016656667, -0.0111309849, 0.00712605938, 0.000117689458, -0.00836814381, -0.00787847582, 0.027150685, -0.00580037339, 0.00365857477, 0.0169910733, 0.00511563476, -0.0176598877, 0.00119729748, 0.00202833931, 0.0125880446, -0.0132807456, -0.0111150602, 0.0150244404, -0.018503869, 0.000910165, -0.00476928428, 0.0267366562, 0.016370032, 0.0156295579, 0.00949079636, -0.0148811229, -0.020574009, -0.0254308768, -0.00722956657, -0.0035132668, 0.0228193142, 0.00714596454, -0.00641743466, 0.00609895168, 0.000543411821, 0.00537042134, -0.0194911659, -0.0124925, -0.00183028262, -0.0024324148, 0.00359885907, 0.0109797055, -0.00148393225, 0.00697876094, -0.0138619775, 0.019427469, -0.0107089942, -0.0236632954, -0.00756795472, -0.0199370421, 0.0142123085, -0.0283927694, 0.00546198525, 0.0135116456, 0.000357547047, -0.00632587075, -0.00671601249, 0.0239658542, 0.0173254814, -0.003545115, 0.0288227219, 0.00925989635, 0.0155021651, -0.00247023464, 0.0163541082, 0.00380786369, 0.0199051946, 0.0111230221, -0.00855923351, 0.0009619185, 0.00986501388, -0.0170388464, -0.00484492444, -0.0107647292, 0.0155897476, 0.0176598877, 0.00509971054, 0.00125900353, 0.0146900332, -0.000335900142, 0.0195707865, 0.000267476047, -0.00264141918, 0.0396192968, 0.00286833849, 0.0269118231, -0.0057008476, -0.00421193894, 0.014642261, -0.0108125014, -0.0218957141, -0.0196185596, -0.014928896, 0.00974558294, 0.0195548628, -0.0150960991, 0.0107169561, 0.0202714503, 0.00699468516, -0.010780653, 0.00599146355, -0.00748435315, 0.0261315387, 0.000954454066, -0.00496833632, 0.00513952132, -0.0181853846, -0.000844975468, -0.0209721122, -0.00510767289, -0.00300966529, 0.00770729128, -0.00808549, 0.00292208255, -0.0221505, -0.0213542916, 0.0102392314, -0.00889364071, -0.00240852847, 0.00383772142, 0.00992871076, -0.0224530585, 0.00800985, 0.0140928775, -0.00355506758, -0.0123889931, -0.0111230221, 0.00216966611, -0.0232811142, -0.0183287021, -0.0110035911, -0.00993667264, -0.01337629, -0.0053385729, 0.00011737844, -0.00546596618, -0.0086627407, -0.0220868029, 0.00556947337, 0.00926785823, -0.00740871346, -0.0250646211, 0.0108045395, 0.0191249102, -0.00237468956, 0.00321269827, -0.0144591331, 0.00617061, -0.0259245243, 0.00317686889, -0.00976150762, -0.004829, -0.0248098336, 0.00370037556, -0.0144193228, -0.0349694453, 0.00949079636, -0.00942709949, -0.0038217972, -0.00825667474, -0.0168636795, 0.00520321773, -0.00525099039, -0.0122058652, -0.00529080071, 0.0242843367, -0.00593572902, 0.0045423652, 0.0130737312, 0.02893419, -0.00731714955, -0.00494445, -0.0163859557, -0.00998444576, -0.00541023165, 0.0124049168, 0.00759582222, -0.00886179227, -0.0135196075, -0.0136549631, -0.0212109741, -0.0135275703, -0.0366892554, -0.0356701091, 0.0285042375, 0.0130737312, 0.0246983655, 0.00154961937, -0.00914842729, 0.00194871845, -0.0103029283, 0.000255035295, -0.00585610792, 0.0060631223, -0.00230701198, 0.0196663309, 0.00800985, 0.0024145, -0.00965003762, 0.00272701168, -0.0166088939, 0.0208287947, -0.000668316905, -0.0184879433, -0.0104143973, -0.002521988, -0.0178032052, -0.0275487881, 0.0144750569, 0.00537838321, 0.0150005538, 0.00597553933, 0.0131931622, 0.00483696209, 0.0157808382, -0.0015924155, 0.0712765157, 0.00596757699, 0.017691737, -0.0411161706, -0.0166725907, -0.0183446277, -0.00120127841, 0.0478680097, -0.0100083314, -0.00215772307, 0.000493648811, -0.0113698468, -0.0185834896, 0.0282653756, 0.00464189146, -0.011067288, -0.00830444694, -0.000864383066, -0.00968188606, 0.00449061161, -0.00566899916, -0.0215453822, 0.0178828258, -0.030494757, -0.00249412074, -0.00870255101, -0.00946691073, -0.0106532602, -0.0120864343, -0.000753411616, 0.0101675736, 0.0178191289, 0.000659359561, -0.0161311701, -0.0102949664, -0.00812530052, 0.0091882376, -0.000938529905, 0.0186153371, -0.0114972405, 0.0300648045, 0.00789838098, -0.0179465227, 0.0111389467, 0.00120028318, 0.0140451053, -0.0120068127, -0.00784264691, 0.00393923791, -0.0182172339, 0.00173772348, -0.0109080467, -0.00202535349, -0.00055485731, -0.000756895, 0.000638459111, 0.0186153371, 0.00493648835, 0.0051235971, 0.0131533518, -0.0135514559, 0.0111309849, -0.000591184245, 0.00185814989, -0.0017178182, -0.0326763652, 0.000655876123, 0.00425573066, 0.00226322049, 0.00779885519, -0.00508776773, -0.0135275703, 0.00769136706, -0.015677331, -0.00224928698, -0.0026832202, -0.0343324803, 0.00648511201, 0.0152155301, -0.00669610733, -0.0150324022, 0.0161072835, -0.00945894793, -0.00162625441, -0.0308769364, -0.0102153458, -0.00824075, 0.00604321714, 0.00166208367, 0.0307176951, -0.00695089391, 0.00275089778, -0.0325808227, 0.0108682355, 0.0124208415, 0.020574009, -0.0219275616, 0.00461402396, 0.00755999284, 0.00720169907, 0.00266331504, 0.0112822643, -0.0282813, -0.00345355109, -0.0108921221, 0.030319592, 0.0129383765, 0.0205262359, -0.000776800211, 0.0150642507, -0.0132807456, 0.0112902261, 0.0172777083, 0.0280105881, 0.00823278818, 0.0020781022, -0.00399099151, -0.0143795125, 0.0141088013, -0.000240852853, -0.000284395472, 0.00611885684, 0.00458615692, 0.000886278751, 0.0105338283, -0.0151199857, 0.00541421259, -0.00396511471, -0.00619449653, -0.00701857125, 0.00391336111, -0.0078944, -0.00629800325, 0.00490862085, 0.0192682277, -0.00622236356, 0.0224530585, -0.000896729, 0.0217046235, 0.00320473616, 0.00428757863, -0.00191189384, 0.0185994133, -0.00118834013, -0.0036287168, -0.00940321386, 0.0247939099, -0.0125482343, -6.79264776e-05, 0.02778765, 0.00803373661, 0.00137644412, 0.0132409353, -0.0121103199, 0.0208606441, 0.0108761983, -0.0189815927, -0.015040365, 0.0231218729, 0.00748435315, 0.0080775274, -0.00571279088, 0.0109637808, 0.00340776914, 0.00566103728, 0.00393525697, 0.0241410192, -0.0193319246, 0.0115688983, 0.00656473311, 0.00640947232, 0.0321190208, -0.00310521037, 0.0111230221, -0.0018949745, 0.0141565744, -0.0103029283, -0.0311158, -0.00293601607, -0.010494018, -0.0012868708, 0.019316, 0.0250486955, 0.048887156, -0.00637364294, -0.00925193448, 0.0105019808, -0.0167999845, 0.0113778086, 0.00370037556, -0.0209561884, 0.0212269, 0.0100720283, -0.00426767347, 0.00302160857, -0.00949079636, 0.0143078538, 0.00108980935, -0.0132807456, -0.00699468516, 0.0171662401, 0.00535847805, -0.0203032978, -0.019889269, -0.0252238624, 0.023058176, 0.0183127783, 0.00945098605, 0.00377800572, -0.00427165441, 0.00826463662]
07 Oct, 2022
Angular PrimeNG Form Calendar Date Restriction Component 07 Oct, 2022 Angular PrimeNG is a collection of Interactive UI components for Angular applications. Developers can use these components to make beautiful and responsive web interfaces in no time as most of the components have all the necessary functions implemented. In this article, we will be discussing the Angular PrimeNG Form Calendar Date Restriction Component. The Calendar Component is used for date and time input from the user. To restrict selectable dates to a range set the readonlyInput property to true so that users cannot enter dates using the keyboard. Now set the minDate and maxDate properties to the desired start and end date. Angular PrimeNG Form Calendar Date Restriction Properties: readonlyInput: This property is used to disable the manual entering of the date by the user. minDate: This property is used to set the lowermost selectable date. maxDate: This property is used to set the uppermost selectable date. Syntax: <p-calendar [(ngModel)]="..." [minDate]="..." [maxDate]="..." [readonlyInput]="true"> </p-calendar> Creating Angular Application and Installing the Module: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Finally, Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: The project Structure will look like this after following the above steps: Project Structure Example 1: In this example, we set the minDate to “9/15/2022” so the dates before that cannot be selected. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4> Angular PrimeNG Form Calendar Date Restriction Component </h4> <p-calendar [(ngModel)]="calendarVal" [minDate]="minDateVal" [readonlyInput]="true"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; minDateVal = new Date("9/15/2022"); } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Example 2: In this example, we set the minDate to “10/1/2022” and maxDate to “10/11/2022”. Any date outside this range cannot be selected. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4> Angular PrimeNG Form Calendar Date Restriction Component </h4> <p-calendar [(ngModel)]="calendarVal" [minDate]="minDateVal" [maxDate]="maxDateVal" [readonlyInput]="true"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; minDateVal = new Date("10/1/2022"); maxDateVal = new Date("10/11/2022"); } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Reference: http://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Date Restriction Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-date-restriction-component?ref=asr8
Languages
Angular PrimeNG Form Calendar Date Restriction Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Angular PrimeNG Form Calendar Date Restriction Component, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0325691365, -0.00653285161, -0.0104860449, 0.0175629836, 0.0524150059, 0.0216569547, -0.0211395, 0.0198154282, -0.00863691, -0.00620944332, 0.0261314064, 0.0145191392, 0.0115133421, -0.0764613748, 0.0146941599, -0.0166954882, -0.0515322909, -0.0170911886, 0.0143060703, -0.00632358715, -0.0212003775, 0.0157671161, -0.0184761379, 0.0168933384, -0.00705411, 0.0387481414, 0.00679157861, -0.000545514049, 0.00634641619, 0.0116274869, 0.020652486, 0.00258536567, 0.020911213, 0.0172433797, -0.042492073, -0.00278702029, 0.0129972165, 0.0389307737, -0.0197393335, -0.00733186072, -0.0173803531, -0.00929894578, 0.0033101812, 0.0229505897, -0.0163454451, 0.0141614871, -0.00274326513, -0.0325082615, -0.0278511792, -0.00187862292, 0.00984683726, 0.0171520654, 0.0489450209, 0.0461446866, 0.0094663566, 0.0303775705, -0.00676494464, 0.0197393335, -0.0085532032, 0.0072747888, 0.0505886972, -0.0482449383, -0.022052655, -0.0289621819, 0.041000586, 0.021428667, -0.0101360027, 0.0285969209, 0.00431845477, 0.0143669471, -0.0232549738, -0.00485873688, -0.00545609137, -0.0185370147, -0.0191762224, -0.0243659765, -0.023194097, 2.64924461e-06, -0.0527802669, 0.0172281601, 0.00219156826, 0.0119851381, -0.022828836, -0.000992103131, 0.00248834305, -0.0131646283, 0.041822426, -0.0521106198, 0.0116046574, -0.0151050789, 0.0323560685, 0.0212916937, -0.00311613595, -0.0279272757, 0.0139864665, 0.0399961174, 0.0434052236, 0.0166346114, -0.0408179574, -0.0196175799, 0.0009611891, -0.00923045911, 0.00886519719, -0.0332692228, 0.0303166937, 0.00168743136, 0.0352172814, -0.0110567659, 0.0403613821, -0.021276474, -0.00629695365, -0.00168552902, 0.0134537937, 0.0257965829, -0.092472, 0.0146408929, -0.0218548048, -0.000628744194, 0.0337257981, -0.0136288144, -0.00868256669, 0.00986205693, 0.0113839786, 0.0369522758, -0.0170303117, 0.00514409738, 0.00397602189, -0.00402928935, 0.0257357061, -0.0378349908, 0.0119927479, 0.0167411454, -0.0109350123, -0.00502614863, 0.0338779911, 0.0334518515, 0.0206829254, 0.0014734111, -0.0463273153, 0.00502234371, -0.00693616085, -0.01940451, 0.0134081356, -0.0245790463, -0.0279272757, 0.00981639884, 0.00349471415, 0.0630075857, 0.00654046144, 0.0231332202, -0.0578634888, -0.0292513482, 0.0156758, 0.00879671145, 0.040422257, -0.0331779085, -0.0283381939, -0.0180804376, -0.020028498, -0.0429790877, 0.0269532446, 0.00520877913, 0.0171672832, -0.00300769904, 0.0233615078, -0.00303813745, 0.0117948977, -0.0105469218, -0.0260400921, 0.046236, 0.00944352802, -0.0171368457, -0.0282468777, -0.0084999362, -0.0324778222, 0.0107295522, 0.00556643074, -0.00794443488, 0.0258270223, 0.0109350123, -0.014268022, 0.0140549531, 0.00292018848, 0.00530389929, 0.00499951467, -0.0282164402, 0.0288252085, -0.0301188435, -0.0444096923, -0.00525443675, -0.0012508299, 0.0180043411, 0.0168933384, 0.0418833, 0.0278207399, -0.0183848217, -0.0319908075, 0.021946121, -0.00136402284, -0.0128298057, 0.00616759, -0.015150737, -0.0106534567, 0.0214438867, 0.0233310703, 0.0172890369, 0.00437552668, 0.0434661023, 0.0286273584, -0.0258574598, -0.0249747448, -0.000321743893, 0.0153942443, -0.00735088484, 0.005345752, 0.0267249569, -0.00900978, -0.0262379404, -0.0214895438, -0.018628329, -0.0335127302, 0.0556110442, 0.0223418195, 0.021428667, -0.0634337217, 0.00766287884, -0.0274859183, -0.00667743431, 0.0134081356, 0.00360124884, 0.00942830928, -0.00115761219, -0.000204270516, 0.0181717519, 0.041457165, 0.0356738605, 0.00665460527, 0.0271967519, 0.00366783282, 0.0759134889, 0.0145724062, -0.0302710347, -0.0308037084, -0.0173955727, 0.0163302273, -0.0160715, 0.00881193, 0.0666601956, 0.021428667, 0.0100827357, -0.0342736915, -0.0127841476, -0.0459620543, 0.00878910162, -0.0278968364, -0.00843144953, -0.0126776127, -0.0131950667, 0.0180347804, 0.0253704451, 0.0199828409, 0.0266032033, 0.0209720898, 0.0534803495, 0.0277903024, 0.0249443073, 0.0257661454, -0.00507941563, -0.00905543752, 0.040787518, 0.0426747, -0.00397602189, 0.0527498275, -0.000903165783, -0.0322343148, -0.0124949822, -0.0396917351, -0.0130885318, 0.0324473828, 0.0258879, -0.00404070364, -0.0197545514, 0.0081042368, -0.00973269343, 0.0166346114, -0.042035494, 0.000423522462, 0.00322647532, -0.0487015136, 0.0294948556, -0.0155616561, -0.00840101112, -0.0279272757, 0.00948157627, 0.0205307323, 0.0323865078, -0.0060610557, -0.0090249991, -0.0194501672, 0.0534194745, -0.0303927884, -0.0140169049, -0.00673831115, -0.021428667, -0.0239094, 0.0202111285, 0.021946121, -0.00734708, -0.0286577977, -0.0399656817, 0.0114524653, -0.0360999964, -0.0301340632, -0.0123199616, -0.0130885318, 0.0195262637, 0.0221287515, 0.0461446866, -0.0042766016, -0.0017930147, 0.0170759689, -0.0268314909, -0.0105088735, 0.0191914402, 0.0271206554, -0.0378958657, -0.0388090201, -0.0161019377, 0.0169237759, -0.0306819547, -0.0514409766, -0.0245029498, -0.020028498, -0.00158755528, -0.00266146171, -0.00700845243, 0.00476361671, -0.0433139093, 0.00948157627, 0.0231788773, -0.0168933384, -0.0140397334, 0.00874344353, 0.00306286872, 0.0259944331, -0.0352172814, 0.022265723, 0.00259868242, 0.01312658, 0.0166498311, 0.00149338634, 0.0126776127, 0.039904803, -0.0107447719, 0.0335127302, -0.018110875, 0.0172738191, -0.0560676195, -0.013286382, -0.0176695175, -0.00603822665, -0.032143, -0.00745361485, 0.0564024411, 0.0459316149, -0.0221135318, -0.00925328769, 0.0271206554, -0.0311233122, -0.018110875, 0.00391134061, -0.00623988174, 0.0045353286, 0.0145191392, -0.0282164402, -0.0290839355, 0.0129059013, 0.0195414834, 0.00201654714, -0.0108132586, -0.0714694709, 0.066477567, 0.0129591683, 0.0253856648, 0.0341519378, -0.000244458788, -0.013385307, -0.0038447564, 0.000754302775, -0.0353086, -0.0196480174, 0.0535716675, -0.00409777602, -0.0254465416, -0.0238485225, -0.0278968364, 0.0177303944, 0.0120536247, 0.0543935038, -0.0216112975, 0.0252791308, 0.0389307737, 0.00776941376, -0.0137581779, 0.013697301, 0.00884236861, -0.0295557324, 0.00526585151, 0.041974619, 0.0389612131, 0.019252317, 0.0130809229, -0.0572242811, -0.0075335158, 0.0299970899, 0.0358869284, 0.0194806065, 0.00750688184, 0.00263292575, 0.00102254155, 0.0325082615, -0.00437172176, -0.0293122251, -0.00238751573, -0.00377626973, -0.00458859606, -0.0570112094, 0.0202567857, -0.00591266807, 0.042918209, -0.0295405127, 0.00155331194, -0.0236050151, -0.0125254206, 0.0206829254, 0.00782268122, 0.00746502914, 0.0362521894, 0.0273793824, -0.0213982277, -0.023711551, 0.00327974255, 0.0203176625, -0.0318690538, -0.0356434211, -0.0101968795, -0.0530846529, 0.00640729303, -0.0100370776, 0.0284142904, -0.0272119716, -0.0353999138, -0.0174260102, -0.0108208675, 0.0352781601, -0.00273565552, 0.0407570787, 0.0105621414, -0.00231902907, 0.00307999039, -0.0030438446, 0.0302405972, -0.00474839751, 0.000410205626, 0.0141006103, -0.0159193072, -0.00426138239, 0.020287225, -0.00418909127, 0.0220830925, 0.0110567659, 0.0371349044, 0.000338627724, 0.00969464518, 0.0500712432, 0.0134081356, -0.0237876456, -0.00740034739, -0.0290839355, 0.00611432316, 0.0541195571, 0.0134690125, 0.0468447693, -0.0102881948, 0.00649860827, -0.0229962468, -0.011559, -0.0309711192, -0.0217634887, 0.0170455296, 0.00827164762, 0.0119775292, -0.0391134024, 0.010896964, 0.0131341899, -0.0136820823, -0.00729381293, 0.02075902, -0.00720630214, -0.0161628146, 0.0256291721, 0.0261618458, -0.0205763895, 0.0185826719, 0.0486710779, 0.00760200201, -0.0230571236, -0.00907065719, -0.00648338906, -0.0126547841, -0.000114619776, 0.0132635534, -0.00294111483, 0.0396004207, 0.00573003758, -0.00994576234, -0.00179586839, 0.0218243655, 0.00178635633, -0.0320516862, 0.0293731019, 0.0165128578, -0.0182021912, -0.0105164833, -0.000477740949, 0.020911213, 0.0130352648, -0.0338171162, 0.0071720588, 0.00648719398, -0.0123656187, -0.00652143732, 0.0280794669, 0.040635325, -0.00827925745, -0.0074574193, -0.0286882352, -0.0149681065, -0.00360885845, -0.0085532032, -0.0451097786, 0.0212460365, -0.0441357493, 0.0193131939, -0.00814989395, -0.0126776127, -0.0226462036, 0.000146366132, 0.0113459313, 0.0158279929, -0.0142832408, 0.032143, 0.011208958, -0.000766668352, -0.0387481414, -0.0283077564, -0.0160106234, -0.0123580098, -0.00847710762, -0.0141767068, 0.0198915247, -0.0213221312, 0.0216569547, 0.0249899644, -0.0329344, -0.0337257981, -0.00912392419, -0.0123732286, 0.00237610121, -0.00637685461, 0.0144887008, -0.0153714158, -0.0150365923, 0.0295861699, 0.0148235234, 0.0152268326, 0.0325387, 0.0263444763, 0.0259944331, -0.00221059215, -0.0182782877, 0.0110948142, 0.018887056, -0.023407165, 0.0165585149, -0.0103871198, 0.0275315754, -0.0171064064, -0.0347302668, -0.0106001887, 0.00828686729, 0.0156910196, 0.00381812267, -0.00471034972, 0.000854654529, 0.019769771, -0.0173499156, 0.00908587594, 0.0135603277, -0.0105545316, 0.00493863784, 0.01214494, -0.00569198932, 0.0281403437, -0.0360695608, 0.00130314601, -0.0172586, 0.0175325461, 0.0449575856, -0.0119927479, -0.00865212828, 0.0110187177, -0.00792921521, -0.00375344092, 0.0256900489, -0.0483971313, 0.00547892042, -0.0108589157, -0.0122058168, -0.0161780342, -0.0240463726, 0.0235289186, 0.0288708676, 0.00448586605, 0.0159497466, -0.0184000414, -0.00326262112, -0.0273641646, 0.0047065448, -0.0205916092, -0.00351564051, -0.0254465416, 0.0130809229, -0.00849232636, 0.0280642472, -0.000642536615, -0.015150737, -0.000647768204, -0.0145343579, 0.00545228692, 0.00605344633, -0.000646817, -0.0114220269, 0.0817576647, -0.00986205693, 0.0108056488, -0.00501092942, 0.0238485225, 0.0241985656, -0.018369602, -0.04410531, -0.00758297788, 0.0371653438, 0.0241376888, 0.00993815251, 0.00243317336, 0.0346693918, 0.00212688651, -0.0237876456, 0.0120460149, 0.000583086512, -0.00279653235, 0.00932938419, -0.0230114665, 0.0355216675, 0.0160715, 0.0351564065, 0.0272119716, 0.0407266431, 0.0178217106, -0.00393036427, -0.0166041721, -0.00682962639, -0.000279653235, -0.0277294256, -0.0228897128, -0.0136516429, 0.0302253775, 0.0163302273, -0.0046799113, -0.010531703, 0.00533814263, 0.0341215, 0.0239550583, 0.0077161463, 0.00201274222, -0.0204089787, -0.0124341054, 0.00111766171, -0.0117035825, 0.0363739431, -0.0297535826, 0.0193131939, -0.00644153636, -0.00160467683, -0.0278359596, -0.00779985217, -0.0164976381, 0.0200589374, -0.019297976, -0.00908587594, -0.018521795, -0.0327517688, 0.0293578822, -0.0187044255, 0.00552457804, 0.0062056384, 0.042035494, -0.0224026963, 0.0123884482, 0.00935982261, -0.00726717897, -0.0216112975, 0.0490667745, -0.00859125145, 0.0283534136, -0.0173042566, 0.0167868026, -0.00466088718, -0.0162236914, 0.00498810038, -0.0308950227, 0.0168628991, -0.0063882689, -0.0337562375, 0.00827164762, 0.0207894593, -0.0571634024, -0.0187348649, -0.00227337144, -0.0236202348, 0.0294644162, 0.0333605371, -0.0130504845, 0.00870539621, -0.0329039618, -0.00530770421, 0.0180347804, 0.0152648808, 0.00408636127, -0.00939787086, -0.0116731441, 0.00568818487, -0.00450489, 0.014321289, -0.0127004422, 0.000624939334, -0.0243964158, -0.00859886128, 0.00822599, -0.0136288144, -0.00813467521, 0.021535201, -0.0145952357, 0.0169542152, -0.0104632163, -0.00805096887, 0.0280185901, 0.00981639884, 0.00370968576, 0.000685816281, 0.00916958228, -0.0462055616, 0.0107143335, 0.000402596022, 0.0170759689, -0.00263102329, -0.0141462684, 0.0166498311, -0.000974981522, -0.0138114449, -0.0112317866, 0.0264510103, 0.0162693504, -0.000145533821, -0.0252334718, -0.0241224691, -0.0051212688, 0.0110795945, 0.0128298057, -0.0103110243, 0.00225244509, -0.0174107924, -0.0229810271, 0.00584798679, -0.0197849907, -0.0159497466, 0.00149243511, 0.0411223434, 0.0189631525, 0.0191914402, 0.0103414627, 0.00792921521, -0.019252317, -0.00140397332, -0.044683639, -0.0153105389, -0.011832946, -0.00308379508, -0.0621248707, -0.0130200461, -0.0218395852, 0.00889563654, 0.0214591045, -0.0141614871, -0.0221896283, -0.019252317, 0.0131570185, -0.0138875414, 0.0150822503, 0.0144202141, 0.00496907625, -0.00872061495, 0.0137886163, -0.00289355475, -0.0150594218, 0.03019494, 0.0118709942, -0.0429486483, 0.00658611907, 0.020500293, -0.0194197297, 0.00699323323, 0.0144049954, -0.0177760534, 0.0175325461, -0.0357347354, 0.00368685694, 0.0191305634, 0.0155312177, -0.00708074355, -0.0212460365, -0.0602376871, 0.0242442228, 0.00666221511, 0.00247122138, -0.00726717897, 0.0279120561, 0.0232397541, -0.002724241, -0.00599256903, 0.0216721743, -0.0145191392, -0.030818928, 0.0154322926, 0.00955767184, -0.0138494931, -0.013233115, 0.0134766223, 0.00843905937, 0.0435574166, 0.030666735, 0.00509083038, 0.0314733535, -0.0372870974, 0.024335539, 0.00505658705, 0.0181413144, 0.0200589374, -0.0114448564, -0.00735468976, -0.00203176634, 0.0151887853, 0.0045353286, 0.00802053, 0.00898695178, 0.00276228902, -0.041304972, 0.00410158047, -0.00552838296, -0.00885758828, 0.0234223846, 0.0170607492, 0.0193131939, -0.00100446877, -0.0390220881, -0.0211851597, -0.00105107762, 0.0176086407, -0.0215504207, 0.0211547203, -0.03019494, -0.0313211605, 0.00107200409, -0.00137829094, -0.00172167469, -0.0193892904, -0.0378349908, -0.0233767275, -0.00404831348, 0.0193740707, -0.0208351165, -0.00650621811, -0.0476666093, 0.0214743242, 0.0319299325, -0.0156453624, -0.00227337144, -0.0150670316, 0.0352477208, 0.00731664151, 0.0247768965, 0.0180499982, -0.0134233553, 0.0277142059, -0.0118101174, 0.023665892, 0.00301150372, -0.00701986672, 0.00346237328, -0.0065176324, 0.044531446, -0.0132407248, -0.0255226381, 0.00660514273, -0.020287225, -0.063677229, 0.0309711192, 0.00660514273, -0.0266032033, -0.0285056047, 0.0200893749, -0.0369218364, 0.0373175368, -0.019876305, -0.0118938228, -0.00783029, 0.00611051824, -0.00187006209, -0.0024388805, -0.0141614871, 0.0375306047, -0.00180347799, 0.0243964158, -0.046540387, 0.011520952, 0.00956528168, 0.019921964, -0.0377132371, 0.00273565552, 0.0161932539, 0.0128145861, 0.0126776127, -0.010014249, 0.00722532626, -0.0334822908, 0.00350612868, 0.0265727639, -0.00679538306, -0.00630075857, 0.00297726062, -0.0148006948, 0.005604479, 0.0266792979, -0.00777321821, -0.045353286, -0.0379263051, 0.0084999362, -0.00683723623, 0.0263596941, -0.0291295927, -0.0268923678, -0.0325691365, -0.00661275256, 0.0236811116, 0.0122134266, 0.00278702029, -0.0126776127, 0.0315037929, -0.0266640801, 0.00622085761, -0.00466849655, 0.0458403, 0.00500331959, 0.0282620974, 0.0319299325, 0.0102805858, -0.00892607495, 0.00430704, -0.0348520204, 0.0291448124, 0.00204508309, 0.0218852442, -0.015462731, 0.0390829667, -0.0324473828, 0.0125710787, -0.0234680418, -0.0124645438, 0.00117948977, 0.0175477639, 0.00315608643, -0.00638446445, -0.0398134887, -0.0283381939, -0.00523160817, 0.0555197261, 0.00439455081, -0.0181413144, 0.0223874785, 0.0256443918, -0.00200132793, 0.0100446874, 0.0265118871, -0.00666982448, 0.0258422419, 0.0306515153, 0.0339997448, -0.0131113613, 0.00481688417, -0.0175477639, 0.000956908683, 0.00532672834, -0.0227070805, 0.021276474, -0.010272976, 0.00958050136, 0.0341519378, -0.0268010516, -0.0127765378, 0.0111252526, 0.00828686729, -0.0111176427, 0.00512887817, 0.0115970485, 0.0123427901, -0.00373251457, -0.0144049954, -0.0137733975, 0.00814228412, -0.00571862329, -0.00142870459, 0.0194197297, 0.01509747, 0.00247883098, -0.0248834305, -0.00751449168, -0.0186739862, -0.0147322081, -0.0247008, 0.00389421871, -0.00197849912, -0.00384856109, -0.00812706538, -0.0149604967, -0.00478264084, 0.00210025278, 0.0192066599, 0.0189174954, -0.0290991552, -0.0232854113, -0.0111176427, 0.0311080925, -0.0288404282, -0.00366593036, 6.9853857e-05, -0.0252334718, -0.0100370776, -0.00455815764, -0.0272576287, -0.0119090425, -0.0396308564, -0.0275620129, -0.0110643758, -0.014945277, 0.0276381094, 0.0212612543, -0.000353609154, -0.00697801402, 0.020135032, -0.0137125207, -0.00464947289, -0.00330066914, -0.0200132784, 0.00286692125, -0.00721391197, 0.0249899644, -0.0111861294, -0.00291448133, 0.000592598517, 0.014321289, -0.0119470907, 0.0033881797, 0.0274250414, -0.0183239449, -0.0247160196, -0.0107447719, -0.0149604967, -0.00468752068, -0.0203785393, -0.00409777602, -0.00872061495, -0.0218852442, -0.0222809426, 0.00108056481, 0.00239512534, -0.0269989017, 0.0737827942, -0.0014696063, 0.0189327132, -0.0155083891, 0.00191952451, -0.0213373508, -0.0153561961, 0.0171064064, 0.00923045911, -0.0177151766, 0.0305449814, -0.00632739207, -0.0104023395, 0.0129059013, -0.0172890369, -0.0169389956, -0.00270141219, 0.0119394809, 0.0356129818, -0.0213677902, 0.0197849907, 0.00724054547, -0.00323218247, 0.0144278239, -0.0171520654, -0.00116046576, -0.0035593959, 0.00520877913, -0.0167411454, -0.00271853385, -0.0122971321, -0.0121525498, 0.0171520654, -0.0048891753, 0.00240273494, 0.0116579253, -0.00154855603, -0.00156567758, -0.0166954882, -0.0131113613, 0.0144582624, 0.0071035726, -0.0257204883, 0.00082469167, 0.0170150921, -0.0168172419, -0.0340301841, -0.00849232636, -0.000174902176, 0.0123275714, -0.00605344633, 0.00882715, -0.0193588529, 0.00618280936, -0.00815750379, 0.00910870545, -0.0334518515, -0.023665892, 0.00778463297, -0.0323560685, -0.00488537084, -0.00772756059, -0.0133244302, -0.0254313219, 0.0156301428, 0.0024312709, -0.0111100329, 0.0104936548, 0.0143821659, 0.00900978, 0.0306515153, 0.0127004422, 0.0132178953, -0.0100827357, -0.0128906826, -0.0049652718, 0.0235897955, 0.00996098202, 0.0301036239, -0.0192218795, -0.0104023395, 0.0065709, -0.00979357, 0.00999142, -0.010950231, -7.9722573e-05, -0.00365641853, -0.0403309427, 0.000150408727, 0.00391134061, -0.0133929169, -0.00160182326, -0.0359782428, -0.00224673795, 0.0069742091, -0.0109197926, 0.0193284135, -0.01058497, 0.000790448394, 0.0162845682, 0.0319908075, 0.0246855803, 0.0059316922, 0.0115437806, 0.0154855596, -0.00773136551, 0.0425225087, 0.0119090425, -0.0178521499, 0.015462731, 0.0342432521, 0.0214438867, -0.0124721536, -0.00364119909, -0.00181774597, -0.0118481657, 0.0132939918, 0.0172586, 0.0389307737, 0.0120079676, -0.0450793393, -0.0119090425, 0.0184456985, 0.0177608337, 0.000274659425, -0.000728620333, -0.014062562, 0.0109730605, -0.00423094397, 0.0241985656, -0.0184609182, 0.0105621414, 0.00716825435, -0.00122229382, -0.0196936745, 0.0175477639, -0.0281251241, 0.0381393731, -0.00463805813, 0.00989249535, -0.0114829037, 0.00283458037, 0.0025092694, -0.0239702761, -0.0032588162, -0.00496907625, -0.0272728484, 0.0123427901, 0.0282773171, 0.00301911333, -0.0153485872, 0.00907826703, 0.00450108526, 0.0208351165, 0.0116274869, -0.011574219, 0.0091467537, -0.0141843166, 0.000807094446, -0.000527916825, 0.00116712414, 0.0178369302, 0.013598376, 0.00326262112, -0.00623607682, -0.00126890279, 0.0164063219, -0.0381393731, -0.0192675367, 0.00296394387, 0.0102805858, 0.0013288284, -0.00763624534, 0.00639207382, 0.00802814, 0.000961664657, 0.0162845682, -0.00852276478, 0.0219613388, 0.0339693055, -0.03019494, -0.000345523935, -0.0255378578, -0.001440119, -0.00639587874, -0.0213373508, -0.0105164833, -0.00698942831, 0.0142451935, -0.00134975486, -0.0031732081, -0.00690952735, 0.012867853, 0.00290306681, 0.0290534981, 0.0118786041, -0.0200132784, -0.0232245345, -0.000203200412, 0.0188718364, -0.0129439496, -0.000769522, 0.0170759689, 0.0258574598, 0.00469513051, 0.00891846512, -0.0200741552, 0.00209264318, 0.00296013895, -0.00107105286, -0.00827925745, 0.000655853422, 0.012921121, -0.00591266807, -0.0256748293, -0.0360391214, 0.0166650489, -0.00879671145, -0.00959572, -0.0224787928, -0.00742698088, -0.00337866764, -0.00647197478, -0.00552838296, -0.018628329, -6.72975e-05, 0.0027318506, 0.00912392419, -0.0100522973, 0.00113288092, -0.0338779911, 0.00661275256, -0.000643012172, -0.00843905937, 0.0141234389, 0.01489201, 0.00550174946, -0.0290991552, -0.0264814496, 0.0119623095, 0.00956528168, -0.0146256741, -0.0160258431, 0.0161171574, 0.00350612868, -0.000143274723, 0.0297231432, -0.0157518964, -0.0245181695, 0.0090249991, 0.0130352648, 0.00145533821, 0.00324169453, -0.0162541308, 0.00731664151, -0.0250051841, -0.00576047599, 0.0226157662, -0.0015333367, -0.00524682738, 0.0134994509, -0.0190849062, -0.00743459072, -0.00576428091, -0.0260553099, -0.00493483339, -0.0186739862, 0.005292485, -0.0306515153, -0.000447302475, -0.0233158506, 0.00625129603, -0.00819555204, -0.0185370147, 0.0104251681, -0.0083705727, 0.0214134473, 0.0100370776, 0.0117340209, -0.015204004, -0.0198915247, 0.0295100734, 0.0060610557, 0.0247616768, -0.00480166497, 0.0251725949, -0.000138280913, 0.00837818254, 0.0322343148, -0.00518214563, 0.0349433385, 0.00916197244, 0.00391134061, 0.00600017887, 0.0101968795, 0.0155464364, -0.00300199189, 0.00438313652, -0.0095424531, -0.00868256669, 0.0335736051, -0.00139921741, 0.0150365923, 0.0151202986, 0.00181774597, -0.000163725548, 0.0299209934, -0.000401882629, 0.0202720053, -0.000562160043, -0.0154246828, -0.0234680418, 0.0028022395, -0.0102197081, -0.0149833253, -0.0336953588, 0.0157518964, -0.00469132559, 0.0058784252, -0.00865212828, -0.00654807081, 0.00630836794, -0.0268314909, 0.0185065754, -0.0125862975, 0.0157823339, -0.0189022757, -0.00462283893, -0.0190088097, 0.0285969209, 0.00488156592, -0.0355825461, -0.0245942641, 0.0249747448, -0.0164063219, 0.0248529911, -0.0271663144, -0.013697301, 0.000596878934, 0.010691504, -0.0159040876, 0.0280946866, -0.0250508413, 0.0195262637, -0.00226195715, -0.0428877734, -0.043587856, 0.00992293376, -0.0428268947, -0.0152724907, 0.0149909351, -0.0230723433, -3.08545968e-05, 0.0301036239, 0.0253856648, 0.0264357906, 0.0126167359, 0.0224940125, 0.0131874569, 0.0325082615, -0.0204850752, 0.0066469959, -0.00379909854, 0.0242594425, 0.0244877301, -0.0121601596, -0.00447445177, -0.0184913557, -0.00423474889, 0.0158736501, -0.0254161023, -0.0136135956, 0.0111252526, 0.0198915247, 0.00242936844, -0.00146104547, -0.000351944531, 0.00752590597, -0.0026024871, -0.00462664384, -0.0255226381, -0.0177456141, 0.00336535089, -0.00439074589, 0.00638065953, -0.0122210365, -0.00660514273, 0.00645295065, -0.0232701935, 0.0161475968, 0.0323560685, 0.010067516, 0.00700845243, 0.00987727568, -0.0187348649, 0.0256748293, -0.0191914402, 0.0152268326, -0.0022676643, -0.0209416505, 0.0244725104, 0.0107904291, 0.0217787083, 0.00321125612, 0.0231332202, 0.00880432, -0.0164976381, -0.00078283879, 0.0366174504, -0.0203785393, 0.00288594514, -0.0179130267, -0.013339649, -0.0245181695, 0.0140245147, -0.00117568497, -0.0159801841, 0.0252030343, 0.0091467537, 0.0547892042, -0.00153143436, 0.00930655468, 0.00733947055, -0.00800531171, 0.0144049954, -0.00895651337, -0.00397602189, -0.0304993242, 0.00960333, -0.0216112975, -0.00920763053, -0.0019299878, -0.00983161852, -0.00859886128, -0.0172433797, -0.00177018589, -0.00920763053, -0.00663558161, -0.00272804569, 0.0120764533, -0.00957289152, 0.0163606647, -0.0037077833, 0.000338627724, 0.018780522, 0.00224483549, 0.0101892697, 0.0306362975, 0.00795965362, -0.00292209093, 0.00884236861, 0.0139255896, 0.0071302061, -0.00325501151, 0.00308379508, -0.00863691, -0.00183011161, -0.0334518515, 0.005292485, -0.0141919255, 0.0209720898, 0.0088880267, 0.00632739207, -0.0111328615, 0.00487395609, 0.024442073, 0.0030096015, -0.00373441703, 0.00378197711, 0.0188566186, 0.000453247485, -0.0286577977, -0.00838579237, 0.00476361671, -0.0144430427, 0.000169908366, -0.00474459305, -0.00275087473, -0.00476361671, -0.00471415464, 0.00458859606, 0.00265004719, 0.0176695175, 0.00751449168, 0.0303623509, 0.0331779085, 0.0085532032, 0.00426899223, 0.0113915885, 0.0173346959, 0.0111328615, -0.00900217053, 0.00501473434, 0.0194958244, -0.00358032226, 0.00366783282, -0.00367734488, 0.00974030327, -0.00504517276, -0.0216112975, 0.00315798889, -0.00584798679, -0.0281403437, -0.0162541308, 0.00601159316, 0.0276228897, -0.00267858338, 0.0299514309, -0.00618280936, 0.00564252725, 0.000305811263, -0.0243507568, -0.0155844847, 0.0385655127, 0.0131874569, -0.0218700245, -0.0146865509, 0.00744600501, -0.00153619039, 0.00878910162, 0.0178978071, 0.000351706753, 0.00999902934, -0.0159345269, -0.00383524434, 0.00363929686, 0.0116959736, 0.0103490716, -0.0214895438, 0.0028022395, -0.0200589374, 0.0102273179, -0.00195947499, -0.021428667, -0.013598376, 0.0141767068, -0.00492341863, -0.020500293, 0.00891846512, 0.0152496621, -0.00348139741, 0.0183543842, -0.00831730571, 0.00976313185, -0.0227223, 0.000353846932, 0.0116122672, -0.0116198771, 0.00403309427, -0.00686006481, -0.0168628991, -0.0138114449, -0.00295062689, -0.00209644809, 0.0106230183, 0.0138875414, -0.00806618854, -0.0134766223, -0.015462731, 0.0133092105, 0.00354037178, -0.0125025921, 0.0171977226, -0.0146256741, 1.96779802e-05, 0.014062562, 0.00609529903, -0.00905543752, 0.0139408084, -0.0218700245, -0.0193892904, 0.0030172111, 0.0233919472, 0.0192066599, 0.0217787083, 0.0177760534, 0.0132483337, 0.0135527188, -0.0168628991, -0.00872061495, -0.0155083891, -0.0287947711, -0.00139351015, -0.00948157627, 0.0103566814, 0.021900462, 0.00100446877, 0.0378349908, -0.0180195607, 0.00780746154, 0.0143288989, 0.00974791218, -0.0199524015, -0.00618661428, -0.0164519809, 0.00181679474, -0.0217787083, 0.00399504602, -0.00869017653, -0.0206220485, -0.00249975733, -0.00311803841, 0.00724054547, -0.00052458758, -0.0172738191, -0.00815750379, -0.00232854113, 0.00202225428, -0.0356129818, -0.00869017653, -0.000848471711, -0.0387785807, 0.00796726346, -0.0173803531, 0.0502538756, -0.00209264318, -0.0105469218, -0.0106306272, -0.00213639857, 0.0218852442, 0.00881193, -0.005033758, -0.00688669877, -0.00342813018, 0.014268022, 0.00819555204, 0.00601539807, 0.00884997845, -0.0159649663, 0.00464947289, -0.0022676643, 0.0153561961, 0.0130124362, 0.013598376, -0.0166498311, 0.00124797632, -0.0283686332, -0.0096718166, -0.00926089752, 0.00294491975, 0.00439835573, 0.0196480174, -0.0192218795, 0.000597830105, -0.00747263851, -0.0304536652, 0.0058784252, 0.0185370147, -0.0043793316, -0.000624463777, 0.00993815251, 0.022783177, 0.00517073134, -0.000223532348, -0.0042081154, -0.0245029498, -0.0129439496, 0.00255302479, 0.000332920521, 0.0161019377, 0.0101436125, 0.000315323297, -0.000224364645, 0.00719108293, 0.0139788566, -0.0071720588, 0.00407114206, 0.021276474, -0.0041206046, 0.018887056, 0.00189384213, -0.00788355805, 0.00984683726, -0.000181084979, 0.0243811961, 0.0190088097, 0.00321506104, 0.00415104302, -0.00772756059, 0.014526749, -0.0143441176, 0.00826403871, -0.0124797635, -0.0127004422, 0.0224483553, -0.0131874569, 0.0267706141, -0.0163302273, 0.00429943064, 0.0110339373, 0.0181413144, -0.000915055803, 0.00140682701, -0.0223266, 0.0213982277, -0.00896412227, -0.00144487503, 0.019511044, 0.00733947055, -0.00305335666, 0.0163302273, 0.00964137819, -0.0280946866, -0.0122666936, 0.0204241984, -0.00098164, -0.0025872679, 0.0262075029, -0.0116807539, -0.000880812528, -0.0174260102, -0.00389612117, 0.00403689919, 0.0133548686, 0.00953484327, 0.00804336, -0.00172357704, 0.0165585149, 0.00403689919, -0.0028098491, 0.00190240296, -0.00369827123, 0.00662797177, 0.0139103699, 0.00517453579, 0.00844666921, 0.00621705269, -0.0277142059, 0.000306762464, -0.00609529903, -0.00265575456, 0.0234680418, -0.000709120708, -0.00842384, -8.27842541e-06, -0.00154094642, 0.00200513261, 0.00779985217, 0.0148767913, -0.00964898802, 0.0184000414, 0.0104556065, 0.0115894387, 0.00795965362, 0.0273489449, 0.00304574706, 0.0134157455, -0.0115057332, 0.000892702548, 0.0122819133, -0.0165280774, 0.000509368372, 0.0262836, 0.000190715888, 0.00464566797, -0.0032512066, -0.000418053038, 0.0114981234, 0.0194197297, -0.00856081303, 0.0063882689, -0.00595071632, 0.0189631525, -0.00990771409, 0.00493102847, -0.0164367612, 0.00496907625, -0.00867495779, -0.0161323771, -0.0162389111, -0.0223418195, 0.000904117, 0.0166650489, -0.00284219, -0.00991532393, 0.0259031188, 0.0113231018, -0.0126167359, -0.00502234371, -0.00777702313, 0.00834013429, -0.00648338906, -0.00370397861, 0.00962615851, 0.00697040418, 0.015204004, 0.0185978916, 0.012403667, -0.00929133594, 0.00366783282, -0.0233310703, 0.0127004422, 0.0200589374, -0.00161228643, 0.0476970449, 0.0044059651, 0.0127232708, 0.0203481019, -0.00199371832, -0.0131113613, 0.00431465, -0.00531150913, -0.0155007793, -0.0303471312, 0.00733947055, -0.00973269343, -0.00916958228, 0.00510604959, -0.00284409244, -0.00379719632, 0.0185065754, -0.0117188022, -0.0162845682, 0.00156758, 0.0110034989, -0.0102120992, 0.00321125612, -0.0138266645, 0.00714162039, 0.0158736501, 0.00576428091, -0.00020391382, 0.0161171574, -0.0235745776, 0.0137962261, -0.00191381737, 0.0099838106, -0.0229810271, -0.0217330512, -0.000387376786, -0.011414418, -0.0108589157, -0.0279729329, -0.00107961369, -0.0131494086, -0.00818033237, 0.0147245983, 0.0064909989, 0.0076286355, 0.00698181894, -1.00247717e-05, 0.0219917782, -0.0123047419, -0.0196175799, -0.0110643758, -0.00793682504, -0.00929894578, -0.0218243655, 2.44191251e-05, -0.0107295522, 0.0122438651, 0.0294644162, -0.0174868871, 0.0136592528, -0.0222200658, 0.0271510947, 0.00115095382, 0.001926183, -0.00968703534, 0.00132312125, 0.0172433797, -0.0236811116, -3.97721124e-05, 0.00535716675, 0.0031028192, 0.0087586632, -0.0201045945, -0.00827164762, -0.00618661428, -0.00491961418, 0.00891846512, 0.0193284135, 0.0327822082, -0.000573574507, 0.0498581752, 0.0074307858, -0.00348710455, -0.0081042368, -0.00274136267, -0.000359316356, 0.00481307926, 0.000255873194, -0.015204004, -0.000234708961, -0.0103110243, -0.00329305953, 0.00178825879, 0.000527916825, 0.00184628204, -0.00853037462, 0.0331779085, 0.0286121406, 0.000375249, -0.0178673677, -0.00403689919, 0.00813467521, 0.0142451935, 0.00665841, -0.00347949495, 0.00533053279, -0.00814228412, -0.015515998, 0.00961855, -0.000385712192, 0.0146789411, -0.00466849655, 0.00517073134, 0.00102444401, -0.0144887008, 0.0363739431, 0.00323788985, 0.00491200434, 0.00950440485, -0.0245029498, 0.000253733, -0.00483210338, -0.0128754629, 0.00113953941, 0.0104479967, -0.0173346959, 0.0133700874, -0.00323979207, 0.00876627304, 0.0203024447, 0.00173118664, 0.0207133628, 0.0112850545, 0.0055778455, 0.0390525274, 0.0196784567, -0.00601539807, 0.0122438651, 0.0069475756, -0.00172738184, 0.00222581136, 0.012974388, -0.00557023566, 0.0179586839, 0.0115437806, -0.0126395654, -0.0235289186, -0.00901739, 0.00673450623, 0.00605725078, 0.00320554897, -0.00371349044, 0.00727098389, -0.00994576234, 0.00751829613, -0.00316940318, -0.00410538539, 0.00688289385, 0.0127689289, -0.00860647112, 0.0127537092, -0.0164976381, 0.0163454451, 0.0261466261, 0.00743839564, 0.0157366768, -0.00378007465, 0.001180441, 0.0240007155, 0.00741937151, 0.0170759689, -0.0174260102, -0.00432986906, 0.0245942641, -0.024335539, -0.00757156359, 0.0123351803, -0.00629314873, 0.00498429546, 0.00498810038, 0.00744600501, 0.00123085466, -0.0122666936, -0.00032602431, 0.00834774412, 0.00306857587, -0.00275658187, -0.00201084, -0.0175173264, -0.0127613191, -0.00207552151, -0.0113915885, -0.0024750263, -0.00534955692, -0.00720630214, -0.0242290031, -0.00897934195, 0.00932938419, 0.0024236613, 0.00502995355, -0.0170607492, 0.00021188012, 0.0269228071, -0.00234756526, -0.0128374146, 0.0081042368, 0.00747263851, -0.00242746621, -0.00279463, 0.00573764741, 0.00767048867, -0.00491580926, -0.00875105336, 0.00588603457, 0.0111176427, -0.0196175799, -0.00818033237, -0.00518595055, 0.01899359, -0.0208959933, -0.0066888486, -0.00834774412, 0.0072747888, 0.00175877148, 0.0156453624, 0.0101436125, -0.00173499144, -0.0202415679, -0.00665460527, 0.0280642472, -0.0129819978, -0.00299438229, 0.00334252184, -0.0270293411, 0.00841623079, -0.011574219, -0.0293578822, -0.000257775595, -0.00231712684, 0.00345856859, 0.0096718166, -0.0144658722, 0.000549794466, 0.00876627304, 0.0018186972, 0.013902761, -0.0149833253, 0.000242080772, 0.00656329, -0.00687908893, -0.0178064909, 0.0110948142, -2.1862772e-05, -0.005345752, -0.00122324505, 0.00740795722, 0.00339959399, 0.0240007155, -0.0128982915, -0.0151431272, 0.003801001, 0.0103414627, 0.00798248313, 0.00232283399, 0.0137962261, -0.023148438, -0.010950231, -0.0151431272, -0.00535336183, -0.00192713412, 0.00228098105, -0.00263673044, -0.0137886163, -0.0298753362, -0.0250356216, 0.0246551428, 0.0169237759, 0.000699608703, -0.0150061538, 0.00725576468, -0.0153181488, 0.00370588084, 0.00566916075, 0.00620944332, 0.00625510095, -0.00668123923, 0.0113687599, 0.00550174946, 0.0148159144, -0.000424711441, -0.00310091674, -0.0122058168, 0.00268999767, 0.00975552201, 0.0126776127, -0.0207894593, -0.00156282401, 0.00219156826, -0.0163606647, -0.0304688849, -0.00685245544, 0.0102349278, -0.00334822922, 0.00767429359, 0.0189783722, -0.0151431272, 0.0119623095, 0.000456576701, -0.00206600968, -0.0041206046, 0.0161932539, 0.000156472641, -0.023300631, -0.0112317866, -0.00305525912, 0.0013697301, 0.0153105389, 0.0176390801, 0.0100827357, 0.00233044359, -0.00711498689, 0.00438313652, 0.0140549531, 0.0215504207, 0.00269570504, 0.0105545316, 0.0159040876, -0.0155388275, -0.0104860449, 0.011832946, 0.04057445, 0.00165413937, -0.0245029498, -0.00345095899, 0.019511044, 0.0200893749, -0.00314276968, -0.0116579253, -0.0100370776, 0.0304384474, -0.00233995565, -0.00561208883, -0.00299247983, -0.00394177902, 0.0170150921, 0.00298867491, 0.0126167359, 0.0161475968, -0.00747644342, -0.00580613362, 0.00953484327, -0.00426138239, -0.00316940318, 0.0158279929, -0.0179434642, -0.0128450245, 0.00974030327, 0.0104251681, -0.022159189, 0.00872822478, -0.00852276478, -0.0135527188, 7.22318582e-05, -0.0118025076, -0.00891085528, 0.0128374146, 0.00386948744, -0.0149376681, -0.00481688417, 0.00162845687, -0.0105545316, -0.0058784252, -0.000453485292, 0.0133168204, -0.00783029, -2.47609623e-05, -0.0329039618, -0.00815750379, 0.00595452124, 0.0245333873, -0.00701986672, 0.0031028192, 0.00763624534, -0.00088747096, -0.0177151766, -0.00911631528, -0.00958050136, -0.0025606344, -0.0137733975, 0.00670406781, 0.0100066392, -0.00499571, -0.00245600217, -0.00874344353, -0.00961094, -0.010843697, 0.00323028024, -0.0107371621, -0.0194806065, 0.0194958244, 0.0176238604, -0.00734708, -0.0141234389, 0.0115894387, 0.000519831607, -0.000418766431, -0.00238180836, 0.00508322055, -0.0162693504, 0.0155844847, 0.00319413445, 0.0150670316, -0.0173651334, -0.00199752301, 0.0187044255, -0.0279577132, -0.0157671161, -0.0028612141, 0.0024750263, 0.0235137, 0.0163606647, -0.0108817443, -0.0200132784, -0.0204089787, 0.0246855803, 0.00609529903, 0.0108741354, 0.0160258431, 0.00795204379, 0.00769712217, 0.0173803531, 0.013027655, -0.00665841, -0.00792160537, 0.000724339916, 0.0139712468, 0.0150289834, 0.00451630447, 0.0192371, -0.0167563651, -0.00679538306, 0.0171216261, 0.000669645844, 0.0117644593, -9.64875e-05, -0.00848471746, 0.0116046574, 0.00734327547, 0.0228592735, 0.00159421365, 0.00126890279, 0.0103871198, -0.0011690266, -0.0143593373, 0.0363435037, 0.0260705296, -0.0101664411, -0.0126243457, 0.00686006481, 0.00676874956, -0.0111252526, -0.00637685461, 0.0108513059, 0.00496907625, -0.0110567659, -0.00543326279, -0.0170303117, 0.0155236078, 0.0111328615, -0.0170911886, 0.00137543736, 0.00790638663, -0.0181413144, 0.00759439263, 0.0247008, 0.00393036427, 0.0071035726, -0.0128526343, -0.00431084493, -0.000192023799, 0.00590886362, 0.00291828602, -0.00786833838, 0.0044059651, 0.0109578408, -0.00244839257, -0.00666982448, 0.0136896912, 0.0108513059, 0.00729761785, 0.0173651334, -0.00213259365, 0.005292485, -0.0104784351, 0.0175173264, 0.0122743035, 0.0145724062, 0.0268771481, 0.0177456141, -0.00749166263, 0.0252334718, 0.00482449401, 0.0251725949, -0.00519736484, 0.0237724278, 0.00848471746, -0.0114905136, -0.0238941815, 0.00717586372, 0.00271092425, 0.00726717897, 0.000292018842, 0.0124112768, 0.0152648808, -0.0136135956, 0.0005065148, 0.00502995355, 0.00337486272, 0.0137962261, 0.0252486914, -0.0193284135, 0.00259297527, 0.0121145016, -0.00284028752, 0.041670233, -0.00396080269, 0.0107980389, 0.00410538539, -0.0020679119, -0.0152648808, -0.0157975536, -0.00633119699, -0.00553599233, -0.0085532032, -0.0249899644, 0.0102120992, -0.00289165252, 0.012715661, 0.00859886128, -0.0187957417, 0.00544087216, 0.0024046374, 0.0222809426, -0.00642251223, -0.00738132326, -0.00556262629, -0.00268999767, -0.0152953193, 0.000643963402, -0.0112850545, -0.0182021912, -0.0107371621, -0.00909348577, 0.00076001, 0.000891275762, 0.0155388275, 0.0125862975, -0.021383008, 0.00136687653, -0.00791399647, -0.0138951512, 0.0204698555, 0.00759439263, 0.0103642913, 0.00254351273, -0.0106306272, 0.00689811306, 0.0194501672, 0.0039646076, 0.0106230183, -0.0063882689, -0.0171520654, 0.0198915247, -0.0138342744, -0.00376295298, -0.00502614863, -0.000623988162, -0.000132692599, -0.0116198771, 0.0178369302, -0.0246703606, 0.00760200201, -0.0100446874, -0.0228440538, 0.00622085761, -0.00139826618, -0.0155997043, -0.00627792953, -0.0126776127, 0.00504517276, 0.0192371, -0.00677255448, -0.00460381526, 0.00688669877, -0.0101207839, -0.0136896912, 0.0249899644, -0.063555479, -0.00903260894, -0.00440216, 0.0237876456, -0.0131341899, 0.00732044643, 0.0217026118, -0.00783029, 0.0183848217, 0.0238789618, 0.0120840631, -0.0247464571, 0.0070008426, 0.0101892697, -0.0148083046, -0.00594691141, 0.0121753784, 0.0105925798, 0.00187481812, -0.022417916, -0.00750688184, 0.0134537937, 0.0145191392, -0.00621324778, 0.00846949778, 0.00777321821, -0.00442118431, 0.00647197478, 0.00842384, -0.00240083248, 0.000572623278, 0.0109806694, 0.00285931164, -0.0203633215, 0.0123123517, 0.0167868026, 0.00400265586, -0.0134766223, 0.00222390913, -0.0204089787, 0.0121525498, 0.00935221277, 0.0107599907, -0.0100827357, -0.00451249955, 0.00565013662, -0.00612954237, 0.0058784252, -0.0167411454, 0.0224483553, -0.00959572, -0.0103719011, -0.00495766196, -0.00711498689, 0.0222200658, 0.000508892757, 0.0165585149, -0.00571862329, 0.0121221114, 0.0172890369, -0.0208503362, -0.0226005465, 0.0217026118, -0.00801292155, 0.0107295522, 0.00432225922, 0.0203785393, -0.00539521454, 0.00295062689, 0.00524302246, -0.013857103, 0.0215656403, -0.00283838506, -0.0190088097, -0.0218395852, 0.00908587594, -0.00278892275, 0.00298296777, -0.0137810064, 0.0137049109, 0.00735849468, -0.000146960621, 0.020911213, -0.00183011161, 0.00732805626, 0.0101512223, -0.0276685487, 0.0264357906, 0.00812706538, -0.00639968365, 0.00884236861, 0.00700845243, -0.0179891214, 0.00770092709, 0.00336344843, 0.0175934229, 0.00373631925, -0.00267097377, -0.0100294687, 0.00711879181, -0.0122743035, -0.00449728034, 0.0140549531, 0.00923045911, 0.0212460365, -0.0156758, 0.00920002069, -0.0165432952, -0.0050185388, 0.00539521454, 0.012091673, 0.0024046374, 0.0139331995, 0.00838579237, 0.0248834305, -0.00566916075, 0.00260058488, 0.00662797177, 0.013803836, -0.00020545951, -0.0140169049, -0.0169846527, 0.0124721536, 0.00574145187, 0.0011024425, 0.000353846932, -0.0130428746, -0.00545228692, 4.70547457e-05, -0.0035517863, 0.00687528402, 0.0256748293, 0.00801292155, 0.00220488501, 0.00429562572, -0.00900217053, -0.00566155091, -0.00676874956, -0.0113231018, -0.00527726579, 0.00179111236, 0.00346427574, 0.000482259144, 0.0144354338, -0.0162997879, -0.0104936548, 0.00362407765, -0.0030248207, -0.00259107281, -0.00383904902, -0.00379529386, 0.0045353286, 0.00346427574, 0.00528487517, 0.00239512534, -0.0143897757, -0.00060115935, -0.0246855803, -0.0163911041, 0.00597735, -0.0242746621, -0.00406353269, -0.0085532032, 0.0159345269, -0.00541423867, -0.000333158299, 0.00584798679, 0.00447064685, 0.000284884853, 0.00379529386, -0.00660514273, 0.00331969303, -0.0104479967, -0.00477883592, 0.0194197297, -0.023194097, 0.00894890353, 0.00530770421, 0.0144810909, 0.0243964158, 0.0265118871, 0.0130200461, -0.0159497466, -0.0135907661, -0.0252639111, -0.0166498311, -0.00420431048, 0.0173955727, -0.00139351015, 0.00343193486, 0.0144278239, -0.00640729303, 0.0242594425, -0.000377626973, -0.00735088484, -0.0015514096, 0.00214971532, 0.0149148386, 0.0112241777, -0.00426138239, -0.013750568, -0.00907065719, 0.00639207382, -0.00747263851, -0.0258879, -0.000929799455, -0.00445162272, -0.00379909854, -0.0215199813, 0.0113535402, 0.0097250836, -0.00088747096, -0.00423855381, -0.00691333227, 0.0273641646, 0.013179847, -0.00268238806, 0.030408008, 0.010272976, 0.0182630681, -0.00505658705, 0.0127080511, -0.00168172421, 0.0197241139, -0.00107676, -0.0172129422, 0.00334822922, 0.0107752103, -0.00624749111, -0.0207133628, -0.0125710787, 0.0184913557, 0.0165585149, 0.0115513904, 0.00477503147, 0.0129896067, -0.00775038963, 0.00819555204, 0.0132787721, -0.00305906381, 0.0400874354, -0.00334632676, 0.0198306479, 0.00437552668, -0.000737656723, 0.019252317, -0.00745361485, -0.0184304789, -0.0261466261, -0.00910870545, 0.00565774646, 0.00319603691, -0.0239702761, 0.0107219433, 0.0109578408, 0.0031808177, -0.0111480812, -0.0040939711, -0.000896982965, 0.0173651334, 0.00740795722, -0.000359316356, -0.00135546213, -0.0208351165, -0.00360885845, -0.010843697, 0.00461142464, -0.000476789719, 0.014321289, 0.00658992352, -0.00281365402, -0.0115437806, -0.00165984652, 0.00708835339, -0.00558926, -0.0106001887, -0.00586701045, 0.00484351767, -0.0186435487, 0.0113459313, -0.0110948142, -0.0106838951, -0.00143441185, -0.0177303944, 0.0063197827, -0.0212916937, -0.0266032033, -0.00856081303, -0.00579852425, 0.000759534363, -0.0138951512, 0.00113953941, -0.0108589157, -0.0112165678, -0.0248834305, 0.00548272533, 0.0262379404, -0.00705791498, -0.0207285825, -0.0021896658, 0.0223570392, -0.00731283706, 0.00780746154, 0.000649195, -0.00606866553, -0.0283990707, 0.000708169478, -0.0127004422, 0.00559686963, -0.0139103699, -0.00633880636, -0.0042233346, -0.0285817012, -0.00111195457, -0.00958050136, -0.00314657437, -0.00526204659, -0.0228744932, 0.0158736501, -0.00492341863, -0.0161475968, -0.00859125145, 0.0148844, -0.0118253361, 0.0054903347, 0.000229952959, 0.0163911041, -0.00770853646, 0.00310662389, -0.0125025921, -0.0181717519, -0.00717966864, 0.00900217053, -0.00588222966, -0.0122590847, -0.00531150913, -0.021017747, -0.020393759, -0.0128221959, -0.0440139957, -0.0261770636, 0.0101512223, 0.000691999041, 0.0225548893, 0.00737371389, -0.013233115, -0.00333871716, -0.00229810271, 0.0031218431, -0.00521258404, 0.00287262839, 0.00452010939, 0.00392656, 0.00942830928, 0.00157328718, -0.00959572, 0.000978786265, -0.0189174954, 0.0484580062, 0.00528868, -0.0191153437, -0.0133548686, -0.00491200434, -0.0131189702, -0.0311537497, 0.0101664411, -0.0063882689, 0.00897934195, 0.000952628267, 0.00446303748, 0.00191571971, 0.0145039195, -0.00929894578, 0.0662949383, 0.00853798445, 0.00674972543, -0.0323865078, -0.013644034, -0.0271054376, 0.00560828391, 0.0440444313, -0.00475600734, 0.000575001293, 0.0156758, -0.0102120992, -0.0189327132, 0.0196936745, 0.0155844847, -0.0134690125, -0.00792921521, -0.00266716885, -0.00228859065, 0.00233044359, 0.00935221277, -0.0182782877, 0.00584418187, -0.0143365087, 0.00587081537, -0.0074422, -0.0135603277, -0.00970986485, -0.0160106234, 0.0030876, 0.00197088951, 0.000852276513, 0.00179777073, -0.00714162039, -0.0151202986, 0.00343954447, 0.00936743245, -0.0155997043, 0.000445875688, -0.0107295522, 0.0224635731, 0.0154399024, 0.00335774105, 0.011574219, 0.00515551213, 0.00148482551, -0.00681440718, 0.00154475123, 0.00783029, -0.0215199813, -1.13995548e-05, -0.0224483553, 0.00109197933, 0.00537238596, 0.00662797177, -0.00781507138, 0.0279729329, 0.00421572477, 0.0135222804, 0.00454293797, -0.0119699193, 0.0172738191, 0.0113002732, 0.0116427056, -0.00958050136, -0.0243659765, 0.00157518964, 0.0105012646, -0.00963376835, 0.00347759249, -0.0150442021, -0.01214494, 0.0117872888, -0.0161019377, -0.000128887797, -0.00196518213, -0.0309102423, 0.011467685, 0.0168172419, 0.00979357, -0.0192066599, 0.018521795, -0.0199067444, -0.0176999569, -0.0210481863, -0.000668219, -0.0213982277, 0.00113192969, 0.00552457804, 0.0184609182, -0.00339388684, -0.00410158047, -0.0195414834, 0.0149376681, 0.0117188022, -0.00321315858, -0.0254921988, 0.00650241319, 0.0287034549, 0.0112774447, 0.0003210305, 0.000284409238, -0.0293883197, -0.018110875, -0.00759439263, 0.0392351598, 0.00241985661, 0.0328735225, -0.00285931164, 0.0196480174, -0.0219917782, 0.020911213, 0.0110111078, 0.00471415464, 0.0210938435, -0.00418148143, 0.000414961629, 0.00537999533, 0.00814989395, -0.0051212688, 0.0104327779, 0.00207361928, -0.0224331357, 0.0174412299, 0.0104327779, -0.0151735656, 0.00206410722, -0.0101892697, -0.00255682948, -0.0146865509, 0.0130885318, -0.0166650489, 0.00232473644, 0.00532292342, 0.024335539, 0.00316369603, 0.00108341849, 0.0059316922, 0.00765907438, 0.0201502517, 0.00887280703, -0.000546940835, 0.014945277, 0.0151279084, -0.00288214046, -0.0144126043, 0.0340910591, -0.0136059858, -0.013644034, 0.0373175368, -0.00133929169, -0.00063920737, 0.0153638059, -0.00720630214, 0.0250204038, 0.0179130267, -0.0191914402, -0.0257965829, 0.0225396696, 0.0129819978, 0.000150408727, -0.00649480335, -0.00174640585, 0.00601920299, 0.0185674522, 0.00215352, 0.00980879, -0.0281555634, 0.0017406987, 0.0223570392, 0.0020603023, 0.0280185901, -0.00606866553, -0.001440119, -0.00307808793, 0.0192675367, -0.0238028653, -0.0336344838, 0.00357271265, -0.0108208675, -0.0162389111, 0.0209416505, 0.0144887008, 0.0416397937, -0.0049652718, -0.0111937393, 0.0167107079, 0.00377817219, 0.00639968365, -0.0073889331, -0.0102349278, 0.0372870974, 0.0236811116, 0.00716825435, 0.00801292155, -0.0174868871, 0.0285512637, 0.00918480102, -0.000533148414, -0.00802053, 0.0195719209, 0.00265765679, -0.0168781187, -0.0319908075, -0.022311382, 0.012038406, 0.0153790256, -0.000551696867, 0.00413201936, -0.00684104115, 0.0157366768]
07 Oct, 2022
Angular PrimeNG Form Calendar Popup and Inline Component 07 Oct, 2022 Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will see Angular PrimeNG Form Calendar Popup and Inline Component. The Calendar Component is used to input the user’s date and time. By default, the calendar is shown in popup mode but the inline property can be used to display it in inline mode. Angular PrimeNG Form Calendar Popup and Inline Properties: inline: If this property is set to true, the calendar will be shown in inline mode. Syntax: <p-calendar [inline]="true" [(ngModel)]="...."> </p-calendar> Creating Angular Application and Installing the Module: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Finally, Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: The project Structure will look like this after following the above steps: Project Structure Example 1: This example shows the popup mode of the calendar component. It is enabled by default. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4> Angular PrimeNG Form Calendar Popup and Inline Component </h4> <h3>Calendar In Popup Mode</h3> <p-calendar [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Example 2: In this example, we set the inline property of the calendar component to true to show it in inline mode. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4> Angular PrimeNG Form Calendar Popup and Inline Component </h4> <h3>Calendar In Popup Mode</h3> <p-calendar [inline]="true" [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Reference: http://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-popup-and-inline-component?ref=asr7
Languages
Angular PrimeNG Form Calendar Popup and Inline Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0397021435, -0.0155061902, -0.0165609252, 0.0303826872, 0.0527682714, 0.0235032905, -0.0203233417, 0.0296900235, 0.00372699532, -0.00847724173, 0.0157738086, -0.00331769488, 0.0128221232, -0.0712812468, -0.0128850928, -0.017851796, -0.0397021435, 0.00593092106, 0.00731624523, 0.00637957687, -0.0133573627, 0.0232986398, -0.0363962539, -0.00209963252, -0.0013075968, 0.0413708277, 0.0102718668, 0.00221179659, -0.00265651732, 0.0194260292, 0.0118775843, 0.0106654251, 0.0152700553, -0.00624576723, -0.074303776, -0.0394502655, 0.0207956117, 0.0201659184, -0.0160650425, -0.0111534372, -0.0090203518, 0.0120035224, 0.0346331149, 0.0307447594, -0.0286195464, -0.0114682838, -0.0076271561, -0.0344442055, -0.0174582377, 0.0156557411, 0.0278639141, 0.024872873, 0.0607338883, 0.0479511209, -0.0149001107, 0.0274546146, -0.0214095619, 0.0120507497, 0.00987043791, 0.00891015586, 0.0343182683, -0.0342238136, -0.0257544424, -0.0215984695, 0.0318467245, 0.0425672457, -0.0135856261, 0.0183555502, 0.0324921571, 0.0135226566, 0.00256993459, 0.00696204323, -0.00645435322, -0.0231569596, -0.0248571299, -0.00046858014, -0.00480140885, 0.00601356803, -0.0473214276, 0.0117516452, -0.000523432274, 0.00563181657, -6.50600778e-05, 0.00296939607, 0.00861105137, -0.0221494511, 0.0551611073, -0.0579317547, 0.0139477, 0.0130897434, 0.0357350782, 0.0111062098, 0.000410284352, -0.0309336688, 0.0114918966, 0.0233616102, 0.0340349078, 0.0140578961, -0.0306503065, 0.00382932043, -0.0024302213, -0.00252861087, 0.00176609203, -0.0439525694, 0.0059742122, 0.0139555708, 0.0312642567, -0.00354792643, 0.0237709098, -0.0295798276, 0.00416384498, -0.018339809, 0.0239913035, 0.00319765974, -0.0675030872, 0.0276435222, 0.00133612985, -0.0282889567, 0.0196149368, -0.0183712933, -0.0269351173, -0.0133731049, 0.00684004, 0.0471325219, -0.0282889567, 0.0363018, -2.66574134e-05, -0.00789477583, 0.0303669441, -0.0246997066, 0.0148528833, 0.00105867139, -0.00338263204, 0.00702501228, 0.064386107, 0.0232199281, 0.00820962247, -0.00948475, -0.0326810665, 0.000597224454, 0.0114525417, -0.0484233908, 0.0106732957, -0.0347275697, -0.0137036936, 0.0131841972, 0.00433701044, 0.0500605926, 0.00835130364, 0.00135679159, -0.0474473685, -0.0687624738, 0.0266674981, 0.0141129941, 0.0384742431, -0.0467232205, -0.0062064114, -0.0110825961, -0.0221022237, -0.0347905383, -0.0104450323, 0.0268091783, -0.00402609957, 0.0029871061, 0.0135384, -0.0121058477, 0.0185916852, -0.0164979566, -0.012735541, 0.0418430977, 0.0152306994, 0.0116257071, -0.00988618, -0.0104843881, -0.0598838031, 0.00228066929, 0.033688575, -0.029516859, 0.00934307, 0.000584925758, -0.0170331951, -0.00737527898, 0.00335508306, 0.00835130364, 0.0150496624, -0.00713127293, 0.0424413085, -0.0272342209, -0.0257229581, -0.0027057121, -0.00920926, 0.00684397575, 0.0358610153, 0.0525163971, 0.011539124, -0.0108149769, -0.0385686941, 0.0245422851, -0.0250460394, -0.00888654217, -0.010177413, -0.018575944, -0.0166868642, 0.0186231695, 0.0416856743, 0.0270925406, -0.00420320081, 0.0103899343, 0.0309494101, -0.0406151973, -0.0141995773, -0.00679281307, 0.00921713095, -0.0140264109, -0.0101537993, 0.00640319055, -0.0213151071, -0.0154825766, -0.0001634496, -0.0265730433, -0.0200872067, 0.0724146962, 0.0204177946, 0.00886292849, -0.0652991608, -0.0160099436, -0.00359712122, -0.00831981841, 0.0120428782, 0.0125938598, -0.00791445374, -0.0106103271, 0.00500605907, -0.00820175093, 0.0327755213, -0.00428191246, 0.0165294409, -0.0279583689, 0.011428928, 0.0713442191, 0.0232986398, -0.0293279514, -0.0319884047, -0.0376871265, 0.00669835927, -0.00700139906, 0.0212993659, 0.0478251837, 0.0161673669, 0.0249358416, -0.0117910011, 0.00921713095, -0.0475733057, 0.005179225, -0.00632841466, 0.00489979843, 0.0018369325, 0.0106969094, 0.0220392551, 0.0406466834, -0.00125249871, 0.00987043791, 0.0170017108, 0.0546573512, -0.00308746332, -0.0312327724, 0.020953035, 0.00567510817, -0.0162618216, 0.0420634933, 0.0553500131, -0.0154038649, 0.0601356812, 0.00358925015, -0.0278639141, 0.0130503876, -0.0477622114, -0.0311225764, 0.0211734269, 0.0362703167, 0.00792232528, -0.0259276088, 0.0139949266, -0.0196621642, -0.00555310491, -0.02688789, 0.0124757923, -0.00165196019, -0.0217716359, 0.0271712523, -0.00935094059, -0.034884993, -0.0244163461, 0.0368685238, 0.0301622935, 0.0474158823, -0.0102088973, -0.0149473371, -0.00105375191, 0.0245580263, -0.0257701855, -0.0160886552, -0.0139162149, 0.0135305282, -0.0338774845, 0.0320513733, 0.0317837521, 0.00469908398, -0.0242431797, -0.0244478304, 0.020590961, -0.0303039756, -0.0264943317, -0.0109251738, -0.020102948, 0.0370259471, 0.00832769, 0.0522330329, -0.0259748362, 0.000549013552, 0.0129087064, -0.00706043281, -0.0183712933, 0.0162933059, 0.0299104173, -0.00144337444, -0.0214095619, -0.0208113529, 0.0476362742, -0.0165924095, -0.064858377, -0.00850872695, -0.00453772489, 0.00989405066, 0.00956346188, -0.00473056873, 0.00314059388, -0.0481400304, -0.000579022395, 0.0246209949, -0.0287612267, -0.0136171104, 0.0123892091, -0.0269980878, 0.013987055, -0.0441099927, 0.0197881013, -0.0138532454, 0.0360814072, 0.0164979566, 0.00142468035, 0.00467547029, 0.0600097403, -0.0134124607, 0.049745746, -0.00675739301, 0.005714464, -0.0422209166, -0.0151756015, -0.0144435829, 0.00938242581, -0.024746934, -0.0165924095, 0.0643231422, 0.0384742431, -0.0273601599, -0.00849298388, 0.0253136586, -0.0161673669, -0.0199297834, -0.0234718062, -0.00376241561, -0.0325551257, 0.000688234752, -0.0261637438, -0.011358087, 0.0120586203, 0.0106024556, 0.00786329154, -0.00956346188, -0.0666215196, 0.0544999279, 0.0181194153, 0.0119169401, 0.0400484726, 0.0120901056, 0.0360184386, -0.00542323105, -0.0102639953, -0.0410245, 0.0224013273, 0.0485178456, 0.0169072561, -0.0191426668, 0.0109173022, -0.0304141715, 0.010468646, 0.00189793401, 0.067943871, -0.0125623755, 0.0356406234, 0.00725327618, 0.0136643378, -0.0111534372, 0.0109645296, -0.00109015603, -0.0253923703, 0.0167183485, 0.0359869525, 0.00498244585, 0.026305424, 0.00477779564, -0.0538387522, -0.0106969094, 0.045715712, 0.0164507292, -0.00651338696, 0.0312957428, -0.00136859831, 0.00046981, 0.0349164754, 0.00451411167, -0.0321930535, 0.00702894805, -0.0101380572, -0.00276081031, -0.0381908789, 0.0222911313, 0.02641562, 0.0320671163, -0.0129874181, -0.0149788223, 0.0151598584, -0.00278639141, 0.0233616102, 0.00531697, 0.0104371617, 0.0178990234, 0.0167970601, -0.00957133342, -0.034884993, 0.0309651531, 0.00626544515, -0.0554129817, -0.0498716831, -0.00358334673, -0.0531146042, -0.00466759922, -0.0241172407, 0.013097614, -0.0190324709, -0.0137587916, -0.0360184386, -0.0125623755, 0.0112793753, 0.016309049, 0.0145773925, 0.0163247902, -0.022968052, 0.00237512332, 0.0186703969, 0.0455897711, -0.017489722, -0.01035845, 0.00370534975, -0.0236921981, -0.0168600306, 0.0265887864, 0.0114210565, 0.0158525202, 0.0272814482, 0.0376241542, 0.0054389732, -2.94861129e-05, 0.00916990452, 0.00301071955, 0.00633628573, 0.00303630088, -0.000813189487, -0.00468334183, 0.0452434421, 0.0153959934, 0.0465028286, 0.0184814893, 0.0095949471, -0.0111849215, -0.00340624549, -0.0301465522, -0.00610015076, 0.0308077298, 0.0213623345, 0.0177573431, -0.0443303846, -0.00629299413, -0.00199829135, -0.0114210565, 0.00578136882, -0.0152228279, 0.0101301856, 0.00684397575, 0.0260063205, 0.0350424163, -0.0308706984, 0.0518867038, 0.0448971093, -0.00147289131, -0.00170902617, -0.0119720381, 0.00376241561, -0.0123419827, 0.00744218379, 0.0233930945, 0.0151913436, 0.0361128934, 0.00680462, -0.011539124, -0.00334130833, 0.0548147745, -0.0107992347, -0.0229365677, 0.0214095619, 0.0126568293, -0.0112636331, 0.00256009563, -0.000111426139, 0.0321143419, 0.00883931573, -0.0292177554, 0.0289029088, -0.0180092193, -0.00759173604, -0.00647009537, 0.0244950578, 0.0421894304, -0.00671803718, -0.0235977452, -0.0213308502, -0.00972875673, -0.0139555708, -0.0114367986, -0.0466287658, 0.0123892091, -0.0050887065, -0.000909611175, -0.00305794668, -0.00824897829, -0.00780425733, -0.00949262176, 0.00730837416, 0.0218031202, -0.00582859572, 0.0220707394, 0.00533271255, 0.014168092, -0.0283519272, -0.019520482, -0.0337200612, -0.0113817006, 0.00707617495, 0.00586795155, 0.0288871657, -0.0247311927, 0.0366796181, 0.0269193761, -0.0353887454, -0.0302410051, 0.0113108605, 0.0130582582, 0.0044157221, -0.00911480561, 0.0174110103, 0.00336492201, -0.0194417704, 0.0137981474, 0.0155061902, 0.00464792131, 0.0508791916, 0.0153881228, 0.00761534972, 0.0019117085, 0.00469514821, 0.024762677, 0.0260063205, -0.026903633, 0.0117910011, -0.00230428274, 0.0421579443, -0.0065094512, -0.0386316665, -0.00849298388, 0.013097614, 0.00885505788, 0.0016854126, 0.000980451703, 0.00521858083, -0.00323111215, -0.00932732783, 0.026651755, 0.0211734269, -0.00813091081, -0.0095083639, 0.00796168111, -0.00861105137, 0.0217086654, -0.0332477912, 0.000702501216, -0.0151677299, -0.00507689966, 0.0599782579, -0.0171748754, -0.0283676684, 0.00187825609, 0.0103663206, -0.0143333869, 0.0236921981, -0.025234947, 0.00617492665, -0.0224328134, -0.0159154907, -0.0294696316, -0.0184814893, 0.0203705691, 0.0297844782, 0.00771373929, 0.0173480418, -0.0152228279, 0.00902822334, -0.0325551257, -0.00772948144, -0.027249964, -0.0122160437, -0.0484233908, -0.00406151963, -0.00460856548, 0.0249515846, 0.00887867156, 0.00774915935, 0.0128929643, -0.00280213379, 0.0131448414, 0.00617099134, 0.00319962739, -0.0065094512, 0.0874013901, -0.00226492691, 0.0234875493, -0.0182925817, 0.0205594767, 0.0190009866, -0.0177416, -0.0428506061, -0.00762322079, 0.0159863308, 0.0136643378, -0.000720211363, -0.00395919476, 0.0107362652, -0.0215197578, -0.0193473175, 0.0109487865, -0.00449836906, 0.00775309512, 0.025109008, -0.0142153194, 0.0295326021, 0.0193788018, 0.0121530751, 0.0203233417, 0.0148450118, 0.0303354599, -0.0116886757, -0.00994127803, -0.0106339399, -0.00989405066, -0.0192843471, -0.0293436926, -0.00424649194, 0.00391196785, -0.00179659284, -0.00471482612, -0.0274546146, 0.0241172407, 0.0279898532, 0.0119956518, 0.0288871657, -0.00246760948, -0.0304928832, 0.0013489204, -0.00456527434, 0.008925898, 0.0156950969, -0.0303039756, 0.0175684337, -0.00732411677, 0.00979172625, -0.0351683535, 0.0114131859, -0.0127827674, 0.0180721879, 0.00108425261, -0.0287297424, 0.00302449404, -0.0274231303, 0.00726901833, -0.0108543327, 0.0134596881, 0.00394148473, 0.0196936484, -0.0164035019, 0.00704862596, 0.00310123805, -0.00520677399, -0.00200911425, 0.0437321775, -0.0183555502, 0.0244163461, -0.0111613078, -0.00722179143, -0.0159391034, -0.00165983138, 0.00793019589, -0.0304613989, -0.00012716846, -0.0029733316, -0.0331218503, 0.000814665284, 0.0134518165, -0.0477622114, -0.0188120771, -0.00125053094, -0.0161516257, 0.00483289361, 0.0148922391, -0.0119720381, 0.00482895831, -0.0165924095, 0.020480765, 0.0235347748, -0.000633628573, 0.0100042475, 0.00578924, -0.00456133857, -0.0011501736, -0.00608047284, 0.0313114822, 0.000899280305, 0.013333749, -0.0132786511, 0.00454559643, -0.0117359031, -0.0135777546, -0.00125151477, 0.0147899138, -0.0146482335, 0.00366402604, -0.00995702, -0.00848511327, 0.0257072169, 0.0182453543, 0.00878421683, -0.000459725066, -0.00500999484, -0.0252506882, 0.0243691187, -0.0069226874, 0.0147190737, -0.0313114822, -0.0332163051, -0.000653306488, 0.014640362, -0.00310123805, 0.017489722, 0.0380019732, 0.00245777052, 0.0050887065, -0.0260063205, -0.0181194153, 0.000286559516, 0.00444327109, -0.00920138881, -0.0152700553, -0.0144357113, -0.0229365677, -0.0261637438, 0.00940603856, -0.009106935, 0.000215596054, -0.00551374909, 0.0105867134, 0.0279426258, 0.0286667738, 0.0261637438, 0.00253844983, 0.000131841967, 0.0112006636, -0.047730729, -0.000181405689, -0.00668261666, 0.000375848, -0.0595059879, -0.00702894805, -0.016072914, 0.000127045481, 0.0211576838, -0.0136958221, 0.00374667323, -0.017977735, 0.0161201414, -0.00336295413, 0.00013713041, -0.00894164, -0.00114033464, -0.0142940311, -0.00275097135, 0.0146010062, -0.019630678, 0.0283834115, 0.0126410872, -0.0341923274, 0.0059742122, 0.0171906184, -0.015529803, 0.00857956707, -0.0151913436, -0.0313901938, 0.0114997681, -0.00387851521, 0.0233458672, 0.0065094512, 0.000174887391, -0.0105158733, -0.0307447594, -0.0448971093, 0.0234245788, 0.000737429538, 0.0120586203, 0.0155140609, 0.0397651121, 0.0384112708, 0.0128929643, 9.23631742e-05, 0.0194575135, -0.00207011565, -0.0283361841, 0.00890228432, 0.0207641255, -0.0215827264, -0.0173952691, 0.0230625048, -0.00288674887, 0.0362703167, 0.0335311517, -0.0126961851, 0.0247311927, -0.0217244085, 0.0306817908, -0.00463611446, 0.0337830298, 0.0153881228, 0.00212914939, 0.00803252123, -0.00328424247, 0.0243533757, -0.0084615, 0.0057616909, 0.0279898532, -0.00510838442, -0.0313744545, -0.00373880216, -0.00512412656, -0.0235505179, 0.0110038854, 0.0130189024, 0.0257701855, 0.0086504072, -0.0213465914, -0.00296742818, -0.0172378458, 0.00856382493, -0.00780032203, 0.0170804225, -0.00777670834, -0.0195834525, -0.0062536383, -0.0141759636, 0.00956346188, -0.00608440861, -0.0404262915, -0.0155219324, -0.0126725715, -0.00200419477, -0.0130267739, -0.016923, -0.0500291064, 0.0130818719, 0.0351368673, -0.00172476843, -0.0169859678, -0.01618311, 0.0157029685, 5.67584611e-05, 0.0241959523, 0.0145459082, -0.0255655348, 0.00936668366, -0.0207011569, 0.0265887864, 0.00424649194, -0.022259647, 0.00930371415, -0.0163562745, 0.0369314924, 0.00141680927, -0.0148135275, 0.00250302954, -0.00760747865, -0.0573965162, 0.0359554701, 0.0209215488, -0.0341293588, -0.0107047809, 0.0197251327, -0.0102246394, 0.0143491291, -0.0101616709, 0.00369551079, -0.0123026269, 0.0206696726, -0.0194889978, 0.0102088973, -0.00862679351, 0.0422209166, 0.00197959738, 0.0219920278, -0.0396391749, 0.00139614742, -0.00268209865, 0.0354202315, -0.0397966, -0.00265848497, 0.00851659756, 0.0170489382, -0.0164979566, 0.00838278793, 0.0279741101, -0.0388835408, -0.00418352289, 0.0233773515, 0.0234088376, -0.00408119755, -0.00296742818, -0.0296113119, 0.0145773925, 0.01137383, 0.023330126, -0.0174110103, -0.0429135785, 0.0141838342, -0.00510051334, 0.0321773104, -0.013074, -0.0383168198, -0.00831981841, 0.00789084, 0.0278796572, 0.00402609957, -0.00480140885, -0.00604505278, 0.0251562353, -0.022495782, 0.0204177946, -0.0186074283, 0.0238968488, 0.0106181977, 0.0204965062, 0.0227476601, 0.000218301764, -0.00688726688, -0.00686758896, -0.0277064908, 0.0278166886, 0.0176786315, 0.00958707556, -0.00536026154, 0.0257544424, -0.0365851633, 0.00534451939, -0.0282889567, -0.0148922391, 0.0357665606, 0.0102718668, 0.00654093595, -0.00829620473, -0.0372148566, -0.0151441162, -0.0170017108, 0.0688254461, -0.00724540511, -0.014766301, 0.00239873677, 0.010830719, -0.0123970807, 0.000418401469, 0.0274388716, -0.0137745338, 0.0192686059, 0.0272027366, 0.0309179258, -0.0186389126, 0.0167340916, -0.010830719, -0.00171689724, -0.014459325, 0.00375454454, 0.034884993, 0.0145616503, -0.00840640161, 0.027265707, -0.00506509282, -0.00341608445, 0.0122081731, 0.0117910011, 0.0299733859, 0.0129480623, 0.0129559329, 0.0155691588, -0.00441178633, -0.0157659389, 0.000988322776, 0.00307959225, 0.000173534529, 0.0193473175, 0.016545184, 0.0140106687, 0.00399067951, -0.0278954, 0.00156734523, -0.029280724, 0.000302055851, -0.0225272663, -0.00157521642, -0.0189852435, 0.009996376, -0.00508477073, 0.00110589829, -0.00421107188, -0.00906757917, 0.0330273956, 0.0181351583, -0.00595453428, -0.0236607138, -0.0201816596, 0.0261007752, -0.0274231303, -0.00820175093, -0.00630480098, -0.0145459082, -0.00820962247, -0.0228263717, -0.0408041067, -0.00271161553, -0.0193158332, -0.0195047408, -0.0162775628, -0.0215669852, 0.012373467, 0.0111691793, -0.0204335377, -0.0192213785, 0.024400603, -0.0122160437, -0.0107913632, 0.0127434116, -0.0100436034, -0.0111298235, -0.0132235531, 0.00463611446, -0.0218660887, 0.010177413, 0.00310123805, 0.0171276499, -0.00774915935, 0.00547045795, 0.0501865298, -0.0111376951, -0.0350739, -0.00813091081, -0.014585264, -0.00350069953, -0.0339719355, -0.0119799087, 0.00338066416, -0.0212521385, -0.0317050405, 0.000123294376, 0.00813878141, -0.027375903, 0.0829305649, -0.00824897829, 0.0130897434, -0.029154785, 0.00535632577, -0.0270610563, -0.00052244839, 0.0167498328, 0.0184342619, -0.0238968488, 0.0381908789, -0.0239598174, -0.00785148423, 0.00717850029, -0.0153566375, -0.0326810665, -0.00312681915, 0.0247154497, 0.0215355, -0.0342238136, 0.0168915149, 0.00563968765, 0.0190796982, 0.0262267124, -0.0143333869, -0.0207326412, 0.00920926, 0.00302055851, -0.009287972, -0.012373467, 0.00460463, -0.012680443, 0.0206067022, 0.00645828852, 0.0190639552, 0.00672984403, -0.00493521895, 0.0021842476, -0.0113344742, -0.00708011072, 0.0188750476, 0.000720703276, -0.0256757308, -0.0116414493, 0.0246682223, 0.00964217354, -0.022605978, -0.0109330444, -0.0122868847, 0.0235820021, -0.00947688, -0.0107047809, -0.0078987116, 0.00911480561, -0.023802394, 0.0334052145, -0.0298159625, -0.0159233622, 0.0163562745, -0.031059606, -0.014766301, -0.00523038721, 0.0152621837, -0.0384742431, 0.00961068925, 0.0149473371, -0.00498638116, 0.0068321689, -0.0113502163, 0.0125623755, 0.0352942906, -0.00190088572, 0.0138375033, -0.0120743634, 0.000251754216, 0.00469514821, 0.0120901056, 0.0196464211, 0.0305558518, -0.0255970191, -0.0198510718, 0.0018920307, -0.0169859678, 0.0210632309, -0.0137194358, -0.00925648678, -0.0137351779, -0.0374667346, -2.65574863e-06, -0.00914629083, 0.00055639277, -0.0176786315, -0.0224642977, -0.00309730228, 0.00213702046, -0.00255222432, 0.0283047, 0.00782, -0.00564755918, 0.00872911885, 0.0348535068, 0.02688789, 0.00156832905, 0.00913054869, 0.000631660805, -0.00521858083, 0.0224013273, 0.0015801359, -0.0192686059, 0.0114525417, 0.0297372509, 0.011192793, -0.0164664723, 0.00335114729, 0.0233458672, 0.00263290387, 0.0244950578, 0.0227791443, 0.0245737694, 0.0206224453, -0.019756617, 0.00931158476, 0.00580104673, 0.0253451429, 0.0228263717, 0.00472663296, -0.0257544424, 0.00443933578, -0.00391, 0.00972088519, -0.00608440861, 0.02939092, -0.0112793753, 0.00115804479, -0.0235032905, 0.0114918966, -0.0194732565, 0.0337200612, -0.00341608445, 0.00162342726, -0.0182925817, 0.00356957223, -0.00146895566, -0.012609602, -0.0025679667, -0.0128142526, -0.00395722687, 0.0154432207, 0.0304141715, 0.0050414796, -0.0217558928, 0.0221966784, -0.00695417216, 0.00889441371, 0.014931595, -0.0256914739, -0.00305401091, -0.0271712523, -0.00043955521, -0.00215866626, -5.73426478e-05, 0.02844638, 0.00872124825, 0.0154038649, -0.0129008349, 0.00872911885, 0.0100357318, -0.0221809354, -0.0342553, -0.00442359317, 0.0195991937, -0.00853234, -0.0178360548, 0.0142704174, -0.00322324107, -0.00969727244, 0.027249964, -0.0219920278, 0.0116335778, 0.0279268846, -0.034979444, 0.00564362342, -0.0200557224, -0.00397690479, -0.00616312027, -0.00378012564, -0.0119877802, -0.00966578722, -0.00218621525, 0.0151834721, -0.00395525899, -0.00623789616, 0.0162618216, 0.0153251532, 0.0314531662, 0.0119562959, -0.0249673277, -0.0219605435, 0.0029398792, -0.00427404093, -0.0144908102, -0.00361876679, 0.0126489578, 0.0177573431, 0.00805613492, -0.0127670253, -0.0200242363, -0.000127414445, 0.00556884753, -0.0117910011, -0.00814665295, 0.017961992, 0.0161358826, -0.0107598789, -0.0120271361, -0.0128378654, 0.00925648678, -0.0243376344, -0.00575775513, -0.0300363563, -0.0117122894, 0.00088206213, -0.0177101158, 0.00820175093, 0.00584433787, 0.0013489204, 0.0205279905, 0.00863466505, -0.01137383, 0.00559639651, -0.0286982581, 0.0333422422, 0.0105080018, -0.0180249624, 0.000604111701, 0.00157128077, 0.0156006441, -0.024510799, -0.0309494101, 0.0156950969, 0.0206854139, -0.00695023639, -0.0188907888, 0.0167183485, -0.0124915345, -0.000231707338, 0.0310123805, -0.00249122293, -0.0124836639, 0.018324066, -0.00717850029, 0.00957920495, -0.0085244691, -0.0218818318, 0.00870550517, -0.018450005, -0.0137430495, 0.013074, 0.0115942219, 0.0029044589, 0.0177416, 0.0207641255, -0.000702993188, -0.00235741306, -0.0285250917, -0.0103663206, -0.0246209949, -0.0207956117, -0.0266832411, 0.0136485957, -0.0292964671, 0.0111455657, -0.00784754846, -0.00924861617, 0.018450005, -0.000241915259, 0.0190639552, -0.00691088056, 0.0121294614, -0.0121452035, -0.017961992, 0.0355461687, 0.00617099134, 0.0230782479, -0.0115627376, 0.0178360548, 0.00349282823, 0.000192351523, 0.0404892601, 0.00168246101, 0.0202603713, -0.00786722638, 0.0174267534, 0.0177730843, 0.00328424247, 0.0170489382, 0.0139634423, 0.00213898835, 0.00183398079, 0.00119248114, 0.0232514143, -0.0134833008, 0.0149237234, 0.00936668366, -0.0194575135, 0.00723753357, 0.0356406234, 0.0147033315, 0.00913054869, -0.00824897829, -0.0229208246, -0.00404577749, 0.00914629083, -0.022968052, -0.0119484244, -0.0322402827, 0.00505722174, -0.0162460785, -0.00392377423, -0.0096894009, -0.0101301856, 0.0116808051, -0.0128457369, 0.0175526924, -0.00730837416, -0.00483289361, -0.0072296625, -0.00894951168, -0.0137824053, 0.0100750877, 0.00717456453, -0.0164507292, -0.0225744937, 0.0116729336, -0.0216142125, 0.0292020123, -0.0305086244, -0.011665063, -0.0118067432, -0.00219211867, -0.0167655759, 0.0271869954, -0.0199612677, 0.00362860574, -0.00329998485, -0.0259590931, -0.0252664313, 0.00177101151, -0.0323032513, -0.00969727244, -0.0097759841, -0.00690300949, -0.00778064411, 0.0131212277, 0.0122947553, 0.0141917057, 0.018324066, 0.0127197979, 0.0137666631, 0.0200242363, 0.00401626062, 0.010122315, 0.00199730741, 0.0177888274, 0.00536419731, -0.0106418114, -0.0110038854, -0.0243061502, 0.0235662609, 0.0363332853, -0.0191426668, 0.000663637358, 0.0153645091, 0.0183083229, 0.000271063152, 0.00167458982, -0.00402609957, 0.0140815098, 0.013333749, 0.00525400089, -0.0337830298, 0.00653306488, -0.00374076981, -0.00937455427, 0.0106181977, 0.00685971789, -0.00178872165, 0.00195106433, -0.0164822135, 0.00401626062, 0.0443933569, 0.00613557128, 0.01137383, 0.0316263288, -0.0251562353, -0.00255222432, -0.0107126515, 0.00302055851, -0.0164507292, -0.0190639552, 0.0211576838, 0.0314059369, -0.000461446907, 0.00395722687, 0.0126410872, 0.00127316057, -0.00537206838, -0.0155061902, 0.00986256637, -0.0126410872, -0.00212324597, -0.020102948, 0.00598995434, -0.0212363955, 0.0024380926, -0.00547439326, -0.00726508303, 0.0283519272, 0.00976024102, 0.0354517139, -0.00133908144, 0.00539174629, 0.00915416144, 0.00254828879, 0.00443146424, -0.0271082837, 0.0123577248, -0.0102167688, -0.0103112226, -0.0106654251, -0.0239440762, -0.00645828852, -0.00492341211, 0.0152070858, -0.0369314924, -0.00474237511, -0.0226374622, -0.00440391526, 0.00653306488, -0.00250499742, -0.00179265719, 0.01618311, -0.00317404629, -0.00172575237, 0.0156950969, 0.00720211351, -0.00208192249, 0.024746934, 0.00129283837, 0.00997276232, 0.00392574212, 0.00899673812, -0.0125308903, 0.0138453748, 0.0113895722, -0.00217637629, 0.000275982631, -0.048203, -0.012554504, -0.00967365876, 0.0140657667, -5.58360589e-05, 0.0131212277, -0.0191584099, 0.00253648218, 0.0205752179, 0.00464005, -0.00515561132, 0.0114210565, 0.0164349861, -0.00132629089, -0.0362388305, -0.0221966784, -0.00754057337, -0.00295562157, 0.0112872468, -0.0025896125, 0.00667081028, -0.00617492665, -0.0049942527, 0.00571052823, -0.0132314237, 0.015112632, 0.00949262176, 0.0357980467, 0.0320513733, 0.00118362601, 0.00228263717, 0.0169387423, 0.016309049, 0.00971301459, -0.0120113939, 0.00383915938, 0.0169702265, -0.0019058052, -0.0099019222, 0.00819388, 0.00471089082, -0.0192686059, -4.95329805e-05, 0.00432913937, -0.00369551079, -0.00993340649, -0.00431733252, 0.0054389732, 0.029752994, -0.00563181657, 0.0138296327, 0.00104194507, 0.010830719, 0.00897312537, -0.0296585392, -0.00515954709, 0.0270610563, 0.00199829135, -0.0137430495, -0.0201344341, -0.00497457478, -0.000677903881, -0.000542126305, 0.0190324709, -0.00313665811, 0.00941391, -0.0301937796, -1.85402769e-05, 0.00691088056, 0.0243218914, -0.000584433787, -0.00628118776, 0.00117477099, -0.0124600502, -0.000231092403, -0.00175723701, -0.00703288335, -0.0137115652, 0.00882357266, -0.00701714121, 0.000893868855, 0.000146969352, 0.0261794869, 0.00714701554, 0.00957133342, -0.00447082, 0.0117437746, -0.0146010062, -0.0103978058, 0.00352037745, -0.00763502764, -0.00397690479, -0.0156557411, -0.0353257768, -0.011484026, -0.0127670253, 0.00715882238, 0.0249673277, 0.0164664723, 0.00040561083, -0.0266674981, -0.0125859883, 0.0043684952, 0.00102817058, -0.0180721879, 0.0298474468, -0.00688333157, 0.00467547029, 0.0116965473, 0.00247548055, 0.00482895831, 0.0123262405, -0.00732411677, -0.0123892091, 0.0214725304, 0.014931595, 0.0309179258, 0.0261637438, 0.0149709508, 0.00608047284, 0.0156872272, -0.0160886552, -0.00697385, -0.0116729336, -0.0230782479, -0.000998653704, 0.00279229484, 0.00956346188, 0.0271869954, 0.00418745819, 0.0362703167, -0.0279426258, 0.0132943932, 0.018087931, 0.0103190942, -0.0141366078, -0.0176314041, -0.0307447594, 0.00401232485, -0.0181194153, -0.00120035221, -0.00577349775, -0.0101065729, 0.00603324594, -0.024762677, -0.00573020615, -0.00126332161, -0.0100987013, -0.0256442465, 0.00628118776, 0.00331966276, -0.0381908789, -0.0011226245, 0.0010921238, -0.0440785103, -0.000169721941, -0.00440785103, 0.0436692089, 0.00801677909, -0.0100278612, -0.00900461, -0.00615524873, 0.0236921981, 0.00918564666, 0.00530909887, -0.0207798686, -0.0107677504, 0.0139004728, -0.00364434812, -0.00219802209, -0.00179068942, -0.0133967185, -0.0020465022, -0.000105584266, -0.00114820583, 0.00319962739, 0.016198853, -0.0035223451, -0.00429371884, -0.00994127803, -0.0154825766, -0.000618870137, 0.0115863513, -0.00225705584, 0.0184972323, -0.0125623755, 0.00234167092, 0.00329014589, -0.0138532454, -0.0168757718, 0.0124679208, 0.00484470045, -0.006068666, -0.00171394565, 0.0329014584, 0.00726508303, -0.00272145448, -0.00430552568, -0.0161516257, -0.0235820021, 0.00795774534, -0.0166868642, 0.00920138881, 0.0179147664, -0.0130189024, -0.00300481613, 0.00523825875, 0.017977735, -0.0209845193, -0.00107736536, 0.00685971789, -0.00828833412, 0.0158918761, -0.0146167483, -0.00412448915, 0.00828833412, -0.00203075982, 0.00881570205, -0.000885997724, -0.0040221638, 0.0169544835, -0.0156636126, 0.00691481633, -0.00154176389, 0.0057183993, 0.000454805588, -0.0108936885, 0.0150339203, -0.00804826338, 0.0347905383, -0.00800890755, 0.0022787014, 0.0249043573, 0.013750921, 0.000394788, -0.0149552086, -0.0149709508, 0.0212049112, -0.0107205231, -0.00699352752, 0.0178675391, -0.00247548055, 0.00145419722, 0.0124521786, 0.0096894009, -0.0086189229, -0.00055639277, 0.0146718463, -0.00149847253, -0.00242235023, 0.0262424555, -0.00800497178, 0.00710765971, 0.00229837932, -0.012499406, 0.00509264227, 0.00763502764, -0.00503360853, -0.0136643378, 0.00180446391, 0.00467153499, -0.0130031602, -0.00172968791, 0.00725327618, -0.00551768485, 0.00205830904, 0.00659603393, 0.00177593098, 0.0108936885, 0.00304023642, -0.0237709098, 0.00493128318, 0.00296939607, -0.017253587, 0.0334681831, -0.00788296945, 0.00436455943, -9.58529199e-06, 0.00458495226, -0.0037210919, 0.00298120268, 0.00912267715, -0.009996376, 0.0145695219, -0.00440391526, 0.00412055338, 0.00549407117, 0.00752483122, -0.00281000487, 0.00965004507, -0.0086189229, -0.0168915149, 0.0252664313, -0.0213151071, 0.00344953686, 0.0186546557, 0.00702894805, 0.00462037232, -0.00793806743, 0.00848511327, -0.003392471, 0.0151283741, -0.00234167092, 0.0150968898, -0.0168285444, 0.00927222893, -0.00556884753, 0.00335311517, -0.00839853, 0.00435275258, -0.00346724712, -0.0122475289, -0.0210632309, -0.0183712933, 0.00528155, 0.012082234, 0.00317994948, 0.0165609252, 0.0235347748, -0.00226295926, -0.00377815799, -0.00539174629, -0.0156636126, 0.0190482121, -0.0127670253, 0.0122239152, 0.00250302954, 0.0192843471, 0.0137351779, 0.029752994, 0.0130897434, 0.00217244076, -9.07028443e-05, -0.010830719, 0.0346331149, 0.0238653645, -0.00304220431, 0.028682515, 0.0115076397, 0.0102797383, 0.0141366078, -0.000534255116, -0.0109566581, 0.00421894295, -0.0105709713, -0.0272971913, -0.0295011159, 0.00382932043, -0.000147092345, -0.00106851023, -0.00823323615, -0.00447869161, -0.000601160049, 0.0153881228, -0.00624576723, -0.0318152383, -0.0052264519, 0.00526187196, -0.0137745338, 0.00626151, -0.0194417704, -0.00174739806, -0.0037289632, -0.00368960737, -0.0129874181, 0.00887867156, -0.00487224944, 0.0164979566, 0.0109015601, 0.00197566184, -0.00728476094, -0.0180721879, -0.00220195763, -0.0119720381, -0.0105394861, -0.00691481633, 0.00835917424, -0.00225115241, -0.00934307, 0.0130346445, 0.0131369699, 0.009287972, -0.00244989921, -0.00725327618, 0.0154038649, 0.00358925015, -0.0188750476, -0.0138532454, -0.0144357113, 0.00187530438, -0.0247311927, 0.0188435633, -0.00676132832, -0.00883931573, 0.0102482531, 0.00086631981, 0.00733592315, -0.00486437837, 0.0170804225, 0.0123655964, -0.0130897434, -0.0300363563, -0.00378602906, 0.00687939581, -0.0191584099, 0.017851796, 0.000652814517, 0.00108523655, 0.00916203298, -0.013388847, -0.0140106687, -0.00147092342, -0.0127119273, -0.00351053849, -0.00391196785, 0.0245580263, -0.00754057337, 0.0255970191, -0.00348102162, -0.000692170346, -0.00957920495, -0.0140578961, 0.00263093598, 0.0274231303, 0.00167163811, -0.0147348158, 0.00323504768, -0.00683610467, 0.00554129807, 0.00301662297, -0.00281984382, -0.000558852509, -0.0100357318, 0.026777694, 0.0181194153, -0.00234167092, -0.021661438, 0.00212521385, 0.000135285605, 0.013569884, 0.0159548465, -0.00983108208, 0.0147426873, -0.00865827873, 0.00762322079, 0.01368008, 0.017961992, -0.00451804698, -0.0173165575, -0.00121806236, 0.0221966784, -0.0156478714, 0.0369314924, -0.00679281307, -0.00241251127, 0.0168757718, -0.0170646794, 0.00512806233, 0.000550489407, -0.00595453428, -0.00821749307, 0.0148843676, -0.0168600306, 0.00864253659, 0.00414810237, 0.0222911313, 0.0107913632, 0.0150417909, 0.0131920679, 0.000470547937, -0.00237905886, 0.0227004327, 0.00409694, -0.00411661807, 0.0172850732, -0.00525793666, 0.00560426759, 0.00895738322, 0.0232199281, -0.00436455943, -0.00106162298, 0.00653306488, -0.0100987013, -0.00857956707, -0.0156163862, 0.0102718668, 0.00728869624, 0.0105394861, 0.0128772212, 0.00689513842, -0.00184873922, 0.0071824356, -0.00374470558, -0.00428584777, 0.00402413169, 0.000442014949, 0.00207798695, 0.0180564467, -0.0164349861, -0.000444228732, 0.0315003917, -0.000322717649, -0.00214882731, 0.00130070955, -0.00795381, 0.0350739, 0.00628512306, 0.0307762455, -0.00967365876, 0.00617492665, 0.0269351173, -0.0170017108, 0.00381357805, 0.00378799695, -0.000240316425, 0.00689907372, -0.00920926, -0.00227476587, 0.00948475, -0.00913054869, -0.00128398335, 0.00485257152, 0.0102718668, 0.00890228432, -0.00142172875, -0.0101931551, -0.00621821824, 0.00828833412, 0.00458888756, 0.00204847, -0.00285132858, -0.0043252036, -0.00500999484, 0.00113738293, 0.00285132858, -0.000119543278, -0.00189006282, -0.0313587114, -0.00495489687, 0.0294381473, 0.00264864624, -0.0116414493, 0.0266832411, 0.0124679208, 0.00506509282, -0.01035845, -0.000618378166, 0.0022531203, -0.0162145942, -0.0103741921, 0.0175841767, 0.0112715047, -0.0257229581, 0.00124069199, -0.005533427, 0.0249201, -0.00961068925, -0.00463611446, -0.029028846, -0.0030559788, -0.00540748844, -0.00312288362, 0.00528548565, -0.0106654251, -0.00660784077, -0.00315830391, 0.009815339, -0.00771373929, -0.0112400195, -0.00205634115, -0.00564755918, 0.014585264, -0.00851659756, -0.0206696726, 0.00283755409, -0.0117516452, 0.0143570006, 0.00993340649, -0.0172063615, -0.000600176107, 0.0120664919, -0.00398674374, 0.018339809, -0.00387261179, 0.00366205839, 0.0234245788, -0.0199770108, 0.00342002, -0.00136761449, -0.00293594366, -0.0200872067, 0.0011914972, 0.00660784077, -0.000812697515, 0.0107913632, -0.00865827873, -0.0100829592, -0.0057183993, 0.0146167483, 0.0140342824, 0.0095004933, 0.0202446301, -0.0192056354, 0.000703977072, -0.0146246199, 0.00445114216, -0.000218055793, -0.000844674127, -0.00169820327, -0.00281000487, -0.0313901938, -0.021897573, 0.0238181371, 0.0200714637, 0.00487618521, -0.0222124197, 8.14788291e-05, -0.0184027776, 0.00330588827, 0.0107441368, 0.0084300153, -0.00129283837, -0.00202682428, 0.0141208656, 0.00822536461, 0.00129283837, -0.0129559329, -0.010287609, -0.0140106687, 0.00735560106, 0.00934307, 0.0155534167, -0.0163877606, 0.0048132157, -0.00273719663, 7.43455894e-05, -0.0123498533, 0.00866614934, -0.0109881423, -0.00450230483, -0.00577349775, 0.0186074283, -0.0152700553, 0.00672590826, 0.00277458481, -0.00527761457, 0.00747760432, 0.0169387423, 0.00235741306, -0.011247891, -0.00639531948, -0.00907545, -0.000181405689, 0.0164979566, 0.00466759922, 0.00804432761, 0.00805613492, -0.00551768485, 0.0010813009, 0.00161063659, 0.0250617806, -0.000676428, 0.0184185207, 0.00397887267, -0.0144120986, -0.0153802512, 0.00663145445, 0.0311383177, -0.00210356805, -0.0115233818, -0.00698959222, 0.0109724, 0.0231412165, -0.010468646, -0.00502180168, 0.00247744843, 0.0235190336, -0.00497063901, -0.0265730433, 0.000573610945, -0.000378307741, 0.0162933059, 0.000501048693, 0.0192371216, 0.0405522287, 0.0029516858, -0.00626151, 0.0221966784, -0.00628512306, -0.0115784798, 0.0229995362, -0.010594585, -0.00517528923, 0.0137351779, 0.00998850539, -0.0192528628, -0.0103663206, 0.000912562886, -0.0211576838, 0.00752876699, -0.00383719173, 0.00201501767, 0.00979959685, -0.0090124812, -0.00956346188, -0.00294775027, -0.0143963555, -0.0103741921, -0.000449394167, 0.00448262691, 0.0163720176, -0.0200242363, -2.31061658e-05, -0.0210317466, -0.00596240535, 0.00595059851, 0.0318624638, 0.00592304952, -0.000301071967, 0.00205634115, -0.00641499739, -0.00931158476, -0.0215355, -0.00305007538, 0.00998063385, -0.00797742326, 0.00057754654, 0.00750908908, -0.0119641665, -0.00386867626, -0.000131473, -0.000536714855, -0.0222911313, 0.00437636627, -0.00222360343, -0.0228106286, 0.0137194358, 0.015821036, 0.00236922, -0.00624576723, 0.00489979843, -0.0215669852, -0.00332556618, -0.00562788127, -0.015946975, -0.0151913436, 0.0124679208, 0.00307762437, 0.0354517139, -0.00587582262, -0.00366599392, 0.0156557411, -0.0285093505, -0.017961992, -0.0112951184, 0.00303039746, 0.0233930945, 0.00820175093, -0.00809155498, -0.0208585802, -0.0191111825, 0.0134754302, 0.00640319055, 0.0163877606, 0.0151598584, 0.00414810237, 0.00260535465, 0.0121530751, 0.01618311, -0.004643986, -0.0043252036, 0.00865827873, 0.0195677094, 0.00879208837, 0.0231254753, 0.00221573212, -0.00165884744, -0.00530909887, 0.0194575135, 0.0095949471, 0.000779245049, 0.0158131644, -0.0138453748, -0.0107362652, 0.0176786315, 0.0139634423, -0.00602537487, -0.00389622548, 0.00472663296, 0.00379193248, -0.00305401091, 0.0350109302, 0.0105709713, 0.00379390037, -0.00879996, 0.0150890183, 0.00703681912, -0.00181627076, -0.00449443376, 0.0153094111, 0.0215512421, -0.00368763949, -0.00575775513, 0.00355776539, 0.0188593045, 0.0137666631, -0.0176314041, -0.000810729747, 0.00217244076, -0.00582859572, -0.00112557621, 0.0194102861, 0.010830719, -0.0015447156, -0.0141995773, -0.00994127803, -0.000670032692, 0.018450005, 0.0054862, -0.0017237846, 9.23631742e-05, 0.01618311, 0.00110294658, -0.00186841714, 0.00983108208, -0.00259551569, -0.0014345193, 0.0244635735, -0.00406939071, 0.00336295413, -0.0140815098, 0.0140500246, 0.0235190336, 0.0138217611, 0.0293751787, 0.0134360744, -0.00939816795, 0.0297687352, 0.00973662827, -0.00225508795, -0.0143806133, 0.0171906184, 0.0112636331, -0.0215669852, -0.0223855861, -0.00370928529, 0.00126135373, 0.00164015347, -0.00919351727, 0.00945326593, 0.0102954805, -0.0082568489, -0.00631267205, 0.0166711211, 0.000591321092, 0.0325866118, 0.0239755604, -0.0283361841, -0.00470301928, 0.0181351583, -0.0109015601, 0.0310438648, -0.00357547542, 0.00521858083, 0.0069226874, 0.00483682938, -0.00114820583, -0.00813091081, -0.0100750877, -0.00340821338, -0.0252034627, -0.0232041869, 0.0244320873, -0.0233773515, 0.0136958221, 0.00498244585, -0.0011609965, 0.00152995717, -0.00207405118, 0.012680443, -0.0153802512, -0.00190186966, -0.00552162062, 0.00290642679, 0.00156045798, 0.0183712933, -0.00497063901, -0.00877634622, 0.000539174594, -0.0132235531, -0.00755631598, -0.00837491639, 0.0178360548, 0.00555704068, -0.0217086654, -0.00065625814, -0.0133022647, -0.0112321489, 0.0136171104, 0.000935684424, 0.011247891, 0.00691875163, -0.00350266718, -0.0102010267, 0.0187018812, 0.0122475289, 0.000666097098, 0.00726508303, -0.0100672171, 0.00924861617, -0.0215984695, -0.012790639, 0.00138630846, 0.00953197759, 0.012082234, -0.0148292696, 0.0264313631, -0.00700927, -0.00164113741, -0.00734379468, -0.0178990234, 0.00302842981, -0.0101931551, -0.0128693506, -0.012444308, -0.00837491639, 0.0157738086, 0.00941391, 0.00534451939, -0.000104600367, -0.00198353291, -0.00924074464, -0.01320781, 0.0180249624, -0.0636304766, -0.0053956816, 0.0125387618, 0.0148843676, -0.00971301459, 0.0299419016, 0.0323977061, 0.000653306488, 0.00140500243, 0.0145301661, 0.0170646794, -0.0201816596, 0.00337279309, 0.00183988421, -0.01571084, -0.00356760435, 0.0088314442, 0.0057616909, -0.000230600461, -0.00488405628, -0.00711553078, 0.00342592341, 0.00986256637, -0.00774522359, -0.0116335778, 0.0130031602, -0.00113443122, 0.00720604928, 0.0161201414, 0.00313272257, -0.00426223455, 0.0108464621, 0.0173008144, -0.0162933059, 0.0212363955, 0.00671410142, -0.000826964, -0.0308706984, -0.0101616709, -0.0240070447, 0.00353415194, 0.0161201414, 0.00386474072, -0.0174267534, -0.00592698529, 0.0137273073, -0.00251483638, 0.0029182334, -0.00485650729, 0.0206696726, -0.00561213866, -0.0119090686, -0.00248138397, -0.00471876189, 0.0340663902, 0.00186546543, 0.00830407627, -0.0058522094, -0.00181823852, -0.00301268743, -0.0166711211, -0.00889441371, -0.0026978408, -0.0134124607, 0.0124049522, 0.00403397065, 0.00308352779, 0.004998188, -0.00254435325, 0.0137824053, -0.0143570006, 0.0135541419, -0.00926435832, -0.00647403114, -0.0210789721, -0.00387457968, -0.00763502764, -0.00114427018, -0.0139949266, 0.0227476601, 0.00213505281, 0.0112085352, 0.0303512029, 0.0037210919, 0.00549013587, -0.00735560106, -0.0416227058, 0.0216929242, 0.014931595, 0.00141976087, 0.0164979566, -0.0121137192, 0.00135187211, -0.00227476587, 0.0045534675, 0.00119444891, 0.00854021125, -0.0167655759, 0.0070919171, 0.0160571709, -0.0163562745, -0.00252270745, 0.00498244585, 0.00145518116, 0.0279583689, -0.0255812779, 0.0263998788, -0.0149709508, 0.0086504072, 0.0233930945, 0.0385686941, -0.00263093598, 0.0138768591, -0.00741857057, 0.00831194781, -0.00802858546, 0.00321340212, 0.0101459287, 0.0132865217, 0.00897312537, -0.00398084056, -0.0378760323, -9.14715201e-06, -0.0104056764, 0.00506115751, -0.000671508547, -0.0147348158, -0.00170017104, 0.00571052823, -0.00523432298, -0.0148922391, -0.0115076397, 0.000454805588, -0.00174247858, 0.00900461, -0.010122315, 0.00273129344, -0.00422287872, -0.0139555708, 0.0125072766, -0.00438030204, -0.00272539, 9.74671275e-05, 0.0117673874, -0.0209845193, -0.00941391, 0.01564, -0.0127670253, -0.00608047284, -0.0147190737, -0.0122003015, -0.0133258775, 0.00619460456, -0.000241054353, 0.000381259422, -0.00880783051, -0.00074825238, -0.011302989, -0.00539961737, 0.00563181657, 0.0111455657, -0.00885505788, -0.0104922596, 0.0241487268, -0.00804039277, -0.000805810269, 0.0116493199, 0.00702501228, -0.00984682422, 0.0112872468, 0.0115233818, 0.0114525417, -0.016923, -0.0100829592, 0.0166711211, -0.00850085542, 0.0149079813, 0.00207405118, 0.0255655348, 0.0149866929, 0.0169544835, 0.00666293874, -0.0043252036, -0.022133708, -0.0245895106, -0.016198853, 0.00614344236, 0.0234875493, 0.00580498204, 0.00508477073, 0.0198195875, 0.00150339201, 0.00225902349, -0.0152306994, -0.00735953683, -0.00934307, -0.00691088056, 0.014821399, 0.0151913436, -0.00598601904, -0.0116965473, -0.00847724173, 0.0129559329, 0.000480632851, -0.0128536085, -0.00291233, -0.00747366855, 0.00172870408, -0.0176471453, 0.00973662827, 0.016309049, -0.00167852535, -0.009815339, 0.00666293874, 0.0176786315, 0.00471876189, -0.0134833008, 0.0339089669, 0.0101380572, 0.0126017313, 0.00131645193, 0.0126174735, 0.00428191246, 0.0151047604, 0.0109409159, -0.010594585, -0.0122947553, 0.00404577749, -0.00693055848, -0.0213780776, -0.00453772489, 0.0100357318, 0.0273444187, 0.0124206943, -0.000695122, 0.0202446301, 0.0072768894, 0.00653306488, 0.00711553078, -0.00106851023, 0.0343812369, 0.000430700165, 0.0189537592, -0.00550981378, 0.00377225457, 0.0174424965, -0.0140578961, -0.0217873771, -0.0085244691, -0.0181509, 0.00542716635, -0.00435275258, -0.0178832803, 0.00818600878, 0.0258803815, 0.00758386496, -0.0109645296, -0.00326456456, -0.00218031206, 0.0160178151, -0.00672984403, -0.00176215649, 0.00798135903, -0.0183555502, 0.00231805723, -0.0135462703, -0.000333786476, -0.00495489687, 0.00847724173, -0.0019117085, 0.00374864112, -0.0210002605, -0.00390409655, 0.0059742122, -0.00424649194, -0.0033708252, -0.00189104676, 0.0140815098, -0.020354826, 0.0144278407, 0.00916203298, -0.0112951184, -0.00974449888, 0.00204847, 0.0189222749, -0.0129874181, -0.00623002509, -0.00752876699, -0.0168757718, -0.00637170579, -0.00876847468, 0.00286707096, 0.00283165067, -0.0141917057, -0.0133022647, -0.00260338699, 0.00325079, 0.0050887065, -0.0320671163, 0.0201344341, 0.0174110103, -0.0177730843, 0.0105788419, 0.00807581283, 0.00398674374, -0.0343182683, -0.004998188, 3.32064665e-05, -0.000537698797, -0.00738315051, -0.0066471966, -0.0163247902, -0.0348535068, -0.00279229484, -0.0161043983, -0.0121058477, 0.0012436437, -0.018339809, 0.00122298184, -0.00133809762, -0.017253587, 0.0132550374, 0.0109094307, -0.00321536977, 0.00748547539, 0.00792232528, 0.0147348158, 0.00453378959, -0.0044157221, -0.0243218914, -0.0102246394, -0.00497457478, 0.00136367884, -0.000521464506, -0.00382932043, -0.0166081525, -0.0227634013, -0.0230310205, -0.0156085147, -0.0455897711, -0.0337830298, 0.0203863103, 0.0081623951, 0.0184814893, 0.00676132832, -0.00933519844, -0.0155140609, -0.00969727244, -0.00767438347, -0.0163405333, 0.00860318076, -0.0100829592, 0.00756418705, 0.0138847306, 0.00957133342, -0.00946113747, -0.00425042771, -0.0164822135, 0.0202603713, -0.00912267715, -0.0209687762, -0.00751696, 0.00392377423, -0.0117673874, -0.0281787608, 0.00735953683, 0.00608047284, 0.00961068925, 0.00323308, -0.000422337063, -0.00199140399, 0.00586008048, -0.00283165067, 0.0670623, 0.00947688, 0.013569884, -0.0551611073, -0.0199297834, -0.0295326021, -0.00265651732, 0.0463454053, -0.0128929643, -0.0127197979, 0.0159863308, -0.0090203518, -0.0152464416, 0.0211419426, 0.00294578262, -0.00502967276, -0.0237236843, -0.00868976302, -0.0240227878, -0.00152208598, 0.00671803718, -0.0246524811, 0.0159076191, -0.0309966374, 0.0083434321, 0.00172476843, -0.0147899138, -0.0139477, -0.0130267739, -0.00919351727, 0.00806794129, 0.00440391526, 0.00700533437, -0.0194260292, -0.0035085706, -0.00623396039, -0.000854513084, -7.49605242e-05, 0.0103427069, -0.000979959732, 0.0242116954, 0.0154117355, -0.0109251738, 0.0144671965, 0.00414416706, 0.0121609457, -0.0097759841, 0.00149945647, 0.0095949471, -0.0186546557, -0.000443982746, -0.0127748968, -0.00347905373, -0.000227033845, -0.00346724712, 0.00202288874, 0.0287297424, -0.00371322082, 0.0120507497, -0.00391787104, -0.00323308, 0.0204492789, -0.00654880702, 0.010051474, -0.00791051798, -0.0294224042, -0.00854021125, 0.00373486662, 0.0106339399, 0.00783180632, -0.00454559643, -0.0123262405, -0.0055294917, -0.015946975, -0.00251286849, -0.00963430293, -0.0317837521, 0.00345740817, 0.0220392551, -0.000160005977, -0.017379526, 0.0241487268, -0.0160965268, 0.00103604177, -0.0269666016, -0.0140578961, -0.0110432412, 0.00700533437, -0.00417565182, 0.0354517139, -0.00122494961, 0.0137902768, -0.0293436926, 0.0169544835, 0.0178045686, 0.0139004728, -0.0279268846, 0.00682036206, 0.0130031602, 0.00421894295, 0.00594272744, 0.012916577, -0.0161201414, -0.00965004507, -0.000234659034, 0.032145828, 0.00697385, 0.0247941613, 0.00687939581, 0.00891802739, -0.0117673874, -0.00109113986, 0.0178045686, 0.0163877606, 0.0133809764, 0.00898886751, -0.00868976302, -0.00782787055, 0.0134360744, -0.0112951184, 0.00780425733, 0.00842214376, 0.00590337161, -0.000533763203, 0.0127985096, -0.0223541018, 0.00917777512, -0.0147190737, -0.00271358318, -0.0147269452, -0.00524613, -0.00678100623, -0.00488405628, -0.00645435322, 0.0166553799, 0.00442752894, 0.0214095619, 0.00734379468, 0.0255497936, 0.00847724173, 0.00680068415, 0.00100357318, 0.0171119068, 0.013097614, -0.0120507497, -0.0110038854, 0.0212993659, -0.00704862596, 0.00610408653, 0.0334996656, 0.012444308, 0.0131605836, 0.0237551685, -0.0302252639, 0.0259433519, 0.0191741511, -0.03142168, -0.0158052947, 0.0287454855, 0.0168442875, 0.00402413169, -0.00134104933, -0.00572627084, -0.00160866883, 0.0164507292, 0.00186152989, 0.0244635735, -0.0311225764, 0.0126174735, 0.0143255154, 0.00311894808, 0.0393243283, -0.0118618421, 0.00697385, 0.00708798179, 0.0198353287, -0.00744218379, -0.0259433519, 0.000204035285, -0.0217716359, -0.00952410605, 0.00909906346, 0.0329014584, 0.0475418195, -0.000893376942, -0.0122790132, 0.0145537788, 0.00525400089, 0.0142704174, -0.0172378458, -0.00780032203, 0.0374037623, 0.0175684337, 0.00945326593, 0.0143097732, -0.0155691588, 0.017489722, -0.00386277284, -0.0216456968, 0.00520283822, 0.0072257272, -0.00211143936, -0.0163877606, -0.0262424555, -0.0320986, 0.027375903, 0.0134833008, 0.00219999, 0.0131763257, 0.00746973325, 0.0084378859]
07 Oct, 2022
Angular PrimeNG Form Calendar DateFormat Component 07 Oct, 2022 Angular PrimeNG is a collection of UI components for the Angular framework developed and maintained by Google. It enables developers to develop scalable and responsive interfaces in less time and hence increases productivity. In this article, we will see Angular PrimeNG Form Calendar DateFormat Component. The Calendar Component is used to input the user’s date and time. The default date format of the calendar component is “mm/dd/yy”. The dateFormat property is used to customize the date format. The below options can be used as a part of the date format. DateFormat Options: d: It is used to show the day of the month without leading zero. dd: It is used to show the day of the month in two digits. o: It is used to show the day of the month without the leading zero. oo: It is used to show the day of the month in three digits. D: It is used to show the day’s name in short form. DD: It is used to show the day’s name in long form. m: It is used to show the month of the year without the leading zero. mm: It is used to show the month of the year in two digits. M: It is used to show the month’s name in short form. MM: It is used to show the month’s name in long form. y: It is used to show the year in two digits. yy: It is used to show the year in four digits. @: It is used to show the Unix timestamp (ms since 01/01/1970). !: It is used to show the Windows ticks (100ns since 01/01/0001). ‘…’: It is used to show literal text. ”: It is used to show a single quote. anything else: literal text Angular PrimeNG Form Calendar DateFormat Properties: dateFormat: This property is used to format the date picked by the calendar. Syntax: <p-calendar dateFormat="DD, dd/mm/yy" [(ngModel)]="calendarVal"> </p-calendar> Creating Angular Application and Installing the Module: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Finally, Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: The project Structure will look like this after following the above steps: Project Structure Example 1: In this example, we set the dateFormat property to “DD, dd/mm/yy”, which shows the full name of the day and the date in dd/mm/yy format. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4> Angular PrimeNG Form Calendar DateFormat Component </h4> <h3>DateFormat = DD, dd/mm/yy</h3> <p-calendar dateFormat="DD, dd/mm/yy" [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Example 2: This is another example of setting a custom date format to the calendar, where we set the dateFormat property of the calendar to “dd/mm/yy – D”. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4> Angular PrimeNG Form Calendar DateFormat Component </h4> <h3>DateFormat = dd/mm/y - D</h3> <p-calendar dateFormat="dd/mm/y - D" [(ngModel)]="calendarVal"> </p-calendar> app.component.ts import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { calendarVal?: Date; } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, FormsModule, CalendarModule ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule { } Output: Reference: http://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar DateFormat Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-dateformat-component?ref=asr8
Languages
Angular PrimeNG Form Calendar DateFormat Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Angular PrimeNG Form Calendar DateFormat Component, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0213665161, -0.00560794957, -0.0157509577, 0.0315323509, 0.0408459641, 0.0276364628, -0.0299192108, 0.0235427357, -0.000358581601, -0.00218002382, 0.0267233644, -0.00163121335, -0.00136299047, -0.0522901379, -0.00253575202, -0.00453505851, -0.0475420207, 0.00590090221, -0.00265369401, 0.0257189553, -0.0271951314, 0.0258559212, -0.0311366767, -0.00801244378, -0.00183856289, 0.0554555468, 0.00724772317, 0.00764720421, 0.0104017192, 0.0258407015, 0.0259624477, 0.00527695147, 0.0120376889, -0.0271342583, -0.0616341829, -0.0103408461, 0.0158879235, 0.0460506268, -0.0148987323, -0.0206816923, 9.7314005e-05, 0.00510574551, 0.0156444293, 0.0478768237, -0.0378936082, -0.000807521923, -0.022583982, -0.0139704151, -0.0241058134, -0.00982342381, 0.00916142669, 0.0130953621, 0.0409677103, 0.0598688573, 0.0168162398, 0.0364630856, 0.00656670379, 0.0123192277, 0.00776514597, 0.014183471, 0.0595949292, -0.046507176, -0.00390730286, -0.0186272208, 0.032871563, 0.041332949, -0.0294778794, 0.0405720323, 0.0283365063, 0.0203925446, -0.0241514686, 0.0175467189, -0.0105615119, 0.00796678849, -0.0210621506, -0.0269212034, 0.0222339612, -0.00133921183, -0.0440418087, 0.0278799571, -0.0155455107, -0.0104930298, -0.0188250579, 0.00782221463, 0.00459593162, 0.00273739477, 0.0513466, -0.0483942479, 0.00479376968, 0.0232231524, 0.0256276447, -0.0114061283, 0.00879618712, -0.0319280289, -0.0175467189, 0.0202251431, 0.0318671539, 0.0104245469, -0.0399024263, 0.0127377314, -0.0138410591, 0.0052959742, 0.0172575712, -0.0463854298, 0.0327802561, -0.0215643551, 0.0433113314, -0.019753376, 0.0230253134, -0.0472072177, -0.00993756112, -0.00604167162, 0.0151422257, 0.0280473586, -0.0819962919, 0.0511335433, -0.00584763847, -0.0396893695, 0.0487899221, 0.0084613841, -0.0234818626, -0.00093592651, 0.00740371132, 0.0435548238, -0.0298887752, 0.0398415551, -0.00995277893, -0.00576774217, 0.0299344286, -0.0324454531, -0.016603183, -0.000497448724, -0.00228274753, 0.0175923742, 0.0355804265, 0.0370718203, -0.00607210863, 0.00118227303, -0.0349716917, -0.0103941103, 0.00498780329, -0.0161770713, 0.03253676, -0.0413633846, -0.0129355695, -0.000368093053, 0.0231774971, 0.0701260045, 0.0133769009, 0.00591231603, -0.0517118424, -0.0579209141, 0.00661235861, -0.00272217649, 0.0398415551, -0.0412416384, -0.00838529225, -0.017881522, -0.0484855585, -0.047907263, 0.0154922465, 0.0187033117, 0.00146856753, -0.00974733196, 0.0158270504, -0.0061482, 0.0192968249, -0.0239688493, -0.00738088368, 0.0428547785, 0.0160248876, 0.00741512468, -0.0013591859, -0.0184750371, -0.0572817437, 0.00786787, 0.010888706, 0.0103104096, 0.0147085031, 0.00241400558, -0.0356108621, 0.0137497494, 0.0162379444, 0.0131638441, 0.0117257135, -0.00233030482, 0.0130116614, -0.0172271356, -0.012227918, -0.021503482, -0.00919186324, 0.0233905539, 0.0331759304, 0.0362500325, 0.0293409154, -0.0172880087, -0.0165118743, 0.00866683107, -0.0252624061, 0.00569545524, -0.00305888173, -0.0323237032, -0.0161161982, 0.0149443876, 0.0337542258, 0.0289908927, 0.0048318156, 0.00235123, 0.0323237032, -0.012364882, -0.00499921711, 0.00726294192, 0.00514759589, -0.0126540307, 0.00826354604, 0.00712597696, -0.000783743337, -0.0239536315, 0.0157053024, -0.0353673697, -0.00467963237, 0.0127301216, -0.00271456735, 0.0113604739, -0.0591688156, -0.0142747816, -0.0205295086, -0.0134606017, 0.00754448073, 0.010416938, 0.00836246554, -0.0125322836, -0.0202251431, 0.000373562129, 0.0656213835, -0.00287626195, 0.00665420899, 0.0166488383, -0.0270429496, 0.0703086257, 0.027286442, -0.0402372293, 0.00374941272, -0.0279103927, 0.00710695377, -0.0103028007, 0.0278951749, 0.0356412977, 0.0138714956, 0.033602044, -0.0132855903, -0.0223252717, -0.0349108204, 0.0292039495, -0.0229035672, -0.0037532174, -0.0138638867, 0.0124181462, 0.0274538435, 0.0490334183, 0.0142062986, 0.0296300631, 0.0102875819, 0.0205903836, -0.00786026102, -0.0304061975, -0.00374560826, -0.0198142491, -0.0165270921, 0.0190076772, 0.0358239189, -0.0135443024, 0.0533249825, 0.00961797591, -0.0404198505, -0.0147161121, -0.0523205735, -0.00932882819, 0.0560947172, 0.0520162061, 0.00658953143, 0.00605308544, -0.00221616728, -0.00473289657, -0.00477474695, -0.0261298493, 0.00523129664, -0.00981581397, -0.00120700279, 0.0272712242, 0.000769476173, -0.0250493493, -0.0232079327, 0.038502343, 0.00757111283, 0.0417286232, 0.00349260378, -0.0118246321, 0.0197685938, 0.0299800839, -0.0208490938, -0.0178510863, -0.0226600729, 2.54282622e-05, -0.0175315011, 0.0261146314, 0.0254754629, -0.0190076772, -0.0185967833, -0.0265103076, 0.0251558777, -0.0173488818, -0.0356412977, -0.00675312802, -0.0344238319, 0.0210925881, -0.00797439832, 0.0390502028, -0.0149748242, -0.00296566961, -6.2567492e-06, -0.0154313734, -0.022781821, 0.0111854626, 0.0466289222, -0.0001293557, -0.0464767404, -0.0156444293, 0.0240449402, -0.00695096608, -0.0646474063, -0.00778416917, -0.00410514092, 0.00422308315, 0.0139171509, 0.0167097114, 0.0267842375, -0.0412416384, 0.0137573583, 0.0135214748, -0.0058057881, 0.027758209, 0.00247107423, -0.0205142908, 0.029036548, -0.0187641848, 0.00792874303, -0.0159183592, 0.0108810961, 0.0187337473, 0.00142196147, 0.00840812, 0.0630038306, 0.00488888426, 0.0331150591, -0.0311671123, 0.00233410927, -0.0675693303, -0.0333281122, -0.00812658109, -0.0150052607, -0.01283665, -0.000451318221, 0.0442548655, 0.046507176, -0.0539641529, -0.00327003584, 0.019966431, 4.04533785e-05, -0.0248515122, -0.021503482, -0.00154941494, -0.0267690197, 0.0172423534, -0.0198142491, -0.00608352199, 0.000607305963, 0.0116420127, 0.0330237485, -0.0026042345, -0.0497030243, 0.0684824288, 0.0125322836, 0.0142823905, 0.0290517677, 0.0279408302, 0.0108278329, -0.00923751853, -0.017607592, -0.0167553667, -0.00681780605, 0.0435548238, 0.0015475126, -0.0221122149, -0.0153400637, -0.0317758471, 0.0217165388, 0.0207273476, 0.0748132467, -0.00830920134, 0.0165575296, 0.010279973, -1.09753191e-05, -0.0187185295, 0.0129203508, 0.00146095839, -0.0349108204, -0.00101867609, 0.0646474063, 0.0297365915, 0.010013652, 0.033875972, -0.0549381226, -0.0175162833, 0.0134149464, 0.0101810535, 0.00597318914, 0.0322323963, -0.0283060689, -0.0102495365, 0.0468724146, -0.0082939826, -0.0332368053, 0.00684063323, 0.0158574861, 0.0230253134, -0.0491247252, 0.0308323093, -0.00604547653, 0.0421243, -0.0428243428, -0.008400511, 0.0243036523, 0.0134910382, 0.0112311179, -0.00945057441, 0.0124866292, 0.00642213, 0.0217621922, 0.00490029808, -0.0312279854, -0.0325672, 0.0452592745, -0.0339672826, -0.0553338, -0.00371517171, -0.0774916708, -0.000739990675, -0.0306344721, 0.0201490521, -0.0191446431, -0.018885931, -0.0387458354, -0.00103389437, 0.0247297641, 0.00341461, -0.0085070394, 0.0101810535, 0.016466219, -0.0134301642, 0.0221883059, 0.0286713094, -0.00633842917, 0.0108810961, 0.0242275596, -0.0229644403, 0.0210621506, 0.00494214846, -0.00734283775, 0.0439504981, 0.000113245675, 0.00722109154, 0.0218687207, -0.00484322943, 0.0231470596, 0.00455408124, -0.0117865866, -0.0125855478, -0.00154465914, 0.00536826113, 0.071708709, 0.0154085457, 0.0504943766, -0.0103560649, -0.00364478678, -0.0296452809, 0.00386925717, -0.0441026837, -0.0351543128, 0.051407475, 0.0105310753, 0.0225535464, -0.0304214153, 0.00252243597, -0.00992234237, 0.00213436899, 0.000241709669, 0.00565360487, 0.00945057441, -0.0268755481, 0.00291050319, 0.0367978886, -0.0254298076, 0.013574739, 0.0351238735, -0.0116800582, -0.0222796164, -0.00473670103, -0.0108430507, -0.00101201807, 0.00524271, 0.00658572651, -0.00163501792, 0.0417895, -0.0167705845, -0.0130725345, -0.00607210863, 0.045167964, -0.0206664745, -0.0208490938, 0.0168162398, 0.0139856329, -0.0115354843, 0.0189163685, -0.0176228117, 0.0178510863, 0.0114517836, -0.0353064947, 0.0229035672, 0.0145867569, 0.00390349817, -0.00971689541, 0.0376196802, 0.0252776239, -0.0063041877, -0.0084613841, -0.0312584229, -0.0174858458, -0.00711075868, -0.00246156286, -0.0507683046, 0.0277277734, -0.0259320121, 0.00445896666, -0.0119387694, -0.0138106225, -0.0126007665, 0.00285153207, 0.00183285598, 0.0368283279, 0.000198670372, 0.0201186147, -0.0129203508, -0.00900163408, -0.0209404044, -0.0219448134, -0.0444374867, -0.0195859745, -0.00450842641, 0.00678736949, 0.0239536315, -0.00827876478, 0.0261602867, 0.0233448986, -0.0109647969, -0.000452031556, 0.00553566264, 0.00478616077, -0.00184522092, -0.000720967771, 0.0229644403, -0.0177597757, -0.00911577139, 0.0217469744, -0.00464539137, 0.00398339424, 0.0301018301, 0.00802766252, 0.0274234079, -0.00636506081, 0.0230253134, 0.0283212885, 0.00101296918, -0.0217774119, 0.00808853563, 0.0122050904, 0.0262515973, -0.0135595202, -0.0441026837, -0.00605308544, 0.0324454531, 0.0199055579, -0.0114670014, -0.0024159078, 0.0165727474, 0.0269364212, -0.0118398508, 0.0133692911, 0.0424286686, -0.00426873798, -0.00563458167, 0.0316236615, 0.000817508961, 0.0370718203, -0.0173793174, 0.00645637093, -0.015720522, -0.00712597696, 0.0228122566, -0.0303605422, -0.0281386673, 0.0155379018, 0.0120224701, 0.00493834401, -0.00345836254, -0.0024330283, 0.0154770287, -0.0256276447, -0.00661235861, -0.0176228117, -0.00525031937, 0.0250341315, 0.0388980173, 0.00476333313, 0.0255667716, -0.00815701764, 0.0152867995, -0.0440418087, -0.00967124, -0.0336324796, -0.0240601581, -0.0324758887, -0.00842333864, -0.00257570017, 0.0379849188, -0.00358010898, -0.0221122149, -0.0314410441, -0.00182239339, 0.00887988787, -0.00116895698, 0.00410514092, -0.0152487531, 0.0743262619, -0.00454266742, 0.0215339176, 0.0118094143, 0.0411807671, -0.00491932081, -0.0102495365, -0.0294170063, -0.00890271552, 0.0257189553, 0.0236492641, 0.00967885, 0.00789830647, 0.0289300196, -0.0183380712, -0.0110789351, 0.0115659209, -0.0105767306, -0.000751404383, 0.0197381563, -0.0332976766, 0.0292496048, 0.000150875348, 0.0167401489, 0.0209099669, 0.0210164953, 0.0376805514, 0.00616722275, -0.026814675, -0.00498399884, -7.13358604e-05, -0.0193881355, -0.0312888585, -0.00705749448, 0.02848869, 0.00719826389, -0.00558131794, -0.023116624, 0.0249428209, 0.033541169, 0.0156139927, 0.0167097114, -0.00539489323, -0.0174249727, -0.0219600312, -0.00639549782, -0.00975494087, 0.0392936952, -0.0244710539, 0.0228883494, 0.00749121653, -0.000673410541, -0.0235275179, -0.00815701764, -0.0100060431, 0.0172575712, -0.0149519965, -0.00349640823, -0.0155302919, -0.016801022, -0.00711836759, 0.00107764709, 0.0159640145, 0.00967885, 0.0193120446, -0.0196772832, -0.00843094755, 0.0147465486, 0.00419645105, -0.00102057832, 0.037437059, -0.0259928852, 0.0458071344, -0.021305643, 0.0171206072, -0.0307257809, -0.000545957126, 0.00164643163, -0.0459593162, 0.000576393737, 0.00579437427, -0.0189011488, 0.00869726762, 0.0256124269, -0.0512857288, -0.0274690613, 0.000925939472, -0.0326889455, 0.0106528215, 0.0311975498, -0.0127833858, -0.00669605937, -0.0365239605, -0.0017577156, 0.0403285399, -0.0145106651, 0.0186424386, -0.00410133647, -0.0260841958, -0.000208419602, -0.00447038049, 0.0168618951, 0.0019089476, 0.00439428911, -0.0236949194, -0.0084613841, 0.00961036701, -0.0154770287, -0.00466821855, 0.0270277299, -0.0111474171, -0.0111398082, 0.00569925969, -0.0175619368, 0.0214121714, 0.0178206488, 0.0144041367, -0.00105006387, 0.000468914397, -0.0428547785, 0.0180489235, 0.00243493076, 0.0142139075, -0.00901685283, 0.00455027679, 0.00797439832, 0.022447018, -0.0048051835, 0.022173088, 0.0193120446, 0.0143356547, 0.00658572651, -0.00727435527, -0.0185967833, -0.0297365915, 0.0134834284, 0.0114746112, -0.00640310673, -0.0112996, 0.00174059498, -0.0329020023, 0.0107365223, -0.0162988175, -0.00143337518, -0.015720522, 0.012030079, 0.0250493493, 0.00268603303, 0.00874292292, 0.0131257987, -0.00396437151, 0.0332976766, -0.0417286232, -0.00587807503, 0.00381979742, -0.00161028816, -0.050403066, -0.0219448134, -0.010279973, 0.0234209895, -0.00156653544, 0.0102647543, -0.0110256709, -0.0139323687, -0.00633842917, -0.00685585197, -0.00158650952, -0.013506256, 0.0212295521, -0.000450604857, 0.0114289559, 0.00608352199, -0.0274386257, 0.0115735298, 0.00724391872, -0.0292952601, 0.0067683463, 0.0160705429, -0.0260994136, 0.0113985194, 0.000798486057, -0.02378623, 0.00795918, 0.00878857821, 0.0129660061, 0.00865922216, 0.00287626195, -0.00753687136, -0.0361587219, -0.0321715213, 0.0116496217, 0.00801244378, 0.00945057441, 0.000691006717, 0.0272712242, 0.021305643, 0.00760915829, 0.0045578857, 0.022447018, 0.013780186, -0.0193424802, 0.00617102766, 0.017272789, -0.0161466338, -0.00825593714, 0.0110028433, 0.00117846846, 0.0476333313, 0.034210775, -0.00423069205, 0.0267538019, -0.0298735555, 0.0231318418, -0.0254754629, 0.023588391, 0.00356679293, -0.00442853, -0.00445516221, -0.00551283546, 0.0107289134, 0.00942013785, 0.0095951492, -0.00747980271, 0.00738088368, -0.0181097966, -0.013506256, -0.0126692485, -0.0155987749, 0.019220734, 0.0351238735, 0.0147693763, -0.0110941529, -0.0315323509, -0.0134606017, -0.0136127844, 0.0178358667, 0.00317301904, 0.0183380712, -0.00926034618, -0.019753376, -0.0129888337, 0.00160458125, 0.0222643968, -0.0111245895, -0.0269668568, -0.0234818626, 0.00616341829, -0.00164928508, -0.0172271356, -0.00162645767, -0.0533554181, 0.0240753777, 0.046841979, 0.00742273405, -0.0102419276, -0.0150889615, 0.0294626616, 0.00220855814, 0.0217317566, 0.0313497335, -0.0189924594, 0.020088179, -0.0394458771, 0.0218991581, 0.00217812159, -0.021640446, -0.00115468982, -0.00272217649, 0.04757246, -0.00916142669, -0.00969406776, 0.00743414788, -0.0312888585, -0.0444070473, 0.0476942062, 0.00196316279, -0.0387154, 0.000795157044, 0.0395980589, -0.00391491223, 0.013239936, 0.00334993191, -0.000827971555, -0.0211230237, 0.00685965642, -0.0138258412, 0.0217926297, -0.00098348374, 0.0474507138, 0.015522683, 0.00490790699, -0.0285039078, 0.0126768583, -0.0215947907, 0.0353064947, -0.032871563, -0.00626614178, 0.028093012, 0.0189924594, -0.0104549835, -0.000851274584, 0.0190989878, -0.0299496483, 0.00243493076, 0.0189924594, 0.00803527143, -0.0203925446, 0.00723631, -0.0388675816, 0.0233601164, 0.0288082734, 0.021503482, -0.0251406599, -0.0276669, 0.0156139927, 0.0157966129, 0.0224013627, -0.0263124704, -0.0310149305, -0.00792874303, 0.0102191, 0.0116191851, -0.00403665844, -0.00215148949, -0.00448559877, 0.0149367778, -0.0146324113, 0.0166640561, -0.0276669, 0.0355195515, -0.00390349817, -0.00214958726, 0.0263581257, -0.00280777947, -0.0109115336, -0.012433365, -0.045502767, 0.0207425654, -0.00488888426, 0.0119235516, -0.00549000781, 0.0482420661, -0.0260537583, 0.00637647463, -0.0327498168, -0.00300751976, 0.017607592, 0.00468343683, 0.00868205, -0.00882662367, -0.0379240438, -0.01464763, -0.0247602016, 0.0344542712, 0.00540630706, 0.002318891, 0.00682922, -0.00910055358, -0.010348455, 0.011155026, -0.00438287528, 0.00881140586, 0.0302083585, 0.0232840255, 0.0104397656, -0.00639549782, -0.00169779349, -0.0227057282, -0.00989190582, 0.0103865014, 0.0127757769, 0.0285952166, -0.00517803244, 0.00132399355, 0.0204229821, -0.0164510012, -0.000399718614, 0.0119539881, 0.0258559212, -0.00637647463, -0.00639169291, 0.000565455586, 0.0235275179, -0.00241971249, -0.013102971, 0.00800483488, -0.00862878561, 7.48432067e-05, 0.00450081704, 0.0101658357, 0.0189620219, 0.00810375344, -0.00359532726, -0.0209251866, -0.0213817358, -0.00369614875, -0.0149063412, -0.0354282409, -0.0101125715, 0.0230100956, -0.0201947056, -0.0176989026, -0.00628516497, -0.00419645105, 0.0293104779, 0.0179728325, -0.0236644819, -0.00973972306, 0.0015208805, 0.0150509151, -0.00650963513, -0.0167097114, 0.0068482426, -0.0310301483, -0.0109724067, 0.000140888325, -0.0178510863, -0.00556609919, -0.00579437427, -0.00931361, -0.020636037, -0.026205942, 0.0249123853, -0.00154370803, -0.00566882314, -0.0156596489, 0.0191902984, -0.00905489828, -0.00522368727, 0.00534162903, -0.0147541584, 0.0163749084, -0.0215339176, 0.0141910808, -0.0171814803, -0.00916142669, 0.0121061709, 0.0369196385, 0.00392632559, 0.0144269643, 0.0271342583, -0.00895598, -0.0252624061, -0.00264037796, -0.0214730445, -0.00165118743, -0.0433722027, -0.00952666625, -0.00955710281, -0.0196772832, -0.0199816506, 0.00702705793, 0.0158118308, -0.0272407867, 0.0563382097, 0.00611776346, -0.0106071671, -0.0236492641, -0.0147998128, -0.0234818626, 0.00534162903, 0.00817223638, 0.0114746112, -0.0123268366, 0.0316236615, 0.00576393772, -0.0166488383, 0.00397578534, -0.0221883059, -0.00724011427, -0.0131866718, 0.00999843422, 0.0288082734, -0.0287169646, 0.00821789075, 0.00426873798, 0.00889510661, 0.00515900925, -0.00795918, -0.0100516984, 0.0136736576, 0.00908533484, -0.0183076356, -0.0128518688, 0.00519705517, -0.00818745419, 0.014114989, 0.00418884167, 0.00119939365, 0.0203164537, 0.0011813218, -0.00123363477, -0.0117028859, 0.00360293663, 0.00301703135, 0.00396817597, -0.0262668151, -0.0073999064, 0.0327802561, 0.0124638015, -0.0219904687, -0.00639930228, 0.00606069481, 0.0173184443, -0.00671127765, -0.00158746063, -0.0182771981, 0.015454201, -0.012098562, 0.0253232792, -0.0437374413, -0.0218991581, -0.00120890501, -0.0283212885, 0.00205827737, -0.00600743061, 0.0196164101, -0.0142215174, -0.00269364216, 0.0213817358, -0.0085146483, 0.0105310753, -0.00314448471, 0.0360369757, 0.00610634964, 0.0193424802, 0.00224279938, -0.00319013977, 0.0047975746, 0.0162988175, 0.0259776674, 0.0179119594, 0.0297822468, -0.00646017538, -0.0124942381, 0.00958753936, -0.00502965366, 0.030741, -0.0164510012, -0.00722109154, -0.00929078273, -0.0335107334, -0.0161618516, -0.0125094568, -0.00675693247, -0.0138106225, -0.0173793174, -0.0172423534, 0.00854508486, -0.0137573583, 0.0236340463, 0.00821028184, 0.00425732415, 0.00145620271, 0.0251558777, 0.0371631309, 0.00906250812, 0.0126844672, -0.0131866718, -0.0123344455, 0.0302083585, -0.00243112608, -0.0107441321, 0.00849182066, 0.0342412144, 0.0206056014, -0.00527314702, -0.0198294669, 0.018216325, -0.00128499663, 0.0166792758, 0.0177597757, 0.0135443024, 0.00572208734, -0.0299800839, -0.012030079, 0.0227513835, 0.0131866718, 0.042672161, -0.00826354604, -0.03253676, 0.01518788, 0.0121366074, 0.0101277903, -0.0128823053, 0.0152487531, -0.00315970299, 0.00160838582, -0.0224317983, 0.0161009785, -0.0212447699, 0.0341803394, -0.00517803244, 0.0130725345, -0.00729337847, 0.00265749847, -0.00999843422, -0.00677215122, 0.00566121377, 0.00325862202, -0.0222187433, -0.000357868237, 0.0272103511, -0.0106147761, -0.0139171509, 0.0267385822, 0.0121594351, 0.00130306836, 0.00619385485, -0.00544054806, 0.00335563882, -0.0101430081, -0.00323769683, -0.00872009527, -0.00630799215, 0.0293561332, 0.0215947907, -0.00693574781, -0.0100745261, 0.0157661755, 0.0157357398, -0.0194033533, -0.0305583794, -0.00459593162, 0.00307790469, 0.000947340217, 0.00711075868, 0.00914620887, 0.0153933279, -0.016801022, 0.0144574009, -0.0242275596, 0.0197229385, 0.0223100521, -0.0225078911, 0.00987668801, -0.0317758471, -0.0033974892, -0.0093897013, -0.00182905141, 0.00450842641, -0.0118702874, 0.00905489828, 0.00512096379, 0.00559653621, 0.0223100521, 0.00710695377, 0.0125398934, 0.0230709687, -0.00530738803, -0.00811136328, -0.0329628736, 0.004637782, 0.00218192628, -0.0264950898, -0.0206816923, 0.0119996425, 0.0104397656, -0.00759394, 0.000627755595, -0.00892554317, -0.00595797086, 0.0227970388, -0.0103865014, -0.00819506403, -0.0156444293, 0.0189924594, -0.00287626195, -0.00654768106, -0.0308170915, 0.0213512983, -0.0175771564, -0.0153628904, -0.0085603036, -0.0207577851, 0.00325862202, -0.0202707984, -0.000576869352, -0.00825593714, -0.00549000781, 0.00499921711, -1.93201288e-07, -0.00996799767, 0.0084537752, -0.0440113731, 0.0118778963, 0.0046644141, -0.0121061709, 0.0113376463, 0.0240753777, 0.00756350346, -0.0270733852, -0.0257493928, 0.00689009298, 0.0137877949, 0.012098562, -0.0183076356, -0.00209442084, -0.0102647543, -0.000175961788, 0.0312888585, -0.012631203, -0.0165270921, 0.00996799767, -0.00343553512, -0.00312355952, 0.00312926644, -0.0291582942, 0.00553185819, -0.0268755481, -0.0163292531, 0.00512476824, 0.010211491, 0.00844616629, 0.00220285146, 0.00937448349, -0.00710314931, 0.00370185566, -0.01464763, -0.0230253134, -0.0221883059, -0.000178458547, -0.0501595736, -0.00774612324, -0.0411198922, 0.0158118308, 0.00659714034, -0.0173945352, 0.016131416, -0.00361815491, 0.012098562, 0.0111778537, 0.00914620887, -0.0120224701, -0.0177902132, 0.0229035672, -0.00774231879, 0.0228426941, -0.0302844513, 0.0219448134, -0.00412416365, 0.0103636738, 0.0340281576, -0.00866683107, 0.0410285816, 0.0113756917, 0.0142062986, -0.000952095957, 0.00391110731, 0.0298735555, 0.00677215122, 0.0131257987, -0.0042535197, 0.00263467105, 0.0196925029, -0.00166069879, 0.0106528215, 0.00272407872, -0.0193729177, 0.00481659733, 0.0223100521, 0.0241362508, 0.0157357398, -0.0235123, -0.0192055162, -0.00517422752, 0.0146628479, -0.0126768583, -0.0169988591, -0.0293104779, 0.0101125715, -0.017805431, -0.0011271066, -0.0211382415, 0.00802766252, 0.0124790203, -0.0252624061, 0.00877335947, -0.00915381778, 0.00961036701, -0.0266777091, -0.00525792828, -0.0167249311, 0.0284278151, 0.0213969536, -0.0145943658, -0.0353064947, 0.0166792758, -0.0156900845, 0.0272560064, -0.0288843662, -0.0209404044, 0.0086211767, -0.0102723641, -0.0102495365, 0.037771862, -0.0247602016, 0.0137421405, 0.00719445944, -0.0165575296, -0.0179271773, -0.00202403613, -0.0221274327, 0.00947340205, -0.00495356228, -0.0211078059, 0.00762057211, 0.0211534612, 0.0182315428, 0.0246232376, 0.0106376037, 0.0180489235, 0.0226905104, 0.00698901201, -0.00388637767, 0.00663518626, 0.00979298726, 0.0297974646, 0.0124105373, -0.0167249311, -0.0257341731, -0.0163140353, 0.0205295086, 0.0106604313, -0.0257798284, -0.0116648395, 0.000563077745, 0.0159031413, 0.00337275956, 0.0211230237, 0.00706510339, 0.00671888702, 0.00793635193, -0.0181554519, -0.0289300196, -0.0118246321, 8.25118113e-05, -0.0199207775, -0.0172575712, -0.00719826389, -0.0140008517, 0.0190685503, -0.0140312882, 0.0170901697, 0.03253676, 0.0017206209, 0.0232383702, 0.0127377314, -0.0105919484, -0.000966363121, -0.00599221233, -0.00488888426, -0.0106147761, -0.00173679041, 0.00385974557, 0.0224622358, 0.0194642264, -0.000154442139, 0.00909294467, 0.00664279517, -0.00159316754, -0.022249179, 0.00435243873, -0.0166944936, -0.0151346158, -0.0101810535, -0.000229582583, -0.0266320538, 0.00878857821, -0.00375511963, -0.00730479229, 0.0367065817, 0.0128138224, 0.0389588922, 0.0180337057, 0.00269364216, 0.0083472468, 0.00177008053, 0.00854508486, -0.0103332372, 0.00688628852, -0.012227918, -0.00205447269, -0.000931170769, -0.0175315011, 0.0172575712, -0.0102267088, -0.00935926475, -0.0260385405, -0.0309236199, 0.000597794482, -0.0072857691, 0.00453505851, 0.0054291347, -0.00129260577, 0.0151650524, 0.000380933488, 0.00377033791, 0.0118018044, 0.0111093717, -0.00916142669, 0.0327498168, 0.00776895089, 0.00968645886, 0.00871248636, 0.00390349817, 0.000433959824, 0.00483562, -0.0127757769, -0.00407470437, -0.000803717354, -0.0387154, -0.00686346088, -0.0164205637, 0.0123953195, 0.00936687365, 0.0140541159, -0.00961797591, 0.00612917729, 0.0134529918, -0.00383121124, 0.00524271, -0.00700803474, 0.0165270921, -0.00182429573, -0.02956919, -0.011558312, -0.00356298848, -0.0030683931, 0.00837768335, -0.00746838888, 0.00611015409, 0.00416601403, -0.0042801518, 0.00598840788, 0.0144041367, 0.0179271773, -0.000700042583, 0.0269364212, 0.0164357815, 0.00496497611, -0.001596021, 0.00604547653, 0.0170140788, 0.0112158991, 0.00022030891, 0.00353635638, 0.0135366926, 0.0019203613, -0.00366761442, -0.00132114009, 0.00607971754, -0.0140388971, -0.00746078, 0.00713358587, 0.00510194059, -0.0025243382, -0.0107365223, 0.00613678619, 0.0271951314, -0.00264228019, 0.0222948343, -0.00256048189, -0.00125931576, 0.00994517, -0.0206664745, -0.0118246321, 0.0399633, 0.00136299047, -0.028823493, -0.0092831729, -0.00244063768, -0.000598270097, -0.00922991, 0.0186728742, 0.00165213854, 0.00903207064, -0.0207882207, -0.0178510863, -0.00402524462, 0.00753687136, 0.0136964852, -0.0189011488, 0.00701183965, 0.00605689, -0.00480137905, -0.00410133647, -0.0122583546, -0.024334088, 0.010751741, 0.00171871867, 0.00328335189, 0.0142519539, 0.0305127259, 0.00384072261, 0.021503482, -0.00765861804, 0.00383311347, -0.0113148186, -0.00950383861, 0.00542152533, -0.0112387268, -0.0111093717, -0.00445135776, -0.0256733, -0.0084537752, -0.00717163179, 0.0147237219, 0.0108582694, 0.00169494, -0.0105006387, -0.00900163408, -0.00454266742, 0.00420406, -0.00948101096, -0.00256428635, 0.0180337057, -0.0220056865, 0.00160267903, 0.0176836848, -0.00633842917, -0.000282252207, 0.00780699635, -0.0141302068, -0.0132855903, 0.014990042, 0.0175619368, 0.0291126408, 0.0236036088, 0.00366000528, 0.00130972639, 0.0156596489, -0.0118702874, -0.00577154662, -0.00624331459, -0.0296604987, 0.00156463322, -0.0053226063, 0.0170445144, 0.0117865866, 0.0121442173, 0.0467506684, -0.0143356547, 0.0177902132, 0.00916142669, -0.00327764498, -0.0155835561, -0.0127072949, -0.0152487531, -0.0031387778, -0.0239536315, -0.00015741447, -0.00465300027, -0.0198599044, -0.00468724174, -0.0271342583, -0.00341841439, 0.000418979296, -0.0107821776, -0.0240449402, 0.0023455231, 0.0217165388, -0.0297822468, -0.00294474442, -0.00726294192, -0.0321715213, 0.00431058835, -6.5153421e-05, 0.0281234495, 0.00544435298, -0.0042268876, -0.0243645255, 0.00916142669, 0.0213512983, 0.00598460296, -6.77096177e-05, -0.0172575712, 0.00674932357, 0.00972450431, 0.00200691563, 0.00438287528, 0.00196696748, -0.0160401054, -0.00635364745, 0.000691482273, 0.00277924514, 0.0166944936, 0.00852225721, -0.003612448, -0.00341270748, -0.0230405312, -0.00950383861, 0.00199169712, 0.0167705845, -0.00774231879, 0.0251863152, -0.00287626195, 0.00494214846, 0.0219600312, -0.0336629152, -0.00447418494, 0.02097084, -0.00908533484, 0.00187375525, -0.002889578, 0.00913099, 0.00590851158, -0.00887227897, -0.000586856331, -0.0253689345, -0.0275451541, 0.00989190582, -0.0168466773, 0.000540250272, 0.0106756492, 0.00134586985, 0.00254336116, 0.00815701764, 0.0136203934, -0.0113604739, 0.0120529067, 0.00463017309, -0.00153514766, 0.0153705, -0.00440570293, -0.00497258501, 0.0150965704, 0.000944011204, 0.00808092579, 0.0170140788, 0.0118246321, 0.00946579315, -0.0153324539, 0.0052883653, -0.0093897013, 0.00764720421, -0.00699281646, -0.00166355225, 0.0149596054, -0.0119463783, 0.0321410857, -0.0117104948, -0.00887988787, 0.00497638946, 0.0228122566, -0.00817223638, -0.0146552389, -0.017881522, -0.00191084994, -0.00555849029, -0.00138011109, 0.0233601164, 0.00910816249, 0.00176152017, 0.0186272208, 0.00787547883, -0.0223404896, -0.00418503722, 0.0232992433, -0.00767383631, -0.00899402518, 0.0253689345, -0.0158879235, 0.00689009298, -0.00493453909, -0.00729337847, -0.0107593499, -0.00158936298, -0.00267271698, -0.0167401489, -0.00259472313, 0.0254906807, 0.000853176869, 0.000508862489, -0.0040937271, -0.00941252895, 0.0125931576, 0.00888749678, -0.0167705845, 0.023253588, 0.00796678849, -0.0272560064, 0.0131105799, 0.00258140708, -0.0150052607, 0.0314410441, -0.000420406, -0.00308931828, -1.13840142e-05, 0.00513998652, -0.0142747816, 0.00357440207, 0.0151802711, 0.00557370856, 0.0127529493, -0.00184522092, -0.00250341301, -0.00393393496, 0.017272789, -0.0113528641, 0.0018499766, -0.000431344175, -0.000844141, 0.0277734287, -0.0170140788, -0.00416601403, 0.0106376037, -0.000903587556, 0.00100155547, -0.00397959, 0.0034412418, 0.00647539366, 0.0136127844, -0.0118550686, 0.00595797086, -0.0210925881, 0.00491171191, -0.00292572146, 0.00619765976, -0.0246536732, 0.00246726954, -0.0173793174, -0.0203164537, -0.017805431, -0.0144726196, 0.00647539366, 0.011489829, -0.0104702022, -0.0062242914, 0.0282147601, 0.0019355797, -0.00214578258, 0.00800483488, -0.0115659209, 0.0125551112, -0.00305317482, 0.00279065897, 0.0168923326, 0.000881235639, 0.0103104096, 0.0189163685, 0.0263733435, -0.00980820507, 0.0032624267, -0.026205942, 0.0283212885, 0.0211991146, -0.0112158991, 0.0263885614, 0.0133769009, 0.0195403192, 0.0057525239, 0.00233220705, -0.00513237715, 0.00770807732, -0.00547478953, -0.0165575296, -0.0272255689, 0.0033537366, 0.00657431269, -0.0108582694, -0.00146095839, 0.00751023926, -0.00914620887, 0.0104473745, 0.00116990809, -0.0334498622, -0.00643354328, 0.0085070394, -0.0170901697, 0.0104017192, 0.00135062565, 0.00590470713, -0.00162360421, 0.00542152533, -0.0219600312, 0.0126235941, 0.00799722597, 0.0135519113, 0.000234694977, 0.0107060857, -0.0108963149, -0.0135290837, 0.00770046841, -0.023253588, -0.00941252895, -0.0210469328, 0.00707271276, -0.0192663893, -0.00725533254, 0.0205751639, 0.00102628523, 0.0156748667, 0.00518944627, 0.000462969736, 0.0111702448, 0.0047252872, -0.0132855903, -0.0221883059, -0.0051552048, -0.0027012513, -0.0205142908, 7.95394808e-05, 0.00311595039, 0.00336515042, 0.0173336621, 0.00556229474, 0.00712978141, -0.00145525159, 0.0213360805, 0.00662757689, -0.0165270921, -0.0201490521, 0.00087743107, 0.00782221463, -0.0183532909, 0.00636886572, 0.0154237645, 0.00404426781, -0.0046986551, -0.0104093291, -0.0139323687, -0.00289718714, -0.00830920134, 0.00381599297, -0.000630609, 0.0396589339, -0.00275261304, 0.0225992, 0.00254716584, -0.00700423028, 0.00376272877, -0.0145563204, -0.00980059616, 0.00722109154, 0.01048542, -0.00858313, 0.00482420623, -0.0147161121, -0.00536445668, 0.00786787, 0.00904728938, 0.0136736576, -0.011893115, 0.0291430764, 0.0284278151, 0.0116115762, -0.0199207775, -0.00218192628, 0.0094886208, 0.00792874303, 0.00843094755, -0.000391633861, 0.0232840255, -0.00714119524, 0.000937353179, 0.0197381563, 0.00600362616, 0.00633082, -0.0139932428, 0.000678641838, 0.0189620219, -0.0286104362, 0.0320193395, -0.00840812, 0.00555088092, 0.0179271773, -0.0238166656, 0.00340129388, 0.0108050052, -0.00128404552, -0.00313307089, 0.00558892684, -0.0151650524, 0.00910816249, 0.0034070008, 0.00287055504, -0.00411655474, 0.00268603303, 0.0133692911, 0.00934404694, -0.0048584477, 0.0363109037, -6.56884367e-05, 0.00182239339, 0.015933577, -0.00459973607, 0.00544054806, 0.00867444091, 0.0298431199, 0.000952095957, 0.0104093291, 0.00232459791, -0.0175771564, -0.00760154938, -0.0170749519, 0.0164510012, 0.0250950046, -0.00144764234, 0.0130040515, 0.0108050052, -0.00880379602, 0.0145563204, -0.00637647463, 0.00160077668, 0.00502204476, 0.00112900883, -0.016131416, 0.018551128, -0.0123116188, 0.000194271328, 0.0149443876, 0.00588568393, 0.0121061709, -0.00676073739, -0.00307219778, 0.0268755481, 0.0214426089, 0.027621245, -0.0116648395, -0.00264037796, 0.0301322676, -0.0319889039, -0.020499073, 0.0153705, 0.00688628852, 0.00706890831, -0.00217621936, -0.00127643638, 0.010211491, -0.00787547883, -0.00865922216, -0.000935450895, 0.00900924392, 0.0093364371, -0.00503345812, -0.0132323261, -0.0161161982, -0.00569925969, -0.00871248636, 0.00610634964, -0.00435243873, 0.00056260213, -0.00591612048, -0.00299610617, -0.00177578733, 0.00103960128, -0.00037593997, -0.0310453661, 0.00708032213, 0.0285799988, 0.0063574519, -0.0118474597, 0.016937986, 0.0189772416, 0.00540630706, 0.00211915071, -0.00890271552, 0.0101353992, -0.0132551538, 0.0011052303, 0.00467582792, 0.0136127844, -0.024531927, -0.00798200723, -0.00512857269, 0.016603183, -0.00381028606, -0.00732381502, -0.0150280884, -0.00450462196, 0.00560034066, 0.0067150821, 0.00176247128, -0.0233753342, 0.000269887329, -0.0015256363, 0.0176836848, -0.0162227266, -0.00306649087, -0.00102723634, -0.00918425433, -0.00684443815, -0.00745697506, -0.0243949611, -0.00732381502, 0.00138676912, 0.00536065223, 0.0052617332, -0.012030079, 0.0086135678, 0.00311595039, 0.0062509235, 0.0127529493, -0.00495356228, 0.0146324113, 0.0199512132, -0.0188098401, -0.0142595628, -0.00240068953, -0.000902160828, 0.00181668659, 0.00819506403, 0.00246536732, -0.00348119, 0.0145639293, -0.0102647543, -0.0158118308, -0.00056260213, 0.0104778111, 0.00867444091, 0.00176722708, 0.0171053875, -0.0294474438, 0.000189991173, -0.000281776651, -0.00280587724, 0.0149672143, 0.00433722045, 0.00235693692, -0.0175619368, -0.04194168, -0.0365543962, 0.0143508725, 0.00709934486, 0.00980059616, -0.0250493493, -0.00512857269, 0.00604547653, -0.00360674108, 0.00395676261, 0.000924512744, -0.0054557668, 0.00718304561, 0.00687867915, 0.00878857821, 0.0131942807, -0.00489649363, -0.0095494939, -0.0132247172, 0.00693955226, 0.0030683931, 0.00187565759, -0.0037532174, 0.00277924514, 0.00235123, -0.0141606443, -0.0243493076, -0.00542152533, -0.00841572881, -0.0147617674, -0.00143908209, 0.0148226405, -0.00693574781, 0.0120757343, -0.00202784082, -0.00328715635, 0.00339558697, 0.00206208182, -0.00396056706, -0.015324845, -0.00950383861, -0.00866683107, -0.00805809908, 0.003192042, 0.00761296321, -0.0085679125, 0.00162170187, -0.00429156516, 0.00798200723, 0.0118778963, 0.0190989878, -0.00638027955, 0.00317492126, 0.0122659635, -0.0179880504, 0.00152848975, 0.0205751639, 0.0221274327, -0.000106468775, -0.0236492641, -0.00712978141, 0.00491932081, 0.011223509, 0.0109039238, -0.00409753202, -0.000852225756, 0.0168162398, -0.00200120872, 0.00769666396, -0.00833202805, -0.0123344455, 0.0200273041, -0.00642973883, 0.0142139075, 0.0210773684, -0.00556990411, -0.0244253986, 0.0239688493, -0.000643449486, -0.0105615119, 0.0223100521, -0.00435243873, -0.00507911341, 0.017135825, -0.00144859357, -0.0129812239, -0.0172271356, -0.00903968047, -0.0245471448, -0.0104397656, -0.0160705429, -0.00610634964, 0.00496497611, -0.0130649246, -0.0125703299, -0.00966363121, -0.00602264889, -0.0210012775, -0.000903587556, -0.00576393772, 0.00727055082, -0.0176532473, -2.53093694e-05, -0.033936847, -0.0129660061, 0.00693955226, 0.0273473151, -0.000936402066, -0.00510194059, 0.0096560223, -0.00136584393, -0.0127757769, -0.00317301904, -0.00115088525, -0.000319822429, -0.0152487531, 0.0142823905, 0.0125627201, -0.00996038876, -0.00501824, -0.00971689541, -0.00381409074, -0.00448179431, -0.00339178229, -0.000699567, -0.0194642264, 0.0124790203, 0.0210469328, -0.000346216722, -0.0155302919, -0.00203735218, -0.00455027679, 0.0031825304, 0.00299610617, -0.0101582268, -0.0125703299, 0.0173032265, 0.000194865788, 0.0159944519, -0.016801022, -0.00405568164, 0.0148378592, -0.020499073, -0.0170292966, -0.0109800156, -0.00236835051, 0.0325063244, 0.0187641848, -0.005208469, -0.0148835136, -0.00826354604, 0.00812658109, 0.00972450431, 0.0156596489, 0.0151650524, 0.0020430591, -0.00056498003, 0.0154998554, 0.0121518262, -0.00949623, -0.00531499693, 0.00513998652, 0.00438667974, -0.00233030482, 0.0163140353, 0.00326052448, -0.00823310949, 0.00696998928, 0.0186728742, 0.00233410927, 0.00378555642, -0.00520085962, -0.0195859745, -0.0011271066, 0.0129279606, 0.0101277903, 0.000722870056, 0.000542628113, -0.00563838659, -0.000481279276, -0.00150566222, 0.0347890705, 0.0155759472, -5.08268022e-05, -0.00897880737, -0.000504106749, 0.00957232155, 0.00128785009, 0.00282299775, 0.0179576147, 0.00376272877, 0.00610634964, -0.000218287736, -0.00399100361, 0.0135366926, 0.0149139501, -0.0181554519, 0.00484703388, -0.00673790975, -0.00577535108, 0.000194033535, 0.0262515973, 0.0147085031, -0.0121822627, -0.00672269147, -0.00332900672, 0.00847660284, 0.0126083754, 0.0152715808, -0.00782982446, 0.00612537237, 0.0154618099, 0.0110408887, -0.0123420553, 0.00900163408, 0.00217431691, 0.00723631, 0.0212752074, -0.00501443539, 0.00413557747, -0.00991473347, 0.0171966981, 0.0221426506, 0.00301703135, 0.0302692316, 0.0165423099, -0.0193120446, 0.038776271, 0.0169227682, -0.00102057832, -0.00883423258, 0.00882662367, 0.00259662536, -0.0169532057, -0.0313801691, 0.000223162351, 0.0163292531, 0.00233791396, -0.00897880737, 0.0142595628, 0.00942013785, -0.012638812, 0.00379506778, 0.00245205127, 0.0108810961, 0.0192968249, 0.0326280706, -0.0268907659, -0.00452744914, 0.0143584823, 0.0117409313, 0.0367978886, 0.00394154387, 0.00291620987, 0.00486986153, -0.00925273634, -0.000342412124, -0.00342221907, -0.0086135678, -0.0118626785, -0.0146400211, -0.0251254402, 0.0158574861, -0.0171966981, 0.000484608288, 0.0192055162, 0.00343933958, -0.0105843395, 0.00188516895, 0.014114989, -0.0245623626, 0.000749026542, -0.00977016, 0.00167116139, -0.00148949272, 0.00227323617, -0.0128746964, -0.0177445579, -0.0128290411, -0.0127453404, 8.50085635e-05, 0.00767003186, 0.0269059837, 0.00622809632, -0.0141606443, 0.00376082654, 0.00585905183, -0.0134529918, 0.0154770287, 0.00630799215, 0.00359152281, 0.0058057881, -0.0215187, -0.00533782458, 0.0240449402, 0.00510955, 0.00945057441, -0.0107745687, -0.012030079, 0.0117257135, -0.00725533254, -0.0185206924, -0.0113452552, -0.00263847574, 0.000332900672, -0.0208643116, 0.0116572306, 0.00212105294, 0.00789830647, -0.0109800156, -0.0250950046, 0.00187755981, -0.0042611286, -0.0211078059, -0.0161466338, -0.0152183166, 0.0120529067, 0.0142519539, 0.0140388971, -0.012768168, -0.00285153207, -0.00228655222, -0.0254145898, 0.0238318834, -0.0765176937, -0.00283821602, -0.00506389514, 0.00581720145, 0.0014400332, 0.0204229821, 0.0219752491, -0.00579056935, 0.0140160695, 0.0167097114, 0.0214273892, -0.0172119159, 0.000343125488, -0.00353445415, -0.0233905539, 0.00484703388, 0.0114822201, 0.0102647543, -0.00577154662, -0.0144117465, -0.00613298174, 0.0140312882, 0.0177902132, -0.00371326925, -0.00679878285, -0.0042877607, 0.00496878056, 0.00786026102, 0.000189277809, 0.00166069879, -0.00926034618, 0.0136736576, 0.00684443815, -0.0213360805, 0.0164053459, 0.00461875927, 0.0119539881, -0.0062509235, -0.00461115, -0.0187033117, 0.0100669162, 0.0121518262, -0.0032357946, -0.0100516984, -0.0101886634, -0.00194794452, 0.00507911341, -0.00966363121, -0.0219143759, 0.0128899142, -0.0125475023, 0.00276973378, -0.0026746192, -0.00770807732, 0.009541885, 0.00704988511, 0.00601503951, -0.0173488818, 0.00582100637, -0.000535019, -0.0141225979, -0.0135823479, 0.00650583068, -0.0109419702, 0.0234666448, 0.00887227897, 0.00261945277, -0.00258711376, -0.00301132444, -0.00649061194, -0.0273929704, 0.00596177578, -0.000278923224, -0.00444755331, -0.00991473347, -0.00507150404, -0.00774612324, -0.00268413057, -0.0117485402, 0.0154161546, 0.00541011151, 0.00980059616, 0.0318671539, -0.00215909863, 0.0142062986, -0.00708793104, -0.0306192543, 0.0328106917, -0.00136774627, -0.00837768335, 0.0257189553, 0.0037798495, -0.00183190487, 0.00607591309, -0.00199930649, 0.00648300303, 0.0120452978, 0.00135823479, -0.00726674637, 0.0150433062, -0.00212105294, 0.00181288202, 0.00932121929, -0.00788308773, 0.0285343435, -0.013574739, 0.0273016598, -0.0197685938, 0.000678166223, 0.0167249311, 0.0210012775, -0.00784504227, 0.0134758195, -0.000283203379, 0.0112082902, -0.00865922216, 0.00693574781, -0.00082606927, 0.0185054727, 0.00510194059, -0.00482040178, -0.0213665161, 0.0063574519, 0.00203164527, 0.0031825304, -0.00823310949, -0.0161466338, -0.00281919329, 0.00509813614, -0.00616341829, 0.00375511963, 0.00501063094, 0.000822740258, 0.00155892631, 0.0185054727, -0.00291620987, -0.0115278754, 0.00256428635, -0.0102267088, 0.00860595796, -0.00265749847, -0.0115126567, 0.000795157044, 0.00948101096, -0.0218991581, -0.017607592, 0.0166792758, -0.0143204359, 0.00708793104, -0.00931361, -0.0108658783, -0.00744936615, -0.012768168, 0.0147008942, 0.0025509703, -0.0193881355, 0.00458832271, -0.0186424386, -0.00893315207, -0.000341223204, 0.0042801518, 0.00576774217, -0.00102343177, 0.0243797433, -0.0130268792, 0.0145106651, 0.00613298174, -0.00238166656, -0.00654007168, -0.000239569592, 0.00394915324, 0.0200729594, -0.00951144844, -0.00354206329, 0.0130116614, -0.00827876478, -0.000231128186, -0.010416938, 0.0257493928, -0.00124980428, 0.0225992, 0.00345836254, -0.0109191425, -0.0200425237, -0.0144878374, -0.0166488383, 0.00639549782, 0.0155683383, 0.00302273827, -0.00777656, 0.0158574861, -0.00467202347, -0.00287435949, -0.019418573, 0.00227513839, -0.00914620887, 0.000101713049, 0.0173336621, 0.00623190077, -3.03920497e-05, 0.00615580939, -0.00140579208, 0.0140693337, -0.0123572731, -0.0161770713, -0.00454647234, 0.0021305643, 0.00483562, -0.0161618516, 0.00343933958, 0.0215947907, -0.00276022218, 0.00547478953, 0.0113909105, 0.022781821, -0.000319346873, 0.00339368475, 0.0259015746, -0.0092223, 0.0150204785, -0.013102971, -0.00101867609, -0.000441806769, 0.0122431358, 0.00224850629, -0.0167858042, -0.00397959, 0.00852986705, -0.00440189801, -0.0115050478, -0.0126159843, 0.0179119594, 0.0232383702, 0.00719065452, 0.00894837, 0.0230709687, 0.00890271552, 0.0141682532, 0.00517803244, -0.000321962521, 0.0421851762, 0.00609113136, 0.018885931, -0.0112539455, -0.000345741137, 0.010348455, -0.00562316831, -0.0280321389, -0.0114061283, -0.0176380295, 0.00922991, -0.00405948609, -0.0181250162, 0.00506389514, 0.0129127419, 0.00533402, -0.0085679125, -0.00230367272, -0.0134834284, 0.00762818148, -0.0128975231, -0.011497438, 0.0123344455, -0.0213512983, 0.00714499969, -0.0124181462, 0.00838529225, -0.0146095846, 0.00497638946, -0.000404474325, 0.00314258249, -0.0306649078, -0.00897880737, 0.00120034476, -0.00384452729, -0.00625472842, -0.00507911341, 0.0182924177, -0.0204077624, 0.0236340463, 0.0058400291, -0.0172880087, -0.00545196189, -0.00732761947, 0.00996038876, -0.0225992, -0.0123724919, -0.0058057881, -0.0277277734, -0.00932882819, -0.00890271552, 0.0117713679, 0.00134016306, -0.0102647543, -0.0234209895, -0.00595416641, 0.00084318989, 0.00919186324, -0.0285952166, 0.00691292062, 0.0246384554, -0.00461495481, 0.0195098817, -0.000552615151, -0.0042611286, -0.0261146314, -0.0084537752, -0.00951905735, 0.00505248131, 0.0020430591, 0.00652485341, -0.010820223, -0.0412416384, -0.00626614178, -0.0130649246, 0.00249770633, -0.0109039238, -0.0177902132, 0.0112615544, -0.00334042055, -0.0131181888, 0.00134967442, 0.00793635193, -0.00251863152, 0.0101886634, -0.00485464325, 0.019418573, -0.007259137, 0.00513618207, -0.0122811813, -0.0149063412, -0.00903968047, 0.00938209239, 0.00303224963, -0.0118018044, -0.0082939826, -0.0244862717, -0.0192663893, -0.0152335353, -0.0392328203, -0.0291735139, 0.00765100867, 0.00770046841, 0.017805431, 0.0149672143, -0.00867444091, 0.00286484812, 0.000324340392, 0.00478235586, -0.0042078644, 0.00973211322, 0.00278114737, 0.00822550058, 0.0227970388, -0.00362766627, 0.00663138134, -0.00612156792, -0.0195403192, 0.0284582525, 0.00596177578, -0.0245623626, -0.0125703299, -0.0134529918, -0.0210317131, -0.0311366767, 0.00840812, 0.0160096698, 0.0152715808, -0.0034412418, 0.00650202576, -0.014518274, 0.00862878561, -0.00119558896, 0.0710391, -0.00350972428, 0.0184446, -0.0343629606, -0.017470628, -0.0322932675, -0.0033271045, 0.0432200208, -0.00625853287, -0.0162531622, 0.000439666677, -0.00700803474, -0.0260994136, 0.0122583546, -0.00124409737, -0.00651343958, -0.0139704151, -0.0111854626, -0.03037576, -0.00277924514, -0.00493073463, -0.0254602432, 0.0183076356, -0.0189011488, 0.00298279, -0.00190228957, -0.0132932, -0.0121974805, -0.0110104522, -0.00446277158, 0.0128214322, 0.0120909531, -0.00480898796, -0.00146095839, -0.000915001321, -0.00436385255, 0.00109286536, -0.00255667721, 0.00522749173, 0.00585144293, 0.0161466338, 0.0155683383, -0.00765481358, -0.00225992012, -0.00423069205, 0.00670366874, -0.00412796857, -0.000465347606, 0.000993946334, -0.0178510863, -0.000126740051, -0.0326889455, -0.00826354604, 0.00451984024, 0.0172880087, 0.00131162873, 0.0304822885, 0.00546718, 0.00373990135, 0.00173964386, -0.00177578733, 0.0178358667, -0.00344504649, 0.00373799913, -0.0109039238, -0.0369805098, 0.000249675504, 0.00596938469, -0.0100897439, 0.00505628577, -0.0101353992, -0.00732761947, 0.00774231879, -0.00700423028, -0.0111854626, -0.00678356458, -0.0356412977, 0.0107669588, 0.0142367352, 0.00694716163, -0.0202251431, 0.0210773684, -0.005208469, -0.00958753936, -0.0116191851, -0.0013915248, -0.0158727039, 0.001444789, -0.00646017538, 0.0341803394, -0.0193881355, 0.0201033968, -0.0185054727, 0.00333851832, -0.000277496496, 0.0210925881, -0.0184902549, -0.00163311558, 0.022173088, 0.0083548557, 0.0100060431, 0.0145715382, -0.0107136946, -0.0176380295, -0.0062775556, 0.0368283279, 0.0152715808, 0.0304975063, -0.00284772762, 0.01626838, -0.00707651721, 0.0221122149, -0.00448940368, 0.022173088, 0.0230253134, -0.000592087628, 0.00609874027, 0.00682922, 0.00475952867, -0.00552805373, 0.0138106225, 0.00119273562, -0.00840812, 0.00952666625, 0.016603183, -0.00645256648, 0.00434863381, -0.00456549507, 0.00603025826, 0.00837007444, -0.00110427907, -0.00803527143, 0.00860595796, -0.00532641076, 0.0166336205, -0.00878857821, 0.0130801434, 0.00751023926, 0.0100212619, 0.00400622189, -0.0033271045, -0.00181573548, 0.0224317983, 0.00188992475, -0.0140617248, -0.0217621922, 0.0140388971, -0.00758252619, 0.0042344965, 0.038441468, -0.00585524738, -0.00283060689, 0.00837768335, -0.0243188702, 0.0212143343, 0.00801244378, -0.0213665161, -0.0275147166, 0.0265559629, 0.0192511715, 0.00306268618, -0.00817984529, -0.013978024, -0.000518373912, 0.00446657604, 0.0110789351, 0.0216708835, -0.0085679125, 0.0100364797, 0.00854508486, -0.0042611286, 0.0219600312, -0.0147922039, 0.00293713505, 0.0202099252, 0.018885931, -0.0287474, -0.0267385822, -0.00893315207, -0.0242123418, -0.00867444091, 0.013308418, 0.0245014895, 0.0393850058, -0.00510194059, -0.00885706, 0.0128138224, -0.0102038812, 0.0167858042, 0.00747980271, -0.00381218828, 0.0322323963, 0.0249732584, -0.000315066718, 0.0213512983, -0.0160705429, 0.0331454948, -0.00843855646, -0.00185187894, 0.00383691816, 0.0251254402, 0.00357630453, -0.0240905955, -0.0312279854, -0.00958753936, 0.0228731297, 0.00701183965, -0.00256999326, 0.0122887911, 0.0032091625, 0.00445135776]
08 Aug, 2022
Angular PrimeNG Form Calendar Year Picker Component 08 Aug, 2022 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Calendar Form Year Picker component in Angular PrimeNG. Calendar component: It is used to display a month-wise calendar that allows the user to select dates and move to the next or previous month. Angular PrimeNG Form Calendar Year Picker Component is used to pick the year within a certain range. Syntax: <p-calendar view="year" dateFormat="..." [readonlyInput]="true" inputId="..." placeholder="..."> </p-calendar> Angular PrimeNG Form Calendar Multiple Months Properties: readonlyInput: It is used to prevent entering the date manually with the keyboard. dateFormat: It is used to set the Format of the date which can also be defined in locale settings. view: It is used to specify the type of view to display. Creating Angular Application & Module Installation: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: It will look like the following. Run the below command to see the output. ng serve --open Example 1: Below is the example that illustrates the use of the Angular PrimeNG Form Year Picker Component. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>PrimeNg Calendar Year Picker Component</h4> <div class="p-fluid p-grid p-formgrid"> <div class="p-field p-col-12 p-md-4"> <p-calendar view="year" dateFormat="yy" [readonlyInput]="false" inputId="pickYear" placeholder="Pick any year"> </p-calendar> </div> </div> app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent {} app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, CalendarModule, FormsModule, ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule {} Output: Example 2: Below is another example that illustrates the use of the Angular PrimeNG Form Year Picker Component using readOnlyInput=”true”, which will disable any manual inputs from the keyboard. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>PrimeNg Calendar Year Picker Component</h4> <div class="p-fluid p-grid p-formgrid"> <div class="p-field p-col-12 p-md-4"> <p-calendar view="year" dateFormat="yy" [readonlyInput]="true" inputId="pickYear" placeholder="Pick any year"> </p-calendar> </div> </div> app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent {} app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, CalendarModule, FormsModule, ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule {} Output: Reference: https://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Year Picker Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-year-picker-component?ref=asr6
Languages
Angular PrimeNG Form Calendar Year Picker Component
PHP | IntlChar::isUWhiteSpace() Function, Angular PrimeNG Form Calendar Year Picker Component, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0484617762, 0.00324520818, -0.0117662521, 0.00237412611, 0.0473079234, 0.0225152932, -0.0109160459, 0.0281934589, -0.00682442635, 0.00684719952, 0.00971664675, -0.00385249872, 0.013200976, -0.0612148754, -0.0111210058, -0.0096862819, -0.0619436242, -0.00766704185, -0.00963314436, -0.00565539207, -0.0147192013, 0.0109615922, -0.0377127342, 0.000899548933, 0.00069553731, 0.0514982268, 0.0175355114, -0.00287893624, -0.00534036, 0.0227582082, 0.0252481, 0.00837301649, 0.020784514, -0.00742412545, -0.0611845106, -0.0127606904, 0.0153113101, 0.031882748, 0.000817469845, -0.00967869163, 0.00634618476, 0.00193004485, 0.0233806819, 0.037257269, -0.0201924071, -0.00471409177, 0.0162753835, -0.0159261916, -0.0351317525, 0.0109995482, 0.0268726014, 0.0317309238, 0.0454556867, 0.0509516671, 0.0121078528, 0.0190233719, -0.0278898124, 0.0178391561, -0.0069307019, 0.0122217201, 0.0477026626, -0.039109502, -0.00847170129, -0.0352532081, 0.0333098806, 0.0296205897, -0.0106199915, 0.0402633548, 0.0107945874, 0.019767303, -0.020784514, -0.0195699334, -0.00601217523, -0.014430739, -0.0109084547, -0.0039397967, -0.0133603895, 0.0184160825, -0.0627938285, 0.028299734, -0.0108553162, 0.00538970251, -0.0256124735, -0.00765565503, 0.0100278836, -0.00837301649, 0.0598181076, -0.0432087146, 0.00688895071, 0.0178847034, 0.0410528332, 0.029666137, -0.0151594877, -0.0204808693, 0.0302278809, 0.0220446419, 0.0565691032, 0.0230466723, -0.0494638048, -0.0120243505, -0.00275558024, 0.00369877834, -0.00216347212, -0.0265993215, 0.018294625, -0.00633479841, 0.0239424258, -0.0193877462, 0.0177632459, -0.0387754925, 0.00298710982, -0.00282959384, 0.0168219451, 0.0061829756, -0.0565691032, 0.0361945108, -0.0152657628, -0.0260983054, 0.0139145423, -0.0238057841, 0.024261253, -0.0180213433, 0.0120319417, 0.0435123593, -0.0362552367, 0.029104393, -0.00715084467, -0.0121761728, 0.016533481, -0.0328544118, 0.00375571172, 0.00167953759, -0.00915490277, 0.0117358873, 0.0499192737, 0.0418726765, 0.00348432874, -0.0189930089, -0.0356479473, 0.0179909784, 0.00396636548, -0.0446358472, 0.0228796676, -0.0328240469, -0.0236084145, 0.0184919927, 0.0188563671, 0.0677128807, 0.0103163458, 0.0157743692, -0.0517411456, -0.0426317863, 0.0198887624, -0.00196230714, 0.029878689, -0.0513464063, -0.00190252706, -0.0131098824, -0.0205871463, -0.0269485135, 0.00340841757, 0.0140587734, 0.00063623162, -0.00711668469, 0.0126012759, -0.00764806382, 0.00838819891, -0.0171863195, -0.00967869163, 0.0427228808, 0.0231529474, 0.00370636932, -0.0109388186, -0.0106579466, -0.031639833, 0.00144231471, 0.017945433, -0.00857797731, 0.00998992752, -5.08546436e-05, -0.00718880026, -0.00371016492, 0.00289222063, 0.00422066869, 0.0204049591, -0.00996715389, 0.0372269042, -0.00580341928, -0.035465762, 0.0101948883, -0.00518474216, 0.0087298, 0.0177176986, 0.0454556867, 0.0105364891, -0.00419789506, -0.0289373882, 0.0163361132, -0.0417208523, 0.0226974804, 0.0101797059, -0.0251873713, -0.0232895873, 0.014324463, 0.0313969143, 0.015622546, 0.0049266438, 0.0184768103, 0.0313058197, -0.0424799658, -0.00611845125, -0.0209211558, 0.0200254023, -0.0109995482, -0.00784163736, 0.0217561796, -0.0183705352, -0.0159261916, 0.0202379543, -0.011622021, -0.0322167575, 0.0593322739, 0.0197065752, 0.0155314524, -0.0731177703, -0.0154251773, -0.0265841391, -0.01235836, 0.0245800801, 0.00850965735, 0.0153568564, 0.0078720022, -0.00315031898, -0.00252784649, 0.0390184112, 0.00533276889, 0.0103770755, 0.00746967224, 0.00460402062, 0.0529253595, 0.0203442294, -0.0547168665, -0.0274191629, -0.0372876339, 0.0209059734, -0.0132617047, 0.00156187511, 0.0475204773, 0.0142940981, 0.0310477223, -0.00705216, 0.00605013082, -0.0507087521, -0.0047786166, -0.0276468974, -0.0168674923, -0.00465336302, -0.00360009354, 0.0220294595, 0.053441558, 0.0103770755, 0.0243371632, 0.0106275827, 0.0459718853, 0.00023508782, -0.0173836891, -0.000221328897, -0.00331352837, -0.00854002126, 0.0164272059, 0.0326418616, -0.0182642601, 0.0606075861, 0.0110678682, -0.0230618548, -0.00825155899, -0.0242308881, -0.0248229969, 0.0241701584, 0.0295143146, -0.00407643709, -0.0118345721, 0.0128973303, 0.00850965735, 0.0132844783, -0.0259009376, 0.00101531367, -0.000127270047, -0.0342815444, 0.0394738764, -0.0166549403, -0.0317916535, -0.0327025913, 0.0140967295, 0.0136488527, 0.0451824069, 0.000204248849, -0.00300798542, 0.00464956742, 0.0355872177, -0.011447425, -0.0199646726, -0.0139069511, 6.47025226e-05, -0.0347673781, 0.0234262291, 0.0327936821, -0.00496839499, -0.0260983054, -0.0210881606, 0.0284515563, -0.0173836891, -0.047641933, -0.017171137, -0.00196230714, 0.0304707978, 0.000315980811, 0.05814806, -0.0183705352, 0.00375760952, 0.00387337431, -0.0137779014, -0.0138462214, 0.0113866953, 0.0429050699, -0.0156073635, -0.0172166843, -0.0359212272, 0.057024572, -0.0115309274, -0.0432087146, -0.0245497152, -0.0107945874, 0.00361148035, 0.0199039429, -0.0102632083, 0.0224393811, -0.0473079234, 0.0215436276, 0.0284971036, -0.0432998091, -0.0142105957, 0.0188108217, -0.0225001108, 0.000653786119, -0.0422674119, 0.0105744442, 0.00411439268, 0.0206782389, 0.0218320917, 0.00145465031, 0.000372439827, 0.0593019091, -0.02155881, 0.0208756085, -0.0288462956, 0.00370826712, -0.0418423116, -0.0169889499, -0.0311236344, -0.00751521904, -0.0363463312, 0.00735201, 0.0605772212, 0.039109502, -0.0283300988, -0.014324463, 0.0181276184, -0.00423205504, -0.0333098806, -0.0167612154, -0.00216157432, -0.0103770755, 0.0236387793, -0.0511642173, -0.00705595547, -0.000412293273, 0.0259616654, 0.0401722603, -0.00409161905, -0.055233065, 0.0652229935, 0.0180213433, 0.0140967295, 0.0477633923, 0.0128214192, 0.00775813498, -0.0118725281, -0.0111437794, -0.0341904499, -0.00531758694, 0.0499192737, 0.00801623333, -0.0215891749, -0.0137247639, -0.0315487385, 0.0211488884, 0.0220446419, 0.0549597852, -0.00723434705, 0.0305618905, 0.00883607566, 0.0194484759, -0.0206630565, 0.00107699167, -0.000540393579, -0.0503140129, 0.000193929664, 0.0405973643, 0.019099284, 0.0169889499, 0.0189930089, -0.0498889089, -0.0048773014, 0.0356479473, 0.020329047, -0.00102480256, 0.0355872177, -0.00575028127, -0.0100886123, 0.0405973643, 0.0169282202, -0.0479455777, 0.00932949875, -0.0067864703, -0.00364564033, -0.0346459188, 0.0375609137, 0.00524926651, 0.021346258, -0.0375912786, -0.0113259666, 0.0127075519, -0.00307440781, 0.0379556529, -0.00747726345, -0.00378607633, 0.0122748576, 0.0282541867, -0.0212703478, -0.0207086038, 0.00978496671, 0.0215436276, -0.0388969518, -0.0332795158, -0.00532138254, -0.0605772212, -0.0102783907, -0.0227430258, 0.0208300613, -0.0222571939, -0.0321863927, -0.00354505796, -0.00547700049, 0.0222723763, 0.0220294595, 0.0124494536, 0.0101721147, -0.00647902954, -0.00505189737, 0.0164879356, 0.0426621512, -0.00720398268, 0.00189493597, 0.0102783907, -0.0303645208, 0.0007909009, 0.0101037947, 0.00370257371, 0.0321560279, 0.015273354, 0.0495549, 0.0165638458, 0.0166245755, 0.0153492652, -0.00482416339, -0.0105288979, 0.00434592227, -0.0151898516, -0.00444081146, 0.0629152879, -0.00923840515, 0.0451520421, 2.75030216e-05, -0.000873454439, -0.0259768479, -0.0136640342, -0.0343726389, -0.00660048798, 0.0277835373, 0.0172015019, 0.0142865069, -0.0370447151, 0.00503291935, -0.000710245105, -0.0038411119, 0.000183610464, -0.00994438119, 0.00856279489, -0.0337349847, 0.0251873713, 0.0248989072, -0.0277835373, 0.0331580564, 0.0262197647, -1.59384081e-06, 0.00284857163, -0.0116447937, -0.02773799, -0.0093674548, -0.00536313374, 0.0308199897, -0.000508131285, 0.0328544118, 0.00773156621, -0.0226367507, -0.00879052933, 0.0398989804, -0.00165771309, -0.0368018, 0.0289525706, 0.0103467107, -0.0132617047, 0.00297192764, -0.00100202917, 0.0402026251, 0.00446738023, -0.033492066, 0.0249140896, -0.000462584518, -0.00840338133, -0.00258288207, 0.0213158932, 0.0198432151, -0.0121534, -0.0166853052, -0.0236843266, -0.0211640708, -0.0157743692, -0.00559086772, -0.0358301364, 0.0305770729, -0.0236387793, 0.00222799671, -0.0116144298, -0.0124950008, -0.00214829, -0.0224849284, 0.00365133374, 0.016153926, -0.0104757603, 0.0166093931, -0.000836447696, -0.00175544887, -0.0293776747, -0.0168674923, -0.0203594118, -0.0278746299, 0.000714989612, -0.00961796194, 0.0185071751, -0.0150911668, 0.0212399829, 0.0190841015, -0.0240183361, -0.0376520082, 0.00512021733, -0.00245383289, -0.00135311903, 0.00595903723, 0.00884366687, -0.012009168, -0.0107034938, 0.0206023268, 0.0119560305, 0.00961796194, 0.0480974, 0.0244434401, 0.011128597, 0.0090714, 0.00143187691, 0.0190841015, 0.0188411847, -0.0210122485, -0.00177537557, 0.00299280323, 0.0251721889, -0.0127682816, -0.0361641459, -0.0182642601, 0.00395497913, 0.00447497144, -0.0040346859, -0.00928395241, 0.00502912374, 0.0152809452, -0.0281782765, 0.0158654619, 0.0172622297, -0.0160324667, -0.00570853, 0.00825915, 0.000986847, 0.0213310756, -0.0241701584, -0.0090562189, -0.004881097, -0.00851724856, 0.0338868052, -0.0153720388, -0.00677508395, 0.0118725281, -0.00835024379, -0.0148027046, 0.0174899641, -0.0277987197, -0.013937315, -0.0189019144, -0.0147723397, -0.00696106674, -0.0156984571, 0.0206023268, 0.0224849284, 0.00847170129, 0.0119332569, -0.0148178861, 0.0077277706, -0.037317995, -0.000514299085, -0.0185223576, -0.0155618172, -0.0246104449, -0.00844892766, -0.0116144298, 0.0158350971, -0.00395497913, -0.00179625116, -0.00275368243, -0.000571707031, 0.0265841391, 0.0274039805, -0.0124722272, -0.0117510697, 0.0820449367, -0.00630063796, 0.0270851534, -0.0106275827, 0.0214525349, 0.0124874096, -0.035283573, -0.040840283, -0.0131630199, 0.015577, 0.0184768103, 0.00800105091, -0.0195851158, 0.0292410348, 0.000199741611, -0.0190537367, 0.0112728281, -0.0135501679, 0.0106199915, 0.0163816586, -0.0191751961, 0.03707508, 0.0280112717, 0.0235173218, 0.0207237862, 0.0247015376, 0.0286641084, -0.00471029617, -0.0120167593, -0.0163209308, -0.00464956742, -0.0303948857, -0.0301367883, -0.00612224638, 0.00175829558, 0.000473734, 0.0148482509, -0.0133148422, 0.019979855, 0.0276165325, 0.00363804912, 0.00888162293, -0.00274229585, -0.0435123593, -0.0129732415, -0.0218169093, -0.00347294216, 0.00739376107, -0.0215891749, 0.0238057841, -0.0088664405, -0.00393220549, -0.0266296845, -0.00175734668, -0.0147951134, 0.0111437794, -0.0215739924, -0.0250355471, -0.0288007483, -0.033249151, 0.0248685423, -0.0139980447, 0.0186589975, 0.00536313374, 0.0259616654, -0.0157743692, 0.000328790833, 0.00798586942, 0.0198128503, 0.000438150542, 0.0379252881, -0.0163057484, 0.0256883856, -0.0137247639, 0.00970146433, -0.00295294961, 0.000563167, 0.00427001063, -0.0312754586, -0.00474066101, 0.0121685816, -0.0338868052, 0.000314083, 0.0110754594, -0.0473079234, -0.0308807176, 0.00364943594, -0.0264019519, 0.0250962768, 0.0167308506, -0.00124968984, -0.00115195406, -0.012396316, -0.00425103307, 0.0201620422, 0.0126923695, -0.00245573069, -0.00333250617, -0.0102707995, -0.00333060836, -0.011341149, 0.0318523832, -0.00260375766, -0.0103770755, -0.0279353596, -0.0039397967, 0.0146129262, -0.010779405, -0.00350330654, 0.0260072127, -0.00823637657, 0.0140967295, -0.00970146433, -0.0114170602, 0.0135198031, 0.00945854839, 0.00674092351, 0.0023665349, 0.00175165327, -0.0474597476, 0.00837301649, 0.0155086797, 0.031457644, -0.014256143, -0.00599699281, 0.0113487402, 0.0191600136, -0.0109843658, 0.0107642226, 0.0353443027, 0.0354353972, 0.00149070821, -0.0228189379, -0.0127379168, -0.00303075882, 0.00292827864, -0.000854002137, -0.0227885731, -0.0133224335, -0.0207086038, -0.0248229969, 0.0115537, -0.0134211183, -0.00010580138, -0.000195708824, 0.0397775248, 0.0301671512, 0.0187349096, 0.0226215683, 0.0164727531, 0.00393220549, 0.0072191651, -0.0374394543, 0.00103144487, -0.0286337435, 0.00929913484, -0.0626116395, -0.0208756085, -0.0153113101, 0.023350317, 0.0313361846, -0.00922322366, -0.0117055234, -0.00786441099, 0.00718500465, -0.00809973571, -0.000265452341, -0.0038126451, -0.000569334778, -0.0176266041, 0.0132920695, 0.0146508813, -0.0282086395, 0.0359212272, 0.00983810518, -0.0563869178, -0.00882089324, 0.0105516715, -0.0194636583, 0.0115764737, 0.00585655728, -0.0480366722, 0.0198128503, -0.0168826748, 0.00452431384, 0.00190537376, -0.00433074, 0.00497598574, -0.0357694067, -0.0396864302, 0.0291499402, 0.00537072448, 0.00460402062, -0.00928395241, 0.0440285541, 0.0289829355, 0.00694208872, -0.013307251, 0.0291651227, -0.00794032216, -0.040840283, 0.00835024379, 0.0205719639, -0.00262653106, -0.0264930446, 0.0198432151, -0.00349192, 0.0334617, 0.0206782389, -0.0128593752, 0.0322167575, -0.0311843641, 0.0266448669, 0.0038619875, 0.031639833, 0.0112804193, -0.00910935644, -0.00170136208, -0.0134666655, 0.0235173218, 0.0143168718, -0.00150209491, 0.0167004876, -0.00382972532, -0.0272521582, -0.0105213067, 0.00199077395, -0.0140056359, 0.018188348, 0.0216650851, 0.0207237862, -0.00179625116, -0.0208756085, -0.016533481, 0.00175355107, -0.000429136096, -0.0175506938, 0.0160324667, -0.0218928196, -0.0148786157, 0.00986087788, -0.00170800427, 0.010779405, -0.014149867, -0.0258553904, -0.0312147271, -0.0126240496, -0.00516576413, -0.0164575707, -0.000346108107, -0.048309952, 0.032125663, 0.035708677, 0.00369498273, -0.0187652744, -0.0277987197, 0.0292562172, 0.013481847, 0.0222420115, 0.00546181807, -0.00614502, -0.00577685, -0.0173988715, 0.0382592976, -4.05354513e-05, -0.013588123, 0.00718500465, -0.00387527212, 0.0329455063, -0.0148786157, -0.01853754, 0.0207086038, -0.0208300613, -0.0685023591, 0.0340082645, 0.000257149542, -0.0268270541, -0.0187956393, 0.0243219808, -0.0145749701, 0.0152050341, -0.0090562189, 0.000962650229, -0.0155314524, 0.0167612154, 0.0076784282, 0.0248229969, -0.0129428776, 0.0447876677, 0.00486591458, 0.0149393445, -0.040901009, -0.00202872953, 0.0152657628, 0.0109691834, -0.0401722603, 0.000284904614, 0.0125253648, 0.00829710532, -0.02605276, -0.00490387, 0.0133983446, -0.0388969518, 0.00389804551, 0.0255972911, 0.00695347553, 0.000723529607, 0.00187785586, -0.0235021394, -0.00364184473, 0.0234717745, 0.00564780086, -0.0227278434, -0.0280112717, 0.00571612129, 0.0102328435, 0.0173533242, -0.0352228433, -0.025141824, -0.0339779, 0.000958854624, 0.0257946607, 0.00843374617, -0.00675610593, 0.0016396842, 0.0281934589, -0.0421155915, 0.00264550885, -0.0323382169, 0.0418423116, -0.00168617978, 0.027069971, 0.0300608762, -0.0023874105, 0.00334958616, -0.0071242759, -0.0331884213, 0.0268877838, 0.0133376159, 0.00829710532, -0.014324463, 0.0224545635, -0.0317916535, 0.00671815034, -0.0413564779, -0.0153340837, 0.0134514831, -0.00202493393, 0.00127625884, -0.00300039421, -0.0450002216, -0.00512021733, -0.00499116816, 0.0593626387, 0.0112652378, -0.0188867319, 0.0156680923, 0.000930862385, -0.0114550153, 0.0038430097, 0.0207693335, -0.0227582082, 0.037317995, 0.0249900017, 0.0262349471, -0.0198128503, -0.0178239737, -0.000847834395, -0.000579298125, -0.00273280684, 0.00576925883, 0.0341297202, 0.00628925161, 0.0100354739, 0.0234414097, -0.0054807961, -0.0088664405, 0.000147552593, 0.0266296845, 0.0154327676, 0.0226974804, 0.0117662521, 0.0216802675, -0.00339703076, -0.0261286702, 0.00359250233, -0.00442942465, 0.000512401282, 0.0122141289, 0.0236691441, 0.0047824122, 0.00826674048, -0.0202531349, -0.0149317533, -0.0215891749, 0.0123735424, -0.0183401704, -0.00616020244, -0.0119788032, -0.0065169856, -0.0189322792, -0.0118801193, -0.00396257, -0.0098532876, 0.0154707236, 0.0144155566, -0.0324900374, -0.0116447937, -0.0166397579, 0.032368578, -0.0089575341, -0.0143016893, 0.00505948858, -0.0068813595, -0.00344827096, -0.00363235595, -0.035951592, -0.00526065333, -0.0306378026, -0.0128062367, -0.000989693566, -0.00737857865, 0.0119863944, -0.00481657218, -0.0110299122, -0.0176873337, 0.0144611029, -0.0214828979, -0.00201354735, 0.00759872142, -0.0202986822, -0.00448256265, -0.0150228469, 0.0155618172, -0.0301367883, 0.00836542528, 0.0107262675, 0.0158958267, -0.00545802293, 0.0129732415, 0.0437856391, -0.0271914285, -0.0299242362, -0.0125405472, -0.0172622297, 0.00552254729, -0.0268574189, -0.00333060836, 0.00921563245, -0.0247926321, -0.0129049215, 0.00112633395, 0.019554751, -0.0439678282, 0.078887023, -0.00989124272, 0.00442942465, -0.0307896249, -0.00419789506, -0.0166397579, 0.000268773467, 0.00908658281, 0.00932190847, -0.0288159307, 0.0279809069, 0.00484693656, -0.00587553484, 0.00197938713, -0.0162146538, -0.0203442294, -0.00430417107, 0.0253999215, 0.00972423796, -0.0295750443, 0.0121306265, 0.00401950348, 0.000734916306, 0.0274950732, -0.00906380918, -0.0210274309, -0.00586035242, 0.00624370482, -0.00131041883, -0.0128669655, 0.000215042484, -0.00621713558, 0.017171137, -0.00913972128, 0.00612983759, 0.000568860327, 0.00761010824, 0.00670676352, -0.0157136396, -0.00447497144, 0.0284971036, -0.00263602, -0.0231074, -0.00119370525, 0.0239727888, 0.00426242, -0.021103343, -0.00713186711, -0.0186134521, 0.0118117984, -0.0177936088, 0.0117662521, -0.0227278434, 0.020116495, -0.0161387436, 0.0119712129, -0.0200557671, -0.0187804569, 0.0139980447, -0.0267815087, -0.00577305444, -0.00413716584, 0.00866148, -0.0412653834, -0.00480138976, 0.00604253961, 6.38129422e-05, 0.00535933813, -0.0119180745, 0.0263564046, 0.0229859427, 0.0052416753, 0.00929913484, -0.0030402476, -0.000835973246, 0.00244813948, 0.0186286345, 0.00534795132, 0.028755201, -0.0179150682, -0.01537963, 0.00566677889, -0.0213007126, 0.0144155566, -0.00776952179, 0.00346914656, -0.00983810518, -0.0317309238, 0.00766704185, -0.0124950008, -0.0186438169, 0.00466474937, -0.0233958643, -0.0163209308, 0.00998233631, 0.00593246846, 0.0249596369, 0.00383162312, -0.00495321257, -0.0126999607, 0.0304100681, 0.0210122485, 0.00149260601, 0.00860834215, 0.00189778255, -0.00102100708, 0.050101459, 0.0153113101, -0.0154783148, 0.0080693718, 0.0221661013, 0.00320535479, -0.0164423883, -0.0296813194, -0.00690033752, 0.00284857163, -0.00312185241, 0.0181276184, 0.0398078859, 0.0138082663, -0.0271307, -0.000833601, 0.0245800801, 0.0284211915, 0.015167078, -0.00466854498, -0.0255821086, 0.0137399463, -0.00102385366, 0.020116495, -0.00533276889, 0.0117662521, 0.00211602752, -0.0023912061, -0.0261134878, 0.0206934214, -0.024261253, 0.0322471224, 0.00954205077, 0.0134666655, -0.00759492582, 0.0116296113, -0.00271572685, -0.0279353596, -0.00130947, 0.00103429146, -0.021346258, 0.0084792925, 0.0217258148, -0.00597042404, -0.023699509, 0.0100051099, 0.00249937968, 0.0129504688, 0.00318258139, -0.0208756085, 0.000798017601, -0.0053859069, 0.00568955205, -0.00147837261, 0.00549597852, 0.0242157057, 0.00495700818, 0.0153037189, -0.00122976315, 0.00573889446, -0.00211033435, -0.0282845516, -0.0312147271, -0.00625888677, 0.00571612129, 0.0141270934, -0.00828951411, 0.00598181086, 0.00742033, -0.0147799309, 0.0179302506, -0.0159717388, 0.00916249398, 0.0231681298, -0.0398382507, 0.0135122119, -0.0324293077, -0.00210843654, 0.0177480634, -0.00298331422, 0.00365702715, -0.0106351739, -0.00198128494, 0.00479759416, 0.000801338698, -0.00140435912, 0.0148710245, 0.0184009, 0.0352532081, 0.00986087788, -0.0348888338, -0.0441196486, -0.00686238194, -0.0045850426, -0.00428898865, -0.0158958267, 0.014992482, 0.0169282202, -0.00317119481, 0.00878293812, -0.0110147297, -0.00815287419, 0.00344447535, -0.0146281086, -0.0180517081, -0.000517620181, 0.0140208174, -0.00970905554, -0.0240031537, -0.030546708, 0.010991957, -0.00885125808, -0.0159261916, -0.0204353221, -0.0251873713, 0.00164537749, -0.0221357364, -0.00392841, -0.00756835705, 0.00802382454, 0.00770120183, 0.00203442294, -0.0104302131, 0.0128441928, -0.00972423796, 0.0213310756, 0.0147647485, 0.00382023631, 0.0081604654, 0.0165183, 0.00904862769, -0.0325811319, -0.0328544118, 0.00289791403, 0.00952686835, 0.0054314537, -0.0158806443, 0.0187045448, -0.00320535479, -0.000190134087, 0.0219990965, -0.0154631324, -0.0215891749, 0.0175355114, -0.00209135632, 0.00967869163, -0.0122293113, -0.0210729782, 0.00869943574, -0.0171863195, -0.0102783907, 0.0314272791, -0.00118611415, -0.0160172842, 0.0172470473, -0.00375381391, 0.0170344971, -0.0132768871, -0.0210426133, -0.0164272059, -0.0208452437, -0.0184768103, -0.0168826748, -0.00998992752, -0.0375305489, 0.0115385177, -0.00928395241, -0.0121989464, 0.0224697459, -0.00109407166, 0.0311236344, 0.00559845846, 0.00874498207, -0.0126468232, -0.0133907543, 0.0255669262, 0.000267350115, 0.0453038663, -0.0219535492, 0.0281782765, -0.0148027046, 0.0148862069, 0.0562350936, 0.000908563437, 0.0309262648, 0.0172015019, 0.00556050288, -0.000181594078, 0.0202075895, 0.0237906016, 0.00544284051, 0.00135691452, -2.14241863e-05, -0.00973942, 0.0284363739, -0.0120243505, 0.00937504601, 0.00917008519, -0.00322623039, 0.00630822917, 0.0245952625, 0.0115081538, 0.00135691452, -0.0201468598, -0.0154631324, -0.0166245755, 0.00220522331, -0.0276165325, -0.0155010885, -0.0283604637, 0.0160476491, -0.0191600136, 0.006425892, -0.00597421965, -0.0054352493, 0.00875257328, -0.00570473447, 0.0111589618, -0.00327936839, -0.00385249872, -0.00352038676, -0.013588123, -0.0182490777, 0.0274191629, -0.00641450519, -0.0225456562, -0.0197976679, 0.0108553162, -0.0281782765, 0.0227126628, -0.0402026251, -0.0182035305, -0.00362096913, -0.000184796576, -0.01235836, 0.0367714353, -0.0231529474, 0.00965591799, 0.00212551653, -0.0181428, -0.0173533242, -0.00891957805, -0.0255517438, -0.0172166843, -0.00404227711, -0.00465336302, -0.00484314095, 0.0182338953, 0.0177480634, 0.0309262648, 0.0158502795, 0.00992160756, 0.0105744442, 0.0271155182, 0.00515437732, 0.0105896266, 0.00849447493, 0.0421763211, 0.0070787291, -0.00581101049, -0.0249140896, -0.0201468598, 0.00245193508, 0.0311236344, -0.0211640708, -0.00746587664, 0.0081832381, 0.0317309238, 0.0187956393, -0.000408497697, -0.0121230353, 0.0203745943, -0.00212361873, -0.00885884929, -0.03391717, -0.016290566, -0.00482036779, 0.0089575341, 0.00665742112, 0.00749244541, -0.00659289677, 0.0231529474, -0.00627406919, 0.0153872212, 0.0354353972, 0.0054807961, 0.0221812837, 0.0139980447, -0.0256428383, 0.00436869543, -0.00228303252, -0.0068320171, -0.00697245309, -0.0181731656, 0.015622546, 0.0297268666, 0.0155618172, 0.00154953951, 0.0174596, 0.00519992411, -0.0096711, -0.0139828622, 0.0198280327, -0.0157591868, -0.0101493411, -0.00799346063, -0.00240449049, -0.0190841015, 0.00187121367, 0.00385439652, -0.0135577591, 0.0296205897, 0.0120623065, 0.0462148, 0.00052853243, 0.00610326882, -0.00115100516, 0.00431935303, 0.00669158157, -0.0181428, 0.00668019475, -0.0111893257, -0.00725332508, -0.0114777889, -0.0129428776, 0.0093674548, -0.00533276889, -0.00725712068, -0.0218776371, -0.00386768091, 0.0107034938, -0.0106959026, 0.00271003344, 0.00623611361, -0.00993679, 0.0167612154, -0.00401950348, -0.00519992411, 0.00686238194, -0.00305543, 0.00667639915, 0.0241853409, 0.0228493027, 0.00650939438, 0.00973942, 0.0223938338, -0.0116599761, 0.010954001, 0.0113183754, 0.000908089, 0.00537831569, -0.0320345685, -0.00352608, -0.0164879356, 0.00961796194, 0.00738996547, 0.00942059234, -0.017307777, 0.00456226943, 0.0200405847, 0.00107699167, -0.00104093377, 0.0112045081, 0.0157440044, 0.0103087546, -0.0332187861, -0.0204656869, 0.000108885273, -8.11302089e-05, 0.00166625308, -0.0104605779, 0.00825155899, -0.00864629727, 0.00320535479, 0.00194902276, -0.000127270047, 0.0294232219, 0.00596283283, 0.0234717745, 0.0220598243, 0.0248078145, 0.00539729372, 0.0136564439, 0.0023190903, 0.0157895517, -0.011234873, -0.00359250233, 0.0185830873, -0.00877534691, -0.00354316016, 0.00377658731, 0.0134211183, -0.0092763612, -0.00990642514, 0.000360578677, 0.00142428582, -0.0173988715, -0.0197065752, 0.00278404704, 0.0217106324, -0.00354126235, 0.0188411847, 0.00484314095, 0.00659669237, 0.00389425, -0.0330973268, -0.022333106, 0.0271307, 0.00938263722, -0.0214221701, -0.0143700093, -0.010673129, -0.00139392132, 0.000663275, 0.0186438169, -0.00138822792, 0.0030212698, -0.0222571939, -0.00115195406, -0.00500255497, 0.0185982697, 0.00282959384, -0.0149013884, -0.000310999108, -0.0149545269, 0.00784163736, -0.00463058939, -0.0102783907, -0.0168371275, 0.0117890257, -0.00136640342, -0.00445978902, 0.0068813595, 0.0206782389, -0.00319776358, 0.0301367883, -0.00900308, 0.00878293812, -0.0169434026, -0.00303455442, 0.0015229705, -0.00803900696, 0.00103903597, -0.0168674923, -0.0201316774, -0.0173988715, -0.00708632031, 0.0083806077, 0.00592487724, 0.00699522672, -0.00896512531, -0.0217713621, -0.0185679048, 0.00919285882, 0.0106427651, -0.0127075519, 0.0184312649, -0.00520751532, 0.0112500554, 0.0130795175, 0.00433833105, -0.00216537, 0.00894994289, -0.0103391195, -0.0218928196, 0.0212248, 0.0275861677, 0.0221053716, 0.0139904534, 0.0115764737, 0.00461920258, 0.0221357364, -0.0213158932, -0.0173685066, -0.0132844783, -0.0200254023, 0.00464577181, 0.0022242011, -0.00233806809, 0.0197521206, 0.000764806406, 0.0342511795, -0.0202075895, 0.0151443053, 0.0173229594, -0.000694113958, -0.0145901525, -0.006425892, -0.0201772247, 0.0068320171, -0.0272369757, -0.00290740281, -0.00735580549, -0.0238513313, 0.00323192379, -0.016396841, -0.00476723, 0.00178012007, -0.0126620056, -0.0169737674, 0.000328079157, 0.0100506563, -0.0419941321, 0.0015201238, -0.00455088262, -0.0421763211, 0.00236273929, -0.015728822, 0.055050876, 0.0150835756, -0.0088664405, -0.0212096181, 0.00276696705, 0.0372876339, 0.00507087493, -0.00021883806, -0.0135577591, -0.0157440044, 0.0178239737, 0.00579203246, 0.016396841, 0.00439906, -0.0115916561, 0.00866148, -0.00310856779, 0.0183401704, 0.0103315283, 0.0131933847, -0.0141802318, -0.00531379133, -0.0137703102, 0.000226310571, -0.0147723397, 0.00630063796, -0.0109767746, 0.0167915802, -0.0206175093, -0.000406837149, 0.00945095718, -0.0226974804, -0.0031123634, 0.0223634709, 0.0015590284, 0.000807032047, 0.0114246514, 0.0170344971, 0.0178543385, -0.00319396798, 0.00105042267, -0.0120243505, -0.00564780086, 0.00207996974, -0.0100051099, 0.00879052933, 0.0135805318, -0.00387147651, 0.00633859402, 0.00746208103, 0.0165486634, -0.00973182917, -0.00399293471, 0.0220294595, -0.00431176182, 0.0136412615, -0.010954001, -0.0118117984, 0.0136868078, -0.0103846667, 0.0106503563, 0.0118117984, -0.00808455423, 0.00817564782, -0.0097773755, -0.00761769945, -0.0151822604, 0.00562123209, -0.0269940589, -0.00796309579, 0.0222420115, -0.00972423796, 0.0299546011, -0.0120319417, 0.00730266748, 0.0195851158, 0.0135729406, -0.00297002983, -0.0103998482, -0.0118269809, 0.0304100681, -0.0131174736, -0.00670296792, 0.0176569689, 0.00218434772, 0.0143168718, 0.0135425767, 0.0123887248, -0.0300305113, -0.0119560305, 0.018188348, -0.00998992752, -0.0129428776, 0.0172015019, -0.00501394179, -0.000561743625, -0.00541247614, -0.00976219401, -0.00692311069, 0.0136564439, -0.00452431384, -0.0104150306, -0.00269485125, 0.00605013082, -0.00575407688, -0.00726091629, -0.00106560497, -0.00935227238, 0.00289981184, 0.00109881617, 0.00578444125, 0.00860075094, 0.0169889499, -0.0366499759, -0.0121685816, 0.00282959384, -0.0156832747, 0.0262045823, -0.00641450519, 0.0016178597, -7.27236238e-06, -0.00713566272, 0.00182471797, 0.00855520368, 0.0144762853, 0.0048317546, 0.0130567439, 0.000357020355, 0.0104453955, 0.0110906418, 0.0111741442, -0.00593626406, 0.00482036779, -0.0100354739, -2.82739948e-05, 0.024473805, -0.0170800425, -0.00861593336, 0.024504168, 0.00310667, 0.012532956, -0.0118042072, 0.004493949, 0.00217296113, 0.0206478741, -0.00271762465, 0.00878293812, -0.0114170602, 0.00177632447, -0.016746033, 0.00660048798, -0.00546940928, 0.00733682746, 0.0038430097, -0.00992160756, -0.0195699334, -0.014362419, -0.00355644454, 0.0173229594, -0.00582998805, -1.16832243e-05, 0.0265385918, 0.00519992411, 0.0015694662, -0.0007970687, -0.00547320489, 0.0174899641, -0.0114550153, 0.00711668469, 0.00495700818, 0.0152202165, 0.0212096181, 0.0304556154, 0.0102556171, 0.00447497144, -0.0169282202, -0.00365133374, 0.0223634709, 0.0150456205, -0.00244434387, 0.0466702692, -0.00446358463, 0.0191751961, 0.0234717745, 0.0102783907, -0.0137930838, 0.00719259586, -0.00815287419, -0.00864629727, -0.0306226201, 0.00210843654, -0.00282390043, -0.00824396778, 0.00752660586, -0.00267777126, -0.00160172849, 0.014256143, 0.00590210361, -0.0201620422, -0.0100658387, -0.00526444893, -0.00127625884, 0.0057237125, -0.018324988, 0.00124399643, -0.00551495608, 0.000893381133, -0.0168978553, 0.016290566, -0.00389425, 0.018962644, 0.0120547153, 0.0024386507, -0.00924599636, -0.0239272434, -0.00425103307, -0.00725712068, -0.00937504601, -0.0147571573, -0.0117282961, 0.000794222, -0.00702179549, 0.0213918053, 0.00450154, 0.00693449751, 0.00924599636, -0.0103467107, 0.0214373525, -0.00358301355, -0.00553393411, -0.00507467054, -0.00691552, -0.004827959, -0.0167308506, 0.0015704151, -0.00472168298, -0.00044028557, 0.0186134521, -0.00308959, 0.00620954484, -0.0106427651, 0.0228796676, 0.000959803525, -0.0173836891, -0.00991401635, -0.00064856722, 0.0127303256, -0.0283149164, 0.0161083788, 0.0024120817, 0.00996715389, 0.0040308903, -0.0129732415, -0.0186589975, -0.00897271652, -0.00657012314, 0.0108021786, 0.00864629727, 0.0271307, -0.0083806077, 0.035283573, -0.00798586942, -0.00511262612, -0.0138234487, -0.00232478371, -0.00710150227, 0.0190841015, 0.00423205504, -0.0244586226, -0.000583093672, -0.013307251, -0.00332681276, 0.0113487402, -0.00361337815, 0.00260755327, -0.0096635092, 0.0310477223, 0.0159869213, -0.00505569298, -0.0184160825, -0.00447497144, 0.0117358873, 0.0151063493, 0.0109236361, -0.00399293471, 0.00874498207, -0.00185318466, 0.00297382521, 0.00774295302, 0.00400811667, 0.0130871087, -0.0123279961, 0.0129352864, 0.015273354, -0.0173533242, 0.0344940946, 0.00704836473, 0.000274941238, 0.0159717388, -0.0187956393, -0.00364184473, 0.00653975876, -0.01229004, -0.0190841015, 0.00711668469, -0.015577, 0.0080693718, 0.0088892132, 0.016958585, 0.0110754594, 0.00819082931, 0.0175962392, 0.00589451287, -0.00822119415, 0.0361337811, 0.0096635092, -0.00582619244, 0.0222116467, -0.00427760184, 0.0040346859, 0.00883607566, 0.0125785032, 0.00472547859, 0.00592487724, 0.0117662521, -0.0192511063, -0.0215739924, -0.0165790282, 0.00400811667, 0.00835783407, -0.00649421196, 0.00970146433, 0.000210179423, -0.00789477583, 0.00031503191, -0.000343498657, 0.00103144487, 0.00116049405, 0.0178695209, -0.00621334, 0.00843374617, -0.0185071751, 0.0152885364, 0.0167763978, -0.00335717737, 0.00729887187, -0.000209704973, 0.0076784282, 0.0260223951, 0.00932949875, 0.0194029287, -0.0141726406, 0.0109008634, 0.010741449, -0.0223634709, -0.00219383673, -0.00146888371, -0.00705595547, 0.016290566, 0.0127606904, -0.0117510697, 0.0122976312, -0.0102859819, -0.00358111574, 0.0101341587, -0.00038311485, 0.0147723397, -4.78893562e-05, -0.00745069422, -0.010673129, -0.00923840515, 0.000529955782, 0.00723814266, -0.0041295751, -0.00161311519, -0.00128479884, -0.0040840283, -0.00205340073, 0.00566298328, 0.00287514064, -0.0242308881, -0.00672194595, 0.0267663263, -0.00359250233, -0.00690413313, 0.0165942106, 0.0153340837, 0.00448635826, -0.00978496671, 0.0114246514, 0.00863870606, -0.000366509252, 0.000875826634, 0.00569334766, 0.00847170129, -0.0255365632, -0.0114777889, 0.00376709853, 0.0159869213, -0.0124342712, -0.00419409946, -0.0151746692, -0.00973182917, -0.0015428972, 0.00101721147, 0.0116372025, -0.021103343, -0.0157895517, -0.0147951134, 0.0147040198, -0.00513919536, -0.00951927714, -0.00505948858, -0.0124570448, 0.0139904534, -0.00460022502, -0.0262653101, -0.00790995825, -0.0213007126, 0.00326418597, 0.00967869163, -0.0144535126, 0.00940541085, 0.0175962392, -0.0030914878, 0.00831987895, -0.00476343418, 0.00712807151, 0.0190841015, -0.00959518831, -0.00980014913, -0.00445978902, 0.00240828609, -0.0108704986, -0.00773156621, -0.00574648567, -0.000320250809, 0.0175658762, -0.016533481, -0.00508226175, -0.00537072448, 0.00616399804, 0.010111386, -0.000135928683, 0.0178239737, -0.0235628691, -0.0101037947, -0.00161975739, -0.00762529, 0.00947373081, 0.00173836888, -0.00144326361, -0.0178543385, -0.0339779, -0.0253695585, 0.0222116467, 0.011128597, 0.0123811336, -0.00958759803, 0.00579582807, -0.0164727531, 0.00930672605, 0.00988365151, 0.00480138976, 0.0112272818, 0.00433833105, 0.0064220964, 0.00677887956, 0.00342359976, -0.0135577591, -0.0156832747, -0.010217661, 0.0107642226, 0.00739755668, 0.00544663612, -0.00807696301, 0.00432314863, 0.00761390384, -0.0136033054, -0.0212855302, 0.00436110422, 0.000908563437, -0.00825915, 0.0024860953, 0.0226974804, -0.00929154363, 0.0212248, -0.00137494353, -0.00743930787, -0.00337046175, 0.0115840649, 0.000416563271, -0.0177936088, -0.0102480259, -0.00504810177, 0.0023209881, 0.00669158157, 0.0116979321, 0.00647902954, 0.00874498207, -0.00346724875, -0.00707113789, 0.00571612129, 0.029316945, -0.0024120817, 0.010392257, 0.00557188969, -0.0171255898, -0.0199494902, -0.00194522715, 0.0225001108, 0.015577, -0.0142789157, -0.0101797059, 0.0189778265, 0.014149867, -0.00863111485, -0.0119788032, 0.00439526467, 0.0345851891, -0.00120983645, -0.0191448312, -0.0109691834, -0.00349192, 0.0157440044, -0.00178581337, 0.0264930446, 0.0250051841, -0.0126164583, 0.00358111574, 0.0175051466, -0.00515058171, -0.00355075113, 0.0139600886, -0.00391702307, -0.00501394179, 0.00373673392, 0.00412577949, -0.00894235168, 0.00536692934, 0.00382403191, -0.0217258148, -0.00382213411, -0.00614502, -0.013413527, 0.0209970661, -0.003045941, -0.0182338953, 0.00505948858, -0.000578823674, -0.0129276952, 0.0110906418, -0.00714704907, 0.0041751219, -0.00464577181, -2.64058654e-05, -0.0254606511, -0.00704456912, 0.0151139405, 0.0269940589, -0.0165942106, -0.00518094655, 0.00134837453, -0.00835024379, -0.0238816962, -0.0136412615, -0.00696865749, 0.00590589922, -0.0134287095, 0.00686997315, 0.00709391152, -0.00362666254, -0.00344067975, 0.00603115326, -0.000931336777, -0.0100506563, -0.00180858676, -0.0105061242, -0.0340386294, 0.00726471189, 0.00805418938, -0.0114853801, -0.00719259586, -0.00850965735, -0.0091776764, -0.00363804912, 0.00169282209, 0.00104852486, -0.0274798926, 0.0172015019, 0.013937315, 0.0269788764, -0.0109160459, 0.00920045, 0.0232592225, -0.0200557671, -0.0203745943, -0.00754558342, 0.00335148396, 0.0340993591, 0.0162298363, -0.0143548278, -0.0136412615, -0.025141824, 0.0219839141, 0.00573130324, 0.0112576466, 0.0197521206, 0.00251266407, 0.000563641428, 0.0139904534, 0.0148710245, -0.00693449751, -0.00341600855, -0.00164727529, 0.00336666638, 0.0158199165, 0.010392257, 0.00786441099, -0.00384680531, 0.00163683749, 0.024261253, 0.0105213067, -0.00163114408, 0.0125633208, -0.0206782389, -0.000795645348, 0.0219231844, 0.00455088262, -0.00382592971, -0.00143662142, 0.00991401635, 0.00742412545, -0.0121989464, 0.0293624923, 0.0255517438, -0.00775434, -0.0305922553, 0.010111386, 0.0110906418, 0.000286565162, 0.00129049213, 0.0179302506, 0.00766324624, 0.00181522907, -0.00837301649, -0.00295484741, 0.0154707236, 0.0215739924, -0.0160931963, -0.00952686835, -0.007970687, -0.0177176986, 0.0116068386, 0.0235628691, 0.0152050341, -0.00394359231, -0.0135122119, -0.00732164504, 0.0110526858, 0.00992160756, 0.00847170129, -0.00887403172, -0.00221661013, 0.0149317533, 0.0101948883, -0.00525685772, 0.0137854926, 0.0109312274, 0.00526824454, 0.0145294238, -0.00579962367, 0.0101721147, -0.0186286345, 0.0153037189, 0.037317995, 0.00914731249, 0.0185527224, 0.0195851158, 0.00152771501, 0.0213007126, 0.0131554287, 0.0131782023, -0.00461540744, 0.0118877105, 0.00436110422, -0.0119104832, -0.0267966893, 0.00455467822, 0.0112576466, 0.000922322331, -0.00947373081, 7.40728283e-05, 0.0123355864, -0.0144611029, 0.0023209881, 0.0125253648, 0.00427760184, 0.0228189379, 0.0237602387, -0.0308048073, -0.00705595547, 0.0116296113, -0.00616779318, 0.0433909, 0.0069307019, -0.00339513295, 0.0052416753, 0.000982102472, -0.00693449751, -0.0114018777, -0.0142105957, -0.006038744, -0.0166245755, -0.0270092413, 0.0217865445, -0.0204808693, 0.00534415571, 0.00755697, -0.00861593336, 0.00109407166, 0.0111437794, 0.0136716254, -0.0165790282, -0.00794791337, -0.0186134521, -0.00263981568, -0.015941374, 0.00633100281, -0.00962555315, -0.00989124272, -0.00744310347, -0.00417132629, 0.00143092813, 0.00537072448, 0.0258098431, 0.0107642226, -0.013868995, 0.00237981929, -0.00452431384, -0.0072685075, 0.0274495278, 0.00597801525, 0.00585276168, -0.00883607566, -0.021133706, -0.00123071205, 0.0251570065, 0.0083806077, 0.0177480634, 0.00327367499, -0.00465336302, 0.0178847034, -0.0235021394, -0.00964832678, 0.00206858292, 0.00620574923, 0.000248372293, -0.0188715495, 0.0127758719, -0.0161083788, -0.00413716584, 0.0053821113, -0.0245345328, 0.00741273863, -0.00114910735, -0.00559086772, -0.0106427651, -0.0130187888, 0.0109615922, 0.00918526761, 0.0109388186, 0.0023874105, 0.00511642173, -0.0147875221, -0.0141954133, 0.0134970294, -0.0603950322, 0.00294346083, -0.00810732692, 0.0150456205, 0.00434971787, 0.0209363382, 0.0338564403, 0.00340462197, 0.0227582082, 0.0151367141, 0.0160324667, -0.0182187129, 0.01229004, -0.00998233631, -0.0165790282, -0.00105801376, 0.0015836996, 0.0163057484, -0.00722675631, -0.0106959026, 0.000717361807, 0.00809973571, 0.00545043172, -0.0088664405, -0.00850206614, 0.00427380623, 0.0105744442, -0.000804659794, 0.000793273095, -0.00179150677, -0.00116428966, 0.010392257, 0.010991957, -0.0220294595, 0.012745508, 0.0115005625, 0.000289411837, -0.0265234094, -0.0118421633, -0.0317916535, 0.012183764, 0.000454993366, -0.0129428776, -0.0154403588, 0.00155143731, -0.00209515193, 0.012077488, -0.00466474937, -0.00513160415, 0.0161387436, -0.0153948124, -0.00681683514, -0.00295105181, -0.00756456144, 0.026933331, 0.00355264894, 0.0137019902, -0.00610326882, -0.00121837645, 0.0132768871, -0.0201316774, -0.00965591799, 0.00254872208, -0.0101645235, 0.0138765862, 0.00778090861, -0.00664223917, -0.00729507627, -0.0104833506, 0.00401191227, -0.0319434777, 0.0134211183, -0.0130111976, -0.00967869163, -0.00579203246, 0.00745828543, 0.00263222447, -0.00201734295, -0.00380884972, 0.0201013125, 0.0096862819, -0.00500255497, 0.0197065752, 0.000474682864, 0.00673333276, -0.00438767346, -0.0389880463, 0.022576021, 0.000179933515, -0.00420928188, 0.0180972554, 0.00617538439, -0.00246711727, -0.0045850426, 0.00202113856, -0.0032584928, 0.0136488527, -0.007583539, -0.00355644454, 0.0219383668, -0.0046837274, -0.00188165146, 0.0144914677, -0.00324710598, 0.0226671156, -0.0230314899, 0.0240790658, -0.0211185254, 0.00654355437, 0.00775813498, 0.0282086395, 0.00782645494, 0.00840338133, -0.00754178781, 0.0146964286, -0.00708252471, 0.000145773418, 0.00697245309, 0.01551627, 0.0138082663, 0.00669158157, -0.0150532117, -0.00710529787, -0.0164272059, 0.0054807961, 0.00579962367, -0.0179302506, 0.000679406163, 0.00449774461, -0.00106370717, 0.0089803068, 0.00130187883, -0.00231149909, -0.006232318, 0.00618677121, -0.00859316, -0.00564020965, -0.00161026849, -0.00776572619, -0.00479379902, 0.00590210361, 0.000765755249, -0.00392841, 0.0177025162, -0.0237146914, -0.0102252522, 0.00747726345, 0.00616020244, -0.0082819229, 0.00649800757, -0.00669537717, -0.0155618172, -0.000385249878, 0.0087677557, 0.00920804124, -0.00392841, -0.000604918227, -0.0178695209, -0.0149165709, 0.000521890237, -0.00595524162, -0.0067864703, -0.0127530992, 0.0235932339, -0.00518474216, 0.00513539976, 0.0210122485, 0.000495795684, -0.00940541085, 0.00634238962, 0.00357352453, 0.0276165325, -0.0281782765, -0.00848688371, 0.0208300613, -0.0218928196, 0.0132996608, -0.00446738023, 0.0187804569, 0.0175506938, 0.0162298363, 0.00615640683, -0.00505948858, -0.0166701227, -0.0192966536, -0.0218320917, 0.000252167869, 0.022576021, -0.00343498657, -0.000448588369, 0.0145142414, -0.00646384759, 0.0133831631, 0.000172698215, -0.00515058171, -0.00781127298, -0.00949650444, 0.0155086797, 0.0150456205, 0.00560984528, -0.000381928752, -0.0172622297, 0.0152961276, -0.00586794363, -0.0320042036, -0.00273850025, -0.0109464098, -0.00359819573, -0.0382592976, 0.014605335, 0.0120926704, -0.00231339689, -0.0147647485, -0.00223369012, 0.0264474973, 0.00354316016, -0.0161994714, 0.0307896249, 0.0114018777, 0.0114777889, 0.00210843654, 0.00743171666, -0.0117814345, 0.016184289, 0.00757215265, -0.0111210058, -0.00644866517, 0.0112880105, -0.00606151763, -0.0111210058, -0.00581860123, 0.0134590743, 0.0310932696, 0.00443322025, 0.00867666211, 0.023486957, 0.00919285882, 0.0191296488, 0.0069762487, -0.0102632083, 0.0365285203, -0.0104074394, 0.019554751, -0.00923840515, 0.00311995461, 0.0125177735, -0.0135122119, -0.0202835, -0.0257642958, -0.0119484393, 0.00834265258, 0.00191201596, -0.0172166843, 0.00896512531, 0.0211944357, 0.00304973661, -0.00525685772, -0.00530240452, 0.00183800247, 0.00169187319, 0.00100677367, -0.00412577949, 0.00670676352, -0.0213614404, -0.00385819189, -0.00162450189, -0.000580247, -0.0107642226, 0.0128062367, -0.00421307748, -0.00255441526, -0.0127530992, 0.0062816604, 0.00764047261, -0.00728368945, 0.00411439268, -0.00665362552, 0.0160476491, -0.0202531349, 0.0097773755, -0.00438387785, -0.00713186711, -0.00192814716, -0.00265689567, 0.0233351346, -0.0160628315, -0.0204353221, -0.0182338953, -0.00991401635, -0.00544663612, -0.00643348275, -0.0174596, -0.000502437935, -0.0124874096, -0.0266448669, 0.00244624168, 0.0164120235, 0.000519043533, -0.0303948857, 0.0148558421, 0.0232440419, -0.00590969482, 0.00691552, -0.00517335534, 0.00590589922, -0.0357390419, 0.00143851922, -0.0158958267, -0.00549597852, -0.0116372025, 0.00964073557, -0.0116599761, -0.0304859802, 0.0121230353, -0.00830469653, -0.00423585065, -0.00165581529, -0.0223786514, 0.0110754594, -0.00540868053, -0.0253543761, -0.00677128835, 0.0188563671, -0.0101721147, 0.0076822238, 0.00811491814, 0.0120471241, -0.00953446, 0.00757215265, -0.022333106, -0.00639932277, -0.00209135632, 0.00906380918, -0.00280682044, -0.0138234487, -0.0183553528, -0.0215891749, -0.020784514, -0.00576166809, -0.0330669619, -0.033249151, 0.0186589975, 0.00798586942, 0.0216043573, 0.0116599761, -0.010673129, -0.0046381806, -0.010741449, -0.0186741799, -0.0121458089, 0.00329644838, -0.00105611596, 0.00222609891, 0.0159717388, -0.000714515161, -0.00234945491, -0.00373673392, -0.0129352864, 0.0290284827, 0.00390184089, -0.0167004876, -0.019554751, 0.000815097592, -0.0144914677, -0.0327936821, 0.0116068386, 0.00371016492, -0.00642968761, -0.00299280323, 0.00571612129, 0.00187880476, 0.0117358873, -0.01229004, 0.0659517422, 0.00276696705, 0.0137019902, -0.0522269756, -0.00813010056, -0.0298483241, -0.00633859402, 0.0429354347, -0.00113772065, 0.000871556636, 0.0158047341, -0.00748105906, -0.0131857935, 0.0159869213, 0.0212855302, -0.0109236361, -0.0132389311, -0.00954964198, -0.0200709477, 0.00141384802, 0.00646384759, -0.0277835373, 0.0156529099, -0.0175810587, 0.0054845917, -0.00575407688, -0.00822119415, -0.0136640342, -0.00716602709, -0.0124039073, 0.0171559546, 0.00775054423, 0.00412198389, -0.0102935731, -0.0102404347, -0.00670676352, 0.0328240469, -0.00522269774, 0.00454708701, -0.00277076266, 0.0259616654, 0.0171104074, -0.0120698968, 0.00351089775, 0.00935986359, 0.0105061242, 0.000230224745, -0.0110450946, 0.00569714326, -0.0229403954, -0.00552634289, -0.0156984571, -0.00307820342, 2.59462468e-05, -0.0148330685, 0.000780463102, 0.0197824854, 0.00329644838, 0.0122065376, 0.0073140543, -0.0068851551, 0.0104074394, -0.00345965754, 0.00920804124, -0.00815287419, -0.0291954875, 0.00297002983, 0.000454281719, -0.00345776, -0.00109786727, -0.00358680915, -0.0101645235, 0.00221091672, -0.0111513706, -0.00744689908, 0.00216537, -0.031700559, 0.00623611361, 0.004827959, 0.00313323899, -0.0158958267, 0.0178695209, -0.0152505804, -0.000433168869, -0.0234565921, -0.0114398338, -0.0153720388, 0.0121382177, 0.00336666638, 0.0279049948, -0.00654735, 0.00598181086, -0.0300456937, 0.017307777, 0.003019372, 0.000537546934, -0.0228493027, 0.00841097254, 0.0235780515, 0.0128593752, -0.000985898077, 0.00509744417, -0.0171863195, -0.0155314524, -0.00558707211, 0.0347370133, 0.0102480259, 0.0300608762, 0.00308199902, 0.0159869213, -0.00913213, 0.00765565503, -0.00588312605, 0.0235628691, 0.025733931, 0.00178486446, -0.00706734229, -0.00360578694, 0.00616399804, -0.00253923307, 0.011341149, -0.00342359976, 0.00201164954, 0.000600648171, 0.0273584332, -0.0167156681, 0.0039397967, -0.00441044662, -0.00781127298, -0.0122369025, 0.00899548922, -0.00840338133, -0.000702654, 0.00278025144, 0.0206934214, -7.68008904e-05, 0.0222875588, 0.000361764804, 0.0150911668, 0.0056781657, 0.0129125128, 0.00803141575, 0.0135501679, 0.0197217558, -0.0173836891, -0.00952686835, 0.0103770755, -0.0150608029, 0.00720777828, 0.0332187861, 0.00489627896, 0.011341149, 0.0224849284, -0.0165942106, 0.0188260041, 0.00883607566, -0.0189930089, -0.0274798926, 0.0305618905, 0.0149013884, 0.00680165272, -0.00773915742, -0.00516576413, 0.000106572355, 0.010847725, -0.00547700049, 0.0234414097, -0.0257187504, 0.00963314436, 0.0111134145, -0.0110223209, 0.028072, -0.00465715863, -0.00199267175, -0.00124209875, 0.00432694424, -0.0144383302, -0.0255517438, -0.0204049591, -0.0215436276, -0.00296243862, 0.0199343078, 0.0202531349, 0.0436641835, -0.00504430616, -0.012183764, 0.0130111976, -0.00527963135, 0.00732544065, -0.00505569298, -0.0100810211, 0.0417208523, 0.0163209308, 0.00554152532, 0.0176569689, -0.012570912, 0.0261438526, 0.0103163458, -0.0150456205, -0.00252974429, 0.0144003741, 0.00264171325, -0.00788718462, -0.0204808693, -0.0222723763, 0.0323382169, 0.0212096181, -3.65916203e-05, 0.000250981742, -0.00733303186, 0.0150911668]
06 Jan, 2023
Angular PrimeNG Form Calendar Month Picker Component 06 Jan, 2023 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. This article will show us how to use the Calendar Form Month Picker component in Angular PrimeNG. Calendar component: It is used to display a month-wise calendar that allows the user to select dates and move to the next or previous month. Angular PrimeNG Form Calendar Month Picker Component is used to pick the month of the corresponding year. Syntax: <p-calendar view="month" dateFormat="..." [readonlyInput]="true" inputId="..." placeholder="..."> </p-calendar> Angular PrimeNG Form Calendar Multiple Months Properties: readonlyInput: It is used to prevent entering the date manually with the keyboard. dateFormat: It is used to set the Format of the date which can also be defined in locale settings. view: It is used to specify the type of view to display. Creating Angular Application & Module Installation: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: It will look like the following. Run the below command to see the output. ng serve --open Example 1: Below is the example that illustrates the use of the Angular PrimeNG Form Month Picker Component. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>PrimeNg Calendar Months Picker Component</h4> <div class="p-fluid p-grid p-formgrid"> <div class="p-field p-col-12 p-md-4"> <p-calendar view="month" dateFormat="mm/yy" [readonlyInput]="false" inputId="pickmonth" placeholder="Pick any month"> </p-calendar> </div> </div> app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent {} app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, CalendarModule, FormsModule, ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule {} Output: Example 2: Below is another example that illustrates the use of the Angular PrimeNG Form Month Picker Component using readOnlyInput=”true”, which will disable any manual inputs from the keyboard. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>PrimeNg Calendar Month Picker Component</h4> <div class="p-fluid p-grid p-formgrid"> <div class="p-field p-col-12 p-md-4"> <p-calendar view="month" dateFormat="yy/mm" [readonlyInput]="true" inputId="pickmonth" placeholder="Pick any month"> </p-calendar> </div> </div> app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent {} app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, CalendarModule, FormsModule, ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule {} Output: Reference: https://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Year Picker Component/Angular PrimeNG Form Calendar Month Picker Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-month-picker-component?ref=asr1
Languages
Angular PrimeNG Form Calendar Month Picker Component
PHP | IntlChar::isUWhiteSpace() Function, Angular PrimeNG Form Calendar Year Picker Component, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, Angular PrimeNG Form Calendar Month Picker Component, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0384209342, -0.00351912598, -0.00991753675, 0.0138022872, 0.0439966917, 0.0294479243, -0.0212671, 0.0277416818, -0.0055262465, 0.0126749473, 0.00700778374, 0.00162721495, -0.00450554769, -0.0625216141, -0.0073810243, -0.0200635884, -0.0624606796, 0.00177860598, -0.00272694184, 0.00171386008, -0.0141374413, 0.0226381868, -0.0319615863, 0.00472263666, 0.00306019234, 0.0429607593, 0.0239635725, -0.00362957479, -2.58417967e-05, 0.0311694033, 0.0208100695, 0.0164225884, 0.0247100536, -0.00978042837, -0.0667262897, -0.0181135964, 0.00737721566, 0.0375678129, 0.000765524164, 0.00167291786, 0.00132157654, 0.00669167144, 0.017824145, 0.024694819, -0.0315045565, -0.00399900693, 0.00162531063, -0.0207948368, -0.0371412523, 0.00984898303, 0.0271170754, 0.0278483219, 0.0405537374, 0.0470740236, 0.0031763541, 0.0176413339, -0.0207643677, 0.0168948527, -0.0161179025, 0.0073810243, 0.0563364848, -0.0391826518, -0.00197284343, -0.0262487195, 0.0464037135, 0.0322053358, -0.0195456222, 0.0361967236, 0.0200635884, 0.0206272583, -0.0156761073, -0.0108315963, -0.0100698806, -0.023643652, -0.00539675495, -0.0151733747, 0.00236322265, 0.00297259516, -0.0514615066, 0.0278026201, -0.00907965, 0.00373621495, -0.0275131669, 0.00267552608, 0.0219983459, -0.0116542485, 0.0598708466, -0.0455505922, 0.0118522951, 0.0274522305, 0.0425342, 0.0304533895, -0.0120731927, -0.00126254361, 0.0212823339, 0.0158284511, 0.0620645881, 0.0297526121, -0.0352522, 0.00124826143, -0.0117913578, 0.00990230311, 0.00725153275, -0.0338506401, 0.0271780118, -0.0102146063, 0.0276045743, -0.0190276559, 0.0216784254, -0.0388474949, -0.0086150039, -0.000155556612, 0.0165749323, 0.00800563116, -0.0584997572, 0.0335764252, -0.00955953076, -0.00936148502, 0.010488824, -0.0221659243, 0.0186772663, -0.0139850983, 0.0141907614, 0.038725622, -0.0389693715, 0.0295393318, -0.00381048233, -0.00410945574, 0.0261877831, -0.03020964, 0.0128272912, 0.00516062323, -0.0142974015, 0.00542341499, 0.0486583933, 0.0425037295, 0.00654694578, -3.35928489e-05, -0.0453068428, 0.0119056152, 0.00513396319, -0.0407670178, 0.0147239622, -0.0331193954, -0.0223030336, 0.0148001341, 0.0237502921, 0.0689200312, 0.00718678674, 0.00563288666, -0.0489326119, -0.0377506241, 0.0159198567, -0.00230228552, 0.0329365842, -0.0566107035, 0.00814274, -0.0186772663, -0.026492469, -0.0379029699, -0.000986421714, 0.0137870526, 0.0160112623, -0.00750289857, 0.0208253041, -0.00927769579, 0.00219183671, -0.0296307374, -0.0144421281, 0.0413459241, 0.00991753675, 0.0177175049, -0.0191495307, -0.0156761073, -0.0287471469, 0.00479880814, 0.0259135645, 0.00237845699, 0.0164987594, 0.00932339858, -0.00917867292, -0.00471882802, 0.0130558051, -0.000943099149, 0.0173823498, -0.00869117491, 0.0350084491, -0.0027878792, -0.0198807772, 0.00992515404, 0.00262030168, 0.0207796022, 0.0243748985, 0.0365318805, 0.0247862265, -0.01084683, -0.0277416818, 0.0308951847, -0.0200331211, 0.0223182663, -0.000611752854, -0.0343076698, -0.0169862583, 0.0337897055, 0.0357092284, 0.0231713895, 0.00463884789, 0.0166206341, 0.0365014113, -0.0247709919, 0.00403709291, -0.0142974015, 0.0232170913, -0.00584997563, -0.00391140953, 0.0193780456, -0.017824145, -0.0134061947, 0.0213737395, -0.0116771, -0.0297069084, 0.0666653514, 0.0257764552, 0.0105878469, -0.0709309578, -0.0140308011, -0.0290365983, -0.0147163458, 0.027208481, 0.00982613117, -0.000976900221, 0.0049283, 0.00413230713, -0.00199569482, 0.0400662422, 0.00702301785, 0.0232780296, 0.0103060119, 0.00471501937, 0.0595052242, 0.0242834929, -0.0360139124, -0.023978807, -0.0250756778, 0.0141983787, -0.0137489671, 0.0137184979, 0.0400662422, -0.00213661231, 0.0278635565, 0.00280120922, 0.00433797, -0.0505169779, 0.00432273606, -0.023003811, -0.0101155834, -0.00119208486, 0.000278026186, 0.0192561708, 0.0520404093, 0.0176718011, 0.0253498945, 0.000664120773, 0.0449107513, -0.00818082597, -0.0220135804, 0.0223944392, -0.00601755315, -0.0147772823, 0.0196522623, 0.0402185842, -0.0283967573, 0.0531982183, 0.0108315963, -0.0281987116, -0.00990992, -0.039517805, -0.0314436182, 0.0217393637, 0.0198350735, -0.00501970574, -0.00819606, 0.00534724351, -0.00242987275, 0.00585378427, -0.023643652, 0.00815035682, 0.00454363367, -0.0385732763, 0.0385732763, -0.00671071466, -0.0297678448, -0.0345818885, 0.0191190615, 0.0163007136, 0.0409802981, -0.00936910231, 0.00358387199, 0.00269456883, 0.0384514034, -0.0188143756, -0.0120427236, -0.0278635565, 0.00637175096, -0.0277112145, 0.0209167097, 0.0299049541, -0.00899586082, -0.0204292126, -0.0324795544, 0.0280920714, -0.0354350097, -0.0477748029, -0.0127587365, -0.0100622633, 0.0278026201, 0.00551862968, 0.0672747195, -0.0242834929, -0.00286785932, 0.00669167144, -0.0158893876, -0.00946812518, 0.00150819693, 0.0296002682, -0.017565161, -0.0188600775, -0.0188448448, 0.0456115305, -0.0166815724, -0.0474701151, -0.0206729621, -0.0109153846, 0.00627653673, 0.0122560039, -0.0146401739, 0.0226381868, -0.0389084332, 0.0189667176, 0.0220897533, -0.0318701826, -0.0100394115, 0.0149677116, -0.0181288309, 0.007898991, -0.0378115624, 0.0243291967, 0.00234227558, 0.0187382046, 0.00649743387, 0.00145297253, 0.0029764038, 0.0581950732, -0.0100317942, 0.0262791887, -0.0186163299, 0.00678688614, -0.049084954, -0.0153790377, -0.0150667345, -0.0212823339, -0.0296307374, 0.00267552608, 0.0462209024, 0.0510044768, -0.0309561212, -0.0102983946, 0.0241920874, -0.00185001676, -0.0181288309, -0.0193932801, -0.0114866709, -0.0141069731, 0.0257155187, -0.0408584252, -0.00879019778, 0.0101384344, 0.0198960118, 0.0269037951, -0.00930054765, -0.0651419163, 0.0701997131, -0.00113400409, 0.0189514849, 0.0542036816, 0.0105345268, 0.00334774, -0.00822652876, -0.0140308011, -0.0400357731, -0.00732008694, 0.0618817769, 0.00924722757, -0.0182659402, -0.00386189809, -0.0374764092, 0.0177327394, 0.0198807772, 0.0417420156, -0.00999370869, 0.0383904651, 0.0170624293, 0.0141222076, -0.0264010634, 0.00350770028, 0.00313636404, -0.0486583933, -0.00138251379, 0.0403404571, 0.028823318, 0.016849149, 0.00880543236, -0.045642, -0.0112962425, 0.0336678289, 0.0245729461, -0.00943765603, 0.048292771, -0.0252432544, -0.00929293, 0.0425037295, 0.00817320868, -0.0366232879, 0.00725914957, -0.00379143935, -0.00570525, -0.0535638407, 0.0387560911, 0.000959285593, 0.0108087445, -0.0300268289, -0.00781520177, 0.00673356606, -0.00811227132, 0.0321139283, 0.00240321271, 0.00850836374, 0.026492469, 0.0197741371, -0.0305295605, -0.00777711626, 0.0105726123, 0.0127130337, -0.0324490853, -0.0360139124, -0.00339153875, -0.0547825843, 0.00494353427, -0.0306666698, 0.0183421113, -0.0108315963, -0.0331498645, -0.0121874493, 4.9169339e-06, 0.022104986, 0.0173061788, 0.0213737395, 0.0118142087, 0.00216136803, 0.00211376068, 0.0217393637, 0.0261725485, -0.00588425295, -0.00638698554, 0.00411326438, -0.0322053358, -0.00268314313, 0.0232018568, -0.00064317364, 0.0248623975, 0.0173975844, 0.0453373119, 0.0214956142, 0.0244206022, 0.0153942723, -0.00512253726, -0.00557956658, -0.00423894729, -0.0089653926, 0.00710680662, 0.0616684966, -0.0106564015, 0.0350693874, -0.00103593327, 0.0104278866, -0.0405232683, -0.0226077195, -0.0303772185, -0.00982613117, 0.0336678289, 0.0253803637, 0.012949165, -0.0368061, 0.0118675288, -0.00338582578, 0.000403709273, 0.00247557578, -0.00654313713, 0.0115856947, -0.0214194432, 0.0279244948, 0.0232323259, -0.0306819044, 0.0301639382, 0.0314131528, -0.00420467, 0.00460076239, -0.00563669531, -0.0327537693, -0.00999370869, -0.00231180689, 0.0304381549, 0.00584616745, 0.0321443975, 0.00338011305, -0.0121722156, 0.00495496, 0.0440881, 0.00213470799, -0.0311237, 0.0269647315, 0.0152114602, -0.0118979979, 0.000744577, -0.0140612703, 0.0218460038, 0.00166054, -0.037080314, 0.0284576956, -0.00257079024, -0.00922437571, 0.00393806957, 0.0361662582, 0.030133469, -0.00175289798, -0.0122788558, -0.0283205863, -0.00855406653, -0.0142974015, -0.00570525, -0.032540489, 0.043417789, -0.0241463855, -0.000342057901, -0.0121950665, -0.00779996766, -0.0119817862, -0.0248014592, 0.00546150096, 0.0199569482, -0.0123702614, 0.0157827474, -0.000595090329, 0.00466169929, -0.0297069084, -0.0231256858, -0.0257307533, -0.0182050038, -0.00484832, -0.0128653767, 0.0195913259, -0.0125987763, 0.0220745187, 0.0267666858, -0.0239635725, -0.0326014273, 0.00078266277, 0.00140346098, 0.011539991, -0.00576237869, 0.0106335497, -0.0131700626, -0.00176146731, 0.00542722363, 0.00915582199, 0.0075600273, 0.0455810614, 0.022287799, 0.00882828422, -0.0039494955, 0.00142726465, 0.0249081, 0.0251366142, -0.0233084969, 0.0029211794, 0.00498162024, 0.0215565506, -0.014335488, -0.0438443497, -0.0149829462, 0.017824145, 0.0104964413, 0.00620036479, -0.0109839393, 0.0126749473, 0.00825699698, -0.0235827155, 0.0134442803, 0.0219374094, -0.0169557892, -0.00198046048, 0.0139698638, -0.00621179072, 0.0294174571, -0.0223030336, 0.00204711058, -0.0116999513, -0.00223753951, 0.0350693874, -0.0186010953, -0.0163616519, 0.0095366789, 5.11182589e-05, -0.0050882604, 0.0192104671, -0.0212671, -0.00318397116, -0.015874153, -0.0199569482, -0.0146477912, -0.006398411, 0.017565161, 0.0257916898, 0.00334583572, 0.0180526599, -0.0229581092, 0.0124540497, -0.039670147, -0.00497019431, -0.0271932464, -0.025441302, -0.022028815, -0.00427322462, -0.0134747494, 0.0206881966, -0.000783614931, -0.0151352892, -0.00578903873, 0.00189381547, 0.0253498945, 0.0233389661, -0.0148001341, -0.0191190615, 0.0788528, -0.00503494032, 0.0256241132, -0.00879019778, 0.0225010794, 0.0186620317, -0.034490481, -0.0475005843, -0.0206272583, 0.0202921033, 0.0166358687, 0.0103821838, -0.0199417137, 0.0163311828, -0.0171538349, -0.0124997534, 0.000988326, -0.0199264809, 0.0100851143, 0.00754098454, -0.0192409363, 0.032540489, 0.0322053358, 0.0181135964, 0.022821, 0.0184030496, 0.0310627632, 0.000264934206, -0.0140003329, -0.0164987594, -0.0041208812, -0.0336068906, -0.0305447951, -0.0035096046, 0.0124616669, -0.00939957052, 0.0103898011, -0.00834078621, 0.0141374413, 0.0155999353, 0.0062879622, 0.00260887598, -0.000239583358, -0.037720155, -0.00899586082, -0.0255479421, -0.000848360767, 0.0116999513, -0.0218612384, 0.0298287831, -0.00680973753, -0.00885113515, -0.0257612225, -0.007898991, -0.0217393637, 0.0144878309, -0.0275131669, -0.0145259164, -0.0283967573, -0.0315045565, 0.0256850496, -0.0170928985, 0.0254565347, 0.00507302582, 0.0269037951, -0.0193171073, 0.00426179869, 0.00561003527, 0.00716774398, 0.000820272486, 0.0458248109, -0.0294936281, 0.0234608408, -0.0148382196, 0.014617322, 0.000650314672, -0.00383333373, 0.00579665555, -0.0231256858, -0.00222801813, 0.00377620501, -0.0288842563, 0.0143050188, 0.0107021043, -0.0440881, -0.0304229204, 0.00435320474, -0.0249081, 0.0117228031, 0.0168643836, -0.00806656852, 0.00332488865, -0.0232475605, -0.00132824155, 0.0288537871, 0.0151200546, 0.0114181172, 0.00101498608, -0.00373050221, -0.00637555961, -0.0104050348, 0.0345514193, 0.00146820687, -0.00593757303, -0.0173671152, 0.00190238468, 0.00273646321, -0.00925484486, 0.0010559283, 0.0218307693, -0.00757907, 0.0182659402, -0.00710299797, -0.0174280535, 0.0201245267, 0.0175499283, 0.00981089659, 0.0031439811, 0.000393711758, -0.0445146598, 0.017412819, 0.00749528175, 0.0405232683, -0.010976322, -0.0119284661, 0.0156761073, 0.020413978, -0.0159960277, 0.00244510709, 0.0422904491, 0.0287319124, 0.0191495307, -0.0250756778, -0.0197132, -0.0101460516, 0.00544626638, 0.00441033347, -0.0192561708, -0.00728200097, -0.0218460038, -0.0243444312, 0.0116390148, -0.0108544473, -0.00374954497, 0.000904061191, 0.0300420634, 0.0261877831, 0.0121950665, 0.0169862583, 0.0138175208, 0.00603278773, 0.0137032634, -0.0394264, -0.00506160036, -0.0292498786, 0.00329061132, -0.0583778843, -0.0232475605, -0.0117304204, 0.03020964, 0.0256850496, -0.0101536689, -0.0164530575, -0.00750289857, 0.012309324, -0.0167272743, 0.000313017517, -0.00270218612, 0.00255174725, -0.0103136292, 0.0141679104, 0.0159046222, -0.0293108169, 0.0299963597, 0.0106716352, -0.0485365167, -0.00968902279, 0.0208710078, -0.0224249065, 0.012156981, 0.00995562319, -0.0404318646, 0.0188905466, -0.0108696818, 0.00988706853, -0.00614323653, -0.00490925694, 0.0023556056, -0.0343990773, -0.0462513715, 0.0234456062, 0.00125778292, 0.00884351786, -0.0090491809, 0.0364709422, 0.0243901331, 0.00556814112, -0.0148458369, 0.0176108647, -0.0152038438, -0.0427779481, 0.00912535284, 0.0121265128, -0.00303543662, -0.0160569642, 0.0214042086, -0.00136537524, 0.0363186, 0.0284576956, -0.00834840257, 0.0283205863, -0.0320529938, 0.0187534373, -0.00366575643, 0.0198350735, 0.00352483895, 0.00342962448, -0.00847789459, -0.0215717852, 0.0262487195, 0.0181135964, 0.00379143935, 0.0229428746, -0.00717536081, -0.029158473, -0.0183573458, 0.00185953826, -0.0164835248, 0.017565161, 0.0233846698, 0.0268276241, -0.00540437223, -0.0232475605, -0.0269952, -0.000312303397, 0.0186772663, -0.0112048369, 0.0227905307, -0.0193932801, -0.0167882126, -0.00068268762, -0.00648981705, 0.0213585049, -0.00124064425, -0.0320834629, -0.0351912603, -0.0103288637, -0.00127968227, -0.0231409203, -0.00208710064, -0.0450326279, 0.0385732763, 0.0349475108, -0.0083027, -0.0168186799, -0.0261877831, 0.0187077355, 0.00563288666, 0.0184487514, 0.00494734291, -0.00339153875, -0.00594138168, -0.0232932623, 0.0335764252, -0.00541960634, -0.012949165, 0.01084683, -0.00027445564, 0.0320225246, -0.0157675128, -0.0210385844, 0.0213585049, -0.0285186321, -0.0676403418, 0.0321139283, 0.00189571967, -0.0301791728, -0.00968902279, 0.0245881788, 0.000868355797, 0.0207186639, -0.014411659, 0.000268266711, -0.0134290457, 0.010823979, 0.00310779968, 0.0245272424, -0.0197741371, 0.0385732763, 0.0146020884, 0.0243901331, -0.0465560593, -0.00463503925, 0.00211376068, 0.00936148502, -0.0303010475, -0.00911011826, 0.0202768687, 0.00694303773, -0.0278330874, 0.00606325641, 0.00564812124, -0.035495948, 0.00069649372, 0.0298440177, 0.0170471948, -0.00751813315, 0.000705063, -0.0225620158, 0.00289261504, 0.033698298, 0.00856168382, -0.029082302, -0.0286100376, 0.00628415355, 0.0218003, 0.022668656, -0.0361053199, -0.0321139283, -0.0362271927, 0.00130443799, 0.0190581251, 0.00328299426, -0.00731627829, -0.001791936, 0.0242987275, -0.0486279242, 0.0130634224, -0.0238264631, 0.0382381231, 0.000750765961, 0.0292651132, 0.0296002682, 0.0012463571, -0.000563193462, -0.015386655, -0.0260811429, 0.0326623656, 0.00979566295, 0.0151352892, 0.00256507727, 0.0200635884, -0.0301487036, 0.0135890059, -0.0345514193, -0.00938433595, 0.0167882126, 0.00950621068, 0.00385047239, -0.00243558572, -0.0357701629, -0.00307923532, -0.007064912, 0.0569153912, 0.0161940735, -0.0128120566, 0.0112429224, -0.000423942343, -0.0138556072, 0.00799039658, 0.0109306192, -0.0206424929, 0.033698298, 0.0279244948, 0.0292498786, -0.0214803796, -0.0109991729, -0.00675641745, -0.00220516673, -0.000974519877, 0.0030430539, 0.0366842225, 0.0129034622, 0.00708776386, 0.0208710078, -0.0106564015, -0.00517204916, 0.00396853825, 0.0148001341, 0.022028815, 0.0149296261, 0.0135052176, 0.0183268767, -0.00732389558, -0.0203073379, 0.00743434438, -0.00285643362, 0.00103498111, 0.0056214612, 0.0225772504, -0.000727914448, 0.00460837921, -0.016590165, -0.0196217932, -0.022668656, 0.0180831291, -0.0105497614, -0.00437605614, -0.0145792365, 0.00273455912, -0.0223639701, -0.011669483, -0.00800563116, -0.0171233676, 0.0175803956, 0.0090034781, -0.0327537693, -0.0192104671, -0.0162702445, 0.0278940257, -0.0163921192, -0.0139774811, 0.00294212648, -0.00393426092, -0.0127130337, -0.00232323259, -0.0411935784, -0.00484451139, -0.0269647315, -0.0175956301, -0.00361053203, -0.0123245586, 0.0196065605, -0.00600993633, -0.00762858195, -0.0173518807, 0.0180831291, -0.019179998, -0.00978042837, 0.010412652, -0.0118522951, -0.00432273606, -0.0178850815, 0.0179764889, -0.0296307374, 0.00944527332, 0.00996324047, 0.0109687047, -0.00248700147, 0.0148077514, 0.0318397135, -0.0254565347, -0.0343990773, -0.00920152478, -0.014617322, 0.00728961825, -0.0231866222, -0.00413230713, 0.0186772663, -0.0205967892, -0.0158132166, 0.00264315307, 0.0208710078, -0.0428388864, 0.0768418685, -0.0133224055, -0.00511111179, -0.0244053677, -0.00180050521, -0.0258526281, -0.0079370765, 0.00942242239, 0.0117685059, -0.0304076876, 0.0245729461, -0.00223373109, -0.00238988269, 0.0152800148, -0.0123854959, -0.0207948368, 0.00243368139, 0.0244053677, 0.0128729939, -0.0235979501, 0.0164682921, 0.00268314313, 0.0027993049, 0.0276350416, -0.00600993633, -0.0208862424, -0.00795992836, 0.00728200097, -0.0045931451, -0.012156981, -8.71212251e-05, -0.00251747016, 0.0226381868, -0.00853883196, 0.0115019055, 0.00284119928, -0.00311351242, 0.00824938, -0.0129872514, 0.000225539232, 0.0230190456, 0.000819796405, -0.0284119919, -0.00182050024, 0.0213585049, 0.00648219977, -0.0241159163, -0.0103136292, -0.00412469, 0.0102603091, 0.000106223619, 0.00442556757, -0.0129948677, 0.0155847017, -0.0156151699, 0.0102450745, -0.0267362185, -0.0287319124, 0.00766666746, -0.030697139, -0.00615847064, -0.00741530117, 0.0101765208, -0.0423209183, -0.0128882276, 0.00842457451, -0.00795992836, -0.00629177084, -0.00196141773, 0.0346732959, 0.0173975844, 0.00747623853, 0.014693494, 0.00164435362, -0.0089653926, -0.000757907052, 0.00390760088, 0.00998609141, 0.0266295783, -0.016849149, -0.0259897355, 0.0108925328, -0.0190276559, 0.0182202365, -0.0104050348, -0.00472263666, -0.00779615901, -0.0337592363, -0.00898824446, -0.0166358687, -0.0195608567, 0.00444080215, -0.0217241291, -0.0197589025, 0.00288690208, 0.000269456883, 0.0143811908, 0.00376287499, -0.00237655267, -0.00903394725, 0.0224858448, 0.0194085129, 0.00689733494, 0.00695827184, 0.00210423931, -0.00304876664, 0.0349170417, 0.0108392127, -0.0172452405, 0.0112429224, 0.024054978, 0.00581569877, -0.0104659721, -0.0298897196, 0.000642221479, 0.00435701339, 0.00842457451, 0.0135966232, 0.0329975188, 0.0104583548, -0.0177327394, -0.00604802184, 0.0269190297, 0.033545956, 0.0287623815, 0.00987945125, -0.030620968, 0.0151962265, -0.00733912969, 0.0248928666, -0.00786852185, 0.0129796341, -0.00771998754, 0.000854073616, -0.019362811, 0.0202006977, -0.0228819363, 0.0248319283, -0.0046159965, 0.0112810079, -0.00297830789, 0.00877496414, -0.00929293, -0.0217393637, -0.00286405068, 0.00962808542, -0.0203073379, 0.0126140108, 0.0290975366, -0.0100927316, -0.0199264809, 0.0168948527, 0.0028773807, 0.0172300078, 0.00469597662, -0.0204292126, 0.00288499775, -0.0149067743, 0.000790756, -0.00613561925, 0.00762477331, 0.0298135486, 0.0138251381, 0.00852359738, -0.0013777531, 0.00118351565, -0.00246986281, -0.0298897196, -0.038877964, 0.00242796843, 0.00248509715, 0.00495115155, -0.00517585734, 0.00233656261, 0.00898062717, -0.0145868538, 0.024877632, -0.0136727951, 0.0187077355, 0.0232323259, -0.0383904651, 0.0216479581, -0.0290365983, 0.000687924388, 0.00840172265, 0.0052824975, 0.00351912598, -0.0109534701, -0.00371145923, 0.00486736279, 0.00361814909, -0.00166244432, 0.00593757303, 0.0175042246, 0.0300115943, 0.00615847064, -0.0275284015, -0.0437224768, -0.00022780057, -0.00870640948, -0.0113038598, -0.0141526759, 0.0196065605, 0.0197132, 0.00685163168, 0.0074267271, -0.00447888765, 0.00940718781, 0.00387713243, -0.0163464174, -0.0141222076, 0.00201854645, 0.0248014592, -0.00637936825, -0.0140079502, -0.028823318, 0.0101308171, -0.00571667543, -0.0122026838, -0.014053653, -0.0225772504, 0.0102679264, -0.0219831131, 0.00341439014, -0.00870640948, 0.0110220248, 0.0193018727, 0.00207377062, -0.0139393955, 0.00517966598, -0.0161940735, 0.0217698328, 0.0142745506, -0.00186239462, 0.00217850669, 0.0247557573, 0.00154723483, -0.0323272087, -0.0343686081, -0.000248033641, 0.0138632236, 0.0107249552, -0.0157675128, 0.00950621068, -0.00722868089, -0.000209828839, 0.0258221589, -0.00818082597, -0.0179460198, 0.0136880297, -0.0101003489, 0.0101765208, -0.0142212305, -0.0199874174, 0.00284500769, -0.0213432703, -0.0232170913, 0.0211756937, 0.00646315701, -0.0169862583, 0.0223335, 0.0138327554, 0.0194999203, -0.0209319443, -0.0251366142, -0.0177022703, -0.0181897692, -0.013924161, -0.019103827, -0.00708014658, -0.0341248587, 0.00559099251, -0.00479119131, -0.0113724135, 0.0178089105, 0.00369622489, 0.0255631749, -0.000594614248, 0.00898824446, -0.0139470128, -0.000107235275, 0.0229733419, -0.000912630523, 0.0460380912, -0.0240245108, 0.0252737235, -0.012591159, 0.0150057971, 0.0544779, -0.000309208932, 0.0386646837, 0.0111591332, 0.00196141773, -0.00162626279, 0.0146325566, 0.0192104671, 0.00915582199, 0.0102679264, 0.000947383756, -0.0109915566, 0.031748306, -0.00882066693, 0.00525583746, 0.0120579582, -0.00417420128, -0.00174813729, 0.030057298, 0.0125683071, 0.00244320277, -0.0183268767, -0.0121341292, -0.0261420794, 0.0129643995, -0.0231256858, -0.0123854959, -0.0166511033, 0.0106792524, -0.0160264969, 0.00377049227, -0.00211376068, -0.0116085457, 0.00390760088, -0.00695827184, 0.0102983946, -0.00929293, 0.00160817208, -0.0159655586, -0.00943003874, -0.0131929144, 0.0307428408, 0.000255650812, -0.0163464174, -0.024618648, 0.0148153687, -0.0269799661, 0.0289451927, -0.0347647, -0.0138099035, 0.00154628267, -0.00640983693, -0.0171386, 0.0364709422, -0.0228971709, 0.0127739711, 0.00840172265, -0.0196065605, -0.0244510714, -0.00556052383, -0.0223639701, -0.0129872514, -0.00211185659, -0.0110144075, 0.000779806345, 0.020154994, 0.0139774811, 0.0276655108, 0.018463986, 0.0155618498, 0.0118446779, 0.0263248906, -0.00146344607, 0.0171081331, -0.000686972286, 0.0420467, 0.00465027383, -0.0106106987, -0.0262639541, -0.013489983, 0.00586140156, 0.0252432544, -0.0233542, -0.0113800308, 0.0105269095, 0.0232170913, 0.017336648, 0.00473787123, -0.0118294433, 0.0198655427, 0.00226229522, -0.00765524199, -0.0381771848, -0.0182811748, -0.0100165606, 0.0129948677, 0.00508064311, 0.00668405462, -0.00317064114, 0.025517473, -0.00837125443, 0.00973472558, 0.0342467353, 0.00561003527, 0.0242377911, 0.0137870526, -0.0323576778, 0.00143012102, -0.00240511703, -0.00404851837, -0.0112200705, -0.00932339858, 0.00997085683, 0.0327233039, 0.0207034294, 0.00149581896, 0.0122179184, -0.00263744034, -0.0102679264, -0.0164835248, 0.0220897533, -0.0189514849, -0.00239178701, -0.00711061526, -0.00433035335, -0.0138708409, 0.00560622662, -0.00363528775, -0.0184792206, 0.0256545823, 0.0160417315, 0.0538075902, 0.0096814055, 0.016772978, 0.00550720375, -2.08579149e-05, 0.0110372594, -0.0165444631, 0.00952144526, -0.0159046222, -0.00281453924, -0.00597946765, -0.0110372594, 0.00581189, -0.00243939413, -0.00555290654, -0.021312803, -0.00847789459, 0.00701920921, -0.00756764458, 0.00217850669, 0.00521775195, -0.00615847064, 0.0109382365, 0.00123683573, -0.00835602, 0.0132462345, 0.00210423931, 0.000931197312, 0.0250604432, 0.0188600775, 0.00747623853, 0.012103661, 0.0215260834, -0.00620036479, 0.00966617092, 0.0100165606, -0.00783805363, 0.00324109988, -0.0319311172, -0.00425418187, -0.0162854791, 0.0130710397, 0.00082312891, 0.00463503925, -0.0233999025, -0.00526726339, 0.0192257017, 0.00244320277, -0.00397615554, 0.0108392127, 0.00995562319, 0.00608991645, -0.0293108169, -0.0202921033, -0.00307923532, 0.00446746219, -0.00260316301, -0.0179764889, 0.00277074054, -0.00772379618, -0.000726962346, 0.00384095102, -0.00372288493, 0.0289908964, 0.00850836374, 0.015874153, 0.0238721669, 0.017336648, -0.000190904975, 0.0134214293, -0.000257079024, 0.00962046813, -0.0130405715, 0.0116237802, 0.0192561708, -0.00481785135, -0.00297069084, 0.00935386773, 0.00806656852, -0.0137413498, -0.00729723554, -0.00305067096, -0.00228514685, -0.0161788389, -0.0243901331, -0.00222611381, 0.0237655267, 0.00158341636, 0.0205206182, 0.00288118934, 0.00907965, 0.014899157, -0.0303010475, -0.0177327394, 0.0259287991, 0.0099480059, -0.0210233498, -0.0194237474, -0.00944527332, 0.00534343487, -0.00101784244, 0.0165749323, -0.00225277385, 0.00859976932, -0.0206272583, -0.00338201737, -0.00482927682, 0.0124616669, -0.00365242641, -0.0121265128, 0.0008026578, -0.0202768687, 0.0133147892, -0.0062879622, -0.00978042837, -0.016590165, 0.0156608727, 0.000378001365, 0.00141583884, 0.0134214293, 0.0270866062, -0.00241463841, 0.0261420794, -0.0114409681, 0.0111134304, -0.0189971868, -0.00685544033, 0.0101765208, -0.00445603626, -0.00808180217, -0.0130862743, -0.0240397453, -0.0183573458, -0.00791422557, 0.0154475924, 0.013413812, 0.00364480913, -0.0135890059, -0.0208405387, -0.0124235814, 0.0099480059, 0.0104507385, -0.0105040586, 0.0120579582, -0.00338773, 0.00478357403, 0.0212366302, 0.00466931658, -0.00866832398, 0.0090034781, -0.0133376401, -0.0159198567, 0.0227905307, 0.0336678289, 0.0206272583, 0.0126292445, 0.0111210477, 0.000177336915, 0.0239331033, -0.0277721509, -0.00513396319, -0.0037609709, -0.0224401411, 0.00672975741, 0.00395330414, 0.00212328229, 0.0280159, 0.00608229917, 0.034033455, -0.0224553756, 0.0109230019, 0.0205663219, 0.000761239557, -0.012926314, -0.00549958646, -0.0142897842, 0.00292308372, -0.0246643517, -0.00460457103, -0.00556433247, -0.023643652, 0.00755241, -0.0178850815, -0.0132919373, 0.000574143138, -0.00915582199, -0.0142364642, -0.00258221594, 0.00952144526, -0.0346428268, 0.00115685561, -0.00652028574, -0.0454287194, 0.00024755756, -0.0136042405, 0.0425951369, 0.00880543236, -0.00871402677, -0.0188448448, -0.00592614757, 0.0285643358, 0.00616227929, 0.00393045228, -0.011052493, -0.00634509092, 0.0164073538, -0.00449412223, 0.013566155, -0.00426941598, -0.0140155675, 0.00484451139, -0.000408708031, 0.0213737395, 0.0137946699, 0.0118446779, -0.0120046381, 0.00441795029, -0.016437823, -0.00435320474, -0.0144421281, 0.00396853825, -0.0110067902, 0.0190428905, -0.012949165, 0.0101917544, 0.0073810243, -0.0201092921, -0.000725058, 0.0217241291, -0.00969664, -0.00163864065, 0.00787613913, 0.0192561708, 0.0174432881, -0.00424275594, 0.00669167144, -0.0195760913, -0.011951318, -0.000102057988, -0.0183268767, 0.0130481878, 0.0117608886, -0.000774569577, 0.000839315355, 0.0165596977, 0.0294631589, -0.00589567889, 0.0013663274, 0.0157675128, -0.0119817862, 0.0164835248, -0.00846266, -0.0129034622, 0.0100470288, -0.0102603091, 0.0124692842, 0.0148915397, -0.00421228725, 0.013208149, -0.0070268265, -0.00802848209, -0.01146382, 0.00863023754, -0.0241159163, -0.00562907849, 0.0245272424, -0.00866070669, 0.0283205863, -0.0110677276, 0.00311732106, 0.0161940735, 0.0127587365, -0.00381048233, -0.00928531308, -0.00781520177, 0.0266752802, -0.00888922065, -0.010976322, 0.0181288309, 0.00343152881, 0.0141374413, 0.0237350576, 0.010412652, -0.0311389342, -0.000193047294, 0.0228667017, -0.00806656852, -0.00885113515, 0.020154994, 0.00165006646, -0.00370574649, -0.0133833429, -0.01328432, -0.00898062717, 0.0123626441, -0.00561765255, -0.00907203276, 0.00240702135, 0.00783043634, -0.0141831441, -0.00338201737, 0.00583855, -0.00749909, 0.00402947562, 0.00469597662, 0.00660026586, 0.0151200546, 0.0170471948, -0.034033455, -0.0119894035, 0.0040599443, -0.0137184979, 0.028442461, 0.00438748207, 0.00561384391, -6.18522e-06, 0.00351341325, 0.00190904969, -0.00323348283, 0.0132767027, 0.00455886777, 0.00835602, -0.0014444032, 0.00345057179, 0.00449412223, 0.0196370278, -0.00296878652, 0.00134252373, -0.00880543236, 0.00351150893, 0.027208481, -0.0157218091, -0.00310208672, 0.018463986, 0.00836363714, 0.0206120238, -0.00328299426, 0.003987581, 0.00495876838, 0.0238264631, -0.000445603626, 0.0101689035, -0.00837887172, 0.0120579582, -0.0159655586, 0.0117380377, -0.00763619877, 0.00580808148, -0.000404423365, -0.0118142087, -0.0190885924, -0.0141907614, -0.00567478128, 0.0147087285, -0.00509206858, 0.000292546407, 0.0330584571, 0.00417801, -0.00519109191, -0.00340677309, -0.00343343313, 0.0162702445, -0.0159655586, 0.00522536924, 0.00366194779, 0.0100165606, 0.0194846857, 0.0315654948, 0.0133833429, -0.000993086724, -0.0170319602, -0.00415515853, 0.0198503081, 0.01748899, -0.00424275594, 0.0449412204, -0.00549958646, 0.0198503081, 0.0197436679, 0.00545388367, -0.00504636578, 0.0137032634, -0.0058880616, -0.0144954482, -0.0217088945, -0.00447507901, -0.013360492, -0.0127435019, 0.00509206858, -0.00519109191, 0.00318206684, 0.0130938916, -0.000838363252, -0.0214956142, -0.00695446366, 0.00580046419, -0.00620417343, 0.00423133, -0.0142364642, 0.0053548608, -0.00902633, -0.00194903975, -0.0137337325, 0.0223182663, -0.00599470176, 0.00833316892, 0.0154018896, 0.00100070389, -0.0143126361, -0.0192866381, 0.00606706459, -0.0101765208, -0.00965093635, -0.0186467972, -0.00520251738, -0.000590805663, -0.00866832398, 0.0205815565, 0.00930816494, 0.00111400906, 0.000375859032, -0.0141374413, 0.0226229541, -0.00180240953, -0.00633366546, -0.00174908945, -0.00146820687, -0.00465789111, -0.0159807932, 0.0069316118, -0.00876734685, -0.000224230025, 0.0202006977, -0.00771617889, 0.00427703327, -0.00445603626, 0.0224858448, -0.00178907951, -0.00760953873, -0.0138022872, 0.000474644039, 0.0184792206, -0.0288994908, 0.0244053677, 0.00206996221, 0.0113647971, 0.00257079024, -0.0071372753, -0.0234456062, -0.012027489, -0.00956714805, 0.00975757651, 0.00853121467, 0.0265077036, -0.0122560039, 0.0290365983, -0.00879019778, -0.00363147911, -0.00562907849, 0.000467741, -0.00222420949, 0.0171386, 0.00329442, -0.0279397275, -0.00285833771, -0.0170167275, -0.00879781507, 0.0108849164, -0.00361243635, 0.00523679471, 0.00062270253, 0.0361967236, 0.019362811, -0.00187858113, -0.0198503081, -0.00256507727, 0.0106183151, 0.0159046222, 0.0116237802, -0.00853883196, 0.0166815724, -0.00526726339, -0.00388855813, 0.0102526918, 0.00353436032, 0.0175499283, -0.0112429224, 0.00567097263, 0.014411659, -0.0215108488, 0.036927972, 0.0105269095, 0.00442937622, 0.018799141, -0.0182354711, -0.00355911604, -0.00122255355, -0.0079370765, -0.014411659, 0.00886637, -0.0118370606, 0.0116618657, 0.0109915566, 0.014541151, 0.0120046381, 0.0111972196, 0.0238264631, 0.00417801, -0.00847789459, 0.0358920395, 0.00860738661, -0.0109458528, 0.0249233339, -0.000244225055, 0.00134252373, 0.0104812067, 0.0142440815, 0.00319730118, 0.0081655914, 0.0107021043, -0.0232780296, -0.0133528747, -0.0183725804, 0.00767809339, 0.0146097057, -0.00720202085, 0.00383333373, 0.000591757824, -0.000464408484, 0.000964522362, -0.00259173731, -0.00064983865, 0.000322538952, 0.012796822, -0.0108925328, 0.00288118934, -0.0172452405, 0.0154095069, 0.0184182841, -0.00226800819, 0.0063603255, -0.00146154186, -0.00195951341, 0.0242834929, 0.0150438836, 0.0260202046, -0.0176413339, 0.0052596461, 0.01748899, -0.0198807772, -0.00602897909, -0.00475310534, 0.00222230516, 0.0158132166, 0.0094148051, -0.00676403474, 0.00798277929, -0.00277264486, -0.0118065914, 0.00765143335, 0.00078313885, 0.011539991, -0.000178408081, -0.00753336726, -0.00907203276, -0.00864547212, 0.00443699351, 0.00435701339, -0.00863023754, -0.0034105815, -0.00595661579, -0.00468835933, 0.00330203725, 0.000323015032, 0.00224134815, -0.0268428586, -3.17183149e-05, 0.0330584571, -0.00140822167, -0.00988706853, 0.0200635884, 0.0261877831, 0.00348104024, -0.00709157204, 0.00743053574, 0.00293070078, -0.00288118934, 0.00634128228, 0.00661169132, 0.00376858795, -0.0241463855, -0.0123931132, 0.00183763891, 0.0234456062, -0.013489983, -0.00460076239, -0.0186620317, -0.00841695722, -0.00409422116, 0.00172433374, 0.00783805363, -0.0194237474, -0.0130177196, -0.00882828422, 0.015874153, -0.00881305, -0.0048597455, 0.000245891308, -0.0134442803, 0.0155085297, -0.00367718213, -0.0255022384, -0.003987581, -0.0136042405, 0.00703825196, 0.00658884, -0.00951382797, 0.00773141347, 0.012926314, -0.00194237474, 0.00918629, -0.006821163, 0.0114790546, 0.0224706102, -0.0141755277, -0.00717155263, -0.0014329775, -0.00284691202, -0.0106716352, -0.00755621865, -0.0033096543, 0.000577475643, 0.013231, -0.0158284511, -0.012591159, 0.00605944777, 0.00735436426, 0.00715631805, -0.00484070275, 0.0141145904, -0.0312912762, -0.0062879622, -0.00226800819, -0.00718297809, 0.00720963813, 0.00133109803, -0.000369194022, -0.0236588866, -0.0294783935, -0.0289604273, 0.023003811, 0.0138099035, 0.0109991729, -0.0144725963, 0.0048825969, -0.0178393796, 0.0128120566, 0.0113571798, 0.00351341325, 0.0038828454, 0.017336648, 0.0103974184, 0.0122103011, 0.00581569877, -0.0135737723, -0.00901871268, -0.0141145904, 0.00918629, 0.0152723975, 0.00692399498, -0.0109839393, 0.00271361182, 0.00371526787, -0.0154856779, -0.0220135804, -0.000758383074, 0.000469645282, -0.0139698638, -0.00322015281, 0.0225620158, -0.0113571798, 0.022851469, -0.00236322265, -0.00541960634, 0.000990230241, 0.00923961, -0.00331917568, -0.00749147311, -0.00898062717, -0.00685544033, -0.000423466263, 0.0102450745, 0.0123474095, 0.00639079371, 0.0071372753, 0.000814083556, -0.00487498, 0.00490164, 0.0237502921, -0.00161102845, 0.0118065914, 0.00897301, -0.016849149, -0.0157218091, -0.00592614757, 0.0325709581, 0.0126825646, -0.013078657, -0.0138251381, 0.0232170913, 0.00940718781, -0.00632223953, -0.0147849, -0.00581950741, 0.0298135486, 0.000393235678, -0.0212366302, -0.00264124875, -0.0100546461, 0.0218460038, 0.00156056485, 0.0290518329, 0.025441302, -0.0125835417, 0.00380096096, 0.0150972037, -0.00879019778, -0.00529011479, 0.0176565684, -0.00467693387, 0.00325062126, 0.00350389187, 0.00326204696, -0.0081198886, 0.00872164406, 0.000498447625, -0.0237045903, 0.00555671519, -0.0174737554, -0.0127663538, 0.0166815724, -0.00147772825, -0.009719491, -0.00313826837, -0.00351150893, -0.00842457451, 0.00289071072, -0.00765524199, 0.0014444032, -0.0109153846, -2.70319779e-05, -0.0217545982, -0.00855406653, 0.0111286649, 0.0276655108, -0.00770856207, -0.00781520177, -0.00403328426, -0.00449412223, -0.0198503081, -0.0148077514, -0.00515300594, 0.0054424582, -0.00934625, 0.0048825969, 0.00723248953, -0.00463123107, -0.0067488, 0.0067373747, -0.00138822664, -0.0106411669, 0.00326014287, -0.011616163, -0.0280768368, 0.0137794353, 0.00419705315, -0.00141583884, -0.00587663567, -0.00778854219, -0.00800563116, 7.88494654e-05, 0.00119589351, 0.00247938419, -0.0215565506, 0.0184182841, 0.00935386773, 0.0280159, -0.0147163458, 0.000150200794, 0.0208557732, -0.0190276559, -0.0227143597, -0.0166358687, -0.00480642542, 0.0357092284, 0.0177327394, -0.0148001341, -0.0135052176, -0.0165749323, 0.0205663219, 0.00543864956, 0.00960523356, 0.0172452405, 0.00540437223, -0.00393045228, 0.00936148502, 0.0138251381, -0.00175385014, -0.0073810243, 0.00245082, 0.00876734685, 0.0101384344, 0.014259316, 0.00614323653, -0.00599089311, 0.00402566697, 0.0188143756, 0.000773617416, -0.0035096046, 0.0128577594, -0.0238264631, 0.00500447163, 0.0208253041, 0.00641745375, -0.00475310534, -0.00574714411, 0.00482927682, 0.00997085683, -0.00376668363, 0.0329061151, 0.0198350735, -0.0103517147, -0.0271780118, 0.0124083469, 0.00545007503, 1.43342377e-05, 0.00427322462, 0.0262182504, 0.00902633, 0.00273836753, 0.000276836, 0.00103593327, 0.00817320868, 0.0185858607, -0.0215413179, -0.00674118288, -0.0113495626, -0.017565161, 0.00335726142, 0.0279397275, 0.0179460198, -0.00650124252, -0.0137870526, -0.00755241, 0.00802086573, 0.00593757303, 0.00999370869, -0.00463503925, 0.00349817891, 0.00935386773, 0.0123854959, -0.00740006706, 0.0111438995, 0.00375716225, 0.0079370765, 0.0205663219, -0.00661169132, 0.00430369331, -0.0170471948, 0.0136804124, 0.0265838746, 0.000193285334, 0.0267666858, 0.0121874493, -0.00629177084, 0.0362576619, 0.0146325566, 0.0170167275, -0.00581189, 0.0127358846, 0.00634128228, -0.0207948368, -0.0301791728, 0.0138632236, 0.0111438995, -0.00155961269, -0.0141907614, 0.00519109191, 0.0140079502, -0.0134290457, 0.0119208489, 0.0132614691, 0.00463503925, 0.0261420794, 0.0232780296, -0.0258373935, -0.00817320868, 0.00685924897, -0.0145868538, 0.0429607593, 0.00780758495, -0.00145106821, 0.0107097216, -0.000337535224, -0.00118541985, -0.00393426092, -0.00995562319, -0.00608610781, -0.00984898303, -0.0298440177, 0.0169557892, -0.0263401251, 0.00064936257, 0.00852359738, -0.00232513691, 0.000345866487, 0.0066155, 0.0151124373, -0.0139317783, -0.0117913578, -0.0180069562, -5.6741861e-05, -0.0134442803, 0.00583855, -0.0135204522, -0.00961285084, -0.00217279373, -0.00895015802, -0.00154342619, 0.000424894475, 0.0248623975, 0.00337249576, -0.0168339144, 0.00343152881, 0.00668024598, -0.0174432881, 0.0265534054, 0.00471882802, 0.00767809339, -0.00413992442, -0.0212823339, -0.00161578925, 0.0234608408, 0.0162854791, 0.0143735735, 0.00342962448, -0.00492449151, 0.0168339144, -0.0197893716, -0.000864071131, 0.00129777298, 0.00625368487, 0.00500447163, -0.0177632086, 0.0138936928, -0.0202464014, -0.0032658556, 0.00162054994, -0.0269494988, 0.01084683, 0.00101593824, -0.00827984884, -0.0132538518, -0.0128501421, 0.00576999551, 0.0112505397, 0.0166968051, -0.00300877658, 0.00884351786, -0.00498542842, -0.0167272743, 0.0160264969, -0.0630700514, 0.00309637398, -0.0112353051, 0.0143583389, 0.00728200097, 0.0160569642, 0.0319311172, -0.000994038885, 0.0196217932, 0.0173975844, 0.0125683071, -0.0184487514, 0.0111515168, -0.0145335337, -0.0166206341, -0.00131015084, -0.000197808025, 0.0103898011, -0.00161102845, -0.0203225724, -0.000128539512, 0.00943765603, 0.00884351786, -0.0114257345, -0.013566155, -0.000163054749, 0.0207034294, -0.000497019442, -0.00895777531, -0.00300115952, 0.00170338654, 0.0079370765, 0.0114409681, -0.0215260834, 0.012720651, 0.0148077514, -0.00743053574, -0.0309104193, -0.0153257176, -0.0233846698, 0.0135052176, 0.001074019, -0.00318397116, -0.0159655586, 0.00553005515, 0.00319158845, -0.00356863765, -0.0018100267, -0.0118142087, 0.0232170913, -0.0166663378, -0.00367146917, -0.00299735088, -0.00722868089, 0.0199721828, 0.00765524199, 0.0194085129, 0.000477024383, -0.00519490056, 0.0127815874, -0.0194542166, -0.00702301785, 0.00370003353, -0.0168034453, 0.0210690536, 0.0140460357, 0.00420467, -0.00135585375, -0.00667643733, 0.00212137797, -0.0330584571, 0.0137870526, -0.0181745347, -0.00480261678, -0.000497495523, 0.00556433247, 0.00535866944, -0.00249461853, -0.00740006706, 0.0183268767, 0.0151581401, 0.00390379247, 0.0166206341, 0.00425037323, 0.012438816, -0.0115247574, -0.0378420316, 0.023902636, 0.00336868735, -0.00165768364, 0.0216936599, -0.00284691202, -0.00135490159, -0.00251366151, 0.00616608793, -0.00554528972, 0.00989468582, -0.0111362822, -0.00807418581, 0.0178698488, -0.00611276785, -0.00100356026, 0.0106564015, -0.00809703674, 0.0167272743, -0.0214346778, 0.0223335, -0.0182507057, 0.00347151887, 0.00500828028, 0.0365928188, 0.00143392966, 0.00808941945, -0.0132614691, 0.015874153, 0.000850265031, 0.00681735482, 0.00736959837, 0.0204444472, 0.0148610715, -0.00251747016, -0.0197589025, -0.00190428901, -0.0158436839, 0.00596423307, 0.00486355415, -0.0170014929, -0.00209662225, -0.000895968, 0.00618132204, 0.00428845873, 0.00436463, 0.00285262498, -0.00155961269, 0.0119741689, -0.00767809339, -0.00253841723, 0.00391521817, -0.00719059538, 0.00318397116, 0.000790279941, -0.00280882628, -0.00326204696, 0.0165444631, -0.0270409044, -0.0124540497, 0.00109210971, 0.00150914909, -0.00228705117, -0.00118065916, -0.0118827634, -0.0157065764, 0.00363909639, 0.00933863316, -0.00202616351, -0.00733912969, 0.000545578776, -0.0230342802, -0.0123017067, 0.00316492841, -0.000251366146, -0.00386570673, -0.00964331906, 0.017336648, -0.00333060138, 0.00730485283, 0.0140079502, -0.00277264486, -0.0111210477, 0.00197474775, 0.00977281108, 0.0221354552, -0.0259897355, -0.0129034622, 0.0161788389, -0.0159046222, 0.0102603091, -0.00425799, 0.017565161, 0.0108163618, 0.0103288637, 0.0137794353, -0.00481404271, -0.0179307852, -0.0305143278, -0.0233084969, 0.000313017517, 0.0231409203, -0.00377620501, -0.000438700576, 0.00141774316, -0.00962808542, 0.00762477331, -0.00771617889, -0.00198046048, -0.00312303402, -0.0101841372, 0.0139165437, 0.0199264809, 0.0068706749, -0.00711061526, -0.0193780456, 0.0169100855, -0.00656979717, -0.0253498945, -0.00686686626, -0.0131700626, 0.00351912598, -0.0258221589, 0.0132538518, 0.0047492967, -0.00531296618, -0.0212975685, 0.00293450942, 0.0247557573, 0.00324109988, -0.0149067743, 0.0294479243, 0.00783805363, 0.00880543236, -0.00134823658, 0.0163464174, -0.0103517147, 0.01872297, 0.00270599476, -0.0136042405, -0.00504636578, 0.0120046381, -0.0117532713, -0.0107097216, -0.013489983, 0.0122940894, 0.0310170595, 0.00892730709, 0.0054653096, 0.0212213974, 0.0139622474, 0.0164835248, 0.00160817208, -0.0105269095, 0.0399138965, -0.00765143335, 0.0193018727, -0.00621179072, -0.0029554565, 0.00389998383, -0.0084702773, -0.0213280376, -0.025258489, -0.0177632086, 0.00885113515, -3.56756645e-05, -0.018311644, 0.0104507385, 0.0243596658, 0.00283167767, -0.00732770422, -0.0066155, 0.00115971197, 0.00955191348, 0.0066155, -0.0033744, 0.00669548, -0.0258221589, -0.0039494955, -0.0040827957, 0.000671261863, -0.0084321918, 0.00366385211, -0.000704586913, 0.000818368222, -0.0127815874, 0.00679450296, 0.0100241769, -0.00901109539, -0.00118351565, -0.0067602261, 0.017336648, -0.0179917216, 0.00950621068, -0.00934625, -0.0100470288, 0.0037209806, 0.00275931484, 0.0223639701, -0.0124921361, -0.0136347096, -0.0152952494, -0.0128806112, -0.00235750969, -0.00519109191, -0.00686686626, -0.000980708865, -0.014129824, -0.0258526281, 0.00291737076, 0.0182659402, 0.00281644333, -0.0283510555, 0.00995562319, 0.0244815387, -0.0011616163, 0.00802848209, -0.00380286505, 0.000680783298, -0.0349475108, -0.00425037323, -0.0120427236, -0.00516824052, -0.00714489212, -0.00230609393, -0.0142288478, -0.0417115465, 0.00902633, -0.00905679818, -0.00461218785, -0.00299354224, -0.0184944551, 0.00690114358, -0.00190143252, -0.0227295943, -0.00530534936, 0.0214956142, -0.000719821255, 0.00907965, 0.00857691746, 0.00143773819, -0.00751051586, 0.00413611578, -0.0219069403, -0.0119208489, -0.0112733906, 0.00761334738, 0.00329822861, -0.0137032634, -0.017824145, -0.0233084969, -0.020078823, -0.00878258049, -0.0335154869, -0.0323576778, 0.0148077514, 0.00382571667, 0.0203225724, 0.00872926, -0.0103821838, -0.00519490056, -0.0167425089, -0.00815797411, -0.00436082203, 0.00671452284, 0.00129777298, 0.00397615554, 0.0167882126, -0.00202806783, -0.00493591698, -0.000527488068, -0.0187382046, 0.0334240794, 0.00546911824, -0.00769713614, -0.0174280535, 0.00399900693, -0.0147011112, -0.0304533895, 0.0192714054, 0.00471501937, -0.00449793041, 0.00300306384, 0.00927769579, 0.000744577, 0.00969664, -0.0134671321, 0.0664825365, 0.00507683447, 0.0129110795, -0.0450021587, -0.00867594, -0.0219983459, -0.00971187372, 0.0436006, -0.00350008323, -0.00116066413, 0.0138556072, -0.00202425919, -0.0224706102, 0.0225620158, 0.0224706102, -0.0094985934, -0.0144573618, -0.00946812518, -0.0189514849, 0.000941670907, -0.00445222761, -0.0238721669, 0.014388808, -0.0216174889, 0.0144802136, -0.0111896023, -0.00696588913, -0.0107478071, -0.00150248408, -0.0164225884, 0.0149296261, 0.0053548608, 0.00178431883, -0.015310484, -0.0124769015, -0.00408660434, 0.0185553916, -0.00822652876, 0.00972710829, -0.000798373192, 0.0259287991, 0.0135585377, -0.0099480059, 0.00647077383, 0.00482927682, 0.0157370437, 0.00158436841, -0.00391521817, 0.0139317783, -0.0175346937, -0.00492068287, -0.0125454562, -0.00296878652, -0.000340629689, -0.00955191348, -0.000351579365, 0.0129872514, 0.0123474095, 0.0120122554, 0.0102983946, -0.0111591332, 0.0130558051, -0.00759049598, 0.0138327554, -0.00763619877, -0.0255631749, 0.00428084191, 0.00756383594, 0.00387522811, 0.000913582626, -0.00831031706, -0.0113876481, 0.00335726142, -0.0129339313, -0.00561003527, 0.000277312094, -0.0334545486, 0.00423133, 0.00891207252, 0.00582712423, -0.0189971868, 0.0196217932, -0.0110144075, 0.00389998383, -0.0208253041, -0.0129872514, -0.0138099035, 0.00664977729, -0.00493591698, 0.0281530079, -0.00568620674, 0.00630700542, -0.0338506401, 0.0153714204, 0.00543484092, -4.02578589e-05, -0.022028815, 0.00420467, 0.0231713895, 0.00450173905, 0.00226610387, 0.00705348654, -0.0191495307, -0.0128425248, 0.00119398918, 0.0366842225, 0.00872164406, 0.03020964, 0.009719491, 0.0154399751, -0.0130862743, 0.0052215606, -0.00571667543, 0.0290670674, 0.0255784094, 0.00155675621, -0.00585759291, -0.00534343487, -0.000945479493, -0.00320682279, 0.00650124252, -0.00302020228, -0.000622226449, 0.00513396319, 0.0286709759, -0.024694819, -0.00195760909, -0.00341439014, -0.00698874053, -0.00717536081, 0.00500447163, -0.00895015802, -0.00175194594, 0.000879305473, 0.0163464174, 0.00608610781, 0.0149753289, 0.0011225784, 0.0111743677, 0.0113190934, 0.00632223953, 0.00331727136, 0.0121112783, 0.0142897842, -0.0199417137, -0.0111286649, 0.0155466152, -0.0168796182, 0.00256888592, 0.0402185842, 0.00897301, 0.00696969777, 0.015950324, -0.0114866709, 0.0212671, 0.0117532713, -0.0177784413, -0.0252889581, 0.0267819203, 0.0135433031, 0.00973472558, -0.00576618733, -0.00157579919, -0.0011616163, 0.00695065502, -0.00560241845, 0.0227752961, -0.0269952, 0.0145487683, 0.00458933646, -0.0124235814, 0.0304229204, -0.00731246965, 0.00360672339, -0.00184811244, 0.0122864731, -0.019438982, -0.0287928507, -0.0125987763, -0.020154994, -0.00338201737, 0.0120884264, 0.0207186639, 0.0422295146, -0.0105116749, -0.0107325725, 0.0127054164, -0.0117685059, 0.0114181172, -0.00840934, -0.0101536689, 0.0420467, 0.0152038438, 0.00805133395, 0.0115704602, -0.0235979501, 0.0183573458, 0.00135490159, -0.0155542325, -0.0012168407, 0.0167577434, 0.00720202085, -0.0141983787, -0.0225010794, -0.0200331211, 0.0273912922, 0.0188296102, 0.00198617345, 0.00106830616, -0.00480261678, 0.00630700542]
08 Aug, 2022
Angular PrimeNG Form Calendar Multiple Months Component 08 Aug, 2022 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use the Calendar Form with the Multiple Months component in Angular PrimeNG. The Calendar component can be used to display a month-wise calendar that allows the user to select dates and move to the next or previous month. Angular PrimeNG Form Calendar Multiple Months Component is used to show multiple months calendar at the same time. The number of calendars depends on the number specified in the [numberOfMonths] property. Syntax: <p-calendar placeholder="...." inputId="..." [numberOfMonths]="..."> </p-calendar> Angular PrimeNG Form Calendar Multiple Months Properties: numberOfMonths: It is used to specify the number of months to display. Creating Angular Application & Module  Installation: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: It will look like the following. Project Structure Example 1: Below is the example that illustrates the use of the Angular PrimeNG Form Multiple Months Component. app.component.html <h2 style="color: green">GeeksforGeeeks</h2> <h5>PrimeNG Tooltip Delay - showDelay</h5> <div class="p-grid p-fluid"> <div class="p-col-12 p-md-3"> <input type="text" pInputText pTooltip="It is a tooltip" placeholder="Hover here..." tooltipEvent="hover" showDelay="2000" /> </div> </div> app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent {} app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, CalendarModule, FormsModule, ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule {} Run the below command: ng serve --open Output: Example 2: Below is another example that illustrates the use of the Angular PrimeNG Form Multiple Months Component. app.component.html <h2 style="color: green">GeeksforGeeks</h2> <h4>PrimeNg Calendar Multiple Months Component</h4> <div class="p-fluid p-grid p-formgrid"> <div class="p-field p-col-12 p-md-4"> <p-calendar placeholder="Select multiple dates" inputId="mltimonths" [numberOfMonths]="3"> </p-calendar> </div> </div> app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], }) export class AppComponent {} app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { FormsModule } from '@angular/forms'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { CalendarModule } from 'primeng/calendar'; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, CalendarModule, FormsModule, ], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule {} Output: Reference: https://primefaces.org/primeng/calendar Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component
https://www.geeksforgeeks.org/angular-primeng-form-calendar-multiple-months-component?ref=asr4
Languages
Angular PrimeNG Form Calendar Multiple Months Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0459783524, -0.0112968916, -0.0140222674, 0.0169877019, 0.0501299575, 0.030360397, -0.0421091653, 0.0431541279, -0.00242530159, 0.0302474275, 0.0171853974, -0.000295881502, -0.0297108255, -0.0548464097, 0.00730767706, -0.0180467851, -0.0507230461, 0.0129208202, 0.00531306956, 0.015335531, -0.0243730452, 0.0384094343, -0.0248955265, 0.0183574501, 0.00994832534, 0.0332411043, 0.0370255634, -0.0223113615, -0.0183150861, 0.0174113344, 0.0138104502, 0.00379858, 0.0221419092, 0.00908693764, -0.0619069673, -0.0328457132, 0.0111909835, 0.0316595398, 0.011882918, -0.000893160526, 0.00355146034, 0.00756185688, 0.00657690922, 0.0223678462, 0.000504829863, -0.0170441866, -0.0326762609, -0.0230315384, -0.0318572372, 0.0112686502, 0.0190917477, 0.0316313, 0.0250367373, 0.0455829576, -0.00375621649, 0.0155191058, 0.0025947548, 0.0117346467, 0.013640997, 0.0278327186, 0.0536602363, -0.0287788324, 0.00302897929, -0.015335531, 0.0475881584, 0.0232998393, -0.00765364431, 0.0145871118, 0.0100189308, 0.0129208202, -0.0256863087, -0.00307487277, 2.99246294e-05, -0.0115863746, -0.00417985, -0.0169312172, 0.00820436794, 0.0026424136, -0.0369408354, 0.0391154885, -0.00981417485, 0.0122218253, -0.0252203122, 0.0201649517, 0.0325632915, -0.00559196156, 0.0329304412, -0.043464791, -0.016804127, 0.0080560958, 0.0240906216, 0.0308405161, 0.0110003483, -0.0181738753, 0.0139728431, -0.00413748669, 0.0662562698, 0.0416855328, -0.0318854786, -0.00278009451, 0.00582142966, 0.0210687034, -0.00499534467, -0.0287929531, 0.0190493837, -0.0222266354, 0.0294001624, -0.0182868447, -0.00766070513, -0.028708227, -2.82422297e-05, -0.0160274655, -0.000975239498, 0.00885393936, -0.0593651682, 0.0253050383, -0.0178490896, 0.00077489618, 0.0101883849, -0.0210122187, 0.0285670161, -0.006675757, 0.0232433546, 0.00626977487, -0.0286799856, 0.0036750203, -0.0117417071, 0.0162110403, 0.0158156492, -0.0499605052, 0.0417985022, -0.0111062573, -0.017383093, 5.91873286e-05, 0.0271972679, 0.0202920418, 0.00734298, 0.00270066317, -0.0355287269, -0.0142693864, -0.0131255761, -0.0290047694, -0.00072370714, -0.0154626211, -0.0089598475, 0.00230527204, 0.00869860686, 0.0801514462, 0.0112827709, -0.000720618176, -0.0533495732, -0.0384659171, -0.00322844, -0.00862094108, 0.00303074438, -0.0379575565, 0.00104319735, -0.0159427393, -0.020419132, -0.0595911071, 0.0147283226, 0.0215064585, 0.0132738482, 0.00975769, 0.0193882901, -0.00599088287, 0.0134574231, -0.0337777063, -0.00305016083, 0.0346532166, 0.0237799585, 0.00243236218, -0.00633332, -0.0103578381, -0.0305580925, 0.00550017413, 0.0345402472, 0.0028242229, 0.0187528413, 0.0297673102, -0.0177784842, -0.0144105982, -0.000260799337, 0.0108873798, 0.0427022502, -0.0134291807, 0.0338059478, -0.0158438906, -0.0278044753, 0.0121582802, 0.00677460479, 0.0116004962, 0.0452722944, 0.0294566453, 0.0216900334, -0.0142693864, -0.0220006965, 0.0373644717, 0.00614974555, 0.0015780346, -0.00164510985, -0.0228338428, -0.0129420022, 0.0282422304, 0.0267736334, 0.0349921249, 7.67835663e-05, 0.0255309753, 0.0441143624, -0.0235257782, 0.0197554398, -0.0017872036, 0.00740652485, -0.0272678733, -0.0112333475, 0.00820436794, -0.00696524, -0.000270286953, 0.0310382117, -0.014798929, -0.0257992763, 0.0457524136, 0.00651336415, 0.0140575701, -0.0499605052, -0.00543309888, -0.0135068465, 0.00360088423, 0.00117470021, -0.00821848866, -0.00826085266, 0.0153637733, -0.00516832806, 0.0027871551, 0.0272537526, 0.0285528954, 0.0330716521, 0.000400245364, 0.0089386655, 0.0680637732, 0.0263217576, -0.00382329198, -0.029597858, -0.0325068086, 0.0098635992, -0.00519657042, 0.0127372462, 0.0624153279, -0.0103648985, 0.0216053054, 0.0229750536, -0.000438416493, -0.0373079851, 0.00747007, -0.0228056014, -0.00223466638, 0.00179602928, 0.00510831317, 0.02050386, 0.0247260723, 0.0150531083, 0.00814082287, -0.0130337896, 0.0424763151, -0.00612503383, -0.0345684886, 0.0160274655, 0.00389036722, -0.0148836551, 0.0309252422, 0.0346249752, -0.0416290462, 0.0509772263, 0.0177078787, -0.0177784842, -0.00927051157, -0.042928189, -0.0394826382, 0.0195436236, 0.00267595123, 0.0143117504, -0.00533778127, -0.00122059393, -0.0261381846, -0.00660868175, -0.013640997, 0.0123912785, 0.0324503221, -0.020461496, 0.003203728, 0.000859622902, -0.0436907299, -0.0319137201, 0.00883275736, 0.0132103032, 0.017298365, 0.00465643778, 0.00780897681, 0.00948938914, 0.0191905946, -0.0416855328, 0.00181279809, -0.0199107714, -0.0228903275, -0.0253756437, 0.0220854245, 0.0218736064, -0.0107179265, -0.036375992, -0.0115228295, 0.0120241297, -0.0218594857, -0.0462890156, -0.00840912387, -0.00737122213, 0.025672188, 0.0212240368, 0.0443967842, -0.0237517152, -0.0124971867, 0.0105767148, -0.0033378785, 0.00879745465, 0.000800932, 0.0183856916, -0.019303564, -0.0261805467, -0.0271690246, 0.0380140431, -0.0189364161, -0.039849788, -0.0157168, -0.00435989443, 0.01506723, 0.00446933275, -0.0065804394, 0.0221419092, -0.0592522, 0.00188516884, 0.0474469475, -0.0146294748, -0.00554959802, 0.0121794613, 0.00520363078, 0.0110003483, -0.0262370314, 0.013662179, -0.00140240323, 0.039313186, 0.0170018226, 0.000954940391, 0.00451169629, 0.0610032156, 0.00702525489, 0.0219865758, -0.0128713967, 0.0010882084, -0.0316313, 0.00516479788, -0.000161289616, -0.0352745466, -0.0262652747, -0.00946820807, 0.0381834954, 0.0329304412, -0.0428434648, 0.00970826671, 0.0262511522, 0.00429987954, -0.0323655941, -0.026745392, -0.00283304881, -0.0029213056, 0.0291177388, -0.0368278697, -0.00135297934, 0.0102660507, 0.0195577443, 0.0368278697, -0.00779485563, -0.0523610935, 0.0835405141, -0.00749125145, 0.0214217324, 0.048096519, 0.039849788, 0.00567315798, 0.0144529613, -0.00338200713, -0.0432670973, 0.0112545285, 0.0681202561, 0.0123347938, 0.00299367635, -0.00227173441, -0.0263923649, -0.0183998123, 0.017298365, 0.0397085771, -0.0169453379, 0.0502711684, 0.0182162393, -0.00120205991, -0.0235681403, 0.00170424208, 0.00617445773, -0.0451310836, -0.0156603158, 0.0474469475, 0.045780655, -0.0216194279, 0.0214923378, -0.0624718145, -0.0132809086, 0.0274796896, 0.0205744654, -0.00509066181, 0.0507230461, -0.0226643905, -0.00767482584, 0.0380987674, -0.00495651131, -0.0218736064, -0.0155473473, -0.00154273177, -0.000219097928, -0.03521806, 0.0149260182, 0.000579407, 0.0092281485, -0.00254533091, 0.00345084746, 0.0217888802, 0.00860681944, 0.033523526, -0.0109862275, 0.019303564, 0.0399345122, -0.000303603971, -0.0192753226, -0.00462466525, 0.00372444419, 0.000195047905, -0.0171571542, -0.0358958729, -0.0339189172, -0.0630366579, -0.00473410403, -0.0414031111, -0.00329904561, -0.0148130497, -0.03013446, -0.0352463, -0.00903045293, 0.0223678462, 0.00948232878, 0.00778779481, 0.000255503925, -0.00116852229, 0.00556018902, 0.0174819399, 0.026434727, 0.0112474682, -0.0152931679, 0.00480823964, -0.0244295299, -0.0172701236, 0.00588850491, 0.00611797301, 0.00309605454, 0.015999224, 0.0396520905, -0.00850797165, 0.000793430139, -0.00103348913, -0.0118617369, 0.00598382251, -0.0294001624, 0.0158438906, -0.0037067926, 0.0569928214, 0.000589115254, 0.0373927131, 0.0175807886, -0.00470939185, -0.0190211423, -0.0143046891, -0.039991, -0.0190211423, 0.0366019309, 0.0343990363, 0.0117981918, -0.0217465181, 0.0275644157, 0.0108944401, 0.000526452844, -0.00984947756, 0.00634744111, 0.0198260453, -0.0273667201, 0.0149118975, 0.015420258, -0.0122924307, 0.0385788865, 0.0149683822, 0.00433518225, -0.00350556686, -0.0224525724, -0.0308687575, -0.0263923649, -0.0177926049, 0.0280304141, 0.0231021438, 0.0262652747, -0.00240588491, -0.013619815, 0.0134715438, 0.0349921249, 0.0142552657, -0.0251779482, 0.0103154741, 0.0106120184, -0.0114734061, -0.00114645797, -0.01165698, 0.00471645221, -0.0186257511, -0.0125113083, 0.0433800668, -0.00112880662, -0.00327962893, -0.00798549, 0.0226502679, 0.0227914788, 0.00306781218, -0.0200943463, -0.0284964107, 0.0145729911, -0.0377316177, -0.0147848073, -0.0437189713, 0.019345928, -0.0108450167, 0.0115581322, -0.00241647591, 0.0131820608, -0.0131679401, -0.0238505639, 0.0130267283, 0.00985653792, -0.0168182477, 0.0206168275, 0.0136127546, -0.00144123635, -0.0257710349, -0.0350768492, -0.0167335216, -0.0202214364, 0.00485766353, -0.0244012866, 0.0451875664, -0.0126383975, 0.00814788323, 0.0279739294, -0.0312076639, -0.00145447487, -0.00928463321, 0.0306428205, 0.00510831317, -0.00740652485, 0.00662280293, -0.0116216773, -0.00258769444, -0.00180573761, -0.00625918433, -0.00318078115, 0.0406688116, 0.00976475142, 0.0176231507, -0.0126666399, 0.000374209543, 0.00655572768, 0.0264206063, -0.0146859596, -0.0179479364, -0.0103860805, 0.0375621654, -0.00967296399, -0.0568233654, -0.0143964766, 0.0235681403, 0.0217465181, 0.00280657155, 0.00434930343, 0.0128431544, 0.0129137598, -0.0176231507, -0.00356205134, 0.038607128, -0.0221419092, -0.012214765, 0.0254462492, 0.00339612807, 0.0109650455, -0.0183433276, 0.0193600487, -0.0221277867, 0.0101954453, 0.0482659712, -0.0267736334, -0.0208145231, 0.00188516884, 0.0099553857, -0.00713469321, 0.0170018226, -0.0183433276, 0.00878333393, -0.00406688126, -0.0213370044, -0.0100965975, 0.00249414193, 0.017919695, 0.0169029739, 0.009072816, 0.0144317793, -0.0238223206, 0.0307557881, -0.0228479635, -0.000188318314, -0.0209416132, -0.0332411043, -0.0189646576, 0.0113957394, -0.00869860686, 0.0213793684, -0.00145800516, -0.0162110403, -0.00795724802, 0.00284363958, 0.0107038049, 0.0034879155, -0.0201367103, -0.00875509158, 0.0745030046, -0.00113586721, 0.0222689975, -0.0243589226, 0.0268159974, 0.0154484995, -0.0305016078, -0.0240341369, -0.0327609852, 0.0114663457, 0.0233139601, 0.0246413462, -0.0190493837, 0.0167758856, -0.00401745737, -0.00674989307, 0.000578083156, -0.0308405161, -0.00228585559, -0.00123030215, -0.0303321555, 0.0412054136, 0.0366019309, 0.0149542606, 0.0236246251, -0.0112051051, -0.00175719627, 0.00491767842, -0.0138528142, -0.0118334945, -0.00320019759, -0.0180185437, -0.0276773851, 0.00163628417, 0.00925639085, -0.0133585753, 0.000158972864, 0.00434930343, 0.024514256, -0.00142358488, 0.000777985202, -0.0198684093, 0.000608090544, -0.0237375945, -0.00376327708, -0.00474822475, 0.00323903072, 0.0194306541, -0.0268724822, 0.0349638797, -0.0149118975, -0.0172277596, -0.0379575565, -0.00610738248, -0.0089810295, 0.0272537526, -0.0295696147, -0.0173548497, -0.0121088559, -0.0208851285, 0.0174254552, -0.00395744247, 0.0325350501, -0.00208992511, 0.0354722403, -0.015730923, 0.00702525489, 0.00415866822, -0.00173248432, 0.0102801714, 0.0363195091, -0.051880978, -0.00107055705, -0.0170583073, -0.0140716908, -0.0229609329, -0.00114645797, 0.00633332, -0.0367149, -0.00760422042, 0.0123489155, -0.025276795, 0.0144247189, 0.0206450708, -0.0629236922, -0.0133444536, -0.00419044076, -0.0348509103, 0.0232433546, 0.013909298, -0.00331140147, -0.0120453108, -0.0102166263, 0.0130267283, 0.0245424975, 0.00182868436, 0.00310311513, -0.00207050843, 0.00112086348, 5.87460454e-05, 0.00167070446, 0.0169170965, 0.0148412921, -0.0143399928, 0.00617092708, 0.0237093531, -0.00239705923, -0.00184457062, -0.00536955381, 0.0152649255, 0.00118617364, 0.0200096201, -0.0132809086, -0.00514714653, 0.0269572083, 0.0155755896, 0.0229044482, 0.00994126499, -0.00453993864, -0.0302474275, 0.020772161, 0.00538720516, 0.0497345664, -0.0134009384, -0.0230174176, 0.0176231507, -0.000817700813, -0.0150531083, 0.00105643587, 0.0135350889, 0.00925639085, 0.0106049571, -0.0451310836, -0.0166205522, 4.08188498e-05, -0.000638980477, 0.00291601033, -0.0123277334, -0.00771718938, -0.014488264, -0.0187104773, 0.013909298, -0.011925282, -0.0102872327, 0.00251179328, 0.0436060019, 0.0313488767, 0.0128713967, 0.015914496, -0.00777367363, 0.0181597546, 0.0167335216, -0.0402451791, -0.00331669697, -0.0240341369, 0.00321784918, -0.0693629161, 0.00194871391, -0.0289482865, 0.0367431417, 0.0499887466, -0.0166346729, 0.00123206724, -0.0228762068, 0.0167194, -0.0039433213, -0.0065910304, -0.00760422042, 0.0039044884, -0.000682667654, 0.0146153541, 0.0396803319, -0.0164652206, 0.0383529477, 0.014756565, -0.0346249752, -0.0144105982, -0.00230527204, -0.0210545827, 0.0258840043, 0.027013693, -0.0269007236, 0.00536955381, -0.0116428593, 0.0222548768, -0.0053554331, 0.0127654877, 0.0218736064, -0.0341730975, -0.0513161309, 0.0185127817, 0.00256651267, 0.00080755126, -0.00012786228, 0.0194447748, 0.00919284578, 0.011120378, -0.0115934359, 0.00956705585, 0.00573670305, -0.0415160768, 0.00543309888, 0.00123118469, -0.0105272913, -0.0163522512, 0.0206733122, 4.87068137e-05, 0.0289200433, 0.0504971072, 0.0054295687, 0.0381270088, -0.00332199223, 0.00642863754, -0.00429281918, 0.0349356383, 0.00981417485, -0.0100683551, 0.000608090544, -0.0343990363, 0.0402169339, 0.00932699628, -0.000574994134, 0.0174678192, -0.00534837227, -0.0358111486, -0.0026530046, -0.0141564179, -0.0114592845, 0.0360935703, 0.0164511, 0.00955999456, 0.0126313372, -0.0211393088, -0.033523526, -0.00103084138, 0.0167900063, -0.0145165063, 0.0385506451, -0.0367713831, -0.0117699495, -0.00132032426, -0.0070605576, 0.0246837083, 0.0122994911, -0.0285952576, -0.0211393088, -0.0212946422, 0.00761834159, -0.0427587368, 0.00107585243, -0.0571622737, 0.0254744925, 0.044086121, -0.0163240097, -0.0394826382, -0.0151519561, 0.00177043478, 0.00313488743, -0.000156876762, 0.0016477576, -0.0294566453, -0.00554253766, -0.0306428205, 0.0409229919, 0.00053704367, -0.0323373526, 0.0230739024, -0.00137592619, 0.0248672832, -0.0224525724, -0.0322808698, 0.0383811891, -0.0427022502, -0.0761975348, 0.0423633456, -0.00337318145, -0.0187387206, -0.0101601426, 0.0241329856, -0.00598029234, 0.0178208463, -0.0189222936, 0.000848590746, -0.0122077037, 0.00508360146, -0.00686639221, 0.0363195091, -0.0141211152, 0.0321114138, 0.0225937832, -0.00219583348, -0.0351898186, -0.0216759108, -0.00542603852, 0.0138104502, -0.0338906758, 0.00725119235, 0.025008494, -0.0102731111, -0.0137539664, 0.0157874059, -0.00193282764, -0.0383811891, 0.000937289034, 0.0274655689, 0.0244154073, -0.000220863061, 0.0128643354, -0.0134927258, 0.00987772, 0.0333258323, 0.00404923, -0.0131961824, -0.0187952034, 0.00270066317, 0.0190211423, 0.0140081458, -0.0193600487, -0.0506100766, -0.00188163854, 0.00736416131, 0.0059379288, 0.0236528683, 0.0127301849, -0.00598382251, 0.0289059225, -0.0218594857, 0.000905516499, -0.0338906758, 0.025093222, -0.0154484995, 0.00742064603, 0.0294284038, 0.00626624469, -0.00416925922, -0.0100895371, -0.0176372733, 0.0252344329, 0.00532013, 0.0228479635, -0.00467761932, 0.0147283226, -0.0268866029, 0.00393273076, -0.0310664531, -0.00975063, 0.0160698295, 0.0164511, -0.00680284714, 0.000394729286, -0.0253756437, -0.00438107597, 0.0108379554, 0.0687980726, 0.00208462961, -0.0196989551, 0.000107949309, 0.00866330415, -0.0150813507, 0.00286129094, 0.016846491, -0.0285105314, 0.015914496, 0.0212805197, 0.0504688658, -0.0196848344, 0.00768894702, 0.0116428593, -0.00727943471, -0.00729355589, -0.0024553088, 0.0425892845, 0.00980711449, -0.00197342574, 0.0318289921, -0.000653542869, 0.00172277598, 0.00799255073, -0.00184457062, 0.0330151655, 0.0146012334, 0.00869154651, 0.0194730181, -0.0259828512, -0.00659456057, 0.0174678192, -0.011099196, 0.0013671004, 0.00663339393, 0.0158438906, -0.0039539123, 0.00371385319, -0.0140646305, -0.0142552657, -0.0223960876, 0.00511184381, 0.00778073445, -0.00739240367, -0.0113321953, -0.00421162276, -0.0200237408, -0.00877627265, -0.0079219453, -0.0166770369, 0.0148695344, 0.0279456861, -0.0193176847, -0.00461054407, -0.0180326644, 0.00674989307, -0.0288353171, 0.00270772376, -0.00262299716, 0.00295660854, -0.0149683822, -0.0102166263, -0.0200237408, -0.00382329198, -0.00885393936, -0.0103154741, 0.0157874059, -0.00364324776, 0.00344555196, 0.00476234592, -0.00506595, -0.0208851285, 0.0135350889, -0.0235540196, -0.015109593, 0.0017651394, 0.00809139851, -0.00252414937, -0.0264206063, 0.0119747054, -0.0139446007, 0.0103719588, -0.00360088423, 0.0247119516, 0.00201578927, 0.0220430605, 0.0313206315, -0.00911518, -0.019614229, -0.0159003753, -0.0107179265, 0.0130126076, -0.0299650058, -0.0234551728, 0.0140999332, -0.00823261, -0.0109579852, 0.0137257241, -0.00857857708, -0.0315183289, 0.0650701, -0.0112474682, -0.00791488495, -0.0029266011, -0.0103295958, -0.0298520364, -0.0127654877, 0.0160415862, 0.00647100108, -0.0229185689, 0.00701113371, -0.00563432509, 0.0101672029, 0.00484001217, -0.00869154651, -0.0222689975, 0.0118758576, -0.00244824821, 0.0218736064, -0.0163663719, 0.0214640945, 0.00028131908, 0.00648865243, 0.0281998664, -0.00568374898, -0.0208568871, -0.00464584678, 0.016225161, 0.00203344063, -0.0237517152, 0.0117911315, -0.0016442273, 0.0243448019, -0.010788532, 0.00604030676, 0.0201649517, 0.00736416131, 0.00765364431, -0.0204473753, -0.0211251881, 0.00421162276, -0.00755479652, -0.00661574258, -0.00721588964, 0.016225161, 0.0089386655, -0.0244295299, -0.026477091, -0.00972944871, 0.00878333393, -0.0132597266, -0.00635450194, 0.000470409635, 0.014798929, -0.00445521157, 0.0224808156, -0.0373644717, -0.0362065397, 0.00255415658, -0.0268301181, 0.00201049377, 0.00275008706, -0.00273243571, -0.0272113886, 0.000878156861, 0.0284681674, -0.0157026798, -0.00985653792, -0.00649571279, 0.0293436777, 0.0140999332, 0.0134433014, 0.00555665884, -0.000351262745, -0.0120100081, -0.0137327844, -0.0232292339, 0.0323373526, 0.042306859, -0.0310664531, -0.0141634783, 0.00964472163, -0.0243165605, 0.0199955, -0.0107602896, -0.00969414506, -0.0056978697, -0.0230315384, -0.0015595007, -0.0305580925, -0.0274796896, 0.0120735532, -0.0142058413, -0.00562726427, -0.00292836619, -0.00768188667, 0.0205462221, 0.00624153297, -0.00591321709, -0.0240058955, 0.00705702743, 0.0186116304, 0.0106331995, 0.0111556808, 0.0116004962, -0.00699701253, 0.0184280556, 0.0249943733, -0.0366019309, 0.00104319735, 0.0263358802, 0.00377033767, -0.00337494654, -0.0140363881, -0.00232292339, 0.017877331, -0.00192753226, 0.0104213832, 0.0266183019, 0.00513655553, -0.020108467, -0.000118815944, 0.0121865226, 0.00170777238, 0.0155473473, 0.00679578679, -0.0367713831, 0.0105272913, 0.00242530159, 0.00917872507, -0.00730767706, 0.0280304141, 0.00304133515, -0.00604030676, -0.0214499738, 0.00204050122, -0.0202214364, 0.0125183687, -0.0081902463, 0.00527070602, -0.00409159297, 0.0130126076, -0.0106543815, -0.0175101832, -0.00601559505, -0.0153920157, -0.011388679, 0.00869154651, 0.0377881043, -0.00267771655, -0.0371667743, 0.000772248488, 0.00991302263, -0.00521422178, 0.00288423779, -0.0501582, 0.0214782152, -0.00903751329, 0.00577906612, -0.00312076649, 0.00168217788, 0.0237375945, -0.00631566858, -0.0111839231, -0.0138386926, -0.0129137598, -0.0122430064, -0.0268866029, -0.0470797978, 0.00937642064, 0.00999775, 0.003622066, -0.00587438373, 0.000110266054, -0.00861388, -0.00944702607, 0.0101107182, -0.00485060317, 0.00831733644, 0.0196989551, -0.0390872471, 0.00857857708, -0.0157168, -0.0120241297, -0.0121088559, 2.54842e-05, 0.00601912523, -0.0152931679, -0.0200519841, -0.00731473742, 0.011946463, -0.00474469457, 0.0314618461, 0.00910812, 0.0339471623, 0.0122077037, -0.0253474023, -0.0249096472, 0.000302280125, -0.00974356942, 0.00153920159, -0.00853621401, 0.00320725818, 0.0100824758, 0.0213228837, -0.00101319, 0.000670752954, 0.0109791672, -0.00632978976, -0.0115722539, 0.00240411982, 0.0135209672, 0.0373644717, -0.00568727916, -0.019840166, -0.0165640675, 0.0146012334, 0.0163381305, -0.00989184063, -0.0197271984, -0.0275220536, -0.00795724802, -0.0324503221, 0.0060932613, -0.0143611738, -0.00156656117, 0.0143399928, 0.0177078787, 0.00236528669, 0.0079219453, 0.00111998094, 0.0225796625, 0.0234269295, -0.00129826006, -0.00102642854, 0.0271125417, 0.00490355724, -0.0220854245, -0.0320831724, 0.00867036451, 0.0170583073, 0.00122853706, -0.0251779482, 0.000332066847, -0.00607914, -0.000249325938, 0.0180326644, 0.0134150591, -0.0216759108, -0.00586026255, -0.00106349646, 0.00461407425, 0.0002236211, -0.0125607317, 0.0180891491, -0.0208004024, -0.0313771181, 0.0356699377, 0.00851503201, -0.00170424208, 0.0341730975, 0.00693699764, 0.0293154344, -0.0219865758, -0.017072428, -0.0274090841, -0.00969414506, -0.0111133177, -0.0318854786, 0.000407526561, -0.0387200974, -0.00393273076, 0.00385859469, -0.00478352793, 0.0234410502, 0.00582142966, 0.0240765, -0.013104395, 0.0173266083, -0.0142270233, -0.00809139851, -0.00112439378, -0.0133585753, 0.0322526284, -0.0175525453, 0.0243871659, 0.0056484458, 0.0119041, 0.035754662, -0.0153496517, 0.0366301723, 0.0163663719, -0.00333611341, 0.00561667373, 0.0264206063, 0.0120241297, 0.0113039529, 0.00910812, -0.00473410403, 0.0109509248, 0.0156603158, -0.012235946, -0.000533513376, 0.0192894433, -0.00343319611, 0.00643216772, 0.0240058955, 0.0263358802, 0.0116075566, -0.00665457547, -0.0126666399, -0.0150954723, 0.0109368032, -0.0189646576, -0.00399980601, -0.0372797437, 0.00309428922, -0.0288918018, -0.00455759, -0.00656984886, -0.00684874086, -0.00843736622, 0.0152084408, 0.0110850753, -0.0136127546, -0.00370326242, -0.0366301723, -0.011367498, -0.00181279809, 0.0231021438, 0.0100895371, -0.00320549309, -0.0226643905, 0.0221842714, -0.0217465181, 0.0400192402, -0.0302191861, -0.00704290625, -0.0167758856, -0.017919695, -0.0158721339, 0.0366019309, -0.0203626473, 0.0144459009, 0.00710645132, -0.0114734061, -0.0188234467, 0.00161510252, -0.0287788324, -0.0129349418, -0.00700407289, -0.010809714, -0.000554695, 0.00253474014, 0.00734298, 0.0161121916, 0.0151519561, 0.0109791672, 0.0163098872, 0.0171006694, 0.0211957935, -0.0020387359, -0.00759716, 0.0352463, 0.00542250834, -0.0164652206, -0.0191341117, -0.0157591645, 0.00358323287, 0.00618504826, -0.0321114138, -0.00445521157, 0.0149683822, 0.0228479635, 0.00275538256, 0.00457171118, -0.00295660854, 0.00438107597, 0.00415866822, -0.00456818053, -0.0287223477, -0.0119182207, -0.0165781882, 0.0204897374, 0.00254533091, 0.0039044884, -0.0125819137, 0.0161121916, -0.00515420688, 0.0225514211, 0.0298802797, 0.0164793413, 0.015646195, 0.0171006694, -0.014219963, -0.0123065514, -0.0188658088, 0.00213758368, -0.00630860822, -0.0058037783, 0.0063121384, 0.0283693206, 0.0149825029, -0.00610738248, 0.0240623802, -0.0138104502, 0.00799255073, -0.0225373, 0.00557784038, -0.0155332265, 0.001462418, -0.013909298, -0.0108803194, -0.00981417485, 0.00395744247, 0.00142799772, -0.0142129026, 0.0305298511, 0.0235963836, 0.0444250293, 0.0102025056, 0.016182797, 0.00474469457, 0.00531306956, 0.0030113277, -0.0136127546, 0.00998362806, -0.0047658761, 0.0140928729, -0.00546840159, -0.0180467851, -0.010809714, -0.0033008107, -0.0113533763, -0.0255309753, -0.0294848885, -0.0184704177, -0.00313665275, 0.00775249209, 0.00142358488, -0.00344731729, 0.00830321573, 0.00889630243, 0.00235646102, 0.00586026255, 0.00552841648, 0.00693346746, 0.0176372733, 0.00879745465, 0.0148977768, 0.0160415862, 0.0225514211, -0.00225584814, 0.00422927411, 0.00713822385, 0.00279421569, 0.0132809086, -0.0331281349, -0.0127372462, -0.0255168546, 0.016225161, 0.00285776076, 0.00918578543, -0.0143894162, -0.00975063, 0.0135562709, 0.00735710096, -0.00851503201, 0.00680284714, 0.0149542606, 0.00691228593, -0.0315183289, -0.0182868447, 0.00598382251, 0.0136974817, 0.00175454852, -0.014756565, -0.000587350107, -0.00375621649, 0.00541191734, 0.0173266083, -0.00456112, 0.0255027339, -0.00391507894, 0.00719823828, 0.0415725634, 0.00210757647, 0.00408806279, 0.00508360146, -0.0024553088, 0.00727237435, -0.015646195, -0.00335729518, 0.0186539926, -0.00400686637, 0.00326021248, -0.00350380177, 0.00934111793, -0.016267525, 0.00284010917, -0.00874803122, 0.0073288586, -0.0246554669, -0.0148130497, -0.0126313372, 0.0264064856, 0.0101248398, 0.0164793413, 0.00297426, 0.0100895371, 0.0107744103, -0.0285105314, -0.00503770774, 0.0149260182, 0.0253897645, -0.0158438906, -0.00359735405, -0.00451522646, -0.00864918251, 0.0079643093, 0.0183715709, -0.000336479687, 0.010499049, -0.0211393088, 0.0171712767, -0.003203728, 0.0117205251, -0.00383388274, -0.0141634783, 0.00775249209, -0.00620269962, 0.00711704185, -0.00313488743, -0.0212381575, -0.017962059, 0.0112262862, 0.00840206351, 0.0062274118, 0.0104002012, 0.0238082, -0.0110709546, 0.00866330415, -0.0181738753, 0.00168394297, -0.00635097129, -0.00482942117, 0.00443756, -0.00647806143, -0.0103366561, -0.00895278715, -0.0312641487, -0.025361523, -0.010499049, 0.0165640675, 0.0033908328, -6.01250613e-05, -0.0116428593, -0.0191623531, -0.0144176586, 0.0163381305, 0.00887512, -0.00415866822, 0.0262935162, -0.0116004962, 0.00291954051, 0.0132032428, -0.00505182892, 0.00846560858, 0.0015780346, 0.00368914125, -0.0234834142, 0.0241329856, 0.019345928, 0.0187810827, 0.0153214103, 0.00900927186, -0.00122324156, 0.0175525453, -0.0180750266, -0.0120735532, 0.00394685147, -0.0152225625, 0.00146683084, 2.93730227e-05, 0.00486119371, 0.0292307083, 0.0197413191, 0.0328739546, -0.0122994911, 0.00958117656, 0.0158721339, 0.00326197757, -0.0195859857, -0.00207756902, -0.00833145808, 0.000639863, -0.0112757105, -0.00921402778, -0.00346673373, -0.0205462221, 0.0187810827, -0.00571552152, -0.0037173836, 0.0112333475, -0.00559902191, -0.0156320743, -0.0131396977, -0.00161245477, -0.044707451, -0.00478352793, -0.00262476224, -0.0365454443, 0.0107320473, -0.0132526662, 0.0585743859, 0.00534131192, -0.0109650455, -0.0180467851, -0.00288070738, 0.0214217324, -0.000972591806, 0.00490708742, -0.015730923, 0.00449051475, -0.000880363281, 0.00231409771, 0.00433871243, -0.00982829649, -0.011614617, 0.021308763, -0.011099196, 0.00644275872, 0.0109791672, 0.00488237571, -0.0162816457, 0.00931993593, -0.00679225614, -0.0146153541, -0.0250649787, 0.0100542335, -0.0102589903, 0.0216617901, -0.0155897113, 0.0074135852, -0.00677813543, -0.0233563241, -0.00576141477, 0.0102660507, -0.0189081728, -0.0260675792, 0.00541544752, 0.024203591, 0.0191058684, -0.00632625958, 0.00722648064, -0.0251497068, -0.00159215578, -0.000302721397, -0.0248107985, 0.00662986329, 0.00758303888, -0.0118264342, 0.000495562854, 0.0103790192, 0.0328457132, -0.018992899, 0.00551782548, 0.00536955381, -0.00928463321, 0.0126172164, -0.00575788459, 0.00314371334, 0.00126119214, -0.00943290442, 0.0194730181, 0.0121512199, -0.0120876748, 0.0269430876, -0.00378798903, -0.0187810827, -0.00610032165, 0.00726531353, -0.0144529613, -0.0120947352, 0.0209416132, -0.00408100244, 0.0245707408, -0.0133585753, 0.000456729817, 0.0125183687, 0.0114169214, -0.00763952313, -0.00688404357, -0.0143611738, 0.0269148462, -0.000170335945, -0.0138810556, 0.0149825029, -0.014756565, 0.00663692411, 0.028976528, 0.0131538184, -0.015024866, 0.00868448615, 0.0309534837, -0.0105061093, 0.0102660507, 0.0220148191, -0.00341377966, 0.000249546574, -0.00719823828, -0.0150389876, -0.00671105972, 0.00749831228, 0.00249767234, -0.0159709807, 0.00415866822, -0.0108379554, -0.0260252152, 0.0145023847, 0.000244251161, -0.00874097, -0.00835263915, 0.00865624379, 0.00356381643, 0.0186539926, 0.0117275864, -0.0181032699, -0.0125677921, -0.000568374875, -0.0026053458, 0.0137539664, 0.00318078115, -0.000457171089, -1.77341353e-05, 0.00867036451, 0.00708173914, -0.0167758856, 0.00350556686, -0.00190811569, -0.00752655417, -0.0110215303, -0.010209566, 0.0109791672, 0.0164511, -0.00150919415, 0.0134291807, -0.00955999456, 0.00956705585, 0.013351514, -0.0164369773, -0.0085220933, 0.0062380028, -0.0149966246, 0.0148695344, -0.00228056, 0.00775955291, -0.00369620183, 0.0283269566, -0.00355146034, 0.0115369512, -0.00565197645, 0.0185975078, -0.0142623261, -0.00198401674, -0.0198119245, 0.00423986465, -0.011120378, -0.0178349689, -0.0269007236, -0.00971532706, -0.00318784174, 0.0178490896, -0.0165640675, 0.00260887598, 0.0163804926, 0.001671587, -0.019840166, 0.000597058388, -0.00165658328, 0.0406123251, 0.00315783429, 0.0037173836, 0.00485060317, 0.0192329586, 0.00352321821, 0.0309534837, 0.0126666399, -0.00157626951, -0.0056978697, -0.00512949517, 0.00509772263, 0.0165640675, -0.000525128969, 0.0467973761, 0.0027394963, 0.0137045421, 0.0158721339, 0.00223466638, -0.0110921357, -0.00133974082, -0.006975831, -0.00362912659, -0.0191058684, -0.019614229, 0.00280833687, -0.0252061896, 0.000998186297, -0.0073500406, -0.00170071179, 0.0131891211, -0.00353733939, -0.0129208202, -0.0165923107, 0.00517891906, 0.00277656433, 0.00720176846, -0.012546611, 0.0161969196, -0.00617092708, -0.00676048361, 0.00474469457, 0.0174254552, 0.00228585559, 0.00620976044, 0.0146012334, -0.00405276, -0.0169877019, -0.0135845123, -0.00179691194, -0.00988478, -0.0163381305, -0.0157874059, -0.0109579852, -0.0114451637, -0.0203061625, 0.00911518, -0.00332022714, -0.00753361499, -0.00894572679, -0.0113110133, 0.0193600487, 0.0122430064, -0.0141634783, -0.00135033159, -0.00133444532, -0.0183715709, -0.0197554398, 0.0183715709, -0.0150954723, -0.00728649553, 0.0218877289, -0.00966590364, -0.00430340972, 0.00363265676, 0.02050386, 0.00193988823, -0.015335531, -0.00337671163, 0.0020493269, 0.0261946693, -0.0220571812, 0.0293719191, 0.00622388162, 0.0113745583, -0.00462113507, -0.0132173635, -0.0174536984, -0.0099553857, -0.00400333619, -0.00115528377, 0.00857151672, 0.0321961418, 0.0105061093, 0.0235398989, -0.0123983389, 0.00383388274, 0.00434224308, 0.000725472288, -0.00416572904, 0.0120241297, -0.00586026255, -0.0288353171, 0.00156744372, -0.00663692411, 0.000188428632, 0.0277479906, 0.000126648752, -0.00963060092, 0.00675695343, 0.0333540738, 0.0215770639, 0.000624859356, -0.0139799044, 0.000297205348, 0.00707820896, 0.0137398448, 0.0116075566, 0.00119676453, 0.0238788053, -0.00551076513, -0.00251885387, 0.0210122187, -0.00198754692, 0.00664751511, -0.00575435441, -0.0011817608, -0.00161068968, -0.0334670432, 0.0239494108, 0.000627065776, 0.00550723495, 0.00963766128, -0.00747007, -0.00395744247, 0.000598382263, -0.00686286204, -0.009093998, 0.00932699628, -0.00345437787, 0.00423280429, 0.0057931873, 0.0311511792, 0.00218171231, -0.0101742633, 0.0273949634, 0.00421162276, -0.00415866822, 0.0246131029, 0.0141069936, -0.0111909835, 0.012193583, -0.00377033767, 0.00257710344, 0.0200519841, 0.0143470531, 0.00380564062, -0.009404663, 0.00937642064, -0.0105696544, 0.0117699495, -0.0178914536, 0.0126595795, 0.0187528413, -0.000480559189, 0.00145888771, -0.00499534467, 0.000366707711, 0.00720882928, -0.00450110529, -0.00826791301, 0.00362559617, 0.0107602896, -0.00289659365, 0.00439519715, -0.0210263394, 0.0118476152, 0.0253050383, -0.00915754307, 0.00553547731, 0.00387271587, -0.000265432842, 0.0186822359, 0.0160557069, 0.019571865, -0.0185127817, 0.00142799772, 0.0155473473, -0.00225408305, -0.00236528669, -0.00197695615, -0.00852915365, 0.0053554331, 0.0134644834, 0.0078584, 0.0160698295, -0.00932699628, 0.00282245781, -0.000615592347, -0.000567933603, 0.0075689177, 0.00165923103, -0.0138245719, -0.00353910448, -0.00881157536, 0.00701819407, 0.00755479652, -0.017962059, -0.0155755896, 0.00146330055, -0.00200696336, 0.00506242, 0.0145871118, -0.00387977646, -0.0238646846, -0.00429634936, 0.0302474275, -0.0116004962, -0.00524952449, 0.0321679, 0.0188799314, 0.00285599544, -0.00387624605, 0.013640997, 0.0204473753, -0.00518597942, 0.0132879689, 0.00377739826, 0.00638627447, -0.0320266895, -0.00328492443, 0.00418691058, 0.0271407831, -0.00768188667, -0.00249414193, -0.018992899, -0.0103719588, -0.0148271704, -0.000116057912, 2.27399596e-05, -0.0269289669, -0.0126172164, -0.011699344, 0.0181597546, -0.00908693764, 0.00988478, -0.000193724045, -0.0235963836, 0.00433165208, -0.0074841911, -0.0308687575, -0.0118334945, -0.000364280626, -0.0001001165, 0.000605442794, -0.00686286204, 0.00656278804, 0.00373503496, -0.00611444283, 0.00723707164, -0.0112051051, 0.0174819399, 0.0180891491, -0.0140152071, -0.00855739601, 0.00323197013, -0.00702525489, -0.0139799044, 0.00670046918, -0.00963766128, -1.27627854e-05, 0.00712763285, -0.0100542335, -0.00915754307, 0.00761128124, -0.00447286339, 0.020193195, -0.00398215465, 0.0180467851, -0.0228479635, -0.0113533763, -0.00775955291, -0.00717705674, -0.0081902463, 0.00132385455, 0.00323550054, -0.0274796896, -0.0239070486, -0.0198260453, 0.0203767698, 0.00979299285, 0.0197130758, -0.0124053992, 0.0116216773, -0.0157168, -0.000252635567, 0.00759716, 0.00459642289, -0.0035673466, 0.0188234467, 0.0144600216, 0.0104708066, 0.00232998398, -0.0147000812, -0.0108591374, -0.0184704177, 0.00636862312, 0.0102660507, 0.00472351303, -0.0156603158, 0.0125113083, -0.0139234196, -0.0143188108, -0.0202638, 0.00328668952, -0.00314371334, -0.00772424974, 0.00817612559, 0.019345928, -0.0136763, 0.0133797564, -0.0191058684, -0.0211816728, 0.00222760579, 0.0230880231, 0.00436695479, 0.000838441192, 0.00225761323, -0.00797843, -0.0051400857, 0.00051806838, 0.00178632105, 0.0111839231, 0.0162392817, 0.00826085266, -0.01114156, -0.00284893485, 0.0103931408, 0.0115369512, 0.00861388, 0.0165923107, -0.020150831, -0.026745392, 0.0022364317, 0.0447356924, 0.00703231525, -0.0010882084, -0.0129208202, 0.0209839772, 0.00714175403, -0.0175384246, -0.0198260453, 0.000152684559, 0.0219583344, -0.0058037783, -0.0243589226, 0.00235116575, -0.00407394161, 0.0243589226, 0.0031560692, 0.0356699377, 0.00829615537, -0.00353204389, -0.00663692411, 0.0177361201, -0.0127866697, 0.00220642425, 0.0089810295, -0.0063227294, -0.0036644293, -0.00400333619, -0.00305898651, -0.00400333619, 0.00417985, -0.00347026391, -0.025093222, 0.0104849283, -0.0027924506, -0.00959529728, 0.0290330127, -0.00267242105, -0.00666869665, -0.0105131697, 0.00410571415, -0.00046467295, -0.000232115824, -0.00697936118, 0.000326992071, -0.0192612018, -1.75686528e-05, -0.0132244239, -0.00783015788, 0.00707820896, 0.0183856916, -0.00446933275, -0.0101883849, -0.0098635992, -0.0134079987, -0.0168888532, -0.0151660778, 0.00156303088, 0.00712410267, -0.008804515, -0.00122588931, 0.0130973347, 9.83513601e-05, 0.000784163189, 0.011699344, 0.00504476856, -0.0141069936, 0.0109015005, -0.0198260453, -0.0214923378, 0.00958823692, -0.000450993102, -0.00667928765, -0.00254533091, -0.00651689479, -0.00226643891, 0.00714175403, -0.0052001006, -0.00328492443, -0.0248814039, 0.0232998393, 0.00563785527, 0.0266889073, -0.00613562437, -0.0074135852, 0.0220006965, -0.0276773851, -0.0393414274, -0.00980711449, -0.00427516736, 0.0334388, -0.00628036587, 0.00318960682, -0.00604736758, -0.0151801985, 0.00526364567, 0.00234057475, -0.000499534421, 0.0145023847, 0.00855033472, -0.0143399928, 0.011946463, 0.017651394, 0.00336788595, -0.00351968803, -0.00444815122, 0.0044022575, 0.0106402598, 0.00759009924, 0.00497416267, 0.00523893349, 0.00209875079, 0.00262123207, -0.00646041, 0.00300603244, 0.0236528683, -0.0183856916, 0.00105555332, 0.00439872732, -0.00833145808, -0.00413042633, -0.00403510872, 0.0039044884, 0.0230174176, -0.00809846, 0.0232574772, 0.00646041, -0.00723707164, -0.0217465181, 0.00759009924, 0.00475175539, 0.0079431273, 0.0266606659, 0.0288635585, -0.0036750203, 0.00780897681, 0.00976475142, -0.00693346746, -0.0106826238, 0.0175807886, -0.0224243309, -0.0132103032, -0.0056696278, -0.00877627265, 0.00742770638, 0.0189505368, 0.0134997861, 0.00375974691, -0.0121300379, -0.0167900063, -0.00459289271, -0.00285423035, 0.0134150591, 0.0102448687, -0.00124001037, 0.00408100244, 0.0022364317, -0.00266889064, 0.0101530813, 0.00178632105, 0.0248672832, 0.010830895, -0.00823261, -0.00141564175, -0.0121159172, 0.00390801858, 0.0291177388, 0.00360088423, 0.0433800668, 0.00767482584, -0.0116287386, 0.0383247063, 0.0103437165, 0.00350556686, -0.0072052991, -0.00218700781, 0.00847266894, -0.0303886402, -0.0325350501, 0.00312959217, 0.0104425643, 0.00032213793, -0.01760903, 0.0108944401, 0.0235963836, -0.00956705585, 0.0161686763, 0.00492473878, 0.00150036847, 0.0343990363, 0.0146859596, -0.0107320473, -0.00592380762, 0.0152366832, -0.0248390418, 0.0431258865, 0.0107955923, -0.00471998286, 0.0207580384, -0.000588674, 0.0022734995, -0.0169594586, -0.00497769285, -0.00378798903, -0.0146577172, -0.0208427664, 0.015603832, -0.0288635585, -0.00151360699, 0.00230350695, -0.00905869529, 0.00965178199, 0.0249943733, 0.015109593, -0.0141917206, -0.006696939, -0.0169029739, 0.00393273076, -0.000860946719, 0.01393048, -0.00951057114, -0.0172418822, -0.00355852093, -0.00661574258, -0.000799166854, 0.00560608273, 0.00308369845, -0.00145888771, -0.0125819137, 0.00176602195, -0.00101936795, -0.0115863746, 0.00517891906, -0.00174572284, 0.00617445773, -0.00048320691, -0.0198260453, 0.00915048271, 0.0107461689, 0.0240341369, 0.0254180077, -0.00222054543, -0.0116640413, 0.00800667237, -0.017693758, 0.0132032428, 0.00565197645, 0.00346849882, 0.0132526662, -0.00662986329, 0.0110709546, -0.0124548236, -0.00452228729, 0.00831027608, -0.0160557069, -0.00097788719, -0.00578965712, -0.0110003483, -0.0131467581, -0.00980711449, 0.0122218253, 0.0177361201, 0.0137469051, -0.0108661978, 0.0131679401, -0.00839500315, -0.0113180736, 0.00640392583, -0.0344555192, -0.00560608273, -0.0063015474, 0.00550017413, 0.00917166378, 0.0118546765, 0.0299085211, 0.00640392583, 0.012235946, 0.0196424704, 0.00586379319, -0.0257145502, 0.001999903, 0.0115793142, -0.00695817964, -0.00878333393, -0.00216935622, 0.0184280556, -0.006975831, -0.026703028, -0.011946463, 0.00802079309, 0.0262229107, -0.00460701389, -0.0151237138, 0.0043281219, 0.009093998, 0.0130549707, -0.0074135852, -0.000360088423, -0.00518244924, 0.00739240367, 0.017722, -0.0159003753, 0.00262476224, 0.0138457529, -0.00132738485, -0.027281994, -0.00328668952, -0.00576494541, 0.0128290327, -0.00753361499, 0.00546134124, -0.0104566859, -0.00244824821, -0.00247649057, -0.0131679401, -0.015335531, -0.0209698565, 0.027550295, -0.000849032, -0.00779485563, -0.000608531816, -0.0126101561, 0.0161686763, 0.0138245719, 0.0207439177, 0.00492473878, -0.00473410403, 0.00108026527, -0.0237234738, -0.0230456591, -0.00600853423, -0.010520231, 0.0137327844, 0.0187810827, 0.009072816, 0.010583776, -0.0168182477, -0.00183221465, -0.0280304141, 0.0239352901, -0.0169594586, 0.0064462889, 0.00528835738, 0.0156320743, 0.00376327708, 0.000509684, -0.00727943471, 0.0186963566, 0.00523893349, 0.00652395515, 0.0137186637, 0.00522834295, 0.00428222818, -0.00140152068, -0.0339754038, 0.0196848344, 0.0109085618, -0.00225055264, 0.0134433014, 0.00727943471, 0.00138210412, -0.0171006694, -0.00671812054, -0.00304486533, 0.0118687972, -0.0213652477, -0.00474116439, 0.0115298908, -0.00799255073, -0.0125677921, -0.00210051588, -0.00100348168, 0.0262370314, -0.0144317793, 0.0122218253, -0.0037173836, -0.0148836551, -0.00121971127, 0.0370255634, -0.00347379432, 0.00728649553, -0.0231303871, 0.00581789948, -0.00242883177, 0.0184845403, 0.00716999639, 0.0121088559, 0.0103366561, -0.0128855174, -0.0339189172, 0.000654866686, -0.0129278805, -0.00774543174, -0.00650630379, -0.0146859596, -0.00897396822, -0.00366089912, 0.0141776, -0.00254180073, -0.00828203373, 0.000286393857, 0.00667222682, 0.0155332265, 0.00312253158, -0.00324256113, 0.00706408778, -0.0133656356, 0.0210687034, 0.00156391354, 0.0101036578, -0.00536249345, 0.0103507778, -0.03521806, -0.0164087359, -0.00625918433, 0.00458230171, -0.0085009113, -0.00710645132, -0.016804127, -0.0174254552, 0.0122641884, 0.0101742633, 0.00783015788, -0.0049106176, 0.00297249481, -0.0258275196, -0.0152790463, 0.0183998123, -0.00436342461, -0.00318078115, 0.00347202923, 0.0181173906, -0.00987772, 0.00691581611, 0.0270984191, 0.0019522442, -0.0128643354, 0.0036750203, 0.00416925922, 0.0167758856, -0.0145729911, -0.0116287386, 0.00432459125, -0.030360397, 0.0131396977, -0.00390801858, 0.0233422033, 0.00683461968, 0.0115369512, 0.0148977768, -0.00845854823, -0.0248107985, -0.0331563763, -0.0165923107, -0.00389036722, 0.0174395777, -0.00614974555, 0.00651336415, 0.00604030676, -0.00724413199, 0.0162110403, 0.000335597113, 0.00375621649, 0.0068099075, -0.00583202066, 0.00855033472, 0.0206733122, 0.0103154741, -0.0111486204, -0.0175525453, 0.0211534295, -0.00721588964, -0.0228056014, 0.00626271451, -0.00415513804, 0.00124001037, -0.0175384246, 0.0178914536, -0.00670046918, -0.00327962893, -0.0037067926, 0.011325134, 0.0220995452, 0.00180485507, -0.0139375404, 0.0245566182, 0.00631566858, 0.00590968644, 0.00610385183, 0.0324503221, -0.0073288586, 0.0242318343, 0.00845148694, 0.00102642854, 0.00378798903, 0.00575788459, -0.0232009925, -0.0227349959, -0.0214358531, 0.013393878, 0.0282139871, 0.00969414506, -0.00435283361, 0.0184704177, 0.00725119235, -0.00701466389, -0.0109368032, -0.0158015285, 0.0317725092, 0.00356028602, 0.0232715979, 0.00145888771, -0.0061779879, -0.00364677794, 0.00745594874, -0.028129261, -0.0168323684, -0.00900927186, 0.0154626211, -0.00771718938, -0.0124830659, 0.0142976288, 0.01988253, 0.000624418084, -0.00294072228, -0.0122783091, 0.000652660266, 0.0102166263, -0.000711351167, -0.00525658485, -0.00167599984, -0.034681458, -0.0139375404, -0.0124689443, -0.00919990614, 0.00166276132, 0.00916460343, 0.00578259677, 0.000396273797, -0.00399627537, 0.019345928, 0.00136974815, -0.0047023315, 0.00369620183, -0.0135068465, 0.0161545556, -0.00936936, 0.00400333619, -0.00742770638, 0.00137416099, 0.0044305, 0.00837382115, 0.02723963, -0.0148130497, -0.00383741292, -0.00869154651, -0.00888218172, -0.00036891413, -0.00419750158, -0.00230880221, 0.00112527632, -0.0172842443, -0.0277479906, 0.00146153546, 0.0167900063, -0.00415160786, -0.0187387206, 0.0203344058, 0.0105908364, 0.0115369512, 0.015109593, -0.00525305467, 0.00167688238, -0.026787756, -0.00167953013, -0.0282704718, -0.00762540195, -0.00827497337, -0.0110709546, -0.00165481819, -0.0569363348, 0.0139446007, -0.0149118975, -0.00220465916, -0.00297426, -0.0180467851, 0.0168888532, 0.010873259, -0.0164228566, 0.00134150591, 0.0378445871, 0.013351514, 0.0071947081, 0.00523540331, 0.0161404349, -0.00342790061, 0.00122677186, -0.00820436794, -0.00814788323, -0.00223290129, -0.00104849285, 0.0145588694, -0.0149401398, -0.0121865226, -0.0217606388, -0.00640039518, 0.00159215578, -0.0290047694, -0.0197271984, 0.00606148876, 0.00523540331, 0.0171430334, 0.0144600216, -0.00815494359, -0.010583776, -0.0190493837, -0.0102025056, -0.0106685022, -0.00234763534, 0.00783721916, 0.00974356942, 0.0154626211, -0.000868007308, -0.0261805467, 0.00179602928, -0.00910812, 0.0277197491, -0.00035699943, 0.000193503409, -0.0070993905, 0.0107038049, -0.0156320743, -0.0293436777, 0.0185551457, 0.00996244699, 0.000184788034, 0.000398259581, 0.0158156492, -0.0162816457, 0.00403157854, -0.00353733939, 0.0145729911, -0.00415866822, 0.000216450222, -0.0385788865, -0.0109862275, -0.0250649787, -0.0131396977, 0.0453005359, -0.00442696968, -0.000158641895, 0.00498475367, -0.00585320219, -0.015335531, 0.0127866697, 0.0214640945, -0.0109368032, -0.0331281349, -0.0104284436, -0.00869860686, -0.00284010917, 0.0110921357, -0.0269007236, 0.0124971867, -0.0199955, 0.00766070513, -0.00236705202, 0.00225584814, -0.0108944401, 0.00334493909, -0.0155332265, 0.0195577443, 0.0140787521, 0.00981417485, -0.0315465704, -0.0174536984, -0.014798929, 0.00431047054, -0.00876215193, 0.00277832942, -0.00398568483, 0.0222689975, 0.00106261391, -0.015335531, 0.00345437787, 0.000329419127, 0.0102166263, 0.00224349205, -0.00563785527, -0.00614974555, -0.0140505098, -0.00536249345, -0.0102236876, 0.00764658395, -0.00953175221, 0.00349497609, 0.0039292, 0.0077030682, -0.00123648008, 0.0136692394, 0.0120453108, -0.00395744247, 0.0191058684, -0.00131944171, 0.00810552, -0.0113321953, -0.0264912117, 0.00739946449, 5.58776919e-05, 0.00725119235, -0.00274126139, -0.00328492443, -0.0122712487, 0.0158721339, 0.000554253755, -0.00960941892, 0.00156920892, -0.0234834142, 0.0134079987, 0.00345967314, 0.00735710096, -0.0228620861, 0.0254744925, 0.00460348371, 0.0052954182, -0.019656593, -0.00590262609, -0.0215347, 0.00193812302, -0.0100259921, 0.0342578255, -0.0124618839, 0.0114804665, -0.0491132364, 0.0239494108, 0.00183751015, 0.00401039654, -0.0218594857, -0.0172560029, 0.0249378886, 0.0123771569, 0.00447992375, 0.00873391, -0.0240765, -0.00379504962, 0.0003885513, 0.00862800144, 0.0275220536, 0.0171430334, 0.0132597266, 0.00514714653, -0.00589556573, -0.00423633447, -0.00710645132, 0.0203767698, 0.0230597816, 0.0138528142, -0.00452228729, 0.00128149125, 0.000654866686, -0.00602971623, 0.0103860805, 0.00866330415, -0.000239838308, 0.00736416131, 0.0219018497, -0.0208427664, 0.0015542052, -0.0137186637, -0.0145023847, -0.00684168, -0.00063500891, -0.00977887213, 0.0010917387, -0.00905869529, 0.00867742486, 0.00513655553, 0.0248814039, 0.00157715206, 0.00531306956, 0.0149260182, -0.00783015788, -0.00105643587, 0.0134079987, 0.0192329586, -0.0190211423, -0.00862800144, 0.0212946422, -1.86442849e-05, 0.0262935162, 0.0414031111, -0.00610385183, -0.0134574231, 0.00629448704, -0.008825697, 0.0120876748, 0.0181738753, -0.0280586556, -0.0119605847, 0.0102166263, 0.0148695344, 0.0151943201, -0.0143117504, -0.0104919886, -0.000224283023, 0.0233139601, 0.0146153541, 0.0249096472, -0.0261381846, 0.0116004962, 0.00263535301, 0.00033361133, 0.034229584, -0.0074630091, 0.00284540467, 0.00596264098, 0.00663339393, -0.0129066994, -0.0334105566, -0.00289835897, -0.00464937696, -0.0176231507, 0.000169343053, 0.0141211152, 0.00797843, -0.0118617369, -0.00523893349, 0.00605089776, -0.011431043, 0.0130902734, -0.0171995182, -0.0161263142, 0.0445097536, 0.0140505098, 0.00293719186, 0.0117346467, -0.0294001624, 0.009383481, 0.00551782548, -0.0386353694, -0.00163893192, -0.000702966761, 0.00947526842, -0.0191905946, -0.0242318343, -0.0276067797, 0.016804127, 0.0131396977, 0.00197166065, 0.00480823964, 0.0119747054, 0.00104761019]
11 May, 2022
Angular PrimeNG Introduction 11 May, 2022 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that helps to create an attractive user interface with enhanced functionality. These components can be utilized for great styling & are used to make responsive websites with very much ease. There are different functionalities that are supported by the different components, such as the Ripple effect. It is an animation that is supported by the Button Component, which is optional & by default it is disabled & it can be enabled globally in the main component by injecting PrimeNGConfig. The animation is mainly utilized to enhance the overall user experience with the various components. The PrimeNG facilitates the various components, panels, overlays, menus, charts, etc, which helps to make a single-page-application, that is a web application, that loads a single HTML page and only a part of the page instead of the entire page gets updated with every click of the mouse. This improves the overall user experience, along with adding the different functions to perform the specific task, based on the used components. In this article, we will know an overview, its syntax & installation procedures, along with understanding its implementation through the examples. Installation Syntax: npm install primeng --save Steps for installing the Angular PrimeNG: Before we proceed to install the Angular PrimeNG, we must have installed the Angular CLI in the system. Please refer to the Angular CLI Angular Project Setup article for the detailed installation procedure. Make sure the Angular CLI & Node Package Manager is installed properly. To check the version installed, run the below commands: For NodeJS version: node --version For the NPM version: npm -V OR npm --version For Angular CLI version: ng -V or ng --version After completing the pre-requisite installation, we can now install & create the Angular PrimeNG project in the local system using the command-line interface. Steps for creating the Angular PrimeNG Application: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to the current working directory where the new app just has been created, by using the following command: cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: After successful installation, it will look like the following image: Project Structure Example: This example illustrates the implementation of Angular PrimeNG. app.component.html <h2>GeeksforGeeks</h2> <h5>Angular PrimeNG Component</h5> <p-panelMenu [model]="gfg"></p-panelMenu> app.component.ts import { Component } from "@angular/core"; import { MenuItem } from "primeng/api"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { gfg: MenuItem[]; ngOnInit() { this.gfg = [ { label: "Web Technology", items: [ { label: "HTML", }, { label: "CSS", items: [ { label: "Pure CSS", }, { label: "Bulma CSS", }, { label: "Foundation CSS", }, { label: "Semantic UI", }, ], }, { label: "Javascript", items: [ { label: "Angular", }, { label: "React", }, { label: "FabricJS", }, { label: "VueJS", }, ], }, { label: "PHP", }, { label: "Database Management System", }, ], }, { label: "Data Structures", items: [ { label: "Linked List", items: [ { label: "Singly Linked List", }, { label: "Doubly Linked List", }, { label: "Circular Linked List", }, ], }, { label: "Stack", }, { label: "Queue", }, { label: "Tree", }, { label: "Graph", }, { label: "Heap", }, ], }, ]; } } app.module.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; import { AppComponent } from './app.component'; import { PanelMenuModule } from 'primeng/panelmenu'; @NgModule({ imports: [BrowserModule, BrowserAnimationsModule, PanelMenuModule], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule {} Output: Example 2: This example describes the dialog Component in Angular PrimeNG. app.component.html <h2>GeeksforGeeks</h2> <h5>Angular PrimeNG Example</h5> <p-button (click)="gfg()" label="Click Here"> </p-button> <p-dialog header="GeeksforGeeks" [(visible)]="geeks"> <p>A Computer Science portal for geeks. </p> </p-dialog> app.module.ts import { NgModule } from "@angular/core"; import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { DialogModule } from "primeng/dialog"; import { ButtonModule } from "primeng/button"; @NgModule({ imports: [BrowserModule, BrowserAnimationsModule, DialogModule, ButtonModule], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule {} app.component.ts import { Component } from "@angular/core"; import { PrimeNGConfig } from "primeng/api"; @Component({ selector: "app-root", templateUrl: "./app.component.html", }) export class AppComponent { constructor(private primengConfig: PrimeNGConfig) {} ngOnInit() { this.primengConfig.ripple = true; } geeks: boolean; gfg() { this.geeks = true; } } Output: Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction
https://www.geeksforgeeks.org/angular-primeng-introduction/
Languages
Angular PrimeNG Introduction
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0575356483, 0.00765415374, -0.0177228916, -0.00631138962, 0.0427134447, 0.0241936594, 0.0116665075, 0.0121287061, -0.00305409101, 0.0104791382, 0.0167347454, 0.00476541789, 0.0228230041, -0.0688515231, -0.000390726404, -0.00394661073, -0.0510648787, -0.0207670219, -0.0210220274, 0.00367965177, -0.0126307476, 0.0102161635, -0.0404183939, -0.00460603926, -0.00326526747, 0.0519255213, 0.0270305984, 0.0117063522, -0.0211654678, 0.0382827222, 0.00588505203, 0.000159503034, 0.0367845632, 0.00694093481, -0.0510011278, -0.0179619603, 0.00816018, -0.00496862549, -0.00544676092, 0.0076422, 0.00269748154, -0.0115868188, 0.0199223161, 0.0363383032, -0.0182807166, -0.0106146093, -0.0137384292, -0.0358920433, -0.00434704917, 0.0175157, 0.0256758798, 0.0375495814, 0.0383145958, 0.0430003256, 0.00219543907, 0.0341707543, 0.00342066167, 0.00221934589, 0.00420360873, 0.00709632877, 0.015945822, -0.0316047594, -0.0214682873, -0.0125032449, 0.0173722599, 0.0519255213, -0.00570973568, 0.015029395, 0.0259787, 0.0130690392, -0.00688116765, 0.00606036838, -0.00979381055, -0.00349437422, -0.0214204732, -0.0144795384, 0.0114672845, -0.0360514224, -0.0300109759, 0.0177388303, 0.0196673106, 0.0278593656, -0.0111485273, 0.000575754908, 0.0247196089, -0.00140053872, 0.01536409, -0.05967132, 0.00273931841, 0.00995318871, 0.0255961902, 0.0239545926, 0.0152206486, -0.0208945237, 0.0142165646, -0.00314971805, 0.0264568347, 0.0032792131, -0.0394621231, 0.0147743896, 0.00741508603, -0.00380914682, -0.00339675485, -0.047654178, 0.00267158239, 0.00926786102, 0.0342663825, 0.00480924686, 0.00217551691, -0.0159856658, -0.00415181043, 0.0010937351, 0.0196354333, 0.0109014912, -0.0337563716, 0.0199382529, -0.00769001385, -0.0555912293, 0.0347445197, -0.00842315517, 0.00486502936, -0.0052634757, -0.0330232307, 0.036242675, -0.0449128672, 0.0362108, -0.00754657295, 0.0176113266, 0.0367845632, -0.00110668468, 0.0127901267, 0.0269509088, -4.0404946e-05, 0.0232373886, 0.055176843, 0.0192688629, 0.00725172274, 0.0120091718, -0.0217392314, 0.0112680616, -0.00189660443, -0.0417890474, 0.00396454055, -0.0326726, 0.00214762567, 0.0158980079, -0.00407212134, 0.0682140067, -0.0153800277, 0.0149098607, -0.0548899621, -0.0279390551, 0.0174041353, -0.00897301082, 0.0357007906, -0.0372308232, -0.000805359625, -0.00759438658, 0.00918020308, -0.0102002257, 0.0289112646, 0.0172606949, -0.00408407487, 0.00183086074, -0.00178703165, 0.0200338811, 0.0125590274, -0.0434147082, -0.0586513, 0.0399402566, 0.0257077552, 0.0198266879, 0.00903676264, 0.00112162635, -0.0508098714, -0.00116545544, 0.00646279892, -0.0126785617, 0.0200657565, 0.000484112272, -0.0281940605, -0.0213885978, 0.0259787, -0.00111266132, 0.0175157, 0.00191752287, 0.0421078056, -0.0342345051, -0.0538061894, 0.00252614962, -0.0171331912, 0.00710031344, 0.0289909542, 0.0499492288, 0.0109014912, -0.018758852, -0.0539018176, 0.0149337677, -0.0207988974, 0.00154198718, 0.00810838211, -0.0309831854, -0.00315967924, 0.0226636268, 0.0357645415, 0.0192369875, -0.0164159872, -0.0148779852, 0.0298834722, -0.00991334394, -0.0255324394, -0.00349835865, -0.024608044, 0.00933161285, -0.0121526122, 0.000707242172, -0.0092519233, -0.00877378788, -0.0170535017, -0.0108138332, -0.012327929, 0.038410224, 0.0380277149, 0.0302500445, -0.0887419581, -0.0144556323, -0.0140332794, -0.0214523487, 0.00405618362, 0.0213089082, 0.00226915162, 0.00759837124, 0.00977787282, 0.00155892118, 0.0330869816, -0.00511206593, -0.00208188198, 0.00521167787, -0.0248152353, 0.0844068676, -0.00784142315, -0.00889332127, -0.0286084451, -0.032226339, 0.0196991861, -0.0224086195, 0.0260265134, 0.0555274785, 0.0164319258, 0.0067417114, -0.0356689133, 0.0102480389, -0.0190457329, 0.0144636007, -0.0235402081, 0.028560631, 0.0071082823, 0.00775376521, 0.0161928572, 0.0419484265, 0.00617591757, 0.012527152, 0.0156589393, 0.0704453066, 0.00117940106, -0.0304572359, 0.0228708182, -0.00179300841, -0.022934569, 0.0227114391, 0.0792430043, -0.0195876211, 0.0340751298, 0.0242095981, -0.0314135067, -0.00109672348, -0.0200657565, -0.0105827339, 0.0563562475, 0.0212132819, 0.0120410472, -0.0362745523, 0.0219464228, 0.001565894, 0.0032792131, -0.0640382916, -0.0021416489, 0.0130371628, -0.0275406092, 0.0485466979, -0.0274768583, 0.00695288787, -0.00718398672, 0.0266321506, 0.0432553329, 0.0393983722, 0.00605239952, 0.00267955149, -0.00142046111, 0.0386652313, -0.00760235544, -0.0205757674, -0.0138420248, 0.0267277788, -0.0540611967, 0.0428409465, 0.0198426265, 0.014105, -0.0471441671, -0.0277478, 0.0390477367, -0.0354457833, -0.0298197214, -0.0146548552, -0.0461241454, 0.0290706418, 0.0087897256, 0.0167506821, -0.0332782343, -0.00714812661, 0.0253889989, -0.0312860049, -0.051096756, 0.0339795, 0.0568025075, 0.000494322449, -0.0393346213, -0.0246717948, 0.0378364623, -0.0124235563, -0.0353820324, -0.0267915297, -0.014893923, 0.0186791625, 0.0383783467, 0.0020958276, 0.015834257, -0.0405140221, 0.00248232041, 0.0338201225, -0.0417571738, -0.020097632, 0.00025064763, -0.0155712813, 0.0203048233, -0.0551130921, 0.00635920325, -0.000100358666, 0.0413427874, 0.0119852647, 0.00150015031, 0.0194760561, 0.0585875437, -0.0269827843, 0.0392071158, 1.93464366e-05, 0.00839924812, -0.0245761685, -0.0158820692, -0.000321745407, 0.00696484139, -0.00946708396, 0.00177408219, 0.0624763817, 0.0486104488, -0.0295647159, -0.00983365532, 0.0327682234, -0.0258990098, -0.00674968027, -0.0301862918, -0.00897301082, -0.00767407613, -0.00230899639, -0.0345851406, -0.00969818328, 0.00670983596, 0.0188226029, -0.0079768952, 0.00401434675, -0.0416934229, 0.0432234555, 0.00713617355, 0.0327682234, 0.0253571235, 0.0176432021, 0.0329276025, -0.0272537284, -0.012104799, -0.0180097725, 0.00406614458, 0.0433828346, 0.00949099101, 0.00318757049, -0.00197629374, -0.0382508449, -0.0148222027, -0.00242454582, 0.0786054879, -0.00510409707, 0.0298515968, 0.0279390551, 0.0227433145, -0.00451041199, 0.00969818328, -0.0184719712, 0.000434057438, 0.0194919929, 0.0170216262, -0.0139137451, 0.0130770076, -0.0117860418, -0.0355095342, 0.0297081564, 0.0164000504, 0.0259787, 0.00825580768, 0.0385377258, 0.0212610941, -0.0343938842, 0.0219623614, -0.00487299822, -0.00494471891, 0.00494471891, -0.0110050868, 0.00526746036, -0.0285925064, 0.0171810053, 0.00728359865, -0.00113557198, -0.02916627, -0.0128618469, 0.00431517372, -0.0180257112, 0.000332453637, -0.0399721339, 0.0259627607, 0.0120251095, 0.00966630783, 0.0142006269, -0.0424584374, 0.0132363867, 0.0297400318, -0.063337028, -0.0596394427, -0.0139456205, -0.0379002132, -0.00910051353, -0.0269349702, 0.00837534107, -0.0284650046, -0.0118816691, -0.0526905395, -0.0137384292, 0.0066500688, -0.0195238683, -0.0120012024, 0.0215320382, 0.00500050094, -0.0190138575, -0.020209197, 0.0308716204, 0.0083275279, -0.000655942247, 0.0105667962, 0.000499054, -0.015834257, 0.0126068415, 0.0102321012, 0.0344257616, 0.0108138332, 0.0193326157, 0.0438928455, -0.0127263749, 0.014360005, -0.0262655802, 0.00988146849, -0.000828768301, -0.00823190063, -0.000129370543, 0.0365295559, 0.0271421634, 0.0485785753, -0.0235242695, -0.0135790501, -0.0190457329, 0.0276840497, -0.0340113752, -0.00310788117, 0.0248311739, -0.00606435305, -0.00823190063, -0.0490248352, 0.00428728247, 0.00604044599, -0.0296444055, -0.0134515474, -0.00216754782, 0.0114832222, 0.0199541915, 0.0232533272, 0.0146150105, -0.0392071158, 0.0427771956, 0.0172766317, 0.00562207727, -0.00986553077, -0.00293854158, -0.0267755911, -0.00169937348, -0.0103596039, 0.00759040238, -0.00272935722, 0.0310469363, 0.000513497682, -0.0100886608, -0.0308078676, 0.0501723588, -0.00816018, -0.00713617355, 0.023046134, 0.0190776084, -0.0133240446, -0.0104313241, -0.0141289057, 0.0136188949, 0.0284809414, -0.0267118402, 0.00749875931, -0.0244327281, -0.0258193202, -0.0106703918, 0.0180097725, 0.0304253604, -0.0217551682, 0.00318757049, -0.00681741629, -0.00395657169, -0.00987349916, 0.00187170156, -0.0511286296, 0.0103914794, -0.0334694907, -0.0102400705, -0.0109652421, 0.0055224658, 0.0110688386, -0.0243530385, 0.0102560082, 0.0348082706, 0.00957864895, 0.0405458957, 0.0232055131, -0.000568284071, -0.0204482637, -0.029277835, -0.0233967677, -0.0157545675, 0.0150214257, -0.0287040714, 0.0130291944, -0.025325248, 0.0253571235, 0.0196035579, -0.0214842241, -0.0313178785, 0.0147584509, 0.00155792502, 0.00481721573, -0.011523067, 0.0213089082, 0.00522761559, -0.0271581, 0.00174419873, 0.0139296828, 0.0141926575, 0.0425540656, -0.0298994109, 0.00810838211, 0.0151808048, 0.011969327, -0.00450642779, 0.0272218511, -0.00946708396, 0.00354218762, -0.0237474, 0.0421078056, -0.0122880843, -0.0312860049, -0.0117701041, 0.0306644272, 0.00560613954, 0.0109652421, -0.00333499559, 0.0104153864, -0.00102699536, 0.0144396946, 0.0291025192, 0.0241777226, 0.00681343209, -0.00603247713, 0.0169897508, 0.0241458472, 0.0128538776, -0.0227273777, 0.012638717, -0.0240024049, -0.00239267014, 0.0363701805, -0.0187429152, -0.0606913418, -0.00409204373, 0.0326726, -0.0256280657, 0.019651372, -0.0248949248, 0.00414384156, -0.0109333666, -0.0207670219, -0.0174360108, -0.000525451091, 0.018758852, 0.0535830595, 0.0120490165, 0.0187747907, -0.0072596916, -0.0158741, -0.0199063774, -0.00347445183, -0.00211774209, -0.00359797012, -0.019316677, -0.0145353209, 0.00293854158, 0.0238589644, 0.00394461863, 0.0206713937, 0.00945114624, -0.00294850278, 0.0177547671, 0.00547465216, 0.00992131326, -0.0195876211, 0.0824943259, -0.00583723839, 0.03005879, -0.0154119032, 0.0187110379, 0.0265843384, -0.0379320867, -0.0263930839, -0.0148142334, 0.00272736489, 0.0212929714, 0.0181850903, -0.0268552806, 0.00978584122, -0.0215798523, -0.00142743392, 0.0262815189, -0.0037872321, -0.0153959654, 0.0284171905, -0.00370156625, 0.0184879079, 0.0118976068, 0.00871003605, 0.00744297681, 0.0334694907, 0.0168144349, 0.0192210507, -0.00565793738, -0.00381512335, 0.0233330149, -0.0266799647, -0.0350951515, -0.0144795384, 0.00490885833, -0.000441528304, 0.000839227519, -0.0259627607, 0.0164638013, 0.0173085071, -0.00309792, -0.00856659561, -0.00353621109, -0.0491204597, -0.018870417, -0.000614603458, 0.00948302168, 0.0178344566, -0.0193963666, 0.0320191458, 0.00239267014, 0.0144317253, -0.0349038951, -0.0130052874, -0.0219304841, 0.00253411848, -0.00661022449, -0.0117302593, -0.0417252965, -0.0236517731, 0.00415181043, 0.00696882606, 0.0262974557, 0.00150612707, 0.0396852531, -0.0207192078, 0.00932364352, 0.00702062389, -0.000631039322, -0.00979381055, 0.0586513, -0.0279231165, 0.0339795, -0.00445861416, -0.024050219, -0.0142803155, -0.0100886608, 0.0117541663, -0.000242803217, 0.00025400953, 0.00120928453, -0.0337563716, -0.00153700658, 0.00127602427, -0.0471441671, -0.024050219, -0.00544277672, -0.0216754787, 0.00649069, 0.0206873324, 0.00163462595, -0.00443072291, -0.00717601785, 0.0112043098, 0.0292618964, 0.00693296595, 0.00628349837, 0.014001403, -0.00944317784, -0.00908457581, -0.00330710434, 0.0242255349, 0.00383504573, 0.00181392685, -0.00824783836, 0.00241458463, -0.000183409822, 6.21949803e-05, -0.00738719478, 0.026106203, -0.0280187447, -0.00391672738, -0.023827089, -0.0108138332, 0.0136587396, 0.00170734245, 0.0236358345, 0.00987349916, 0.00584122306, -0.0266640261, 0.018981982, -0.00840721745, 0.00584919192, -0.0346170142, -0.00916426536, 0.00440283166, -0.00723578501, 0.0172925703, 0.037358325, 0.0429684483, 0.0168941226, -0.00248232041, -0.0286562592, -0.0066421, -0.0262655802, -0.0167188067, -0.0182010271, -0.0105269514, -0.0115071293, -0.024050219, -0.0161609817, 0.0145114148, -0.00639506336, 0.0158980079, -0.0112361861, 0.0328638516, 0.0339157507, 0.020480141, 0.0155553436, -0.00820002519, 0.0127901267, 0.00312979566, -0.0478135571, 0.0102560082, -0.0119055761, -0.0111804036, -0.0490248352, 0.00953880418, -0.0356689133, 0.000628549, 0.0352226533, 0.00148421247, 0.00103596039, -0.010383511, 0.00340671604, -0.0347126424, 0.00246439036, 0.0079808794, 0.0100169405, -0.0216436032, 0.0245921053, 0.0162566099, -0.00972209, 0.0407052748, 0.019093547, -0.0460603945, 0.00394461863, -0.0116983838, -0.00994522, 0.00701663969, -0.00476541789, -0.0423946865, 0.0257396307, -0.00219543907, 0.00630740495, 0.0012053001, 0.00305010658, -0.0102878837, -0.0354776606, -0.0412790366, 0.0314613208, -0.0169100612, 0.0117621347, 0.0145512596, 0.0302022304, 0.0295169018, -0.0102400705, -0.0227273777, 0.0290865805, -0.00576153351, -0.0367208123, -0.0108616464, 0.0209901519, -0.00464986823, 0.00482518459, 0.0372945741, 0.00636717211, 0.0274609197, 0.00928379875, -0.00672178902, 0.0247514844, -0.0175316371, 0.028337501, -0.00239067781, 0.0382189713, 0.0110688386, -0.00712422, 0.0100886608, -0.00107580505, 0.0197788756, 0.0197469983, 0.00242056139, 0.0291503314, -0.0148700159, -0.00835143495, -0.0133479517, -0.00759837124, -0.020591706, -0.0108218016, 0.0115629118, 0.00742305489, 0.00957068056, -0.024767423, -0.0041956394, -0.0207510833, -0.00104890985, 0.00441080052, 0.0120888613, -0.0105907032, -0.030170355, 0.000325480825, -0.0122323018, 0.00831159, -0.0158262867, -0.0135790501, 0.000577249099, -0.00418767054, -0.0168144349, -0.0238430277, -0.00077248778, -0.0333419889, 0.00348640513, 0.0419803038, -0.000540890847, -0.000742106233, -0.0159776974, 0.014670793, 0.00676960265, 0.0177069549, 0.000675366493, -0.0100806914, 0.0167666208, -0.0160016045, 0.0197469983, 0.00447455188, -0.0114274397, -0.0016067347, -0.0132602928, 0.0328957289, -0.00588505203, -0.0168144349, 0.0032214385, -0.0107739884, -0.0410877839, 0.0410559066, 0.0247196089, -0.0387608558, -0.00477737142, 0.028449066, 0.00226516719, 0.0104472619, -0.0107978946, 0.00253411848, -0.0129495049, 0.0326088443, -0.00288873585, 0.0178822707, 0.00232692645, 0.037581455, 0.00315569481, 0.0277159251, -0.0197469983, -0.0298675355, 0.00721984729, 0.0278753042, -0.0591613092, 0.00417173281, 0.0105827339, 0.0149736125, -0.0227592532, -0.0121685499, 0.00676163379, -0.0301384795, 0.0165275522, 0.0289112646, -0.00382906897, -0.0137942107, -0.00469369767, -0.0155792506, 0.00386094465, -0.00548660569, 0.00704054628, -0.023380829, -0.0289909542, -0.014001403, 0.0269030947, 0.0173403826, -0.0175157, -0.0363064259, -0.00729156751, -0.00443072291, 0.0200020038, 0.0112441545, 0.0104791382, -0.024496479, 0.0370076932, -0.0215479769, 0.0102400705, -0.0133559201, 0.0139057757, -0.0352545306, 0.002255206, 0.0155394059, 0.00499253208, -0.0209742133, 0.00496862549, -0.0184082203, 0.00984959304, 0.0312860049, 0.00102301093, -0.0195557456, 0.016280517, -0.0424584374, 0.0166391172, -0.0215479769, -0.0301544163, 0.0330551043, 0.00205797516, -0.0129574742, -0.00960255601, -0.0151648661, 0.00827971473, -0.0182169657, 0.0561012402, 0.0231258236, 0.000171954482, -0.0155792506, 0.00325331418, -0.0147425132, 0.0093077058, 0.0329594798, -0.0134834228, 0.0304891113, 0.0216276664, 0.0226955023, -0.0149098607, 0.0329594798, -0.0189341679, -0.0186791625, -0.00813228916, 0.0179778971, 0.0278115515, 0.0148381405, -0.0042315, 0.00735133421, -0.00547066797, -0.00478932448, 0.0235561449, 0.0124315247, 0.0129016917, 0.00940333307, 0.0150851775, 0.0319235176, -0.0020400451, -0.0188066661, 0.0176432021, -0.00621576235, -0.00572965806, 0.0183922816, 0.012415587, -0.000702261634, 0.00642693881, -0.0164159872, -0.0162247345, -0.0387608558, -0.00918020308, -0.0235402081, 0.0177547671, -0.0214045364, -0.0020958276, 0.00881363265, -0.0079290811, -0.00659827096, -0.00753860408, 0.0213248469, 0.00771392044, -0.00787728373, -0.0112202484, -0.0228867568, 0.0037872321, -0.0136348326, -0.0155951884, 0.0164159872, -0.00507620582, 0.00647475244, -0.00973005872, -0.0196035579, -0.0110927448, -0.0227114391, 0.00732344296, -0.0172288176, -0.0198107511, 0.023938654, 0.000209308826, -0.0165275522, -0.00786533, 0.0257874448, -0.00109273905, -0.0108775841, 0.0117382286, -0.00435103383, 0.00407610554, 0.011746197, 0.00594880339, -0.00376133318, -0.000143814221, -0.00472158892, 0.0283693764, -0.00839924812, 0.0200657565, 0.0529136695, -0.0138340555, -0.0257874448, -0.00286682113, -0.00101603812, -0.00112959533, -0.0364339314, -0.00495667197, 0.00448650541, -0.00928379875, -0.0146548552, 0.0124793388, 0.0139376521, -0.0180257112, 0.0775854662, -0.0162008274, -0.00724773854, -0.0375177041, -0.00188166264, -0.0358920433, -0.00997709576, 0.0165116154, 0.00853472, -0.0244167894, 0.0176591408, 0.00124514475, -0.00788923725, -0.0077179051, -0.00668194471, -0.00557426363, 0.00494870311, 0.0154198725, 0.0212292187, -0.0349357724, 0.000758542155, 0.0192688629, 0.00850284379, 0.0162566099, -0.00774181169, -0.0230939481, 0.00279510091, -0.00380914682, -0.0199541915, -0.00501643913, 0.0116266636, 0.00234684884, 0.028672196, 0.0178344566, 0.00460603926, 0.0123119913, -0.00265166024, -0.00464588404, -0.00621974701, -0.00981771667, 0.020591706, -0.0146947, -0.0199063774, -0.0183285307, 0.0130291944, 0.00196135184, -0.0144237559, -0.0306963045, 0.000180172443, 0.0206554569, 0.00395856425, -0.00921207853, 0.0168622471, -0.00733938115, -0.0129415365, 0.0284331292, 0.0028170154, -0.0110927448, 0.0415021665, -0.0238111522, -0.0228867568, 0.00139555824, 0.0132284174, -0.0370076932, 0.0407052748, 0.0121446438, -0.00648272131, 0.00671780482, -0.0210220274, 0.0200179424, 0.0242574122, 0.0112122791, -0.00351230428, 0.00235282537, -0.00634326506, 0.0046538529, 0.00382309244, 0.00970615167, 0.00288475119, -0.0196354333, -0.0217870437, -0.00100657495, -0.028449066, 0.0124076176, -0.00775774941, -0.00516386423, -0.00852675084, -0.0190457329, -0.00288076675, -0.0369758159, 0.00855065789, -0.030393485, -0.0186632257, -0.00730352104, 0.00178205117, -0.00818408746, 0.0119772963, 0.0190138575, -0.00476143323, -0.0221217386, 0.0278434288, 0.012304022, -0.00810838211, 0.0083912788, 0.0149018923, 0.00354617205, 0.0458053872, 0.0152923698, -0.0219942369, 0.00684530754, 0.0171969421, -0.00143839116, 0.00527144456, 0.0103755416, 0.00418368634, 0.00936348829, 0.00812033564, 0.00133877958, 0.0142962532, 0.00434704917, -0.0230780095, 0.0089012906, 0.00862237811, -0.000852177036, 0.00316964043, 0.00814424269, -0.0167825576, 0.00232294202, -0.00298635499, 0.0145114148, -0.0144795384, 0.025102118, 0.00307202106, -0.018981982, -0.0251977444, 0.00492479652, -0.0392389931, 0.0278434288, 0.00778165646, 0.0102241319, -0.0214364119, -0.00455424143, -0.0115310363, 0.000143814221, -0.00147923187, -0.00500847027, -0.00312780356, 0.0162725467, 0.0180257112, -0.0115629118, -0.00692101242, -0.00071521115, 0.0106703918, -0.00411993498, 0.0143440673, -0.00413188804, -0.0153322136, -0.00936348829, 0.0132523244, 0.00800080225, 0.00282697659, 0.0266640261, 0.00816018, 0.015945822, -0.0146787623, 0.0207670219, 0.0158661325, -0.0321307108, -0.0181691516, 0.00492479652, 0.0219782982, -0.0122083947, -0.00993725099, -0.0179619603, 0.0250861794, -0.0207670219, 0.00953880418, -0.0197151229, -0.00124016416, 0.0133160753, -0.0271421634, 0.00561012421, -0.0167984962, 0.0134754544, 0.00468971301, -0.00835940335, -0.00965036917, -0.00344058382, 0.00512800412, 0.0128698153, -0.0193804279, -0.00216555572, 0.0256280657, 0.00171033083, 0.0310469363, 0.007458915, -0.00468572881, -0.0140731232, -0.0080286935, -8.31134093e-05, -0.0107819568, -0.029500965, 0.0102480389, 0.0215639137, 0.0090527, -0.0105747646, -0.0157864429, 0.00311585, 0.00714414241, -0.0236358345, 0.000949796406, 0.0212451573, 0.00233290321, -0.00922801625, -0.000334694894, -0.0144157875, 0.0232214499, -0.0201454461, 0.0218029823, -0.0102400705, -0.00561410841, -0.00147723965, -0.0218986087, -0.00505229924, 0.00351828081, -0.0142085953, -0.00210578879, 0.0112361861, 0.000990637112, -0.00558621716, -0.0264727734, 0.0248949248, 0.0337244943, -0.0151170529, -0.0041916552, 0.0157545675, 0.00704851514, -0.026329333, -0.0266480893, 0.019651372, 0.014670793, 0.0120490165, -0.0141687505, 0.0183285307, -0.0178344566, -0.000169962252, 0.0138021801, -0.0192369875, -0.0191732366, 0.0283534396, -0.0145273525, 0.00627552951, 0.0146787623, -0.00442673871, 0.0197151229, -0.00214563333, -0.0111963414, 0.012304022, 0.00468572881, -0.00565793738, 0.00505628344, 0.00652256608, -0.0107102366, 0.00308198226, -0.0247196089, -0.0160972308, -0.0282578114, -0.0164319258, -0.0191732366, -0.0103596039, -0.0145432903, 0.00907660648, -0.00347644393, -0.0119374515, 0.0222651791, -0.00382707687, 0.015252525, -9.8179662e-05, 0.00515191071, -0.00937145762, -0.00786134601, 0.0313656926, 0.00575754931, 0.0103436662, -0.0164797399, 0.0355095342, -0.000854169251, 0.00651061255, 0.0288634505, -0.00271142717, 0.0162725467, 0.00917223375, 0.0126068415, 0.0229823831, 0.0110289939, 0.0270943493, 0.0201773215, -1.21946359e-05, -0.00707242219, 0.00203606067, 0.0187269766, -0.0136428019, 0.000253511476, 0.0182807166, -0.0163841117, -0.00557027943, 0.00958661828, -0.00448252074, 0.0122562088, -0.0106225787, -0.00723578501, -0.0308875572, 0.0122323018, -0.0215639137, -0.0141926575, -0.0353501551, 0.0279390551, -0.0106225787, -0.00118637388, -0.0146548552, -0.00945114624, -0.00871800538, -0.0153401829, 0.0143759428, -0.00925989263, -0.0123119913, -0.0220101736, -0.00895707309, 0.000384749728, 0.0170853771, 0.00381113891, -0.0235720836, -0.0351589024, 0.0252774339, -0.000410150678, 0.0205120165, -0.0177069549, -0.00680546276, -0.0342982598, -0.0138739, -0.0218029823, 0.0375177041, -0.0230620727, 0.0133638894, -0.00116645161, -0.0218826719, -0.00522761559, 0.000447006954, -0.0160972308, -0.0169897508, -0.00555832591, -0.00849487539, -0.00716804899, 0.00780556304, 0.0231258236, 0.0108377393, 0.0193804279, 0.0106385164, 0.00934755057, 0.00810041372, 0.0129574742, 0.0314135067, 0.00867816061, 0.0035720712, 0.00284889108, -0.0190138575, -0.025325248, -0.00306205987, 0.0230142586, 0.0423309356, -0.0161450449, -0.0145273525, 0.0198426265, 0.0180575866, 0.0166550558, 0.0217392314, 0.00354617205, 0.0109891491, 0.00328518986, -0.000737125694, -0.0192210507, -0.0201135688, 0.0037872321, -0.0174200721, 0.012415587, -0.0119852647, -8.61640146e-05, 0.0135870194, -0.0226317495, -0.00589700555, 0.0330232307, 0.00124116021, 0.0115071293, 0.0250224285, -0.032561034, 0.0108138332, -0.0283215642, -0.00670585129, -0.0169897508, -0.0212292187, 0.0377089605, 0.0165116154, -0.00744696148, -0.00274728728, 0.025102118, 0.00329315872, -0.00481323153, -0.024273349, 0.0141607821, -0.0130849769, 0.00203307229, -0.0216276664, -0.0133240446, -0.0221695527, 0.0200657565, 0.0103117907, 0.00831955858, 0.0197310615, 0.013108884, 0.0142165646, -0.00760235544, 0.0127980951, 0.0106464857, 0.0120569849, 0.00835940335, -0.0280984342, 0.0341070034, -0.0102878837, -0.0139456205, 0.00653053494, -0.0124634, 0.00486901402, -0.0114752539, 0.0125988722, -0.0353501551, 0.000293107063, -0.0209423378, -0.00200617709, 0.00434306497, -0.00642693881, -0.00848690607, 0.0220898632, -0.000592688855, 0.00120729231, 0.0126705924, -0.00370555068, 0.00628349837, 0.010184288, -0.00549855921, 0.00911645126, 0.0111325895, 0.00387289817, -0.0226636268, 0.013666708, 0.0221695527, 0.000464438985, 0.0120330788, -0.0355095342, -0.00604443066, -0.0197469983, 0.00356410234, 0.00577348704, 0.00629943609, -0.0116266636, 0.00109771953, 0.0236198977, -0.012216364, -0.00150413485, 0.00312381913, 0.012439494, 0.00672975834, -0.031333819, -0.0125988722, -0.00130989228, 0.00293057249, -0.00154896, -0.00329315872, 0.0121127674, -0.000754059642, -0.0112839993, -0.00894910377, 0.00177209, 0.0327363499, 0.0135073299, 0.025771508, 0.0474629253, 0.00650662836, 0.00172128808, 0.0148142334, 0.0218029823, 0.00614005746, -0.0107102366, 0.0120251095, 0.0112282168, -0.0144875078, -0.0237474, -0.00544676092, 0.00446658302, -0.00910051353, -0.00849487539, 0.00130989228, 0.00109473127, -0.00958661828, 0.0020519984, 0.000267457071, 0.0245761685, -0.00666600652, 0.0175475758, 0.00937942602, 0.0170694403, 0.0230301972, -0.0312860049, -0.0142325023, 0.0155314375, 0.00091692456, -0.0174519476, -0.0190776084, -0.0114672845, 0.0146150105, 0.0121366745, 0.0287997, -0.00178703165, 0.00818408746, -0.039302744, -0.00137563585, 0.0038330534, 0.0207829587, -0.0132045103, -0.000510509359, -0.00383504573, 0.00604841486, 0.00384500693, -0.00539894728, -0.0139217144, -0.0168941226, -0.00340273138, -0.000290865806, -0.00492081186, 0.00691702776, 0.0239705294, -0.00533918058, 0.00894113537, -0.0195716824, 0.00526746036, -0.0079290811, -0.0178025812, 0.000341169653, -0.00831159, 0.0104392935, -0.0167666208, -0.0251818076, -0.0168144349, -0.018264778, 0.00112859916, 0.0104153864, 0.0125909038, -0.0164319258, -0.0186154116, -0.0114991609, 0.0117860418, -0.00576153351, -0.0278115515, 0.0311585013, 0.00788525213, -0.000620082079, -0.0064986595, 0.00153003377, 0.00778165646, 0.00768602919, -0.00216954015, -0.00980177894, 0.0242414735, 0.00510409707, 0.0287997, 0.024496479, 0.0121207368, -0.00332702673, 0.0135232676, -0.00360394688, -0.0245283544, -0.0168303717, -0.0158661325, 0.00835143495, 0.000911943964, 0.0152365873, 0.0177069549, 0.0069967173, 0.0264249593, -0.0262974557, 0.0196035579, 0.0175635125, 0.000710728578, -0.0247355476, -0.0114513468, -0.010072723, 0.00218946254, -0.0175953899, -0.00684132334, 0.000320998312, -0.00951489806, -0.00418767054, -0.0162725467, -0.00231098849, 0.00992131326, -0.0110130562, -0.0260583889, 0.00543480786, -0.00335890241, -0.0464429, -0.00659827096, 0.00138758926, -0.0231736377, -0.0016286493, -0.007056484, 0.0412790366, 0.0148779852, -0.00732742762, -0.000777966401, 0.00473354198, 0.0296922196, 0.0129495049, 0.0153083075, -0.0111086834, 0.0046538529, 0.00134475634, 0.00426337542, -0.00800478645, -0.0110289939, -0.0149257984, 0.0110050868, 0.0067935097, -0.00366371381, 0.00295049488, -0.00119832729, 0.00264369114, -0.00125909038, -0.0158661325, -0.00143938733, 0.00148919306, 0.00827174541, 0.000852675119, 0.0350951515, -0.00863831583, -0.00720789377, 0.0114035336, -0.0178025812, -0.00980974827, 0.0182010271, 0.00568981329, -0.0273812301, 0.0140093723, 0.0174519476, 0.00331706554, -0.00450642779, 0.00719195604, -0.0238430277, -0.0139137451, 0.00150413485, -0.00703656161, 0.011523067, 0.0137384292, -0.000675864576, -0.0123598045, -0.00678155618, -0.0012969427, -0.00843112357, -0.000612611184, 0.00979381055, -0.014559228, 0.0160972308, -0.0114513468, -0.00906066876, 0.00544277672, -0.00248431275, 0.00464986823, 0.0141767198, 0.000306305592, 0.0132602928, -0.00962646306, 0.00317362486, -0.011746197, 0.0133798271, 0.00661022449, -0.00824783836, 0.0151090836, 0.000229106634, 0.0177069549, 0.0111485273, 0.0120012024, 0.0199063774, -0.00067486841, 0.00613607327, -0.011610725, -0.00239466224, 0.0230301972, -0.0312381908, -0.0106305471, 0.0228867568, 0.0229026936, -0.00231298083, 0.015029395, 0.0118816691, -0.0162087958, -0.000317262864, 0.0221854895, 0.0084390929, -0.0100010019, 0.0287518855, 0.00194441795, 0.00719594024, -0.00336687127, -0.0133559201, 0.00728758285, 0.00473354198, 0.0113079064, -0.0158820692, 0.00252814172, 0.00892519765, -0.0111246211, -0.0100328783, 0.00268552802, 0.00238270895, 0.0112680616, 0.00658631744, -0.00869409833, 0.00612411974, 0.00815221108, -0.026106203, 0.0116266636, -0.000853173144, -0.0116744768, 0.0226795636, -0.00418767054, -0.00417970167, -1.1930043e-05, -0.00174519478, -0.00064149854, 0.00735133421, 0.015698785, 0.00695687253, -0.000549855933, -0.00345452945, 0.00158980081, 0.000821795489, -0.00068433152, -0.00928379875, 0.0103197591, -0.0062436536, -0.00824783836, 0.0247514844, -0.0207829587, -0.00831955858, 0.0193007383, 0.0132045103, 0.0075186817, -0.00364578376, 0.0111405589, 0.00972209, 0.0209742133, -0.00579739362, 0.0125351213, -0.0222173668, -0.00164857158, -0.00352226547, 0.000564299582, -0.0246717948, -0.0102161635, -0.0145193832, -0.00640701642, -0.00958661828, -0.00775376521, -0.00328120543, 0.0341070034, 0.0116983838, -0.0121127674, 0.0110688386, 0.0122323018, -0.0202888865, 0.001256102, -0.00619185576, 0.0107899262, -0.00344456825, 0.0103436662, 0.00844706129, 0.0241777226, 0.0130451322, 0.0212770328, 0.027333416, 0.00847096834, 0.001565894, -0.0137543669, 0.0296762809, 0.0221058019, -0.00915629603, 0.0279231165, 0.0108457087, 0.00643092347, 0.00733539648, -0.017930083, -0.00567387557, 0.00626756065, 0.00486104516, -0.00807252247, -0.0244327281, -0.00516784843, -0.0122083947, 0.00566192204, 0.0067974939, -0.00670585129, -0.00554637238, 0.0127821574, -0.000810340163, -0.0231736377, -0.00258392422, 0.00379719329, -0.0170535017, -0.0105747646, -0.00992928166, 0.00696882606, -0.0133638894, 0.00994522, 0.00513597298, -0.00450642779, -0.000890527503, 0.017930083, 0.0100249089, 0.00578544056, 0.00246040593, -0.00448650541, 0.000690308225, -0.00143241452, -0.00551051227, -0.0090527, 0.00173822197, 0.0124315247, -0.000117105861, 0.0295169018, 0.0212929714, -0.000464688, 0.00489690527, 0.0132045103, 0.0321944617, 0.0138181178, -0.0138739, -0.011969327, -0.019093547, -0.00405817572, -0.0239705294, 0.00944317784, 0.00759040238, 0.00168243959, 0.00653451961, -0.00864628516, 0.00503237685, 0.00957864895, 0.00594880339, -0.00178105501, -0.0116426013, -0.0266959034, 0.00344456825, 0.00380914682, -0.00920411, 0.0120569849, 0.0112919686, 0.010048816, 0.0128459092, -0.0161291063, -0.0105667962, 0.0020978197, -0.00447853655, -0.00325729861, 0.00763423136, 0.0243211631, 0.000449746265, 0.0252455585, -0.0225201845, -0.0173722599, -0.0180894621, -0.0176113266, -0.0126307476, 0.0133559201, -0.00596474111, -0.0187429152, -0.00178503944, 0.00238669338, -0.0114911916, 0.0191732366, 0.00202510343, 0.00132981455, -0.0147903273, 0.0263133943, 0.0251658689, 0.000953780836, -0.012774189, -0.00676163379, -0.00785736088, 0.0123518351, 0.0184719712, -0.019539807, 0.00617990224, -0.00133379898, -0.0110529009, 0.00695288787, 0.0114752539, -0.00695288787, 0.00132184557, 0.00594083453, -0.00201912667, -0.0166869313, 0.0248311739, -0.00671382, 0.00282299216, 0.0142643778, -0.0226795636, -0.0185038466, -0.00156987843, 0.0052634757, -0.00574958045, 0.0205279533, -0.00636717211, 0.00205399073, 0.000956271135, 0.00534714945, -0.00320151611, 0.0198266879, 0.0285765696, 0.00181890745, 0.00831159, 0.028672196, 0.00123717578, -0.0091961408, 0.000165355217, 0.00372746517, 0.0068532764, 0.00579739362, 0.0114991609, -0.00141747273, 0.00698077912, 0.00694491901, -0.0180735253, -0.0150851775, 0.00627552951, 0.0211335924, 0.0101285055, 0.000536906417, 0.0111564966, 0.00709632877, 0.000893515826, -0.00678554084, 0.00519972434, -6.87942447e-05, -0.0166869313, -0.00191553065, 0.000349387614, 0.00988146849, -0.013220449, 0.00862237811, 0.012080892, 2.23503484e-05, 0.0100089712, 0.00133678736, -0.00143839116, 0.0192848016, 0.0109333666, 0.0218667332, -0.0241458472, 0.00512800412, 0.0136109255, -0.0201454461, -0.00445861416, -0.00228309724, 0.0146947, 0.00811635144, -0.0286403205, 0.00376133318, 0.00661022449, 0.000546867552, -0.0102161635, 0.0173722599, -0.00378922443, 0.00411993498, 0.00301424623, -0.0264887102, -0.00698874844, 0.0122562088, 0.00599661702, 0.00933161285, -0.0122323018, 0.00254208734, -0.00250025047, -0.000569778203, -0.00729156751, 0.00980177894, -0.0142962532, -0.0262018293, -0.0169578753, 0.0200338811, -0.0062436536, -0.0102081941, 0.0202251337, 0.0224883091, 0.00489292061, -0.012415587, 0.0257396307, 0.0143679734, -0.00514394185, -0.0148620475, -0.000904971152, 0.00361390808, -0.0308078676, -0.00737524126, 0.00702062389, 0.011610725, -0.00520370901, -0.00497659435, -0.0176272653, 0.00121625734, -0.00567387557, 0.00354617205, -0.00527941342, -0.00651061255, -0.00721586263, -0.00533918058, 0.0320988335, -0.00175515597, -0.00549059035, 0.00763024669, -0.0123119913, 0.00763821555, -0.0179460216, -0.0349995233, -0.00518777082, -0.00749875931, 0.0222811177, -0.00533519592, -0.0156111261, 0.0156748779, 0.0106385164, -0.00753462, 0.0203845128, 0.0077218893, 0.011833855, 0.019316677, -0.00448650541, 0.0063352962, 0.00541886967, -0.0126307476, -0.00626756065, 0.00505628344, 0.00470166653, 0.00537902536, -0.000132234374, -0.00591692748, -0.0224245582, -0.0057256734, 0.0145990727, -0.0109174289, -0.00470166653, 0.0300747268, -0.0180575866, -0.00906863809, -0.0107580507, -0.011188372, -0.00186273654, 0.00504034571, -0.00662217755, -0.008463, -0.0367208123, -0.00906863809, 0.0124076176, 0.0177866425, 0.0091961408, -0.00606833724, 0.00835940335, -0.0010937351, 0.00848690607, -0.00132682617, -0.00219344697, 0.0110449316, -0.00490487413, 0.0105907032, 0.00273533398, 0.0018418181, -0.0169897508, -0.00565793738, -0.00735133421, 0.0106305471, 0.00583325373, 0.0264727734, -0.0371033214, 0.00560215488, 0.0089012906, -0.00346847507, -0.0153481523, -0.0140651548, -0.0079290811, -0.000512003491, 0.00410399679, 0.0263930839, -0.00948302168, -0.00350433518, 0.00319354725, -0.0145911034, 0.00357007887, 0.020368576, -0.00408805907, -0.00579739362, -0.0120410472, 0.00295248721, 0.0272218511, 0.0257396307, 0.0215639137, -0.00322741503, 0.0060364618, -0.00770595158, -0.00201115781, 0.00728758285, 0.0087897256, 8.74714169e-05, 0.0046538529, -0.000964240055, -0.0226955023, -0.0257077552, 0.0273652934, 0.0243211631, 0.000822293572, -0.0153322136, -0.0011036963, 0.0014762436, 0.0211973432, 0.00278115529, 0.00482518459, 0.00443470757, 0.0437015928, -0.0150453327, -0.0117382286, -0.0164478645, -0.000170460306, 0.0143121909, -0.0143998498, 0.0271102861, 0.01558722, 0.00263173785, -0.0170216262, 0.0112282168, -0.00238868571, -0.0152764311, 0.014001403, -0.00828768313, -0.00112162635, 0.00808447599, 0.0153800277, -0.0066500688, -0.00898894854, -0.00415977929, -0.00754657295, 0.00158083579, -0.00386293698, -0.00322542293, 0.00498057902, -0.00702460855, -0.0162566099, 0.0154995611, 0.000150164458, -0.00721984729, 0.0110449316, 0.0076621226, 0.00156987843, -0.00266560586, -2.21635764e-05, -0.0173403826, -0.00371152745, -0.00541886967, 0.041247163, -0.00227512838, -0.00136368244, -0.00123219518, -0.0091961408, -0.0249427389, -0.00871003605, 0.00344257616, 0.0072596916, -0.0120569849, 0.0061320886, 0.00545473, -0.00910848286, -0.00267955149, -0.00197330536, -0.00702062389, -0.00693695, -0.0077776718, -0.0229026936, -0.0280346815, 0.0137304598, 0.00690109, -0.00139555824, -0.0208467115, -0.00144237559, -0.0300269146, -0.0169578753, 0.00175117154, -0.0191254225, -0.00535910297, 0.0158741, 0.00983365532, 0.0435422137, -0.00947505329, -0.0124713695, 0.0135232676, -0.0146150105, -0.00635920325, -0.00813228916, 0.00785337668, 0.0268234052, -0.00159278908, 0.00210778089, -0.00676960265, -0.0172288176, 0.00923598558, -0.000113432681, 0.00531527353, 0.0257077552, 0.00446259882, 0.000567287905, 0.00939536374, 0.0135870194, -0.00399641646, 0.0044546295, 0.0136428019, 0.00356011768, -0.000415131246, 0.000383753591, -0.00305010658, -0.0152206486, -0.00132583012, 0.0258671343, 0.0111644659, 0.00973005872, 0.000409154542, -0.0165594295, 0.000161370757, 0.0222811177, 0.0104392935, -0.000186149133, 0.00424345303, 0.0112282168, -0.00363582256, -0.0080526, 0.00303217652, 0.0125351213, 0.00962646306, -0.00122422632, 0.00427134428, 0.0160812922, -0.000963243947, -0.0023548177, 0.00435501803, 0.00610419735, -0.0164000504, 0.0041956394, -0.00154995616, 0.0252774339, 0.0199382529, -0.0113636889, 0.0077179051, -0.00235083327, -0.00718398672, 0.0182807166, 0.00579340942, 0.0110529009, -0.00362187694, -0.0173563212, -0.0057256734, 0.00326327537, 0.0179460216, 0.0140492171, 0.00286682113, 0.000212048151, 0.0158262867, 0.00214762567, -0.0019384413, 0.012750282, 0.00148520863, -0.0183444675, 0.0235880222, -0.00548660569, 0.00338679366, -0.00257794769, 0.0220101736, 0.0287200101, 0.00991334394, 0.0216436032, 0.0177388303, 0.00454627257, 0.0293894, 0.00378125557, 0.00648670597, -0.0213885978, 0.00289072795, 0.0229186323, -0.0236995872, -0.00425540656, -0.0192529261, 0.0148779852, 0.0128538776, -0.00507222163, 0.00365176052, 0.00635521859, -0.0128777847, -0.00232294202, 0.0129255978, 0.0122880843, 0.0308078676, 0.0279549938, -0.0208626483, -0.0152206486, 0.0122323018, 0.00179798901, 0.0328001, -0.00364777585, 0.0131327901, 0.0125191826, 0.00543082319, 0.00263572228, -0.000769001374, -0.0102560082, -0.010383511, -0.00672975834, -0.0219942369, 0.00700468617, -0.0281781238, 0.0141767198, 0.000881562475, -0.0158581622, -0.00238270895, -0.00934755057, 0.00988146849, -0.0260105748, -0.00535113411, -0.00304014538, 0.000927881862, 0.0114752539, 0.0155314375, 0.00634326506, -0.0106703918, -0.0162645783, -0.0123757422, -0.0123677738, 0.00878175627, 0.0216436032, -0.00443072291, -0.0100089712, 0.00246439036, 0.00515987957, -0.0127662197, 0.0174678862, 0.0102639766, 0.00614802632, 0.00800080225, -0.0168622471, 0.000615101482, 0.029006891, -1.30973658e-05, 0.0122402702, 0.00657834858, -0.0123837115, 0.007972911, -0.0113158748, -0.0027034583, -0.000203207615, 0.00570575101, 0.00595278805, -0.00731945876, 0.00913238898, -0.0132921692, 0.000920410967, 0.00228508958, -0.0103356969, 0.000936846889, 0.00915629603, -0.00563004613, -0.0112680616, -0.0110050868, 0.00453431904, 0.0061838869, 0.0152445557, -0.00205996749, 0.00397649407, -0.00844706129, -0.0213248469, 0.00900488626, -0.0664927214, -0.0180575866, 0.00389481266, 0.0215957891, -0.000469668594, 0.0116266636, 0.024273349, 0.00475744903, 0.0173722599, 0.0195079315, 0.019986067, -0.0142006269, -0.00437494041, 0.00147524744, -0.0132363867, -0.00506823696, 0.00455822563, 0.0195876211, -0.00690905889, -0.00452236552, -0.000449497253, 0.00600857055, -0.0042474377, -0.0026138078, 0.00206395192, 0.00852675084, -0.00721187796, -0.00327323633, 0.00374738756, -0.00331108877, -0.00400438532, 0.00296643283, 0.00162466487, -0.00646678358, 0.012104799, -0.00257197092, 0.00465783756, -0.0287359469, -0.0061878711, -0.0242414735, 0.000518478279, 0.00289670471, -0.00308795879, -0.0130291944, 0.00170036964, 0.00365773705, 0.0160175413, -0.00450244313, 0.00339874695, 0.0213248469, -0.0145671973, 0.00167247839, -0.0147106377, -0.00388086704, 0.0306963045, -0.00470565073, -0.00436298689, -0.00384899136, 0.0176432021, 0.0118816691, -0.0186154116, -0.008463, 0.00270146597, -0.0100169405, 0.00967427623, 0.00391672738, 0.0127184065, -0.00293256482, -0.0131327901, 0.00936348829, 5.02415896e-05, 0.00134077179, -0.00758641772, 0.00154796394, -0.00274728728, 0.00327124423, -0.0126466863, 0.0111644659, -0.00806056894, 0.0266799647, 0.00455025677, 0.00984162372, 0.0283853151, 0.00105588266, 0.00953880418, 0.00647475244, -0.0409284048, 0.00276521733, 0.00268951268, -0.0146070421, 0.0122243324, -0.00354218762, -0.0084390929, -0.00912442058, 0.012551059, -0.0177866425, 0.00917223375, -0.0139057757, 0.00292459596, 0.00940333307, -0.00670585129, -0.00732344296, 0.0101444433, -0.0127901267, 0.0173563212, -0.0304094218, 0.0237633381, -0.0240980331, 0.0164159872, 0.0179619603, 0.0295806546, 0.000108140819, 0.0133001376, 0.000897002232, 0.0202888865, -0.0076103243, -0.000469917606, 0.00443470757, 0.0144317253, 0.00533918058, 0.00225719833, -0.0248630494, -0.0015270455, -0.0148222027, 0.0124793388, 0.000727164501, -0.0198107511, -0.00889332127, -0.0089012906, -0.0108377393, -0.00934755057, -0.00213168771, 0.00739914784, -0.00313776475, -0.00586911431, -0.00405020686, -0.0116585391, 0.0179778971, -0.0230301972, -0.00134176796, 0.00473752664, -0.00874191243, 0.00291662687, 0.00716804899, -0.0144954771, -0.0236198977, 0.00800877064, -0.00198227027, -0.0090527, -0.00957068056, 0.0129096601, -0.0126546547, 0.0205598287, -0.00474549551, 0.0045980704, -0.0133160753, -7.42728807e-05, -0.00825580768, -0.00160075806, 0.010160381, 0.0174041353, -0.0169578753, -0.00953880418, 0.0141846882, -0.00811236724, 0.00783345476, -0.000640502432, 0.00666600652, -0.00820799358, 0.00272138836, 0.00926786102, 0.0119533893, -0.0140253101, -0.00268951268, 0.0204004515, -0.0119135445, 0.0009328624, -0.0138181178, 0.0173722599, 0.0136109255, 0.028337501, 0.0136428019, -0.00815221108, -0.0213089082, -0.0273652934, -0.0268074684, 0.0136188949, 0.0227433145, -0.00231497316, 0.00162366871, 0.0143918805, 0.00506823696, 0.015722692, -0.00964240078, -0.000665405358, -0.00455424143, -0.00486502936, 0.0182807166, 0.014447663, -0.00439884746, 0.0183285307, -0.00744297681, 0.0104153864, -0.00651858142, -0.0122960526, -0.00676163379, -0.00831159, 0.00738719478, -0.0175635125, 0.0135870194, 0.025883073, -0.00986553077, 0.0141448444, 0.00100806914, 0.0201135688, 0.0120251095, -0.0150373634, 0.0226636268, -0.00211575, 0.0131566972, 0.0100328783, -0.00400637742, 0.00955474284, 0.0147186071, 0.0101285055, -0.0195238683, 0.0064468612, 0.0137145221, -0.00780954771, -0.00945114624, 9.22029649e-05, 0.00885347743, 0.0334057398, -0.00375934085, -0.00116147101, 0.0138499932, 0.00195637136, 0.018647287, 0.012638717, -0.00631935848, 0.0290387664, 0.00996912643, 0.0159298833, -0.00701663969, -0.00138260867, 0.029724095, 0.00506823696, -0.0134595167, -0.0145353209, -0.0168941226, 0.00692101242, -0.00793306623, -0.00567785976, 0.00993725099, 0.0257077552, 0.00631935848, 0.00215161, -0.00174718711, -0.0109971184, 0.0129016917, -0.00966630783, 0.00133877958, 0.00150911545, -0.0234286431, -0.0065385038, -0.00594481872, -0.00552645046, -0.0126546547, 0.019986067, -0.0143998498, 0.00257993978, -0.0166072417, -0.00903676264, -0.0205598287, 0.00443072291, -0.000936846889, -0.002400639, 0.0273652934, -0.0242095981, 0.00246439036, 0.00359199336, -0.0201454461, 0.0100010019, -0.00374539522, 0.0104153864, -0.0174519476, -0.0129813803, -0.0295806546, -0.0225361232, -0.0113796266, 0.00180795009, -0.00909254514, -0.0122083947, -0.0182329025, -0.0199382529, -0.0106624234, 0.00898894854, 0.00239067781, -0.0219145473, 0.0190616716, 0.0268074684, -0.0138021801, -0.00310588907, 0.00050926418, 5.61248962e-05, -0.0169419367, -0.0102480389, -0.0114035336, -0.00764618488, -0.0159697272, 0.000206943048, 0.00172925694, -0.0310947504, -0.00475744903, -0.0129176294, -0.00435501803, 0.000714215, -0.0217711069, 0.00706843752, 0.00931567512, -0.0218348578, 0.00820002519, 0.00586911431, -0.0146947, 0.0125909038, -0.00173622975, 0.0277478, 0.0106385164, -0.0114513468, -0.0110608693, -0.0159856658, -0.0173403826, 0.00077248778, -0.0186632257, -0.00778165646, -0.00318159373, -0.0111485273, -0.0103197591, -0.0195079315, -0.0444984846, -0.0172128808, 0.027333416, 0.00597271, 0.0133798271, 0.00418767054, -0.0181691516, -0.0143679734, -0.0012461408, -0.00365375262, -0.0217551682, -0.00514792651, 0.00207988964, 0.00236477889, 0.0133081069, 0.00129196211, 0.0070525, 0.0131806042, -0.0298834722, 0.0443391055, -0.00596075691, -0.0113397818, -0.00649069, -0.00314772595, -0.00901285559, -0.0328319743, 0.00535511831, 0.0151489284, 0.00538699422, 0.00307401316, 0.0140890619, -0.00277119409, -0.0156589393, 0.00640701642, 0.0736966282, 0.0104871066, 0.00559020182, -0.0402271375, -0.0202410724, -0.0341388807, -0.0122960526, 0.0456460081, -0.0026038466, 0.00763423136, -0.00142046111, -0.000441777345, -0.00427134428, 0.0172447562, -0.0112202484, -0.0190457329, -0.00891722832, -0.00671382, -0.0122402702, -0.0149417361, 0.00780157885, -0.028449066, 0.0186791625, -0.0138579626, -0.00706445286, -0.00166450941, -0.00215161, -0.00426337542, -0.0115708811, 0.00347843627, 0.00855065789, 0.0143201603, 0.00106584386, -0.0156589393, -0.0231258236, -0.00590098975, 0.0175157, 0.000956769218, 0.0152684627, -0.0129495049, 0.0166550558, 0.0199382529, 0.00346847507, 0.0108218016, 0.00847893767, 0.024878988, -0.00394461863, -0.0127024679, 0.00354816439, -0.0216914173, -0.00692898128, -0.0159697272, -0.00413188804, -0.0131646665, -0.00396254845, 0.00442673871, 0.0250543039, 0.0136268642, 0.00554238819, 0.00157485902, 0.00141049991, 0.00254806411, 0.00723976921, 0.000754059642, 0.0041916552, -0.0330869816, 0.00680546276, 0.00822393224, -0.0033808169, -0.00279510091, -0.00820002519, -0.0109811807, 0.0129255978, -0.0183444675, -0.00313577242, 0.00701265503, -0.0235402081, 0.00449049, 0.020926401, -0.010160381, -0.018535722, 0.0252933726, -0.00910848286, -0.0117940111, -0.0236677099, -0.0154915927, -0.00823190063, 0.00385297579, 0.00167845504, 0.0218507964, -0.00673374254, 0.0127184065, -0.038856484, 0.0125669967, 0.00482120039, 0.0119454199, -0.00711625116, 0.00839924812, 0.0189341679, 0.0170216262, 0.0117860418, 0.00252216519, -0.0180735253, -0.00385895255, -0.00219145464, 0.0334376134, 0.0112600923, 0.000526447198, 0.018647287, 0.0131965419, -0.0084390929, 0.00692499662, 0.00527941342, 0.0345213898, 0.0160733238, 0.00188564719, -0.00858253334, -0.00109273905, 0.00462994631, -0.0093077058, 0.0155553436, 0.00582926953, 0.00684530754, 0.00945114624, 0.0147345448, -0.0121685499, 0.0292300209, -0.0044506453, -0.00404423, -0.00857456494, 0.000717203366, -0.0109253982, -0.00548262103, 0.00837534107, 0.0182966553, 0.00740313251, 0.0162964538, 0.00133081072, 0.0108058639, 0.00803666189, 0.0252455585, 0.015475655, 0.00646678358, 0.00901285559, -0.00426736, 0.00207988964, 0.00875785, -0.0164956767, 0.0153959654, 0.0227114391, 0.00425142189, 0.0204642024, 0.00787728373, -0.0224883091, 0.0035840245, 0.00933161285, -0.0107261743, -0.018758852, 0.0181372762, 0.0132523244, 0.00859847106, -0.00516784843, 0.00427532895, -0.000342912856, 0.012551059, 0.0151808048, 0.0176591408, -0.024608044, 0.007458915, 0.00802072417, -0.00352625, 0.0249746144, -0.0147265755, 0.000296095415, -0.00015701275, 0.010048816, 0.00044376959, -0.0288793892, -0.00886941515, 0.00961052533, 0.00502042333, 0.000976691488, 0.00874191243, 0.0521805286, -0.000818807166, -0.0207988974, 0.00922801625, -0.0129495049, 0.016926, 0.00891722832, -0.00635920325, 0.012750282, 0.000813826569, -0.00704851514, 0.00098217011, -0.010271946, 0.015475655, 0.00111166516, -0.00977787282, 0.00780157885, 0.0215001628, 0.00989740621, -0.000476890418, -0.030170355, -0.00654647266, 0.0167506821, 0.0148301721, -0.000806853757, -0.00141548051, 0.00620779349, -0.00264966791]
14 Feb, 2023
Angular PrimeNG Splitter Component 14 Feb, 2023 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Splitter component in Angular PrimeNG. We will also learn about the properties, events & styling along with their syntaxes that will be used in the code. Splitter Component: It allows a user to split two-element using a splitter & utilized it separately and resize panels. Properties: panelSizes: It is used to specify the size of the. It is of number data type & the default value is null. minSizes: It is used to specify the minimum size of the elements. It is of number data type & the default value is null. layout: It is used to set the orientation of the panels. It is of string data type & the default value is horizontal. gutterSize: It is used to specify the size of the divider in pixels. It is of number data type & the default value is 4. stateKey: It is used to specify the storage identifier of a stateful Splitter. It is of string data type & the default value is null. stateStorage: It is used to define where a stateful splitter keeps its state. It is of string data type & the default value is session. style: It is used to specify the inline style of the component. It is of object data type & the default value is null. styleClass: It is used to specify the style class of the component. It is of string data type & the default value is null. panelStyleClass: It is used to specify the style class of the panel. It is of string data type & the default value is null. panelStyle: It is used to specify the inline style of the panel. It is of object data type & the default value is null. Event: onResizeStart: It is a callback that is fired when resizing starts. onResizeEnd: It is a callback that is fired when resizing end. Styling: p-splitter: It is the container element. p-splitter: It is the container element during resize. p-splitter-horizontal: It is the container element with a horizontal layout. p-splitter-vertical: It is the container element with the vertical layout. p-splitter-panel: It is the splitter panel element. p-splitter-gutter: It is the gutter element to use when resizing the panels. p-splitter-gutter-handle: It is the handle element of the gutter. Creating Angular application & module installation: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: It will look like the following: Example 1: This is the basic example that illustrates how to use the Splitter component. app.component.html <h2>GeeksforGeeks</h2> <h5>PrimeNG Splitter Component</h5> <p-splitter> <ng-template pTemplate> <div class="p-col p-ai-center p-jc-center"> Angular PrimeNG is a framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. </div> </ng-template> <ng-template pTemplate> <div class="p-col p-ai-center p-jc-center"> Angular PrimeNG is a framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. </div> </ng-template> </p-splitter> app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent {} app.module.ts import { NgModule } from "@angular/core"; import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { SplitterModule } from "primeng/splitter"; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, SplitterModule ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule {} Output: Example 2: In this example, we will know how to use the layout property in the splitter component. app.component.html <h2>GeeksforGeeks</h2> <h5>PrimeNG Splitter Component</h5> <p-splitter layout="vertical"> <ng-template pTemplate> <div class="p-col p-ai-center p-jc-center"> Angular PrimeNG is a framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. </div> </ng-template> <ng-template pTemplate> <div class="p-col p-ai-center p-jc-center"> Angular PrimeNG is a framework used with angular to create components with great styling and this framework is very easy to use and is used to make responsive websites. </div> </ng-template> </p-splitter> app.component.ts import { Component } from '@angular/core'; @Component({ selector: 'my-app', templateUrl: './app.component.html', styleUrls: ['./app.component.scss'] }) export class AppComponent {} app.module.ts import { NgModule } from "@angular/core"; import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { SplitterModule } from "primeng/splitter"; @NgModule({ imports: [BrowserModule, BrowserAnimationsModule, SplitterModule], declarations: [AppComponent], bootstrap: [AppComponent], }) export class AppModule {} Output: Reference: https://primeng.org/splitter Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component
https://www.geeksforgeeks.org/angular-primeng-splitter-component?ref=asr10
Languages
Angular PrimeNG Splitter Component
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0258086938, -0.00203896477, -0.0142532606, 0.00527089927, 0.0437890105, 0.0264636576, -0.00966071617, 0.0127406055, -0.0184169579, 0.0466895625, -1.25714432e-05, 0.00173195044, 0.00860809628, -0.0512119345, -0.00449897768, -0.039079506, -0.0381750353, 0.00824942533, -0.0454108231, -0.0125066899, 0.00843655784, -0.00863148738, -0.0579798929, -0.00853012409, -0.0172317866, 0.0386428647, 0.01106421, 0.00221440149, -0.0189627614, 0.0277891792, 0.00206625485, 0.0120310616, 0.014401407, 0.0014395559, -0.0438825749, -0.0153370695, 0.00580500672, 0.0363349, 0.0173253529, 0.0307677053, -0.0226898175, -0.0099102268, -0.0115866214, 0.026962677, -0.00446778908, 0.00880302582, -0.0156255662, -0.025839882, 0.0156255662, 0.0027504582, 0.0165144447, 0.0350561589, 0.0173253529, 0.0230952725, 0.0129355351, 0.0337462313, 0.00425726501, 0.0323739275, -0.0263077132, 0.0359606333, 0.0186196864, -0.061691355, -0.00828061439, -0.00962173, 0.00342491502, 0.0378319584, -0.00493562035, -0.00179335335, 0.00201167469, -0.0101441424, -0.0193994045, 0.0245143604, 0.0167015772, -0.0141363023, -0.0381750353, -0.0084677469, 0.0111577762, -0.0325922482, -0.0434771217, 0.0154072437, -0.0296293162, 0.0270562433, -0.0470326394, 0.00888879504, 0.0272745639, -0.00202337047, 0.0159608442, -0.0404206254, 0.0229393281, -0.000141933197, -0.0213019177, 0.0208184924, 0.0254500229, -0.0203818511, 0.0268847048, 0.0027874948, 0.0360853858, 0.00781278312, -0.00322218798, -0.0397968479, 0.00910711568, 0.0235631038, -0.0201323405, -0.0383621678, 0.0235475078, 0.0117971459, 0.0269002989, -0.0128887519, 0.0382686, -0.0438513868, 0.0183077976, 0.00737224147, 0.0443192199, 0.0167951435, -0.0440073311, 0.00777769554, -0.00612859, -0.0656835139, -0.00307988934, -0.0305026, 0.0218789112, 0.006284534, -0.0287872199, 0.0377072021, -0.0271654036, 0.0528649352, -0.0163896903, 0.00955935288, 0.0142766517, 0.00233915658, 0.0106509589, 0.00238983822, -0.0293018334, -0.00253603561, 0.0141207082, 0.0514926314, 0.0238749906, 0.0115086501, -0.0508064777, 0.0336526632, 0.0163117182, -0.0363037102, 0.0348690264, -0.0102766939, -0.00238204096, 0.0151811261, 0.0174033251, 0.0709856, -0.0294889659, 0.0457850881, -0.0562021323, -0.00984005164, 0.0061324886, 0.00813246705, 0.0432588, -0.0518980846, -0.021395484, 0.0215826165, 0.00409742258, -0.0138322124, 0.025481211, 0.0105495956, -0.0022183, 0.0243896041, -0.0164364725, 0.00455745636, 0.00284987222, -0.0117503628, -0.029551344, 0.0314070731, 0.0449429937, -0.00702136802, -0.00725138513, -0.00326507259, -0.0610987693, -0.042790968, -0.0173097588, -0.0188847892, 0.0328729451, -0.00640149182, -0.0290211346, -0.016233746, 0.00658082683, -0.000567732786, -0.00660421839, 0.00178945472, 0.0308144875, -0.0358046889, -0.0533951446, -0.0127328085, -0.0227833837, -0.000527772179, 0.0186820626, 0.0341828726, -0.0051734345, -0.0130213043, -0.043913763, -0.010346869, -0.00594925461, 0.00183721248, -0.00600773375, -0.00617927173, -0.0104092462, 0.0182610154, 0.00973089132, 0.00706425263, -0.00799211767, -0.0293954, 0.0406077579, -0.0473445281, -0.0083196, -0.0161245856, 0.00121733604, 0.0328729451, -0.0223623365, 0.017715212, -0.026214147, 0.0206313599, 0.00693949778, -0.00208379864, -0.0296449102, 0.041761741, 0.00974648539, 0.0295045599, -0.0563268885, -0.0274461024, -0.0269938651, -0.00952036679, 0.0162649341, 0.0206313599, -0.019165488, 0.0110174268, -0.00299801887, 0.00982445758, 0.0305805728, -0.0103078829, 0.00815585908, 0.00313836825, -0.0226274412, 0.0663072914, 0.00981666055, 0.00513444841, -0.022518279, -0.0139959529, 0.0237346403, -0.0116801877, 0.00489663426, 0.0330600776, 0.011804943, 0.00633521564, -0.0239373688, 0.0277891792, -0.00276410324, -0.00881082285, -0.00366272917, 0.00186742656, 0.0361165777, -0.0194461867, 0.00707594818, 0.0262921192, 0.030658545, -0.0181206651, 0.012179208, 0.0504322127, 0.0232044328, -0.0211459752, 0.00428845361, 0.00233915658, -0.00626893947, 0.0107757142, 0.0423855148, -0.0372393727, 0.0359294452, -0.00523581216, -0.0467831306, -0.00782837719, 0.00104384858, 0.00897456333, 0.0397656597, 0.0394849628, -0.00245611439, -0.0182610154, 0.00219295919, 0.0140895192, 0.0137308482, -0.0483737551, 0.0278827455, 0.0118829152, 0.0153994467, 0.0140037499, -0.013676268, -0.00574262906, 0.0197424814, 0.0212395415, 0.033216022, 0.0125924591, 0.0242804438, -0.00295123574, -0.00161206874, -0.0121090338, -0.0133955693, -0.013691863, 0.00210134219, -0.0135437157, -0.0585412905, 0.032717, 0.0109004695, 0.0132006397, -0.0509312339, -0.0149550075, 0.0364596508, -0.0293486174, -0.0446934849, -0.0166703891, -0.0429469123, 0.00116957829, 0.0386428647, 0.0190407336, -0.018089477, 0.00208379864, 0.04731334, -0.0126470393, -0.0483737551, 0.0499331951, 0.0542684309, -0.0094190035, -0.0256215613, -0.0187132526, 0.0190095454, -0.024030935, -0.022502685, -0.0099102268, -0.00434693228, 0.00125924591, 0.0175904576, -0.00165008, 0.0170914363, -0.0539877303, -0.00812467, 0.0238438025, -0.0390483178, -0.0429157242, 0.0159218591, 0.00272706663, 0.0137464432, -0.050650537, 0.00553990249, 0.0232200269, 0.0555159822, 0.0171694085, 0.00149218692, 0.023999745, 0.0556719229, 0.00748140225, 0.0434459336, -0.050588157, 0.00567245437, -0.0204754174, 0.022518279, -0.0274149142, -0.00411301665, -0.0263856854, -0.0452548824, 0.0553600378, 0.0305961668, -0.0146587137, -0.0278983396, -0.00543464, -0.0277579911, -0.0133487862, -0.0297540706, -0.00435083127, 0.0103312749, 0.00949697569, -0.0355551802, -0.00794923306, 0.0368339159, -0.0228145737, 0.0126314452, 0.0148926293, -0.0398592278, 0.0702994466, 0.00441320846, 0.00350678549, 0.0120310616, 0.0171850026, 0.0268691108, 0.00534107396, -0.0111187901, 0.000867437222, 0.02287695, 0.0392354503, 0.0136294849, -0.0179959107, 0.0364908427, -0.038424544, -0.0368339159, 0.0100661702, 0.0524906702, 0.000996578136, 0.0301595237, 0.00435083127, 0.0200543683, -0.0150485737, 0.0292394552, 0.0111733712, -0.0310484041, 0.0339333639, 0.0258086938, -0.0154150417, 0.0233135931, 0.0197112914, -0.0388611853, 0.0209432486, 0.0392666422, 0.0288807862, 0.00901354942, 0.0422295704, -0.00730596529, -0.0185573082, 0.0458474681, -0.00382647, -0.0404518135, 0.0048420541, -0.0132474229, 0.00414810423, -0.0023255113, 0.0264012795, 0.0292550512, -0.00670168316, -0.062377505, -0.00542294467, -0.0229393281, -0.0189939514, -0.00948917773, -0.0351185352, 0.0311107822, -0.0116178105, 0.0164988507, -0.00561397569, -0.0138867926, 0.0123663405, 0.0267755445, -0.0252317023, -0.0567323416, -0.0104794214, -0.0387052409, -0.0320620388, -0.00836638268, -0.00562567124, -0.0291302949, -0.00649895659, -0.0392978303, -0.013317598, 0.0124677038, 0.0171226263, 0.00907592755, -0.00333719654, -0.00320464442, -0.0153370695, -0.0403270572, 0.0236098859, 0.0139101837, 0.00295708375, 0.0160310194, -0.00718510896, -0.0339021757, 0.0281010661, 0.00103702606, 0.0256683435, -0.0079765236, -0.00952816382, 0.0525530502, -0.0140193449, 0.0299567971, -0.0016695729, 0.0165924169, -0.0221128259, 0.00998040102, -0.00569974445, 0.0235319138, 0.0361789539, 0.0371769927, -0.0304558184, -0.00227872818, -0.0191498939, -0.00144442916, -0.0190875176, 0.0023644974, 0.0229705162, 0.0274461024, -0.00372315734, -0.0478435457, 0.0324363038, 0.0070486581, -0.00589467445, -0.0175748616, -0.0186664686, 0.0353992358, 0.026947083, 0.0133253951, 0.0213019177, -0.0107913082, 0.0528337471, 0.0232979991, -0.00872505363, -0.0259490423, -0.0200543683, -0.0351185352, -0.0329041332, -0.00436642533, 0.0204598214, -0.00981666055, 0.0205689836, -0.0152123142, -0.0308300834, -0.00943459757, 0.046190545, -0.0105729876, -0.0109784408, -0.0119063063, 0.00527869631, 0.00339762471, 0.0224403087, 0.00756717147, 0.0278203674, 0.00796872657, -0.0241868775, 0.0141596943, 0.000219295922, 0.000509253878, 0.00234695361, 0.0349625908, 0.0637186244, -0.0111031961, 0.00254773139, -0.00599213922, 0.0157503206, -0.01070554, 0.0160154253, -0.0232356209, 0.00892778, -0.0429157242, -0.00952816382, -0.0041403072, 0.0145807425, 0.000673969451, -0.000932251336, 0.0230173, 0.0197892636, -0.00776989805, 0.0278515574, 0.00424167048, 0.00530208787, -0.0166392, -0.0196177252, -0.0423855148, 0.00536056701, 0.0141285053, -0.0289431624, 0.0220660437, -0.00596095063, 0.0135359187, 0.0262765251, -0.00939561147, -0.0315942056, -0.0198984239, 0.0167327654, -0.0108536864, 0.0322491713, 0.00506817224, -0.0145183643, -0.0043196422, 0.0241400953, 0.0160154253, 0.0116412025, 0.0391106978, -0.0217541549, 0.00180017587, 0.0109472526, 0.00899795536, -0.0064287819, 0.0121558169, -0.02437401, 0.0148770353, -0.0227054115, 0.0334343426, -0.0294421837, -0.0484049432, -0.0120934388, 0.00959833898, 0.00890438911, 0.0160933975, -0.0196177252, -0.00481086504, 0.0202882849, -0.00401165336, 0.0165144447, 0.010323477, -0.00941120647, 0.0148146581, 0.0148692382, -0.00356721366, 0.00519292755, -0.0333719663, 0.0161401797, -0.0175124854, 0.0103000859, 0.0168107376, -0.019539753, -0.0282726046, -0.0125066899, 0.0331224576, -0.0107367281, 0.0215358343, -0.016623605, 0.00437422283, -0.0174345132, 0.00966071617, -0.0214578621, 0.0193058383, 0.0189627614, 0.0497772507, 0.00268223276, 0.0223623365, -0.0355551802, -0.0165300388, -0.0208028983, -0.010339072, -0.000222098039, -0.00745801069, 0.0250445697, -0.00746970624, -0.0339333639, 0.00855351519, -0.00230796775, -0.000421291828, 0.0176840238, 0.0101675335, 0.00150680658, 0.00880302582, 0.00525920372, 0.0133487862, 0.0536758453, -0.0105807846, 0.0242492557, -0.0193058383, 0.0164832566, 0.0455979556, -0.00498240348, -0.0434771217, -0.00923187099, 0.0109940358, 0.0203818511, 0.00796093, -0.0104092462, 0.0128107807, 0.000350629824, 0.0227989778, 0.0125300819, 0.0049473159, -0.0206313599, 0.0138634006, 0.00791024789, 0.0198984239, 0.00851453, -0.0152045172, 0.0353056677, 0.0104794214, 0.028802814, -0.0121402219, 0.00391418859, 0.0256839376, 0.0209120587, -0.0167483613, -0.033964552, -0.005543801, 0.00228652544, 0.0159842353, 0.00525140623, -0.0150095876, 0.0164208785, 0.0310795922, 0.00930204522, -0.00256332569, -0.0101831276, -0.0200231802, -0.0301283356, -0.00898236129, 0.00709544122, -3.88031949e-05, -0.00612469157, 0.019945208, -0.00378553499, -0.000645217311, -0.0298008546, -0.00098195835, -0.00261985534, 0.00556329405, -0.0082026422, 0.00607790845, -0.0139647638, -0.00954375882, 0.0101597365, 0.0087406477, 0.026962677, -0.0036178953, 0.0271186214, -0.0123507464, -0.00280503859, 0.000708569482, 0.0269938651, 0.0231264606, 0.0371458046, -0.0100427782, 0.0292238612, -0.0234539416, -0.0158906691, -0.0266975723, -0.00140349392, -0.0122805713, -0.00167542079, 0.0022884747, -0.0308924597, -0.0357111208, -0.00930984318, 0.0164364725, -0.049839627, -0.00994921196, -0.00536056701, -0.0209900308, -0.00366857718, -0.000988293672, 0.000430550979, -0.00252628908, -0.031734556, -0.000829913246, -0.00424946751, -0.0215514284, 0.00917729083, 0.00813246705, -0.0112357484, 0.00059453561, -0.00404674094, 0.0197112914, 0.0228457619, -0.0138400095, -0.021800939, 0.015126545, 0.0169978701, -0.0127094174, -0.00750479382, 0.0205845777, 0.00643657893, 0.00803890079, -0.00523191318, -0.015493013, 0.0261361748, 0.0128029836, 0.0211927574, 0.0119686844, -0.00138107699, -0.0186196864, 0.0320932269, -0.00401165336, 0.0113683008, -0.018105071, -0.0167795494, 0.00860029832, -0.0299879871, -0.00116470503, 0.0219412874, 0.0202882849, 0.00190641254, -0.0119452924, 0.00353017705, -0.0183233917, -0.00844435487, -0.0218165331, -0.0121324249, -0.0084287608, -0.0101675335, -0.00558668561, -0.025138136, 0.0128107807, -0.00541514717, 0.0251849182, -0.00451067323, 0.0272901598, 0.0378943346, 0.0237034522, 0.0436954424, -0.0194929708, 0.0132240318, 0.00319294864, -0.0501827039, -0.0260426085, -0.0169198979, -0.0135359187, -0.0547362603, 0.0123507464, -0.0233603753, -0.00259061577, 0.0611923337, 0.00240543252, -0.0217853449, -0.0293174274, 0.00659252284, -0.0318905, -0.00689271465, 0.00065447652, -0.0134813385, -0.0423855148, 0.0188691951, 0.0250445697, -0.00780498562, 0.0375200696, 0.0170290601, -0.0323115475, 0.0198048577, 0.00359060522, -0.00824942533, 0.00927865412, 0.01550081, -0.0204130393, -0.00399995781, 0.00520072458, 0.00872505363, 0.00101655838, -0.0112981256, -0.00477577792, -0.0133877723, -0.0422295704, 0.0194305927, -0.0084287608, 0.000687127234, -0.00164228282, 0.0100661702, 0.00923187099, 0.0122181941, -0.0174345132, 0.0334655307, -0.0163429063, -0.029551344, 0.00659252284, -0.00274850894, 0.00207795063, 0.0127562005, 0.0296760984, 0.015508608, 0.0292394552, 0.0369586721, 0.0114930551, 0.026588412, -0.0133721782, 0.0175592676, 0.014385812, 0.024732681, 0.00461983401, 0.0105573926, -0.00326117408, -0.00575042656, 0.0191187058, -0.00368612073, 0.0113916919, 0.0112357484, -0.0158126988, -0.0086782705, -0.00501749059, 0.0101519395, 0.00182454207, -0.00965291914, 0.0155709852, 0.0144949732, -0.00853792112, -0.0120778447, -0.0156489573, -0.010346869, -0.00527479779, 0.00242882408, 0.0168731157, -0.00320854294, -0.0196177252, 0.0198204536, -0.000178482514, 0.020693738, 0.00518902903, -0.0384869203, -0.0231576487, 0.00109258096, -0.00553990249, -0.0197424814, -0.0149316154, -0.0437890105, -0.00737614, 0.0306897331, -0.00816365611, 0.0157347266, -0.0105417985, -0.0138322124, 0.0148848323, -0.000677868084, 0.0171850026, -0.0150329787, 0.0148770353, -0.0214578621, 0.0230173, 0.0096451221, -0.0280230939, 0.0168887097, 0.00453016628, 0.0359918214, -0.0319996625, -0.022923734, 0.0114852581, -0.0150407767, -0.0407948904, 0.0424790829, 0.0222687703, -0.0300659575, -0.0439449549, 0.021442268, -0.0286468696, 0.0208652765, -0.00304675126, 0.0151031539, -0.010323477, 0.0323115475, 0.00513444841, 0.0131382626, -0.00244051986, 0.0307988934, 0.0223623365, -0.00411691563, -0.00962952711, -0.0111577762, -0.00982445758, 0.0142376656, -0.0605061799, 0.0029161484, 0.00992582086, 0.00926306, 0.00978547148, 0.00608960399, 0.00118809659, -0.0475628488, 0.00124755013, 0.0068732216, -0.00877183676, 0.00973868836, -0.00856131315, -0.00833519455, 0.00388299976, -0.0142610576, -0.00638589729, -0.0432588, -0.0202259067, -0.000283866393, -0.00341127, 0.000219052265, -0.000525822863, -0.0241089053, -0.0101753306, -0.00385181094, 0.00815585908, 0.014775672, 0.00783617422, -0.00842096377, 0.0298632309, -0.0224403087, 0.0118829152, -0.0157347266, 0.0100193871, -0.0161869638, 0.00518902903, 0.0208028983, -0.00201362395, -0.0184013639, 0.00734105287, 7.75454755e-05, 0.0212551355, -0.000947358378, 0.00248535373, -0.0293330215, 0.0212239474, -0.044350408, 0.0166703891, -0.00773870945, -0.0325922482, 0.0429157242, 0.0204442274, -0.00799991563, -0.00730986381, -0.00246586092, -0.00781668164, -0.0240465291, 0.0578551367, -0.00582060125, -0.00905253552, 2.86455288e-05, 0.00329626142, -0.00419098884, 0.0112513425, 0.0327793807, 0.00278944406, 0.0158984661, 0.00819484517, 0.0171538144, -0.0196021311, 0.0232200269, 0.000406915759, 0.00561787421, -0.00250289752, 0.0355239883, 0.000156674752, 0.0106041757, -0.00886540301, 0.018463742, 0.00108380918, 0.00278359628, 0.0266819783, -0.00584399281, 0.0065418412, 0.0126314452, 0.00817145314, 0.0207717102, -0.00559058413, -0.0154228387, 0.0229393281, 0.02212842, -0.0261985529, 0.0151655311, 0.00721629756, -0.00161596725, -0.00442100596, -0.0132474229, -0.00167152227, -0.035461612, -0.00356136565, -0.0276020467, 0.0285688974, 0.00561007718, -0.00207405211, -0.00486544566, -0.00508376677, -0.00966071617, -0.00277579902, 0.0295201559, 0.0150017906, -0.0222687703, -0.0131382626, 0.000354528398, 0.0120856417, -0.0108848745, -8.25405514e-05, 0.0016081701, 0.00362764183, -0.00115885714, -0.0157581177, -0.00424946751, -0.0121480189, -0.0341204964, 0.00960613601, 0.0251693241, -0.00756717147, 0.0315942056, -0.00310523016, 0.00140251929, -0.00287131453, 0.0276332349, 0.00182064343, -0.0166703891, 0.00928645115, -0.0139569668, 0.00110232749, 0.0256683435, 0.0216917787, -0.00569194742, -0.00519292755, -0.00755547546, 0.0222375803, 0.00548922038, 0.0359294452, 0.0465336181, 0.00582449976, -0.0358358771, -0.000254870596, -0.0309860259, 0.00460034097, -0.032186795, -0.00402724789, 0.00901354942, -0.0146821057, -0.01628053, -0.00533327693, 0.0244675763, -0.0162025578, 0.0739797205, 0.000308476272, -0.000713930058, -0.026588412, 0.00226898189, -0.0444439724, -0.000451749598, 0.0234071594, 0.0128809549, -0.0351185352, -0.00395122496, -0.013294206, 0.00931764, -0.00485374965, 0.00596095063, -0.0211459752, -0.00663150847, 0.0255591832, 0.0147444829, -0.0197112914, 0.0108692804, 0.0152357062, 0.0096685132, 0.00129920652, -0.00762954867, -0.0444439724, -0.00229432271, -0.0147912661, -0.0341516845, -7.62053314e-05, 0.00169881235, 0.00405453797, 0.0320932269, 0.001755342, 0.00480696652, 0.0264324676, -0.00257112295, -0.00148633902, -0.0104482323, 0.0106821479, 0.011836132, -0.00417149579, 0.0053176824, -0.0149939936, 0.0084521519, -0.00282843015, -0.01624934, -0.0303154681, -0.00488883723, 0.0135281216, -0.00580890523, 0.00422217743, 0.00735274842, -0.013317598, -0.0186040904, 0.011072007, 0.00196001818, -0.0218165331, 0.0230173, -0.0264948457, -0.0188068189, 0.00351068401, -0.019960802, -0.0262765251, 0.0285221152, 0.00714222435, -0.00511885434, 0.00549701788, -0.0179647226, 0.0122961663, 0.0233447812, -0.00473289331, -0.0102455057, 0.0082026422, 0.00539955311, 0.000842096342, -0.0113683008, 0.0141207082, 0.00440151291, -0.0190251395, -0.0150953569, -0.0320620388, -0.022923734, 0.0300659575, -0.00392393488, -0.0142298685, -0.00128653611, -0.00523971068, -0.00255357916, -0.0175436735, 0.00833519455, -0.0194305927, -0.0202415, -0.0170446541, -0.00272316812, -0.00584399281, 0.006647103, -0.00375239691, -0.012919941, -0.0130836824, 0.0269938651, 0.0121246278, -0.00235864939, 0.0174657013, 0.00712663028, -0.0103312749, 0.0414810404, -0.00310717965, -0.0317189619, 0.0209276527, 0.0052124206, -0.00518902903, 0.00396681949, 0.00597654469, -0.0126080532, 0.0193526205, -0.00938781444, -0.0166703891, 0.00633521564, 0.0198048577, -0.026947083, 0.0111031961, 0.0102688968, -0.0125924591, 0.0143000437, -0.00868606754, -0.00135963468, 0.0277268011, 0.016233746, 0.0135904988, 0.0244831722, 0.0183857698, -0.00676795933, 0.00403114641, -0.00816365611, -0.00791024789, -0.0333407782, 0.0337774195, 0.0104872184, 0.0104326382, -0.00985564571, 0.0293642115, -0.00693559879, -0.0383933559, -0.00738393748, 0.00127678958, -0.00651844963, 0.0243272278, 0.0263856854, -0.00656913128, -0.0121012358, -0.00584399281, -0.00169588847, 0.0194461867, -0.0152201112, -0.00369196874, -0.0078322757, 0.00746580772, 0.00311107817, 0.0132162338, 0.0392354503, 0.0311107822, 0.00815585908, 0.0117035797, 0.00523971068, 0.0170758422, 0.00263155112, -0.0543308072, -0.0241556894, 0.00805449579, 0.00796093, 0.000680792, 0.00499409903, -0.021395484, 0.0238438025, -0.00977767445, -0.00899015833, -0.00320854294, 0.0187912229, 0.0123195574, -0.0338397957, 0.0115632303, -0.00366662769, 0.0110252239, 0.0194929708, -0.00796482805, 0.00508376677, -0.0281478502, 0.0134657444, 0.0172473807, -0.0147912661, -0.00662761, 0.0197580755, 0.00447558612, 0.0341204964, 0.00665100152, -0.00506817224, -0.0207249261, 0.00869386457, -0.00440151291, -0.00550091639, -0.0155631881, 0.0107913082, 0.00297072879, 0.0119374953, 0.00101168524, -0.0204442274, 0.00804669876, -0.00484985113, -0.0308456775, 0.00149218692, 0.00350288674, -0.0190251395, -0.00910711568, 0.00918508787, -0.0237502363, 0.0116256075, -0.0180582888, 0.00238983822, -0.00831180252, -0.0153994467, -0.00998040102, -0.011820537, -0.0196645092, -0.00399995781, -0.0152435033, -0.0204598214, 0.0096685132, -0.0129043469, 0.00635860721, -0.0265104398, 0.0268223286, 0.06287653, -0.0115008531, -0.00191908295, 0.0304402225, 0.00172902655, -0.0283193886, -0.0405141897, 0.00638199877, 0.00998040102, 0.0353992358, -0.0159998313, 0.0329041332, -0.0124131236, -0.000102825419, 0.0139725618, -0.0129667241, -0.0293798055, 0.0202882849, -0.0232044328, 0.0143546239, 0.00362959108, -0.0224870909, 0.015149937, -0.00367247569, -0.010697742, 0.0293330215, -0.00748530077, -0.0100583732, -0.0121558169, -0.017356541, 0.0048420541, -0.00333134877, -0.0170290601, 0.00219101, -0.00034331996, -0.0150563708, -0.00108673307, -0.0019941309, -0.0110018328, 0.0241400953, -0.0075320839, 0.00852232706, 0.03256106, 0.013660674, 0.015493013, 0.0107757142, -0.00536836404, -0.00856131315, -0.00426896056, 0.0214734562, 0.0107523231, 0.0246858988, -0.017730806, 0.0340269282, -0.00665879901, 0.0183077976, 0.0199296139, -0.0102221137, 0.000895702, -0.00400775485, -0.00021186423, 0.00101265986, 0.00677185785, 0.021769749, 0.017730806, -0.0117893489, -0.00146879535, -0.00214617606, 0.0281010661, -0.010713337, 0.00570364343, 0.0141363023, -0.000607206, -0.0180426929, 0.00952816382, -0.00077045965, 0.00613638712, 0.00324168103, -0.00297072879, -0.0360853858, -0.00922407396, -0.0295981262, -0.0126548363, -0.0479059257, 0.0244363882, -0.0171694085, -0.00323778251, -0.0210835971, 0.00767243328, 0.000364274892, -0.0274149142, 0.0179179385, -0.00552040944, -0.00349898823, -0.0174345132, -0.0171070304, 0.0102688968, 0.004245569, 0.0068654241, -0.0328417569, -0.00834299158, 0.0223935246, -0.0259022601, 0.00959054194, -0.0158438869, -0.0094423946, -0.0365220308, -0.000723676523, -0.0398592278, 0.0224403087, -0.0124209207, -0.00545803178, -0.00930204522, -0.00600383477, -0.00229042396, 0.00349898823, -0.0303154681, -0.00396681949, 0.0006647103, -0.0280854721, -0.00261985534, 0.00798432063, 0.0178087782, 0.0106041757, 0.010713337, -0.00131382619, 0.0105651906, 0.0113838948, 0.00100973586, 0.0202415, 0.00921627693, 0.00539565412, -0.0178867504, -0.00502138911, -0.0139959529, 0.0011734768, 0.00380112929, 0.0276020467, -0.00410911813, -0.00262375386, 0.0100973593, 0.0138711976, 0.012210397, 0.00889659207, 0.00925526209, -0.000563346839, -0.00394537719, 0.00128263747, -0.0214578621, -0.023282405, -0.00737614, -0.0234383475, 0.00199218164, -0.00270952284, -0.00182746595, 0.0105106095, 0.00647946354, -0.000882544264, 0.042853348, 0.00758276554, 0.0171070304, 0.025855476, -0.0281634443, 0.0263389014, -0.00752428686, 0.0112903286, -0.00507986825, -0.00750479382, 0.0243428219, 0.010346869, -0.00959054194, -0.00610909704, 0.0197736695, -0.00136450795, 0.000270708639, -0.0175280795, 0.011079805, -0.017715212, 0.00881862, -0.0083196, -0.0132396258, 0.00125437265, 0.0150875598, 0.00963732507, 0.000256332569, 0.0131538566, 0.013660674, 0.00950477272, -0.0176216457, 0.00186450267, 0.0159686413, 0.00387910125, 0.0168575216, -0.0272121876, 0.0418864973, -0.00509546278, 7.96166059e-05, 0.00691220723, -0.00160037295, 6.34739845e-05, 0.00786736328, -0.0106275678, -0.0184013639, -0.00493562035, -0.0171694085, -0.0121012358, 0.00346585014, 0.00328261638, 0.0050603752, 0.00693559879, 0.000468562299, -0.00179140398, 0.0286624637, -0.00783617422, 0.0192590542, 0.0277735852, -0.00223779306, 0.0146509167, 0.0117035797, -0.000284597365, -0.021442268, 0.00311887544, 0.00976207945, -0.00333719654, 0.012569068, -0.0244675763, 0.0116723906, -0.0271186214, 0.0055749896, -0.0104950154, 0.0082416283, -0.00705645559, -0.00157015875, 0.0209588427, 0.0043586283, 0.00863148738, 0.00669388613, 0.0135047305, 0.00360619952, -0.0103312749, -0.0206157658, -0.0107289311, 0.0245299544, -0.00788685586, -0.00909152161, 0.00607011095, -0.0109238606, -0.00651455065, -0.0034151685, 0.003596453, 0.0260582026, 0.0055749896, 0.0269938651, 0.0417305529, 0.0104950154, 0.00776989805, 0.0121246278, 0.0106509589, 0.00840536878, -0.00291030062, 0.00377578847, 0.010697742, -0.00645217346, -0.0208184924, 0.000927378074, 0.0173721351, -0.0123195574, -0.0139491698, -0.00562567124, 0.0180582888, -0.00540345162, -0.0146587137, 0.00287716254, 0.0141986795, 0.00612859, -0.00635860721, 0.00592196453, 0.0239061788, 0.0162649341, -0.0255591832, 0.0051734345, 0.0218945052, 0.0035808587, 0.000312618533, -0.0176996179, -0.012912144, 0.0177775901, 0.0178555604, 0.028069878, -0.0111655733, 0.00647946354, -0.0184949301, -0.014011547, -0.0066549, 0.00908372458, 0.00186060404, 0.00399995781, -0.0166392, 0.0133721782, 0.0089667663, -0.00596484914, -0.0244052, -0.0139569668, -0.00512665138, 0.0227210075, -0.0166392, 0.0176372398, 0.0223155525, -0.0103312749, -0.00277384976, -0.0241089053, 0.0087172566, -0.00803110376, -4.98898225e-05, 0.00487714121, 0.00226118462, -0.00499020051, -0.01106421, -0.00510326, -0.0108380914, -0.0164676625, 0.00790634938, 0.0165768228, 0.00442880299, -0.0113994889, -0.0181830432, -0.00439371541, 0.0163585, -0.000265104405, -0.0133565832, 0.0113527058, -0.00415590126, 0.00245416514, 0.0052864938, 0.0052046231, 0.000781180803, 0.00774260797, -0.00370756304, -0.0130680874, -0.00102338102, 0.00318515138, 0.0295669381, 0.012927738, 0.0230017062, -0.00444829604, 0.0143624209, -0.00920068193, -0.0179491267, -0.0232979991, -0.0197580755, -0.00118907122, 0.00982445758, 0.00270562433, 0.0216917787, -0.00283232867, 0.0373329371, -0.0182298254, 0.00210913946, 0.006647103, -0.00158185454, -0.0146041336, -0.0178399663, -0.0109550497, -0.000884493522, -0.0215826165, 0.018463742, -0.00458864542, -0.0237814244, -0.0164988507, -0.00379918, 0.00152337563, -0.008491138, -0.0105885817, -0.0254188348, 0.00139569666, -0.0108147, -0.0341828726, -0.0116100134, -0.0158984661, -0.0186352804, 0.00683033699, -6.16160614e-05, 0.0260737985, 0.00767633179, 0.00507207122, -0.00446778908, 0.0123663405, 0.028802814, 0.0075008953, 0.00361009827, -0.0217385609, -0.00451457221, 0.0174657013, 0.0144559871, 0.0108692804, -0.0106743509, -0.00829620846, 0.01070554, 0.0115008531, 0.00841316581, -0.000907397771, 0.00477577792, 0.0123117603, 0.00696288934, -0.023251215, 0.0045028762, 0.00478357496, 0.0079765236, 0.00320269517, 0.0209432486, -0.0329665132, 0.0050915638, -0.00577771664, -0.0156723484, -0.00716951443, -0.00199608016, 0.00241907756, -0.00677185785, 0.012569068, 0.0120778447, 0.0342140608, -0.0104638264, 0.00743461912, -0.00835858565, -0.0124910958, 0.00331380498, 0.00694729481, -0.00803110376, 0.0119063063, -0.00404284196, -0.00863928441, 0.00340152346, -0.0107679171, -0.0313446969, -0.000913733, 0.00849893503, -0.0144481901, 0.0122493831, -0.00490443129, -0.00205260981, -0.00170271099, 0.0110018328, -0.00475628488, 0.00330405845, -0.00550871342, 0.0169354938, -0.00767243328, 0.00569194742, -0.0100895613, -0.000980983721, -0.00817925, 0.0097074993, 0.018838007, -0.0101831276, 0.0067991484, -0.00624944642, -0.0152279092, 0.00524750771, -0.00679524941, 0.00595315313, -0.0157191325, -0.0230017062, 0.0222843643, -0.00955155585, -0.0224559028, 0.0199919902, 0.0104716243, 0.00220660423, 0.00484595262, 0.00684593152, -0.0151655311, -0.00399995781, 0.0156255662, -0.0065340437, -0.0089667663, 0.0118907122, -0.0273681302, 0.00458864542, -0.0119452924, -0.0117347687, 0.00417149579, -0.000881082262, 0.00385765894, -0.00104872184, -0.00769972336, 0.0143702179, -0.00194247451, -0.00430404814, 0.00601163227, -0.00750479382, 0.0149238184, 0.00803110376, -0.00591806602, -0.00293564145, -0.00791804492, -0.0398280397, 0.00817925, 0.000917144294, 0.000883518893, 0.021395484, 0.00569584593, -0.00915389881, -1.4147633e-05, -0.000534107385, -0.00258866651, -0.0140193449, 0.0165456329, -0.00287131453, -0.000390590401, 0.0287092477, 0.0189939514, 0.0050603752, -0.000521437, -0.00538785709, 0.01624934, 0.00784787, -0.015508608, 0.0333719663, -0.02287695, 0.000189690967, 0.0232044328, 0.0229705162, -0.0027874948, 0.0109628467, -0.0015896518, 0.0010048626, 0.0082416283, 0.000795313215, -0.00838977471, -0.0137308482, -0.00484595262, -0.0171694085, -0.00266858772, -0.00861589331, 0.0104560293, -0.0157425236, -0.00713442732, 0.000622800435, -0.00418709032, -0.00660032, 0.0189159792, -0.00286936527, -0.00291419914, 0.02212842, 0.00984784868, -0.0179959107, -0.00193467736, -0.000475628476, 0.00934103131, -0.0121246278, -0.00301361317, 0.0222375803, 0.0116645936, 0.0183077976, 0.0194305927, 0.0148224551, 0.0196801033, -0.0187132526, -0.00530208787, 0.02287695, 0.01628053, -0.000386204483, 0.0305337887, -0.00291224988, 0.000265835377, 0.0234383475, -0.0200543683, 0.00429625064, 0.00529039232, -0.00158867717, -0.0227833837, -0.0144637842, 0.00537226256, -0.00910711568, 0.0152201112, 0.00554769952, -0.00666269753, -0.00771531789, 0.0281634443, -0.000172634624, -0.00510715833, -0.0028089371, -0.0109940358, -0.00941120647, -0.00745021366, 0.00344050932, -0.00258671725, -0.0137776313, 0.0202103127, 0.019165488, -0.0174033251, -0.0130914794, 0.0190719217, 0.0115710273, -0.0113605037, -0.0140739251, -0.0096685132, -0.00930984318, -0.0100193871, -0.0132474229, -0.0173097588, -0.00934882835, 0.0148614412, -0.00319294864, 0.0196489152, 0.01070554, -0.00870166253, -0.00570364343, 0.0205533877, 0.0267911386, 0.0353368558, 0.00674066925, -0.0100895613, -0.00479916949, -0.0145183643, -0.0062767365, 0.000248169876, -0.0042065829, 0.0220504478, 0.0105573926, -0.00940340944, 0.00721239904, 0.00129920652, 0.0127172144, -0.0165612288, -0.0112747345, -0.0115320412, -0.0111967623, -0.0113059226, -0.00994141493, 0.00992582086, 0.0218477212, 0.0147444829, 0.00983225461, -0.0284285489, -0.00675626379, -0.0056490628, 0.0109706437, 0.00690441, 0.0389235653, 0.0183701757, -0.0154540269, 0.0158126988, -0.0192746501, 0.0157737117, -0.0134813385, -0.00715002185, -0.0155943763, 0.00853792112, -0.00289275683, -0.00960613601, -0.0106665539, -0.0098946318, 0.00150875596, 0.0100973593, 0.0161401797, -0.00459254393, -0.00371146156, 0.0271498095, -0.0117971459, -0.0102065196, -0.0182298254, -0.0045028762, 0.0132552199, 0.00403114641, 0.0118673202, 0.00281868363, -0.0068732216, -0.0254344288, -0.0143156378, -0.003602301, -0.00239958474, -0.0123117603, 0.0111421822, 0.0011335162, 0.00686932309, -0.00500969356, 0.0274928864, 0.0105807846, 0.0102065196, 0.00898236129, -0.00608570548, -0.0143468268, -0.00299412035, 0.0104404353, -0.0116100134, 0.000712468056, -0.00686932309, -0.000179944487, 0.00500189653, 0.020319473, 0.000331380492, 0.0066782916, 0.0283037927, -0.0070174695, -0.00623385189, 0.0170914363, 0.00106821477, -0.00171928, 0.00638199877, 0.0110252239, -0.00292784418, -0.00191226043, 0.0204286333, -0.0040194504, -0.00340542197, 0.0112201544, -0.000517538399, -0.0217229668, -0.0158438869, 0.00171343214, 0.0152746923, 0.0101909256, 0.00892778, 0.0043586283, -0.00574262906, -0.0166703891, -0.00309353438, 0.01070554, 0.0112123564, -0.00774260797, -0.00467831315, -0.00095466827, -0.0120154675, 0.0148458462, 0.0134735415, 0.0238905847, 0.00404674094, 0.00981666055, 0.0096841082, 0.0198672358, 0.0175904576, 0.0210056249, -0.00621825783, 0.00437032385, 0.00543464, -0.0226118453, 0.013302003, -0.0196333211, 0.0169198979, 0.00144735305, -0.0165144447, 0.0132318288, 0.00801551, -0.0204442274, -0.00646386901, 0.0106509589, -0.00830400549, -0.00722019654, 0.00345610362, -0.0214578621, -0.0101441424, 0.0263233073, 0.00152629963, 0.00222024927, -0.00565296132, -0.00464322558, -0.000472704531, -0.00169004058, -0.0108069032, 0.0174812954, -0.0126392422, -0.00929424819, -0.00706815114, 0.00922407396, -0.0115632303, 0.0102922888, 0.0110096298, 0.0205377936, 0.00146684609, 0.00129920652, 0.0145885395, 0.0129745211, -0.000805547, -0.0203974452, 0.0018011505, 0.00320464442, -0.0239529628, -0.00931764, -0.00597654469, 0.0112747345, -0.00770362187, -0.00286741601, -0.0261985529, -0.0164208785, 0.00593755906, 0.0112513425, 0.0221596099, 0.00422997447, -0.00500189653, -0.0116256075, 0.0311263762, -9.02311342e-07, -0.0109550497, -0.00562956976, -0.00310133165, 0.00567635288, -0.0250289738, -0.019586537, 0.00649895659, 0.0180426929, 0.00521631911, 0.0284129549, -0.0174812954, 0.0128653608, 0.0168887097, -0.00471729878, 0.0182142314, 0.00569974445, 0.025465617, -0.0014951108, -7.49641777e-06, -0.0126314452, 0.010323477, -0.0186196864, 0.00100193871, -0.00487714121, -0.00621435931, -0.00504867965, 0.0137698343, -0.00343466154, -0.00422607595, -0.00988683477, 0.0211459752, -0.0148380492, 0.00118809659, 0.0271809977, -0.00246001291, -0.0157815088, 0.00136548257, -0.0254188348, 0.0133331921, -0.00621046033, -0.0111577762, -0.00731376279, -0.025855476, -0.0218789112, -0.00366272917, 0.00928645115, 0.00646776753, -0.0131694507, 0.0175592676, 0.00473289331, 0.00521631911, 0.000643755367, -0.00726697966, 0.00303895422, 0.00622215634, -0.000132430374, 0.00454965932, 0.00996480696, -0.00927865412, -0.0186664686, -0.00338592893, -0.0045769494, 0.0174968913, 0.0144325951, -0.0128887519, -0.00086597522, 0.00834299158, 0.00164520671, -0.00570754195, -0.016654795, -0.00286156801, -0.00424946751, -0.00569974445, 0.0291302949, -0.0102221137, 0.00528259529, -0.00310717965, -0.0118751181, 0.00486154668, 0.0161869638, -0.00186352804, 0.00134696427, -0.0117503628, 0.00799211767, 0.00105456973, 0.0242804438, 0.0231732428, 0.0179959107, 0.00941120647, 0.00272706663, 0.0140193449, 0.0126704313, 0.0117113767, -0.00696678786, -0.00662761, 0.0102844918, -0.0235942919, 0.00238204096, 0.00502918661, 0.0372393727, 0.00714222435, -0.03103281, -0.00545413326, 0.00849893503, 0.0211459752, 0.000218686764, -0.00750869233, 0.00330210919, 0.0349625908, -0.0074619092, -0.00639759284, -0.0124053266, -0.0221128259, 0.013317598, -0.0242024716, 0.0100115901, 0.0221128259, -0.0151031539, -0.0137542402, 0.00499020051, -0.0119452924, -0.00139179814, 0.0157581177, -0.00126704306, 0.00310717965, 0.00369976577, -0.000884980895, 0.00725138513, 0.0011149979, 0.00410911813, -0.00947358366, 0.00459254393, -0.0183545817, 0.00817925, 0.0158594809, -0.00796093, -0.00765683874, 0.0119452924, -0.00883421395, 0.00487714121, 0.00276410324, 0.00367247569, -0.000792876584, -0.0197424814, -2.17773031e-05, -0.0225650631, 0.012545676, -0.00138205162, 0.0557966791, -0.00366272917, 0.00934882835, 0.00263739889, -0.0125924591, -0.0215202402, -0.0158984661, -0.000217224791, 0.00587518141, 0.00312277395, 0.00190056465, 0.0127016194, -0.00415590126, 0.00425336603, 0.00594145758, -0.00940340944, 0.00614418462, 0.00510326, -0.00785956625, -0.0182610154, 0.0245611425, 0.0126392422, -0.0116334045, -0.0341204964, -0.00682254, -0.0178867504, -0.00734495139, -0.0062767365, -0.0172005966, -0.00653794222, 0.0128185777, 0.0038440139, 0.0225806572, -0.00917729083, -0.0120076695, 0.0241089053, -0.0286312755, -0.00920068193, -0.00695119333, 0.0100115901, 0.0249821916, 0.00936442334, -0.00755547546, -0.00821043923, -0.0176996179, -0.00596095063, -0.00561787421, 0.0146041336, 0.0172785688, 0.0157191325, 0.0126236482, 0.00664320448, 0.000642293366, -0.0167795494, -0.00204676203, 0.0122415861, 0.00661201589, -0.00324752904, -0.0167171713, -0.00103312742, -0.0169198979, 0.00821043923, 0.0185105242, 0.0208028983, 0.0172629748, 0.0101207504, -0.0180582888, -0.00828841142, 0.0135359187, 0.00998040102, 0.0138010234, 0.00589467445, 0.00147269398, 0.0127717946, -0.0164364725, 0.0212551355, 0.0105651906, 0.00186352804, 0.00351068401, 0.00657692831, -0.0148926293, 0.00957494695, 0.00748530077, 0.000750966719, -0.0086782705, 0.00752038835, 0.0011793247, -0.0159842353, 0.00976987649, 0.0259802323, -0.00210329145, 0.0193682164, -0.00194149988, 0.0204598214, 0.00880302582, 0.00987903774, -0.010346869, -0.00169198983, 0.0018742492, -0.00308573735, 0.00426896056, 0.0151343429, 0.0141363023, -0.00766073773, 0.00835078862, 0.0171382204, -0.00240738178, -0.0101519395, 0.0100115901, 0.00197366322, -0.0202882849, 0.0238905847, 0.0175904576, 0.000627673639, 0.0039882618, 0.0305805728, 0.0246858988, -0.00124949939, 0.0192278661, 0.0127406055, -0.00430404814, 0.0370522402, 0.0118439291, 0.0169978701, -0.00248145522, -0.0158360898, 0.0302063078, -0.00974648539, 0.0139725618, -0.0029375907, 0.0247950591, 0.00430014916, 0.00787516, 0.00693170028, 0.0186040904, -0.0139725618, 0.00178068283, 0.0107757142, 0.0123039633, 0.0224247128, 0.0120076695, -0.0342452526, -0.00504088216, 0.0154618248, 0.00757496851, 0.0314070731, -0.013691863, -0.00978547148, 0.0261049867, 0.0140739251, 0.00776989805, -0.00169296446, -0.0189939514, -0.0198204536, -0.0108770775, -0.0165456329, -0.00518902903, -0.00932543725, 0.00246781018, 0.00328846416, -0.0150719648, 0.00187035056, -0.00799991563, 0.00831180252, -0.00490053277, 0.01070554, -0.00842096377, 0.00125242339, -0.00578161515, 0.0130602904, -0.00442880299, -0.00550091639, -0.0134111643, 0.00571533898, -0.0254188348, -0.000800673792, 0.0213019177, -0.00201362395, -0.01070554, -0.00488103973, -0.000204919852, 0.00699407794, 0.0135359187, 0.00324168103, -0.0174033251, -0.00763344718, -0.0124053266, -0.00697068637, 0.00700187497, -0.00611299556, 0.013652877, -0.0145261614, 0.000951744325, 0.000831862504, -0.0161245856, 0.00945799, 0.0122961663, -0.0057933107, 0.00325337681, 0.00572703499, -0.0010721134, -0.0220504478, 0.0025087453, -0.0108536864, -0.016233746, 0.00875624269, -0.00112961768, 0.000775332912, 0.00733715435, 0.000243662129, 0.00648336206, -0.00522411615, 0.00739953155, -0.0200075861, 0.0138634006, -0.0186664686, -0.0371458046, -0.00211693672, -0.0844591409, -0.010689945, -0.0017183054, 0.0290991068, 0.0159608442, -0.00714612287, 0.0259022601, -0.00997260399, 0.0102221137, 0.00237814244, 0.0130680874, 0.00507596973, 0.00675626379, 0.0126392422, 0.00969970226, -0.0184325539, 0.00383426738, 0.0217073727, -0.0110408189, -0.0132006397, 0.0133955693, 0.0140505331, 0.00528259529, -0.00423387345, 0.0042065829, 0.00953596085, -0.00780498562, -0.00865487941, -0.0022183, -0.0132630169, -0.0082026422, 0.00201362395, -0.00591026852, -0.0135982968, 0.0153370695, -0.00960613601, 0.0208652765, -0.0161401797, -0.0115476362, -0.00488883723, -0.00301361317, 0.00603112532, 0.0183545817, -0.0160310194, 0.0048420541, 0.00901354942, 0.0100349812, 0.00101948238, -0.0101441424, 0.014783469, -0.0104092462, 0.00492392434, -0.00338592893, -0.0124988928, 0.0133331921, 0.0100271842, -0.00674066925, -0.015508608, 0.00285766949, 0.012919941, -0.00315591204, -0.0130368993, 0.00722799357, -0.0108302943, 0.00393952942, 0.00172707718, 0.000685177918, -0.00756327249, -0.0278515574, 0.0125300819, -0.0139023867, -0.00899015833, -0.00835858565, 0.00693949778, -0.00842096377, 0.00462763105, -0.00258866651, -0.00745411217, 0.00140446855, 0.0105729876, 0.0197736695, 0.00300581614, 0.0273525361, -0.00316175981, 0.00335474033, 0.00182259281, -0.0282726046, 0.0115320412, 0.0018196688, -0.0195553489, 0.00369001948, -0.0120310616, -0.0105729876, -0.0348690264, 0.000468805956, -0.000315298792, -0.00810127892, -0.0049551134, 0.0191343, 0.00341127, 0.0158438869, -0.00124949939, 0.0212707296, -0.00508376677, 0.0237034522, -0.0321556032, 0.0194461867, -0.0112123564, 0.0141830854, 0.0117035797, 0.0149472104, 0.0111265881, 0.00720460201, -0.00511495536, 0.0436330661, -0.00558278663, 0.0126158511, -0.00615977868, 0.0021383788, -0.00430014916, -0.00217931415, -0.0280075, 0.000657400466, -0.0235475078, 0.00350678549, -0.00281088636, -0.0238749906, -0.0223779306, -0.0146431196, -0.0121402219, 0.0076061571, -0.00759056304, 0.000672020193, -0.00791804492, -0.0041013211, -0.00744631467, -0.00805449579, 0.0125144869, -0.0227210075, -0.0115554333, 0.00852232706, -0.0105963787, 0.00573873054, 0.0069862809, -0.0307053272, -0.0292706452, 0.011087602, 0.00876404, -0.0107835112, -0.00615588, 0.00576602062, -0.0222999584, -0.00672897371, 0.00504088216, 0.00218321267, 0.0104716243, 0.0226118453, -0.0086782705, -0.02212842, 0.00548142334, 0.0134033663, 0.00530988537, -0.00940340944, 0.0107913082, -0.00927085709, 0.0141986795, -0.0099102268, 0.00561787421, -0.00692000473, -0.00138887414, 0.0127795916, 0.0280542839, -0.0122415861, 0.0135047305, 0.0037465489, -0.0208964646, 0.00204871129, -0.0244675763, 0.0215514284, 0.0166703891, 0.0225650631, 0.0227210075, -0.0223779306, -0.0137932263, -0.0169043038, -0.0207717102, 0.00794143602, 0.021442268, -0.00799991563, -0.000704670907, 0.00635080971, -0.000890341413, 0.00814026501, -0.0148614412, 0.00907592755, -0.0115710273, 0.00460813846, 0.0341516845, 0.00712663028, 0.0110486159, 0.0209432486, -0.00768802781, 0.016233746, 0.00441710697, -0.0245767385, -0.00651455065, -0.0179647226, 0.011804943, -0.0162961241, 0.0188068189, 0.0153994467, -0.0176060516, -0.00464322558, -0.00686932309, 0.0168263316, 0.00738393748, -0.0173877291, 0.0158984661, 0.014011547, 0.00933323428, 0.0190407336, -0.0106197707, 0.00562956976, 0.0133643812, 0.00638199877, 0.00590247149, 0.0137542402, 0.0206157658, -0.0119998725, -0.0173721351, 0.00682254, 0.0176840238, 0.0297696646, -0.0173877291, -0.0179335326, 0.00217346614, -0.00353407557, 0.0358358771, 0.0102688968, 0.0163896903, 0.0353368558, -0.00921627693, 0.00778939109, -0.00552430796, -0.00900575239, 0.0161869638, 0.00942680053, -0.0130914794, -0.00954375882, 0.000495121465, 0.0128497668, -0.0101675335, -0.0194305927, 0.0257775038, 0.0219256934, 0.0213487018, 0.000527772179, 0.00408182805, -0.00526700076, -0.00412471266, 0.00249899877, 0.00835078862, 0.0238749906, -0.0250757579, -0.00734105287, -0.00405843649, -0.00275630597, -0.0109004695, 0.00539175561, -0.00552040944, -0.00176118989, 0.000775820226, -0.000620363804, -0.0127951857, -0.00722799357, -0.00549701788, 0.00623385189, 0.0110252239, -0.00576212211, -0.0111655733, -0.00305649778, -0.00895117223, 0.00126314454, 0.0038069773, 0.00632741814, -0.0117815519, -0.00928645115, -0.0266040061, -0.00515394146, -0.00907592755, 0.00870166253, -0.0145885395, -0.0105028125, -0.0190719217, -0.0270250551, 0.00856911, -0.0180270988, 0.00180212513, -0.0169043038, 0.00904473849, 0.0149004273, -0.0176528338, -0.00763734616, -0.00190446328, -0.0133098, -0.0273525361, 0.00866267644, -0.0182922035, -0.000880594947, -0.0269158948, -0.0114852581, 0.0210991912, -0.0226430353, 0.00538785709, -0.00462763105, 0.00151557848, -0.0054307417, -0.0203818511, -0.0013664572, 0.0184949301, -0.0161713678, 0.0249665976, 0.0115320412, -0.0171226263, 0.00578551367, -0.00839757174, 0.0109394556, 0.00574652757, 0.00466271862, -0.0320308506, -0.011804943, -0.014409204, -0.0113059226, -0.021426674, -0.00374849839, -0.00419488735, -0.0267599504, -0.000477334135, -0.0117035797, -0.0123897325, -0.0257931, 0.0205222, 0.00324557954, 0.00244636787, 0.025886666, -0.0174968913, -0.0149472104, -0.0112747345, -0.0050603752, -0.0161089916, -0.00770362187, -0.0153214755, 0.00284987222, 0.0103312749, 0.00548142334, -0.00339372619, 0.00787905883, -0.0187912229, 0.0295825321, -0.00904473849, 0.00754378, -0.00276605249, -0.017356541, -0.0198984239, -0.0220504478, 0.00335084158, 0.0141986795, 0.00176801241, -0.0158984661, 0.018089477, -0.0100505762, -0.0353368558, 0.000980983721, 0.0791570544, -0.0100817643, 0.0226118453, -0.0429469123, 0.00355356862, -0.0314850472, -0.00800771266, 0.0418553054, 0.00683423551, 0.00860809628, -0.0145261614, 0.0232668091, -0.002953185, 0.00286156801, -0.0122727742, -0.0152746923, 0.00251264405, -0.0197736695, -0.0223935246, -0.022518279, 0.00612079306, -0.0134189613, 0.0143546239, -0.019945208, -0.00417149579, 0.00726308068, -0.00757107, -0.0189003851, -0.0118517261, -0.0016695729, -0.00443270151, 0.0267287623, 0.00179725187, -0.0118439291, -0.0206313599, -0.00864708144, 0.0345883258, 0.00895896927, 0.0174968913, -0.0244207941, 0.0222843643, 0.0290055405, -0.00452236924, 0.0100271842, 0.0145963365, 0.0144871762, -0.00188594498, -0.00430794666, 0.014027142, -0.0172941629, -0.00511885434, -0.0242648497, -0.0237034522, 0.000742194883, 0.00280503859, 0.00722409505, 0.027321348, 0.00733715435, 0.000406428444, -0.00311107817, -0.011828335, 0.019586537, -0.0033605881, 0.00358670671, 0.00150485733, -0.0374265052, -0.00886540301, 0.00438202, -0.0168575216, -0.00495121442, -0.0204286333, -0.00330405845, 0.0135359187, -0.0168731157, 0.0103156799, 0.000423484802, -0.0218477212, 0.00268808077, 0.00782058, -0.0109628467, -0.021052409, 0.00980886258, -0.00154189405, -0.00960613601, -0.0220192596, -0.00467831315, -0.00545413326, -0.01624934, 0.000917144294, 0.0193058383, -0.00220660423, 0.0234851316, -0.0338397957, 0.00854571816, 0.0218789112, -0.000275094557, -0.01624934, 0.0222999584, 0.0177931841, 0.0136450799, 0.0143702179, -0.0116489995, -0.03256106, 0.00224753958, 0.0117659569, 0.0325922482, 0.0157503206, 0.00980886258, -0.00345025584, -0.00237424392, -0.00350678549, 0.00303310622, -0.00695899036, 0.035087347, 0.0326546244, -0.0111187901, 0.00622215634, -0.00784787, -0.0101753306, -0.0135125276, 0.0297540706, 0.00807788689, 0.015867278, 0.0161401797, 0.0153760556, -0.0123273544, 0.00499409903, 0.0164832566, -0.00821823627, -0.00313057122, 0.00611689407, -0.0043196422, 0.00275825546, -0.00848334096, 0.0275240745, 0.00812467, 0.00785176829, 0.0136216879, 0.00717341341, 0.0189003851, 0.0243428219, 0.00666269753, 0.00538395857, 0.0177464, -0.00428065658, -0.00119491911, -0.00349119096, -0.0182610154, 0.0149082243, 0.0292550512, -0.00280113984, 0.0157659147, 0.0111187901, -0.0175280795, 0.00278359628, -0.00104482321, -0.0283661708, -0.0205377936, 0.0237502363, 0.00934882835, 0.00950477272, -0.000404479157, 0.0174033251, 0.00242297631, 0.0181206651, 0.0177931841, 0.0115788244, -0.0178555604, 8.81447777e-05, 0.00188302097, 0.00717731193, 0.0160466135, -0.00717731193, 0.00449118065, -0.00303115696, 0.0120778447, -8.53426609e-05, -0.0187444407, -0.0182766095, -0.00215397333, -0.00198146049, 0.00409352407, 0.00297072879, 0.0431340449, -0.00275435671, -0.00962173, 0.017356541, 0.0145963365, 0.0156255662, 0.00142006297, -0.00224559032, 0.0269002989, 0.00378748425, -0.0123819355, 0.0109004695, -0.00895117223, 0.0351497233, 0.000426165061, -0.00987124071, -0.0139959529, 0.0227989778, 0.00542294467, -0.00986344367, -0.0189471673, 0.00594925461, 0.00635860721, 0.0180115048, 0.00103020354, 0.00709154271, -0.00828061439, -0.00945019256]
31 Jan, 2023
Angular PrimeNG Splitter Templates 31 Jan, 2023 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will know how to use the Splitter Templates in Angular PrimeNG. The Splitter Component allows a user to split two-element using a splitter & utilized it separately and resize panels. This article will show Splitter Templating in Angular PrimeNG. The templates are used to put some content on some pre-structured containers. Creating Angular application & module installation: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: It will look like the following: Steps to run the application: Run the below command to see the output ng serve --save Example 1: This is the basic example that illustrates how to use the Splitter Templates using horizontal Template. app.component.html: HTML <h1 style="color: green">GeeksforGeeks</h1> <h5>Angular PrimeNG Splitter Template</h5> <p-splitter [style]="{ height: '300px' }" layout="horizontal"> <ng-template pTemplate> <div class="p-col p-d-flex p-ai-center p-jc-center"> GeeksforGeeks 1 </div> </ng-template> <ng-template pTemplate> <div class="p-col p-d-flex p-ai-center p-jc-center"> GeeksforGeeks 2 </div> </ng-template> </p-splitter> app.component.ts: Javascript import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html" }) export class AppComponent {} app.module.ts: Javascript import { NgModule } from "@angular/core"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { SplitterModule } from "primeng/splitter"; @NgModule({ imports: [ BrowserAnimationsModule, SplitterModule, ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule {} Output: Example 2: This is another example that illustrates how to use the Splitter Templates using vertical Template. app.component.html: HTML <h1 style="color: green">GeeksforGeeks</h1> <h5>Angular PrimeNG Splitter Template</h5> <p-splitter [style]="{ height: '300px' }" layout="vertical"> <ng-template pTemplate> <div class="p-col p-d-flex p-ai-center p-jc-center"> GeeksforGeeks 1 </div> </ng-template> <ng-template pTemplate> <div class="p-col p-d-flex p-ai-center p-jc-center"> GeeksforGeeks 2 </div> </ng-template> </p-splitter> app.component.ts: Javascript import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html" }) export class AppComponent {} app.module.ts: Javascript import { NgModule } from "@angular/core"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { SplitterModule } from "primeng/splitter"; @NgModule({ imports: [ BrowserAnimationsModule, SplitterModule, ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule {} Output: Reference: https://primefaces.org/primeng/splitter Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates
https://www.geeksforgeeks.org/angular-primeng-splitter-templates?ref=asr10
Languages
Angular PrimeNG Splitter Templates
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0305452235, -0.0153037487, -0.0145486807, 0.0125170024, 0.0539289787, 0.0205814391, 0.00125325716, 0.0134355389, -0.0206748508, 0.0391701236, 0.00176312262, 0.00245786295, 0.0035437597, -0.0470788777, -0.0117930714, -0.0378623754, -0.0438406467, -0.00612617, -0.0336589068, -0.0231813639, -0.0150857903, -0.00639472483, -0.0501302853, -0.0130852498, -0.0114116454, 0.0431556366, 0.0071225483, 0.000559976324, -0.0052037416, 0.0237418283, 0.0135678705, 0.00707584294, 0.00301443366, -0.00925542, -0.0486045815, -0.0144941909, 0.00814227946, 0.052341, 0.00651927246, 0.0192425568, -0.0217646398, -0.010866751, 0.000613979239, 0.0152414748, -0.0126804709, 0.0105242459, 0.00829796307, -0.0326625258, 0.0197096094, -0.00339780585, 0.0121044395, 0.0398239978, 0.0264507309, 0.0255633313, 0.00885842647, 0.0329738967, -0.000764311699, 0.0371773653, -0.0213909969, 0.0292997509, 0.0068734535, -0.0468297824, 0.000935077725, -0.00678393524, 0.00711087184, 0.0211419035, 0.0143307224, -0.0191335771, 0.00416455, -0.00702524558, -0.00682285614, 0.0167049058, 0.0114583513, -0.00686566951, -0.040882647, -0.0167516116, 0.0147121493, -0.0429376774, -0.0457711294, 0.0145097598, -0.0423772149, 0.0307787489, -0.0254543535, 0.0189311877, 0.0339080021, -0.0148600489, 0.0118242083, -0.037955787, -0.00189642713, 0.0102985045, -0.0322577469, 0.0218424816, 0.00738331908, -0.0254076477, 0.0142606646, 0.0111158462, 0.0344373249, -0.00173393183, -0.0200521145, -0.035122335, 0.00323628355, 0.0188533459, -0.0297200978, -0.0413497, 0.0256100371, 0.0236017127, 0.0496632345, -0.00872609485, 0.0226053335, -0.0407892391, 0.00365857664, 0.00479896273, 0.0362432636, 0.0119721089, -0.0379246511, 0.00996378344, 0.000371695816, -0.0665082559, 0.0125014344, -0.0177791268, 0.00242672605, 0.0071186563, -0.0190401673, 0.0272602886, -0.0270890351, 0.0602186173, -0.0172965061, 0.0158564262, 0.0207059868, 0.00201221718, -0.00137975044, -0.00453040795, -0.0267153941, -0.0106020886, 0.011201472, 0.054987628, 0.0124469446, -0.00111022231, -0.0562642403, 0.0205503032, 0.018106062, -0.0334098116, 0.0175300315, -0.00478339428, -0.00207059877, 0.0171096846, 0.0187599361, 0.0724865273, -0.0143852122, 0.0487291291, -0.0493207276, -0.0177791268, 0.0077725295, 0.0121200085, 0.0484488979, -0.0405090079, -0.0140894121, 0.0177324209, 0.000871831, -0.011590682, 0.0279608667, 0.0106098726, -0.0035807346, 0.0156229008, -0.0276027936, -0.00851592142, 0.026388457, 0.00400108192, -0.0417544805, 0.0323511586, 0.0413808376, 0.00116179266, -0.00300275744, 0.000261014153, -0.0638304874, -0.0382671542, -0.0344996, -0.0241621751, 0.0501925573, 0.00131358474, -0.036118716, -0.0218113437, 0.00244618673, 0.00700967712, 0.00439418433, 0.0263417531, 0.0473591089, -0.0305763595, -0.0450238474, -0.00983145181, -0.0135133816, 0.0133265601, 0.0157240964, 0.0309655704, 0.0126104131, -0.0299069192, -0.0471411496, -0.0253142379, -0.0113182347, 0.0183707252, -0.00229439465, 0.00217957771, -0.0268555097, 0.0253453739, -0.0019548086, 0.0167827476, -0.0141750388, -0.0271824468, 0.0304518137, -0.0444945209, -0.00375782535, -0.0123146139, 0.00371112, 0.0279608667, -0.0229634065, 0.0096446313, -0.0253453739, 0.018432999, 0.00902189407, 0.00473279692, -0.0318062641, 0.050970979, 0.0152570428, 0.0203479137, -0.0489470847, -0.018448567, -0.0243957, -0.00935661513, 0.01303076, 0.0189934615, -0.0116918767, 0.0178569686, 0.00453040795, -0.00130580051, 0.0257968586, -0.0103296414, 0.012291261, -0.00815784745, -0.0142061757, 0.0558594614, 0.0220915768, -0.00566301, -0.0249094591, -0.0122212032, 0.023866374, -0.000380209793, 0.00644143, 0.0348109677, 0.00411395263, 0.000408914057, -0.0101038991, 0.0199275669, -0.0135834394, -0.00470944447, 0.0101817409, 0.0145175438, 0.0330050327, -0.0143307224, 0.0211263336, 0.0269333515, 0.0165336523, -0.00840694178, -0.00325963623, 0.0549253561, 0.022402944, -0.0232747756, -0.00461214175, -0.0111080613, -0.0034133743, 0.0249717329, 0.0367103145, -0.0352468826, 0.0309188645, -0.00319347042, -0.0135445176, -0.00750008225, -0.00658543827, 0.00448759459, 0.0288171303, 0.0315883085, -0.00661268272, -0.0152103379, 0.0098080989, 0.00269528129, 0.0224963538, -0.0522164516, 0.0324757062, 0.00791264512, 0.0229634065, 0.00441364478, -0.0163312629, -0.000624196, 0.0132798553, 0.0141672548, 0.0407892391, 0.00990929361, 0.0187755041, -0.00367803732, 0.0262327734, -0.00623514876, -0.0144241331, -0.0149301067, -0.0084147267, -0.0108200461, -0.0640795827, 0.0391389877, -0.00285291136, 0.00216011703, -0.0479818434, -0.0119798928, 0.0313236453, -0.0238352381, -0.0418167524, 0.0105398148, -0.0458956771, -0.00764019787, 0.0254854895, 0.0320709273, 0.00410227664, -0.00287237181, 0.0495698228, -0.0107966932, -0.0379246511, 0.0442454256, 0.0693728402, -0.0242088791, -0.0109368088, -0.00596659351, 0.0278674569, -0.024956163, -0.0246759318, -0.0322888866, -0.00900632609, -0.00864825305, 0.0109990826, -0.000376560958, 0.0161911473, -0.0578833558, -0.00938775204, 0.00720428256, -0.0450549833, -0.0266686883, 0.0300937388, -0.00109465397, 0.0251896903, -0.0480129793, 0.0161288735, 0.0121044395, 0.0471100137, 0.0178569686, 0.00146732281, 0.0159264859, 0.0631143376, 0.00859376322, 0.0414742492, -0.0584749542, -0.00989372563, -0.00775696104, 0.0157552324, -0.0276650675, -0.00781923439, -0.0172965061, -0.0439029187, 0.049133908, 0.0363989472, -0.0189934615, -0.03037397, 0.00566301, -0.0351846106, -0.0173432101, -0.0380492, 0.00140991423, 0.00809557363, 0.00362160173, -0.0371462293, -0.0012659065, 0.0319775157, -0.00778031349, -0.00253375899, 0.0157085266, -0.0478572957, 0.0422215313, 0.022060439, 0.00927098934, 0.0239286479, 8.26463729e-05, 0.0205035973, -0.00327715068, -0.00611060159, 0.013007408, 0.0351534747, 0.0529325977, 0.0230568182, -0.0126181971, 0.0170318428, -0.0351846106, -0.0295177083, -0.000277312327, 0.0607479401, -0.0141516859, 0.0340948217, -0.0058576148, 0.0127427448, -0.00283928914, 0.0370839573, 0.00278285355, -0.011933187, 0.0142918015, 0.0324757062, -0.011902051, 0.0197407454, 0.0152259069, -0.035028927, 0.0250495747, 0.0486668535, 0.0215778183, 0.0274159722, 0.0535864718, -0.00567857828, -0.0259369742, 0.0354337059, 0.00446813414, -0.0428131334, 0.0129139973, -0.00829017907, 0.0171875264, 0.00306113902, 0.0353714302, 0.0225430597, -0.00184972188, -0.0376755558, -0.000509865466, -0.00740277953, -0.0152570428, -0.00799437892, -0.0316661485, 0.0135523025, -0.0152570428, 0.0157318804, -0.00169501081, -0.0024442405, 0.0122679081, 0.040104229, -0.0301404446, -0.0713033229, -0.0239753537, -0.0397928581, -0.0278674569, -0.0151402801, 0.00624682521, -0.0185886826, -0.0136690652, -0.058225859, -0.0112870988, 0.0106487935, 0.0157163106, -0.00817341637, -0.00772582414, 0.00873387884, -0.018432999, -0.0323200226, 0.0306230653, 0.0268710777, -0.00707584294, 0.0116996616, -0.0103763463, -0.0159731898, 0.02744711, -0.00301637966, 0.028209962, -0.0148522649, -0.00288210227, 0.0387342088, 0.00209395145, 0.0382360183, 0.00593156461, 0.0225430597, -0.0146109546, 0.000914157659, -0.00839137379, 0.0175144635, 0.0283345096, 0.0529637374, -0.017016273, -0.00234304601, -0.0139415124, 0.00536720967, -0.0105164619, -0.00656987, 0.0331607163, 0.0381114706, -0.00521541806, -0.0482620746, 0.0222628284, 0.00294048362, -0.00746505335, -0.0160821695, -0.0241621751, 0.0265752785, 0.0115206242, 0.0152959647, 0.031105686, -0.00474058138, 0.0466741, 0.0212664492, 0.00190615735, -0.0185575467, -0.0184952728, -0.0298757814, -0.0201143883, -0.02606152, 0.0127427448, -0.000561922381, 0.0127271768, -0.0074455929, -0.0217490718, -0.0113415876, 0.0496943705, -0.00116957689, -0.0224963538, -0.00929434132, -0.0054917573, -0.0112481769, 0.0161133055, 0.0200676825, 0.0201299563, 0.0135600865, -0.0224340819, 0.0279764347, -0.0142762335, -0.0117852874, 0.0149301067, 0.0344061889, 0.0716769695, -0.00800994784, -0.0204413235, -0.00248510763, 0.0179348104, -0.0206904188, 0.00470166048, -0.0118008563, 0.0151091432, -0.0288482662, -0.0138714546, -0.012306829, 0.0248471852, -0.0109912986, -0.00702913757, 0.0179970842, 0.0270267632, -0.00673333788, 0.0342193693, -0.00258046412, 0.0109912986, -0.0165959261, -0.0258279946, -0.0495075472, 0.00355932815, 0.0117775034, -0.0240376275, 0.0285057612, -0.00945781, 0.0217490718, 0.0221382808, -0.0177791268, -0.0187287983, -0.00208811322, 0.0160043277, -0.0121822823, 0.0319775157, 0.00644143, -0.00158116675, -0.00590432, 0.0265285727, 0.00140504912, 0.0122212032, 0.0485734455, -0.0117775034, -0.0113026667, 0.00359630305, 0.0064686751, -0.00879615266, 0.00550343329, -0.0202700719, 0.0131008187, -0.026388457, 0.0397617221, -0.0262016375, -0.0448370241, -0.00561241247, 0.0155061381, 0.00809557363, 0.020939514, -0.0159342699, -0.00636748038, 0.020628145, 0.00774528459, 0.013015192, 0.0240843333, -0.00110146508, 0.0105008939, 0.00656597735, 0.00670998544, 0.0103763463, -0.0344684646, -0.00118028023, -0.004876805, 0.00537499413, 0.0174677577, -0.0106721465, -0.0468297824, -0.0225586277, 0.0321020633, -0.0117230136, 0.0381737463, -0.0270579, 0.00879615266, -0.00535942568, -0.00489237346, -0.0165025163, 0.0129451342, 0.00577588053, 0.0536176078, 0.012633766, 0.00923985243, -0.0199119989, -0.0123379659, -0.021686798, -0.0109134568, 0.000104965147, -0.000997351366, 0.00718482211, -0.0155061381, -0.0250651427, 0.0090686, 0.00164052134, -0.00203167764, 0.0291284975, 0.00601719087, 0.00428131316, 0.0240220595, 0.00787761621, -0.000423752703, 0.0561708286, -0.0131008187, 0.022029303, -0.0297823716, 0.0251274165, 0.0415053852, 7.7963683e-05, -0.0323822945, -0.00920871552, -0.000716146955, 0.0184952728, 0.000852857, -0.0276027936, 0.00884285755, 0.00819676835, 0.0289728139, 0.0061417385, 0.00546451239, -0.0107344193, 0.0135445176, -0.00762852142, 0.0220915768, 0.0158797801, 0.0071186563, 0.0307476129, 0.00839137379, 0.0328804851, -0.00338807562, -0.000785718265, 0.0270267632, 0.0311523918, -0.0103529934, -0.0397928581, 0.00746505335, 0.00393102411, 0.00998713635, 0.0120032448, -0.00306308502, 0.0266531203, 0.0356516615, 0.00857041, 0.00432023406, -0.00593934907, -0.026030384, -0.0267465301, -4.18401069e-05, 0.0102128778, 0.0211574715, -0.00874944683, 0.0249717329, -0.018059358, 0.00670998544, -0.0267621, -0.0128750764, -0.0174833257, 0.00815006346, -0.0010411375, 0.00509087043, -0.0268399417, -0.0140738441, 0.0111002773, -0.00454597594, 0.0236795545, 0.00074485119, 0.0344061889, -0.00903746299, -0.00445256568, 0.00466663158, 0.0226831753, 0.0185419787, 0.0439029187, -0.0190246, 0.0401665, -0.0117930714, 0.00611838559, -0.0454286262, -0.00897518918, -0.0074417009, -0.00119974068, -0.00114719733, -0.0262794793, -0.0336900428, -0.00588485971, 0.0195850618, -0.0494764112, -0.0038668043, -0.00787761621, -0.016611496, -0.00830574799, -0.0116451718, 0.00893626828, 0.00233915378, -0.0355582535, -0.00456932886, -0.00206086854, -0.0207526926, -0.00387653452, 0.0124469446, -0.00986258872, -0.00677225878, 0.000574571663, 0.0223873761, 0.013022976, -0.0165492222, -0.0333786756, 0.0253920797, 0.00178161007, 0.00292102317, -0.00791264512, 0.0365234949, 0.00647645909, 0.000114208895, -0.0116840927, -0.0213754289, 0.0265597105, 0.0261082258, 0.019880861, 0.0149612436, -0.00649981201, -0.0246447958, 0.0319152437, -0.00805665273, -0.00494686281, -0.0255944692, -0.0131553076, 0.0085003525, -0.0178102627, -0.00266414438, 0.0363678075, 0.0134199709, 0.00315454928, -0.00799437892, -0.00821233727, -0.0189623255, 0.0027653391, -0.0178569686, -0.0197718833, -0.0147432853, -0.0164713785, -0.000462187221, -0.0344061889, 0.0110380035, -0.00757014, 0.0396994501, -0.00405946327, 0.0302027185, 0.0380180627, 0.0109679457, 0.0376444198, -0.0246915, 0.00974582601, 0.0156773906, -0.0478572957, -0.0120733036, -0.00839137379, -0.0362121239, -0.0466429591, 0.00217373949, -0.0272602886, 0.00216400926, 0.0602186173, -0.0165025163, -0.0170474108, -0.0295021404, 0.0151091432, -0.0239909217, -0.00881172065, 0.000997351366, -0.000858208688, -0.0287548564, 0.0139960023, 0.0272602886, 0.00282177469, 0.0411006063, 0.0130930338, -0.0263573211, 0.0149301067, 0.00266803661, -0.00840694178, 0.0128828604, 0.0351534747, -0.0244579744, -0.00829796307, -0.00888956338, 0.0183395892, 0.010135036, -0.0103218565, 0.000834369566, -0.0316817164, -0.0317439921, 0.0188844837, 0.00625460921, 0.00203946186, -0.00472112093, 0.0211107656, 0.0185731146, 0.0176701471, -0.0231813639, 0.0402910486, -0.0120421667, -0.0325068422, 0.00783480331, 0.0045498684, -0.00452651549, 0.00291518494, 0.0237106904, 0.0280542783, 0.0291284975, 0.0527457781, -0.000897616206, 0.0437783748, -0.0150624383, 0.00688902196, 0.0123535348, 0.0278830249, 0.0117307985, 0.00807222165, -0.00151500106, 0.00617287494, 0.00979253091, -0.0103685623, 0.0158252902, 0.0142217437, -0.00765576633, -0.0186820943, -0.00531272031, 0.0106176566, 0.000624196, -0.000998324365, 0.0010421105, 0.00721595855, -0.00987815671, -0.0190401673, -0.019149147, -0.0129684871, -0.00478728674, 0.00117054989, 0.0162222851, -0.00875723176, -0.0155139221, 0.00836023688, 0.00817341637, 0.007406672, 0.0019557816, -0.0284746252, -0.0334409475, -0.012664903, 0.00504805753, -0.0160977375, -0.020986218, -0.0484488979, 0.00253570499, 0.0201143883, 2.06159821e-05, -0.00912308879, -0.00586539926, -0.0128205866, 0.0142450966, 0.00648813555, 0.0112481769, -0.0112170409, 0.0252675321, -0.0230568182, 0.00739110354, 0.0003819126, -0.018448567, 0.00732882973, 0.000564354938, 0.0210329238, -0.0158564262, -0.0139726494, -0.00161619578, -0.0179970842, -0.0250028688, 0.033970274, 0.0191180091, -0.0315416, -0.0381737463, 0.0343439169, -0.0179192424, 0.0241154693, -0.00682674861, 0.013723555, -0.00945781, 0.0277117733, -0.00500135217, 0.0131319547, -0.00530104432, 0.0250962786, 0.00732493773, -0.00846921559, 0.000452456967, -0.0161755793, -0.0168294534, 0.0265597105, -0.0619622767, -0.0106565775, 0.00767911877, 0.0271980148, 0.0101583889, -0.00127174461, -0.00623514876, -0.046238184, 8.99288625e-06, 0.00847700052, -0.00639083283, 0.0162845589, -0.000546353927, -0.00116763089, 0.0102440147, -0.00957457349, 0.00629353058, -0.0245046802, -0.0218580496, 0.0143385073, -0.000521541806, -0.000492837513, -0.0055306782, -0.0342505053, -0.00287237181, 0.000846532348, 0.0174677577, 0.00637137238, 0.0161133055, 0.00204335409, 0.0274315402, -0.036118716, 0.00232747756, -0.0196006298, 0.00613395404, -0.010150604, -0.00396605302, 0.0147977751, -0.00197426928, -0.0138091808, -0.00204724609, 0.00478339428, 0.0243957, -0.00324406778, 0.00147608, -0.0269956253, 0.0319152437, -0.0413497, 0.0172809362, -0.00632855948, -0.0288638342, 0.0374887362, 0.0116685247, -0.0001345208, -0.00410616864, 0.00215427903, -0.00750786625, -0.019522788, 0.0457399935, -0.00380063849, -0.0167671796, 0.00391545566, -0.00655430136, 0.00962127838, 0.00471722847, 0.0346864201, -0.00648424355, 0.0185419787, 0.0197563134, 0.0110613564, -0.0143618593, 0.0224496499, -0.00102070393, -0.00091318466, 0.00112870988, 0.0349355154, 0.00690848241, 0.0186198205, -0.00937996805, 0.0192581248, -2.81113207e-05, 0.0108044771, 0.0115361931, -0.0123146139, -0.00235277624, 0.0213754289, 0.0132720713, 0.0097224731, -0.00267192861, -0.0125092184, 0.0224807858, 0.0103919143, -0.0240064897, 0.0150235174, 0.0156773906, 0.00312535861, 0.000278528605, -0.0114817033, -0.00655430136, -0.03037397, -0.00765965832, -0.0129217813, 0.00989372563, 0.00461992621, -0.0091931466, -0.00248705363, -0.00668274052, -0.00481842319, -0.00243256427, 0.0277429093, 0.011201472, -0.0189778935, -0.0118553452, -4.6097095e-05, 0.0124313766, -0.00456543686, 0.000715173897, 0.00310395216, -0.00702135358, -0.00201610918, -0.0114116454, -0.0220915768, -0.0205347352, -0.0316194445, 0.00656208536, 0.0246447958, -0.00937218405, 0.0270267632, -0.00623514876, 0.00490015745, -0.00584593834, 0.0230256803, 0.0125870612, -0.0207526926, 0.0098392358, -0.0200676825, -0.00110049208, 0.0183551572, 0.0373019129, -0.00973804109, 0.00252986676, -0.00186918245, 0.0146420915, 0.0107266353, 0.0453974865, 0.0434670039, -0.00237029069, -0.020597009, -0.00956678856, -0.0225274917, 0.0113260197, -0.0333164, -0.00576809654, 0.0161911473, -0.0180437881, -0.00652316445, 0.00437472342, 0.023523869, -0.00217179349, 0.0731715336, -0.00184680277, -0.000790096878, -0.024613658, -0.00314481906, -0.0317906961, 0.000558030268, 0.0359630324, 0.0137624759, -0.0314948969, -0.00199664873, -0.0192425568, 0.00488848099, -0.00194994349, 0.00449927105, -0.0198497251, 0.00184485677, 0.0222628284, 0.0138325337, -0.0232280698, 0.00988594163, 0.0139337284, 0.0311990958, 0.0180126522, -0.0216712281, -0.0575097129, -0.000950159621, -0.0156229008, -0.0319775157, -0.000338612939, 0.00352819124, -0.00337639917, 0.0432179086, -0.00637526438, 0.0143073704, 0.0176390111, 0.00267192861, -0.00917757861, -0.0105631668, 0.000477755617, 0.010150604, 9.65119907e-05, 0.0102050938, -0.0278985929, 0.00278674555, -0.00351067679, -0.0205347352, -0.0249717329, 0.00671776943, 0.0113104507, 0.00385123584, -0.0208149664, 0.00916201063, -0.00897518918, -0.0256256051, 0.00166971213, 2.0692e-05, -0.0162845589, 0.0262327734, -0.00676058279, -0.0139882173, 0.0118553452, -0.00957457349, -0.0112403929, 0.0236172806, 0.011201472, 0.00619622786, 0.0134121869, -0.0227454491, 0.00670609344, 0.0352468826, -0.0168138836, -0.0162222851, -0.000697172945, 0.00595880952, 0.0150624383, -0.00261743926, 0.00593545707, 0.00574474363, -0.0210329238, -0.019491652, -0.0225897655, -0.0191180091, 0.0312146656, -0.00504027307, -0.0114739193, -0.00277312333, -0.0171563886, 0.0112481769, -0.0269800574, -0.00172906672, -0.0276027936, -0.0208928082, -0.0252052583, 0.00202389341, -0.0131942285, -0.00370917399, 0.00274587865, -0.00966019928, -0.0129840551, 0.0222783964, 0.0150935752, -0.0119954608, 0.0113805085, 0.010150604, 0.0025999248, 0.0331607163, -0.00018159092, -0.0203012079, 0.0186976623, 0.00940332096, -0.00141769846, -0.0113805085, 0.000887399481, -0.0187132303, 0.0178725366, 0.00264663, -0.011917619, 0.00828239508, 0.0100727621, -0.019522788, 0.0111703351, 0.0213598609, -0.0145953856, 0.0124702975, -0.0147199333, -0.00132526108, 0.0279452987, 0.00101973093, 0.0110380035, 0.020628145, 0.0136067914, -0.00385123584, -0.00294826785, -0.0100182733, -0.00885842647, -0.0308410227, 0.0182150416, 0.00758960051, 0.0114817033, -0.0105631668, 0.0194138084, -0.00953565165, -0.0266998261, -0.0142840175, -0.01156733, -0.010851183, 0.0413808376, 0.0202077981, -0.0132097974, -0.0143774282, -0.00149651361, -0.0151947699, 0.0100260573, -0.00717703765, 0.00389404898, -0.00494297082, 0.00823568925, 0.009769178, 0.0181527678, 0.0306697711, 0.0264351629, 0.00651538, 0.0120499507, 0.00338807562, 0.0128984293, 0.00579534099, -0.0473591089, -0.0128984293, 0.010135036, 0.0238819439, -0.00570193073, 0.00574085163, -0.0137858288, 0.0174988937, -0.0127972346, 0.00136904721, -0.0212041773, 0.00944224186, -0.0100494092, -0.0259525422, 0.00895962119, -0.00916979462, 0.00685788505, 0.0133187762, 0.00955900457, 0.0119643239, -0.018432999, 0.0135133816, 0.0061845514, -0.00603275932, -0.000231823375, 0.0183084514, -0.00153543463, 0.0275405198, 0.00948116276, -0.0084225107, -0.0213598609, 0.0146576595, -0.00472501293, 0.00793989, -0.0196473356, 0.00104502961, 0.00518817315, 0.011559546, -0.00144494325, -0.020955082, -0.0129373502, -0.00513757579, -0.0280387085, -0.000348586473, 0.00811114255, -0.0146420915, -0.00704859849, 0.00966019928, -0.0117463665, 0.00941110495, -0.0225274917, 0.00992486253, -0.0190246, -0.0153738065, -0.00149262149, -0.0229945444, -0.0206748508, -0.000567760493, -0.0205503032, -0.0125014344, 0.004152874, -0.00615341449, 0.00501692062, -0.0188066419, 0.0262794793, 0.070120126, -0.024582522, -0.00812671054, 0.0252986681, 0.00886621047, -0.0221694186, -0.0393880829, 0.00472112093, 0.0188844837, 0.0387964807, -0.0140271392, 0.0249873, -0.00415676599, -0.000184266741, 0.0155917639, -0.0160510316, -0.0242867228, 0.0240999013, -0.0172186624, 0.0244579744, 0.00142450968, -0.0203946196, 0.0086249, -0.00895962119, -0.00293853763, 0.0183862932, -0.013739123, -0.0178102627, -0.000517649692, -0.0181683358, -0.0108978879, -0.00540223857, -0.0211730395, -0.00141186034, -0.00599383842, -0.023492733, -0.0114505664, 0.0132876392, -0.0110924933, 0.0189156197, -0.0124002397, 0.00283345091, 0.0252519641, 0.018090494, 0.0134199709, 0.00597048597, 0.00905303098, -0.00606000423, -0.00248510763, 0.0283656456, -0.00248899986, 0.0137858288, -0.0190868732, 0.0399174057, -0.0108200461, 0.00549954129, 0.0176390111, -0.0134666758, 0.011917619, 0.0131397396, -0.0142217437, 0.00414119754, 0.0103685623, 0.0194605142, 0.0144864069, -0.0171563886, -0.00360019505, 0.00055705721, 0.020612577, -0.0129840551, 0.00572528318, 0.0224652179, -0.00311368238, 0.000688902219, 0.00551510975, -0.00442921324, 0.0194293782, 0.00281788246, -0.0086249, -0.0345618725, -0.0164091066, -0.0290195197, -0.00789707713, -0.0556103662, 0.0297668036, -0.0198341571, -0.00574474363, -0.0152648278, 0.00659711426, -0.00169598381, -0.0331607163, 0.0218113437, -0.0110691404, -0.00183318043, -0.0200521145, -0.0125092184, 0.00832131598, -0.00468998402, -0.000947240565, -0.0288482662, -0.0102907196, 0.0146343065, -0.012664903, -0.000466079306, -0.0116296038, -0.00369749777, -0.0146265225, -0.00496632326, -0.0476704761, 0.0154049434, -0.0149223227, -0.0110457884, -0.00859376322, 0.00186042523, -0.00379869249, 0.00882729, -0.0363366716, 0.00248510763, 0.00283539691, -0.0211263336, -0.00138364255, -0.00196064683, 0.00965241529, 0.0136612812, 0.0155061381, -0.00801773183, 0.0157396644, 0.0105709517, 5.46718838e-05, 0.0228544287, 0.00864825305, 0.0125092184, -0.0111080613, 0.0037442029, -0.0130618969, 0.0156540386, 0.00713811675, 0.0172186624, -0.0217023659, -0.00255516544, 0.0100104883, 0.00916201063, 0.0193671044, 0.0162222851, 0.00889734738, 0.00317011774, -0.00130385451, -0.015903132, -0.0304673817, -0.0074884058, 0.00066895521, -0.0277896151, 0.00328104268, -0.00364300818, 0.00192367181, 0.0187132303, -0.00633634347, -0.00699410867, 0.0330673046, 0.0121900663, 0.00796324294, 0.0241777431, -0.0306386333, 0.00784258731, -0.00600940688, 0.015552843, -0.0150935752, -0.0189778935, 0.024613658, 0.01156733, -0.0045576524, -0.00190615735, 0.0232592076, 0.00368971354, -0.0100260573, -0.0245202482, 0.00432801852, -0.0150935752, 0.00376366358, -0.0124936504, -0.00929434132, 0.0145642487, 0.0172186624, 0.0193671044, -0.00317790196, 0.0195694938, 0.0260770898, 0.009029679, -0.0221694186, 0.00447591813, 0.0169072952, 0.0108823199, 0.0109056719, -0.032133203, 0.0388898924, 0.00718092965, -0.010135036, 0.0130696818, -0.00859376322, 0.0015607333, 0.0133032072, -0.00747283734, -0.0153738065, -0.00295216, -0.00952786766, -0.00497799972, 0.00667106453, -0.000620790408, 0.00446424214, 0.0134744598, 0.00376171735, -0.00613006204, 0.0219981652, -0.001174442, 0.0115517611, 0.0332852639, -0.000517163193, 0.0204568934, 0.0135678705, -0.00160841155, -0.0283967834, 0.00400108192, 0.00746116135, -0.00334526249, 0.00494297082, -0.0224652179, -0.00161814177, -0.0309344344, -0.00479117874, -0.0197096094, 0.0138169648, -0.00369360554, 0.00990151, 0.0346241482, 0.00662825117, 0.00753900316, 0.00624682521, 0.0197563134, 0.0173432101, -0.0237885322, -0.0154360803, -0.00649591954, 0.0238041021, 0.00298329676, -0.00930991, 0.00576420454, -0.00609892514, -0.00249678409, -0.00454208395, -0.00433969451, 0.020628145, 0.0106721465, 0.0279608667, 0.0447747521, 0.00139239978, -0.00290156272, 0.0202233661, 0.00739499554, 0.0145798177, -0.00303973234, -0.00864825305, 0.00934104715, -0.00934104715, -0.0181216318, -0.00422293181, 0.0200365465, 0.000883507368, -0.0141983917, 0.00160062732, 0.0164091066, -0.0140504912, -0.00248316163, -0.00471333647, 0.00486902054, 6.90848246e-05, -0.0199119989, 0.000979350414, 0.0210951976, 0.0251741223, -0.0301715806, -0.00269138906, 0.0278985929, 0.00244813273, 0.000783285708, -0.0149690276, -0.0212353133, 0.0105164619, 0.0138558866, 0.0272291526, -0.0179815162, -0.00177966408, -0.0195850618, 0.000937996781, -0.00500913663, 0.00102265, 0.00412562909, -0.00278869178, -0.0131319547, 0.0157941543, 0.00404778682, -0.00526212296, -0.0281009823, -0.0124625135, -0.00945781, 0.0136301443, -0.0138169648, 0.0192269888, 0.0257190149, 0.00376560958, -0.00506751798, -0.0275405198, 0.0131553076, -0.0114505664, 0.0177791268, 0.00554235466, 0.00861711614, -0.00943445694, -0.0158330742, -0.00796713494, -0.0159731898, -0.0286770146, 0.00449148659, 0.022029303, 0.0025999248, -0.020597009, -0.0177791268, -0.00375004113, 0.0139882173, 0.00145272736, -0.00803330075, 0.0113182347, -0.012291261, -0.00625071721, 0.00238975114, 0.00872609485, 0.00330439536, 0.00480674719, -0.00167360425, -0.0153738065, 0.00595491752, 0.0078542633, 0.026045952, 0.00886621047, 0.0270423312, -0.00398940546, 0.00208811322, 6.5717245e-06, -0.00925542, -0.0228855647, -0.024582522, 0.0106565775, 0.00298913498, 0.00359435705, 0.0100883311, 0.00323044532, 0.0373641886, -0.0107266353, -0.000622736465, 0.00200248696, -0.00574863609, -0.00923985243, -0.0200676825, -0.0145253278, -0.000229025929, -0.0247382056, 0.0166893378, 0.00626239367, -0.01156733, -0.0243022908, -0.00778420595, -0.00121239, 0.0039427, -0.00755067961, -0.0318841077, 0.00363327796, -0.0152726118, -0.0318529718, -0.00845364761, -0.00495464681, -0.0136690652, 0.00779199, -0.00285096536, 0.0217490718, 0.00762462942, 0.0132020125, -0.00150527083, 0.00288210227, 0.0318218321, 6.57400524e-05, -0.00297551276, -0.0272447206, -0.00503248908, 0.0133499131, 0.0159731898, 0.0163624, -0.012999624, -0.0024033736, 0.00612617, 0.0124158086, 0.00104989472, -0.00347175566, 0.0168917272, -6.65914486e-05, 0.00428520516, -0.0171875264, 0.00505194953, 0.00927877333, 0.011201472, 0.00433969451, 0.0185108408, -0.0305763595, 0.00334720849, -0.00739499554, -0.0143307224, -0.0127427448, 0.00219514593, 0.0154438643, -0.0121822823, 0.00791264512, 0.00399718946, 0.030015897, -0.0104230512, -0.00433580251, -0.0142217437, -0.01484448, 0.0171875264, -0.00106643618, 0.0018866969, 0.00534774922, -0.00926320441, -0.0192892626, -0.00759738497, -0.00398162147, -0.0331918523, 0.00181955809, 0.00710308785, -0.0157318804, 0.0163312629, -0.00149262149, -0.0107032834, 0.00513757579, 0.0147199333, -0.0108044771, 0.00223601307, 0.000548786484, 0.0239130799, -0.0162689909, -0.00385318184, -0.00734439818, 0.00556181511, -0.019553924, 0.0128828604, 0.0136612812, 0.0071186563, 0.0163001269, -0.00126298738, -0.0178258307, 0.00172030949, -0.00959792547, -0.00255321944, -0.0150235174, -0.0232280698, 0.0149534596, -0.0100416252, -0.00727044838, 0.01950722, 0.0157474484, 0.00287626404, 0.00860154722, 0.00433969451, -0.0167204738, 0.0010761664, 0.0177791268, -0.000769176811, -0.0108745359, 0.0160354637, -0.0151169272, 0.0116062509, -0.00775306905, 0.000280231412, 0.00867938902, 0.0078581553, 0.00539056258, 0.00142353668, -0.0110380035, 0.0150079485, -0.00647645909, -0.00607557269, 0.0068695615, -0.00929434132, 0.0122601241, 0.00167555024, -0.00266803661, -0.00661268272, -0.000715173897, -0.0357450731, 0.00863268413, 0.00385707384, 0.00255905767, 0.0175300315, -0.004880697, -0.017016273, -1.00723364e-05, -0.00713422475, -0.00117346901, -0.0112559618, 0.0171719585, -0.011925403, -0.00182053109, 0.0200988185, 0.0199431349, 0.00810335856, 0.000702038058, -0.00645699864, 0.0173743479, 0.00402443437, -0.0150468694, 0.031090118, -0.0211574715, 0.00477171829, 0.0179036725, 0.0153504536, 9.09779046e-05, 0.00385318184, -0.000144251069, -0.00616119895, 0.0190090314, 0.00270695752, -0.0177791268, -0.0257501528, -0.00765965832, -0.0160977375, 0.00136904721, -0.00843807869, 0.0167360418, -0.0172965061, -0.00530104432, -0.00470944447, -0.00596270151, -0.00412562909, 0.020612577, 0.00658543827, -0.00953565165, 0.0157863684, 0.00198594551, -0.0176857151, 0.00323239155, 0.00711476384, 0.00414898153, -0.0116918767, -0.011193688, 0.0272602886, 0.00623904075, 0.0133187762, 0.0149067538, 0.0227454491, 0.0145253278, -0.0188844837, 0.000361965562, 0.0136067914, 0.00691237487, 0.0133265601, 0.024940595, 0.00233331579, 0.00860933121, 0.012306829, -0.0146654435, -0.000670901209, 0.00119390257, -0.00950451568, -0.028209962, -0.0163156949, 0.00285096536, -0.0181372, 0.0127349608, 0.0136690652, 9.14036063e-05, -0.0165492222, 0.0310122762, 0.00110146508, -0.00989372563, -0.00308449147, -0.0141516859, -0.0161288735, -0.00997935142, -0.00843807869, -0.00923206843, -0.00460046576, 0.0257657208, 0.00479507074, -0.0248160474, -0.0129373502, 0.0229478385, 0.0140427072, -0.00669830898, -0.00351846102, -0.0145331118, -0.0101038991, -0.0120110298, -0.0110146515, -0.0112715298, -0.00257462612, 0.015171417, -0.00367803732, 0.0193671044, 0.000975458301, -0.00245786295, 0.000312098, 0.0174521897, 0.0306542031, 0.0338145904, 0.00143132079, -0.00948894676, -0.00288404827, -0.019553924, -0.0116140349, 0.0145486807, 0.00701746158, 0.0221382808, 0.0169228632, -0.00432801852, 0.0162534211, -0.00297356653, 0.00402443437, -0.0168294534, 0.0035768426, -0.00688513, -0.00860154722, -0.00607946469, -0.01445527, 0.0116140349, 0.0187132303, 0.0166893378, 0.00913087372, -0.0266531203, -0.00916979462, -0.00903746299, -0.00474058138, 0.00514146779, 0.040104229, 0.0162845589, -0.00663603563, 0.0205503032, -0.0119643239, 0.0284279194, -0.0199431349, -0.0103062885, -0.00960570946, 0.00925542, -0.00454597594, -0.00706805894, -0.0167671796, -0.0117541505, -0.00322655332, 0.0089907581, 0.0018253962, 0.00580312544, 0.00125423016, 0.0185419787, 0.00242088805, -0.00561241247, -0.0124391606, 0.0037442029, 0.0227765869, 0.000664090039, 0.0138169648, -0.00669052498, -0.00397578301, -0.0245202482, -0.00770636369, -0.00619233586, -0.00193242903, -0.0132253654, 0.00993264653, 0.0108978879, -0.00286458782, -0.00888177846, 0.0265285727, 0.00192269881, 0.00794767402, 0.00574085163, -0.00920871552, -0.00707584294, 0.00545283593, 0.00386291207, -0.00396021456, 0.0132876392, -0.00732493773, -0.00607557269, 0.011559546, 0.0182150416, 0.00145370048, 0.00567079382, 0.0221538488, -0.00611449359, -0.00103529938, 0.0127116079, -0.00815784745, -0.00439807633, 0.00709919585, 0.0103062885, -0.00346202543, -0.0017903673, 0.0165025163, -0.0030883837, 0.00113260199, -0.00186334422, 0.000220633578, -0.00966798328, -0.0130541129, 0.0149456747, 0.0164246745, 0.00339975185, 0.00600551488, -0.000881561311, -0.0104074832, -0.0103218565, 0.00845364761, 0.00885842647, 0.00833688397, -0.00722763501, -0.0101583889, 0.00767133478, -0.010119467, 0.00695907976, 0.00941888895, 0.0240843333, -0.000930699112, 0.00436693942, 0.013022976, 0.0188533459, 0.0250340048, 0.0181683358, -0.00158603187, 0.0026057628, 0.00361381751, -0.0267153941, 0.00961349439, -0.0203946196, 0.00779588195, 0.000398940552, -0.0162222851, 0.00492351037, 0.00333358604, -0.0115517611, -0.000181104406, 0.00969133619, -0.00482231565, -0.00613784604, 0.00237612892, -0.0265130047, -0.0100104883, 0.0295332763, 0.00695907976, 0.00157532864, -0.0037383649, 0.000334964105, -0.00306697702, -0.00259019458, -0.0211886074, 0.0153193166, -0.0139259445, -0.0111002773, -0.00541002303, 0.0146654435, -0.00706027448, 0.0194293782, 0.00258824835, 0.023523869, 0.0052076336, 0.00611449359, 0.0180282202, 0.0168138836, 0.00648813555, -0.0196161978, 0.011902051, 0.0162378531, -0.0118242083, -0.00383955939, 0.00556181511, 0.0132487183, 0.00250067608, -0.00658154581, -0.0234304592, -0.0180282202, 0.0136846341, 0.00892069936, 0.0150313014, -0.00714979321, -0.00674501434, -0.00912308879, 0.0205191672, 0.00584983081, -0.0103062885, -0.00675279833, -0.000636845361, 0.00962906238, -0.00979253091, -0.0256411731, 0.00707195094, 0.00900632609, 0.00533996522, 0.0138403177, -0.019880861, 0.0124080237, 0.0168138836, -0.00586929126, 0.00187891268, 0.00891291536, 0.0193826724, -0.00465495512, -0.00814227946, -0.0108044771, 0.0078114504, -0.0152570428, -0.0029268614, 0.000753121916, -0.000572139106, 0.00032572035, 0.0103296414, -0.00221849862, -0.00776085304, 0.00220876839, 0.0239597857, -0.00948116276, 0.0071225483, 0.0197251774, -0.00277506933, -0.016969569, -0.00536331767, -0.0129684871, 0.0185731146, -0.00720817456, -0.0150468694, -0.00368582131, -0.0178881045, -0.0280075725, -0.0105086779, 0.0102751516, -0.00502470462, -0.0107266353, 0.0148989698, 0.00360214128, -0.000471917476, -0.00407113973, -0.0105398148, -0.006507596, 0.00606389623, -0.000667982153, 0.00499746, 0.0109912986, -0.00193048303, -0.0122679081, -0.00649981201, 0.00402832637, 0.0171563886, 0.00666328, -0.0169384312, 3.15929283e-05, 0.00535942568, 0.00173295883, 0.00071955251, -0.0210951976, -0.00627406966, -0.000905400433, 0.0143540753, 0.026404025, -0.00626628567, 0.00427352916, -0.000561922381, -0.0264662988, 0.00962906238, 0.0179970842, -0.00304557057, 0.0144163491, -0.00388821075, 0.0103062885, 0.00788150821, 0.0219358914, 0.0217335019, 0.00930212624, 0.0107733412, -0.0103685623, 0.00902189407, 0.0100883311, 0.0199587028, -0.00361770974, -0.00608724868, 0.00899854209, -0.0265441425, 0.000259068096, 0.00952786766, 0.0367103145, 0.00515314424, -0.0116763087, -0.00383566739, 0.00616898295, 0.0184797049, 0.00824347418, -0.0149378907, 0.00225158152, 0.0220915768, 0.0104230512, 0.00105670595, -0.0178413987, -0.0140193542, 0.019553924, -0.0257501528, 0.0155294901, 0.0286925826, -0.00457322085, -0.0228544287, 0.00456543686, -0.00763241388, -0.00612617, 0.0203323457, 0.00258630235, 0.00930212624, 0.00295799808, 0.0119643239, 0.00458489731, 0.00250262208, -1.29990156e-06, -0.0162689909, 0.00840694178, -0.018448567, 0.00614952249, 0.0168138836, -0.000513757579, -0.0103296414, 0.0159887578, -0.00999492, 0.00467052357, 0.00430855807, -0.000585761503, -0.00258630235, -0.0233214796, -2.42496262e-05, -0.0245513842, 0.0109835146, 0.00217957771, 0.0456154458, -0.00635969592, 0.00371501222, 0.00172030949, -0.00483009964, -0.0269800574, -0.0114972722, 0.00718092965, 0.00464327866, 0.0119954608, 0.00566301, 0.0244424064, -0.000897616206, 0.000981296413, 0.00854705833, -0.00638694083, 0.00331607158, 0.0102985045, -0.0125559242, -0.0181216318, 0.0160977375, 0.0152959647, -0.0129607022, -0.0342816412, -0.000926807, -0.01303076, -0.0077336086, -0.00953565165, -0.0179036725, -0.00975361, 0.0126960399, 0.000647548644, 0.0347798318, -0.00200248696, -0.0172030944, 0.0181683358, -0.0219358914, -0.0208928082, -0.0136067914, 0.0217335019, 0.0212508813, 0.00673723, -0.00425406825, -0.00844586361, -0.00701356959, -0.00193437515, 0.00335499272, 0.0163001269, 0.0152881797, 0.0137546919, 0.00794767402, 0.0111469822, 0.00806443673, -0.0161911473, -0.00232942356, 0.0139726494, 0.0064725671, -0.0110847093, -0.010119467, 0.00360797928, -0.0128205866, 0.00802551582, 0.0188377779, 0.0211574715, 0.0149145378, 0.00742224, -0.0225741975, -0.0014653767, 0.0151480641, 0.00811892655, 0.0147277173, 0.0045576524, 0.0223095343, 0.0132331494, -0.0143696442, 0.0360564403, 0.00615341449, -0.00629742257, 0.00636748038, 0.00586539926, -0.0140193542, 0.0109757297, 0.00304362434, -0.000629547634, -0.000895670149, 0.00383372139, 0.00810335856, -0.0121667134, 0.00487291301, 0.0268399417, -0.00111216842, 0.0078075584, -0.00505973352, 0.023477165, 0.0121589294, 0.0154438643, -0.010111683, -0.00268749706, -0.00607946469, -0.00314481906, 0.0118942661, 0.0125481393, 0.0150313014, -0.000370479538, 0.00402832637, 0.0222628284, 0.00922428351, -0.00782701932, 0.0113260197, 0.00648813555, -0.0223718081, 0.027135741, 0.00287626404, -0.00323239155, -0.00255711167, 0.0228855647, 0.0330361687, -0.0074494849, 0.0201610923, 0.0173899159, -0.00274393242, 0.0304206759, 0.0193203986, 0.0112248249, -0.0106176566, -0.0112948827, 0.0340636857, -0.00493907835, -0.00119487557, -0.00700189313, 0.0267776679, 0.00606389623, 0.00326158223, 0.00576420454, 0.00774917705, -0.00114233221, 0.00728601636, 0.0155217061, 0.0147510702, 0.0278830249, 0.0206748508, -0.0339391381, -0.000387021, 0.00746116135, 0.00776085304, 0.0353402942, -0.0105787357, -0.00471722847, 0.0153815905, 0.00811892655, 0.00772582414, 0.000795935048, -0.00928655732, -0.0151480641, -0.0100571942, -0.00997156743, 0.00526212296, -0.0142373126, -0.00476782583, 0.00767911877, -0.0134588918, -0.00182636932, -0.00692405086, 0.0159264859, -0.023523869, 0.00565911736, -0.0132331494, 0.00237223669, 0.00168138847, 0.00885842647, 0.0078581553, -0.00467830757, -0.0124780815, 0.000518622692, -0.0234304592, -0.00291518494, 0.0127193918, -0.00700578513, -0.0242867228, 0.000533218088, -0.00375782535, 0.0122679081, 0.00912308879, 0.0042657447, -0.0129062133, -0.0132020125, -0.0140660601, -0.00655819336, 0.00514146779, -0.000232553153, 0.0131942285, 0.00225158152, 0.00607946469, 0.00988594163, -0.0165336523, 0.00431245, 0.0136534972, -0.009769178, 0.00301054167, 0.00461214175, -0.00281982846, -0.0161444433, -0.00145175436, -0.0145720327, -0.00863268413, 0.0193826724, -0.00597437797, -0.00376171735, 0.00813449547, -0.00571749918, 0.00772971613, -0.00284901937, 0.0085392734, -0.0124858664, 0.00960570946, -0.0119876768, -0.0452418029, 0.00594713306, -0.0782779753, -0.0137546919, -0.00293464563, 0.0246292278, 0.0111391982, 0.00213871058, 0.0238975119, -0.00592378061, -0.00567079382, 0.0132253654, 0.022402944, 0.00257851812, 0.00279452978, 0.00916201063, 0.00639083283, -0.0143929962, 0.00228855642, 0.0174677577, -0.00888177846, -0.0103763463, 0.0130696818, 0.0158175062, 0.0175456, -0.0078075584, 0.00036293859, 0.0173120741, 0.000799827161, -0.0128595075, 0.000234134321, -0.00110924931, -0.00761295343, 0.00727434037, 0.00249873, -0.0121277925, 0.0159576219, -0.0107266353, 0.0198497251, -0.00780366641, -0.00811114255, -0.00198108028, -0.0159420539, 0.0218424816, 0.0179036725, -0.0095123, 0.00479117874, 0.00996378344, 0.00846921559, -0.00337056117, -0.00577198854, 0.0177635569, -0.0194760822, 0.00596270151, -0.00172030949, -0.0058186939, 0.00567857828, 0.0116607398, -0.00213481835, -0.0124469446, 0.00959792547, 0.0122445561, -0.0140582751, -0.0178413987, 0.00962127838, -0.0198341571, 0.0116529558, 0.0105865197, 0.00335304672, 0.00687734596, -0.0200054087, 0.0145642487, -0.0170474108, -0.0071536852, -0.00572917564, 0.00439029187, 0.00579923345, 0.00163176411, -0.00430855807, -0.00700967712, 0.011590682, 0.015163633, 0.00546062039, 0.00890513137, 0.0228232909, 0.00584593834, 0.00654262491, -0.0127271768, -0.02891054, 0.0103841303, 0.00439418433, -0.0215311125, 0.0134277549, -0.00887399446, -0.0104464041, -0.0339080021, -0.00118125323, 0.0024422945, -0.00318374019, -0.00448759459, 0.0163624, 0.0024053196, 0.0253920797, -0.0015617063, 0.0197563134, -0.0109445937, 0.00814227946, -0.0397928581, 0.0153893745, -0.0110146515, 0.0215622503, 0.00786204822, 0.0221227128, 0.0187287983, 0.0163312629, -0.0146965804, 0.0389521644, -0.011909835, 0.0116451718, -0.00757403206, -0.000544407871, 0.0125403553, 0.00706805894, -0.0197251774, -0.00302221789, -0.023508301, -0.00367414509, -0.00604054378, -0.023165796, -0.0160043277, -0.0156151168, -0.00681507215, -0.000747283746, -0.0083291, -0.00362354773, -0.00758570852, -0.00506751798, -0.00278869178, -0.0189156197, 0.0154672172, -0.023508301, -0.014120549, 0.00730936928, -0.0119643239, 0.00614952249, 0.000240580615, -0.0190868732, -0.0324757062, 0.00349705433, 0.00740277953, -0.00818898436, -0.00700578513, 0.0074455929, -0.015903132, -0.00350094656, 0.00838359, 0.0021173039, 0.00446424214, 0.00816563144, -0.0147510702, -0.022076007, 0.0101038991, 0.0160510316, 0.00786594, -0.0129373502, 0.015179201, -0.00812671054, 0.00840694178, 0.00461603422, -0.00350289256, -0.00667884853, -0.000332531548, 0.0120733036, 0.0272914246, -0.0157785844, 0.0177791268, 0.0101038991, -0.0140660601, 0.00591988862, -0.0231969338, 0.0334098116, 0.0236484166, 0.0139181595, 0.0179348104, -0.0180437881, -0.0183395892, -0.0188533459, -0.0186509565, 0.00322266109, 0.023508301, -0.0109134568, -0.00268165884, -0.00483009964, -0.00193340215, -0.00117249601, -0.0146732274, 0.00857819431, -0.00766744278, 0.00523877051, 0.0326002538, 0.00314871129, 0.0114583513, 0.0193203986, -0.0098080989, 0.00771414768, 0.00985480472, -0.0147199333, -0.00515314424, -0.0143073704, 0.0189311877, -0.018417431, 0.0178102627, 0.00761295343, -0.0159887578, -0.0074806218, 0.0027672851, 0.0147510702, 0.00700189313, -0.0238508061, 0.0137079861, 0.0148834018, 0.00522709405, 0.0181994736, -0.000659224926, 0.00703303, 0.0133343441, -0.0045615444, 0.0121200085, 0.0113960775, 0.0186353885, -0.0110613564, -0.0177791268, 0.00221655262, 0.00509476289, 0.029626688, -0.00769857969, -0.0190090314, 0.00851592142, -0.00380842271, 0.0368037261, 0.0134588918, 0.0118397772, 0.0263261832, -0.01303076, 0.00703692203, -0.00724320346, -0.0120810876, 0.015155849, 0.0178725366, -0.00350094656, -0.00500524417, -0.00316622574, 0.0200676825, -0.0137079861, -0.0354959778, 0.0201143883, 0.0200676825, 0.0215311125, 0.0074417009, 0.000877182698, -0.00572139118, -0.004876805, 0.00461603422, 0.00798659492, 0.0303584021, -0.0228544287, -0.00998713635, -0.0105943037, 0.00133791042, -0.00400108192, 0.0179036725, -0.0017232286, 0.00175144628, 0.00166971213, 0.00742613245, -0.0128205866, -0.0104308361, -0.00174074306, 0.00331412558, 0.0098003149, -0.00486123655, -0.0133265601, 2.92515851e-05, -0.0162689909, 0.00870274194, 0.00135445176, -0.00160354644, -0.0179192424, 0.000993459253, -0.0201143883, -0.00056289538, -0.0102206618, 0.00481063919, -0.0185264088, -0.0148911858, -0.0240843333, -0.0180282202, 0.0175300315, -0.0217802078, 0.0122445561, -0.0214844085, 0.00559295202, 0.01156733, -0.0236484166, -0.00619622786, -0.012299045, -0.00268165884, -0.0232592076, 0.0104541881, -0.0120032448, -0.0025687879, -0.0268710777, -0.00400108192, 0.0181372, -0.0269644894, 0.00251819054, -0.00388042652, -0.00402054237, -0.00486123655, -0.0122134192, -0.0065465169, 0.00793210603, -0.0103218565, 0.0204880293, 0.00643364619, -0.0228232909, 0.00124741893, -0.00732882973, 0.0124625135, 0.00829017907, 0.00743002445, -0.0215155445, -0.0193671044, -0.0118942661, -0.0133032072, -0.0108044771, 0.00264663, -0.0147744222, -0.0334409475, 0.00202194741, -0.00372668845, -0.0226209015, -0.0241777431, 0.019164715, -0.00326158223, 0.00302221789, 0.0144163491, -0.00984702073, -0.00774139259, -0.0222005546, -0.00707584294, -0.0153660225, -0.00416065799, -0.014828912, 0.00333553227, 0.00330439536, 0.00340559, 0.000843126792, 0.00232163933, -0.0203167778, 0.018106062, -0.0102206618, 0.00119584857, -0.00739888754, -0.0182617474, -0.0207215566, -0.0300781708, -0.000946267508, 0.00694351131, 0.00872609485, -0.0143929962, 0.0141750388, -0.00255905767, -0.0208461024, 0.00281982846, 0.0727356151, -0.0176234413, 0.00888177846, -0.0349666514, 7.17606454e-05, -0.036897134, -0.0184797049, 0.0444945209, 0.0127349608, 0.0127116079, -0.00642586173, 0.0259369742, -0.00435915543, 0.00481453119, -0.024940595, -0.0085003525, 0.00807222165, -0.0146576595, -0.0309967082, -0.0180126522, 0.00702524558, -0.0222628284, 0.0144085651, -0.0188377779, -0.00551510975, 0.00738331908, -0.00693183532, -0.0237885322, -0.0113338036, -0.00507530198, -0.00204919209, 0.0292841829, 0.00161230366, -0.00436304742, -0.0145019749, 0.00112773676, 0.0281009823, -0.000977404299, 0.0243645646, -0.0177168529, 0.0257968586, 0.0276339296, -0.00352819124, 0.000271717436, 0.0187132303, 0.0181994736, 0.00036318184, -0.00515314424, 0.0096446313, -0.0179815162, -0.0141516859, -0.027120173, -0.0244268384, -0.00350483856, -0.00963684637, 0.00352819124, 0.0324757062, 0.014112765, -0.000145345723, -0.00387458852, -0.00933326315, 0.0192425568, -0.0064647831, 0.00135737087, 0.00314481906, -0.0226520393, -0.0121900663, 0.00456932886, -0.0259369742, -0.00868717395, -0.0084614316, -0.00701746158, 0.0135445176, -0.00955900457, 0.011575114, -0.00212119613, -0.0253142379, 0.00625850121, 0.00665549608, -0.00275950087, -0.0245358162, -0.00128731306, -0.00470944447, -0.00448370259, -0.0190090314, -0.00774528459, -0.007406672, -0.00756235607, -0.00606778823, 0.0259836782, 0.00149845961, 0.0216089543, -0.0265130047, 0.00936439913, 0.00878058374, 0.0074494849, -0.0170474108, 0.0214688387, 0.0172965061, 0.0067995037, 0.0177479889, -0.000873777084, -0.0367414504, 0.0127116079, 0.00205892231, 0.0345618725, 0.015545059, 0.0132097974, 0.00282566668, -0.00123379659, -0.00749619026, 0.00253765099, -0.0179503784, 0.0288949721, 0.0330984443, -0.00891291536, 0.0131008187, -0.00684231706, -0.0128595075, -0.0162222851, 0.0206592828, 0.0107811252, 0.0183084514, 0.011185904, 0.00959014148, -0.0127271768, 0.00981588382, 0.013731339, -0.00435526296, -0.0028918325, 0.00248705363, -0.00818898436, 0.00148872938, -0.00613006204, 0.0317284241, 0.00147510704, 0.0096446313, 0.0145798177, 0.0128050186, 0.0246292278, 0.00752732717, 0.0179970842, 0.0133109922, 0.0051297918, -0.00528936787, -0.00364300818, 0.000727336737, -0.0263106152, 0.0161288735, 0.0317751281, 0.00360214128, 0.00700578513, 0.0134744598, -0.0187443681, -0.00188475079, -0.000531758531, -0.0252986681, -0.0327559374, 0.0162534211, 0.018074926, 0.0119876768, -0.000214552172, 0.0173276421, 0.00688123796, 0.0197563134, 0.0204568934, 0.020597009, -0.0203479137, 0.00207254477, 0.00108200463, 0.00362354773, 0.015910916, -0.0161600113, 0.00484956, 0.0127271768, 0.00349510834, 0.000932158611, -0.023150228, -0.0131864445, -0.00491183391, -0.00615341449, 0.00416065799, 0.00231774733, 0.0450238474, 0.000252986676, -0.0120265977, 0.0146732274, 0.0194449462, 0.0136846341, 0.0121044395, -0.0116607398, 0.0259214044, 0.00173782394, -0.00546062039, 0.00843807869, -0.0138091808, 0.0440274663, 0.00212314213, -0.0140816281, -0.0126026291, 0.0201455243, -0.007406672, -0.00727434037, -0.0236795545, -0.00375004113, 0.00876501575, 0.0137079861, -0.0021932, 0.0122445561, -3.14408935e-05, -0.000251040648]
04 Jan, 2023
Angular PrimeNG Splitter Styling 04 Jan, 2023 Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see the Angular PrimeNG Splitter Styling. The Splitter Component allows a user to split two-element using a splitter & utilized it separately and resize panels. Angular PrimeNG Splitter Styling: p-splitter: It is the container element. p-splitter: It is the container element during resizing. p-splitter-horizontal: It is the container element with a horizontal layout. p-splitter-vertical: It is the container element with a vertical layout. p-splitter-panel: It is the splitter panel element. p-splitter-gutter: It is the gutter element to use when resizing the panels. p-splitter-gutter-handle: It is the handle element of the gutter. Syntax: <p-splitter layout="Splitter Styling"> Content </p-splitter> Creating Angular application & module installation: Step 1: Create an Angular application using the following command. ng new appname Step 2: After creating your project folder i.e. appname, move to it using the following command. cd appname Step 3: Install PrimeNG in your given directory. npm install primeng --save npm install primeicons --save Project Structure: It will look like the following: Example 1: This example describes the Angular PrimeNG Splitter Styling by implementing the p-splitter. app.component.html HTML <div> <h1 style="color:green"> GeeksforGeeks </h1> <h2>Angular PrimeNG Splitter Styling</h2> </div> <p-splitter [panelSizes]="[60, 40]" [minSizes]="[20, 40]"> <ng-template pTemplate> <div class="p-col p-ai-center p-jc-center"> <img alt="gfg" src= "https://media.geeksforgeeks.org/wp-content/uploads/20220807104303/dsaselfpacedcourseoverviewimage-300x289.png" /> </div> </ng-template> <ng-template pTemplate> <div class="p-col p-ai-center p-jc-center"> <img alt="gfg" src= "https://media.geeksforgeeks.org/wp-content/uploads/20220807104255/completeinterviewpreparationcourseoverviewimage-300x289.png" /> </div> </ng-template> </p-splitter> app.component.ts Javascript import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html" }) export class AppComponent {} app.module.ts Javascript import { NgModule } from "@angular/core"; import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { SplitterModule } from "primeng/splitter"; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, SplitterModule, ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule {} Output: Example 2: In this example, we will learn about p-splitter-horizontal and p-splitter-vertical. app.component.html HTML <div> <h1 style="color:green"> GeeksforGeeks </h1> <h2>Angular PrimeNG Splitter Styling</h2> <h4 style="color:red"> Horizontal Splitter </h4> <p-splitter layout="horizontal"> <ng-template pTemplate> <div> Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites </div> </ng-template> <ng-template pTemplate> <div> Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites </div> </ng-template> </p-splitter> <h4 style="color:red"> Vertical Splitter </h4> <p-splitter [style]="{ height: '200px' }" styleClass="p-mb-5" layout="vertical"> <ng-template pTemplate> <div class="p-col p-d-flex p-ai-center p-jc-center"> Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. </div> </ng-template> <ng-template pTemplate> <div class="p-col p-d-flex p-ai-center p-jc-center"> Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. </div> </ng-template> </p-splitter> </div> app.component.ts Javascript import { Component } from "@angular/core"; @Component({ selector: "app-root", templateUrl: "./app.component.html" }) export class AppComponent {} app.module.ts Javascript import { NgModule } from "@angular/core"; import { BrowserModule } from "@angular/platform-browser"; import { BrowserAnimationsModule } from "@angular/platform-browser/animations"; import { AppComponent } from "./app.component"; import { SplitterModule } from "primeng/splitter"; @NgModule({ imports: [ BrowserModule, BrowserAnimationsModule, SplitterModule, ], declarations: [AppComponent], bootstrap: [AppComponent] }) export class AppModule {} Output: Reference: http://primefaces.org/primeng/splitter Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling
https://www.geeksforgeeks.org/angular-primeng-splitter-styling?ref=asr10
Languages
Angular PrimeNG Splitter Styling
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0350125954, 0.00375776365, -0.0183652155, 0.00466938736, 0.0631226227, 0.0264546555, -0.0147499545, 0.00369334477, -0.00971357524, 0.0345440954, 0.00443904102, 0.00174614, 0.0246899705, -0.0512227081, -0.0183652155, -0.0293905921, -0.0499733761, -0.00481384154, -0.0411968, -0.0135084279, 0.00548145454, -0.0137348697, -0.0660273209, -0.00123176561, -0.0158587378, 0.0443513691, 0.00839396566, 0.00805820711, -0.00255527929, 0.0356060304, 0.00342395715, 0.00905767456, 0.0249086041, 0.00551268784, -0.0419464037, -0.000853061152, 0.011548535, 0.0467875712, 0.020582784, 0.0274072737, -0.0197707172, -0.016459981, 0.00460692076, 0.0374800302, 0.000163487115, 0.00528624607, -0.0130243106, -0.0197551, 0.0241746195, -0.00602023024, 0.0142267952, 0.0374487974, 0.0261891726, 0.0225036349, 0.0180216487, 0.0274541229, 0.00288518169, 0.0415403694, -0.0240184534, 0.0410718694, 0.0167723149, -0.0489739068, -0.00879219081, 0.00294764829, 0.00778101059, 0.0385419652, -0.0018886422, 0.00450541219, -0.00434924522, 0.00673469296, -0.0227378849, 0.0196614, 0.0183339827, -0.00808163173, -0.0298434757, -0.00131472922, 0.0271261726, -0.042539835, -0.0501920097, 0.00879219081, -0.0241433866, 0.0249554552, -0.0502544753, 0.0158509295, 0.0310147256, -0.00316042546, 0.0168347806, -0.038948, 0.0255645048, 0.00858136546, -0.0211137515, 0.0150388628, 0.0437891707, -0.0281100236, 0.0221132189, 0.0056610466, 0.0253302548, -4.33728892e-05, -0.00942466594, -0.0325763933, 0.00478651235, 0.0217540357, -0.0311396588, -0.0322640613, 0.0312333591, 0.0104475589, 0.00743744383, -0.00628961762, 0.024471337, -0.0357309617, 0.0134459613, 0.0145000871, 0.0253146384, 0.0158587378, -0.0430708043, 0.0135318534, -0.00272511062, -0.0711495951, 0.00313114421, -0.0182871316, 0.0216291, -0.00386903249, -0.0243151709, 0.0389792323, -0.0288127735, 0.0578754172, -0.0243464038, 0.00892493222, 0.0205515511, 0.00488411682, 0.00383975124, 0.00632085092, -0.0180060323, -0.00248695631, 0.0208951179, 0.0513476431, 0.0184901487, 0.0025767521, -0.0381359309, 0.0306555424, 0.0145157035, -0.048005674, 0.0274697393, -0.00921384152, -0.0120170349, 0.0102601582, 0.0188337155, 0.0763343275, -0.0330448933, 0.0505668074, -0.0622480847, -0.0197863337, 0.0107130427, 0.0142502207, 0.0433519036, -0.0478495061, -0.0326700956, 0.0182090495, 0.0044897953, -0.0200049672, 0.0306555424, 0.0209888183, 0.00344152586, 0.0160070974, -0.0127041694, 0.00433362881, 0.0131570529, -0.00261969795, -0.0358871296, 0.037074, 0.0569696464, -0.0113689424, -0.00573132141, -0.00622715103, -0.0654651225, -0.0361682288, -0.0134459613, -0.0276259072, 0.0351062976, -0.00197746209, -0.0365117975, -0.0142346034, 0.0043882872, 0.000780834, 0.00741011463, 0.0106974253, 0.0330761261, -0.0298747085, -0.0471936055, -0.0151169458, -0.0169128645, 0.00703531411, 0.015359005, 0.0293593574, 0.00120931666, -0.0109316763, -0.0392291, -0.00941685773, -0.00317018596, 0.0163506642, 0.00122395728, -0.0168035477, -0.0141096702, 0.0228003524, 0.0214417018, -0.00475137495, -0.0146015957, -0.0292812753, 0.0435080715, -0.0475684069, -0.0171314981, 0.000194110457, 0.000323314074, 0.0242214706, -0.0272354893, 0.0125245769, -0.0196457841, 0.0121732019, 0.00475918315, -0.00804259, -0.0257050544, 0.0440702699, 0.00521597126, 0.029937176, -0.0641533211, -0.0159212053, -0.0288752411, -0.0237217359, 0.00686353073, 0.0226598028, -0.0174594484, 0.00491144601, 0.00337710697, 0.000890150724, 0.0371052325, -0.00815971475, -0.00659023877, 0.00428287452, -0.0235031024, 0.0610299855, 0.00589139247, -0.00928411633, -0.0224880185, -0.00619591773, 0.0224099364, -0.0123918355, 0.00509494171, 0.0146015957, 0.0157416128, 0.0161164142, -0.0292031914, 0.0195520837, -0.00334196957, -0.0111034596, 0.00312138395, 0.00676983083, 0.0247524381, -0.0227691196, 0.0201299, 0.0274385065, 0.0182246659, -0.00922165, 0.0174282156, 0.0606864169, 0.021332385, -0.027735224, 0.0070665474, 0.0051808334, -0.00849547423, 0.00901863258, 0.0477870405, -0.0443201363, 0.0446949378, -0.00416574953, -0.0424461365, -0.00362111768, -0.00173930766, 0.000541215588, 0.0426335372, 0.0306867752, -0.0126963602, -0.0243464038, 0.016850397, 0.0115329176, 0.0118452515, -0.0487552732, 0.0142502207, -0.00326388609, 0.0211293679, 0.0116110016, -0.0102992, -0.0136724031, 0.0266420562, 0.0148436539, 0.0269856229, 0.00570789631, 0.0271574054, 0.00120834063, 0.00404862408, -0.00756237702, -0.0183964483, -0.0149373543, -0.000612954667, -0.0216759518, -0.0714619234, 0.0374487974, 0.00965110771, 0.0143595375, -0.0478495061, -0.0190367326, 0.0290157907, -0.0217696521, -0.0436330028, -0.0264078062, -0.0433519036, -0.00728518097, 0.0330761261, 0.0308429431, -0.0102289254, 0.0114860684, 0.046631407, -0.0184745323, -0.0558452457, 0.0479744412, 0.0502232425, -0.011040993, -0.0206921, -0.0202860665, 0.0131336274, -0.0279382393, -0.0237842035, 0.00159192528, 0.00442732871, -0.0135396617, 0.0296092257, 0.00267240428, 0.015319963, -0.0488489754, 0.002180479, 0.0191772822, -0.0378548317, -0.0294686742, 0.0223006196, -0.00933096651, 0.0199893508, -0.0612486191, 0.000775465742, 0.0209575836, 0.0642157868, 0.0191772822, 0.00152067421, 0.0283130407, 0.048942674, 0.00352741755, 0.0437579378, -0.0460692048, 0.00783566944, -0.021332385, 0.028719075, -0.0304525252, 0.00661756797, -0.032638859, -0.040103633, 0.0440390371, 0.0477870405, -0.0214417018, -0.00975261629, 0.00644188048, -0.0174282156, -0.0192397498, -0.0355747975, -0.0205671676, -0.00389440963, 0.00457959156, -0.0480681397, -0.00191987562, 0.0454757698, -0.0222225357, 0.00187497761, 0.0126417018, -0.0490988418, 0.0659023896, 0.0136958286, 0.0188024826, 0.00832369, 0.02027045, 0.0157650374, 0.0095105581, -0.0201611333, -0.005696184, 0.0221132189, 0.0322328284, 0.0130165024, -0.0196926333, 0.0218633525, -0.0437579378, -0.0256738216, 0.0185994655, 0.0518786088, -0.0101820752, 0.0230346024, -0.00407985738, 0.0130945863, -0.00483726664, 0.0344816297, 0.00617249263, -0.0205515511, 0.0270168558, 0.0251272377, -0.0226441864, 0.011587576, 0.0148670794, -0.0277664568, 0.0234562531, 0.0387606, 0.0204734672, 0.0154917464, 0.0505355746, 0.00328731118, -0.0255020373, 0.0478182733, 0.00063979585, -0.0323265269, 0.0147499545, -0.00776149, 0.00623105513, 0.000511934282, 0.0202548336, 0.0439453386, -0.00253575831, -0.0660897866, -0.0176156145, -0.0244088713, -0.0292656571, -0.00432582, -0.0325451605, 0.023018986, -0.0149842044, 0.0117125101, -0.00650434708, -0.00774977729, 0.00267240428, 0.0301245749, -0.0265952051, -0.0528780781, -0.0177561641, -0.0311865099, -0.0342629962, -0.0219102018, -0.00235421443, -0.0242527034, -0.00937000755, -0.0552830473, -0.0100259082, 0.00870629866, 0.00101313205, 0.00590310479, -0.00605146354, 0.00936219934, -0.0104631754, -0.0355435647, 0.0198019501, 0.0122981351, -0.00425554533, 0.0122512849, -0.00438438263, -0.0251428541, 0.0241902377, -0.00400567846, 0.0389167666, -0.0174594484, -0.0107911257, 0.0399162322, -0.00619591773, 0.0286878403, -0.0006363797, 0.0184589159, -0.0263297223, 0.00462644128, -0.00231907703, 0.0321391262, 0.0394789651, 0.0514101088, -0.0251116212, -0.00312333601, -0.0159524381, 0.00108926347, -0.0117905932, 0.00231712498, 0.00976823363, 0.0328262597, 0.0128993774, -0.0546271466, 0.0265483558, -0.000259383291, -0.00210239552, -0.00749600632, -0.0300777256, 0.0380734652, 0.0182246659, 0.0242839362, 0.0277976897, -0.0186775494, 0.0438204035, 0.0322640613, -0.00272511062, -0.0245025698, -0.00869849, -0.030327592, -0.0240496863, -0.00538385054, 0.0194427669, -0.00962768309, 0.0118062096, -0.0305774584, -0.0210044347, -0.0211449843, 0.056844715, -0.0145235127, -0.0184433, -0.00349032786, 0.00546583813, -0.000621251063, 0.0142346034, 0.00578598, 0.0275946725, 0.0145157035, -0.0381984, 0.0156244878, -0.00418917416, -0.0110331839, -0.00997905806, 0.0276102908, 0.0502857082, -0.0105646839, -0.000848180905, -0.00441171182, 0.0148826959, -0.0107286591, 0.00890150759, -0.0160539467, 0.00149236899, -0.0408844687, -0.0154136634, -0.00279733771, 0.0149061205, -0.00164658367, -0.00640283851, 0.0168660134, 0.0224411692, -0.0200362, 0.0288127735, 0.00587577559, 0.00322484435, -0.0124386856, -0.0217384174, -0.0461316705, 0.00432191603, 0.00635208469, -0.0191772822, 0.0189430322, -0.00199600682, 0.0169284809, 0.0221913029, -0.00999467541, -0.0377298966, -0.0187087823, 0.0157806557, -0.0120170349, 0.0264078062, 0.0077263522, -0.0139378868, -0.00918260776, 0.0115641514, 0.0153902378, 0.00244596251, 0.0495673418, -0.0253146384, 0.002572848, 0.0134537695, 0.00493877521, -0.0169440974, 0.0139691196, -0.0296560749, 0.0125167686, -0.0257831383, 0.0364805646, -0.026751373, -0.0458193384, -0.0102835838, 0.0114626428, 0.0178654809, 0.00923726615, -0.0266264398, -0.0084251985, 0.0152653046, -0.00748038944, 0.0161320306, 0.0181153491, -0.00835492369, 0.0120795015, 0.0199112669, 0.00728518097, 0.0101039922, -0.0354810953, 0.0103226257, -0.00849547423, 0.0021941436, 0.025299022, -0.0199268833, -0.0321391262, -0.00968234148, 0.0388230644, -0.0203641504, 0.0191772822, -0.0215041675, 0.0076053231, -0.00626228843, 0.00585625507, -0.0248929877, 0.0181465819, 0.00561029231, 0.0511290096, 0.00546974223, 0.0126338936, -0.025064772, -0.0183496, -0.0230658352, -0.012727594, -0.00371091347, -0.0184589159, 0.0117827849, -0.00980727468, -0.036730431, 0.00429458683, -0.00311357551, -0.000739840209, 0.02765714, -0.00133229804, 0.00648092199, 0.0107208509, 0.0111112678, 0.00550487963, 0.0470686741, -0.0108379759, 0.0213167686, -0.0181778148, 0.0171002652, 0.0508479103, 0.00504418742, -0.0300777256, -0.00479822466, -0.000191670348, 0.0235811863, 0.00548926275, -0.0133054107, 0.00664099306, 0.0125870444, 0.0224724021, 0.0120326513, 0.00429849094, -0.0237998199, 0.0146640623, 0.0108457841, 0.0181934312, 0.0141955623, -0.0158821642, 0.0352936946, 0.0185682327, 0.0394789651, -0.0012483584, 0.0017646848, 0.0185526162, 0.0240965374, -0.0147655709, -0.0414466672, 0.000740816235, 0.0006241792, 0.012688552, 0.00365430303, -0.00999467541, 0.0196457841, 0.0351687633, 0.0125089604, 0.00343371741, -0.00542289205, -0.0175062977, -0.0209888183, -0.00269192527, 0.00576645881, 0.00589139247, -0.00677763904, 0.0200049672, -0.00595385907, 0.00730079785, -0.0293749738, -0.00684010563, -0.00436876621, 0.00548535865, -0.00758189801, 0.00334977778, -0.0205515511, -0.0151559878, 0.0100727584, 0.0105724921, 0.0335446298, -0.00202236, 0.0238622874, -0.0192085169, -0.00126202288, 0.00808944, 0.0281568728, 0.0260173883, 0.0394477323, -0.00700408081, 0.0330136605, -0.018427683, -0.00733203115, -0.0253614876, -0.00246743532, -0.00543850893, -0.00775368139, 0.00591872167, -0.0324202254, -0.0317174755, -0.0154214716, 0.0172564313, -0.0397600681, -0.0133834947, -0.00352741755, -0.020348534, -0.0122278603, -0.00625838432, 0.00336149032, -0.00577817159, -0.0327013284, -0.000309161464, 0.00335172983, -0.0156401042, 0.00353522599, 0.0101274168, -0.0147265289, 0.00149041694, -0.0102367336, 0.0188180991, 0.0210825186, -0.0133913029, -0.0100181, 0.0178498644, 0.00895616598, -0.0032131318, -0.00845643226, 0.0298434757, 0.0133756865, 0.00538385054, -0.00787861459, -0.0284379739, 0.0195520837, 0.0119858021, 0.0216603354, 0.0180528816, 0.00767559791, -0.0250960048, 0.0242995545, -0.000640283863, 0.00424383255, -0.0218321178, -0.0200362, 0.0130243106, -0.0213636179, -0.00234054984, 0.0339818969, 0.0405721329, 0.00500124181, -0.0123918355, 0.0087765744, -0.0199737344, -0.00558296312, -0.02765714, -0.0100415247, -0.0100805666, -0.00535652135, 0.000651020324, -0.0250960048, 0.0137426779, -0.00429068273, 0.0243151709, -0.00137524388, 0.0238154363, 0.0440702699, 0.0201611333, 0.0479432084, -0.0189430322, 0.0156635307, 0.0035430342, -0.0473810062, -0.0243307874, -0.0181465819, -0.0147968037, -0.0463815406, -0.00344152586, -0.0334196948, -0.00374800316, 0.0447261706, 0.00578207569, -0.0314676091, -0.025923688, 0.000575865095, -0.0255020373, -0.00865164, -0.00295545673, -0.00733983936, -0.0360120647, 0.00958864111, 0.0243307874, 0.000819875684, 0.0414466672, 0.0214417018, -0.02765714, 0.0289689414, -0.00926069077, 0.00284223561, 0.00468500378, 0.0183496, -0.0309054088, -0.00719928928, -0.00764046051, 0.00265873969, -0.00991659146, -0.00724613946, -0.00229955604, -0.0229096692, -0.0339506604, 0.0318424106, 0.00191109115, -0.00754676061, 7.37522132e-05, 0.0167098474, 0.0101196086, 0.0215978678, -0.0144063868, 0.0451634377, -0.0194583833, -0.0299215578, -0.00402129488, -0.00725785177, -0.00368553633, 0.011626618, 0.0240965374, 0.00632085092, 0.0350125954, 0.0223630853, 0.021957051, 0.0306243096, -0.016850397, 0.0234718695, 0.0200674329, 0.0333884619, 0.00147675234, 0.000687621941, -0.0101976916, -0.001424046, 0.0182871316, -0.00858136546, 0.0216134842, 0.0121575855, -0.0141330948, -0.00967453327, -0.00951836631, 0.000632475538, -0.00886246562, -0.00839396566, 0.0143907703, 0.0137973363, -0.00678935135, -0.0126026608, -0.00966672506, -0.00911233295, -0.00648092199, 0.0035332737, 0.0197551, -0.00311357551, -0.0122825187, 0.0083627319, -0.00882342365, 0.0206921, 0.0050598043, -0.029421825, -0.0343879275, -0.0115329176, -0.0110566095, -0.0135318534, -0.0176624656, -0.0381046981, -0.00707435608, 0.0361994654, -0.00934658293, 0.00771854399, -0.0178498644, -0.0170534141, 0.00912794936, -0.00600070925, 0.013906653, -0.022316236, 0.00672688475, -0.00740621053, 0.0173813645, 0.00767169381, -0.0196145494, 0.00995563343, 0.00623105513, 0.0274228901, -0.0297497753, -0.0178498644, 0.0108535923, -0.00269973348, -0.0456007048, 0.0376986638, 0.0277664568, -0.0228940528, -0.040103633, 0.0159290135, -0.0279538576, 0.0303744432, 0.00468500378, 0.0206140168, -0.00663318485, 0.0365742631, -0.00325022149, 0.0124386856, -0.00138793245, 0.0280944072, 0.0164912138, -0.00720319338, -0.0115719596, -0.0168191642, -0.0120560769, 0.0253458712, -0.0577504821, -0.00770292711, 0.0106271505, 0.0189742651, -0.00146308774, -0.00523939589, 0.00918260776, -0.0483180061, -0.00249086041, 0.00723442715, -0.0138363782, 0.0109160589, -0.00650434708, -0.00314285676, 0.00650434708, -0.0056298133, -0.00223123305, -0.0321078934, -0.0251272377, 0.000471916544, -0.00521597126, -0.00176761299, 0.00140257308, -0.0272511058, -0.00410328247, 0.00427897042, 0.00342200487, 0.00728518097, 0.00669174735, -0.00666832225, 0.0385419652, -0.0179904159, 0.00650044298, -0.011977993, 0.00573132141, -0.0187400151, -0.000124384416, 0.0096354913, 0.00189449848, -0.0270168558, 0.0198488, -0.00594605086, 0.027141789, 0.0121575855, 0.000985314837, -0.0331385955, 0.0259393044, -0.0357622, 0.0312333591, -0.00121517293, -0.0403222665, 0.0433519036, 0.0206296332, -0.00217657466, -0.0141721368, -0.0011214728, -0.00735936034, -0.0221600682, 0.047880739, 0.00327559863, -0.00999467541, -0.00398810953, -0.00581330899, -0.00796841085, 0.0142502207, 0.031982962, 0.00614516344, 0.022316236, 0.0148905041, 0.0155620212, -0.0184433, 0.0251272377, 0.00207506632, -0.00089991116, 0.00332635269, 0.0347002633, 0.00252599805, -0.00506761251, -0.0160070974, 0.0039119781, -0.00317994645, 0.0111190761, 0.0140706282, -0.0102757756, 0.014929546, 0.0142736454, 0.0136489784, 0.0188493319, -0.00847985689, -0.0151559878, 0.0299527925, 0.0233781692, -0.0310459603, 0.0191616658, 0.00716415187, -0.00400567846, -0.00245377072, -0.0146796787, -0.00891712401, -0.0284223575, -0.00624667201, -0.0284379739, 0.0275946725, 0.00121126871, 0.00791375246, -0.00607488863, 0.00205164123, -0.0122669023, -0.00152555446, 0.02027045, 0.0176624656, -0.0273916572, -0.0131960949, -0.000774977729, 0.0146952961, -0.0123371771, -0.00700798491, 0.00452493317, -0.00172271498, 0.00564152561, -0.00882342365, -0.0105881086, -0.0092685, -0.0253771041, 0.0025767521, 0.0245025698, -0.0147733791, 0.0334821604, -0.00532919215, 0.00497781672, 5.90810705e-05, 0.0181153491, 0.00825341512, -0.0151325632, 0.0119701847, -0.0133756865, -3.93772134e-05, 0.0124543021, 0.0188337155, -0.00148553669, -0.0108614005, -0.0114236008, 0.0201611333, 0.00545802945, 0.0423212, 0.0429146364, -0.00104046124, -0.0368241295, 0.002572848, -0.0310459603, 0.0136567866, -0.0334196948, -0.00404081587, 0.00721881026, -0.0172876641, -0.0178030152, -0.00616858853, 0.0267982222, -0.0189898834, 0.0676514581, -0.000118345153, 0.00292617548, -0.0363868624, -0.0021668144, -0.0421650372, 0.00593824266, 0.0296716914, 0.00369529682, -0.0362307, 0.00301011512, -0.00142014178, 0.00507542072, -0.00255527929, 0.00784347765, -0.0248929877, -0.0136802113, 0.0179591812, 0.0123449853, -0.022035135, 0.0081128655, 0.0155229801, 0.0117671685, 0.00215314981, -0.00449369941, -0.0520347767, -0.00341224461, -0.0162881967, -0.0330761261, 0.00116637081, 0.0083627319, -0.00748429401, 0.0347314961, 0.00427897042, 0.00561029231, 0.0192085169, -0.0110331839, -0.000774001703, -0.0163975134, 0.00879219081, 0.0120482687, -0.00469281245, -0.00341614871, -0.0209263507, 0.0189898834, -0.000366015942, -0.0116188098, -0.0269543901, 0.0115719596, 0.0152262626, -0.00805820711, -0.00250842911, 0.0038456074, -0.0206140168, -0.0131960949, 0.012376219, 0.00186033698, -0.0159212053, 0.0227066521, -0.0283130407, -0.0182090495, 0.00183495984, -0.0146406377, -0.0260642394, 0.032451462, 0.0106661925, -0.00153824291, 0.0149920126, -0.00865944941, 0.00942466594, 0.0190679654, -0.00201455178, -0.00537994597, 0.00361916563, 0.0048685, 0.0081128655, -0.00707826, 0.00653167628, 0.000332586467, -0.0182402823, -0.0101976916, -0.0409469344, -0.0272511058, 0.0312021263, -0.00946370792, -0.00707826, -0.00744134793, -0.0121653937, 0.000549999939, -0.0214729346, 0.00541508384, -0.0213948507, -0.0300464928, -0.0201923661, -0.00273291906, -0.00279343361, 0.00150993769, 0.00340053206, -0.0114470264, -0.016694231, 0.0161476471, 0.00936219934, 0.00289494195, 0.016225731, 0.00240692077, -0.00815190654, 0.0400099345, 0.00250647706, -0.0331385955, 0.0203797668, 0.000133595822, -0.000125421459, 0.0044819871, 0.00352741755, -0.0217071846, 0.0271105561, -0.00983850844, -0.0134069193, 0.00461082486, 0.0117281266, -0.0241902377, 0.00776929827, 0.0167723149, -0.0157572292, 0.0081753321, -0.00500124181, -0.00200674334, 0.0232063867, 0.0146952961, 0.00575084239, 0.024471337, 0.0158587378, -0.00865164, -0.000954081537, -0.00671517244, -0.00347275916, -0.0400099345, 0.02812564, 0.0145000871, 0.0188180991, -0.00635598879, 0.023846671, -0.00431020372, -0.0337320268, 7.16171198e-05, -0.0038046136, -0.0110800341, 0.0287659243, 0.0275478233, -0.00840177387, -0.0207701847, -0.00748819811, 0.00170514628, 0.00937781576, -0.0112440092, 0.00369920093, -0.00306477351, 0.0162569638, 0.00922945794, 0.0134615777, 0.02835989, 0.0312958248, 0.00869068224, 0.0158431213, 0.00188083388, 0.0266576726, 0.00750771863, -0.0427272357, -0.030639926, -0.0011283051, 0.0011107364, -0.0097057661, 0.0025318542, -0.0214885511, 0.0185682327, 0.00113416137, -0.0135865118, -0.0122512849, 0.0145235127, 0.0187868662, -0.0288127735, 0.0106193423, -0.00778881926, 0.00994001701, -0.0035430342, -0.00590310479, 0.0069962726, -0.0253771041, 0.00689086, 0.0179747976, -0.0134771951, -0.000293300778, 0.0213792343, 0.0118686771, 0.0306555424, 0.00644188048, -0.00519254617, -0.0254083388, 0.00513007911, -0.00579769257, -0.00509494171, -0.0165224466, 0.0127978688, 0.0103850923, 0.00507542072, 0.00716415187, -0.0185526162, 0.011860868, -0.00664489716, -0.0238779038, 0.00023242012, 0.00695723062, -0.0209732018, 0.00290079834, 0.00868287403, -0.0183183663, 0.00961206667, -0.0170534141, -0.000210093145, -0.00637160521, -0.00586406328, -0.00602803845, -0.0122512849, -0.00829245709, -0.00329316733, -0.0191616658, -0.00557515491, 0.00776539417, -0.0112440092, -0.000934072654, -0.0222693849, 0.0275790561, 0.0557827801, -0.0126651274, 0.00129618437, 0.0309678763, 0.00602413435, -0.0270949397, -0.0395726673, 0.00815971475, 0.00675031, 0.0392291, -0.00514569599, 0.0370115303, -0.00431801192, -0.000119199191, 0.0233469363, -0.011353326, -0.0296873078, 0.0226129517, -0.0218789689, 0.0231907703, 0.00893274, -0.0204266179, 0.011275243, -0.00347861531, -0.0153746214, 0.0202236, -0.0113689424, -0.0130711608, -0.015280921, -0.0212699175, -0.00513788778, -0.00216486235, -0.0142033705, -0.00418136595, -0.000512910308, -0.0200674329, -0.00423992844, -0.00531357527, -0.00722271437, 0.0276727565, -0.0159758627, 0.00740230642, 0.0289689414, 0.00427506631, 0.014968588, 0.00806601532, -0.00562590873, -0.00776539417, -0.00302963587, 0.0255488884, 0.0124699185, 0.0183496, -0.00966672506, 0.0384795, -0.0139300786, 0.012883761, 0.00986193307, -0.00393735524, 0.0075701857, 0.00589139247, 0.00640674308, 0.00420869514, 0.0154058542, 0.0249710716, 0.0212699175, -0.0149763962, -0.00463034539, -3.99567398e-05, 0.0215197839, -0.0128134862, 0.00135084277, 0.0211918354, -0.000720319338, -0.0286722239, 0.00541898794, -0.000848668918, 0.0087765744, -0.00809724815, -0.00822218228, -0.0378236, -0.0193959158, -0.0333259962, -0.0126729356, -0.0414779, 0.0297029242, -0.0176156145, -0.0064223595, -0.00802697334, 0.00463425, -0.00580940489, -0.0226441864, 0.0213636179, -0.00349618425, 0.00400567846, -0.00488411682, -0.0135240443, 0.00505199609, 0.00668393914, 0.00304134842, -0.0376674309, -0.0122278603, 0.0188180991, -0.0179747976, 0.0093231583, -0.0136489784, -0.00753504783, -0.0252521709, -0.0037694762, -0.0419151671, 0.0227066521, -0.0178186316, -0.00292812753, -0.00177444529, -0.00176078069, -0.000629547401, 0.00203212048, -0.0251116212, -0.00333611318, 0.0011175687, -0.0328887291, -0.0063286596, 0.00701969769, 0.0131882858, 0.0157728475, 0.0141643286, 0.00302963587, 0.0150232464, 0.0108457841, 0.00199405476, 0.025299022, 0.00747258123, 0.00598899648, -0.0148905041, -0.00436876621, -0.009034249, 0.00548535865, 0.0121575855, 0.032451462, -0.00946370792, 0.00220390386, 0.000581233297, 0.00562590873, 0.0163350478, 0.0192709826, 0.0105959177, 0.0044507538, -0.00332244858, 0.0037831408, -0.0258768387, -0.0159290135, -0.00728908507, -0.0252053216, -0.00416574953, -0.00524720456, 0.00387879275, 0.0268919226, 0.00621543871, -0.0136724031, 0.038260866, 0.0108926343, 0.00792546477, 0.0202392172, -0.018537, 0.0256425887, -0.0126651274, 0.0125167686, -0.00389831373, -0.0181153491, 0.0238154363, 0.00774977729, -0.00940904953, -0.00178420567, 0.0191616658, -0.000492413412, -0.00700798491, -0.018302748, 0.0168191642, -0.0185994655, 0.00913575757, -0.017209582, -0.012493344, 0.00573522551, 0.0114470264, 0.0156166796, -0.000100593381, 0.0195677, 0.0136099365, 0.00534090446, -0.0134147275, -0.00147382414, 0.0175219141, 0.00294764829, 0.00288713374, -0.0257519055, 0.0369178317, -0.00688305171, -0.00381242204, 0.0138598038, -0.00180958281, -0.000920896069, 0.0132039031, -0.0136645949, -0.019286599, -0.0010902395, -0.0167879313, -0.0133444527, 0.00778101059, 0.00297302543, -0.00519645028, 0.00989316683, 0.00554392114, -0.00221952051, 0.0272042565, -0.00991659146, 0.0128603354, 0.0205203164, 0.00528624607, 0.0109551009, 0.0135162361, 0.000760337105, -0.0193803, 0.00277586491, 0.0129774613, 0.00731641427, -0.000273047888, -0.0206921, 0.00990878325, -0.028719075, -0.0017646848, -0.00617639674, -4.43794306e-05, -0.00865944941, 0.00237959158, 0.017912332, -0.00259432103, 0.0143751539, 0.0129462276, 0.0206764843, 0.00864383206, -0.0164287463, -0.0170377977, -0.0123918355, 0.017209582, -0.0109629091, -0.00798402727, 0.00855794083, -0.0105959177, -0.00498562492, -0.000201796778, -0.00107169466, 0.0233781692, 0.00412280345, 0.024471337, 0.0456631705, 0.0106037259, 0.00333611318, 0.017678082, 0.0149451625, 0.00840958208, -0.00438438263, 0.0064848261, 0.0099244, -0.00661366386, -0.0178967156, 0.00184276816, 0.0239872206, -0.00859698188, -0.0136724031, -0.00358012388, 0.0218945853, -0.00897959061, -0.0101039922, 0.007699023, 0.0180528816, 0.00783176534, -0.00796450675, 0.00470062066, 0.0256582052, 0.0174125973, -0.0313739106, 0.0003655279, 0.0182402823, 0.00935439114, 0.00293984, -0.010291392, -0.0196301658, 0.0175687652, 0.0162413474, 0.0303119756, -0.0109551009, 0.00326779019, -0.024080921, -0.0132976025, -0.0111893509, 0.00740621053, 0.00167488889, -0.00535652135, -0.0275790561, 0.0111893509, 0.00855794083, -0.00896397419, -0.0266420562, -0.0145235127, -0.00747258123, 0.0172251984, -0.018427683, 0.0208482668, 0.025923688, -0.00491925422, -0.0090967156, -0.0209107343, 0.0163038131, -0.00472795, -0.00113416137, 0.00174614, 0.00133522612, -0.00485678762, -0.0185838491, -0.00431410782, -0.00937000755, -0.0182715151, 0.00217852695, 0.0147655709, 0.0128525272, -0.0131180109, -0.0131570529, -0.00491144601, 0.0161944963, -0.00958083291, -0.00826903153, 0.0135552781, -0.00866725761, -0.00259627309, 0.00774587318, 0.00990878325, 0.00624667201, 0.00393540319, -0.00976042449, -0.0117359348, 0.00387488864, 0.00922165, 0.0299840253, 0.0163038131, 0.0187243987, -0.00154800341, 0.00819094852, -0.00744915614, -0.0120014185, -0.0205047, -0.0218477342, -0.000728615734, 0.00264312304, 0.00640283851, 0.0141877532, -0.00413842034, 0.0303744432, -0.0135474699, 0.0025494229, 0.00531357527, -0.00145235122, -0.0156401042, -0.0152106462, -0.0129071856, -0.00262360228, -0.0256738216, 0.0132507533, -0.00307062967, -0.0266264398, -0.0185057651, -0.00594995497, 0.00395492418, -0.0070001767, -0.0169597138, -0.0240496863, 0.00306672556, -0.0129696522, -0.0427584685, -0.010291392, -0.0112986676, -0.0131492447, 0.00910452474, -0.000597338, 0.0274697393, 0.009737, 0.00261384179, -0.00649263477, 0.00787861459, 0.0250179209, 0.00276610442, 0.00529405428, -0.0215354022, -0.000946761225, 0.0141955623, 0.00892493222, 0.0124855358, -0.0131726693, -0.00901863258, 0.0167879313, 0.00905767456, 0.00483336253, -0.000615882804, 0.00983850844, 0.0075389524, 0.00530186296, -0.0156557206, 0.00342395715, 0.00318775466, 0.0068752435, 0.00697675161, 0.0210825186, -0.0269700065, 0.00742963562, -0.00413842034, -0.0171002652, -0.00851889886, 0.000779369904, -0.00281100231, -0.00136157929, 0.0111815426, 0.0133132199, 0.031264592, -0.0110331839, 0.0105178338, -0.0108535923, -0.00479432056, 0.00501685822, 0.00257089594, -0.00603194255, 0.0118842935, -0.00315456931, -0.0044195205, 0.0108379759, -0.0145781701, -0.0330761261, 0.0058484464, 0.00906548277, -0.0209888183, 0.0124308774, -0.00546583813, -0.00267240428, -0.00680106413, 0.0142580289, -0.00912014116, 0.00593824266, -0.0025416147, 0.01359432, -0.0120560769, -0.000962377875, -0.00367382402, 0.00416574953, -0.0062388638, 0.0117905932, 0.0167879313, -0.0107130427, 0.00326779019, -0.00895616598, -0.0208326504, -0.00687133893, -0.00365039892, 0.00160070963, -0.0140706282, -0.0206608679, 0.0206764843, -0.0187087823, -0.0127744442, 0.0209107343, 0.0176156145, 0.00276415236, 0.0143048791, 0.00717976876, -0.0132351359, -0.00587577559, 0.0204578508, -0.0050246669, -0.011977993, 0.00839396566, -0.0276102908, 0.0070899725, -0.00199210271, -0.0107130427, -1.43585e-05, 0.00668784324, 0.000925776316, -0.000348935195, -0.00716415187, 0.0106115341, 0.00148163247, -0.0075389524, 0.0064535928, -0.00404862408, 0.0184901487, -4.91376377e-05, -0.0110566095, 0.000797426736, -0.00649653887, -0.0398537666, 0.0109785255, -0.00102874881, -0.00223708944, 0.0143751539, 0.00236787903, -0.019130433, -1.19412698e-05, -0.00911233295, -0.00360940513, -0.0123059433, 0.0189274158, -0.00765607739, -0.00481774565, 0.0259393044, 0.018068498, 0.00532138348, 0.00604365487, -0.00865944941, 0.00841739, 0.00557905901, -0.0177249312, 0.0292031914, -0.0221288353, 0.00556344213, 0.015319963, 0.0126026608, -0.00372653012, 0.00725394767, -0.00390026579, -0.00100922794, 0.00658633467, -0.000163487115, -0.00712901447, -0.0127119776, -0.00399787026, -0.0165068302, -0.00373238651, -0.00911233295, 0.00300425873, -0.0162881967, -0.00516131287, 0.00239911233, -0.00107559888, -0.00941685773, 0.0184433, 0.0039119781, -0.00461863307, 0.016459981, 0.00116344262, -0.0209888183, -0.00236592698, 0.00636770111, 0.00585625507, -0.00758580212, -0.00146699185, 0.0156713389, 0.0184120648, 0.0171471145, 0.00900301617, 0.0151169458, 0.0205671676, -0.0115173012, -0.010330434, 0.0302963592, 0.0145469373, 0.000174223591, 0.0364493318, -0.00315847341, 0.00240887282, 0.0230814535, -0.0152262626, 0.00355084264, 0.0139613114, -0.00514179189, -0.0238622874, -0.0119233355, -5.16997497e-05, -0.00905767456, 0.00901082437, 0.00332049653, -0.000855989289, -0.00901863258, 0.021722801, -0.00951836631, -0.00339077157, -0.00361721357, -0.0161632635, -0.0208170339, -0.00982289203, -0.00685572252, -0.00316042546, -0.0126651274, 0.0136255529, 0.0102289254, -0.0112205846, -0.0034981363, 0.0192085169, 0.00747648533, -0.0114079844, -0.0123527935, -0.0119701847, -0.00798793137, -0.00887027383, -0.0110097593, -0.0188180991, -0.000750088657, 0.0101039922, 0.00371872191, 0.0143204955, 0.0112596266, -0.00586015917, 0.00416574953, 0.0206140168, 0.033700794, 0.0384482667, 0.0119701847, -0.00746477302, -0.00552440062, -0.00422431203, -0.00663318485, 0.00377142825, -4.7429563e-05, 0.0179591812, 0.0136645949, -0.00135377096, 0.00541117974, 0.00768340658, 0.011275243, -0.00219609565, -0.0038768407, -0.0171314981, -0.00568056712, -0.0127041694, -0.00887027383, 0.0103460504, 0.0237998199, 0.00173833163, 0.00990878325, -0.0241277702, 0.00172759523, -0.00550878374, 0.0037558116, 0.00940124132, 0.0297497753, 0.0138598038, -0.0161320306, 0.0191148166, -0.0179591812, 0.0129228029, -0.0134928115, -0.00749991043, -0.0210669, 0.00472795, -0.0093856249, -0.00721490616, -0.00273487112, -0.00979165826, -7.72903659e-05, 0.00900301617, 0.0188805666, 0.00144942314, -0.00307648582, 0.022316236, -0.00801135693, -0.0076365564, -0.0148826959, -0.000591481745, 0.0117593603, -0.00338881952, 0.00793717708, 0.0044234246, -0.000178249757, -0.0269700065, -0.012493344, 0.000651508337, -0.0045171245, -0.0163038131, 0.0109863346, 0.00730470195, 0.00216876646, -0.0038046136, 0.0253458712, 0.00447808299, 0.0017129546, 0.00894835778, -0.011158118, -0.0167723149, 0.00514179189, 0.0127510186, -0.00461863307, 0.000169709383, -0.00518864207, 0.00243034586, 0.00790984835, 0.0107755093, -0.00213362882, 0.00812067371, 0.034887664, -0.003908074, -0.00236202287, 0.0191460494, 0.00386903249, -0.00500905, 0.0045483578, 0.0126729356, -0.00159778155, -0.00521987537, 0.0180997327, -0.00141330948, 0.00678154314, 0.00300230668, -0.00461863307, -0.0153824296, -0.0176156145, 0.00570008811, 0.015632296, 0.00900301617, 0.0148046128, 0.00682058511, 0.000916991907, -0.0112674348, -0.00544241304, 0.00939343311, 0.00666441815, -0.00997125, -0.00956521649, 0.00416574953, -0.0108067421, 0.0155073628, 0.0130399279, 0.0248149037, -0.000201674775, 0.00711730169, 0.010369475, 0.0166786145, 0.013945695, 0.019364683, -0.00551659195, 0.00436876621, 0.0107130427, -0.0251740888, 0.0151872216, -0.0189118, 0.0128603354, -0.00328145479, -0.0163194295, 0.0103772841, 0.00215510186, -0.0214573182, -0.00610221783, 0.00942466594, -0.0133366445, -0.00887027383, 0.00246157916, -0.0141174784, -0.0116031934, 0.0208482668, 0.00273877522, 0.00847204868, -0.00894055, -0.0028656607, -0.000690550078, -0.00370505732, -0.00473966217, 0.0104007088, -0.0111737344, -0.00901082437, -0.00604365487, 0.00591481756, -0.0077302563, 0.00695332652, 0.00765607739, 0.0174282156, 0.00454054959, 0.00242448947, 0.0188024826, 0.0125167686, -0.00225856225, -0.0233625527, 0.00507151661, 0.0122200521, -0.024471337, -0.0124855358, -0.00412670756, 0.0109629091, -0.00183593587, 6.09721537e-05, -0.0232220031, -0.0160695631, 0.0104553672, 0.0153746214, 0.0154214716, -0.00297302543, -0.0116812764, -0.00730470195, 0.0301870424, -0.00106583838, -0.00767950248, -0.00469281245, -0.0047748, -0.00726175634, -0.0108223595, -0.0245806538, 0.00550097553, 0.0155620212, 0.00361526129, 0.0241902377, -0.00928411633, 0.0105178338, 0.00942466594, -0.00160949409, 0.0173032805, 0.00634427601, 0.0218477342, 0.00171783473, -0.00415013265, -0.00880780723, 0.00926069077, -0.0114548346, -0.00545802945, -0.000333318516, -0.000375532341, -0.00539165875, 0.00116734684, -0.000579281244, -0.00755456882, -0.010213309, 0.0229096692, -0.0151325632, 0.00814409833, 0.0279226229, 0.000460692041, -0.0175062977, -0.00411889935, -0.0283286572, 0.0177093148, -0.0068752435, -0.0108379759, -0.0171158817, -0.0257519055, -0.0214729346, -0.0100415247, 0.0070275059, 0.00713291857, -0.00986193307, 0.018896183, 0.00872972421, 0.00325803, -0.00248890836, -0.0081753321, 0.0090967156, -0.00506370841, 0.00196574954, 0.000816947548, 0.00668003457, -0.0135630863, -0.0145781701, -0.00290275039, 0.00369139272, 0.0193178337, 0.0225661024, -0.017912332, 0.00268802093, 0.00753114372, 0.00373824267, -0.00373629062, -0.0145157035, 0.00232102908, -0.0100493338, -0.0109394845, 0.034762729, -0.0100883748, 0.000127861567, -0.0026040813, -0.0121653937, 0.00829245709, 0.0198019501, -0.00153824291, 0.00485288305, -0.0105568757, 0.0034395738, 0.00593433855, 0.0293905921, 0.019474, 0.0123527935, 0.00964329951, 0.00214534136, 0.00647701789, 0.0082377987, 0.016225731, -0.00826122332, -0.011977993, 0.01166566, -0.0154527044, -9.5225143e-05, 0.00740621053, 0.0332947597, 0.00704702688, -0.0246743541, -0.00941685773, 0.0100493338, 0.0173813645, -0.00303354, -0.00830807351, -0.000410425855, 0.0321078934, -0.000442147255, -0.00392954703, -0.0119077181, -0.0157806557, 0.0121419681, -0.0175219141, 0.0132117113, 0.0217071846, -0.0134850033, -0.0136411702, 0.0107286591, -0.00858917367, -0.000300133077, 0.0247680545, 0.0087141078, -0.00270363758, 0.00376557186, 0.00077009754, 0.00375971571, 0.00880780723, 0.00659804745, -0.0103460504, 0.00104826968, -0.0179435648, 0.0051574083, 0.00675811805, -3.74861302e-05, -0.00777320238, 0.00859698188, -0.00608269684, -0.000430678745, 0.0101039922, 0.00247719581, -0.000779858, -0.0222069193, -2.2860746e-05, -0.02765714, 0.00961987488, -0.000921384082, 0.0486928076, 0.00625057612, 0.0110488012, -0.00649263477, -0.0142267952, -0.0242995545, -0.0148983123, -0.00498562492, 0.00339272362, 0.00502076233, 0.00849547423, 0.00846424047, -0.00689866813, 0.00352546549, 0.00426335353, -0.0146874869, -0.00443123281, 0.00765217328, -0.00637550931, -0.0230658352, 0.0248929877, 0.0145547455, -0.00922945794, -0.0302495081, -0.00221561641, -0.0198644176, -0.00603194255, -0.0126573192, -0.0189898834, -0.000529991055, 0.0148748877, 0.0111112678, 0.02765714, -0.00607879274, -0.0136021283, 0.0238779038, -0.0302963592, -0.0136177447, -0.00446246611, 0.0120560769, 0.0280319396, 0.00671517244, -0.00360354898, -0.00291251088, -0.0252834037, -0.00396468444, -0.00684791431, 0.014179945, 0.0169440974, 0.0102055, 0.0145157035, 0.0124543021, 0.00912794936, -0.0210669, -0.00194037252, 0.00600851746, 0.00966672506, -0.00905767456, -0.00851109065, -0.00155093148, -0.0134069193, 0.00624276791, 0.0199581161, 0.018537, 0.00867506582, 0.0112049682, -0.0143439202, -0.00194134854, 0.0134615777, 0.0145547455, 0.00323850894, 0.0120951189, 0.0050871335, 0.0131023945, -0.0186775494, 0.0129149938, 0.00770683168, 0.00413451577, 0.00731641427, 0.00182812754, -0.0127197858, 0.00608660094, 0.00659804745, -0.00117027492, 0.0011146405, 0.00989316683, -0.00320727564, -0.0118530598, 0.00762484409, 0.020348534, -0.0022468497, 0.0153277712, -0.00395882828, 0.0160539467, 0.0110097593, 0.00808163173, -0.00580550078, -0.00328145479, 0.00391978677, -0.00854232349, 0.0064262636, 0.00808163173, 0.0125870444, -0.00565323792, 0.00401348667, 0.0212386847, -0.00941685773, -0.0100102918, 0.00764826871, 0.0010902395, -0.0228784364, 0.0210356675, 0.00765998149, 0.00530186296, -0.00101215602, 0.0316550098, 0.0284848232, -0.00644968869, 0.00933877472, 0.0151325632, -0.00298473798, 0.0325451605, 0.0103226257, 0.0162881967, -0.00672688475, -0.0135787027, 0.0276415236, -0.00478651235, 0.00394711597, -0.00390026579, 0.0247836709, 0.003466903, 0.00447808299, 0.00400177436, 0.0127432104, -0.00768731069, 0.00742573105, 0.011860868, 0.0132039031, 0.0210356675, 0.0178967156, -0.0348564312, 0.000719343312, 0.010291392, 0.00510665448, 0.030171426, -0.00969015, -0.0051183668, 0.0231439192, 0.0107052336, 0.00949494168, 0.00188083388, -0.0110644177, -0.0166629981, -0.00792936888, -0.0247836709, -0.00552049652, -0.0134381531, 0.00510665448, 0.00965891685, -0.0166629981, -0.00275829597, -0.00540727517, 0.00482164975, -0.0161007978, 0.00858136546, -0.00532528805, 0.00457568699, -0.00425944943, 0.0150544792, 0.00289299, -0.0076677897, -0.0123684108, 0.00405252818, -0.0237842035, 0.0031779944, 0.0242995545, 0.00244401046, -0.0131023945, -0.000684205792, -0.00660195155, 0.00918260776, 0.017209582, 0.00796060264, -0.00952617452, -0.0092685, -0.0142502207, -0.00184667238, 0.0062974263, -0.00361135718, 0.0165224466, -0.00124055, 0.0024693876, 0.00210629962, -0.0115173012, 0.0115407268, 0.00874534063, -0.0015821649, 0.00260017719, 0.00919822417, 0.0011351374, -0.0237998199, -0.00110585615, -0.0161788799, -0.011158118, 0.0119701847, -0.00302182743, 0.00223318511, 0.0135240443, -1.36493445e-05, 0.00421650335, -0.00385927199, 0.0118296351, -0.0206452515, 0.0113220932, -0.0122044357, -0.0365117975, 0.00302182743, -0.0852046087, -0.00132351357, 0.00394516392, 0.0272823405, 0.0117203183, -0.00410718657, 0.0226129517, -0.00407985738, 0.00603975076, 0.0108926343, 0.0155776385, 0.00259432103, 0.00423602434, 0.0140393954, -0.000558296277, -0.0142736454, 0.00866725761, 0.0232688524, -0.0105568757, -0.00564542972, 0.0131492447, 0.0135630863, 0.0109551009, -0.000235714266, 0.00724223536, 0.0157025717, -0.00746086892, -0.0111815426, 0.00441561639, -0.0140393954, -0.0104631754, 0.000628571375, -0.0057547465, -0.0142033705, 0.00744134793, -0.0151559878, 0.0184433, -0.0132195195, -0.00534480857, -0.0111034596, -0.00555953803, 0.0031370006, 0.0194427669, -0.0191460494, -0.00185545674, 0.0103772841, 0.0127588278, -0.00299254619, -0.00905767456, 0.0155229801, -0.0193334501, 0.00721881026, -0.00251818961, -0.0163506642, 0.0083627319, 0.00741792284, -0.00792156067, -0.0182246659, 0.0106740007, 0.0107833175, -0.00634037191, -0.0138207618, 0.00625448, -0.0103929006, -0.000244132621, 0.00691818912, 0.0070626433, -0.00309405476, -0.0268606897, 0.0160227139, -0.010369475, -0.00758970622, -0.00826122332, 0.00323460484, -0.0104007088, -0.000351619296, -0.00408766605, -0.00780053157, 0.00235226238, 0.0125011522, 0.0109551009, 0.00389440963, 0.0276415236, -0.00617639674, 0.00109804783, -1.9581852e-05, -0.030171426, 0.0112986676, -0.00542289205, -0.0203953832, 0.00883123279, -0.00852670707, -0.0103772841, -0.0260173883, -0.000920896069, 0.00144649495, -0.00415403675, -0.0077302563, 0.00961987488, -0.000950177375, 0.0181621984, 0.00203797664, 0.015749421, -0.00110585615, 0.0245494209, -0.0275634397, 0.0165380631, -0.0114236008, 0.0129696522, 0.0160070974, 0.0211137515, 0.01143141, 0.00667222636, -0.0100181, 0.0396039, -0.0075116232, 0.0103382422, -0.0057898839, 0.00913575757, 0.00117808324, 0.00692990189, -0.029421825, -0.00117125094, -0.0244088713, 0.00530576706, -0.00632085092, -0.0176624656, -0.0193803, -0.00461472897, -0.0130321197, 0.0057235132, -0.00326974224, -0.00136450736, -0.0148358457, -0.00146406377, -0.00544631714, -0.0165692978, 0.0101039922, -0.0207233336, -0.0110722259, 0.0083627319, -0.0119545683, 0.00052364677, 0.00943247415, -0.0263609551, -0.026517123, 0.0118921017, 0.00731641427, -0.0106818089, -0.0097057661, 0.00328145479, -0.0177561641, -0.00866725761, 0.00507151661, -0.00263141049, 0.00500905, 0.0139535032, -0.0084330067, -0.0180528816, 0.0050246669, 0.019520849, 0.0017578525, -0.0181621984, 0.00458349567, -0.0151013294, 0.0195677, -0.00430629961, 0.0155229801, -0.00491535, 0.00131472922, 0.0114470264, 0.022035135, -0.00570789631, 0.012844719, 0.00708606839, -0.021566635, 0.000590505719, -0.0245650373, 0.0139613114, 0.0142424116, 0.0243620202, 0.0173345152, -0.0195677, -0.0150700957, -0.0214729346, -0.0167566966, 0.00989316683, 0.0236748867, -0.0064535928, -0.00390026579, 0.00614125933, -0.00476699136, 0.0104475589, -0.0210512839, 0.00613345113, -0.00982289203, 0.00106779044, 0.0350438282, 0.00631304272, 0.00780443568, 0.0136645949, -0.0038495115, 0.00578207569, 0.000238276378, -0.010135225, -0.0156010631, -0.0178030152, 0.0093856249, -0.0162569638, 0.0213948507, 0.0208795015, -0.019052349, -0.00428287452, -0.00583283, 0.0158196967, -0.000190450286, -0.0116344262, 0.0147811873, 0.0148826959, 0.00299059413, 0.0208482668, -0.00819094852, 0.0058172131, 0.0132976025, 0.00294569624, 0.00195794133, 0.0153824296, 0.0183808319, -0.0144688543, -0.00994001701, 0.00671126833, 0.0110722259, 0.0308117084, -0.0123684108, -0.0150310546, 0.00299059413, -0.00230736448, 0.0352312289, 0.00892493222, 0.0140862456, 0.0432269685, -0.00704312278, 0.00773806497, -0.00108731131, -0.011977993, 0.0176624656, 0.0133600691, -0.00968234148, -0.0101508414, -0.00907329097, 0.0157416128, -0.00748038944, -0.0185526162, 0.021098135, 0.0196145494, 0.0201767497, 0.00402129488, 0.00485288305, -0.00517692929, -0.0082377987, -0.00615297165, 0.00861259922, 0.0187087823, -0.0300152581, -0.00700798491, -0.00668003457, -0.00603975076, -0.0126651274, 0.0120560769, -0.0084251985, -0.00365820713, 0.00255332724, -0.00929192454, -0.0146874869, -0.0100649502, -0.0070899725, 0.00538775465, 0.0124464938, -0.00114001764, -0.0106115341, 0.00336344237, -0.013906653, -0.00336344237, 0.00287151709, 0.00188376196, -0.0134771951, -0.00855794083, -0.0248773713, -0.000988731, -0.00640283851, 0.00400177436, -0.0190211162, -0.00960425846, -0.0117125101, -0.0257831383, 0.00296521699, -0.00997905806, -0.00113318535, -0.0211293679, 0.0058211172, 0.0100259082, -0.0185994655, -0.00929973274, 0.00286761275, -0.0128291026, -0.0208014175, 0.00547364634, -0.0170534141, 0.00133522612, -0.0255020373, -0.0131023945, 0.0246743541, -0.0240496863, 0.0017646848, -0.00776539417, -0.00829245709, -0.00166805659, -0.0192553662, -0.00147187209, 0.0146952961, -0.0190211162, 0.0207545683, 0.00368748861, -0.021098135, 0.0108457841, -0.00675031, 0.00840958208, 0.00474747084, -0.0015753326, -0.0233313199, -0.00800354872, -0.0125480024, -0.00720709795, -0.0177405477, -0.00232102908, -0.00475137495, -0.0237373542, -0.00294179213, -0.00597728416, -0.0191460494, -0.0198175665, 0.0280319396, 0.00101118, 0.00421259925, 0.0263921898, -0.0183183663, -0.0158275049, -0.00900301617, -0.00840958208, -0.0134069193, -0.00516912108, -0.0134147275, -0.00400567846, 0.00725004356, 0.00584063819, -0.00380266155, 0.0147655709, -0.0180997327, 0.0306867752, -0.00311552756, 0.000707142812, -0.0111425007, -0.0161788799, -0.0231126864, -0.0254864208, 0.00400958257, 0.00876876526, 0.00933096651, -0.012259094, 0.00901863258, -0.0121419681, -0.0317330919, 0.00966672506, 0.0782708, -0.00742573105, 0.0254395716, -0.0451946706, 0.0019023068, -0.0296404585, -0.00773806497, 0.0438516364, 0.00426725764, 0.0122278603, -0.0076677897, 0.0256582052, -0.00961206667, 0.00879219081, -0.0178654809, -0.0195052326, -0.00239325617, -0.0177561641, -0.0176468473, -0.0227066521, 0.00928411633, -0.0206452515, 0.0154448962, -0.0182090495, -0.0050559, 0.00799574051, -0.0124074519, -0.0111425007, -0.014179945, -0.00219999976, 0.00434924522, 0.0263609551, 0.00226246659, -0.00828464888, -0.02286282, -0.00335953827, 0.0289377086, 0.00170807436, 0.0151403714, -0.0267982222, 0.0246118866, 0.0252677873, 0.00106095814, 0.000136279938, 0.0174750648, 0.019130433, -0.00198819861, -0.0076677897, 0.0150700957, -0.0138754202, -0.0076326523, -0.02789139, -0.0307648592, -0.00084574084, -0.00573912961, 0.00904205721, 0.0334196948, 0.0101274168, 0.00536823366, -0.00614906754, -0.0144610452, 0.0122356685, -0.00123078958, 0.00866725761, 0.00175297225, -0.0337320268, -0.010408517, -0.00274072727, -0.0158821642, -0.00675031, -0.012259094, -0.00780834, 0.0151872216, -0.0164287463, 0.00761313131, -0.00472014165, -0.0149607789, 0.00593433855, 0.00472404575, -0.0174906813, -0.0207858011, 0.00719538517, -0.00120638846, -0.00739840185, -0.0217696521, -0.0064535928, -0.00520425849, -0.00873753242, -0.00453274138, 0.0205359347, -0.00220976025, 0.0251116212, -0.0301089585, 0.00123957393, 0.0096979579, 0.00324436533, -0.0121732019, 0.0167723149, 0.0157572292, 0.0210825186, 0.0135474699, -0.00387879275, -0.0369490646, 0.0096979579, 0.0121653937, 0.034294229, 0.00742963562, 0.00524330046, -0.00270754192, 0.00282271486, -0.00997905806, -0.000181543903, -0.00759751489, 0.0398537666, 0.0321391262, -0.0125636188, 0.00379485311, -0.0017539484, -0.0120716933, -0.0144688543, 0.0223630853, 0.00262165023, 0.0250179209, 0.00593433855, 0.00812067371, -0.00373824267, 0.0107208509, 0.0130633526, -0.00186521723, -0.00659804745, 0.00117125094, -0.00264897943, 0.000680301629, -0.00834711548, 0.0297966246, 0.00258846465, 0.00564933382, 0.014101862, 0.0134615777, 0.0215510186, 0.0152965374, 0.00969015, 0.00208677887, 0.013711445, -0.00337320287, 2.2616734e-05, -0.000762289157, -0.0228315853, 0.0015929013, 0.0173032805, -0.00668784324, 0.0210825186, 0.0120404605, -0.0167098474, -0.0025591834, -0.0083627319, -0.0268919226, -0.0242683198, 0.0164912138, 0.0104944091, 0.0100805666, 0.00517692929, 0.0156869553, 5.22487753e-05, 0.0143126873, 0.0142502207, 0.0144766625, -0.0222850014, 0.00346104661, 0.00147089607, 0.0100024836, 0.0110019511, -0.0063286596, 0.00498952903, -0.00350594451, 0.0153668132, 0.00138305221, -0.0163194295, -0.021332385, -0.00947151612, -0.000183129974, 0.00761703542, -0.00199698284, 0.0459442735, 0.00490754144, -0.00831588171, 0.0157806557, 0.00990878325, 0.0227691196, 0.00267240428, -0.00248890836, 0.0274072737, 0.00294764829, -0.011626618, 0.00789423194, -0.0123918355, 0.0396663658, 0.00321508385, -0.00458349567, -0.00879999902, 0.0228784364, 0.00818314, -0.0102289254, -0.0223787017, 0.00701188901, 0.0117905932, 0.0122825187, 0.000783274125, 0.000605634355, -0.00389440963, -0.00692599732]
04 Jan, 2023
Mongoose Query.prototype.findOneAndRemove() API 04 Jan, 2023 The Mongoose Query API findOneAndRemove() method is used to find and remove a single document that is determined from the conditions parameter, from a collection, using the MongoDB query system. Syntax: Query.prototype.findOneAndRemove(conditions, options, callback) Parameters: It accepts the following parameters as mentioned above and described below: conditions: It is a mongoose object which identifies the existing document to remove. options: It is an optional mongoose object which is derived from Query.prototype.setOptions(). callback: It is a callback function that accepts 2 parameters: error and document. Return type: It returns a Query object as a response. Creating node application And Installing Mongoose: Step 1: Create a node application using the following command: mkdir folder_name cd folder_name npm init -y touch main.js Step 2: After completing the Node.js application, Install the required module using the following command: npm install mongoose Example 1: In this example, we will use this method to find and remove an existing document that has the name “Luffy”. Javascript const mongoose = require('mongoose') // Database connection mongoose.connect('mongodb://localhost:27017/query-helpers', { dbName: 'event_db', useNewUrlParser: true, useUnifiedTopology: true }, err => err ? console.log(err) : console.log('Connected to database')); const personSchema = new mongoose.Schema({ name: { type: String, }, age: { type: Number, } }); const personsArray = [ { name: 'Luffy', age: 20 }, { name: 'Nami', age: 20, }, { name: 'Zoro', age: 35 } ] const Person = mongoose.model('Person', personSchema); (async () => { await Person.insertMany(personsArray); const res = await Person.findOneAndRemove({ name: 'Luffy' }); console.log({ res }); })() Step to Run Application: Run the application using the following command from the root directory of the project: node main.js Output: GUI Representation of the  Database using MongoDB Compass: Example 2: In this example, we will use this method to find and remove a single document that has an age equal to “20”. Javascript const mongoose = require('mongoose') // Database connection mongoose.connect('mongodb://localhost:27017/query-helpers', { dbName: 'event_db', useNewUrlParser: true, useUnifiedTopology: true }, err => err ? console.log(err) : console.log('Connected to database')); const personSchema = new mongoose.Schema({ name: { type: String, }, age: { type: Number, } }); const personsArray = [ { name: 'Luffy', age: 20 }, { name: 'Nami', age: 20, }, { name: 'Zoro', age: 35 } ] const Person = mongoose.model('Person', personSchema); (async () => { await Person.insertMany(personsArray); const res = await Person.findOneAndRemove({ age: 20 }); console.log({ res }); })() Step to Run Application: Run the application using the following command from the root directory of the project: node main.js Output: GUI Representation of the  Database using MongoDB Compass: Reference: https://mongoosejs.com/docs/api/query.html#query_Query-findOneAndRemove Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API
https://www.geeksforgeeks.org/mongoose-query-prototype-findoneandremove-api/?ref=next_article
Languages
Mongoose Query.prototype.findOneAndRemove() API
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0251107179, -0.0148640918, -0.00235412968, 0.0398191623, -0.0197539367, 0.023450505, -0.00258273329, 0.0029994077, -0.0425688922, 0.0217902921, 0.005561064, 0.00264920667, -0.0167707428, -0.00948785618, 0.0150716184, 0.0396635197, -0.0576405115, 0.0315181, -0.00865775, -0.00195042568, -0.0261742901, 0.0322444439, 0.0229576286, 0.0214919727, -0.00311127747, 0.0316478051, 0.0431395881, -0.0136189321, -0.0406492688, -0.0612722263, -0.0273935087, 0.0110767316, 0.0256035924, -0.0107589569, -0.00351822423, -0.00651438953, 0.03055829, 0.0140599264, -0.0332561359, 0.000257381616, -0.00721154874, -0.0101817735, -0.0525301658, 0.0153310271, 0.0112972287, 0.00198933692, -0.0139821041, -0.0262132026, 0.0187552162, -0.0118549559, 0.0294947159, 0.0145138912, 0.0079703182, -0.0308176987, 0.00389436609, 0.00633604592, 0.00735422364, -0.00450073276, -0.0106487079, -0.0558246523, 0.0260964688, -0.0318553299, 0.0228538662, -0.000580425898, -0.0168096535, 0.0605977625, -0.000361347571, 0.00497739529, -0.0309214611, -0.011991146, -0.0294687748, 0.0548907816, -0.00197960902, -0.0173025299, -0.0206099842, 0.0303767044, -0.0175230261, 0.00237844931, -0.0111286137, 0.0286646094, 0.0123478323, -0.0141247781, 0.0030221059, 0.0202468131, 0.0362133905, -0.0423354246, -0.0124840215, -0.0497545, 0.0199744347, 0.00651114667, 0.0191962086, 0.00465313531, -0.00109356781, -0.0179121383, -0.0165113341, 0.00637495751, -0.0192870032, 0.00509737199, -0.0260705277, 0.0535418615, -0.00179478072, -0.025473889, -0.000890905154, -0.0131390272, 0.000584884488, -0.0319590941, 0.0459930785, -0.0169134177, -0.0133854654, 0.0280420296, 0.01291853, 0.025279332, -0.023476446, 0.0384961814, 0.0419463105, 0.00407595187, 0.00758769084, -0.0143193342, -0.0150067667, -0.0287683737, 0.00974726398, 0.00284376275, 0.0197539367, 0.0170950033, -0.0411680862, 0.0255646817, 0.0469269492, 0.0432433523, 0.0355129875, 0.0247345753, 0.00867072, -0.0297022425, -0.0419722535, 0.0149159739, -0.00149889325, 0.036343094, 0.0228668358, 0.0305064078, -0.00795086287, -0.00830106344, -0.031284634, -0.0485612229, 0.00912468508, -0.0188330375, 0.014941914, 0.0185217485, 0.00857344177, 0.0167318303, 0.00950731151, 0.00961107481, -0.0454223827, -0.0374585502, -0.00200879248, -0.0160054881, -0.00350849633, 0.0385999456, 0.00748392753, -0.0145917134, -0.0249810126, 0.00226495811, 0.0464081317, -0.0595082492, -0.00880690943, -0.000289807649, -0.0203376058, 0.0514925346, -0.0125553589, -0.00440021232, -0.0599751845, 0.0180937238, -0.0290018413, 0.0224517826, -0.029883828, 0.0369137935, -0.0149678551, 0.000508278, 0.0480942875, -0.0192999728, 0.0558765344, -0.00235737232, 0.0244232845, 0.0134114055, 0.0529971, 0.0152921155, 0.0297022425, -0.0459152572, 0.00598584488, -0.0240082312, -0.0104022706, 0.00588856684, -0.0393522307, 0.0196242332, 0.0610646978, 0.00159292866, 0.00571346655, 0.0443588085, -0.0160833113, -0.00462395186, 0.00837888569, -0.0215568244, 0.0171339139, -0.0464081317, 0.0183661021, -0.00509088673, 0.0415831394, -0.0383664779, 0.0298319478, -0.0693138838, 0.0568622835, 0.0159795471, 0.00819081534, 0.0236580316, 0.00539244851, -0.0237099119, 0.0318034515, -0.0096499864, -0.0171728246, -0.0181066953, 0.0163946, -0.0114139626, -0.0391706452, -0.0188070964, -0.0393003486, 0.00551891, -0.0219718777, -0.0272378642, 0.00126056187, 0.0221404936, 0.0487687476, 0.0114528732, -0.0146306241, 0.0444366299, 0.0125488732, 0.0141766602, -0.00320531311, 0.0371213183, -0.0111026727, -0.0233597122, 0.0049546971, -0.00477959681, -0.0195075, 0.0193907656, 0.00879393891, 0.011653915, 0.0154088493, 0.0231910963, -0.0432433523, -0.0308176987, -9.50994654e-05, -0.0026411002, -0.00877448358, -0.0272119232, -0.032918904, 0.0612203442, -0.032296326, -0.0215438548, 0.0069845668, -0.0208045412, -0.037717957, 0.0177954044, -0.0134373466, -0.00682892185, -0.0272378642, 0.0496766753, -0.0152013227, -0.0460968427, -0.0294428356, -0.0321147405, 0.0141636897, -0.0112453466, 0.0465637781, -0.0190405641, -0.00854750164, 0.0338008925, -0.029883828, -0.00785358436, -0.0391706452, 0.0320628583, 0.0286127292, -0.0209342446, 0.0152402334, 0.044877626, -0.0119457496, -0.00130595837, -0.00413107593, -0.00625498127, 0.0149808256, -0.0105190035, -0.042776417, 0.0217902921, -0.0458374359, -0.00499360869, 0.0174062923, -0.0226593092, 0.00536650792, -0.0068808035, -0.00386194, 0.0290018413, -0.0166280679, 0.0137875481, -0.0447219796, -0.0308695808, 0.0105190035, 0.0339824781, 0.0201819614, -0.00767199835, 0.0371472575, -0.0324519686, -0.00983157195, -0.0338787138, 0.0182623398, -0.0022860351, -0.0279123262, -0.0371732, -0.0168096535, 0.0118873827, 0.0235283263, 0.0115825776, 0.00370305264, -0.0346828811, -0.0415572, -0.0166669786, -0.0320887975, -0.00690674409, 0.0301172957, -0.0182493702, -0.00720506394, -0.0258759707, 0.000246235169, -0.00676406967, -0.0256943852, -0.00619985675, 0.0582630895, 0.022244256, -0.0175100565, 0.00247734855, -0.0325297937, -0.0173803512, -0.00390085136, 0.0152013227, 0.011653915, 0.00691322936, -0.00389436609, 0.0300394744, 0.0351757556, 0.0111999502, 4.86390454e-05, 0.000807813485, 0.0178343169, 0.00162292272, 0.000747014652, -0.0179121383, 0.0317515694, 0.015642317, -0.016459452, 0.0487168655, 0.00521734823, -0.0338787138, -0.0201430488, 0.023087332, -0.0073607089, 0.000416269148, 0.0136708142, -0.0136837848, -0.0163427182, -0.0274713319, -0.0320887975, 0.00333015318, -0.0027578338, -0.000137709299, 0.0100715244, 0.0239174385, 0.0384961814, -0.0114204474, -0.0244751666, -0.0090403771, 0.0285867881, 0.0172247067, 0.0107265301, 0.0309733432, 0.0144230975, 0.0481980518, -0.0200781971, 0.023087332, 0.00243033096, 0.0120495129, -0.0212585051, -0.000857668463, 0.0222831666, -0.00926087424, -0.0204673093, -0.0020574315, 0.00236061495, 0.0059177503, 0.0395338163, -0.0135021983, -0.00341121829, 0.0194037352, -0.0154347904, -0.0534380972, 0.0368100293, -0.0271600429, -0.00598584488, 0.00960459, 0.0112648029, -0.0286127292, -0.0126072401, -0.00295239, -0.003124248, 0.020389488, 0.00314532476, 0.0433471166, -0.0395338163, 0.0171209443, 0.0465637781, 0.0131519977, 0.0293131303, 0.0294687748, -0.0311808698, 0.00542163197, -0.00729585672, -0.0102660805, -0.019715026, 0.00878745411, -0.0179640204, 0.0135800214, 0.0224258415, -0.0213492978, -0.0693138838, -0.0154737011, -0.0244232845, -0.0155126126, 0.0225944575, 0.00340473303, 0.0118938675, -0.0367581472, 0.0165502448, 0.0115955481, -0.0117511926, 0.01797699, 0.0360577442, 0.0266931076, 0.00900795124, 0.0197798777, -0.00335933664, 8.4003681e-05, -0.0457077324, 0.0271600429, 0.00604745466, 0.00580750173, 0.00815838855, 0.00587883918, -0.00827512238, -0.00584965572, 0.00260056765, -0.0691063553, -0.00147295243, -0.0122310985, 0.0110507905, -0.0194556173, 0.00997424684, 0.00941651873, 0.0368619114, -0.00100439624, 0.0255646817, -0.0404936261, 0.00795734767, 0.0136578437, 0.00900795124, -0.0126072401, 0.0184439253, 0.015642317, 0.0114723295, 0.0202986952, 4.68150793e-05, 0.00889121741, -0.0241119955, -0.023255948, 0.00200554985, 0.00812596269, 0.00892364327, 0.0136708142, 0.00432238961, 0.0378995426, 0.0195334405, -0.0229835697, 0.0139431925, 0.0381848924, -0.020415429, -0.042465128, 0.0108951461, -0.0208304804, -0.029883828, -0.00405973895, 0.0123672877, 0.00892364327, 0.0105903409, -0.00732828258, 0.000929005735, -0.0106033115, 0.0236061495, 0.000611636, -0.0149289435, -0.0409605615, -0.0292871892, 0.0150456773, -0.0391965844, 0.0219718777, -0.000366008811, -0.0229316875, -0.0227371324, 0.0444366299, -0.0138783408, 0.0027918811, 0.00573616475, -0.0155515233, 0.0223091077, 0.0234245639, 0.0381848924, 0.0276529174, 0.0148770623, -0.00119084597, -0.0166150983, 0.00416674465, -0.00837240089, -0.0196372028, -0.00286483974, 0.00378087512, -0.0348644666, -0.0180548131, 0.000411607907, 0.0066278805, 0.00760714663, 0.0200652275, -0.0316996872, -0.0442550443, -0.0134632876, 0.00769793941, -0.0145657724, 0.00712075597, -0.016822625, 0.0107589569, -0.00634577405, 0.00998721737, -0.0148511212, 0.0287683737, 0.0333858393, -0.0201819614, -0.00116166251, 0.0146176545, 0.0248772502, 0.0136578437, -0.00927384477, -0.00358307618, 0.0237099119, -0.00608960818, 0.00379708805, -0.00569076836, -0.00318585732, 0.0183401629, -0.012471051, -0.00872908719, 0.0361355655, 0.00607663812, 0.00399812963, 0.0257592369, -0.0380811282, 0.0134373466, -0.00664733583, 0.00752932392, 0.0309992842, -0.00302696973, -0.0216216762, -0.0262261722, 0.0311289877, -0.0346828811, -0.0114982696, 0.00686134771, 0.0162130147, 0.0464859568, -0.0275491551, -0.00658896938, 0.0123608029, 0.0127953114, -0.00470825937, 0.00253571547, -0.0299616512, -0.0269525163, 0.0260445867, -0.0177694634, 0.0139950747, 0.00915711094, -0.00206067413, 0.0173025299, -0.0404158048, 0.0156942, 0.00695214048, -0.0322703831, 0.00310803484, -0.00839185622, -0.0103244474, -0.022581486, 0.0138524, -0.000513141917, 0.01797699, 0.00462395186, -0.0116474293, -0.0148640918, -0.0207526591, 0.00862532388, -0.00376141933, 0.00765254302, 0.0227371324, -0.0177824348, -0.0112648029, -0.010363359, -0.0105125187, 0.0159276649, -0.00702996319, 0.000149463725, 0.0144879501, 0.0104995482, 0.0291056037, 0.0240601134, -0.0374326073, 0.0191443283, -0.0218292028, 0.0108432639, 0.00878745411, -0.0145917134, 0.00506818853, 0.00107005902, -0.0275750961, -0.00632631825, 0.000718236552, 0.0330486074, -0.0156682581, 0.00214498187, 6.7892e-05, -0.0116668856, 0.00890418794, 0.0102206841, 0.00970186759, 0.0331523716, -0.00487687485, -0.0024124966, -0.000463692209, 0.0205970146, -0.0140210148, -0.0197798777, -0.011627974, -0.0155644938, 0.0218032617, 0.0112518324, -0.0126785776, -0.0541125573, -0.00581398699, 0.0132492753, -0.0136448732, 0.019715026, -0.0113426251, -0.0257851779, 0.00352795189, 0.00879393891, 0.011738223, 0.00131973939, 0.0148122106, -0.0195723511, 0.00159941392, 0.0577442721, -0.0261094384, -0.014098838, -0.0165891573, 0.0123413466, 0.0341381244, -0.0283273794, -0.0344753526, 0.00626795134, -0.00278215343, 0.0150586478, -0.012749915, -0.00136837841, -0.00364144309, 0.0273935087, -0.00717263762, -0.00903389137, -0.00573292188, -0.039430052, -0.0316218622, -0.0207396876, -0.0274453908, -0.0164335109, 0.0141896307, 0.0125748143, 0.000331556163, 0.0179251097, -0.0037581767, 0.000251301739, 0.0292612482, -0.0274453908, -0.019520469, 0.0131066013, 0.00560321799, -0.00182882801, 0.00808705203, 0.0466934815, -0.00809353683, -0.000147639759, 0.000464908197, -0.0147343874, -0.000225360898, 0.0119587192, -0.0236061495, -0.00308533665, -0.00919602159, 0.00631983299, -0.0114788143, -0.0194556173, 0.0163686592, 0.0446182154, -0.00816487428, -0.00433211774, 0.0447998, 0.0111610396, -0.0185736287, -0.0170431212, 0.0236969423, -0.0237358529, 0.00909874402, -0.00115436665, -0.0100844949, 0.0258370601, 0.00573940715, 0.00456558494, -0.0330745503, 0.0237099119, 0.042776417, -0.016654009, 0.00467583351, 0.0290277824, -0.00808705203, 0.0292093679, -0.0213492978, -0.0140469559, -0.0304804668, -0.00539569138, -0.0183401629, 0.00418944284, -0.0104282107, 0.00978617556, -0.0307139345, 0.000670002832, 0.0378217213, -0.0358761586, 0.0031258692, -0.0177175831, 0.00544757303, -0.00974077918, 0.0252274517, -0.0113426251, 0.00613824744, -0.0159925185, -0.0126720918, 0.00583668519, -0.0340862423, 0.0118873827, -0.0228149537, -0.0244362559, 0.0170560908, 0.00629064953, -0.00125407672, 0.00466934824, 0.023087332, -0.021427121, -0.00670570275, -0.00926087424, 0.0118290158, -0.0111156432, -0.0369137935, -0.00185476884, -0.0151624111, -0.00478932448, 0.0115631223, 0.0249550715, 0.00127272168, 0.0168096535, 0.00622904, 0.011232377, 0.0389371775, 0.0261094384, -0.0166150983, 0.00182072155, 0.0193907656, -0.0125748143, -0.00946191512, -0.0102855368, 0.0245789308, -0.00987048354, 0.00602475647, -0.044488512, 0.0125748143, -0.063191846, 0.0117447078, 0.0265374631, 0.00291834259, 0.0024027687, -0.00683540711, -0.00490605831, -0.035331402, 0.000871449534, 0.0120170861, 0.0118355006, -0.00910522882, 0.00742556062, 0.0185866, -0.00304156146, -0.00292158523, 0.00926735904, 0.00128650269, 0.011543666, 0.0302210599, -0.0163167771, 0.0548907816, -0.0475754701, -0.03431971, 0.0353573412, 0.0392484665, 0.00783412904, -0.0153310271, -0.010279051, 0.00433860254, 0.00628416426, -0.0563434698, 0.0162778664, 0.0128666488, 0.00417323, 0.00649493374, -0.0267190486, -0.00893012807, 0.0307139345, -0.00537623558, 0.00481850794, -0.0177175831, 0.00558700506, 0.00063230755, 0.0287683737, 0.0383145958, 0.0287164915, -0.00806111097, 0.0125164473, 0.00201852038, -0.0389890559, 0.0230095107, -0.00364792836, 0.0177305527, -0.0316218622, -0.00704941899, -0.0359021, -0.0241379365, 0.00848913472, -0.0149030033, 0.0232689194, 0.00406946661, -0.0222053453, 0.0205581021, 0.0373288468, -0.0248902198, -0.0115825776, -0.0216605868, 0.00611879164, -0.00512007, -0.00239141961, -0.0262910239, -0.000759985065, -0.00471150223, -0.0110897021, -0.0189238302, -0.0116604, 0.0260445867, -0.0420500748, 0.0111350985, -0.0268746931, 0.00375169166, 0.00594369136, 0.025811119, 0.0110767316, 0.00152159145, -0.0454483218, -0.00837240089, -0.0183271915, -0.0292871892, 0.0083270045, -0.0345531777, -0.0158628132, 0.00172020087, 0.0303767044, 0.00159779261, -0.0198187884, -0.0092933, 9.75314179e-05, 0.0168096535, -0.0145917134, 0.0123283761, -0.0337230712, 0.000792816398, -0.0280420296, 0.0212974157, -0.0159795471, -0.0326854363, 0.000300548767, -0.00900146551, 0.0514147133, 0.00988993887, 0.00536975032, 0.0180937238, -0.0231651552, -0.014098838, -0.00567455497, 0.00418295758, -0.00190665049, -0.00925438851, -0.0167837124, -0.0589375496, 0.0213622674, -0.031595923, -0.0314402767, -0.0144620091, -0.00115031342, 0.00647223555, 0.0211547408, -0.0277048, 0.0250328947, 0.00483147847, -0.0102012288, 0.0264596399, -0.0194167066, -0.0145398313, 0.0336452499, -0.0167577714, -0.0309214611, -0.0184568968, -0.00433860254, -0.0194685888, 0.0348904058, -0.0146176545, -0.0313105732, -0.0728418306, -0.000736070855, -0.00633280352, 0.0071142707, 0.0038489697, 0.00718560815, 0.0440475196, -0.0301432367, 0.0142415119, -0.0385999456, 0.00603772653, -0.0110248504, -0.00155807077, 0.0141507192, 0.0128666488, 0.0221275222, 0.00594693376, -0.00452991622, 0.00880690943, 0.0340343602, -0.0164464824, 0.00818433, -0.0159276649, -0.0106292525, 0.00168128964, 0.0183142219, 0.0436324663, -0.0183271915, 0.00741259, 0.00693917042, 0.00539569138, -0.0024108754, -0.0197928492, -0.00510385726, 0.000572319434, -0.0368100293, 0.00813244842, -0.0137875481, 0.0502214357, -0.0160573702, 0.00425753789, 0.00743204588, 0.0147343874, -0.019183239, -0.0452148542, 0.00712724123, -0.00890418794, 0.00274486328, -0.041764725, 0.0234245639, 0.0365765616, -0.0222961381, -0.00296211778, -0.00136351457, -0.0215568244, -0.0112129208, -0.0134373466, -0.0238655582, -0.0107978676, 0.0084372526, 0.0190275945, -0.00410513533, -0.0189368017, 0.027523214, -0.024993984, -0.0257332977, -0.0111156432, -0.0449035652, -0.00479580974, 0.0154737011, 0.00415377459, -0.0185995698, -0.0104606375, 0.0118160453, 0.0060409694, -0.0269784573, 0.0115631223, -0.0123413466, 0.00652087433, 0.0230224803, 0.023087332, -0.0120624825, -0.000908739457, 0.00718560815, -0.0212974157, 0.00799625926, 0.00699105207, 0.0204673093, -0.00859289803, 0.00118030747, -0.0146954767, -0.0207007769, 0.00133838435, -0.00750986859, -0.0161222219, 0.00970835332, -0.00627767947, 0.00433211774, -0.0375882536, -0.0396116376, 0.00633604592, -0.0142415119, -0.0132233351, -0.00756823504, 0.00305128936, 0.00312100537, 0.0032636798, -0.0118484711, -0.00864477921, -0.0129963523, 0.000403906743, -0.0221145526, 0.0336452499, -0.000290618278, -0.0141766602, -0.0031891, -0.0126785776, 0.00263461494, -0.0071337265, 0.00806759577, -0.0245659593, 0.0236320905, 0.011880897, -0.00468556117, -0.0215568244, -0.0254220068, -0.0236969423, 0.000986562, 0.00551891, 0.0234375335, -0.0113166841, 0.00821027067, 0.0092933, -0.0211417712, 0.0115047554, -0.0213882085, 0.0208693929, 0.039015, 0.0159795471, -0.0255517103, 0.014436068, 0.0208304804, -0.0178991687, -0.0140080443, -0.0221534632, 0.0170690622, 0.00551242521, 0.0173544101, 0.0403120406, -0.00966944173, 0.00581074459, 0.0631399676, -0.0193648245, 0.020921275, -0.0121532762, -0.0393522307, -0.0096564712, -0.0335933678, -0.00136027194, 0.000696754316, -0.0318812728, 0.00981211662, 0.00979914609, 0.0308176987, 0.00500333635, -0.0247605164, 0.00175262685, -0.00922844838, -0.0194685888, -0.00366738392, -0.0308176987, -0.0264985505, -0.0157331098, 0.0107395006, 0.0324260294, -0.00693917042, -0.00486714719, 0.00384572707, 0.00674461434, 0.00581074459, 0.00319558522, 0.0319590941, -0.000662301667, 0.00440669758, -0.00487687485, 0.00834646, 0.062569268, 0.0201300792, 0.0247345753, 0.0126720918, 0.0250718053, -0.00671218801, 0.0036284728, 0.00557403453, 0.00656302832, 0.00961756054, -0.00765902828, -0.0234894156, -0.0225425754, -0.0271081608, -0.0260834973, -0.005055218, 0.013002838, -0.00767848361, -0.000170641986, 0.0165243037, 0.00957216416, 0.0134632876, -0.0333339572, -0.000619337137, 0.00291023613, -0.0313365161, -0.0175878778, 0.00601178594, -0.0410383828, 0.00142269209, 0.00621931255, -0.0262780543, 0.0213363282, -0.0307917576, -0.013424376, -0.0146435946, -0.00445533637, -0.0152661745, -0.00397867383, 0.0191313569, -0.020921275, -0.0121013941, 0.00525950175, -0.0177694634, 0.00835943, -0.0408567972, 0.0119976308, -0.05263393, 0.00387815316, -0.00633604592, -0.00320693431, 0.0010692483, -0.00555457873, -0.00667327689, 0.0028940232, 0.0199874043, 0.0158498436, -0.0296503603, -0.0215308834, 0.0393522307, 0.00331718288, 0.00526923, 0.0281717349, 0.0181456059, -0.00584641332, 0.0382627137, -0.00262812967, 0.0320369154, -0.00269136042, 0.00532435393, 0.00788601, 0.0121013941, -0.000635144825, 0.0419203714, -0.00144376897, 0.0135670509, -0.00788601, -0.00674461434, 0.00236710021, 0.00240439014, -0.0204802807, 0.0107589569, -0.0207656287, -0.00897552539, -0.0020331121, 0.0144879501, 0.0181326363, 0.0128796184, -0.0115177259, 0.0108108381, 0.0134373466, 0.002780532, 0.0110443057, -0.0148640918, -0.00183207064, -0.00939057767, 0.017691642, -0.0115955481, -0.00115031342, 0.00896255486, -0.0126202106, -0.00400461443, 0.00622579781, 0.0236580316, 0.0229316875, -0.00206229556, 0.00058366853, -0.00515249604, 0.00118192879, 0.0175100565, -0.0119846603, -0.0128407078, -0.00783412904, -0.0118938675, 0.0225166343, 9.97607058e-05, -0.0116409445, 0.0067575844, 0.0148900328, 0.043865934, -0.0201041382, 0.0250847768, -0.010194744, 0.00911171455, -0.00194718305, -0.0211547408, 0.000815109292, 0.0258759707, -0.0345531777, 0.00768496888, 0.0120300567, -0.0290277824, -0.0277566817, 0.0203635469, 0.021569794, 0.00151510618, -0.00232656766, 0.00880690943, 0.0146435946, 0.0101363771, 0.00891715847, 0.0116409445, 0.0223480202, 0.0217254404, -0.0302988812, 0.00294590485, -0.025473889, -0.018002931, 0.0121921869, -0.0262132026, -0.0104217259, -0.0215827655, 0.00970186759, 0.020895334, 0.00771091, -0.00724397507, -0.00961107481, -6.06468093e-05, 0.014773299, 0.0142804235, -0.0123478323, 6.51053851e-05, -0.0416609608, -0.0127174892, 0.00337230717, -0.00931275543, 0.0357983373, 0.0133724948, 0.00514276838, 0.0114788143, 0.0036317152, -0.0334117822, -0.0111091575, 0.00476014102, 0.0182493702, -0.0231781267, 0.00134486961, 0.0262261722, -0.00356686325, 0.0112129208, -0.0365246795, -0.0243973453, 0.000730801665, -0.00634253118, 0.0046985317, 0.0388074704, -0.00391382165, -0.00152159145, 0.00978617556, -0.00980563089, -0.00516546657, -0.00579777407, -0.0259927046, 0.0165632162, 0.000485174474, 0.00364468573, -0.0116474293, 0.0272638053, -0.0115112402, -0.0145009207, 0.00147619494, 0.00261515938, -0.0061479751, -0.0148640918, 0.000130413435, 0.0160054881, -0.00334636634, -0.00214660307, -0.00763957249, 0.00344040175, -0.000145106475, 0.00714021176, -0.0126137258, -0.0172117371, 0.00292158523, -0.00025089641, -0.00257300539, 0.00216930127, -0.0215957351, -0.01070059, 0.00188557361, 0.00141701754, 0.0066311229, -0.016148163, -0.0160184577, 0.0120949093, 0.00992236473, 0.00350201107, -0.0134503171, -0.0224777237, 0.00786655489, -0.0153310271, 0.0264985505, -0.0350979343, -0.0135411099, -0.0129509559, -0.0139950747, 0.00536326505, 0.00237358524, -0.00557079166, -0.00688728876, 0.0179640204, -0.00898201, 0.00999370217, -0.0116604, 0.00572643662, -0.0258370601, -0.0289240181, 0.00236385758, -0.0203765165, 0.0158239026, -0.0202597827, 0.0211806819, -0.00798977353, 0.0274453908, 0.0141766602, -0.0178472865, -0.0431395881, -0.0135800214, 0.00303507643, -0.00031818042, 0.00342743122, 0.00182234286, 0.00793789234, -0.0013327098, 0.0214530602, 0.00962404534, -0.0196631439, -0.00325557333, 0.0433730558, 0.0149678551, -0.0171339139, -0.007976803, 0.0375882536, -0.0120365424, 0.0271341018, 0.00313235447, -0.0131649682, -0.00539893378, -0.00800274406, 0.00104492879, -0.018002931, 0.000342702609, 0.0161741041, -0.0213103872, -0.0013440589, -0.0263947882, 0.00257300539, -0.00496442523, -0.0245529898, -0.00285186921, -0.00357983354, 0.00876151305, -0.0143582458, -0.0208823625, 0.0212844461, -0.00932572596, -0.0113620805, 0.0191443283, -0.0136059616, 0.0345531777, -0.020220872, -0.024462197, 0.0173284709, -0.00750338333, 0.014604684, 0.0120495129, -0.0113296546, 0.0164335109, -0.00938409287, 0.0180807542, -0.0044715493, -0.0185736287, -0.0118160453, -0.0102985073, -0.0213103872, -0.00571346655, -0.000746609352, 0.0155255832, -0.0195464101, -0.00638468517, 0.000794032414, 0.0178472865, -0.00588532444, 0.00743204588, 0.0286905505, 0.00258435449, -0.0143323047, -0.0102271698, 0.00197312399, 0.0195853226, -0.0272638053, 0.0373547859, 0.00508440146, -0.0273675695, -0.0146306241, 0.0221534632, -0.00330421235, -0.0336971283, 0.026822811, -0.00127028965, 0.00608312292, 0.0021595736, -0.00380033068, -0.0129509559, -0.013904281, -0.0320369154, 0.00715318229, -0.0139950747, -0.00283565628, -0.00449424749, -0.0160573702, -0.00560646039, -0.0009646744, 0.0238915, -0.020726718, -0.00703644846, 0.0185866, 0.00406946661, -0.0084372526, -0.0246826932, -0.0195982922, 0.00633280352, -0.00187908835, 0.018677393, 0.00218551443, 0.0153310271, 0.0042413245, -0.00290050823, 0.0193129424, 0.0117641632, 0.00376790459, 0.00178181031, 0.00738664949, -0.0344753526, 0.0179380793, -0.0150716184, -0.0280420296, -0.0141507192, 0.0036284728, -0.00932572596, -0.0129379854, 0.034942288, -0.0200133454, 0.0141118076, -0.001699124, 0.0128277373, -0.0164724234, 0.0095462231, -0.0359799229, -0.0117641632, 0.0281717349, 0.0186384823, -0.00750986859, 0.0136578437, -0.0302210599, -0.00967592746, -0.0085799275, 0.00101331342, -0.00334960874, 0.0147343874, -0.0131130861, 0.0238266457, -0.0203116648, 0.00440669758, 0.00747744227, 0.0162259843, -0.00774982106, 0.0192610621, -0.00590478, -0.00428023608, 0.0119716898, 0.00922844838, 0.0380811282, -0.00220821262, -0.015642317, 0.00961756054, -0.0158368722, 0.0212585051, -0.016991239, 0.0024141178, 0.0267968699, -0.00595990429, -0.00281944335, 0.00600205781, 0.000742150762, -0.0100131575, -0.0110443057, 0.0238136761, 0.0185606591, -0.0214141496, 0.00701699266, -0.010447667, 0.00641711103, -0.00456558494, -0.00793140661, -0.0130741755, -0.000935490942, 0.0125683285, -0.0112388618, -0.0170431212, 0.0066538211, -0.0146825062, -0.00933869649, -0.0107978676, -0.00444560871, 0.0173933227, 0.0055578216, -0.0204543397, 0.0121986726, 0.0317515694, -0.0113166841, 0.0234375335, 0.00152564468, 0.00950731151, 0.00441318238, 0.0129120452, 0.026485581, 0.0172117371, 0.0117706489, 5.25403e-05, 0.00613500457, -0.00988345407, -0.0176267903, -0.0180418435, 0.0290537216, -0.0107200453, -0.00138459145, 0.00231846119, 0.0193129424, 0.00658248411, 0.00563888671, 0.0199744347, -0.012665607, 0.0106487079, -0.00363820046, -0.0175100565, -0.0148381507, 0.00570698129, -0.00712075597, 0.00476986915, -0.0173803512, -0.0132168494, -0.0036317152, 0.010869205, 0.0352276377, -0.00773036527, 0.0154088493, 0.018988682, -0.0117965899, -0.00249680434, -0.0103309331, -0.0140858674, -0.00729585672, 0.0122635243, -0.00909225829, -0.000239344634, -0.00890418794, 0.00431266194, 0.00856695697, -0.0193907656, -0.00721803401, -0.00932572596, -0.00122246135, 0.0203376058, 0.0103179626, 0.00763308723, 0.00379384542, 0.0130482344, 0.00962404534, 0.0131325414, -0.0186125413, -0.0264985505, -0.000164764759, 0.0126461517, 0.00632956112, -0.0020671594, -0.0144879501, 0.00900795124, -0.0124451099, 0.00357659115, -0.00372899347, -0.00536650792, -0.0109081166, 0.0195723511, -0.0050779162, 0.00141377491, 0.0123478323, 0.0269006342, 0.00316315913, -0.00448776269, -0.00375169166, 0.012218128, 0.00996127632, -0.0183401629, -0.00397543143, 0.0044488511, 0.0214400906, 0.00966944173, -0.00834646, 0.012496992, -0.0187811553, 0.0122764949, -0.0166799501, 0.0135151688, -0.0217773207, -0.00725046033, 0.00919602159, -0.00578156114, 0.0114658438, -0.00319720642, -0.00715318229, 0.0130741755, -0.013904281, 0.0218681134, -0.00351822423, 0.0118030747, -0.0101363771, 0.00547027122, 0.0174322333, 0.00588208158, 0.0138524, 0.0196761154, -0.000466934813, -0.00443912344, 0.011906838, -0.0218810849, 0.00863829441, -0.0120624825, -0.00744501641, -0.0136578437, -0.0332820751, 0.0239433795, -0.00840482675, 0.00918305106, -0.00744501641, -0.00978617556, -0.0117447078, 0.003609017, 0.0187292751, -0.0276529174, -0.00146079261, -0.00341446092, -0.00553188054, -0.00269946689, -0.00886527635, 0.000336217403, -0.00392679218, -0.00795086287, 0.011375051, 0.0334896035, 0.0177046116, 0.0133724948, 0.00809353683, -0.0163556896, -0.00984454248, 0.00971483812, 0.0161092505, -0.00880042464, -0.00441966765, 0.0190405641, -0.0127304588, -0.0132492753, -0.0128407078, -0.0045980108, -0.0296244211, 0.00585614098, 0.0179121383, 0.0100844949, -0.00142512401, 0.0137226954, -0.00170560915, 0.0233467408, -0.0277048, 0.0135151688, 0.019689085, -0.0129055595, 0.00697808154, -0.0156293456, -0.00643008156, -0.0193259139, -0.00947488565, -0.023281889, -0.0302210599, 0.00694565568, -0.00539893378, -0.0247475449, 0.0133854654, -0.0217902921, -0.00957864895, -0.00157104107, 0.0021611948, 0.0103568742, -0.0155904349, 0.0017347926, 0.018482836, 0.0156682581, -0.00551242521, 0.0175359976, -0.000523680355, 0.00237844931, 0.0142804235, -0.0132038789, 0.0157201383, -0.0193648245, -0.0105773704, 0.0181585774, 0.0135800214, -0.00562267331, 0.0370694362, -0.0152402334, 0.00500333635, 0.00845670886, -0.00885230582, 0.0202468131, -0.0131260566, 0.00033783869, -0.0181196649, 0.00365441362, 0.0162130147, -0.00892364327, -0.00613500457, -0.00966295693, 0.0176786706, -0.0113945063, 0.0165372752, 0.00273189298, -0.0466416, 0.0107395006, -0.00232332502, -0.00135702931, 0.0283533204, -0.0384961814, -0.00780170271, 0.00609933631, 0.0132622458, 0.0150716184, -0.0181845166, -0.00392030692, 0.00647547795, 0.00391706452, -0.00316153793, 0.0249421019, 0.0122635243, -0.00728937145, 0.00142188137, 0.0349682309, 0.00273999944, 0.00493848417, -0.0217643511, 0.00382627151, -0.00100844947, 0.00524328882, -0.00666030636, -0.0109210871, 0.0085864123, 0.0289499592, 0.0117836194, 0.0237099119, -2.29008838e-05, -0.000315748475, -0.0174322333, 0.00851507578, 0.00714669703, 0.0151883522, -0.023787735, -0.00214984571, 0.0253441837, -0.00343067385, 0.00293455576, 0.0229576286, 0.0193259139, -0.0210639481, 0.0125942696, 0.0145268608, -0.0119522344, -0.00452667382, -0.00126866845, -0.0307658166, 0.0297541246, -1.82776403e-05, 0.011712282, 0.0112388618, 0.00804814, -0.0111610396, -0.016654009, 0.00841131248, -0.0146176545, 0.000811461359, -0.000873070851, -0.0014470116, -0.00786006916, -0.00199744338, -0.0189108606, -3.82272483e-05, -0.00791195128, 0.0129250158, 0.0115760928, 0.0341900066, 0.00549621182, 0.00653060246, 0.0144749796, 0.00933221169, 0.012218128, 0.000483958487, 0.00157752633, -0.00907928869, 0.00427375082, 0.0293650124, 0.00146970979, 0.00773685053, 0.00163508253, -0.00755526498, 0.0131519977, -0.00516222371, 0.0090403771, -0.00857344177, -0.0113426251, 0.0080805663, -0.00214173924, 0.0102466252, -0.011738223, 0.00123056781, -0.00730234198, -0.00233953795, -0.00486390432, -0.00664085103, -0.00997424684, -0.0143063646, -0.0136059616, -0.0174581744, 0.00710778544, -0.00647223555, -0.0142155709, 0.000336014724, 0.000686215819, 0.00568104, 0.00430617668, 0.00935815182, -0.00342094619, -0.00055448513, -0.00704941899, 0.00304480409, -0.00127191097, -0.0303507634, -0.00712724123, 0.00881339516, 0.00653708773, 0.0149937961, 0.0235672388, -0.00909225829, -0.00587883918, 0.00339500536, -0.00566807, 0.0202727541, -0.00994182099, -0.00626470894, 0.00408243714, -0.0227890126, -0.0116409445, 0.0283792615, 0.00601178594, 9.95073788e-05, -0.00407595187, -0.0119587192, -0.0117317373, -0.00891715847, 0.00303831906, -0.0120430272, 0.00142593461, 0.0306879934, -0.00460773893, -0.0129639264, -0.007470957, 0.00883933529, 0.0218551438, -0.0234894156, 0.00571022369, -0.0148511212, -0.0177564938, -0.000101584672, 4.25844955e-05, -0.0134503171, 0.0301691778, 0.00828160811, 0.0141247781, -0.00922844838, -0.0160054881, 0.00778224692, -0.000608393399, -0.0123089207, -0.00205418887, 0.0172506478, 0.00857344177, -0.0332042538, 0.0158109311, -0.0405455083, -0.00160103524, 0.023281889, 0.0132946717, 0.0134632876, -0.000247856457, -0.0185476895, -0.0129704122, 0.00212714751, 0.00458179787, 0.00150862103, 0.0144749796, -0.0190794766, 0.028560847, -0.0279123262, -0.0184568968, -0.000170135318, -0.000714183319, 0.0141377486, -0.00655005779, 0.0483536944, 0.0050779162, 0.00121111225, -0.015642317, 0.0251236875, 0.0463303104, 0.00295076868, -0.0205062218, -0.00998073164, -0.023450505, 0.00734773837, -0.00876151305, 0.0119976308, -0.00902740657, 0.0100650396, 0.0149289435, 0.0143582458, 0.00349552603, 0.00533083919, -0.011232377, 0.013904281, 0.0180288721, 0.00957216416, -0.00399488676, -0.0308176987, 0.01479924, 0.0111350985, -0.0150975594, -0.00267352606, 0.00616418803, 0.000621769112, -0.0103503885, -0.0108821755, -0.00603448413, 0.00489633065, 0.00460449606, 0.0123997135, 0.0200652275, -0.0236710012, 0.00411810586, 0.0184179842, -0.0177954044, 0.0258500315, 0.0051784371, -0.0112712877, 0.0104606375, -0.0296763014, 0.0195334405, -0.00779521745, -0.0197020546, -0.0135281393, -0.00356362062, -0.00775630632, -0.00077660341, 0.0211028606, 0.00874854252, -0.00136999972, -0.0239433795, -0.00274810591, 0.00565185677, -0.00292969169, -0.0100520691, -0.00028494373, -0.0471085347, -0.0137486365, 0.00684189238, 0.0107524712, -0.00785358436, -0.00710778544, -0.00433211774, -0.0177435242, -0.0128601631, 0.0111675244, 0.00318423612, 0.00281457929, 0.0180937238, 0.000689458451, -0.00370629504, -0.00118841394, -0.0102271698, 0.0068808035, 0.00575562, -0.00535678025, 0.0257462673, -0.0108108381, -0.00235088705, -0.00162940798, 0.00920250732, -0.00152645528, 0.00847616419, 0.0351757556, -0.0049514547, 0.000547189265, 0.00599881541, 0.0204543397, -0.00364792836, 0.00794437714, 0.0028842953, 0.00339176273, 0.00744501641, 0.00861235335, -0.00356037798, 0.0115566365, 0.0154607305, -0.00371278031, 0.0432174131, -0.0110183647, 0.0315699838, -0.00690674409, -0.0103244474, 0.00468880404, -0.0167837124, 0.0136967544, -0.00907928869, 0.00870963186, 0.00814541895, 0.0266931076, -0.0116020329, -0.01887195, 0.00363495783, 0.0194426477, -0.00267190486, -0.000855236547, -0.00544433, -0.0101169208, -0.0121921869, -0.00249680434, -0.000183713724, -0.0101558324, 0.000814704, -0.00720506394, -0.0198577, 0.0238136761, 0.00905334763, -0.0156682581, 0.0148511212, -0.00841131248, 0.0113296546, -0.011290743, 0.00141458551, 0.00297833071, -0.0168874767, 0.012496992, -0.0131066013, 0.0010116921, 0.00691971462, -0.0218810849, 0.01070059, 0.0217254404, 0.0138005177, -0.00154672156, 0.0100780101, 0.00489308778, -0.0103374179, -0.0123154055, 0.00329934852, 0.0182623398, -0.00101493474, 0.00278377463, -0.00663436577, 0.0117576784, -0.000757147791, -0.00298319478, 0.00963701587, 0.0156293456, -0.00298319478, 0.0113815367, 0.0200652275, 0.000676488038, -0.0102206841, -0.0103374179, 0.00926087424, -0.0105838561, -0.00403055549, -0.00208012969, -0.0245270487, -0.00972780865, 0.00394949038, 0.0251107179, -0.0229965393, 0.0280679706, 0.00321990461, -0.000282106455, -0.0331523716, -0.00334960874, 0.00641386863, -0.00800922886, 0.00426402269, -0.0169263873, 0.00926735904, 0.0105644008, 0.0170950033, -0.0227630734, 0.0192351211, -0.00530165574, 0.0250199251, 0.0270303376, 0.0134892287, 0.00806759577, -0.00528868521, 0.0222831666, -0.02140118, 0.00382302888, 0.0024238457, -0.00279026, 0.023476446, 0.00283079245, 0.0316478051, -0.0349941701, -0.00224063871, 0.00397867383, 0.0176267903, -0.0198317599, 0.0143323047, -0.000527328288, -0.00068013597, -0.0104282107, 0.00392355, 0.0111804949, 0.0192221496, -0.016965298, 0.00958513469, 2.46868476e-05, -0.0207396876, 0.0149159739, 0.0146565652, -0.0135411099, 0.0111156432, 0.0270562787, 0.0263558775, -0.00654357253, 0.0281717349, -8.72716191e-06, -0.00695214048, -0.00358307618, 0.00386842526, 0.00183531328, 0.0163556896, 0.014773299, 0.00979914609, 0.00499685109, -0.00746447174, 0.0191443283, 0.018703334, -0.0255517103, -0.0121467905, 0.0183401629, 0.00450397562, -0.00703644846, -0.0117317373, -0.0119587192, 0.00765254302, -0.0340343602, 0.0122959502, -0.0122700091, -0.0165891573, -0.00299292244, 0.00664733583, -0.00111707672, 0.0281198528, -0.00841131248, -0.00880042464, 0.00319882785, -0.000359523605, 0.0165372752, -0.0214790013, -0.000971970207, 0.024293581, 0.0162648968, -0.028560847, 0.0115177259, -0.0163816307, 0.0130676897, 0.020389488, 0.0123672877, 0.0223999, 0.0253960658, 0.00810650736, -1.16024385e-05, -0.0249291323, 0.00449100509, -0.00246113562, 0.0311030466, -0.0109016309, -0.011290743, -0.00560646039, -0.00823621172, 0.0116668856, 0.0135021983, 0.0309474021, 0.00088847318, -0.00569076836, -0.0160962809, -0.0077173952, 0.00931924116, 0.00645602262, -0.00994830579, -0.0107070748, 0.00607663812, 0.0174062923, 0.00912468508, -0.0100715244, 0.014604684, -0.0174841154, -0.0171857961, -0.018677393, -0.00557403453, 0.0146954767, -0.0100390986, -0.00519465, 0.0203116648, 0.00124191691, -0.0174452029, 0.0134114055, 0.0235672388, -0.0153699378, 0.0202468131, 0.0239693206, -0.0030318338, -0.0211028606, -0.0206618663, 0.00527571514, 0.0113685662, 0.0141377486, 0.00555133633, -0.0249810126, -0.0185866, 0.00403704075, -0.00100358564, -0.0288980771, 0.023281889, 0.0218940545, -0.00603124127, -0.00547675649, 0.00533408206, -0.00366738392, -0.00167156185, 0.00922196265, 0.0163167771, -0.00976672, 0.00173965644, -0.0188330375, -0.00669273268, 0.00446182163, -0.0106681641, 0.00671218801, 0.00304642553, -0.00394300511, -0.0400266908, -0.00187098188, -0.0139431925, -0.0319331549, -0.00391382165, 0.015642317, -0.00261191675, 0.0239433795, 0.00294590485, 0.0173414405, 0.00350201107, -0.00844373833, -0.0258240905, -0.0126331812, 0.0173933227, -0.00282917102, 0.00623552548, -0.00708833, -0.0184309557, 0.0330745503, 0.00086901756, -0.0149808256, 0.0141377486, -0.0139691336, 0.00210282812, 0.00255841366, -0.0108951461, -0.00600205781, -0.0180418435, 0.00696511101, 0.01887195, 0.022581486, -0.005055218, -0.0114334179, 0.00506494567, 0.0166669786, -0.00134243758, -0.00869666133, -0.0139172515, -0.0156942, 0.0152142933, -0.0131779388, -0.0272638053, 0.00909225829, -0.0170431212, -0.0154218199, 0.00392030692, 0.00996776111, 0.0282495562, 0.0255906228, 0.0206878074, 0.00041039192, 0.00587235391, 0.031907212, 0.00108546135, 0.0135151688, 0.0123283761, 0.00488660252, 0.00111707672, 0.0215957351, 0.0142544825, -0.00311614154, -0.0020671594, -0.0165372752, -0.00300427154, -0.0359021, -0.00891067274, 0.00703644846, 0.000244005874, -0.0249291323, 0.0104282107, 0.0133465538, 0.0215308834, -0.00390085136, 0.00321179815, 0.00623228308, -0.0123024359, 0.0186125413, 0.00563240144, 0.0182623398, -0.0111026727, -0.00979914609, 0.00913117, 0.00525301695, 0.012471051, 0.00938409287, -0.00648520608, 0.00352146686, 0.00743853115, -0.0125812991, -0.000947650697, -0.00160265656, -0.00278215343, -0.00851507578, 0.00811299216, -0.0149289435, 0.0106616784, 0.00839185622, 0.00335285137, -0.00259732502, 0.0138653703, -0.00161238434, -0.0152402334, 0.00830106344, -0.0320369154, -0.0164983645, 0.00673164381, -0.0028940232, 0.0195075, -0.0163686592, 0.016485393, 0.00741259, -0.0295206569, 0.0152013227, 0.0112648029, -0.00937112235, -0.0143193342, -0.00389436609, -0.0207137484, 0.00385221234, 0.0154607305, 0.00985751301, -0.0240212027, -0.00343391648, -0.00402407, 0.00411810586, 0.00278215343, 0.000769307546, -0.00105789921, 0.0174192637, -0.000368035428, 0.00941003393, -0.0248902198, -0.00589180971, -0.000845508708, -0.00668624742, -0.000530165562, 0.017159855, 0.00416350225, -0.00105465658, -0.0105903409, -0.00153699378, -0.00961756054, 0.01479924, 0.00935166702, -0.000917656638, 0.0178213455, -0.00541838957, -0.0118873827, -0.00409540767, -0.00632956112, 0.000908739457, -0.0231392141, -0.0125553589, -0.0115177259, -0.00120462698, 0.00371602294, 0.014773299, -0.0252663624, -0.0051784371, 0.00704293372, 0.0368100293, -0.00441966765, -0.00148754416, 0.00801571459, 0.0205451325, -0.000849562, 0.00719857868, 0.0150327068, -0.00447479216, 0.00438075652, -0.00624849601, -0.0126461517, -0.0115047554, -0.00292320666, -0.00459152553, 0.00163832516, -0.0223609898, 0.00724397507, -0.0143452752, -0.0124191688, 0.0140339853, -0.00194394041, -0.00370629504, -0.00347931287, -0.0270303376, -0.0091895368, 0.0196631439, -0.014941914, -0.0118419863, -0.0158887543, -0.00445857923, 0.00708833, 0.00804165564, -0.028846195, 0.0139691336, 0.0157849919, 0.00550269708, 0.0105125187, 0.0162908379, -0.0056875255, 0.0270562787, 0.00321666221, -0.0036187449, -0.00682892185, 0.00449424749, 0.0125618437, 0.00772388, 0.0114917848, 0.0210120678, -0.0218551438, -0.00225523044, -0.0143063646, 0.00496118236, -0.0026411002, -0.00155726, 0.00353767979, -0.0225036647, -0.00536650792, -0.0187941268, 0.0051784371, 0.0262910239, -0.0104736071, 0.016965298, -0.00690025883, 0.000893337128, 0.0225944575, 0.00450073276, -0.0280939117, 0.00388788083, 0.0165891573, 0.0153180566, 0.00298805861, 0.000980076729, 0.0153569672, 0.0308176987, 0.0037549343, -0.00714021176, 0.000958189194, -0.000110349829, 0.0105514303, 0.0085864123, -0.0242416989, 0.000403704064, -0.0103309331, 0.0221015811, 0.0181326363, -0.00767848361, 0.00220010616, 0.00442939578, -0.0131390272, -0.00168615358, 0.0132752163, 4.50924454e-05, 0.00946191512, -0.0209861267, 0.0269265752, 0.00231846119, 0.00672515854, -0.000937922916, 0.010784897, 0.00398191623, 0.013761607, -0.000549215882, 0.0249810126, 0.018703334, 0.0241898187, -0.0282236151, 0.0219848473, 0.00917656627, -0.0281717349, -0.0148900328, 0.00414728932, -0.0209990963, -0.0111999502, 0.0012524554, 0.00405001128, -0.0135540804, -0.00138621277, 0.0101688029, 0.0125229321, -0.0172506478, -0.00526274461, -0.0198577, -0.00997424684, -0.0105254892, -0.0154607305, -0.0345531777, -0.0163556896, 6.58020417e-06, -0.0040921648, -0.0195464101, 0.0144620091, -0.00876799878, -0.00229414157, -0.00304318289, -0.0015734731, -0.00307885138, 0.00631334772, 0.00307885138, 0.00435157306, 0.0054378449, -0.015642317, 0.00924141798, 0.0194426477, 0.00670570275, 0.00378411752, -0.0218940545, -0.00917008147, 0.00493524177, -0.0291056037, 0.0174062923, -0.0120106013, -0.00594369136, 8.4003681e-05, 0.0104736071, 0.0026443426, -0.0244362559, -0.00834646, 0.00195042568, -0.00677055493, 0.00422186917, -0.00307236635, 0.0257073566, -0.000855236547, -0.0133595243, 0.00983805768, -0.0253182445, -0.024968043, -0.00177856768, 0.0375623107, 0.00512331259, -0.00826215185, 0.0096564712, 0.0230095107, 0.00733476784, 0.0226074271, -0.0136448732, 0.0111675244, 0.0209342446, -0.00811947789, 0.0101039512, 0.00775630632, 0.00357659115, -0.00180937245, -0.00476662628, -0.0200652275, 0.00728288619, -0.0140858674, -0.0177564938, -0.0108238086, 0.00674461434, 0.0018045085, -0.0223739594, 0.0092933, 0.00408567954, 0.022944659, -0.0035052537, -0.0137097249, -0.00815190375, -0.0115501517, 0.0104282107, 0.00103195838, 0.015616376, -0.0321147405, -0.00214173924, 0.0126137258, 0.0213103872, 0.00959810428, 0.0331523716, 0.0150716184, 0.0186514519, 0.0328670219, -0.00163670385, 0.00691322936, -0.00898201, -0.01797699, -0.0110572763, 0.00179964467, -0.00978617556, -0.0130222933, -0.00305453199, 0.00291996403, 0.00554485107, 0.0286905505, 0.00047260939, -0.0115955481, -0.018508777, 0.00928033, -0.00735422364, -0.0135411099, 0.0060442118, 0.00905983243, 0.00379708805, 0.005055218, -0.00200554985, 0.00974077918, 0.031595923, 0.0138913114, -0.00549945468, 0.0150845889, 0.0105579151, 0.0164464824, -0.0186644234, 0.00448776269, 0.0161222219, 0.00637495751, -0.0073671937, -0.01070059, 0.00918305106, 0.00366089866, 0.00729585672, -0.00866423547, -0.00366738392, 0.0125034768, 0.00455585727, -0.00721154874, -0.0234634746, -0.0153310271, -0.0183012504, -0.00756823504, 0.0211547408, 0.000755526475, -0.00119327789, 0.00417971518, 0.00317775086, 0.0357983373, 0.00562915858, -0.0158498436, -0.00774333579, 0.0118290158, 0.0164075717, -0.00743204588, -0.00706238905, 0.00191151444, 0.0167966839, 0.00389436609, 0.0318034515, -0.0258889422, -0.00570698129, -0.0094035482, -0.0145138912, -0.00606042473, -0.0182882808, 0.00113085774, -0.00162130152, -0.0418684892, -0.0219589062, 0.00295076868, 0.0139821041, 0.0178083759, 0.000323247, 0.00454288675, -0.0296503603, -0.00872260146, 0.00333339581, -0.0128666488, -0.00169750268, -0.0276010353, 0.00597935962, 0.00195366819, 0.0102725662, -0.0155126126, 0.000110552493, -0.00787304, -0.0261224099, -0.0170950033, -0.00889121741, -0.0165372752, -0.00537299318, -0.00939057767, -0.014436068, 0.00516546657, -0.00917656627, -0.0105254892, -0.00225036638, -0.0115371812, -0.013398435, 0.0132752163, -0.00513952551, 0.00499685109, -0.00266055577, -0.00175586948, -0.0118614417, 0.0188070964, -0.0210120678, 0.0158109311, -0.00413756119, 0.0101298913, -0.000254341663, 9.76327501e-05, -0.0175489672, -0.0169004463, 0.000546783907, 0.00548324175, 0.0120430272, 0.0239433795, 0.0094035482, -0.0216995, -0.000967106316, 0.00852804538, -0.0198317599, -0.00841131248, -0.0235802084, -0.0222312864, -0.00638144277, -0.0108238086, 0.0187292751, -0.0164724234, 0.0152402334, 0.0168874767, -0.000580831256, -0.00349552603, 0.0241638776, -0.0110248504, 0.00429969141, -0.0263429061, 0.00390733639, 0.00649493374, -0.03089552, -0.0073671937, -0.00270270952, -0.0128536783, 0.00812596269, -0.0159795471, 0.00532759679, 0.0170431212, -0.0125423884, -0.0269265752, -0.00746447174, -0.0076136319, -0.00723100454, 0.0348125845, -0.00196826, -0.00436130073, -0.00462719426, -0.0113426251, 0.0165243037, 0.0184309557, -0.00804165564, 0.0136189321, 0.0056842831, -0.0237228833, -0.0314402767, 0.0111091575, -0.0135411099, -0.025979735, 0.000708508771, -0.0043418454, 0.00639117043, 0.0094035482, -0.00502927694, 0.00619012909, -0.0111350985, 0.00481526554, 0.00128163886, 0.00996776111, 0.011122128, -0.0110832164, -0.00463043712, 0.00501954928, -0.00994182099, -0.0119587192, 0.0121273352, 0.0187811553, -0.000234886043, 0.00199906481, 0.0174322333, 0.0101234065, 0.0178083759, -0.00077214482, -0.00463367952, -0.0388593525, -0.0111480691, -0.0234115925, 0.0134114055, -0.020194931, -0.00920899212, -0.00977320503, -0.00540217664, -0.0149808256, 0.0251366571, 0.00328151416, -0.00782115851, 0.0131390272, -0.0163686592, 0.00773036527, 0.0231651552, -0.014436068, 0.00880690943, -0.0010919465, 0.0176397599, -0.0157071687, 0.00820378587, 0.00263623614, 0.0273416284, -0.0115890633, -0.0141377486, 0.0204802807, -0.00609933631, 0.00879393891, -0.00502279215, -0.0121727316, -0.00276269764, 0.0160962809, 0.00330745499, -0.00547351362, -0.0296503603, 0.00120219507, -0.00215795217, -0.0117576784, -0.00950082671, 0.0139431925, -0.00256652012, 0.0234115925, -0.0120819388, 0.0211547408, -0.00211579842, 0.000589748437, -0.01544776, 0.00418295758, 0.00680298079, -0.00739962, -0.00298967981, 0.00386518263, 0.0240212027, 0.0163946, 0.0082232412, -0.0129574416, -0.0122570395, -0.00385545497, 0.00745798694, -0.00596963195, 0.00270270952, -0.0166021269, 0.00734773837, -0.00841131248, 0.0228668358, 0.0204413682, -0.00519140717, -0.0122570395, 0.00737367896, 0.00549296942, 0.0146306241, 0.0115371812, -0.0027691829, 0.00134892284, -0.00647872081, 0.0153569672, 0.0117901042, 0.00754229445, -0.00104655011, 0.0322444439, 0.0143841868, -0.0188589785, 0.00538272085, 0.00594369136, 0.00886527635, -0.0210769195, -0.00595017662, 0.00381654361, 0.00234926585, -0.0130482344, -0.0158368722, 0.00331556145, 0.0125942696, -0.00930627063, 0.00369656738, -0.00524977408, 0.00108221872, -0.00909225829, -0.00352470949, 0.00236872141, 0.079482682, -0.00541190431, -0.000965485, 0.00875502825, -0.0131973941, -0.00925438851, 0.0131260566, 0.0394559912, -0.0166799501, -0.00251626, 0.00208175112, -0.00632956112, -0.00142269209, -0.0112648029, 0.0121078789, 0.00332366792, 0.00683540711, -0.0129704122, 0.00426078029, 0.00506494567, 0.0206229538, 0.011375051, 0.0042380821, 0.01544776, -0.0076201167, -0.00966944173, -0.00521086296, -0.00176073343, -0.015279145, -0.02173841, 0.012639666, -0.00534380972, 0.00326692243, 0.00228117127, -0.0117901042, 0.00903389137, -0.010026128, -0.00635550171, -0.00332366792, -0.00358956144, 0.0184958074, 0.00516546657, 0.0158887543, -0.00410837773, 0.00933869649, 0.0103049921, -0.0147862695, 0.0077173952, -0.005308141, 0.0244751666, -0.0250069536, -0.00294914749, 0.0120884236, 0.00386842526, 0.0148640918, -0.00605393946, -0.00699105207, -0.00426078029, -0.000314127159, 0.00304966816, 0.00907928869, -0.0199744347, -0.00382951414]
20 May, 2020
Mongoose | findOneAndReplace() Function 20 May, 2020 The findOneAndReplace() function is used to find a matching element, replaces it with the provided element, and passes the returned doc to the callback. Installation of mongoose module: You can visit the link to Install mongoose module. You can install this package by using this command. npm install mongoose After installing mongoose module, you can check your mongoose version in command prompt using the command. npm version mongoose After that, you can just create a folder and add a file, for example index.js. To run this file you need to run the following command. node index.js Filename: index.js const mongoose = require('mongoose'); // Database connection mongoose.connect('mongodb://127.0.0.1:27017/geeksforgeeks', { useNewUrlParser: true, useCreateIndex: true, useUnifiedTopology: true }); // User model const User = mongoose.model('User', { name: { type: String }, age: { type: Number } }); var new_user = { name: "ABC", age:100 } // Find document matching the condition(age >= 5) // and replace first document with above new_user // This function has 4 parameters i.e. filter, // replacement, options, callback User.findOneAndReplace({age: {$gte:5} }, new_user, null, function (err, docs) { if (err){ console.log(err) } else{ console.log("Original Doc : ", docs); } }); Steps to run the program: The project structure will look like this: Make sure you have installed mongoose module using following command: npm install mongoose Below is the sample data in the database before the function is executed, You can use any GUI tool or terminal to see the database, like we have used Robo3T GUI tool as shown below: Run index.js file using below command: node index.js After the function is executed, You can see the database as shown below: So this is how you can use the mongoose findOneAndReplace() function which finds a matching document, replaces it with the provided doc, and passes the returned doc to the callback. Ready to go from coding beginner to development pro? Our DSA to Development Coding Guide has everything you need to crush coding interviews and ace real-world projects! Limited spots available!Enroll Now and Transform Your Coding Skills! Also get 90% fee refund on completing 90% of the course in 90 days! Take the Three 90 Challenge today.
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function
https://www.geeksforgeeks.org/mongoose-findoneandreplace-function/?ref=next_article
Languages
Mongoose | findOneAndReplace() Function
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.00784386, 0.00649776077, -0.0121652177, 0.0265949015, -0.0243681762, 0.0576180927, 0.00459183473, 0.0013806955, -0.0442325771, 0.0273497235, -0.00115424884, 0.00675565843, -0.0173734892, -0.00917737931, 0.0246197823, 0.0279787406, -0.0496673, 0.0350489095, -0.0171470437, 0.00681227, -0.0183547586, 0.00483715208, 0.000225267242, 0.024733007, -0.0150461216, 0.0142409783, 0.0337405503, -0.00689404225, -0.0174489729, -0.0603354499, -0.0243052728, 0.0140145319, 0.0070638773, -0.00585301686, 0.00558882905, -0.00407918496, 0.0271735974, -0.00089949643, -0.0423203632, 0.0131213255, -0.0171973649, -0.00612978498, -0.0439558104, -0.00316239032, 0.0256387927, -0.00304759457, -0.0119324801, -0.0223930571, 0.0235504508, -0.0048088464, 0.00466731703, -0.00809546746, -0.00864271354, -0.0100139743, 0.0074538691, 0.0113097522, -0.00846029818, 0.00244216411, -0.00287933205, -0.0591277368, 0.0187573303, -0.0198392421, -0.00071865361, -0.00801369548, -0.00170778518, 0.0507240482, -0.0221162885, 0.0198015012, 0.00970575493, -0.00590333855, -0.0307967439, 0.04460999, 5.97076141e-05, -0.0256262124, -0.0241794698, -0.0179396067, 0.00228962721, 0.00704500685, -0.0445848294, 0.0339669958, 0.0369108021, -0.0166438278, -0.00746015925, 0.0120834447, 0.0369611271, -0.0246323626, -0.00140900142, -0.0482582971, 5.44494105e-05, -0.0259407219, -0.00462014088, -0.0294129029, 0.011215399, 0.00896351319, -0.0362063, 0.0259407219, -0.0105171893, 0.00924657192, -0.0320296213, 0.0510259792, -0.00149077375, -0.0146435499, 0.00379927154, -0.0143164601, 0.0103284828, -0.00442514475, 0.0387475379, -0.0105926711, -0.0135742184, -0.000346156739, 0.0324573517, 0.00999510381, -0.0297651533, 0.0231352989, 0.0252991226, 0.00695694424, 0.0109071806, -0.00381499692, -0.00842255726, -0.0124482755, 0.0147945145, 0.0231982, 0.0201537516, 0.0396030024, -0.036785, 0.0301928874, 0.0132722901, 0.0384707712, 0.0424964875, 0.0244688187, -0.0243430156, -0.0194744114, -0.0522336923, -0.00634050602, 0.0173860714, 0.0336399078, 0.00905157533, 0.00911447778, 0.0118632885, -0.0228962731, -0.0188705549, -0.0409616828, 0.01159281, -0.00731548481, 0.0186063666, 0.00956108049, -0.00940382574, -0.0115991, 0.00368604832, -0.000836594554, -0.0356276073, -0.0410874858, 0.0202166531, -0.0026654657, -0.0127942357, 0.0185560454, 0.00941011589, 0.0188579746, -0.0424461663, 0.0338160321, 0.0397791266, -0.0349734277, 0.00373636978, 0.014354201, 0.00579011487, 0.033262495, 0.0136119593, -0.0130961649, -0.0501956753, 0.032306388, -0.0340676419, 0.00872448646, -0.0164173823, 0.053441409, -0.0141151743, 0.0013162212, 0.0457925461, -0.0151719255, 0.0518311225, 0.012762785, 0.0204431, -0.0164677035, 0.0590774156, -0.00707645761, 0.0413894169, -0.0425216481, -0.00417039264, -0.0161280334, -0.0158386845, -0.00764257461, -0.0387475379, 0.0144422641, 0.0751299635, 0.0122281192, -0.000415152201, 0.0464215614, -0.0278529376, 0.00205374532, 0.0153857917, -0.00496610068, 0.0208582524, -0.0435280763, 0.0253871847, 0.000958466902, 0.00497239083, -0.0172728468, 0.0220156461, -0.0517808, 0.0490382798, -0.00357597, -0.00112122542, -0.0031010611, -0.00265288539, -0.0183925, 0.025487829, -0.00654808246, -0.00319855893, -0.00117940968, 0.02795358, -0.00562971551, -0.0304444935, -0.0134232538, -0.0267710257, -0.00340928021, -0.0330108888, -0.0083911065, 0.00675565843, 0.0130458428, 0.0398797728, 0.0237894785, -0.0047459444, 0.0519820862, 0.0288845282, 0.015360631, -0.0208708327, 0.00917108916, 7.64650613e-05, -0.0420687571, -0.0238398, 0.0169080161, 0.000100151534, 0.0495414957, 0.0181912147, 0.0104668671, 0.0150083806, 0.00932834391, -0.0588258058, -0.00167633418, 0.0127313342, -0.0206569657, -0.00303186895, -0.0178263839, -0.023474969, 0.0468744561, -0.0167947933, 0.00131386227, 0.0547497682, 0.0102089699, -0.0428235792, 0.0100265546, 0.014605809, 0.00220785476, -0.0362566262, 0.0403326638, -0.0122910207, -0.0322057456, -0.0358792134, -0.0258904, 0.00134138193, -0.014731613, 0.0140774334, 0.0025695404, -0.0264690965, 0.0249720328, -0.0126495613, -0.0184050798, -0.0337405503, 0.0185686257, 0.0182918571, -0.0226698257, 0.0332373343, 0.0473525114, -0.00100957463, 0.0142158177, 0.00198455318, -0.0323315486, 0.01054864, -0.0171847846, 0.00964914355, 0.00693807378, -0.0465222076, 0.00528061, 0.0255633108, -0.0276013296, 0.0245443, -0.0094793085, -0.0145177459, 0.0570142344, -0.00775579782, -0.000762291776, -0.0199524667, -0.023688836, 0.0118632885, 0.0310231913, 0.0114921676, 0.00619583204, 0.058876127, -0.0107310554, -0.0265445802, -0.0334889442, 0.028582599, -0.00397225143, -0.0379675552, -0.0320547819, -0.00881883875, -0.00433393707, 0.00977494661, 0.00669275643, -0.00280070468, -0.0269471519, -0.07055071, -0.0350992307, -0.0354514793, 0.0079004718, 0.0304948147, -0.0137880845, -0.0161657743, 0.000827945536, -0.0247078463, -0.020254394, -0.00648518046, -0.0114858774, 0.0335895866, 0.0208582524, -0.00789418165, 0.0055951192, -0.0215753336, -0.0101775192, -0.0262929723, 0.025022354, 0.0032771863, -0.0019247965, -0.00609204406, 0.00814579, 0.0263181329, 0.008661584, 0.0055825389, -0.0162412561, 0.0202669743, -0.00665501552, 0.00074499374, -0.0465222076, 0.0137377633, 0.0139013082, -0.0201663319, 0.0321554244, 0.00778095843, -0.0360050164, -0.0235001296, 0.0252991226, -0.00229119975, -0.0217640381, 0.0112342695, -0.0204053596, -0.0161909349, -0.0423455238, -0.029085815, 0.0305199753, 0.00813320838, -0.0278780982, 0.00405716896, 0.0355018042, 0.0412887707, -0.0119953826, -0.0331366919, -0.00660469383, 0.0355269648, 0.0266703833, -0.000845243572, 0.0280290637, 0.0205940641, 0.0195373129, -0.0341431238, 0.0446351506, 0.0153480507, 0.0162160955, -0.0246575233, -0.0107625062, 0.0156374, -0.0128445569, -0.0270981155, -0.0143164601, 0.00413265126, 0.00699468516, 0.0319541395, -0.0249971934, -0.0373888575, -0.0174363926, -0.00110785873, -0.0426222906, 0.0614928454, -0.0542465523, -0.00263716, 0.0300922431, 0.00185245939, -0.0185434651, -0.0106052514, -0.00449748198, -0.00350992312, 0.000482378528, -0.0145932287, 0.030218048, -0.0263936147, 0.0111839483, 0.0426474512, 0.0253620241, 0.00200027879, 0.0234498084, -0.0432513095, 0.00777466828, -0.000369744928, 0.00876222737, -0.011636842, 0.0184931438, -0.0211098604, 0.0215753336, -0.00120063906, -0.00126747217, -0.0751802847, -0.00983155891, -0.0370114483, -0.0314257629, 0.0248839706, 0.0131339058, 0.0154990153, -0.024644943, 0.044282902, -0.00428676093, -0.00377096562, -0.00614551036, 0.0480821729, 0.0459686704, -0.0313754417, 0.00811433792, -0.00471449364, 0.00118491356, -0.0455660969, 0.0176125169, 0.0165683459, 0.0222043525, -0.00451006228, 0.00561398966, -0.037615303, 0.0136748618, -0.00456667412, -0.0516298376, -0.00582785625, -0.0052554491, 0.0400810577, -0.00907044671, -0.00526803, -0.00109527842, 0.0409868434, -0.0157003012, 0.0390746258, -0.0353759974, 0.0186441075, 0.0118947392, 0.00419555325, 0.00778095843, 0.0136497011, 0.0194240902, 0.0148196751, 0.0373636968, -0.0163796414, -0.00149077375, -0.0231982, -0.0374895, 0.015360631, -0.000692313479, 0.0107625062, 0.0240914077, -0.0182666965, 0.0155996578, 0.00746015925, -0.0053655277, 0.0108757289, 0.0325328335, -0.0206695478, -0.0101146167, -0.00765515491, -0.00935350452, -0.054699447, 0.00703871669, 0.00452578766, -0.0243681762, 0.0177634824, 0.0036891934, -0.00642227847, -0.00202229433, 0.0381436795, 0.012303601, 0.0094667282, -0.016153194, -0.0461196341, -0.00313251209, -0.0269219913, -0.00744128833, -0.00635623187, -0.0397288054, -0.0238901209, 0.0352250338, 0.00296739466, 0.0278026164, -0.00326460577, 0.00179584778, 0.0273497235, 0.0100705856, 0.0423958451, 0.0390243046, 0.0162286758, -0.00988817, -0.0188957155, -0.015775783, 0.00973091554, -0.0230094958, -0.00220156461, 0.0012721899, -0.0184302405, 0.00159534812, -0.00989446, 0.00554479798, -0.00468933256, 0.0143164601, -0.0343444087, -0.0612915605, 0.0158512648, 0.00232265075, -0.014228398, -0.00233680359, -0.0245191399, 0.0074979, -0.0368353203, 0.0336147472, -0.00339984475, 0.0283561535, 0.0361811407, -0.0140648531, 0.00586245209, -0.00125803694, 0.0329857282, 0.0206443854, 0.0136119593, 0.000514615735, 0.0131213255, 0.00619897712, 0.011844418, -0.0251355786, -0.00624929834, 0.0132974507, -0.0161028728, -0.0095485, 0.0254375078, -0.00701984623, -0.0180528294, 0.0143164601, -0.0540452674, 0.0182415359, -0.0107373456, -0.0183170177, 0.0390494652, 0.0187699106, 0.0196631178, -0.0311238337, 0.0147441933, -0.0398294479, 0.00109056081, 0.0026324424, 0.00815837, 0.0370617695, -0.0364579111, -0.00588446762, -0.00298626511, 0.00754193123, 0.00851062, 0.0031655354, -0.0302432086, -0.0386972167, 0.0409365222, -0.0218646824, 0.0275510084, -0.0120268334, -0.0157883633, 0.0087181963, -0.0177634824, 0.0207953509, -0.0174489729, -0.00105124712, -0.00353193865, -0.00114088226, -0.00939124543, -0.00724000251, 0.0113978144, 0.000376231677, 0.0220659673, -0.0122469896, 0.00712048914, 0.00161815, -0.0365082324, 0.0321554244, -0.0164299626, 0.00502585759, 0.0106933136, -0.0226572454, -0.0114921676, -0.00541584892, -0.00843513757, 0.0276768133, -0.000549604883, -0.0147190318, 0.0223678965, 0.0127187539, 0.0293625817, 0.0193486083, -0.0447106324, 0.0443080626, -0.0151216043, -0.00478368532, 0.0177131593, -0.0138635673, -0.000691134, -0.0174741335, -0.0256262124, 0.0119828023, -0.013599379, 0.0232988447, -0.0250097737, 0.0042773257, -0.00400999282, 0.000282861729, 0.00114638614, 0.0264439359, 0.0292367786, 0.0566116609, -0.00219055684, -0.0104291262, 0.00031195386, 0.0214872714, 0.00425531, -0.0421442389, -0.0420435928, -0.0143038798, 0.00934092421, 0.0115613593, -0.0214621108, -0.042722933, 0.000729661435, 0.0357030891, 0.00139484846, 0.00908302702, -0.00473650917, -0.0239656046, -0.0128571372, 0.0258904, 0.0175873563, -0.0160777122, -0.000607395952, 0.0131087452, 0.0153228901, 0.0242801122, -0.0165431853, -0.0214998517, -0.0113726538, 0.0212608241, 0.0230472367, -0.0435784, -0.0562090911, 0.0103284828, 0.010171229, 2.92395307e-05, -0.0153480507, 0.00141765038, -0.000790990714, 0.038194, -0.00257583056, -0.0123350518, -0.0315012448, -0.0374140181, -0.0125363385, -0.00703871669, -0.00720855175, -0.018203795, 0.00183516135, 0.0300419219, 0.0105800908, -0.00462643104, -0.0210595392, -0.0136622814, 0.00938495528, -0.00423329417, -0.00905786641, -0.00825272221, 0.00580584025, -0.0387475379, 0.0129452, 0.0373888575, -0.00952334, 0.00091522187, 0.00433393707, -0.0270226337, -0.00632478064, 0.0163419, -0.017537035, 0.000343601336, 0.00737209665, 0.00284788106, -0.0223553162, -0.0204053596, -0.0114984578, 0.0386217348, -0.025022354, -0.0226320848, 0.0536930151, 0.00409491034, -0.0121903783, -0.0439306498, 0.0325076729, -0.001652746, -0.00779353874, -0.0134735759, -0.013221968, 0.0110958861, -0.000305467081, 0.0038621733, -0.0338411927, 0.0296896715, 0.0377159491, -0.0193486083, -0.00265917554, 0.0229843352, -0.0124985967, 0.0225691833, -0.00119906641, -0.00490005407, -0.0142912995, -0.0101900995, -0.0116682928, -0.023059817, -0.0289096888, -0.00663614506, -0.00108977454, 0.0101334872, 0.0377662703, -0.0283561535, -0.0157883633, -0.00718339114, 0.0157506224, 0.00164960092, 0.0233617462, -0.0285322778, 0.0159644894, -0.00453522336, -0.0186189469, 0.0342689268, -0.0301677249, -0.0119513506, -0.0298154764, -0.0353508368, 0.00340298982, -0.00703242654, 0.00767402537, 0.0137629239, 0.0113852341, -0.000888488605, -0.0122910207, -0.00608260883, 0.0223678965, -0.0070638773, -0.0213740468, -0.0055825389, -0.0109889526, -0.00853578094, 0.00941640604, 0.0331366919, -0.0111650778, 0.0149580594, 0.0253746044, 0.0112783015, 0.028582599, -0.0036011308, -0.0439558104, 0.00708274776, 0.0073783868, -0.0295638684, -0.00685001118, -0.00235567428, 0.0284064747, -0.00523657864, 0.00220470969, -0.0368856415, 0.0155241759, -0.0499943867, 0.00443772553, 0.00793821272, 0.0102718715, 0.0021323727, -0.0214872714, 0.00908931717, -0.0205689035, 0.0059096287, -0.00210878439, 0.00912705809, -0.0291864574, 0.0196756981, 0.0106681529, -0.0119576408, 0.00723371236, 0.0263684541, 0.0278529376, 0.0052900454, 0.0197386, -0.00738467695, 0.0478054024, -0.0547497682, 0.00381499692, 0.00170621264, 0.0367598385, 0.00182100851, -0.00241228589, 0.00213709031, -0.0132848704, 0.00313880225, -0.043980971, 0.0232107807, 0.0279284194, 0.00392507529, 0.00301771611, -0.00106540008, 0.00110314111, 0.0285574384, -0.0144548444, 0.00478054024, -0.00165117346, -0.00666759582, -0.0113600735, 0.0142032374, 0.0469751, 0.0138635673, -0.00531835109, 0.00582785625, 0.0099133309, -0.0372127332, 0.00834707543, -0.00895093288, 0.0220156461, -0.0165935066, -0.0175621957, -0.0281297062, -0.0303690117, 0.00719597144, 0.00902012456, 0.0247581676, 0.0152474074, -0.00425216462, 0.0254375078, 0.0249594525, -0.0220282264, -0.0200782698, 0.00581213087, -0.00977494661, -0.0388733409, -0.0196756981, -0.0065417923, 0.00812691823, 0.0313754417, -0.0186566878, -0.0136748618, -0.0186566878, 0.0163922217, -0.0316018872, -0.00487174792, -0.00917737931, -0.00661727414, 0.0155493366, 0.0257016942, 0.00955479, 0.0141906571, -0.057165198, -0.00810175762, -0.0408862, -0.0198140815, -0.00593793439, -0.0111965286, 0.000410041423, -0.0023729722, 0.0214746911, -0.000268315693, -0.00804514624, -0.0035256485, -0.0185937863, 0.0200279485, -0.01975118, -0.000974978611, -0.0364075899, 0.0105297696, -0.0267207045, 0.0228585303, -0.0209966358, 0.00054842548, 0.022430798, -0.00873077661, 0.0734190345, 0.00431506662, 0.0109700821, 0.014228398, -0.0213488862, -0.00767402537, -0.0123727936, 0.00333379791, -0.00362000125, -0.0230723973, -0.00281171245, -0.0104668671, 0.0190215185, -0.0137503436, -0.00631534541, -0.0431003459, 0.000810647558, 7.10102904e-05, 0.0138258263, -0.0232611038, 0.0240033455, 0.00460756, -0.0196631178, 0.00341871544, -0.0301928874, -0.0294129029, 0.0253494438, -0.0170086585, -0.0188705549, -0.00810804777, 0.00534036662, -0.0223427359, 0.0127690751, -0.0196127966, -0.00570205227, -0.0687391385, -0.00301928865, -0.0141151743, 0.013347772, -0.00262772455, -0.0185937863, 0.0394017175, -0.0209588949, 0.0162664168, -0.0369108021, 0.00833449513, -0.00726516312, -0.0193234477, 0.00315138255, 0.011133627, 0.0222798344, 0.000109685097, 0.0023493839, -0.000349891518, 0.00896980334, -0.0104668671, 0.0201914925, -0.0242423713, 0.00259312871, 0.00691920333, 0.0189711973, 0.0448112749, -0.0093157636, 0.00355080934, -0.000109881665, -0.00824643206, -0.010460577, -0.000538990193, 0.00828417297, -0.0155241759, -0.0331618525, 0.0211727619, -0.0147441933, 0.0320296213, -0.00997623336, 0.023688836, 0.00815208, -0.000413186499, -0.0213992074, -0.0315767266, 0.00389991445, -0.00654808246, -0.00194681215, -0.01807799, 0.0454654545, 0.0213488862, -0.00834078528, 0.0123413419, -1.25066563e-05, -0.0162035152, -0.021512432, 0.00185717701, -0.0154738547, 0.00785015058, -0.0130206821, 0.00927173253, -0.0280542243, -0.0259407219, 0.01397679, -0.0423203632, -0.0100202644, -0.0138887279, -0.0351747125, -0.0135113169, 0.0124734361, -0.00305073964, -0.000716687937, 0.000235292217, 0.0194366705, 0.0145806484, -0.0209840555, 0.00497553591, -0.0262929723, 0.00031057786, -0.000963970786, -0.00618954189, -0.0100328447, 0.0252865423, 0.00943527743, -0.0113978144, 0.00105989608, -0.0288593676, 0.0119576408, -0.00912076794, 0.00246575242, -0.0218017809, -0.0141151743, 0.0118758688, -0.0105297696, 0.0163670611, 0.00632792572, -0.0184679814, -0.0146812908, -0.0379423946, -0.02896001, -0.00453207828, -0.0274252053, -0.00271735969, -0.0155493366, 0.0267207045, 0.0251229983, 0.00488118315, -0.0122721503, -0.00748532, -0.0242549516, -0.00848545879, -0.0309980307, 0.0106807332, -0.00550391153, -0.024103988, -0.0296645109, 0.00801998563, 0.00143180334, 0.00520512788, 0.0229465943, -0.0282806698, 0.0434525944, 0.0232736841, -0.0107058948, -0.0165431853, -0.0227453075, -0.0232485235, 0.0144548444, 0.00827159267, 0.016027391, 0.0136497011, -0.00273937546, 0.0041892631, -0.0362566262, 0.00895722304, -0.005963095, 0.014731613, 0.0334637836, 0.0181157328, -0.0101900995, 0.0122344093, 0.00395338098, -0.0142535586, -0.0266703833, -0.0118821589, 0.0194869917, 0.0108191175, 0.0121715078, 0.0359546952, -0.00115189, -0.00361685618, 0.0505227633, -0.0236385148, 0.0186818484, -0.000815365172, -0.0178641248, -0.00300985342, -0.0167947933, -0.00967430416, -0.0142661389, -0.0204556808, -0.00441256445, -0.00628389465, 0.0227704681, 0.000708038919, -0.0380933583, -0.0117689352, 0.00301614357, -0.0091522187, -0.0136371208, -0.0351495519, -0.0294380635, 0.0120205432, 0.0147693539, 0.0152348271, -0.000119218654, 0.00631849049, 0.00558882905, 0.0188705549, 0.000816937711, 0.00768660568, 0.0044188546, -0.000894778757, 0.0125048868, -0.00348790735, 0.00662985444, 0.0631031319, 0.00764257461, 0.0417668261, 0.0177634824, 0.0202040728, -0.0134358341, 0.00805772655, 0.0137377633, -0.000479626586, 0.00612664, -0.00185560447, -0.00148526987, -0.00637195725, -0.0308219045, -0.0193863492, -0.00143887976, 0.00864271354, -0.00432135677, -0.00542842923, 0.00542528415, 0.00155131682, 0.00864271354, -0.0388230197, 0.0227830485, -0.00744128833, -0.0244688187, -0.0178263839, -0.00918366946, -0.0182415359, -0.0104983179, 0.0154235326, -0.0249342918, 0.00792563241, -0.0117563549, -0.0112342695, -0.0297148321, -0.0317528509, -0.000398443895, -0.00361685618, 0.0422197208, -0.0375398211, -0.0149958, 0.0131087452, -0.0208205115, -0.00621155743, -0.0189334564, 0.00934721436, -0.0395778418, 0.0185560454, 0.00484029716, 0.0220408067, 0.00466417195, -0.00760483323, 0.0119576408, -0.00501642236, 0.00661727414, 0.0225943439, 0.00303344149, -0.0145680681, 0.0338411927, 0.0072148419, 0.0088251289, 0.00819611084, -0.0179270264, -0.00434966292, 0.0150712822, -0.000843671034, 0.0477802418, 0.00789418165, -0.0117060337, 0.0148196751, 0.00200027879, -0.0117752254, 0.0277271345, -0.00876851752, 0.00359798572, -0.000366403256, -0.00701984623, 0.0279032588, 0.00818353053, 0.00149077375, 0.00439998414, 0.00964914355, -0.0189082958, 0.00291078305, -0.00189491815, 0.018958617, 0.00239184266, -0.00132329762, 0.0208959933, 0.0153732114, 0.00595995, 0.0116682928, -0.0113349129, -0.010460577, -0.0136497011, 0.00766144507, -0.00386846368, -0.00493779499, 0.0254752487, 0.00285888906, -0.0162915792, 0.0117500648, 0.0261671692, -0.0102844518, 0.00156232459, 0.00322686485, -0.00511077512, 0.0091522187, 0.00718339114, -0.0169205964, -0.0283813141, -0.00981897861, -0.00521141803, 0.0141403349, 0.0134861562, -0.00584987178, 0.00292493589, 0.0088251289, 0.031174155, -0.0123853739, 0.037615303, -0.0271484368, -0.010083166, 0.00529948063, -0.0245443, 0.0176125169, 0.0404333062, -0.0146435499, 0.00173294591, 0.0057460838, -0.019587636, -0.0467989743, 0.0263684541, 0.0130584231, 0.0110266935, 0.0261420067, 0.00086961803, 0.0229717549, 0.00408233, -0.00191064365, 0.0171093028, 0.0323818699, 0.00278026168, -0.034822464, 0.00050989812, -0.0275258478, -0.0296141896, 0.00713306945, -0.0237014163, 0.00548189599, -0.0101146167, 0.0236510951, 0.021298565, -0.00452578766, -0.0102655813, -0.0130332625, -0.0133226113, 0.0206443854, 0.0192857068, -0.00744128833, -0.0083911065, -0.0481324941, -0.0218395218, 0.0034941975, -0.0192731265, 0.0324573517, 0.00261986186, 0.0232736841, -0.000612113625, -0.00621784758, -0.0110707255, -0.0149706397, 0.00296739466, 0.00702613639, -0.0383952856, -0.0155115956, 0.000129833337, 0.00571463257, -0.0031136414, -0.0386972167, -0.0209085736, -0.00485602254, -0.0032771863, -0.00973091554, 0.0394520387, -0.00742870802, -0.0155241759, -0.00602914207, -0.00990704075, -0.0132722901, 0.00348790735, -0.00886287, 0.0298154764, 0.00798853487, 0.0145680681, -0.00701355608, 0.0280542243, 0.00292336335, -0.0052900454, 0.00173294591, 0.000807502482, -0.0100202644, -0.0168828554, 0.0142158177, 0.00691291317, -0.00760483323, 0.00233837613, -0.00182258105, 0.0108254077, -0.000142708566, 0.0154235326, -0.0219653249, -0.0186189469, 0.00546617061, 0.0044062743, -0.018329598, -0.00757338246, -0.025487829, -0.0317025296, 0.0149958, -0.00202701194, -0.00110314111, -0.0114481365, -0.0159141682, 0.00622413773, 0.0182541162, -0.00557939382, -0.0237643179, -0.0327341221, 0.00749161, -0.0332121737, 0.0270226337, -0.0126684317, -0.00433393707, -0.0074664494, -0.0132471286, -0.00476481486, -0.00356024457, -0.0169583373, -0.00325202546, 0.0159141682, -0.0194869917, 0.00496610068, -0.00693178363, 0.0223175753, -0.0308470652, -0.017323168, 0.0219527446, -0.0100642955, -0.00917737931, -0.0138635673, -0.00891319197, -0.00059324305, 0.0205185823, 0.0021889843, -0.00146010914, -0.0252613816, -0.0175118744, 0.0156499799, 0.01192619, -0.0203927793, 0.00158512651, 0.0108316978, -0.00201443164, -0.00524286879, 0.00380241661, -0.028834207, 0.0202166531, 0.0424713269, 0.00928431284, -0.00558568398, -0.00830304343, 0.0208456721, 0.0124042444, -0.00528690033, -0.00860497262, -0.0106744431, 0.0044943369, -0.00904528517, 0.00344702112, -0.0369611271, 0.0107436357, 0.00168262445, 0.00428676093, -0.0125300484, -0.0234623887, 0.0122469896, -0.0260162037, -0.0145806484, 0.00104888831, 0.000712756533, 0.00247361511, 0.00401942804, -0.0213992074, 0.0219779052, -0.0216382351, -0.00146246795, 0.0294129029, -0.00360742095, 0.0353256762, -0.0123224715, -0.00604172237, 0.0331870131, -0.0030129985, 0.010001394, 0.0111902384, -0.00296739466, 0.00701984623, 0.00640340801, 0.00734693557, 0.0018729025, -0.0313502811, -0.00632792572, -0.0158890057, -0.0219024234, -0.00406345911, 0.00272522261, 0.00497239083, -0.0218017809, -0.00109685096, -0.00308376295, 0.00982526876, 0.0102152601, -0.00684372103, 0.0232359432, -0.00876222737, -0.0192731265, -0.0135616381, 0.0124482755, 0.00554479798, -0.0269471519, 0.0340424813, 0.00374580501, -0.00840368681, -0.0173734892, 0.0105612203, 0.00564544089, -0.017411232, 0.0121526364, 0.0086741643, -0.0147441933, -0.0212230831, -0.0119828023, -0.00905786641, -0.0183925, -0.0307967439, 0.0210217964, -0.00101743743, 0.00271421461, -0.0178389642, -0.0120394137, 0.00142629934, -0.00718968129, 0.0286077596, -0.0279787406, -0.00176754186, 0.0276516527, -0.00484973239, 0.00012462429, -0.0146183893, -0.00399426743, -0.00576495426, 0.00990704075, 0.0125929499, 0.00598511053, 0.00449748198, 0.0203047171, -0.00424587447, 0.0203676187, 0.0270729549, -0.00728403404, 0.00674936827, 0.00284630852, -0.0216130745, 0.0118129672, 0.00292179082, -0.0120771546, -0.0205185823, 0.00148369733, 0.00485916762, -0.0139516294, 0.0219527446, -0.00981268845, 0.0172351059, 0.00333379791, 0.00893206242, -0.023059817, 0.0220408067, -0.00505416328, -0.0160651319, 0.0361056589, 0.0123224715, 0.00251607387, 0.0170841422, -0.0179270264, -0.00793821272, -0.00494723, 0.00683114072, 0.0184554011, -0.00138148176, -0.00437167846, 0.0161657743, -0.00762370368, 0.0162035152, -0.00510763, 0.00641598832, 0.00773063721, 0.000753642758, -0.0180150885, 0.0117374845, 0.0104794474, 0.00508246943, 0.0448867567, 0.00338726444, -0.0128948791, 0.0159393288, -0.00779353874, 0.0203927793, -0.0124356952, 0.00918366946, 0.020342458, -0.0224433783, 0.00375209516, 0.0150083806, -0.0040382985, -0.0103976754, 0.00324259023, 0.000954535499, 0.0283561535, -0.0183925, 0.00724000251, 0.012429405, -0.00795079302, 0.0134358341, -0.0163293201, -0.0221791919, -0.0215879139, -0.000843671034, -0.0183799192, -0.0228333697, 0.0175621957, -0.00405402388, -0.0074538691, -0.0108568585, -0.00550076645, 0.0196882784, -0.0064317137, -0.0269471519, 0.0219904855, 0.0293625817, -0.0133603523, 0.0138384067, 0.00672420766, 0.00613607513, -0.00272679515, 0.0199021436, 0.000857037667, 0.00438425876, 0.0149454791, 0.00701355608, 0.015360631, -0.0117689352, -0.0100328447, -0.00886287, 0.0256387927, -0.00591591885, -0.000101134377, -0.00705758715, 0.00998881366, -0.00353508373, -0.000373872841, 0.000949031615, -0.00680597965, 0.0199398864, -0.0100265546, -0.0111399172, 0.000160399708, 0.00857981201, -0.000331020972, -0.00776837813, -0.00580269517, -0.0249720328, -0.00315138255, 0.0153228901, 0.0382694826, -0.0184931438, 0.0064317137, 0.00738467695, -0.0105297696, 0.00412950618, -0.00454780366, -0.0131213255, -0.00714564975, -0.00386531861, -0.0153732114, 0.00724000251, -0.0094793085, 0.0105171893, 0.00759225292, -0.00296896719, 0.00389991445, -0.0133226113, 0.0109826624, 0.0094793085, 0.00376153039, 0.00348790735, -0.00209305901, 0.00715194, -0.00356338965, 0.031174155, -0.0111587876, -0.0264187753, -0.00536238262, 0.0113789439, 0.000327286165, 0.00767402537, -0.0269471519, 0.0163419, -0.0210721195, -0.0155744972, -0.0221162885, 0.000868045492, -0.0190215185, 0.0339669958, -0.00399426743, -0.00412636111, 0.0112720113, 0.0294129029, 0.00305860233, -0.0122721503, 0.00906415656, 0.00919625, 0.000259666675, -0.0145429075, 0.00988817, -0.01159281, 0.037791431, -0.00345331151, -0.00886287, 0.000866472954, -0.0198644027, 0.0167318918, -0.0162160955, 0.0184176601, -0.0340928026, -0.010630412, 0.0127124637, -0.00797595456, -0.00852320064, -0.00106618635, -0.0149958, -0.00186818489, -0.0153103098, 0.0309225488, -0.0129452, 0.00434651785, -0.00419555325, 0.014228398, 0.00423014909, -0.00618325174, 0.00573035842, 0.00462643104, 0.00436853338, -0.0110958861, 0.0149077382, -0.00969317462, 0.00818982068, 0.00131543493, -0.017700579, -0.00422071386, -0.0232485235, 0.0365082324, -0.00296739466, 0.0245820414, 6.03956032e-05, -0.0148448357, -0.000432450208, -0.00272207754, 0.0176754184, -0.010963792, 0.00492835976, -0.00115660776, -0.00969946478, -0.00279126945, -0.00395652605, 0.018166054, -0.000958466902, -0.0151467649, 0.00220785476, 0.0192479659, 0.0024924858, 0.009793818, -0.00793821272, -0.020254394, -0.00799482502, 0.00765515491, 0.011422975, -0.0162035152, 0.00120850175, 0.0272239186, -0.0163670611, 0.00319226878, -0.00200656895, 0.000693886, -0.0293374211, 0.00683114072, 0.00526803, 0.0137000224, -0.00123680755, 0.00130914466, 0.00768031552, 0.0184428208, -0.0121966684, 0.0163796414, 0.0185434651, -0.0215627532, 0.00302400626, -0.00454780366, 0.0126621416, -0.0307464227, -0.0052900454, 0.00252236403, -0.0221917722, 0.0210469589, 0.0191976428, -0.00785644073, 0.0209840555, -0.0188705549, -0.00057830388, -0.00112515676, -0.00114324107, -0.00648518046, -0.021512432, 0.0119073195, 0.00740354741, 0.0168828554, -0.00771176629, 0.00499440683, 0.00128398393, -0.00547875091, 0.00759854307, 0.000813006365, 0.0158135239, -0.0212608241, -0.029589029, 0.0268465076, 0.00161028723, -0.0065417923, 0.0260162037, -0.0139264688, 0.0176754184, 0.013310031, -0.0207450297, 0.0201537516, -0.000128752217, -0.00431506662, -0.0187573303, -0.00803256594, -0.000290724478, -0.0227830485, -0.0100202644, -0.00148920121, 0.0116808731, -0.0210217964, 0.0290606525, 0.00484029716, -0.0286580808, 0.0157003012, -0.00633736094, -0.0153732114, 0.0157128815, -0.0154612744, -0.00718968129, 0.0185560454, 0.0255381502, -0.00188705546, -0.0200153682, -0.00647889031, -0.0116808731, -0.000944314, -0.0112405596, 0.0204556808, -0.00233051344, -0.0102278404, 0.0121589266, 0.0178641248, -0.00708274776, 0.0114355562, -0.0195121523, -0.00824014191, -0.0141529152, -0.00861126278, -0.0126935923, -0.0149077382, 0.0128760077, 0.0106618628, 0.00968059432, 0.0132093877, -2.0037678e-05, 0.00338097429, -0.00678710919, 0.0146812908, 0.00442514475, 0.0191347413, -0.00660469383, -0.00668017613, 0.021927584, 0.00616438081, -0.00686888164, 0.0214872714, 0.0259407219, -0.0172854271, 0.00637195725, 0.0168954358, -0.0235881917, -0.0197008587, 0.000592849916, -0.0309477095, 0.0182918571, 0.00239184266, -0.00197669049, -0.00162758527, 0.00960511249, -0.0209211539, 0.00122894486, 0.00423958432, -0.012725044, 0.00537496293, -0.00692549348, -0.00131700747, 0.00699468516, -0.0144548444, -0.00972462539, -0.00648518046, -0.0103159025, 0.00211035693, 0.00879367813, 0.0359798558, 0.000658110599, 0.00104495697, 0.00326460577, 0.00444716075, 0.00896351319, -0.00380870677, 0.0109071806, -0.0197637603, -0.00705758715, 0.0331870131, -0.00231950567, 0.00774321752, 0.0185183045, -0.0134735759, 0.0118632885, -0.00876851752, 0.00652921153, 0.0121840881, 0.00031903031, -0.00294852396, -0.00743499817, 0.019122161, -0.0029815475, 0.0117500648, -0.00682485057, 0.00161343243, 0.0071267793, -0.000518153945, -0.024733007, -0.0125489188, 0.0117752254, -0.00965543371, -0.00394394575, -0.00155131682, -0.0143290404, 0.00605430268, 0.000107424559, 0.0130710034, 0.00674307812, 0.00604801252, -0.0176879987, 0.0016165775, -0.0240285061, 0.00775579782, 0.0114607168, -0.0438803285, -0.0107750865, 0.00740983756, 0.0027330853, 0.0131464861, 0.0311489943, -0.00245317211, -0.0129703609, -0.0109575018, -0.013221968, 0.00717081036, -0.00205060025, -0.00294066127, 0.00129892316, -0.00822127145, 0.00297840242, 0.00301928865, 0.00209463155, -0.00927173253, 0.00676194858, -0.0177383199, -0.000472943269, -0.00327089615, -0.0131590664, -0.013221968, -0.0299161188, 0.0232611038, -0.0222420935, 0.00502900267, -0.00274723815, 0.0170841422, 0.0236762557, -0.0129452, 0.00293122604, -0.0118947392, -0.0236510951, -0.00990075059, 0.00176754186, -0.0167696327, 0.0217011366, 0.0109889526, 0.0165935066, -0.0131087452, 0.00549762137, 0.00619897712, -0.0157883633, -0.0036577424, 0.00859868247, 0.0326334797, 0.0150209609, -0.01975118, 0.0140900137, -0.022518862, 0.00607002806, 0.0104291262, 0.0160022303, 0.00776837813, 0.00362629141, -0.020342458, -0.0083911065, 0.00407918496, -0.00569261704, -0.00703871669, 0.00569261704, -0.00259627379, 0.0229591746, -0.0116116805, -0.00822127145, -0.0158638451, 0.0125929499, 0.0273245629, -0.00897609349, 0.0562594123, 0.0272742417, 0.00255224248, 0.00378983631, 0.00724629266, 0.0408107191, 0.0144171035, -0.0221666116, 0.00591591885, -0.015272568, 0.00496924575, -0.0210595392, -0.00235410151, -0.0111273369, 0.0170086585, 0.0133351916, 0.0162286758, -0.00709532853, -0.0110707255, -0.0166941509, 0.0115173282, -0.0101523586, 0.0262929723, 0.00590019347, -0.0271484368, 0.0309980307, 0.0169709176, -0.0218646824, -0.0135238972, 0.0143164601, 0.0028730419, -0.0235001296, -0.0139516294, -0.0214621108, -0.00302400626, 0.00309791602, 0.0112342695, 0.0116808731, -0.0291361362, -0.00818353053, 0.00607946329, -0.00194838468, 0.0157883633, 0.0141277546, -0.0109260511, 0.0253620241, -0.0245820414, 0.0270981155, 0.000356771401, 0.000461149175, -0.0217388775, 0.010378805, -0.00129420555, 0.00146639929, 0.00693178363, -0.000498104, -0.015775783, -0.022304995, -0.0203550383, 0.00607631821, 0.00341871544, 0.00171093026, -0.00754193123, -0.0297903139, -0.00020403786, 0.0152851492, 0.00926544238, -0.0185560454, -0.00764257461, 0.0227201469, -0.0189460367, -0.0114607168, 0.00917108916, 0.00436224323, 0.00553850783, 0.0184805635, 0.00730919465, -0.00742241787, 0.00469247764, -0.00738467695, 0.0157883633, 0.00861126278, -0.0115550691, 0.0188076515, -0.00342186051, -3.86502361e-05, -0.00388104399, 0.00520512788, -0.00223930576, 0.0151593452, 0.0289851706, -0.0237643179, 0.00863642339, -0.000724550628, 0.0216004942, -0.00683743088, 0.0136119593, -0.0015127894, 0.00831562374, -0.00164645584, 0.00800111517, 0.00600712653, 0.00249563088, 0.015360631, 0.00206003548, 0.0295638684, -0.0202166531, 0.0185434651, 0.00373636978, 0.00369548355, 0.0016448833, -0.0165809263, 0.0122155389, 0.00893206242, 0.00763628399, 0.0128193963, 0.0263432935, -0.00709532853, -0.00792563241, 0.0034941975, 0.00805772655, -0.01293262, 0.0105171893, -0.0104102558, -0.0148196751, -0.00762370368, -7.34673886e-05, -9.48441884e-05, -0.00379612646, -0.0150838625, 0.00239184266, -0.0171470437, -0.00117940968, -0.00448490167, -0.000832663209, 0.0110266935, -0.0199776273, 0.0139138885, -0.00908931717, 0.00563600566, 0.00918996, -0.0103662247, 0.00998881366, -0.0189082958, 0.0146183893, 0.0260665249, -0.00494723, -0.00815208, 0.0226446651, 0.00563600566, 0.0060385773, -0.0140019516, 0.00326775084, -0.00534980185, -0.000448568782, 0.00671162689, 0.0115991, 0.000556288229, 0.00796337426, -0.00162758527, -0.014228398, 0.00366403256, 0.0156499799, 0.0209840555, 0.024103988, 0.0111147566, 0.0250600968, 0.0190215185, 0.00722113205, -0.0122973109, -0.00464215642, 0.000475302077, -0.00470191287, 0.00504787313, -0.00973720569, -0.019965047, 0.00296896719, 0.000477267749, -0.00525859464, -0.029211618, 0.0237391572, 0.00768660568, 0.00176439679, -0.0252110604, 0.00671162689, -0.000974192342, -0.00212765508, 0.000228019198, -0.0082149813, 0.0107939569, 0.00910818763, 0.00762370368, -0.0173357483, 0.0309980307, -0.00710790884, 0.0149454791, 0.00818982068, 0.0189963579, -0.00443772553, -0.00611720467, 0.0212482437, -0.0162286758, -0.00972462539, -0.0143164601, -0.00359484064, 0.0264942572, -0.00294066127, 0.0254249275, -0.00641598832, -0.0123665035, -0.000618796912, 0.0209085736, 0.0110329837, -0.00607631821, 0.0157380421, -0.0186818484, -0.00480570132, 0.00573979365, 0.0162789989, 0.00832191389, -0.0068877521, 0.0326083191, 0.00701984623, -0.017323168, -0.00440312922, 0.011718614, -0.00494408514, -0.0150964437, 0.0228836928, 0.00795079302, 0.00046075604, 0.0254123453, -0.000857037667, -0.0103850951, -0.0134232538, -0.00513593573, 0.00831562374, 0.022556603, -0.0166312475, 0.00553221721, 0.00320484908, -0.00166532642, 0.0465725288, 0.0144548444, -0.0239027012, -0.0203047171, 0.0186315272, -0.000867259223, -0.00787531119, -0.00662356429, -0.0104794474, 0.00119434879, -0.0402320214, -0.00500698714, -0.0178515445, -0.021135021, -0.000127671097, -0.0230220761, 0.00796337426, 0.0253871847, 0.00217011361, -0.0132597089, -0.00484344224, -0.0107876668, 0.0296896715, -0.0104228361, 0.00835965574, 0.0184302405, 0.0213111453, -0.015360631, 0.0187950712, -0.00646002, 0.00689404225, 0.00555423321, 0.00451320736, 0.020342458, 0.0247204266, 0.0182918571, -1.37229226e-05, -0.0113726538, 0.0101963896, -0.00804514624, 0.0147945145, 0.00769289583, -0.0268716682, -0.0139642097, -0.00693178363, 0.0237768982, 0.0356024466, 0.0270729549, 0.000817724038, -0.000368762092, -0.00918366946, 0.00579326, 0.00783128, 0.0141780768, -0.0125929499, -0.00740983756, 0.0216256548, 0.016782213, 0.0132471286, -0.00234309374, 0.0128131062, -0.0241543092, -0.0105171893, -0.0255004093, -0.014895157, 0.0310483519, -0.0234875493, -0.00237611728, -0.00213709031, -0.00109999604, -0.00661098398, 0.0037332247, 0.029085815, -0.00225503114, 0.0345456935, 0.0243052728, -0.0141151743, -0.0152096665, -0.0114544267, 0.00354451919, 0.00515795127, 0.0133226113, -0.0122721503, -0.0116305519, -0.0138258263, -0.00539697846, -0.0104731573, -0.00885028951, 0.00906415656, 0.00217954908, -0.0215753336, -0.00288404967, -0.00440941937, -0.00649776077, -0.00625244342, 0.0153857917, 0.00105046085, -0.0253117029, 0.0150712822, -0.015360631, -0.00662985444, -0.00725258281, -0.00779353874, 0.00120771548, 0.00563600566, 0.00187133, -0.0182918571, -0.000430877641, -0.00657953322, -0.0192982871, -0.00107640785, 0.0233365856, 0.0134484153, 0.0257142745, -0.00414837664, 0.0170464013, 0.00316710793, -0.00105832354, -0.0158386845, -0.0129452, 0.0168451145, 0.000872763107, 0.00191064365, -0.00768031552, -0.0226320848, 0.0178892855, 0.00445974106, -0.014895157, 0.011674583, -0.00628389465, -0.0181031507, 0.00103709416, -0.00112122542, -0.0220408067, -0.0218143612, 0.00842884742, 0.0219779052, 0.0124608558, -0.00154581293, 0.0196505375, 0.00148526987, 0.014857416, -0.00713306945, -0.00687517179, 0.00187133, -0.0107876668, 0.0202040728, 0.000165707053, -0.0206192248, 0.000537810789, -0.0116934534, -0.0177509021, -0.00126196828, 0.000506753, 0.0307715833, 0.0163544808, 0.00865529384, 0.00346589182, -0.00492521469, 0.0269723125, 0.00158984424, 0.0131464861, 0.00623671804, 0.00386531861, -0.000229395169, 0.0183925, 0.0151845058, -0.00388418906, -0.00693178363, -0.00514222588, -0.00521456311, -0.0261420067, 0.00148291106, 0.00654808246, -0.00853578094, -0.0326334797, 0.0206947085, 0.008661584, 0.00608889898, 0.0060385773, -0.00366717763, -0.00412007095, -0.008705616, 0.0185937863, 0.00425216462, 0.00371435401, -0.00951704942, 0.0022408783, 0.0122532798, -0.00156075205, 0.00918996, 0.00919625, -0.0143667823, -0.000936451252, 0.00823385175, -0.017159624, -0.0209714752, -0.0145932287, -0.00356338965, -0.00849174894, 0.00187447504, -0.0094667282, 0.000905786583, -0.00683743088, -0.00421127863, -0.00390305952, 0.0177760627, 0.0134484153, -0.01598965, 0.0106807332, -0.0213488862, -0.0185937863, 0.019210225, 0.000751677086, 0.0245820414, -0.0126181105, 0.0145177459, 0.0079004718, -0.0140774334, -0.00317654316, 0.00181157317, 0.0106052514, -0.0140648531, -0.0131590664, -0.0311993156, 0.00145381899, -0.000600712665, -0.0173734892, -0.0200405288, -0.00307747279, -0.00184931431, -0.0119890925, 0.00920254, 0.0277019739, -0.00676823873, 0.017952187, -0.00170306745, 0.0113097522, -0.019587636, -0.0014868424, 0.00815208, -0.00268590893, -0.00350677804, 0.00134531327, 0.0049503753, -0.00536238262, -0.016404802, -0.0145177459, -0.00714564975, 0.0164551232, 0.00529319048, 0.00563286059, -0.0029375162, -0.0148196751, -0.00847287849, -0.0043653883, -0.0268968306, 0.00631534541, -0.0195373129, -0.0167067312, -0.01225957, 0.0109700821, -0.011636842, 0.0168199539, -0.0262174904, -0.0103159025, -0.0130332625, 0.0322560668, -0.0202292334, -0.0147819342, 0.000519333349, 0.0196631178, -0.0097623663, 0.00518625742, 0.0109575018, 0.00395652605, -0.00188233773, -0.0160525516, -0.0160148107, -0.00810804777, 0.00746015925, -0.00729661435, -0.0095862411, -0.0347218178, 0.0151216043, -0.0250600968, 0.00401942804, 0.00595995, 0.00258369348, 0.00685630133, 0.00438740384, -0.0161783546, -0.0214495305, 0.0227201469, -0.0120645743, -0.0233994871, -0.00830933359, -0.0203676187, 0.00112987438, 0.000881412125, -0.00316868047, -0.00981268845, 0.0166186672, 0.0219779052, 0.00615809066, 0.0134484153, -0.00204745517, 0.0151216043, -0.00801998563, 0.0044188546, -0.00788160134, 0.0225062817, 0.0062147025, -0.0072148419, 0.0080640167, 0.0226195045, 0.0141780768, 0.00362314633, -0.00367032271, 0.0113097522, 0.0105612203, 0.000214259417, 0.00143416214, -0.00383386761, -0.0054473, -0.0135238972, 0.000510291255, 0.0390243046, -0.0130458428, 0.00315767271, -0.00805143639, -0.0151467649, 0.00879367813, -0.00584043656, -0.00567374658, 0.0079004718, 0.0179396067, 0.0259407219, -0.00213709031, 0.00293279858, 0.0253368635, 0.0121589266, 0.000949817884, 0.0167696327, -0.016027391, -0.00515795127, 0.00144988752, 0.0179018658, -0.0306457803, 0.00796966441, -0.0105800908, 0.030595459, 0.00315924524, -0.00766144507, 0.012762785, 0.00171564787, -0.0126118204, -0.00293279858, -0.00784386, 0.00598511053, 0.023059817, -0.029211618, 0.0190466791, 0.00156075205, -0.0145806484, 0.0109008905, 0.0131213255, 0.025651373, 0.0386217348, 0.00135789358, 0.0158512648, -0.00058262836, 0.0300922431, -0.0211979225, 0.00357597, 0.00490005407, -0.0227327272, -0.000544101, 0.0134358341, -0.0226949863, -0.0199524667, -0.000378590485, -0.0085546514, -0.0299916, -0.014895157, 0.0079570841, 7.94627267e-05, -0.00211192947, -0.00391878514, -0.0224433783, -0.0212482437, -0.00998881366, -0.0255633108, -0.0347721428, -0.0123224715, 0.000997780589, -0.00626502419, -0.015272568, 0.0137000224, -0.0157128815, -0.0052900454, -0.00997623336, -0.00949817896, 0.000361882179, 0.021135021, -0.0101649389, 0.00612978498, 0.00470505795, -0.0137755042, 0.00158827158, 0.00103316281, 0.00267175585, 0.00370806386, -0.0255129896, 0.00501013221, 0.0133351916, -0.0187321696, 0.013850987, 0.00448175659, 0.00605744775, 0.000757180969, 0.00200814148, 0.00589704793, -0.0156374, -0.0112091089, -0.00825272221, -0.00808917731, 0.0120457038, 0.00556681352, 0.004352808, 0.0160651319, 0.00160321081, 0.00652921153, -0.0142158177, -0.0134735759, -0.00195467495, 0.0311993156, 0.00261042663, -0.00497553591, 0.0194492508, 0.0100202644, 0.0100202644, 0.0179899279, -0.0125237573, 0.0143164601, 0.0243430156, 0.00461699534, -0.00213866285, -0.00770547614, 0.00540012354, 0.00742241787, -0.00206789817, -0.0220282264, 0.00374266, -0.0104794474, -0.0107813766, -0.00707016746, -0.00663614506, -0.00820240099, -0.0172728468, 0.0142661389, 0.000526016694, 0.0291361362, -0.00573979365, -0.0138258263, 0.00408862, -0.00192636903, 0.00761741353, -0.0064537297, 0.00175810663, -0.0168954358, 0.000285024, -0.00477110501, 0.0152222468, 0.0136497011, 0.0344953723, -0.00463586627, 0.010630412, 0.0258904, 0.00372693455, 0.0200153682, -7.76444649e-05, -0.00961140264, -0.0189711973, 0.00528690033, -0.00358855026, -0.018707009, 0.0153480507, 0.00927802268, 0.00373951485, 0.0240285061, -0.00350677804, 0.00912705809, -0.0122658601, 0.00433708215, -0.00408233, 0.00463586627, 0.000744207471, 0.00528061, -0.00175810663, -0.0030129985, -0.00168891461, 0.0311489943, 0.0263936147, 0.0102026798, -0.0202418137, 0.0111462073, 0.0113474932, 0.0131087452, -0.0136622814, 0.00573035842, 0.0166689903, 0.00124388398, -0.00539383339, -0.00710161868, 0.00138541323, -0.00052562356, 0.0252236407, 0.0093157636, 0.00834078528, 0.00550076645, 0.0218395218, 0.00176125171, -0.0126181105, -0.00765515491, -0.0184428208, -0.0102341305, 0.00128791528, 0.00578067964, 0.0248462297, -0.00223301561, -0.00145932287, 0.0423203632, 0.00705758715, -0.0166186672, -0.0184554011, 0.0178892855, 0.00885658, -0.018958617, 0.0054473, 0.00381814199, 0.0397288054, -0.0145303262, 0.00854836125, -0.0227075666, 0.00715823, -0.00783128, -0.0226195045, 0.001888628, -0.0275006872, 0.00650405092, 0.000520905945, -0.0255381502, -0.0119513506, 0.0150083806, 0.0262929723, 0.00387789891, 0.0019169338, 0.0191976428, -0.00639082771, 0.0121400561, -0.00121715071, -0.0343947299, -0.0110266935, -0.0206443854, -0.000456038397, 0.00412321603, 0.0126684317, -7.7349614e-05, 0.00153087371, 0.00466417195, -0.030545136, -0.00746015925, -0.0118318377, -0.00401942804, -0.00176439679, -0.0117437746, 0.00331178214, 0.00485602254, -0.0254500881, -0.00892577227, 0.00623671804, -0.0143667823, -0.00966172386, 0.00824643206, -0.00932834391, 0.00748532, -0.00148762867, -0.00295166927, 0.0010386667, 0.0229088534, -0.00796966441, 0.0177634824, -0.0135238972, 0.0111902384, 0.00673049781, 0.0116871633, -0.0069758147, -0.0144925853, -0.00303973164, -0.00194681215, -0.00467360718, 0.021927584, 0.00915850885, -0.00424901955, -0.00893206242, 0.00698210485, -0.0143919429, -0.0105423499, -0.0383952856, 0.000398443895, -0.0018445967, -0.0199021436, 0.00552592706, -0.0225314423, 0.00758596277, 0.0220156461, -0.00372064416, 0.00475852471, 0.0222546738, -0.0117500648, -0.00680597965, -0.0217766203, -0.0171973649, 0.00576180918, -0.0353508368, -0.000181137657, -0.0153732114, -0.0108694388, 0.0200656895, -0.0122029586, 0.00532464124, 0.00679968949, -0.0102592912, -0.0160777122, -0.00492206961, -0.0108002471, -0.00567689165, 0.0319038182, 0.000854678859, 0.00707645761, -0.0109449215, -0.0230723973, 0.02485881, 0.0116808731, -0.00755451201, -0.000412007095, 0.0220785476, -0.0191850625, -0.0307464227, -0.00154030893, -0.00878738798, -0.0122344093, -0.000929374772, -0.00633421587, -0.00922770053, 0.00240914081, 0.00312307663, -0.01225957, -0.00406031404, -0.00326146069, -0.00322371977, 0.0023603919, 0.0107058948, -0.000402964972, -0.013725183, 0.0171218831, -0.00105124712, -0.003233155, -0.00243587396, 0.0122155389, -0.00228805467, 0.0132848704, 0.0100076841, 0.00808288716, 0.0230220761, -0.00131779374, -0.00491892453, -0.0199524667, -0.0126621416, 0.00308533548, -0.00777466828, -0.0260916855, -0.00529948063, -0.0174992941, -0.0175118744, -0.00701355608, 0.0101900995, -0.0071393596, 0.00462014088, 0.0161783546, -0.0222798344, 0.00262615201, 0.0158386845, -0.0163796414, 0.0129452, -0.00962398294, 0.0268716682, -0.0138635673, 0.00846658833, 0.00788789149, 0.0151845058, -0.0156877209, -0.00627445942, 0.00452578766, -0.000804750482, 0.0190844201, 0.00304287695, -0.023474969, -0.0024484545, 0.00902012456, -0.00362943648, -0.0104794474, -0.0306457803, -0.0082275616, 0.0152348271, -0.0225314423, -0.00374895, 0.00536238262, -0.0083785262, 0.0192479659, 0.000479626586, 0.0245694611, -1.03566908e-05, -0.0167193115, -0.00744757848, -0.0126432711, -0.0148070948, -6.27544214e-05, 0.00555423321, -0.00985042937, 0.0163670611, 0.0102026798, 0.0112783015, -0.00530577078, -0.0201537516, -0.0142158177, 0.00683114072, -0.0124105345, -0.000383308128, -0.00874964707, -0.00226289383, -0.0145680681, 0.00422700401, 0.0325328335, -0.0032363, 0.00462643104, 0.0150335412, 0.0100768758, 0.0160777122, 0.0128445569, 0.000259076973, 0.0105108982, 0.000152831824, 0.0204556808, 0.00667388598, 0.00965543371, 0.015360631, 0.0197260194, 0.0177760627, -0.0251481589, 0.0129452, -0.00747273955, 0.0173105877, -0.0057460838, -0.0124042444, 0.00128319766, 0.00717081036, -0.0134609956, -1.94971162e-05, 0.00849174894, 0.0141403349, -0.00652921153, 0.0129703609, -0.00689404225, 0.00136025238, -0.00661727414, -0.00586245209, 0.00169834984, 0.0751802847, -0.0143038798, -0.00371749909, 0.0132722901, -0.0182289556, -0.0063782474, 0.0293877423, 0.0300167613, -0.0100642955, 0.00361685618, 0.00388104399, 0.00329920184, -0.00861126278, -0.0108946, 0.0231227186, 0.0119073195, 0.0105549302, -0.0199776273, 0.0163544808, -0.00126354082, 0.0477802418, 0.00583729148, 0.00609204406, 0.00972462539, 0.00963656325, -0.00357282488, -0.00774950767, 0.00100485701, -0.0148699963, -0.0217640381, -0.00182258105, -0.0170841422, 0.00635937694, 0.00253494433, 0.0019814081, 0.0175873563, -0.0098063983, 0.00676194858, -0.00246260734, -0.00593164423, 0.0169834979, 0.00412007095, 0.0183170177, -0.000286793103, 0.00481199147, 0.0115991, -0.0281297062, 0.00502585759, -0.0171093028, 0.00575237395, -0.0175873563, -0.00712048914, 0.0206695478, -0.00322057446, 0.010045425, -0.00528061, 0.0105926711, 0.0102844518, 0.0139516294, -0.000764650584, 0.00624615327, -0.008661584, 0.00517367711]
04 Mar, 2025
MongoDB – db.collection.findOneAndReplace() Method 04 Mar, 2025 The findOneAndReplace() method in MongoDB is a powerful tool for finding and replacing a single document within a collection. This method replaces the first document that matches the specified criteria with a new one. By default, it returns the original document but this can be configured to return the new document. MongoDB findOneAndReplace() Method The findOneAndReplace() method replaces the first matched document based on the selection criteria. By default, this method returns the original document. To return the replacement document, set the value of the returnNewDocument option to true. It takes eight parameters, the first parameter is the selection criteria and the second parameter is the replacement document. And the others are optional. Using this method we can also replace embedded documents. We can also use this method in multi-document transactions. Syntax: db.Collection_name.findOneAndReplace( selection_criteria: <document>, // The filter criteria to find the document replacement: <document>, // The new document to replace the found document { projection: <document>, // Optional: Fields to include or exclude in the returned document sort: <document>, // Optional: Sort the documents before applying the replacement maxTimeMS: <number>, // Optional: Maximum time in milliseconds to allow the operation to run upsert: <boolean>, // Optional: If true, insert a new document if no document matches the filter returnNewDocument: <boolean>, // Optional: If true, return the updated document instead of the original collation: <document> // Optional: Collation settings to specify language-specific rules }) Parameters: The first parameter is the selection criteria for replacing the document with the new document. The second parameter is the replacement document. The third parameter is optional. Optional Parameters: projection: The type of this parameter is document. It determines which fields are returned to the matching documents. This document takes: { field1: <value1>, field2: <value2> ... } Here if the value of the field is 1/true then it specifies the inclusion of the field, or if the value of the field is 0/false then it specifies the exclusion of the field. sort: It determines which document the operation will modify if the query selects multiple documents. findOneAndReplace() will replace the first document in the sort order specified by this argument. The type of this parameter is document. maxTimeMS: The type of this parameter is number. It specifies the time limit in milliseconds within which the operation must complete. It throws an error if the time limit is exceeded. upsert: The default value of this parameter is false. If the value of this option is set to true and no document matches the given filter query, then this method creates a new document from the replacement parameter and returns null(after inserting a new document) unless the value of returnNewDocument option is set to true. Or if the value of this upsert option is set to true, then this method replaces the document that matches the given filter query with the replacement document. returnNewDocument: The type of this parameter is boolean. By default, this method returns the original document. To return the replacement document, use the returnNewDocument option and set its value to true. Collation: It specifies the use of the collation for operations. It allows users to specify the language-specific rules for string comparison like rules for lettercase and accent marks. The type of this parameter is a document. Return Value By default, this method returns the original document before replacement. To return the new document use the returnNewDocument option and set its value to true. Examples of MongoDB findOneAndReplace() Method In the following examples, we are working with: Database: gfg Collections: student Document: Four documents contains name and the age of the students Example 1: Replace the first matched document whose age is 17 and returns replaced document This example finds the first document where age is 17 and replaces it with a new document { name: "Mihir", age: 17 }. It returns the original document before replacement. Query: db.student.findOneAndReplace({age:17},{name:"Mihir", age:17}) Before replacement: After replacement: Explanation: we find a document that matches the given filter query(i.e., age:17) from the student collection and then replace the matched document with a new document(i.e., {name:”Mihir”, age:17}) using the findOneAndReplace() method. Here, this method returns the original document. Example 2: Replace the first matched document whose age is 17 and returns a new document This example replaces a document where age is 17 and ensures that the updated document is returned instead of the original. Query: db.student.findOneAndReplace({age:17},{name:"Sagar", age:17}, {returnNewDocument:true}) Output Explanation: Here, we find a document that matches the given filter query(i.e., age:17) from the student collection and then replace the matched document with a new document(i.e., {name:”Sagar”, age:17}) using the findOneAndReplace() method. Here, this method returns the new document because the value of the returnNewDocument option is set to true. Important Points The findOneAndReplace() method finds and replaces the first document that matches the selection criteria. By default, it returns the original document, but you can configure it to return the new document. The method provides optional parameters like projection, sort, maxTimeMS, upsert, returnNewDocument, and collation to customize its behavior. It can be used for atomic updates and multi-document transactions. Using upsert: true, the method can insert a new document if no match is found. Conclusion The db.collection.findOneAndReplace() method is a powerful tool for replacing documents in MongoDB. Its ability to return either the original or the new document makes it flexible for various applications. Understanding its syntax, parameters, and use cases will help us make the most out of this method for efficient document management in MongoDB. By mastering this method, developers can ensure atomicity in updates and simplify document replacement operations in MongoDB databases FAQs What does findOneAndReplace do? The findOneAndReplace method finds a single document in a MongoDB collection that matches the specified filter criteria and replaces it with a new document. By default, it returns the original document before the replacement. However, you can modify this behavior to return the newly replaced document by setting the `returnNewDocument` option to true. What is the difference between findOneAndReplace and replaceOne? The primary difference between findOneAndReplace and replaceOne is that findOneAndReplace returns the document before or after the replacement operation, depending on the returnNewDocument option. In contrast, replaceOne only returns information about the operation’s success and does not return the replaced document. Additionally, findOneAndReplace is useful when you need to return the replaced document or the original document as part of the operation. Can the findOneAndReplace method be used in multi-document transactions? Yes, the findOneAndReplace method can be used in multi-document transactions. This allows you to perform the find-and-replace operation within a broader transaction that includes multiple operations, ensuring atomicity and consistency across all affected documents. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method
https://www.geeksforgeeks.org/mongodb-db-collection-findoneandreplace-method?ref=asr3
Languages
MongoDB – db.collection.findOneAndReplace() Method
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.00184988638, 0.0119321756, -0.0219192021, 0.0519093163, 0.00245865225, 0.0396868214, 0.0133547457, 0.0224708114, -0.0145595763, 0.052780278, 0.0286256075, -0.00461609708, 0.0110104075, -0.0491803028, 0.00654672878, 0.0335610583, -0.0294965692, 0.030861076, -0.0368416794, -0.0211498532, -0.00808542781, -0.00344029861, -0.032544937, 0.0175353624, -0.0166353676, 0.0232837088, 0.00513504492, 0.0151547333, -0.0122587858, -0.00836123247, -0.0212514661, 0.00768623687, 0.0169692375, -0.0282481909, -0.00029009374, -0.00901445374, 0.0186240636, -0.0225579087, -0.0348094366, -0.00278344844, 0.0123603977, 0.0185514838, -0.00698946742, 0.00378505443, -0.00221732329, -0.00510964217, -0.0148934452, -0.0257949829, -0.0059007653, 0.00167569402, -0.00585358823, -0.0197853465, 0.0264191721, -0.00844832882, 0.0261869151, 0.00558867073, -0.0221950077, -0.00139353867, 0.00595882954, -0.0489190146, 0.0383513458, -0.0110249231, -0.000544804672, -0.0140515156, 0.00780962314, 0.0231385492, -0.00758462492, 0.0200176034, 0.00455077505, -0.0520254448, -0.0196111538, 0.0745543242, 0.0115837902, -0.0136232926, -0.0333288, -0.0105604101, 0.00615479611, 0.00594794238, -0.0276965816, 0.0350126587, 0.0248514395, 0.0143636102, -0.0158805344, -0.0106910551, 0.0498190075, -0.0234288704, -0.00625277916, -0.0385545716, 0.0225869399, -0.0115184681, 0.00432940526, -0.043577116, 0.027086908, -0.0227901638, -0.0456674248, 0.00814349204, -0.00367436954, 0.0176079422, -0.0264191721, 0.0325739682, 0.00546165556, 0.00279796449, 0.0359997489, -0.0302223712, 0.0247062799, -0.00579915335, 0.0112354057, -0.00996525306, 0.00964590069, 0.01721601, 0.0250111166, 0.0125128161, -0.0559157394, 0.0529254377, 0.0116055645, -0.0206998568, 0.0100160595, -0.00455803284, 0.00212659803, -0.0263465904, -0.000529381388, 0.0261724, 0.0201046988, 0.0368126482, -0.0409642309, 0.0450287201, 0.0294530205, 0.00868784264, 0.0545802675, 0.020757921, -0.00446005, -0.0155031178, -0.0527512468, -0.000958057877, -0.0111192772, 0.0340836346, 0.0222240388, 0.0268256199, -0.0122660436, 0.000189955841, -0.0293368939, -0.0297143105, 0.0216143653, -0.0168821402, 0.00777333323, 0.00860800501, -0.0164611768, 0.00685156556, 0.00206671958, 0.0159385987, -0.0418351926, -0.0208595321, 0.0330384821, -0.0100088017, -0.00586084649, -0.00479754712, 0.0181305185, 0.0183192268, -0.0409642309, 0.0222385544, 0.0435190536, -0.0110757295, -0.00546528446, 0.0265062675, 0.0223111361, 0.0430255085, 0.0284369, -0.0113297598, -0.0821026564, 0.0508351326, -0.0369287767, -0.0024223621, -0.00289957668, 0.0195240583, -0.0264482033, -0.00773704285, 0.052577056, -0.0384965055, 0.0461609699, -0.0126216868, 0.0267240088, -0.0158805344, 0.0328062251, 0.00521488301, 0.0371610336, -0.000297124963, 0.0116854031, 0.0120410454, -0.00174283062, -0.00443464657, -0.0442448556, 0.0348675, 0.0754833445, 0.0285820588, 0.0264627188, 0.0388739221, -0.0371610336, 0.0170127843, -0.00325884833, -0.00473222509, -0.00454351678, -0.0467996746, 0.014603124, 0.0194079299, 0.0439255, 0.0131007154, -0.00771526899, -0.0501093306, 0.0642769709, -0.00995799527, -0.041022297, 0.00794026721, -0.0108362148, -0.0207434036, 0.0139861936, 0.0221659746, -0.0051785931, -0.0152853774, 0.00224454096, -0.0198724419, -0.0454061367, 0.011852337, -0.00411166484, -0.0129555548, -0.0240675751, -0.00754833454, -0.012149916, 0.00751930242, 0.0366674885, 0.0100233173, 0.00313001848, 0.0380610265, -0.00578463729, -0.00719995, 0.0236756429, 0.0111773415, -0.0165047236, -0.00771526899, -0.0333578326, 0.0181160029, 0.036783617, 0.028741736, 0.00269453763, 0.0062346342, 0.016824076, 0.0108216992, -0.0488028862, 0.0265933629, 0.0407029428, 0.000826052739, 0.00656124484, -0.0415158421, -0.0249240212, 0.0725801438, -0.0125128161, 0.0135652283, 0.0432287306, 0.00064324151, 0.00443464657, 0.00902171154, 0.0384384431, -0.00742857764, -0.0483964384, 0.0206127595, 0.0016847665, 0.00190885772, -0.0328933187, -0.0124329785, 0.0165627878, -0.00708382158, 0.0180143919, -0.0227756482, -0.0364352316, 0.0280885138, -0.0210337248, -0.0371610336, -0.0386416689, 0.0166353676, 0.0338804089, -0.0322255827, 0.0309481714, 0.03231268, 0.00567213818, 0.0107418606, -0.0164176282, -0.0354191102, 2.21709652e-05, 0.0158660188, -0.0178256836, -0.000688604079, -0.049731914, -0.0165918209, 0.00522577, 0.000438202609, 0.025330469, -0.0227175839, 0.00354009634, 0.0464803241, -0.0164031126, 0.00331691257, -0.0354191102, -0.0224417802, 0.00912332349, 0.0391932763, 3.22074375e-05, 0.00870961696, 0.036783617, -0.0230514538, 0.000425274251, -0.0149805415, 0.0108725056, -0.00552334869, -0.0138047431, -0.0180579387, -0.00427497039, 0.0344900824, 0.00696043577, -0.00305199483, -0.0136015182, -0.0273046494, -0.0181014873, -0.0110176653, -0.024604667, 0.0227756482, 0.00969670713, -0.0439835638, -0.0273046494, 0.0152708618, -0.00975477137, -0.0494706258, -0.0304255951, -0.0137974853, 0.0264772363, 0.00329513848, -0.0121353995, -0.0125781382, -0.0119757233, -0.00527657615, -0.0305707548, 0.0215853341, -0.00902896933, -0.00154595706, -0.0156047307, -0.018566, 0.0249240212, 0.0228337124, 0.000348838308, -0.005712057, 0.0151547333, -0.00168385927, 0.00140533294, -0.0229643565, 0.00395924691, 0.0346062109, -0.0184498727, 0.038177155, 0.0284223836, -0.0215127543, -0.0376836099, 0.0236175787, 0.0121281417, -0.0229208078, 0.00588987861, -0.014269256, -0.00899993721, -0.0474964455, -0.0132603915, 0.0382642522, 0.0176079422, -0.02039502, 0.0155611821, 0.0291627012, 0.0290610883, -0.00931929052, -0.0427932516, 0.00427134149, 0.0444190465, 0.014370868, 0.0106692808, 0.0173466541, 0.0284369, 0.00958783645, -0.0467706434, 0.0563802533, -0.00845558662, -0.00213385606, -0.0309191402, -0.0430545397, 0.00831042603, 0.00723624, -0.0279288385, -0.00157317461, -0.00206853403, -0.00819429755, 0.0104370248, -0.0235014502, -0.0109668598, -0.019436961, 0.0134345843, -0.0332417041, 0.0615479611, -0.0456093624, 0.00852816645, 0.0631156936, -0.00135997043, -0.0305997878, -0.0134055521, -0.0091523556, 0.000406221981, 0.000531649508, -0.0324288085, 0.0255917571, -0.0428222828, 0.00338042015, 0.0327771902, -0.0026800218, -0.00644874573, 0.0307159163, -0.0301933382, 0.023443386, 0.0256788544, 0.00868058484, -0.0275659375, 0.0209321119, -0.0191466417, 0.0253740177, 0.011953949, -0.000266505202, -0.0532738231, -0.00935558, -0.014537802, -0.0417481, 0.0302223712, 0.0138918394, 0.0131297475, -0.0215272699, 0.0387287624, 0.0102338, -0.00497174, -0.0136305504, 0.0525480211, 0.0547544584, 0.00236248365, -0.0213530771, -0.0100378338, 0.015328926, -0.0449416228, -0.0388448909, 0.00377416727, 0.0242272504, -0.0208014678, 0.0226304885, -0.0231530648, 0.00639793929, -0.0203369558, -0.02145469, 0.0124692684, -0.030890109, 0.037944898, 0.010364444, -0.0193498656, 0.00531286653, 0.0326320305, -0.0105241202, 0.0518802851, -0.0208450165, -0.00696406467, -0.0173031054, -0.0129265236, 0.00406448776, 0.00632173, 0.0330094472, 0.0373932905, 0.0317610689, 0.00660116365, -0.0238933824, 0.0102047678, -0.037132, 0.00897816382, -0.0105676688, 0.0296562463, 0.0488028862, 0.0150821535, -0.0124910427, 0.00969670713, 0.0026292156, 0.00278889202, 0.0127015244, -0.020757921, 0.00322800176, -0.0157498904, 0.0164756924, -0.0489190146, 0.0231675804, -0.00332417036, 0.00455803284, 0.000253576873, 0.0150966691, 0.00253304699, -0.0115402425, 0.0294965692, -0.00498988479, 0.00146611885, -0.0132821659, -0.0261433665, -0.00293405214, -0.0218756553, -0.0180579387, 0.0268982, -0.0461029075, -0.0447093658, 0.0272320695, 0.00559592899, 0.022485327, -0.00223728293, -0.0283643194, -0.00084555865, 0.022877261, 0.0272465851, 0.0268401355, 0.0270723924, -0.00607495802, -0.0130644254, 0.00014447984, 0.0443319492, -0.0351868533, -0.0043112603, -0.000869600801, -0.00287780259, 0.00439835666, 0.00897816382, 0.0127668465, -0.0241691861, 0.00996525306, -0.0121426573, -0.0605028048, 0.0086297784, 0.00268727983, -0.0138337752, -0.0113297598, -0.0200030878, 0.0152563453, -0.0262449794, 0.0152563453, -0.00336408964, 0.0114313718, 0.0282772239, -0.00255119195, 0.0117289508, 0.00151511049, 0.0331836417, 0.0194659941, -0.00622737594, 0.0106983129, 0.0126434602, 0.00980557688, 0.0222385544, -0.0108652469, 0.0094862245, 0.00392658543, -0.0188563205, 0.0150966691, 0.00741043221, 0.0156773105, -0.0118595948, -0.000150150168, -0.0364932939, 0.0198143777, 0.000997977, -0.0364352316, 0.00912332349, -0.00888381, 0.0305707548, -0.0322255827, 0.0142619973, -0.0185224526, 0.0144724799, 0.0159821473, 0.0175063293, 0.0494125597, -0.0292933453, -0.0208595321, -0.007301562, 0.0152708618, 0.0293659251, -0.00939187, -0.0483674072, -0.019306317, 0.0549576841, -0.0135797448, 0.0420384184, -0.000378097175, -0.0181885827, 0.00309372856, -0.00827413611, 0.0358545892, 0.0149079608, 0.017186977, 0.00581729831, -0.00576286344, -0.00402456895, -0.00853542425, 0.0147265103, -0.00124112039, 0.0223256517, -0.0130426511, -0.00802736357, -0.00281248055, -0.0177095551, 0.0204240512, 0.0134636164, -0.00548705878, 0.0126579767, -0.0228337124, -0.0128612006, -0.00610398967, 0.00820155628, -0.00308102695, -0.00648140674, -0.0142257074, 0.0211934019, 0.0113370176, 0.0445932373, 0.0210482404, -0.0202208273, 0.0346352421, -0.00781688094, 0.0122007215, 0.00813623425, -0.00810720213, 0.00973299704, -0.0253885332, -0.0152853774, 0.0176514909, -0.00577737903, 0.0140950633, -0.0205692127, 0.00068406784, -0.00784591306, -0.00554875191, 0.0213530771, 0.0268256199, 0.0356804, 0.114386305, -0.0029286088, 0.00338767818, -0.0147773167, 0.0167514961, -0.0122152381, -0.0409352, -0.0408771373, 0.00554875191, 0.00627092412, 0.0237337053, -0.0370739363, -0.0348965302, 0.00374513539, 0.02569337, 0.00784591306, 0.0273917448, -0.00468141912, -0.0236320943, 0.015328926, 0.0166498851, 0.0140805477, -0.0139934514, 0.000208441095, 0.0187837407, 0.0218611378, 0.00937735382, -0.0169982687, -0.0296562463, 0.00181268901, 0.0294239894, 0.0109305689, -0.0375384502, -0.0346352421, 0.00163940398, 0.0206417926, -0.0169111732, -0.0170998815, 0.026985297, 0.02569337, 0.0422706753, 0.0149224773, -0.0173611697, -0.0245901514, -0.0222675875, -0.00578826619, 0.0143273203, 0.00519310916, -0.0140660312, 0.0136232926, 0.0136378082, 0.0245466046, -0.00476851547, -0.0187401921, -0.00177549175, -0.0070366445, -0.0137902265, 0.00997251179, -0.0154740857, 0.00856445637, -0.0217740424, 0.00720720785, 0.0218901709, -0.0084338123, 0.0170127843, 0.0149369929, -0.0184208397, 0.0137829687, 0.0291627012, -0.00336227496, -0.0023225646, -0.0152563453, 0.022485327, -0.00287961704, -0.0132386182, -0.0138047431, 0.0400932692, -0.0211788844, -0.0116055645, 0.0295110848, -0.0162434354, -0.0241982192, -0.0304255951, 0.0156482793, 0.0102410577, -0.0213385615, -0.00622737594, 0.0130862, 0.0111120194, 0.022746617, -0.00698946742, -0.0462480672, 0.028509479, 0.0385836028, -0.0204385687, -0.00550883263, 0.0283062551, -0.00694954861, 0.0357094295, -0.00430037314, 0.00129464827, 0.00357094291, 0.00674632424, 0.00997977, -0.0190885775, -0.0242417678, -0.0131370053, 0.012781363, 0.018638581, 0.0413416475, -0.0269998126, -0.00939187, -0.0179272946, 0.00300844689, 0.00222095242, 0.0018507936, -0.0158369876, 0.0230224207, 0.0211353377, -0.0164466593, 0.0281175468, -0.0225433912, -0.013078941, -0.0268691685, -0.0285239946, 0.0152708618, -0.0256353058, -0.00405360106, 0.0305997878, 0.0347513705, -0.0152273141, -0.000227266573, -0.0132023273, 0.0205982439, -0.00626003696, -0.00567939598, -0.0126870088, -0.0212224331, 0.0031173171, 0.006771727, 0.0258675627, -0.00478666043, -0.00534915645, 0.0204240512, 0.0122733023, 0.006241892, 0.0168966576, -0.0264046546, 0.0135652283, -0.00784591306, -0.00732333632, -0.010132188, -0.0125345904, 0.00644874573, -0.0309481714, -0.0268691685, -0.0447964631, 0.00954428874, -0.0545512326, 0.010828957, 0.0102483155, 0.00427859928, -0.00398464967, -0.016490208, -0.0174772982, -0.0131007154, -0.0164756924, -0.019436961, 0.0143200615, -0.0295981821, 0.011852337, 0.0111773415, -0.0111120194, 0.0149369929, 0.0295546334, 0.0149079608, -0.0132894237, 0.00264373166, -0.0160111785, 0.021686947, -0.0493835285, 0.0016049284, 0.0210627578, 0.0035890881, 0.00512778712, 0.0293804407, 0.00555238081, 0.00299030193, 0.0098273512, -0.0487448238, 0.0305997878, 0.0131878117, 0.0292643122, -0.0123676565, 0.00247135386, -0.0118233049, 0.0216724295, 0.0144071579, 0.0166789163, -0.00722898217, 0.00485561136, 0.00957332086, 0.00450359797, 0.0330675133, 0.0078967195, -0.0110321818, 0.00791849382, 0.00833945815, -0.0468287058, -0.00477577327, 0.00261107064, 0.00564310607, -0.0138482908, -0.0152853774, -0.0126216868, -0.00773704285, 0.0100813815, -0.000773885753, 0.0206417926, 0.0118450793, -0.00453988789, 0.0256498214, 0.0304255951, -0.00863703713, 0.00409352, 0.0110684717, -0.0436932445, -0.0217159782, -0.0264917519, 0.0219917819, 0.0224127471, 0.0250256322, -0.0160692427, -0.0161418226, -0.00500440085, -0.00165029091, -0.0385545716, -0.00555600971, -0.00304655149, -0.00199051038, 0.00711648306, 0.0137974853, 0.0249095038, -0.0119249169, -0.0605608709, -0.01589505, -0.0217595268, -0.0144797377, -0.00156410201, -0.0397739187, -0.0268111043, 0.00381771545, 0.0217304938, -0.00889832526, -0.0035509835, -0.0211788844, -0.00486649852, 0.0067608403, -0.00819429755, -0.00478666043, -0.0179563276, 0.0231095161, -0.0259982068, 0.0182901956, -0.0219917819, 0.00176006847, -0.00615842501, 0.00947170798, 0.0565544479, 0.0123095922, -0.0142910294, -0.0144216744, -0.00806365348, -0.0342868604, 0.0116055645, 0.00987089891, -0.0201192144, 0.00373787736, 0.0194805097, 0.00835397467, 0.0138192587, -0.0124692684, -0.0134055521, -0.0468867719, 0.00767172081, -0.0127523309, 0.0109087955, -0.02145469, 0.0183337443, 0.0023606692, -0.00380682852, 0.00764994696, -0.0169402044, -0.0484835356, 0.0374223217, -0.0251272451, -0.0216579139, -0.0265062675, 0.0141531276, -0.0128539428, -0.00626003696, -0.0164611768, -0.0103717018, -0.0487448238, 0.00492456276, -0.0124112042, 0.0179563276, -0.0175353624, -0.00902896933, 0.0416900329, -0.0145813506, -0.0112281479, -0.052780278, -0.00133910356, 0.00303929346, -0.0166644, 0.0127595887, -0.010299122, 0.0172305256, 0.0153434416, -0.000309826486, -0.0159240831, 0.00880397111, -0.00739954552, 0.0041189231, -0.0270433612, 0.00312457513, 0.0138192587, 0.00606769975, 0.0477867648, 0.00649229344, 0.024865957, -0.00339675066, -0.0167079493, -0.0289594755, -0.0307739805, 0.0212224331, -0.017912779, -0.032544937, 0.0249530524, -0.00246591028, 0.0413706787, -0.0415158421, 0.0098200934, -0.0150531214, -0.00651406776, -0.0038540056, 0.00766446302, 0.0156337619, -0.00195059134, -0.000460657087, -0.0218321066, 0.041225519, 0.0224272627, -0.0195095427, 0.00944993459, 0.0267240088, -0.00416972907, -0.0229208078, -0.0153144095, -0.0174627826, 0.0213821102, -0.00872413255, 0.01721601, -0.0263030436, -0.0223546829, 0.0268691685, -0.0359997489, -0.0116781443, 0.00486649852, -0.0158515032, -0.00575923407, 0.0258530471, -0.00265643327, -0.0250691809, -0.0137031311, -0.0129192648, 0.0109886331, -0.0297288261, 0.00654672878, -0.0244449917, 0.00815075, 0.00373424822, -0.0174192339, -0.0113950819, 0.00285965763, 0.0242417678, -0.01019751, -0.00284514157, -0.0203369558, 0.0132313594, 0.000712192617, 0.00877493899, -0.0302804355, -0.0227030683, 0.00698583852, -0.00626729522, 0.0192772858, -0.0108870212, -0.00258022407, -0.0238353182, -0.0264191721, -0.0394545645, -0.00757736666, -0.024996601, 0.0231385492, -0.0112208901, 0.0204821154, 0.0150966691, 0.00841203798, 0.00501165865, 0.00926122628, -0.0155466665, -0.0160256959, -0.0236756429, 0.0189869646, -0.0118087893, -0.0173031054, -0.0111047616, 0.00442013051, -0.0319642946, 0.00994348, 0.0323707424, -0.00883300323, 0.0224998444, 0.0253885332, -0.00954428874, -0.0199450236, -0.0166353676, -0.0197417978, 0.00304292236, -0.0051858509, 0.0108870212, 0.00332598505, 0.0051858509, -0.0181595515, -0.0420674495, 0.0092902584, 0.00432940526, 0.0177531019, 0.0329513848, 0.00662293797, -0.00653947052, 0.00864429493, 0.004652387, -0.00568302488, -0.0255917571, -0.00661567971, 0.0160256959, 0.00777333323, 0.0152127976, 0.0129047493, -0.00125382189, -0.00605318369, 0.0621286, -0.00989993103, 0.00958783645, -0.00641971361, -0.00626003696, 0.000282835739, -0.00238788663, -0.0113660498, -0.0120120132, -0.0165918209, 0.0380610265, 0.00119847956, 0.0169692375, -0.0153144095, -0.0330384821, 0.00702212844, -0.000334549084, -0.026622396, -0.00441287272, -0.0314417183, -0.0193498656, 0.00135543419, 0.0213530771, 0.0281320624, -0.00545802666, 0.0247498285, 0.0203805044, 0.00744672259, -0.0114821782, -0.0120265298, 0.000630993629, 0.000848280382, 0.00692414539, 0.0070293867, 0.00311550265, 0.0581512079, -0.00290502026, 0.0206708238, -0.0112934699, 0.0157208592, -0.00638705259, 0.0193498656, 0.00512052886, 0.00216833176, 0.00074167829, 0.015430538, -0.00388303748, -0.000486740581, -0.0135507127, -0.0152998939, -0.000235205021, 0.00595882954, -0.00858623069, -0.00296489871, 0.0204095356, 0.00890558306, 0.0103426697, -0.0344900824, 0.0339094438, -0.00300844689, -0.00905800145, -0.0255917571, -8.7209577e-05, -0.0273627136, 0.0049100467, 0.00192337378, -0.0359416865, 0.00127015251, -0.022485327, -0.0345191136, -0.0262449794, -0.00852816645, -0.0059697167, -0.00148607837, 0.0238353182, -0.0167224649, 0.00979106128, -0.00492819166, -0.0212804973, -0.00735599734, -0.0129845869, 0.0167660117, -0.0221659746, -0.00361993443, -0.0026292156, 0.00724712713, 0.0111410515, -0.00989267323, 0.00772978505, -0.0128321694, 3.16120531e-05, -0.0082378462, -0.0222095232, -0.0158515032, 0.020496631, -0.0311223641, 0.00693503255, 0.0114458883, -0.014269256, 0.00181087456, 0.00451811356, -0.00267276377, 0.0256062746, -0.00179998751, -0.000146747974, 0.00398827856, 0.00796929933, 0.00382497348, 0.0175643936, 0.00393021479, 0.0140369991, -1.30133922e-05, -0.00545802666, 0.0219337195, 0.0142111918, -0.00299211638, -0.00847736094, -0.0168385934, -0.00547980051, 0.0062382631, -0.0301933382, 0.0253595021, 0.0110539552, 0.00349291926, 0.0277401302, 0.011953949, -0.000156387527, 0.0098200934, -0.0141894175, -0.00412981026, -0.0153869903, 0.00221006526, 0.00541084958, 0.00021569911, 0.0148426387, 0.0173466541, -0.0239659622, 0.00426408323, 0.00950799882, 0.00108053687, -0.0072979331, 0.0101757357, -0.0166498851, 0.0174627826, 0.0123603977, -0.0123966886, -0.0449125916, -0.00689511327, -0.00976928696, 0.0267675556, 0.00668826, -0.0147700589, 0.00757010886, -0.00879671331, 0.0299610831, 3.24626e-05, 0.0260853022, -0.023806287, -0.0104660559, 0.00347114517, -8.38499091e-06, 0.0305707548, 0.0233272575, -0.0183337443, -0.0228917766, -0.0041152942, -0.0070257578, -0.00564310607, 0.0087604234, 0.0291917324, 0.005182222, 0.0157063417, -0.0072906753, -0.00182448328, -0.000408263295, 0.00189978525, 0.0351287872, 0.0257078856, 0.00699672569, -0.0423868038, 0.00974025484, -0.0195821226, -0.0130644254, 0.006572132, -0.00668100221, 0.0124620106, -0.0110539552, 0.0331836417, 0.0135071641, -0.00199595396, -0.00802010577, -0.0143345781, 0.00101975095, 0.0123313656, 0.0165918209, 0.00550157484, 0.000410531415, -0.0282627065, 0.00520762522, 0.0267675556, -0.00720720785, 0.0250111166, 0.000145727317, 0.00669188891, 0.0043040025, -0.0244159587, -0.00566125102, -0.000854631187, -0.0131370053, 0.0026636913, -0.0299030188, -0.00519310916, 0.000684521452, 0.00300663244, -0.00815800764, -0.0353900753, -0.0131224897, -0.0129337814, -0.0137611944, -0.0116708865, 0.0383223146, -0.00825962052, -0.0141095798, -0.0132531337, -0.00344029861, -0.00361630553, 0.00539270462, -0.00877493899, 0.0250982121, 0.00581004051, -0.0102846064, -0.00111864146, 0.0364062, 0.00151692494, -0.0101829935, 7.84772783e-05, 0.00670277607, 0.00185442262, -0.0119612077, 0.00397013361, 0.00786043, -0.00608584471, -0.00781688094, -0.00303747901, 0.00117307657, 2.97408478e-05, 0.0242417678, -0.017549878, -0.00874590687, 0.0225433912, -7.27502484e-05, -0.0230659693, 0.00293405214, -0.0243143477, -0.0105096046, 0.00833945815, -0.00939187, -0.00311550265, -0.0295981821, -0.0226014555, -0.0062310053, 0.0178547148, 0.00159585581, -0.00567939598, -0.0241982192, 0.031586878, -0.0192192215, 0.0215417854, -0.0157353748, 0.00456166174, 0.00101884373, 0.00745398039, -0.0196547024, -0.00806365348, -0.0110539552, -0.00704753166, 0.00945719238, -0.0188708361, 0.00897816382, -0.0138628073, -0.00468504801, 0.0154015059, -0.0198288951, -0.00516044814, -0.00473948335, -0.00937735382, -0.0167224649, -0.0194950253, -0.00207034848, 0.0119902389, 0.00252215983, -0.000202657364, -0.0183192268, -0.000757555244, 0.0112499222, 0.0366094224, 0.0136160348, -0.000257432694, 0.00505520683, -0.00377053837, 0.00375239342, -0.000202770767, -0.0299610831, 0.00458706496, 0.039338436, 0.00925396755, 0.00933380611, -0.0119612077, 0.0277256146, 0.00780962314, -0.0100305751, -0.0193643812, -0.0217595268, 0.00525843119, -0.00199051038, -0.00194151874, -0.0244304761, 0.0126507189, -0.00458706496, 0.00325521943, -0.00635439157, -0.0160402115, -0.0286691561, -0.0180434231, -0.024967568, 0.00558141293, -0.00573746, -0.0125781382, 0.0152127976, -0.0217595268, 0.0313546211, -0.0212514661, -0.0040427139, 0.0257804655, -0.00856445637, 0.0284949634, 0.00095170713, 0.000850548502, 0.0238933824, 0.0034203392, 0.0060495548, 0.00516044814, -0.0100233173, -0.00293586683, 0.00888381, 0.00939187, -0.0175353624, -0.0411674567, -0.00832494255, -0.00836849, -0.00220280723, -0.00807817, -0.00498262653, 0.00708382158, -0.0114023406, -0.000392613205, 0.00560318679, 0.0314126834, -0.0102410577, 0.0127087831, 0.0157208592, 0.0109886331, -0.0230224207, -0.0263611078, 0.0320804231, 0.0147918332, -0.0121571738, 0.0393094048, 0.0254030488, -0.00516770594, -0.0114458883, 0.0218611378, 0.0152853774, 0.000920860562, 0.00216833176, 0.00681890408, 0.00695317751, -0.0118233049, -0.00865155272, -0.0355642699, -0.0163015, -0.0395416617, 0.0173756853, -0.0011358792, -0.00757736666, -0.0309481714, -0.0154595701, 0.00810720213, -0.00460158102, 0.016257951, -0.0269272327, 0.00133003108, 0.0314126834, 0.00259655458, 0.025228858, -0.0157353748, -0.0147047369, 0.00887655094, 0.00931929052, 0.00452174293, -0.00112499215, -0.00388666661, 0.0121862059, 0.0102192843, 0.0173902027, 0.0309481714, -0.00671366323, 0.00432214746, 0.0108507313, -0.00838300586, 0.0155031178, -0.0224708114, -0.0174337495, -0.0248078927, 0.00847736094, 0.0222095232, 0.00221187971, 0.0146466726, 0.00567213818, 0.00490278844, 0.0111265359, -0.00278707733, -0.0150386048, 0.00939912815, -0.00188164017, -0.0089636473, 0.0479899906, 0.00475762831, 0.0104225082, 0.0143999, -0.0054507684, 0.0131297475, -0.0204530843, 0.0137684532, 0.00713099865, 0.019698251, 0.0211934019, 0.0146466726, 0.005182222, 0.00323888869, -0.0145523185, 0.0145740928, -0.00553786475, -0.00107237161, -0.0209030807, 0.0134708742, 0.0140587734, 0.00423868047, 0.0399771407, 0.00707656378, -0.0176805221, 0.0146829626, -0.00253486144, 0.00942090247, -0.0317030065, 0.0143273203, 0.0245320871, -0.0127160409, 0.000639612495, 0.00682616234, -0.0109015368, -0.00872413255, 0.00580641115, -0.00619471492, 0.0322546139, -0.0186821278, 0.0146902204, 0.0204385687, -0.00398827856, 0.0172595568, -0.013311198, -0.0293368939, -0.0235304814, -0.00685519446, -0.00633624615, -0.0174627826, 0.0121789481, -0.00217921869, -0.0047213384, -0.00215925928, -0.00959509425, 0.0240675751, -0.00909429137, -0.0072906753, 0.0181305185, 0.0160402115, -0.0109015368, 0.00124202762, 0.00311913155, 0.0103281541, 0.0114458883, 0.0197563153, -0.00716366, 0.0136232926, 0.00696769357, 0.0018344631, 0.0206708238, 0.0113007277, -0.0155031178, -0.0132603915, 0.0277256146, -0.0101902522, 0.0119612077, 0.0073705134, 0.00474311225, 0.00383586041, -0.00233889511, -0.000760730589, -0.0046451292, 0.0064306003, 0.0121353995, -0.00781688094, -0.00647414848, 0.0135071641, -0.00816526543, -0.00175281044, 0.00095170713, -0.0258675627, -0.00586810429, -0.00153234822, 0.0398029499, -0.0256062746, -0.00587536255, 0.00506972289, -0.0062346342, -0.00155230775, 0.00664834073, 0.000432305475, -0.00612576399, 0.00526931835, -0.00696406467, 0.00318808272, -0.0084265545, 0.00755559281, -0.000696315721, -0.00485561136, -0.000797474291, -0.0195530895, 0.000355642696, -0.00639793929, -0.000948078115, -0.000439336669, -0.0057156859, 0.00989993103, -0.0219917819, 0.0145740928, -0.00251853094, 0.00139444601, -0.0135289384, 0.00937009603, 0.0193498656, 0.016519241, -0.0157498904, 0.0184789039, -0.023544997, 0.0019270028, -0.0292788297, 0.0164466593, -0.0229643565, 0.0260707866, 0.0037777964, -0.00566850882, 0.0079039773, 0.0164031126, 0.00132640207, -0.0170998815, 0.00473585399, 0.00976202916, 0.00926122628, -0.0125563648, 0.00526206, 0.0051785931, 0.0255191773, -0.00103426701, -0.00694591971, 0.00771526899, -0.01933535, 0.0222966187, -0.00917413, -0.00244050729, 0.00778784929, -0.00259292545, 0.00255663553, -0.00453625899, 0.00615116674, -0.00229353248, 0.00424230937, 0.0140878055, -0.0141603854, 0.0355352387, -0.0114168562, -0.00436206628, -0.00992170535, -0.00814349204, 0.00288324617, 0.00608947407, -0.00670640497, 0.00674995314, -0.00779510709, -0.0231675804, -0.00062146748, -0.0112063736, 0.0119031435, -0.00367255509, 0.00204131636, 0.00742131937, -0.0330965444, 0.010792667, -0.00164756924, 0.0165337566, -0.00582092721, -0.0167079493, 0.00138355896, 0.00358183, 0.0109378276, -0.0124547519, -0.00340763759, -0.0138192587, -0.00817252416, -0.00721446611, -0.00285965763, 0.00305925286, -0.00207760651, -0.0132676503, 0.000118396354, 0.0106402487, 0.00198688125, 0.00881848671, -0.00696043577, -0.0196256693, -0.00613302179, -0.0018027093, 0.00947896671, 0.000345889741, 0.00165664172, 0.0124112042, -0.0194079299, -0.019698251, 0.00426771212, -0.00708019268, -0.0241401549, -0.0135361962, 0.00665922789, -0.0101612201, -0.00131370057, -0.00639068149, -0.00945719238, 0.0211063046, -0.0119104013, 0.0223692, 0.0267675556, -0.020728888, 0.0110829873, -0.0101031559, 0.00244957977, -0.0417771302, -0.00901445374, 0.0191466417, -0.0154595701, 0.0199159905, 0.020728888, 0.0019270028, -0.00256389356, -0.00311005907, 0.00274171494, 0.00287598814, -4.70282475e-06, -0.0049100467, -0.0197417978, -0.0118015306, 0.0103499284, 0.0196401868, -0.00365441013, 0.00847010221, -0.00265824771, -0.00249131327, 0.0174772982, 0.00492456276, 0.0118813692, -0.0105821844, -0.0320804231, 0.0073741423, -0.0200176034, -0.000993440626, 0.0109886331, -0.0211208202, 0.00835397467, 0.027115941, -0.00987089891, 0.0211643688, 0.0149515094, 0.0105967009, -0.0185514838, 0.0065031806, -0.0134491, -0.018638581, -0.00824510399, 0.00700035458, 0.0196837336, -0.0094934823, 0.0428803489, -0.0056322189, -0.0177095551, -0.00261832867, -0.0121136252, -0.0183047112, 0.00758462492, -0.0144942543, -0.00582455611, 0.0154450545, 0.0023806286, -0.00550883263, -0.000207647245, 0.00705116056, -0.0166208521, 0.00432577636, -0.00151057413, 0.0171143971, 0.00770075293, 0.013674099, 0.00181268901, 0.00800558925, 0.00222276687, 0.00725438492, -0.00911606569, 0.00512778712, -0.0194079299, -0.0241982192, -0.00643422967, -0.0252578892, -0.00171198405, 0.0234869346, 0.00450359797, 0.00962412637, -1.43388306e-05, -0.00400642399, 0.00103245256, 0.0051785931, -0.00286147208, 0.00822333, 0.00340400869, 0.0117289508, 0.0158224702, 0.0135071641, -0.0109886331, 0.0207434036, 0.0356223322, -0.0334739611, 0.00907977577, 0.0102338, -0.0312384926, -0.0207434036, 0.00617657, -0.0148571553, 0.0248949882, 0.00257296604, 0.00935558, -0.00102065818, 0.00571931526, -0.00886929315, -0.00799107365, -0.00454714568, -0.0045798067, 0.0137757109, -0.00696769357, -0.00681164628, -0.00704027386, -0.00362537801, -0.00393021479, -0.000417789444, -0.000901354651, -0.00609673187, 0.0113442764, 0.0169692375, -0.00446730759, 0.0028179239, -0.00447819475, -3.18955706e-08, 0.00550157484, 0.00112952839, 0.0185369682, -0.00412981026, -0.00947170798, 0.0396577902, 0.0101031559, 0.00964590069, 0.0128539428, 0.0143128037, 0.00434755068, -0.00700035458, 0.00933380611, 0.0111483093, 0.00537818857, 0.00628544, 0.00369795831, 0.00498988479, -0.000174872781, 0.0134708742, -0.00402094, 0.00748301251, 0.00535641424, -0.00812171772, -0.0048374664, -0.00226812949, 0.00792575162, -0.0152273141, -0.00492819166, 0.00429674424, -0.0120628197, -0.00381408632, 0.0040499717, -0.00289231865, -0.0040427139, 0.00831042603, -0.0145450607, 0.019204706, -0.00529835047, 0.00121027383, 0.0110757295, -0.0368126482, 0.00995073747, -0.00573746, 0.0089563895, 0.0244014431, 0.00725801429, -0.0104950881, -0.00285965763, 0.00718906289, -0.00642334251, 0.00758462492, 0.00334957358, -0.00714551471, -0.00873864908, -0.0309772044, -0.00440561445, -0.00656487374, -0.00263828808, -0.013543454, 0.0140587734, -0.00139988947, 0.000562949746, 0.00765720475, 0.000352240488, -0.025562726, -0.0309191402, 0.0172595568, -0.0072943042, 0.00573383132, 0.00802736357, 0.0260853022, 0.0161418226, -0.00658664759, -0.00765720475, 0.00278526288, -0.0164756924, -0.00351469335, -0.00122388266, -0.0151402177, 0.0149805415, 0.0113079865, 0.0075628506, -0.0181014873, 0.0130281355, -0.00780962314, -0.00312638958, 0.000901808264, -0.00632898835, 0.0154160224, 0.0265643317, -0.0189869646, 0.00971848052, -0.0188127719, 0.00918138772, -0.000124180078, 0.0146176405, 0.0198579263, 0.00406448776, -0.023806287, -0.0103281541, -0.00279615, 0.0136378082, -0.00942090247, 0.00151148147, 0.00375965121, 0.0171434302, -0.0139861936, -0.0145450607, -0.000996162416, 0.0127523309, 0.0156918261, 0.00451085577, 0.0528673753, 0.0113297598, -0.00718906289, 0.014073289, 0.00309191411, 0.0185950324, 0.00668100221, -0.0244449917, -0.0167224649, -0.00219010585, -0.00460158102, -0.00045045049, -0.0105749266, -0.0161127914, 0.0225579087, 0.00617657, 0.0190450288, 0.00886929315, 0.0109450854, -0.0181595515, 0.0214401744, 0.000470410043, 0.0243288632, 0.000188481557, -0.0152708618, 0.0339675061, 0.00643785857, -0.0104950881, -0.00912332349, -0.0051060128, -0.00533101149, -0.0211643688, -0.0144216744, -0.000715821632, -0.0168676246, -0.000566125091, 0.0159821473, 0.00441650162, -0.0205546953, -0.010662023, -0.00120664481, 0.00776607497, 0.00759188272, 0.0125345904, -0.0152418297, 0.0193934143, -0.0152563453, 0.00971848052, -0.0139499027, -0.00194696232, -0.0161708556, 0.00103426701, -6.36210316e-05, 0.0148353809, 0.00820155628, 0.00355642685, -0.0159676317, -0.0190014802, -0.0108434735, 0.0316159092, -0.000732152199, 0.0141603854, -0.000709470885, -0.0254175663, -0.00556689687, 0.0241401549, 0.00105331931, -0.0135071641, -0.0100886393, 0.00700398348, 0.00443101767, -0.00391569873, 0.00734511, -0.00899267942, 0.00882574543, 0.0168385934, -0.000704934646, -0.00546528446, 0.0108144414, -0.0181595515, -0.00449271081, 0.00527294725, -0.0248078927, 0.0201917961, -0.00394110149, -0.000258566753, 0.00501165865, 0.0182611644, -0.0060495548, 0.00626729522, 0.0182321314, -0.0356513672, 0.00643785857, -0.00298485835, 0.0240530595, 0.00722898217, 0.0150095737, 0.00856445637, 0.0120700775, 0.00742857764, 0.0024223621, 0.00430037314, 0.00835397467, 0.0136450669, 0.0078967195, 0.00799107365, -0.00520762522, 0.0250401478, -0.0123023335, 0.0054362528, -0.00348929036, -0.00549068768, 0.00262195757, -0.000645963242, -0.00395924691, 0.00339130708, 0.0209901761, 0.0129628135, -0.00796204153, 0.0105749266, 0.0152563453, -0.000851002173, 0.0196256693, -0.00125019299, -0.00955154654, -0.00116309675, -0.0123531399, 0.0100886393, -0.00308102695, -0.0118378215, -0.00826687831, -0.0180869717, 0.0132531337, -0.0108144414, -0.0118087893, 0.00921767764, -0.018609548, 0.0178111661, -0.0157353748, 0.00549068768, -0.00930477399, -0.00268183625, -0.00801284797, -0.0107200872, 0.0129410392, 0.0286546405, 0.00330965454, -0.00327336439, 0.035825558, 0.00932654832, 0.0187837407, -0.0132966815, 0.0082305884, -0.0161418226, 0.00975477137, 0.00642334251, 0.013144264, 0.00343304058, 0.00715277297, -0.00470319297, -0.00446367869, 0.00905800145, 0.00873139128, 0.0153724737, 0.0354191102, 0.0166063365, 0.0287998, 0.0112789543, -0.00273990026, -0.00781688094, -0.00814349204, -0.000324342516, 0.00584270153, 0.0173902027, -0.00886929315, -0.00992170535, -0.0063108434, -0.014733769, 0.00923945196, 0.00609310297, 0.0159676317, 0.0134853907, -0.00169656076, -0.0313546211, 0.0030828414, 0.00587899145, 0.00561044505, 0.00109323836, 0.00149242918, 0.0083322, 0.000840115128, 0.00993622094, -0.0219337195, 0.00163486763, -0.0212369487, -0.00133819634, -0.00195240579, 0.0273627136, -0.0092975162, -0.00135089783, 0.0112063736, -0.0182321314, -0.0116781443, -0.00387215056, 0.00966041721, 0.0235595144, -0.00128920481, 0.0327191278, -0.0174772982, -0.0138555486, 0.0163595639, 0.0147773167, 0.0166644, -0.0157208592, 0.00431851856, -0.0196401868, -0.0115475, 0.0170563329, 0.0202208273, 0.00179454405, 0.00749027077, 0.0310062356, 0.0082886517, -0.00871687476, 0.000290547381, 0.0150966691, 0.00206853403, -0.0197708309, 0.0332126729, -0.00481206318, -0.000797474291, 0.0256498214, -0.00104333949, -0.00137720816, -0.00466690306, -0.0118160471, 2.98259019e-05, 0.0288433488, -0.0155466665, 0.0104515404, -0.00509875501, 0.011090246, 0.0406739116, 0.00186168065, -0.0482512787, -0.0139136128, 0.00299211638, 0.00770075293, 0.0094862245, -0.00353283831, -0.00508061, 0.01231685, -0.0361158773, 0.00910155, -0.0174192339, -0.0186676122, -0.0105386367, -0.00274352939, -0.0132603915, 0.0201046988, -0.0073705134, -0.01589505, -0.00537455967, -0.0073777712, 0.0283643194, -0.0206708238, 0.00257115159, 0.0206417926, 0.00213385606, -0.0162434354, -0.00219373475, 0.00604229653, 0.00132186583, -0.000931747549, 0.00449633971, 0.0273627136, 0.00275986, 0.0115112104, -1.71810807e-05, -0.000466781028, -0.00240240269, 0.0054362528, 0.0111846, 0.00338042015, -0.0200901832, 0.00148607837, -0.007101967, 0.0233853217, 0.0171724614, 0.00377416727, 0.00532012433, -0.00301570492, -0.00184172112, -0.000133366, -0.00576286344, 0.0177676193, -0.0156192463, 0.00931203179, 0.0129845869, 0.0176660065, 0.00382497348, 0.00389755354, 0.00552334869, -0.0170998815, 0.0113660498, -0.0377997383, -0.00268909428, 0.0129700713, -0.00123749138, -0.00522577, -0.00312820403, 0.00589713641, -0.00330965454, 0.0167514961, 0.018943416, -0.0111555681, 0.0199740548, 0.0101829935, -0.0333288, -0.00443827547, -0.00550520374, 0.00497174, 0.0174482651, 0.0151547333, 0.000159222691, -0.0128757171, -0.0236030612, 0.00776607497, -0.0245611202, -0.00697132247, 0.0104007339, -0.00854268298, -0.0217595268, 0.0027217553, -0.00950074, 0.00208305, -0.00886929315, 0.015067637, 0.00515319, -0.0200176034, 0.00695680641, -0.00571931526, -0.00626366632, -0.00425319606, -0.014733769, -0.00471045123, 0.0111047616, 0.0179563276, -0.00854268298, -0.010894279, -0.00618019886, -0.0135652283, -0.0033822346, 0.0185805168, 0.00801284797, 0.0158224702, -0.00900719594, 0.00598060386, 0.00721083721, 0.0153724737, -0.0187692251, -0.000612394942, 0.0143781258, 0.0150240893, 0.016490208, 0.00435117958, -0.0223401673, -0.00128376123, 0.000275124097, -0.0105023468, 0.000293495948, 0.00798381586, -0.0146974782, 0.0147265103, 0.00263284473, -0.013311198, -0.0112281479, 0.00860074628, 0.000315723621, -0.00134817616, -0.00940638594, 0.00960961077, 0.00326429191, 0.022746617, -0.0018634951, -0.00791123509, -0.00204857439, -0.0052511734, 0.0370449051, -0.00353465299, -0.00694229035, 0.00986364111, 0.00255663553, -0.0229208078, -0.00284695602, -0.00451811356, 0.00287961704, 0.0190014802, 0.00624915026, -0.0101031559, -0.00667737285, 0.0191466417, -0.00692777429, 0.0202063117, -0.00244232174, 0.00424956717, -0.000304156158, 0.0086297784, 0.0078967195, -0.000133592825, -0.0138555486, 0.0132241016, -0.00250764377, -0.0319062285, -0.00562133174, 0.0152418297, 0.00226812949, -0.0398319811, 0.0150386048, -0.00643785857, 0.0121934637, 0.0147555424, 0.000622828316, -0.00309191411, -0.00855719857, -0.00146974786, 0.00877493899, 0.00981283467, -0.0164031126, 0.0123749143, 0.00348384678, 0.00937009603, 0.00946445, 0.000725801394, -0.00840478, 0.00153507, -0.00619108602, -0.0143926423, -0.0169982687, -0.00524391513, -0.0036090475, -0.00422053505, -0.0184789039, -0.0175934266, 0.00925396755, 0.000503071118, -0.013209586, 0.00521125412, 0.0178692304, 0.00374513539, 0.00558141293, -0.00330058183, -0.00375965121, -0.00407174602, 0.0240385421, 0.000550701807, 0.0247207955, -0.0064306003, 0.0223111361, 0.0138700651, -0.0208305, -0.0205837283, 0.0040463428, 0.00229716138, -0.0195240583, -0.0209611449, -0.0338804089, -0.00844832882, -0.00681164628, -0.0108579891, -0.00382860238, -0.00825236179, 0.0102700898, -0.0165627878, -0.00102247274, 0.0296997931, -0.00442738878, 0.0107781505, 0.00826687831, 0.0116563709, -0.0239224155, -0.0100596072, -0.00683342, -0.00906525925, -0.00409352, 0.0184934195, -0.00523665734, -0.00864429493, -0.00333687197, -0.0117507251, -0.0115402425, 0.0147265103, 0.00142257079, 0.0122805601, 0.000540722045, -0.0269562639, -0.000583362882, 0.00166934321, -0.0242127348, 0.00975477137, -0.0667156652, -0.0244014431, -0.0178692304, 0.022485327, 0.00267820712, 0.0266514271, -0.0164321437, -0.00142892147, -0.0113297598, 0.0152563453, -0.022383716, 0.00393747259, 0.00157226727, 0.0059697167, -0.00336046051, 0.00162216614, 0.0197127666, 0.0113660498, 0.00530197937, -0.0312384926, -0.00554512301, -0.00481206318, 0.0211208202, 0.000212183513, -2.72459038e-05, -0.0325159021, 0.0125273326, -0.0254901461, -0.000320033054, 0.0193498656, -0.000914963428, 0.00256570801, 0.012948297, -0.00526568945, -0.00865155272, -0.000885931368, 0.00440198556, -0.0310352687, -0.00474311225, -0.0243869275, -0.00824510399, -0.00820155628, -0.0149515094, -0.00317901024, 0.00970396493, 0.0303094666, 0.00974025484, 0.0334159, 0.000831949874, 0.0144289322, -0.00523665734, 0.0135216806, -0.0157789234, 0.00890558306, 0.0130208777, -0.00708019268, 0.000733059424, 0.0173902027, 0.0122079793, 0.00833945815, -0.000921767787, -0.00101340027, 0.00469956407, -0.00163214596, 0.0164321437, 0.0131079732, -0.025330469, -0.0131297475, -0.00237699971, 0.0210337248, -0.0076426887, 0.00249312795, -0.00736325514, -0.0165773034, 0.00970396493, 0.00528746331, 0.00852090865, -0.00462698378, 0.0202063117, 0.0271740053, 0.00260744151, -0.000448636, 0.0422997065, 0.00333687197, 0.00583907217, 0.0172595568, -0.00304473704, -0.00738865836, -0.00686971052, 0.0266078804, -0.013311198, 0.00515319, -0.0175208468, 0.0366965197, -0.00854268298, 0.00487012742, 0.00362356356, 0.00636164937, -0.00731970742, 0.000156387527, -0.00183355587, 0.00845558662, 0.00889832526, -0.021556301, 0.0376545787, 0.00339675066, -0.00463787094, 0.00618382823, 0.00978380349, 0.0154450545, 0.0244740229, -0.00888381, 0.0180579387, 0.0016339604, 0.0372481272, -0.0200611502, 0.0106837964, -0.0100741237, 0.00485561136, 0.00468867691, 0.00998702738, -0.0384094119, -0.0177821349, 0.00773704285, -0.00754107675, -0.0281175468, -0.0129845869, 0.011489436, -0.00725438492, -0.0150531214, -0.0174627826, -0.00999428518, -0.00579552446, -0.017578911, -0.0197998621, -0.0104007339, 0.00395924691, -0.010727345, -0.0131515218, -0.000215245484, 0.00156228757, -0.0151692498, 0.00905800145, -0.0109305689, -0.0113515342, 0.00575923407, 0.0144942543, -0.00872413255, -0.00277619041, -0.00375602231, -0.0197272822, 0.00852816645, 0.00898542162, 0.0060459259, -0.0187982563, -0.00608221581, 0.0130063612, 0.00551246153, -0.0195821226, -0.00195059134, -0.00252760341, 0.0130426511, 0.000319352635, 0.00399190793, 0.00431851856, 6.98158601e-06, -0.0126870088, -0.0158224702, -0.0124039464, 0.00767897908, 0.00663745403, 0.0131224897, 0.0109305689, 0.018566, 0.00674632424, 0.00289776223, -0.00184172112, -0.0118595948, 0.0207434036, 0.0020195425, -0.0017482742, 0.0169837531, 0.0115547581, 0.0171289127, 0.016490208, -0.00918864552, 0.00897816382, 0.0317320377, 0.0154160224, -0.00907251798, 0.0012383986, 0.000198914946, -0.00757010886, -0.00617294107, -0.0230659693, 0.00355824153, -0.0153869903, -0.0078967195, -0.0102918642, 0.00164484745, 0.00620197318, -0.0084338123, -0.000612848555, 0.00864429493, 0.0232546777, -0.0122152381, -0.0110612139, 0.0100886393, -0.00713099865, 0.0123749143, -0.030164307, -0.013441842, -0.0190014802, -0.010132188, -0.000578826643, 0.0212224331, -0.0157498904, 0.0257949829, -0.00271449727, 0.00376328034, 0.0233998373, 0.00926848408, 0.0250546653, 0.000283062545, -0.00422053505, -0.01827568, 0.00675358204, 0.0133402301, -0.00831042603, 0.0282481909, 0.00318626827, 0.0282191597, 0.00636164937, -0.00120120135, 0.00704027386, -0.00824510399, -0.00159041234, 0.00577737903, -0.0112499222, 0.0164031126, 0.0125273326, 0.00188526919, -0.0188563205, -0.00247316831, 0.0101612201, 0.0178982634, -0.00906525925, -0.00984912552, 0.0270578768, 0.000176573871, 0.00713462802, -0.0142982882, 0.0151257012, 0.0112789543, -0.00119122153, 0.00527294725, -0.00370158721, 0.00202135695, -0.00860074628, 0.0176514909, 0.00767897908, 0.010132188, 0.0155321499, 0.012251528, -0.00379594136, -0.0201772787, -0.00725801429, -0.0213966258, -0.000349518756, -0.000877312443, 0.00361812, -0.000723986886, -0.0154886022, -0.00381408632, 0.0272030365, 0.00626003696, -0.0271304566, 0.00621648924, 0.011090246, -0.00801284797, -0.0232256446, -0.0122878179, -0.00369070028, 0.0262304638, 0.00704753166, -0.00592616852, -0.0136523247, -0.00444190484, -0.010132188, -0.0239224155, 0.0057810084, -0.0308320448, 0.0115402425, -0.00114313723, -0.0267675556, -0.00670277607, 0.00629632734, 0.0222095232, -0.00287961704, 0.00787494518, 0.00744672259, -0.00680075912, -0.0106547652, -0.00547617162, -0.0388158597, -0.012382172, -0.0182176158, -0.00271994085, 0.000619653, 0.0012574509, -0.00344392774, 0.0126434602, 0.0205982439, -0.0133910356, -0.0106910551, -0.00892735738, -0.000797020679, -0.0140515156, -0.00540722068, -0.00131642236, -0.0110539552, -0.0299901143, -0.0212950129, 0.0214111414, -0.00747575471, -0.0178692304, 0.00520399632, 0.0073741423, 0.00991444755, -0.00838300586, 0.00731607806, 0.00542536564, -0.011424114, -0.0118087893, 0.00237155613, -0.00487738568, 0.00367074064, 0.00269453763, 0.00588987861, -0.0177821349, -0.0210337248, 0.00472859619, -0.007301562, -0.0216579139, 0.0355352387, -0.00380319939, -0.0213385615, 0.0098200934, 0.00634350441, -0.0100741237, -0.00507698068, -0.016824076, -0.000606044196, 0.0171724614, -0.0286691561, 0.00595520064, -0.0301352739, 0.0029830439, 0.00796204153, -0.0127595887, 0.00659027696, 0.00887655094, -0.00653947052, -0.0077080112, -0.0230804849, -0.00985638332, 0.00993622094, -0.0381481238, -0.0114458883, -0.0217450112, 0.00336590409, 0.0080999434, -0.0119684655, 0.081812337, 0.000955336087, 0.00226087146, -0.0139934514, 0.00447456585, -0.0160256959, 0.00481569255, 0.0369287767, -0.00134908338, -0.0021538157, 0.00635076221, -0.019306317, -0.000500803, 0.0181885827, -0.0187256765, -0.00706204772, -0.00175462489, -0.0148353809, -0.0144652221, -0.00881848671, -0.0031554217, -0.03443202, 0.00305562397, -0.0100813815, -0.00305743841, 0.00254211947, -0.00659753475, -0.0092975162, -0.0062382631, -0.00717454683, -0.00706204772, 0.00673180819, -0.00304836594, 0.0148644131, -0.00697495136, 0.0140515156, -0.0110612139, 0.00740317442, 0.010828957, 0.00468141912, 0.00576286344, 0.0054398817, 0.0123894298, -0.00992896315, 0.0132313594, -0.000705841871, 0.0116273388, -0.0129918456, -0.013608776, -0.0140878055, 0.0049173045, -0.0227030683, -0.0065757609, -0.0255772416, -0.0106329909, -0.0116345966, 0.0287707672, 0.000972573878, 0.00521851238, 0.0209901761, -0.0177821349, -0.00927574188, 0.0196256693, -0.0159095675, 0.00487012742, -0.00395924691, 0.0160982758, -0.00449996861, 0.00565036386, 0.00500077195, 0.0211208202, -0.0119104013, 0.0156192463, -0.00148154213, 0.0133620044, 0.0205401797, 0.00359453144, -0.0179418102, -0.00699309679, -0.000326157024, -0.0192482527, -0.0024187332, -0.0272611, -0.0106257331, 0.0108071826, -0.0158369876, -0.00880397111, 0.00539270462, -0.0187692251, 0.0203224402, -0.00690962933, 0.0388739221, -0.00582818547, -0.013478132, -0.00901445374, -0.00692414539, -0.0224417802, 0.00290502026, -0.000781143783, -0.00713462802, 0.0146176405, 0.00240603159, -0.0106257331, -0.00243143481, -0.0235304814, 0.01231685, 0.00609673187, -0.0103063798, -0.0146902204, -0.0117362086, 0.0211643688, -0.0195530895, 0.0106039587, 0.0387287624, -0.00506246462, -0.000772978528, 0.0272901338, 0.00445642089, 0.014966025, 0.0162289198, 0.0047213384, 0.00890558306, -0.0159385987, 0.0179708432, 0.00366529706, 0.0079039773, 0.032022357, 0.0274643246, 0.0191756729, -0.0238643512, 0.00585358823, -0.00604229653, 0.0194805097, -0.00988541543, -0.0177966505, 0.019436961, 0.0104370248, 0.00220280723, 0.00230623409, 0.00961686857, 0.0108071826, -0.0108434735, 0.00897816382, -0.00147246965, 0.00831768382, -0.011090246, 0.000633261749, -0.00310461549, 0.0354481414, -0.0046487581, -0.0160547271, 0.00665197, -0.0212369487, 0.00111319788, 0.0323417112, 0.0206127595, 0.0016911173, -0.00903622713, -0.00635439157, -0.0114531461, -0.0206998568, -0.00579915335, 0.0234869346, 0.00981283467, 0.0185224526, -0.0244159587, 0.01933535, -0.0126289446, 0.0266078804, 0.0082378462, 0.0102410577, 0.0100378338, 0.0109523432, 0.000928118534, -0.00356912846, -0.00820881408, -0.0388158597, -0.0226885527, -0.0102338, -0.0175934266, -0.0124474941, 0.00648140674, -0.00234615314, 0.0412545539, -0.00501891691, 0.0051060128, 0.0123894298, -0.00994348, 0.00877493899, 0.00481932145, 0.00822333, -0.0102918642, -0.0124474941, 0.013739421, -0.0160111785, 0.0119104013, 0.000284650247, 0.010262832, -0.0250546653, -0.0141821597, 0.0239659622, 0.00446730759, 0.00659390585, 0.0173756853, 0.0137974853, 0.0128902327, 6.07858674e-05, 0.00115583872, 0.00907251798, -0.0134853907, 0.00306651089]
28 Feb, 2025
MongoDB insertOne() Method – db.Collection.insertOne() 28 Feb, 2025 MongoDB is a powerful NoSQL database known for its flexibility, scalability, and performance. When working with MongoDB, one of the most common tasks is inserting data into collections. The insertOne() method is an essential tool in this process. In this article, We will learn about the MongoDB insertOne() Method, explain how to use it effectively, and showcase several examples. Whether you’re using MongoDB in the shell, Node.js, or Python, you’ll find this guide helpful. What is the MongoDB insertOne() Method? The MongoDB insertOne() method is used to add a single document to a collection. It adds the document to the specified collection and assigns it a unique _id if one is not provided. This insertOne() method is part of the MongoDB driver for various programming languages and can be used in MongoDB Shell, Node.js, Python and other environments. We can insert documents with or without the _id field. If we insert a document in the collection without the _id field, MongoDB will automatically add an _id field and assign it with a unique ObjectId. if we insert a document with the _id field, then the value of the _id field must be unique to avoid the duplicate key error. This method can also throw either writeError or writeConcernError exception. This method can also be used inside multi-document transactions. Syntax: db.Collection_name.insertOne( <document>, { writeConcern: <document> } ) Key Terms <document>: The document we want to insert. A document is a set of key-value pairs similar to a JSON object. writeConcern (optional): If we need to specify a custom write concern (e.g., to ensure the data is written to multiple nodes), you can include this option. Return Value of insertOne() The insertOne() method returns the following: Acknowledgement: It returns acknowledged: true if the write concern was enabled. InsertedId: This field contains the _id value of the inserted document Examples of MongoDB insertOne() Let’s go over a few examples to understand how insertOne() works in MongoDB. In the following examples, we are working with: Database: gfg Collection: student Document: No document but, we want to insert in the form of the student name and student marks. Example 1: Insert a Document without Specifying an _id Field Here, we are inserting the document whose name is Akshay and marks is 500 in the student collection. MongoDB will automatically assign a unique _id field to this document. Query: db.student.insertOne({Name: "Akshay", Marks: 500}) Output: Explanation: As shown above, MongoDB has inserted the document with a new ObjectId automatically generated for the _id field. Example 2: Insert a Document Specifying an _id Field Here, we are inserting a document whose unique id is Stu102, name is Vishal, and marks is 230 in the student collection Query: db.student.insertOne({_id: "Stu102", Name: "Vishal", Marks: 230}) Output: Explanation: Here, we specified the _id as "Stu102", and MongoDB inserts the document successfully. Example 3: Handling Write Concern with insertOne() If we want to specify a custom write concern, we can add an optional writeConcern parameter. For instance, this can be useful when we want to ensure data is written to multiple nodes before considering it committed. Query: db.student.insertOne( { Name: "John", Marks: 420 }, { writeConcern: { w: 1, j: true, wtimeout: 5000 } }) Common Errors with insertOne() While the insertOne() method is quite efficient, you might encounter some errors when: Duplicate _id: If the _id field is already present in the collection, MongoDB will throw a DuplicateKeyError. Always ensure the _id field is unique unless you’re ok with the default behavior of automatic _id generation. Write Concern Errors: If you’ve set a custom write concern and it cannot be satisfied (e.g., not enough replicas), you might get a WriteConcernError. Best Practices for Using insertOne() Ensure Unique _id: While MongoDB auto-generates the _id, if you provide a custom _id, make sure it’s unique to avoid conflicts. Batch Insertions: If you need to insert multiple documents, consider using insertMany() for better performance. Use Write Concerns Appropriately: When writing to a replica set, always consider setting a custom write concern to ensure the durability of your data. Conclusion The insertOne() method in MongoDB is essential for adding single documents to a collection, offering features such as automatic _id generation, write concern options, and support for multi-document transactions. By understanding its syntax and parameters, users can efficiently insert data while ensuring its uniqueness and integrity within the collection. FAQs What happens if I try to insert a document with a duplicate _id using the insertOne() method? If you attempt to insert a document with a duplicate _id, MongoDB will throw a duplicate key error, as _id values must be unique within a collection. Can I use the insertOne() method inside a transaction? Yes, the insertOne() method can be used inside multi-document transactions, allowing you to ensure atomicity and consistency across multiple operations. What is the purpose of the writeConcern parameter in the insertOne() method? The writeConcern parameter allows you to specify the level of acknowledgment requested from MongoDB for write operations. This can be useful for ensuring data durability and consistency based on your application’s requirements. What does the insertOne() method return? The insertOne() method returns an object that includes a boolean acknowledged indicating if the operation was acknowledged by the server and the insertedId field containing the _id of the inserted document Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()
https://www.geeksforgeeks.org/mongodb-insertone-method-db-collection-insertone?ref=asr10
Languages
MongoDB insertOne() Method – db.Collection.insertOne()
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0059946673, 0.0244550668, -0.0125667863, 0.0602859259, 0.0103869075, 0.0191858225, 0.0354266427, 0.0352245346, 0.00136332668, 0.0523748435, 0.0209903587, -0.0137216887, 0.0146456109, -0.067908287, 0.0135701075, 0.034098506, -0.025508916, 0.0229681302, -0.0193734951, -0.0229681302, 0.0147538837, -0.0110148853, -0.000516999455, 0.0368414, -0.0270391628, 0.00635196548, 0.0170348156, 0.0217554811, -0.0240075421, -0.026880363, -0.0246571749, 0.0167316552, 0.0365238, -0.00788943, -0.00559766963, -0.0182185918, 0.00800492, -0.0385448821, -0.0356864966, -0.0317020826, 0.0181319732, 0.0212502107, -0.00207702047, 0.00489029149, 0.0125379134, -0.00603436725, -0.0296521299, -0.0176555775, -0.0354266427, 0.0262884758, 0.000130941611, -0.0285838451, 0.0433088541, -0.00101685582, 0.0220730808, 0.0311823748, -0.00793995708, 0.000761514064, 0.016298566, -0.0729321092, 0.0176555775, -0.0153024625, 0.0069258078, -0.0286271535, 0.00829364546, 0.0227948949, -0.0122347511, 0.0262307301, 8.61665758e-05, -0.0359174758, -0.00188573974, 0.0595929846, 0.0224195514, 0.000921215455, -0.0306915417, 0.00398080563, 0.00674896315, 0.0119027169, -0.00578173203, 0.0093041854, 0.00899380539, -0.009029896, -0.0206871964, -0.0106611969, 0.0379674286, -0.0163996201, -0.019272441, -0.0373899788, 0.0218998436, 0.0106178876, 0.0407103226, -0.0333189443, 0.00699077081, -0.00744190486, 0.00437058508, -0.00583586842, -0.00258229044, 0.00918869581, -0.00729032373, 0.0189548414, 0.0220008977, 0.00760792242, 0.0317598283, -0.023025874, -0.0106539782, 0.0137649979, 0.0362350754, 0.0228815116, 0.0163418744, 0.0130215287, -0.0128194215, 0.018810479, -0.0318464451, 0.0601126924, 0.0262162928, -0.0128699485, 0.0316443369, 0.0160387121, -0.0273856334, -0.013555672, 0.00203912519, 0.0154612614, 0.0160242766, 0.0196766574, -0.0516530275, 0.0582071021, 0.0072000972, 0.0201530531, 0.0717772096, 0.0261874218, -0.0189837143, 0.0138371792, -0.052981168, 0.0115057193, -0.0111592487, 0.023386782, 0.0318753161, 0.0204273425, 0.0120326439, -0.0121553522, -0.0314422287, -0.0245994292, 0.014075378, 0.0122564062, -0.0010583601, 0.0272268336, -0.0157066789, 0.0140248509, -0.018680552, 0.0261729844, -0.042327188, -0.0275877416, 0.0336365439, 0.00804822892, 0.00586834969, -0.000262785499, 0.0280930102, -0.000808883109, -0.013194765, 0.0213079564, -0.0011494892, -0.014927119, -0.0248448458, -0.00544247963, 0.00616068486, 0.0488812625, 0.0174245965, -0.00814206433, -0.0636928901, 0.0335210524, -0.0249170288, -0.0257254597, 0.00304244715, 0.00137956755, -0.0189981516, 0.00670204544, 0.0401906185, -0.0509312153, 0.0329724737, 0.0174534693, 0.0399307646, 0.0195322931, 0.0145878661, 0.00398080563, 0.0170781258, 0.00603436725, 0.0182330273, -0.00813484658, -0.00727949664, 0.0264761467, -0.0318464451, 0.0108344322, 0.059246514, 0.0173235424, 0.0166161638, 0.0456475317, -0.0108777406, 0.0386603698, 0.00445359387, -0.00166558637, -0.00387253356, -0.0490833707, 0.00360726682, 0.01146241, 0.0488812625, -0.0126389675, 0.0187094249, -0.0407680683, 0.052981168, 0.0140320687, -0.052981168, 0.0176988859, -0.00858237129, -0.0176555775, 0.0187094249, 0.0168615803, 0.000375794538, -0.00902267825, 0.0122419698, -0.0353977717, -0.0288870055, 0.0437996872, -0.00151490769, -0.00896493345, -0.020181926, -0.0374188498, -0.00431284029, 0.000788130914, 0.0519995, 0.00923200417, -0.0016700977, 0.0272990149, -0.0198354553, 0.000418652256, 0.00117475272, 0.0203262903, 0.0211491585, 0.0161397662, -0.00600910373, 0.0143280132, 0.0199076366, 0.0089721512, 0.0136711616, 0.0088927513, -0.0151003543, 0.0242240857, -0.0179731753, 0.0314422287, 0.0214523189, 0.00740581425, -0.00495886384, -0.0304894336, -0.00420095911, 0.0576296486, -0.0224195514, 0.0171069987, 0.0288436972, 0.00119009125, 0.0123574603, -0.039584294, 0.0284250453, 0.0136711616, -0.0320485532, 0.000886478112, 0.0180742294, -0.0540494509, 0.0132958181, -0.0260430574, 0.0162263848, -0.0108272135, 0.0454454236, -0.0416342467, 2.90699409e-05, 0.0189404059, -0.00456908438, -0.00280424836, -0.0186372437, 0.00168904534, -0.0107911229, -0.00892162416, 0.027270142, 0.0026995854, 0.0414321385, 0.00458352035, -0.012003771, -0.0204706527, -0.0122780604, 0.0165439826, -0.0441461615, -0.00219611987, -0.026259603, -0.0179154295, 0.0131009286, 0.019431239, 0.0269525442, -0.0118954992, -0.0192291308, 0.037332233, -0.0219575893, 0.0387758613, -0.0486214086, -0.0236321986, -0.00415043207, 0.00773063069, -0.0268370546, 0.00879891589, 0.0276021771, -0.0463693477, 0.00548939733, -0.000656851, 0.000340154977, -0.0157932956, 0.0102858534, -0.0463982187, -0.0056915055, 0.0506424867, 0.0296521299, 0.0285116639, -0.0246571749, -0.0099321641, 0.00120723434, -0.0112169934, -0.052548077, 0.0274000689, 0.0161686391, -0.0462249853, -0.00171611342, 0.000214965301, -0.00492999144, -0.0394399315, -0.0427602753, -0.0134257451, 0.0189981516, 0.0347337, 0.00590083143, -0.0105673606, -0.0192435682, 0.00271041249, -0.0147971921, 0.0157644227, -0.0105601428, -0.000230191072, -0.0360329673, -0.0238343067, 0.0515664108, 0.037361104, -0.0187382977, -0.00778837595, 0.0194168035, -0.000168611296, 0.00127129536, 0.0125018228, -0.02825181, 0.0229970012, -0.00433810381, 0.0137649979, 0.00416486803, -0.0349069387, -0.0175400861, 0.0066443, -0.0128988205, -0.0100981817, 0.0118666263, -0.0099754734, -0.0183485188, -0.035368897, 0.0267504361, 0.02949333, 0.0290746782, -0.00674174493, 0.0020282981, 0.0299408548, 0.00285838451, -0.0194168035, -0.0354843885, 0.00639888318, 0.00376426126, 0.0088927513, 0.0199798178, 0.017670013, 0.0446658656, 0.00453299331, -0.0417208634, 0.0309225228, -0.00621482078, -0.0131298015, -0.0159665309, 0.0113252653, -0.0101775806, -0.000807529723, -0.0348491929, -0.0269669797, -0.0439440534, -0.0224195514, 0.0259997491, -0.0292046051, 0.00564097846, -0.0236466341, -0.00799048413, 0.0163274389, 0.0541649424, -0.0453588068, 0.0182619, 0.0232712924, -0.00957125705, -0.0334921815, 6.62602906e-05, -0.00154017122, 0.00146979431, -0.0185939353, -0.0133896545, 0.014667266, -0.020773815, 0.00815650076, 0.0435109623, -0.0164429285, -0.00464126561, 0.0414898843, -0.0275444314, 0.062018279, 0.0221019518, 0.00432366738, 0.00353508536, 0.000504818861, -0.0434243456, 0.0264328383, 0.000298199506, -0.00463043852, -0.0461672395, 6.47941051e-05, -0.0154323885, -0.0110293217, 0.0265338924, 0.0279342122, 0.0205861423, -0.027862031, 0.0255233515, 0.0209037401, -0.00355313066, -0.00866177119, 0.0224917326, 0.0439729244, 0.0225783493, -0.011123158, -0.0518262647, 0.0415765, -0.0351956636, -0.0437708162, 0.00648911, -0.00456908438, -0.0262162928, 0.011072631, -0.0309802685, -0.0214234479, -0.0113902288, 0.0175545234, 0.0241663419, -0.00887831487, 0.0332323276, 0.00978780165, 0.00600188551, -0.00814928301, 0.0229103845, 0.0297676194, 0.0227804575, -0.00321929157, -0.00746355951, -0.0216977373, 0.000740761869, -0.0109138312, -0.00469540153, 0.0209470503, 0.0084813172, 0.0250613913, -0.0125884404, -0.0393821858, 0.00140663551, 0.00669121835, -0.00806266535, 0.0120254252, 0.019272441, 0.0129060391, 0.00707017072, -0.00139129697, 0.0104951793, 0.0101920171, -0.0113397017, -0.0106972875, -0.00437058508, 0.00804822892, -0.0251335725, 0.00135881535, -0.0520861149, 0.000853996491, -0.0213801377, -0.0126389675, 0.00775228487, -0.00303342449, 0.00336906803, 0.00860402547, 0.0168904532, -0.00728310598, -0.0159954038, 0.0361484587, -0.00610654848, -0.00785333943, -0.00584669551, -0.0285116639, 0.0193013139, 0.000526022166, -0.0440017954, 0.0169770718, -0.00445720321, 0.0199798178, 0.00670565432, -0.0146095203, 0.0154756978, 0.0146239568, 0.0183918271, 0.0160387121, -0.0107622501, -0.0147394473, -0.00914538652, -0.0097950194, 0.0105168335, -0.0120903887, -0.00804101117, -0.0254078619, -0.0175978318, -0.0144435028, 0.0122347511, -0.00654685544, -0.0301140901, 0.0217410456, -0.0128699485, -0.0349646807, 0.00448246673, 0.0160964578, 0.0182041563, -0.0304605607, -0.0149848638, 0.0210047942, -0.0333189443, 0.0209037401, 0.019272441, 0.00817815587, 0.0292767864, -0.00736972364, 0.00397358742, 0.0205861423, 0.0132019827, 0.00448968448, 0.00320846424, -0.0144074121, 0.0151580991, -0.0119604617, 0.00386170624, -0.0255522244, -0.00157265284, 0.0269092359, -0.00840191822, 0.0161542036, -0.00659738248, 0.0171358697, 0.0314133577, -0.00747799547, -0.0534142554, 0.0165439826, -0.0158799142, -0.0103941252, 0.00237115985, -0.0257832054, 0.0311246309, -0.0294355843, 0.0231991094, -0.0019164168, 0.0477263592, 0.0310957581, 0.0316732079, 0.0509889573, -0.0234156549, -0.0118305357, 0.00286379806, -0.00176664034, 0.0095784748, 0.00198679371, -0.0517107733, -0.022405114, 0.00759348599, -0.0213512648, 0.0180164836, 0.00774506712, -0.00765123125, 0.00886387937, -0.0206871964, 0.0413455218, 0.020643888, 0.0182330273, -0.00509600854, -0.0142486133, -0.016688345, -0.0120182075, 0.0174967777, 0.0120326439, 0.000330906711, -0.00511044497, 0.00284755719, -0.0276454855, -0.018810479, 0.0173957236, 0.00760070421, -0.00393027859, 0.0337231606, -0.0114118829, -0.00283673, -0.0080698831, 0.0308936499, -0.00121445244, -0.0182474647, -0.020773815, 0.0194889847, 0.0410856679, 0.025739897, 0.0387181155, -0.0284539182, 0.0351667888, -0.0181464106, 0.029623257, 0.00010381719, -0.0210914128, 0.0106611969, -0.0173379779, 0.000357523619, 0.00773063069, -0.010321944, 0.0260863677, -0.00525119854, 0.00151129859, -0.0344738476, -0.0176411401, 0.0152735896, 0.0336365439, 0.0172224883, 0.114450864, -0.0144218486, 0.0118305357, -0.0212646481, 0.00443554856, 0.0124224229, -0.0245561209, -0.034098506, -0.00457991147, 0.00831530057, 0.0102930712, -0.034127377, -0.0168615803, 0.00573120499, -0.00754295895, 0.0137289073, 0.0508445948, -0.00369929802, -0.0294355843, 0.0481305756, 0.0139526697, 0.0235888902, -0.00278620305, 0.0120326439, -0.00464487495, 0.0183485188, 0.0296810027, -0.00334741361, -0.0353977717, -0.012884384, -0.000501209754, 0.00723257894, -0.0300274733, -0.0330590941, -0.00978058297, 0.0240219776, 0.000425870414, -0.0167027824, 0.0257976409, 0.0191280786, 0.00727227842, -0.0114985006, -0.00926809479, -0.0342139974, -0.0255377889, -0.0216977373, -0.00103760802, -0.00823590066, -0.029233478, 0.015677806, 0.0305760521, 0.0172369238, -0.0159809683, 0.00137595844, -0.00840913597, -0.00591887673, -0.0227515846, -0.00832973607, 0.000144475634, -0.00921756774, -0.0226216596, -0.022015335, 0.023386782, -0.00871229824, 0.039613165, 0.00966509245, -0.00117475272, 0.0272268336, 0.0582359731, 0.00535586197, -0.00838748179, -0.0244550668, 0.0126461862, 0.0199942552, 0.00886387937, -0.00463765673, 0.0277609769, -0.00137595844, -0.0127688944, 0.0217266083, -0.0179731753, -0.0122564062, -0.014436285, -0.0193446223, 0.0066984361, -0.013635071, 0.00336726359, -0.00328786392, -0.00712791597, 0.0154756978, -0.0152158448, -0.0319041908, 0.0106900688, 0.0286560263, -0.0177277587, -0.0230691843, 0.022535041, -0.00408185972, 0.0175978318, -0.025638843, -0.0214956291, -0.0161542036, 0.0019831846, 0.0261729844, -0.0033582407, -0.041605372, -0.0391800776, 0.00313086924, 0.021914281, 0.0411145389, -0.0178721212, -0.0193446223, -0.0220442079, -0.000120227189, 0.0131514557, 0.0145301213, 0.00293056597, 0.00770897605, 0.00304244715, -0.00966509245, -0.00650715549, 0.0120542981, -0.0322217867, -0.0219864622, -0.0315577202, 0.00730115129, -0.0127761122, 0.0154901342, 0.022405114, 0.0339830145, -0.0184784457, 0.00798326544, -0.01904146, 0.00332936831, -0.0123718958, -0.00672369963, -0.0419807173, 0.00303161982, 0.00404576911, 0.00612098491, 0.0282951184, 0.00396997854, -0.0204562154, 0.0162119474, 0.00292334775, 0.0262740385, 0.0195756033, 0.0104229981, 0.0155767519, 0.00176032446, 0.00316335098, -0.00355313066, 0.00608128496, 0.0142125227, -0.0426447876, -0.0143135767, -0.0310668852, 0.0160964578, -0.0676773041, 0.0402483642, 0.00521149905, -0.00457630213, -0.0201963633, -0.0132019827, -0.0362928212, -0.0189404059, -0.0124729499, 0.0044860756, 0.0263895299, -0.0381695367, 0.0100693088, 0.00230619661, -0.00246860483, 0.0031290648, -0.00715678837, -0.00769454, 0.00131550652, -0.0118016629, -0.00693663489, 0.019171387, -0.0425292961, 0.0104879607, 0.0327703655, -0.0166450366, 0.0111015029, 0.0384005196, -0.0147755379, 0.0135123627, 3.09308671e-05, -0.028482791, 0.0414898843, 0.00229897839, 0.0318753161, -0.014075378, 0.0105023971, -0.00309477863, 0.00303161982, 0.0144001944, -0.00496608205, -0.0112675205, 0.000793995685, 0.00985998288, 0.0430201292, 0.0222174432, -0.0139021426, 0.0203695986, 0.0194456764, 0.011022104, -0.0386026278, -0.0288003888, 0.0327992402, 0.00184784445, -0.0104374345, -0.0141836498, -0.0140392873, -0.00437419442, 0.0297964923, -0.0095784748, -0.00261838129, 0.00853184424, -0.0160820223, 0.0233001634, 0.0461672395, -0.0160387121, -0.0140681602, -0.0129782204, -0.0218998436, 0.00181536283, -0.0293778405, 0.0340696312, 0.040825814, 0.00246860483, 0.00192002591, 0.00342861773, 0.0112963933, -0.015937658, -0.0419229716, 0.0319908075, 0.0245849937, 0.00714235194, -0.0215100646, -0.00704490719, -0.00114317331, 0.00201566634, -0.0234878361, -0.00213115662, -0.0111953393, -0.0095784748, 0.000932944939, -0.0260141864, -0.0222463161, 0.00377147947, 0.0233579092, -0.0252490621, 0.00158889359, 0.00343944482, -0.00320485537, 0.0100548724, -0.0204850882, 0.0190992057, 0.00229717395, 0.0463404767, -0.00878447946, 0.0412300304, -0.0162119474, -0.0195900388, -0.0163996201, -0.0198932011, 0.0336076729, 0.0198498927, -0.00425509503, 0.00216905191, -0.00187852164, 0.00961456541, 0.00339794066, 0.0182041563, -0.00537751615, 0.00822868291, 0.0263173468, 0.0124873864, 0.0273567606, -0.0141475592, -0.0204417799, -0.0249747727, 0.0214667562, -0.0116067734, 0.0189837143, -0.00187491253, 0.0343872309, 0.0176844485, -0.00804822892, 0.0238487422, -0.016688345, -0.0325105153, 0.0304316897, -0.0384293906, -0.0180742294, -0.0213368293, 0.0227948949, -0.00345027214, 0.00223221048, -0.030633796, -0.0169337615, -0.0343006141, 0.00727588776, 0.00872673467, 0.0273134522, -0.00795439351, 0.0278187208, 0.0379963033, 0.00596218556, -0.00757904956, -0.0390357152, 0.00728310598, 0.00411434146, -0.0127688944, 0.0137361251, -0.0133319097, -0.00975892879, 0.00666234549, -0.00153114845, -0.0208748691, 0.0371012539, 0.011332484, 0.000718656287, -0.00432005851, -0.0141836498, 0.00921756774, -0.0127111487, 0.0210914128, -0.0200953092, 0.0269092359, 0.000826928474, -0.00334921805, -0.0132019827, -0.0142991403, 0.012754458, -0.00302079273, -0.0160964578, 0.0128988205, 0.00164754107, 0.0266782548, -0.0472643971, 0.0203551613, -0.0140537238, 0.0108777406, 0.0148116285, -0.00404937798, -0.00422983151, -0.0132597275, -0.00881335232, -0.0302007087, 0.0236466341, 0.0383427739, -0.0191858225, 3.20587023e-05, 0.0409124307, -0.0053991708, -0.0323372781, 0.0126245311, -0.00369929802, 0.0237621255, -0.00495886384, 0.0234012175, 0.00759348599, -0.0294067133, 0.0240652878, -0.0209903587, -0.0213801377, 0.00988885481, -0.0319908075, 0.02825181, 0.0358019881, -0.00438502152, -0.0223906785, 0.00242168689, -0.00310199684, 0.0136567261, -0.0176267046, 9.1185444e-05, -0.0340407602, 0.00124873861, 0.00582143199, 0.000846778334, -0.022535041, -3.67392167e-05, 0.00923200417, -0.00749243191, -0.0137000345, -0.00796161126, 0.0101847993, -0.00113054155, 0.00212754752, -0.0225927867, -0.0507291071, 0.025508916, 0.00152393035, 0.0322795324, -0.00172513607, -0.00512849027, -0.00880613364, -0.038054049, -0.0279486477, -0.0206005797, -0.0028547754, -0.00595135847, -0.0149126826, 0.00207882514, 0.000921666564, 0.000951892522, -0.00490833679, -0.0117150452, -0.0160242766, -0.00464126561, -0.0201530531, 0.0276166126, 0.00913816877, -0.0149704274, -0.000545872, 0.0217410456, -0.0106178876, 0.00869786181, 0.00339613599, -0.00960013, 0.0288870055, 0.00864011701, 0.0103291618, -0.00792552065, -0.0144001944, -0.00458352035, 0.00129385199, 0.00412516855, 0.0165151097, 0.012184225, 0.0102930712, -0.0185361896, -0.0327414945, 0.0186083708, 0.0354555175, 0.0236755069, 0.040854685, 0.0213657022, -0.0424715504, 0.00610654848, 0.00932584051, -0.00632670196, -0.0257976409, -0.00851740781, 0.00158167549, -0.0005643685, 0.00361628947, 0.00947020296, 0.0209470503, 0.00341959507, 0.0836149603, -0.0256244056, 0.00184152857, -0.0105962334, -0.00817815587, 0.00859680772, 0.000110584202, 0.0229970012, -0.00321568246, -0.00589361321, 0.0249025915, 0.0182763375, 0.0151725356, -0.00759348599, -0.0124729499, 0.00704129785, -0.000292560348, -0.00747077772, 0.00360365771, -0.0479862131, -0.0100332182, -0.00258589955, 0.0158366039, 0.0340407602, -0.0201530531, 0.0186661165, 0.00147881696, -0.00954960287, -0.0131875463, 0.0129637839, 0.0167894, -0.0243828855, -0.00229897839, 0.00214739749, -0.00288003893, 0.0213079564, 0.0043308856, 0.0217987914, -0.00262920838, 0.017670013, -0.00260214042, 0.0071712248, -0.0150137367, -0.00187491253, -0.0114840651, -0.000577902538, 0.000499405258, -0.00783890299, -0.012444078, -0.0259131324, -0.0120976064, -0.00648550084, -0.0127977664, -0.00133264961, -0.00353147625, 0.00469179265, 0.0192435682, -0.0421539508, 0.00225025602, -0.0109932311, -0.0125018228, -0.0241230316, 0.0101270536, -0.0358886048, 0.00168633857, -0.004760365, -0.0409990512, 0.0157066789, -0.0361773297, -0.0278187208, -0.00268695364, 0.0089721512, -0.0097950194, 0.00432727626, 0.0327703655, -0.026736, 0.00359643949, -0.0126606217, -0.00835139118, 0.00226830132, -0.014385758, -0.00472066505, -0.00136152213, -0.0119099356, -0.00512127206, -0.00954960287, 0.0215245, -0.00539556146, 0.0116139911, -0.0193879306, 0.0276166126, 0.00356034888, -0.0241952129, -0.0338963978, 0.00492277322, -0.0199798178, 0.0050166091, 0.0114191016, -0.0075646136, -0.00546774315, 0.00666234549, -0.00781003, 0.0237909984, 0.00809153821, 0.0112097757, 0.00859680772, -0.0103724711, -0.00141475594, 0.00702686189, 0.0199653823, 0.012884384, -0.00248845457, -0.0133824367, 0.00303522893, 0.0115779005, 0.0122058792, 0.00850297231, -0.00542082498, 0.0217266083, -0.0105023971, -0.014176432, 0.0324238949, 0.00939802174, 0.00163400697, -0.00607767608, -0.0121625699, -0.0162696932, 0.0141186872, -0.0133824367, -0.0136711616, 0.00144362845, 0.00635196548, -0.00140934228, 0.00382561563, -0.00408546859, 0.0209759213, -0.0305471793, 0.024888156, 0.00793995708, 0.00170077488, 0.00396997854, 0.000741664146, 0.00640971074, 0.00951351225, 0.0155190062, -0.00985998288, -0.0474953763, 0.0106900688, -0.0239209235, 0.0309802685, -0.0019687484, -0.0210625399, -0.00137686066, -0.00238198694, 0.00563376024, -0.0157932956, 0.00426592212, -0.0241519045, -0.00420817733, 0.00740581425, 0.00621121144, 0.0323084071, 0.0216977373, -0.00413960451, -0.0222896244, -0.0023657463, -0.0164140556, -0.00112061668, -0.00394471502, 0.0307204146, -0.00110257126, 0.0195322931, -0.0168182719, -0.0162408203, 0.00871951599, 0.00665873662, 0.029262349, 0.023155801, -0.011953244, -0.0488235168, 0.0112675205, 0.00763679482, -0.0142774861, 0.00162859343, -0.00657933671, 0.0185361896, -0.0125884404, 0.0239353608, 0.0129421297, 0.0208171234, -0.00620399369, -0.017670013, -0.0217410456, 0.0272557065, 0.00444998499, -0.00867620762, -0.0320485532, -0.0171647426, -0.000657302095, 0.0186661165, -0.0249892101, 0.0386315, 0.00408907793, 0.00239281426, 0.0163851827, -0.0155045697, -0.00162678887, -0.00999712758, -0.00596218556, 0.00259672687, -0.0262451656, -0.00375704328, -0.0184062626, -0.00167280459, 0.00716400659, -0.0416919924, -0.012833857, -0.000665873638, 0.000388200715, -0.000462412252, 0.0344161019, 0.00406381441, 0.0141619956, -0.0139743239, -0.00477119209, 0.00952073, 0.00694385311, -0.0177277587, 0.00811319239, 0.0158510413, -0.011202557, -0.021394575, 0.0223184973, -0.00108813494, -0.0195467304, 0.00202288455, 0.00917425938, -0.000364516192, -0.00600188551, 0.031355612, -0.00170077488, 0.0112386476, -0.00199942547, 0.0037823068, -0.00392306037, -0.000153836663, 0.0269525442, -0.00581782311, -0.0104807429, -0.00760792242, -0.00137866521, -0.0240652878, -0.0125884404, -0.0140970321, -0.0259997491, -0.0100765266, -0.0158943497, 0.00540277967, -0.0354266427, -0.0226360951, -0.00580338668, 0.00483976444, 0.00421900442, 0.00174137694, -0.0164862368, 0.0394688025, -0.00438502152, 0.0144218486, -0.0128699485, 0.0208171234, 0.0126317497, 0.0146023026, -0.0103941252, 0.003342, -0.0205139611, -0.00070467114, -0.000945576699, -0.00967952888, -0.00445720321, -0.0148693733, -0.0101487087, 0.0211780295, -0.00704851607, -0.0120903887, -0.00886387937, -0.000230191072, -0.0498918, 0.00305688335, 0.00537029793, -0.00109715771, 0.00717483368, -0.0213801377, -0.0265627652, -0.00189476239, -0.0135484533, 0.0387181155, 0.0302584544, -0.00456186617, -0.00168543623, -0.0132886, 0.00475675613, 0.00848853588, -0.0235022716, 0.0124152051, 0.0350801721, 0.0193301849, 0.0151292272, -0.0123285875, 0.0106828511, -0.00137595844, -0.000788582081, -0.020023128, 0.00832251832, -0.0211924668, -0.0301718358, -0.0116861723, -0.0203262903, 0.0237909984, -0.00115580508, -0.00521510793, 0.00136242446, -0.0109066134, 0.00625812961, -0.0323661529, -0.0201674905, -0.0101703629, 0.00458352035, 0.00483976444, 0.0172946695, -0.014616739, 0.00907320529, -0.029262349, -0.00614263909, 0.0104951793, 0.0115851192, 0.00676700845, 0.0135701075, -0.00952794775, 0.011123158, 0.00626534782, -0.00526924385, 0.0143207945, -0.00725062424, -0.00442472147, 0.00887831487, 0.00865455251, 0.0199942552, -0.0066046, -0.0171647426, 0.0077017583, -0.0131009286, 0.0021654428, -0.0116861723, 0.0141547779, 0.0149848638, -0.00626534782, -0.0128194215, 0.0375343412, -0.00673091784, 0.00840913597, -0.00367583917, 0.00282590277, -0.0185073167, -0.0178288128, 0.00544969784, 0.0234012175, -0.0188826602, 0.0180164836, 0.0434532166, -0.0072470149, 0.00426231325, 0.0148405014, 0.0235888902, -0.000385719497, -0.00172513607, -0.00420095911, -0.0179298669, -0.0177710671, -0.00310380128, -0.0310091395, -0.0238920525, -0.0155045697, 0.0180309191, 0.0193013139, 0.000656851, 0.00827199128, -0.0126967123, 0.0106828511, 0.0197055284, 0.0237476882, -0.018810479, 0.00336004538, 0.00813484658, 0.0216399916, 0.0314133577, -0.012703931, -0.0130431838, 0.0289303157, 0.0077667213, 0.0210192315, 0.00390501507, -0.0108272135, -0.000138498115, 0.00110618037, -0.00627617491, 0.0394688025, 0.00807710178, 0.021553373, 0.0189837143, -0.0104951793, 0.0250613913, -0.0194456764, -0.00914538652, -0.00399524206, -8.17680193e-05, 0.00814928301, 0.0169337615, 0.00479284674, 0.0149848638, 0.0184928812, -0.00371012534, -0.00290349778, -0.00383644272, 0.0167749636, -0.0292912219, -0.0183485188, 0.0266349465, 0.00575646851, -0.00269597629, 0.00401328737, 0.00464126561, -0.00853906292, -0.0184784457, 0.00187491253, -0.0105312699, 0.0322217867, 0.0138877062, 0.0205572695, -0.0270824712, 0.0130504016, -0.0158654768, 0.027862031, -0.0256965868, 0.0124512957, -0.019792147, -0.00526924385, 0.00430923095, 0.00323011889, 0.0343006141, -0.00203551608, -0.0121048251, 0.00644219201, -0.010011564, 0.0173524152, -0.00858237129, 0.0129493475, 0.00720370607, -0.0171647426, 0.0121986605, 0.0136422897, 0.0110942852, -0.0169915073, 0.0171647426, -0.0117944451, 0.0244695023, -0.0202252362, 0.0190847684, 0.0206583235, 0.000506623357, -0.00826477353, 4.04892671e-05, -0.00703408, -0.0250758268, -0.00719287898, 0.0150426086, -0.00918147713, 0.0103363805, -0.00160152535, -0.0141186872, -0.0222030059, -0.00905876886, 0.0158077329, 0.0110076675, 0.00966509245, -0.000344666303, 0.0225206055, -0.00327523216, 0.0145878661, 0.0118666263, 0.0185650624, 0.00152844167, 0.00470261974, -0.000471434934, 0.0199365094, -0.00540999789, 0.00522954436, -0.00181355828, -0.0101775806, 0.0017016771, -0.0243540127, 0.0339252688, -0.00540277967, 0.0184495728, 0.00213657017, 0.00832251832, -0.0046232203, -0.012314151, 0.0162552577, 0.0155045697, 0.00630143844, 0.005005782, -0.0077017583, -0.00537751615, 0.00118197082, 0.0109066134, -0.0108849593, -0.00226469222, -0.0270824712, 0.00907320529, -0.0127400216, 0.0357731134, -0.019272441, 0.000721814227, 0.00957125705, -0.0055832332, 0.00237476896, 0.0175256506, -0.020052, -0.00812041, -0.0104663065, -0.00695468, 0.000591887685, -0.00107460096, 0.026736, -0.0183629543, -0.0268514901, -0.00449690269, -0.0237188172, -0.0104302159, 0.00516458089, -0.00644941, 0.0175256506, -0.00749243191, 0.0210625399, -0.0134401815, -0.000224551899, -0.0134618357, -0.013064838, -0.00902267825, -0.0131081464, 0.0157355499, 0.00343944482, -0.0149848638, 0.00773784891, -0.0105384877, 0.0151003543, 0.00488668261, 0.00287642982, -0.00288545247, 0.0162119474, 0.0123646781, 0.00344305392, 0.0205861423, 0.0110365404, 0.00309658307, -0.0186228082, 0.0110365404, 0.00335102272, 0.0227804575, -0.0244983751, 0.00964343827, 0.00546413381, 0.00232785102, 0.00386170624, -0.0140176332, 0.0140392873, -0.0175833944, 0.00923922285, 0.00339433155, 0.013194765, 0.0120254252, 0.00205356162, 0.00188934884, -0.0123285875, -0.003311323, -0.00678144488, -0.000281958695, 0.00506713614, -0.0170059446, 0.00417208625, -0.0132813826, 0.010350816, -0.0141692134, -0.00314530567, -0.000209777267, 0.00195792108, 0.00797604769, 0.00781724881, 0.00874117, -0.0227515846, 0.0282085016, -0.0285261, -0.000779108261, -0.00383644272, 0.00516819, -0.00667678192, -0.0113180475, 0.0040565962, -0.018651681, 0.000229739948, 0.00101866038, -0.0420095883, 0.000551736797, -0.00744190486, 0.00647828309, -0.0151436627, -0.00496247318, -0.027270142, -0.00505991792, -0.010350816, 0.00191100326, 0.0144868121, -0.0115851192, 0.0102569805, 0.00836582761, 0.0219431538, -0.00845244527, 0.00150047138, -0.000309252297, -0.0273856334, -0.0216544271, -0.00339072244, -0.014927119, 0.00550383376, 0.00265627634, -0.00519345375, -0.0282085016, -0.0107117239, -0.00811319239, -0.0160242766, -0.0166739095, -0.00857515354, 0.00988885481, -0.00854628067, -0.000374666706, -0.000388426299, 0.00219431543, 0.0107117239, -0.0236755069, 0.0147611015, 0.0216833, 0.00683197193, -0.00567346, -0.0099321641, 0.0024397322, -0.037159, -0.00682114484, 0.013995978, -0.01045187, -0.00310380128, 0.00921035, -0.017280234, -0.0119027169, -0.0027176307, 0.012133698, 0.0126967123, -0.00316515542, 0.021553373, -0.00844522659, -0.0223473702, 0.0154612614, 0.00435254, -0.0127688944, 0.00688610785, -0.0167460907, 0.00737333251, 0.00452938443, 0.0130215287, -0.000893696269, -0.0201386176, -0.0167894, 0.00114678242, -0.00927531347, -0.000165227801, 0.0165728554, -0.0240075421, -0.00693663489, 0.0152014084, -0.00601632195, 0.00814928301, -0.000738055096, 0.00990329124, -0.0334633105, 0.0126534039, -0.00876282528, -0.0238198712, 0.00313628302, 0.0173812881, 0.0231124926, 0.0238776151, 0.0335788, 0.00438141264, -0.0239353608, 0.00511044497, -0.0015573143, -0.00111700757, 0.0300852172, -0.0211058483, 0.00531616202, 0.0112819569, -0.0155334426, 0.00114497787, 0.003388918, -0.00632670196, -0.00576729607, -0.00425148616, -0.0058575226, 0.01966222, 0.00843079, 0.00983111, 0.00581421377, 0.00990329124, -0.00627256604, 0.0118954992, -0.0097950194, 0.0112242112, -0.0120254252, 0.00255522248, -0.00860402547, -0.0144940298, 0.0107911229, 0.0308936499, 0.00683919, 0.0130431838, -9.4103716e-06, 0.00549661554, 0.016067585, 0.0154756978, -0.00109625538, 0.00534864375, 0.000585120695, 0.00201927545, 0.00557601498, 0.000995201408, -0.0216399916, 0.000881515676, 0.036870271, -0.0246860478, -0.000624820474, 0.0121120429, -0.0083947, -0.0252923723, 0.00406381441, -0.00315974187, 0.0216111187, -0.00223581959, -0.00772341248, 0.00267251721, 0.00400246, 0.0141547779, -0.0110148853, -0.00691498071, 0.000508879, 0.0119027169, -0.00425509503, -0.0101992358, -0.0161542036, 0.007658449, 0.00203551608, -0.0156633686, 0.00595857669, -0.00434532203, 0.0114840651, 0.00874117, 0.00639527431, 0.00584308617, -0.0162841287, -0.0155190062, 0.00392306037, -0.00366862095, 0.0171647426, -0.000239100977, 0.00100693083, 0.0257832054, 0.015446825, 0.00738055073, 0.0108705228, 0.00214378838, 0.0141836498, 0.00835860893, 0.00792552065, 0.0138516156, 0.0200808719, 0.0167027824, 0.00638805609, 0.0102208899, 0.00160603668, 0.00255522248, 0.00311643304, 0.00847409945, 0.00879891589, -0.0131514557, 0.000292560348, 0.00535586197, -0.00302981539, -0.00356395799, 0.00182979915, 0.00132813817, -0.0110798487, -0.012494605, -0.016428493, 0.00281507568, 0.0225639138, 0.00365057564, -0.0119027169, 0.00748521369, -0.00791830197, 0.005005782, 0.0307492875, -0.0167460907, 0.0180164836, -0.0179154295, 0.0128627298, 0.00845244527, 0.00341959507, -0.00718566077, -0.00841635466, -0.0162696932, -0.00537029793, 0.00972283818, 0.0166306011, -0.0106395418, -0.0095784748, -0.0427602753, -0.00881335232, 0.00573481433, -0.0032662095, -0.00732641481, -0.00709904311, -0.00641331961, -0.0147755379, 0.00324094598, -0.00793995708, -0.0259708762, -0.00413960451, 0.00598744908, 0.00947020296, 0.00480006495, 0.00170799298, 0.0134762721, 0.010026, -0.00542443432, -0.0117078274, -0.0134113086, -0.00636279257, -0.0179731753, 0.0027320669, -0.0037823068, 0.00489390083, 0.0140825957, -0.00588278612, -0.00336726359, 0.00154107343, -0.014927119, -0.0153024625, 0.0223184973, 0.000406922773, 0.00463404739, 0.0254222974, -0.0096578747, -0.000927531335, -0.0140537238, 0.0211924668, -0.00936914887, 0.00237476896, 0.0133030368, 0.00102948758, -0.0233434737, -0.0326837488, -0.0118954992, 0.0177421942, 0.00823590066, -0.00376787037, -0.00118197082, 0.018290773, -0.0151147908, -0.0158366039, 0.0105962334, -0.00702686189, 0.0105023971, -0.0135267992, 0.0381984115, 0.00373899774, -0.0119604617, 0.0144074121, 0.0131586734, 0.0178865567, 0.00489390083, -0.0269814171, -0.0236321986, 0.0097156195, 0.0107045053, 0.00319402805, -0.0157499872, -0.0108849593, 0.0223184973, 0.00933305826, 0.0143929766, 0.013245292, 0.0245849937, 0.0111809028, 0.010271417, 0.0206583235, 0.0107405959, -0.00221055606, -0.0192580037, 0.0204706527, 0.0263750926, 0.00569872372, 0.00011909935, -0.00551466085, -0.0104085617, -0.0178143755, 0.0114912828, 0.0125451321, -0.0236610714, -0.0197488386, 0.0244261939, 0.00728671486, -0.000522864226, -0.0122564062, -0.00139671064, -0.00474953791, -0.0048794644, 0.0132958181, 0.00400606915, 0.0283961724, -0.0170925613, 0.0172513612, -0.0202396717, -0.00609933026, -0.0173235424, -0.00920313131, 0.0101270536, 0.00151039637, 0.019431239, 4.25475664e-05, -0.0196477845, -0.0270969067, -0.00757183135, 0.00778115774, -0.00107279641, 0.0203407258, 0.00796882901, -0.0287570804, -0.00778837595, 0.0117655722, -0.00190919871, -0.0040565962, -0.0104446523, 0.00726145133, 0.0115634641, 0.00787499361, 0.00257326779, -0.00624730252, -0.0141331227, 0.0290169325, 0.0112819569, 0.00989607349, 0.0243107043, -0.00655407319, 0.00183972402, 0.00935471244, -0.0109932311, -0.00261838129, -0.000580158201, -0.000423840305, -0.00278439838, 0.00389418798, -3.92768452e-05, -0.00870508, 0.0141331227, -0.0216544271, 0.0133607816, 0.0219864622, 0.0125090415, 0.012703931, -0.00551827, 0.00950629357, -0.00224123336, 0.00789664779, -0.00155821652, 0.0153313344, 0.00646745553, 0.0286849, -0.0139815416, -0.00479284674, -0.00540277967, 0.024888156, -0.0113757923, -0.00245055929, -0.0111015029, -0.0192435682, -0.00652159192, 0.000720009732, -0.0101847993, -0.015547879, 0.00937636755, 0.0163274389, -0.00900824182, -0.00602354, 0.0168471448, 0.0134401815, 0.00248123659, 0.0180020481, -0.0301718358, 0.0121697886, -0.000973547, 0.000452261738, 0.0115201557, 0.00732641481, 0.00496969093, -0.00952073, 0.0170203801, -0.000217672117, -0.0162841287, 0.0167749636, -0.00853184424, 0.0111953393, 0.00294500217, -0.00200123, -0.00936914887, -0.0204850882, -0.00235311454, -0.00866898894, -0.0208171234, 0.0171647426, 0.0137144709, 0.00221777428, 0.0314422287, 0.013505145, 0.0212790836, -0.000470983796, 0.0126028769, -0.0112963933, 0.0216111187, 0.00652881, 0.0230547469, 0.00476758322, 0.00333297742, -0.0210192315, 0.0142630497, 0.0118305357, -0.00786055718, 0.0146817015, 0.0392666943, 0.0141908685, 0.0174967777, 0.00454021152, -0.0134329628, 0.0107839052, -0.000531886879, -0.00452216621, -0.00188032608, -0.00553992437, -0.000474592875, 0.0096578747, 0.006222039, -0.00632309308, 0.00590444077, 0.0094268946, 0.0179154295, 0.0152158448, 0.00473510148, -0.0341562517, 0.0094268946, 0.0136061991, 0.0133391274, -0.00391223328, -0.00643497426, 0.00109625538, 0.00949907582, 0.0163707472, -0.0221019518, -0.00784612074, -0.0412011594, 0.0147250108, -0.00145174889, 0.0328858569, 0.00497690914, -0.0100837452, 0.00491555501, -0.0147033567, -0.0189548414, -0.00534503441, 0.0109354863, 0.00849575363, 0.00285297073, 0.0378519408, -0.0379963033, -0.0118666263, 0.0192435682, 0.0190992057, 0.00790386647, -0.00819259137, -0.00547857024, 0.00300455187, -0.00513570849, 0.0129493475, 0.0228237659, 0.00696189841, 0.0028656025, 0.0148549378, 0.00165746594, -0.0184207, -0.000711438188, -0.00388696976, 0.00595496781, -0.0170925613, 0.0269525442, -0.00763679482, -0.0108272135, 0.0156489331, -0.00851019, 0.0148549378, 0.0112819569, -0.0198498927, 0.00728310598, 0.027270142, 0.00543165207, 0.0179731753, -0.0150714815, -0.00121084345, 0.0206871964, -0.0121409157, -0.0325393863, 0.00678505376, -0.00864011701, -0.000268424687, 0.0166306011, 0.0029287613, -0.00542443432, 0.000262785499, -0.015677806, 0.00918869581, -0.0115634641, -0.0106828511, -0.00555075146, 0.0250036456, 0.00300455187, -0.00544969784, -0.0164862368, -0.0197199658, -0.0224195514, 0.0133824367, 0.0419229716, -0.0225927867, -0.00556157902, 0.0264761467, 0.00521871727, -0.0197632741, 0.00620038435, -0.0157211144, 0.00721453363, -0.0129204756, 0.0174679048, 0.0178432483, 0.00512127206, 0.0096578747, -2.09495302e-05, -0.0103002898, -0.00252454542, 0.00985998288, 0.00454742974, 0.0168327093, -0.00407103216, 0.00336365448, -0.0314999744, 0.0289880596, 0.00491194613, 0.00177746755, 0.0177566297, -0.00695468, -0.0110148853, -0.011433538, -0.0117872264, 0.000901816704, -0.0126173133, 0.0066443, 0.00685362611, 0.00529450737, -0.00591165852, -7.44934878e-05, 0.00161957077, -0.00286018895, 0.0099754734, -0.0222030059, 0.00261116307, 0.0118305357, -0.00388696976, 0.0167316552, -0.00204995251, 0.000264590024, -0.0174823403, 0.025277935, 0.00522593502, -0.0114840651, 0.00784612074, -0.000236168606, -0.0136134168, 0.0250325184, -0.0124079874, 0.00373177975, 0.028020829, 0.0164862368, 0.00287462515, -0.0140970321, -0.0245705564, 0.00978058297, -0.00565902377, -0.00251371809, 0.0142269591, -0.00440667616, 0.00274469866, -0.0224917326, -0.00671287253, 0.00515014492, -0.0137433438, 0.0107333781, 0.00452577556, -0.0111375935, 0.0256532785, 0.0185795, -0.0118088815, -0.00321929157, -0.00263642659, -0.0100332182, -0.00627256604, 0.0111087216, -0.0242385231, -0.00401328737, -0.00368486182, 0.0080698831, -0.00923922285, 0.0152735896, -0.000783619587, 0.00661903666, -0.0097950194, 0.00959291123, 0.00778115774, 0.0157644227, -0.0230980553, 0.00119640713, 0.00507796323, 0.0193446223, 0.0201674905, -0.00929696765, -0.0171791799, -0.00588639546, -0.0177133214, -0.00665873662, 0.0193013139, -0.00441028504, -0.00730115129, 0.0144651579, 0.0125884404, -0.0215966832, 0.0190992057, 0.0102786347, 0.000911290466, -0.0205139611, -0.000524668721, 0.0195034202, -0.00327703659, 0.0184784457, 0.01045187, 0.00739859603, -0.00772341248, -0.0105384877, 0.0128122028, -0.0167605262, 0.00345929479, -0.00652881, 0.0124368593, -0.0240075421, 0.004514948, -0.0198354553, 0.0128482934, 0.016688345, 0.00120813656, -0.00482532848, 0.00316696, 0.014696138, -0.00231341459, 0.0256532785, -0.0206871964, -0.0032481642, 0.00634474726, -0.00539195258, -0.00167912035, 0.0142630497, -0.000226920354, -0.00315252366, 0.000781363924, -0.0375054702, -0.00460878387, 0.00276093953, 0.0109210499, -0.0397864021, -0.00852462649, 0.00652520079, 0.0216111187, -0.00214920193, -0.00213476573, -0.028020829, -0.0120182075, -0.0057492503, 0.00630865665, 0.0199653823, -0.018810479, 0.000380531448, 0.0130792744, 0.00872673467, -0.00123700919, -0.0202974174, -0.00510683563, 0.00514653558, 0.00290710689, -0.0089721512, -0.00898658764, 0.00262559927, -0.0152302803, 0.00357117597, -0.0178721212, -0.0134473993, 0.00768010365, 0.00799048413, -0.00536668906, 0.00884222426, 0.013584544, 0.00181536283, -0.00691137137, -0.0163274389, 0.00952794775, 0.0163996201, 0.00874838885, 0.00576007785, 0.0285116639, 0.00600188551, 0.0253645536, -0.00403494155, -0.0130720558, -0.00454382086, 0.0173379779, 0.000240003239, 0.00967231113, -0.0258265138, -0.0246427394, -0.0088927513, -0.00510683563, 0.000194325927, 0.00329508213, -0.00283131632, 0.0203262903, -0.0116789546, -0.0102064535, 0.00521149905, -0.0161830764, 0.0142486133, 0.0189692788, 0.0182185918, -0.0119388076, -0.0171214342, 0.00288184336, -0.0178865567, 0.00901546, 0.0162696932, -0.0127905486, -0.00230078283, 0.0145878661, -0.013505145, -0.0115057193, 0.00864011701, 0.00451133912, -0.0237188172, 0.0144868121, -0.0149993, 0.00298289745, -0.000102914921, -0.00549300667, -0.0068175355, -0.0659449473, -0.0130070932, -0.0083441725, 0.0204995256, -0.000122144513, 0.0233434737, -0.0128771663, 0.0147827556, -0.0310668852, 0.0137722157, -0.0178143755, -0.00684640836, 0.00465931091, 0.0151436627, 0.00622564787, 0.00654685544, 0.00811319239, 0.00124693417, 0.00611737557, -0.0229103845, 0.00825033709, -0.00155280286, 0.00693663489, 0.00515375379, -0.00321026891, -0.0242096502, 0.0246860478, -0.00864733476, -0.0310380124, -0.0013570108, -0.000266169, 0.00555075146, 0.0231413655, 0.0120615158, -0.00289086602, -0.00685723545, -0.00354410801, -0.0282951184, -0.0147971921, -0.0109282676, -0.0184207, -0.0140609415, -0.0229392573, -0.0184351355, 0.0210192315, 0.0344738476, 0.0149559909, 0.0416342467, -0.00843079, 0.00390140596, 0.00951351225, 0.0220442079, -0.0141619956, 0.00702325255, 0.012884384, -0.00144362845, 0.0141692134, 0.019792147, -0.0139887603, 0.00654685544, -0.00791830197, 3.59497317e-05, 0.0231269281, -0.000359779282, -0.00130016787, 0.00257146335, -0.0318753161, -0.00866898894, 0.012184225, 0.00650354661, -0.0133463452, 0.0098383287, -0.0245128125, -0.00974449236, 0.0159809683, -0.00198138016, 0.00206980226, -0.012263624, 0.0190125871, 0.00383644272, -0.000800762675, 0.0223618057, 0.0224917326, 0.00735167833, 0.00554353325, 0.0194456764, -0.0142774861, 0.000180228, -0.0153746437, 0.00900102407, 0.0104229981, 0.0135267992, -0.0303450711, 0.0434532166, -0.00225386489, -0.00336365448, -0.00880613364, 0.00804822892, -0.0234156549, -0.00897936895, 0.00701964367, 0.00649993727, -0.00181987416, -0.00970840175, 0.0253356807, 0.00864011701, 0.00941967592, 0.00429118564, 0.00889997, 0.012884384, 0.0157644227, -0.00815650076, 0.0136422897, -0.00479284674, 0.0138877062, -0.0192002598, 0.00529450737, -0.00962900184, 0.00295402482, -0.02436845, 0.00428035855, -0.0163418744, -0.00167551136, 0.002988311, 6.12202803e-06, -0.0131586734, -0.00594414026, 0.0199076366, 0.0054172161, -0.0264184, -0.0406814516, 0.00959291123, 0.00388696976, -0.0195322931, -0.0206005797, -0.00442472147, 0.00297928834, 0.00135881535, 0.00345749035, -0.00892162416, 0.0165584181, -0.00724340603, -0.00250108633, -0.00184243091, -0.013815525, 0.00603436725, 0.00195250753, -0.00367223, -0.00275552599, 0.00150588504, -0.0221308246, -0.00879169721, -0.00220875163, 0.0107405959, -0.0148838097, 0.00518262619, 0.00272123981, -0.00873395242, -0.0118738441, 0.000156092327, 0.0222463161, -0.00048948027, 0.00430201273, 0.00556879677, 0.00630143844, 0.00552909728, -0.00504909083, -0.0286127161, -0.0226794034, 0.00384366093, 0.0126606217, 0.00337628624, 0.000893696269, 0.0215966832, 0.0130287474, 0.00934027601, -0.0192291308, 0.0202541072, 0.0329436027, -0.00150949403, -0.00110166904, 0.020802686, -8.32906e-05, 0.0190125871, 0.014927119, -0.0277465396, 0.0131370192, 0.0186372437, -0.000466923608, 0.0148549378, -0.011512937, 0.0137216887, -0.0190703329, 0.00412155921, -0.0415187553, 0.00736250542, -0.0173235424, 0.0052800714, 0.00347734, -0.00729393307, 0.0115851192, -0.00936914887, 0.00603075791, 0.00714957, 0.01904146, -0.00182979915, -0.00387614244, 0.0145084662, -0.00154829153, 0.0118521899, -0.0129060391, -0.0192435682, -0.0194456764, 0.00963622052, 0.00692219846, 0.00684279902, -0.0280785747, 0.0167460907, 0.0104590887, 0.00337628624, -0.00395193323, 0.00359643949, 0.012133698, 0.00117204594, 0.0126894945, -0.0261585489, 0.0137577793, 0.0035368898, 0.00793995708, 0.0159520954, -0.00653602788, 0.0225494765, 0.00570233259, -0.00363974832, 0.00168453401, -0.00500939088, 0.00866177119, 0.00934027601, -0.0128916027, 0.0114407558, 0.013555672, -0.0136711616, -0.012494605, -0.00623286609, 0.0220297705, 0.0204850882, -0.00908042304, -0.0267793089, 0.0245561209, 0.0241952129, -0.00583947729, -0.0244839396, 0.0140248509, 0.0150426086, -0.000610835326, -0.00136693579, -0.0104879607, -0.00692219846, -0.000443013501, 0.0118594086, 0.00350801717, -0.00400246, 0.00815650076, 0.0108272135, -0.0228237659, -0.0250613913, -0.0119893346, -0.0275155585, -0.00717844255, 0.00464487495, -0.00372095243, -0.0240508504, 0.00505269971, -0.0103435982, 0.022535041, 0.000179100156, -0.0201386176, 0.0193590578, 0.00360907125, -0.00695468, -0.0185939353, 0.0149559909, -0.0197055284, 0.0311535038, -0.009029896, 0.0116861723, -0.0162408203, -0.0143063581, -0.00534503441, 0.0119460262, -0.00256785424, -0.0322217867, 0.00643136492, 0.0105240522, -0.0185650624, -0.0192580037, 0.017670013, 0.0104663065, 0.0101487087, 0.0277465396, 0.00807710178, -0.00280785747, -0.0275877416, 0.0129132569, -0.0199365094, -0.0246716104, -0.0185506269, -0.0028060528, 0.00173054961, -0.00219611987, 0.000814296713, 0.0236177631, 0.014696138, -0.00308395131, -0.0162408203, -0.0149704274, -0.0164718013, -0.0108272135, -0.0157355499, -0.00578173203, -0.0109282676, -0.0109860133, -0.009701184, -0.00102768303, -0.00153475755, -0.0214234479, 0.0200086907, -0.00455464795, 0.0203551613, 0.00520428084, -0.00107099186, -0.0018460399, -0.0172369238, -0.0118088815, -0.00508518144, -0.0160531495, 0.015908787, -0.0128916027, -0.000736701651, -0.0120759523, -0.0246283021, 0.00747077772, -0.0175689589, -0.00806266535, 0.0319330618, -0.00547857024, -0.0252057537, 0.00584669551, 0.0141114686, -0.0106034512, -0.00573481433, -0.0215678103, -0.00175310636, 0.0138732698, -0.0238343067, 0.0073083695, -0.0257110242, -0.000274289428, 0.0223618057, -0.00412877742, 0.00383283361, -0.0108199958, -0.00923922285, 0.00953516643, -0.00277176662, -0.0115851192, 0.0214234479, -0.0185217541, -0.00723979715, -0.020023128, 0.00236213719, 0.000571135548, -0.0171791799, 0.0713152513, -0.00867620762, 0.0112242112, -0.00497330027, 0.0157932956, 0.00210950221, -2.97466413e-05, 0.0359463505, -0.0092464406, 0.00448246673, -0.00698716193, -0.0200953092, -0.0178721212, 0.00721453363, -0.0189837143, 0.00273928512, -0.00209506578, -0.0105962334, -0.0309513956, -0.00388336065, -0.00255702692, -0.0190703329, 0.0014734033, -0.0164862368, 0.00287282071, 0.00708821602, 0.00409990503, 0.0125451321, 0.0241952129, -0.0109354863, -0.00580699556, 0.0257543325, 0.00300455187, 0.00317237363, -0.012804985, 0.00429479498, -0.00591526786, 0.00241085957, 0.00262199016, 0.00515736267, 0.00911651365, 0.00764401304, 0.0265050195, -0.00197055284, 0.0225206055, -0.00953516643, -0.00634474726, -0.0238920525, -0.0186083708, -0.026129676, 0.000948283472, -0.0161108933, 0.00601993082, -0.0285694078, -0.0157788601, -0.0126967123, 0.0210769754, 0.015316898, -0.014125905, 0.017049253, -0.00304786069, -0.00894327834, 0.0110076675, -0.00923922285, 0.00618955726, -0.0155623155, 0.00421900442, -0.00760070421, 0.0014346058, 0.00109625538, 0.00402772333, -0.0114479745, 0.0190558955, 0.00353869447, 0.0152158448, 0.00757183135, -0.000867079361, 0.000431735156, 0.00927531347, 0.00124152051, -0.0231124926, 0.00552548794, -0.0375920869, -0.0236899443, -0.0101847993, -0.00130919064, -0.0126389675, -0.00923200417, -0.00385448802, 0.0251913182, -0.00376426126, 0.0440306701, -0.0188826602, 0.00821424648, 0.00740581425, 0.00184333313, -0.00755739538, 0.00592248607, 0.0186949894, 0.00159520947, 0.0205717068, 0.000186995, -0.00948463939, -0.0217987914, -0.0219431538, 0.0252346266, 0.0111448122, -0.0056121056, 0.00856793486, 0.00300274719, 0.0274722502, -0.00242168689, 0.0320485532, 0.0197055284, -0.0201530531, 0.00393027859, 0.0185795, 0.00852462649, 0.00565180555, 0.00662986375, -0.00596940378, 0.0296521299, -0.00437419442, 0.0143207945, 0.017309105, -0.00375704328, 0.0357442424, 0.0343294851, 0.0175400861, -0.0088927513, 0.0185795, -0.00352967181, 0.0200953092, -0.00788943, -0.00208965223, 0.0196766574, 0.0118954992, -0.00911651365, 0.00725423312, 0.0143496674, 0.017670013, -0.00744190486, -0.0149415554, 0.00306771067, -0.00456186617, -0.00150859181, -0.0157932956, -0.0247871019, 0.00778115774, 0.00603797613, -0.0227082763, 0.00231882837, -0.0101992358, -0.00564819667, 0.00110798492, 0.0392955691, 0.00611376669, 0.011022104, 0.000924824504, -0.00941967592, -0.0159520954, -0.00853906292, 0.0264184, -0.017049253, 0.029233478, -0.000861665758, 0.0281651914, 0.00146798976, 0.00520428084, 0.00873395242, -0.00649993727, 0.0147683192, 0.0225927867, 0.00115851185, 0.00633031083, -0.00645301957, -0.0236899443, -0.0186372437, 0.0171358697, -0.00653963722, -0.0114696287, 0.00396276033, -0.00543165207, 0.0429335125, -0.0161108933, -0.0128916027, 0.0199076366, -0.0118594086, 0.0311535038, -0.000947381195, 0.0064241467, 0.00268334453, -0.00206258427, -0.00115219597, -0.00219251076, 0.00690054428, 0.00960734766, 0.0113252653, -0.0390068404, -0.0115057193, 0.00795439351, 0.0148405014, 0.00252454542, 0.0105457064, -0.00305507891, 0.0101270536, -7.9174e-05, 0.00981667358, 0.0196044743, -0.00472427439, -0.00821424648]
05 Mar, 2024
How to Sort a Collection by Date in MongoDB? 05 Mar, 2024 In MongoDB, sorting collections by date is a common requirement for many applications. Sorting by date allows us to display data in reverse order, making it easier for users to understand and analyze. In this article, we will explore different approaches to sorting collections by date in MongoDB, using various techniques and methods along with examples and so on. How to Sort by Date in MongoDB?In many applications, especially those dealing with time-series data or event logs, there is a common need to sort documents based on their date. For example, consider an application that tracks user activities such as logging in, making purchases or interacting with content. Being able to sort these activities can provide valuable output into user behavior over time. Below are the two methods in the MongoDB that allow to sort a collection by date are as follow: Sort by Date AscendingSort by Date DescendingLet's set up an environment to sort a collection by date in MongoDB. To understand How to sort a collection by date in MongoDB we need a document on which we will perform various operations and queries. Here we will consider a collection of events that consists of the below records into it. So we have considered a collection named "events" containing documents with a "timestamp" field representing the date of the event. db.events.insertOne({event: "Geeks Event 1", timestamp: new Date("2024-01-20")})db.events.insertOne({event: "Geeks Event 2", timestamp: new Date("2024-01-21")})db.events.insertOne({event: "Geeks Event 3", timestamp: new Date("2024-01-22")})db.events.insertOne({event: "Geeks Event 4", timestamp: new Date("2024-01-23")})db.events.insertOne({event: "Geeks Event 5", timestamp: new Date("2024-01-24")})1. Sort by Date AscendingWe use the sort() method with a value of 1 for the date field to sort documents in ascending order by date. Example: In this example, a collection named "events" contains documents with a "timestamp" field representing the date of the event. The query retrieves documents from the "events" collection and sorts them in ascending order by the "timestamp" field. db.events.find().sort({"timestamp": 1})Output: Sort by Date AscendingExplanation: In the above Query, We retrieves documents from the events collection and sorts them in ascending order based on the timestamp field. 2. Sort by Date DescendingWe use the sort() method with a value of '-1' for the date field to sort documents in descending order by date. Example: In this example, The query retrieves documents from the "events" collection and sorts them by the "timestamp" field in descending order. db.events.find().sort({"timestamp": -1})Output: Sort by Date DescendingExplanation: In the above Query, We retrieves documents from the events collection and sorts them in descending order based on the timestamp field. ConclusionOverall, sorting collections by date in MongoDB is important for applications to handle ime-sensitive data. Whether you need to display events or analyze trends over time, sorting by date provides valuable insights. By using the sort() method with either ascending or descending order, you can easily organize your data to meet your applications requirements. Understanding these sorting techniques in MongoDB can greatly enhance your ability to manage and analyze date-based data effectively. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?
https://www.geeksforgeeks.org/how-to-sort-a-collection-by-date-in-mongodb?ref=asr10
Languages
How to Sort a Collection by Date in MongoDB?
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[0.0136971185, 0.00648495043, -0.0159140751, 0.0754047558, 0.0182722397, 0.00140942645, -0.0160552822, 0.0290604848, -0.0205315575, 0.0433224328, 0.0201926604, -0.0138948094, -0.00680266693, -0.0111624459, 0.0176791679, 0.00883958396, -0.0148973819, 0.0171002168, -0.00500227278, -0.00713803479, -0.0278743431, 0.0121508976, 0.0159705579, 0.0512300506, -0.0226920303, 0.00226461375, 0.0187664647, 0.00196278305, -0.00664380891, 0.000198352282, -0.00570477964, 0.00624842802, 0.0168036819, -0.0620747767, -0.022409616, 0.000700741773, 0.0453558192, -0.00971507, -0.033296708, -0.0318281502, -0.013548851, 0.048236452, 0.00300065754, -0.0130475648, -0.0248101428, 0.00809824467, -0.0152927628, -0.030077178, 0.00756165711, 0.0103999255, -0.0045292275, -0.0280720331, 0.0165777504, 0.00176067988, -0.028410932, -0.00568359811, -0.0154904528, -0.00100786786, -0.00320187816, -0.0194018986, 0.0624136776, -0.0539412312, -0.0158575922, -0.0243865196, 0.0249513499, 0.0127792703, -0.0223248918, 0.0181733947, -0.0221695639, -0.0237510875, -0.0186393782, 0.0337768123, 0.0409501493, -0.0294841081, -0.00316834124, -0.00496697053, 0.0423622243, 0.0174391158, -0.0253608506, 0.0166765954, -0.0116637321, -0.0410913564, -0.0386908315, 0.0102657788, 0.0691916347, -0.036911618, 0.0199949704, -0.0477281064, 0.0431812257, 0.00180215959, 0.033494398, -0.0499027, 0.0127157271, -0.00927026663, 0.0112259891, 0.00583539624, 0.00541883428, 0.016450664, -0.0192606915, 0.000442376331, 0.012059113, -0.0136688771, 0.0303313527, -0.0538000241, -0.00293534901, -0.0355842672, 0.0329295695, -0.0196843129, -0.00573655125, -0.00775934709, 0.024513606, 0.0131464098, -0.0269282535, 0.0549579263, -0.0410913564, 0.00396792823, -0.00814766809, -0.0450734049, 0.00196454814, 0.0105623147, 0.00126910163, 0.0375046879, -0.00566241704, 0.0371940322, -0.0604932569, 0.0531504713, 0.000538794557, 0.00618135463, 0.0222684089, -0.0116707925, -0.0113248341, 0.0247677807, -0.0412325636, 0.0100116059, 0.0203056261, 0.0218871497, 0.0539977141, 0.0369963422, -0.0310938712, -0.0030942075, -0.0498179756, -0.0253749713, 0.00754753593, 2.43389732e-05, -0.0137253609, 0.00333602517, 0.0214494057, 0.0359514058, -0.00561652472, 0.0069156331, -0.036318548, -0.0391991772, 0.0573866926, 0.0158717129, 0.0276907738, -0.0175238401, -0.024019381, -0.0201502983, -0.027295392, -0.0481799692, 0.0361490957, -0.0251207985, 0.00680619711, 0.00391850574, 0.0281143952, 0.036911618, 0.0134005835, 0.00495285, -0.0478128307, 0.029201692, -0.0149821062, -0.0345675759, -0.0209269393, -0.0137818437, -0.0187382232, -0.00291416794, 0.0187241025, -0.00706037041, 0.0281849988, 0.0176226851, 0.00934087, -0.00262469286, 0.0343134, 0.00467749545, 0.00607544882, 0.00357254758, 0.00538353249, 0.0128216334, -0.00534470053, 0.0358102, -0.0422775, 0.00156563718, 0.0735408217, 0.00371375494, 0.0249795914, 0.00557769276, -0.00824651308, -0.0117908185, -0.0461183414, -0.00450098608, -0.00381260016, -0.0373917222, 0.00236522406, 0.0276766531, 0.0699823946, -0.00675324444, 0.00802058075, -0.0390297286, 0.0663674846, -0.0117555168, -0.0627525747, 0.00208457443, -0.021039905, -0.00431388663, 0.0154339699, 0.0221978053, 0.00874073897, 0.00549649866, -0.0103081409, -0.0160270408, -0.0208704546, -0.000181473588, -9.10677481e-05, -0.00670735212, -0.0249089878, -0.0356972329, 0.0127086667, 0.0227626339, 0.0438025407, 0.0102869598, -0.000919613289, -0.0142760696, -0.0129628405, -0.0186111368, 0.0601543561, -0.0164930262, 0.0134005835, 0.0166624747, -0.0380977578, 0.0169307683, 0.0360078886, 0.0119320266, -0.012256803, -0.0235251542, -0.000878574851, 0.0150950719, -0.0193454158, 0.0184134468, 0.024019381, 0.0493378714, 0.0139724733, -0.0211952329, -0.0420515686, 0.0405547693, -0.00216047349, -0.0202773847, -0.0138242058, 0.00433859788, 0.00546472706, -0.000614252232, 0.020898696, 0.0174955986, -0.0220848396, 0.0201079361, 0.0317151845, -0.0204468332, -0.00676383497, 0.00958092324, 0.0167895611, -0.0128004523, -0.0247395393, -0.01791922, 0.0158575922, 0.0013494133, 0.00563770579, -0.0014164868, -0.0269706156, -0.00630844105, 0.0201079361, -0.0131534701, -0.0338332951, 0.00397145841, 0.0640516803, 0.0125674596, -0.011939087, -0.0189359132, 0.0198961236, -0.0109435748, -0.0473327227, -0.0230732914, -0.0365727209, 0.00286121527, 0.0208845753, 0.00807000324, -0.00987039786, -0.0136688771, -0.00413384708, 0.0419103615, -0.00979979429, 0.0377588607, -0.02304505, -0.00506934617, -0.0152080385, 0.00537647214, -0.0319411159, -0.00106082065, -0.0010361094, -0.0303313527, -0.0243441574, -0.0124686146, 0.00405971287, -0.0121014751, 0.00105376029, -0.0363750309, 0.00437036948, 0.040865425, 0.0413455293, 0.0260951295, -0.0186393782, -0.0129981423, -0.00978567358, -0.0168884061, -0.0620747767, 0.00561299454, -0.00411972636, -0.065859139, -0.0352736115, -0.00458571082, 0.00474103866, -0.0172273051, -0.0330707766, -0.0483776592, -0.00756871747, 0.0372222736, 0.021237595, -0.0213505607, -0.00393262645, 0.00530939875, -0.0150244683, 0.021237595, -0.00250819675, 0.031884633, -0.0189359132, -0.0160835236, 0.0532351956, 0.0174814779, -0.0121791391, -0.00780877, 0.0437743, 0.00156916736, 0.00132381951, -0.0309809055, 0.00407736422, 0.0662545189, 0.0231015328, 0.00124439027, 0.0389167629, -0.0320540816, -0.0155892987, 0.0175379608, -0.0325624309, -0.0473044813, -0.0160694029, -0.00859247055, 0.0129063576, -0.046824377, 0.0104775904, 0.0234404299, 0.0197407957, 0.0235816371, 0.0110989027, 0.00443038251, 0.00439861091, -0.0201926604, -0.0536305755, -0.00324600539, 0.0229744464, -0.00732160406, 0.0205315575, -0.00464219367, 0.00219401019, 0.00387261319, -0.0372222736, 0.0404982865, -0.0153916078, -0.0298230052, -0.00329719298, 0.00542942481, -0.0304725599, -0.00344369584, -0.014184285, 0.0142125264, -0.0200514533, -0.00364315114, 0.0249089878, -0.0166765954, 0.0268294085, 0.0407242179, 0.00412678672, 0.0137183005, 0.0427858457, -0.0216894578, 0.0386343487, 0.00137059449, -0.0201220568, -0.0250925571, -0.00604014704, -0.0238216911, 0.0355560258, 0.00951737911, -0.0368833765, 0.0338615365, -0.00918554235, -0.00980685465, 0.0339462608, -0.0147138126, -0.0122003201, 0.0493943542, -0.00893136859, 0.0549014434, -0.00953856111, 0.0333814323, -0.00270235678, -0.00570477964, -0.0130687458, 0.0124544939, -0.0277754981, 0.00249760598, -0.0251631606, 0.0369681, -0.012673365, 0.0157869887, 0.00600131508, 0.0225508232, 0.0295688324, -0.0457794443, 0.00836653914, -0.00933381, -0.0117625771, -0.0336356051, 0.0214211643, 0.041260805, -0.00280649727, 0.00538706267, -0.0561440662, 0.0259539224, -0.0694175661, 0.0176368058, -0.0191194844, 0.0151091926, -0.0286509842, -0.00270412187, 0.00991276, 0.0059660133, 0.0307267327, 0.00417973939, 0.0219295118, -0.0179615822, 0.0303878356, 0.0354430601, 0.0158717129, -0.0216188543, -0.00164065359, -0.00307479128, 0.0319411159, -0.0352171287, 0.0127298478, 0.0165777504, -0.00716274604, -0.0152504006, -0.00619547535, -0.0136759374, 4.86779463e-05, 0.0268435292, 0.0308961812, -0.00306067057, -0.0332684666, 0.00414443761, 0.0089949118, -0.0274083577, 0.0107105821, 0.0261092503, -0.00597307365, 0.0192324501, -0.0133017385, -0.00650966167, -0.0239911396, -0.0244853646, -0.0364879966, -0.00690857274, -0.0167613197, 0.0150668304, -0.030613767, 0.00794291683, -0.0115719475, 0.011105963, -0.0114660421, 0.00651672203, 0.00693681417, 0.0161117651, -0.0107953064, 0.00730748335, -0.0166624747, -0.00249584089, -0.0346523, -0.00643552793, -0.0169872511, -0.0256573875, 0.00197337358, -0.00881840289, -0.00964446645, 0.0149962269, -0.00257527013, 0.00964446645, 0.0113177737, 0.00126204127, 0.0166059919, 0.0200232118, -0.00715921586, 0.00543295499, 0.0198114, -0.00576479267, 0.004589241, 0.00362903043, 0.00900197215, -0.0051929024, 0.00800646, -0.0116990339, 0.00161859, -0.00499521196, 0.00718745729, 0.017820375, 0.00282238307, 0.0129345991, 0.00132646714, -0.0160552822, -0.0236098785, 0.00167595549, 0.00521761365, -0.0278037395, -0.0328166038, 0.0340027437, -0.0476433821, 0.0277896188, -0.00793585647, 0.0126380632, 0.0113671962, 0.0259821638, 0.00910081808, -0.0139795337, 0.000353459793, 0.0127933919, 0.0205880404, -0.0158575922, -0.0217459407, 0.0344828516, -0.0254596956, -0.00286474545, 0.0120379319, 0.0409501493, -0.0142195867, 0.0244430024, 0.00707449112, 0.0209269393, 0.0469938256, -0.00744163059, -0.0315739773, 0.054590784, -0.0120167509, -0.00794997718, 0.00143502036, -0.0100186663, 0.00391850574, -0.0124686146, 0.00234051282, -0.00296535576, 0.027436601, 0.0244994853, 0.0415997021, 0.0179757029, -0.0294558667, 0.0306420084, 0.0117625771, -0.00530939875, 0.00566241704, 0.00115878333, -0.051851362, -0.0372505151, 0.0243865196, -0.0221130811, 0.0152362799, -2.27531473e-07, -0.0148550197, 0.00200161501, 0.00958092324, 0.0506652184, -0.00268470589, -0.00187805854, -0.00594483223, -0.0144455181, 0.0241605882, 0.0211105086, -0.0120308716, -0.0059660133, -0.00165742205, -0.0163235776, 0.00843714271, -0.00614605239, -0.027394237, 0.0234545507, -0.0461748242, -0.0107529443, -0.000537912, -0.00913612, -0.0280014295, -0.00241464679, 0.013450006, -0.00250290148, -0.0344828516, -0.0300206952, -0.00410913583, 0.0431812257, 0.00428211456, 0.00813354645, 0.0118826041, 0.0339462608, 0.0222260468, -0.00773110567, 0.00166801258, -0.0437178165, -0.0213929228, -0.0262928195, -0.0258833189, -0.00203162152, 0.00460336171, -0.00285238982, -0.0161400065, -0.00950325839, -0.0220989604, -0.00402441109, -0.0155186942, 0.0184416883, 0.0371375494, 0.114773385, -0.00519996276, 0.0142407678, -0.00347899762, 0.0408089422, 0.0118543617, -0.0175238401, -0.0243723989, -0.00719451765, 0.0143890353, 0.0162812155, -0.0267729256, -0.0374764465, -0.00474103866, -0.00732160406, 0.0201079361, 0.0406959765, -0.017142579, -0.0454405434, 0.0557204448, 0.0286509842, 0.0154622113, -0.00401382055, 0.0224519782, -0.00152062729, 0.0201220568, 0.028707467, 0.00246936455, -0.0244994853, -0.0106470389, 0.016351819, 0.00886782538, -0.00811942574, -0.0219012704, 0.0172555465, 0.0369681, 0.00464219367, -0.0131322891, 0.00194336695, 0.0124544939, 0.020065574, -0.0517666377, -0.0174532365, -0.0103716841, -0.0410348736, 0.00304125459, -0.0413455293, 0.0108588496, -0.00421857135, 0.0334096737, 0.00778052816, 0.00530586857, -0.0133017385, 0.00458571082, 0.0144384578, 0.0174532365, -0.058008004, -0.00489989715, 0.0190206375, -0.0229038429, 0.00730748335, -0.0275636874, 0.0378153436, -0.00386908301, 0.0412890464, -0.00412325654, -0.00640375633, -0.00636139372, 0.0433789156, -0.0243723989, 0.0139936544, 0.00162741542, 0.0097503718, -0.0191053636, -0.0119461473, -0.0221272018, 0.0248948671, 0.0118967248, -0.029201692, 0.0193171743, -0.0201220568, -0.0120661734, -0.00546472706, 0.0126098217, 0.0198396407, -0.0111765666, 0.00106258574, 0.0262363367, 0.0027694304, 0.0116143096, 0.00713803479, -0.0349629559, -0.0206021611, 0.00836653914, 0.0121155959, -0.00627666945, 0.00257703522, 0.00698976684, 0.00890312716, -0.0113248341, -0.00545413606, -0.00561299454, 0.0299359709, 0.00526350643, -0.00816178881, -0.0189076718, -0.0351606458, 0.00781583, 0.00321599888, 0.0189782754, -0.024612451, -0.00520349294, -0.024414761, -0.0219436325, 0.0168742854, 0.0255161785, 0.00154533866, 0.0105411336, 0.0156881437, -0.0102092959, 0.018159274, -0.0198820028, -0.0191900879, -0.0556922033, -0.00276413513, 0.00935499091, 0.0133229196, 0.00139795337, -0.00536235142, 0.0407524593, -0.0256715082, -0.000626607914, 0.00792173576, 0.000166690937, -0.00681325747, -0.00241111661, 0.0144878803, -0.00472691795, 0.0121508976, -0.0165636297, 0.00977155287, 0.030811457, -0.021435285, 0.00232109684, -0.013012263, 0.0236804821, 0.0275778081, 0.00413384708, 0.0133582214, 0.0012073234, 0.0220989604, 0.00955974218, -0.00253290799, 0.00419386, -0.0256150253, -0.0264057852, -0.0135417907, -0.00703565916, -0.0283968113, 0.0297947638, 0.00594836241, -0.00121085357, -0.0278461017, -0.0203338675, -0.0257844739, 0.00431741681, 0.00505875563, -0.00488577643, 0.020898696, -0.02153413, 0.0129840216, -0.00142266462, -0.00730042299, 0.0174955986, 0.00352665503, 0.00647436, -0.00438449, 0.0226496682, -0.035301853, 0.018752344, -0.0082606338, -0.0223672539, 0.0052529159, -0.0241747089, 0.00732866488, 0.0235110335, 0.0219012704, 0.0343698822, -0.0170296133, -0.0624136776, 0.0415432192, -0.0100822095, 0.0108588496, -0.0225931853, 0.00661203684, -0.0162529722, 0.033099018, 0.0242876746, 0.000210707934, -0.00525997626, 0.00421504118, -0.00354430592, 0.0139936544, -0.0347935073, -0.0119532077, 0.00104493485, 0.0217600614, 0.0264905095, -0.0174249951, -0.0292864162, 0.0184275676, -0.00245171366, -0.000912552874, -0.0419668444, -0.00394674717, 0.00148003013, 0.0250784364, 0.0121155959, 0.00214458746, -0.0112754116, -0.0175097194, 0.0171990618, 0.010767065, -0.0119320266, -0.000332058058, -0.0345675759, -0.0238640532, 0.00378435873, -0.00190100481, 0.024612451, -0.00155857683, 0.0040385318, -0.00180480722, -0.0348499902, 0.0330425352, 0.0079146754, -0.0326189138, 0.0148550197, 0.0229885671, -0.0266458392, -0.0112542305, -0.00417620922, -0.00264057866, -0.0538282655, -0.0192748122, -0.0104352273, -0.0171002168, 0.0218165442, -0.00223107706, -0.0388320386, -0.0309526641, 0.00947501697, 0.0173120294, 0.00190453499, -0.0293146595, 0.0172555465, -0.00552474, 0.0107600046, -0.00446568429, 0.0296535566, -0.000105519444, 0.0281002745, -0.00133882277, 0.0160129201, -0.0119108455, -0.00204221229, 0.0039997, 0.000810618803, 0.0209269393, -0.0074557513, -0.0126310028, -0.00900903251, -0.036911618, -0.033692088, -0.0171143375, -0.00243582786, -0.0115578268, 0.000442155695, 0.0282697231, -0.000886076479, 0.0216047335, 0.0192183293, -0.00207221881, -0.0308396984, -0.00216400367, 0.0134853078, -0.00283650379, 0.000275133818, 0.0166201126, 0.0153068835, -0.0203621089, 0.00234051282, 0.00625901856, -0.0248101428, 0.0342286751, -0.0234263092, -0.0418821201, 0.00566241704, 0.0205174368, 0.00404206198, 0.00483988412, -0.0255020577, 0.00194513204, -0.0366856866, -0.00227167434, -0.000409280852, 0.0121297166, 0.00276237, 0.0227908771, 0.0433506742, -0.00268823607, -0.00536941178, -0.0238075703, -0.0157022644, 0.0362903066, 0.00243406277, 0.0078652529, -0.00727924192, 0.0147844162, 0.00103522686, 0.000649554073, -0.00644611847, 0.0192465708, -0.00670029176, 0.0203338675, -0.00424681278, -0.016747199, 0.0069156331, 0.00198572921, 0.0235675164, -0.0133723421, -0.0128286937, 0.000984039158, -0.00330425333, -0.0209693015, -0.0245983303, -0.00840184093, -0.00553180045, -0.014600846, -0.00850068592, 0.00546119642, 0.0519925691, -0.0429270528, -0.00907257665, -0.0235816371, -0.00860659219, 0.00751929451, 0.0180886686, 0.00469867652, 0.0408371836, -0.0442261621, -0.0320540816, 0.0282979645, 0.0347370245, -0.0162388515, 0.00220989599, 0.00904433429, -0.00686268043, 0.00268470589, 0.0120238112, -0.0122003201, 0.0487165563, 0.0299642123, 0.0179898236, -0.0390014872, -0.0108164875, 0.0021922451, -0.00835241843, 0.0171143375, -0.00974331144, -0.0335791223, 0.0213081986, 0.0306420084, -0.000907257607, -0.00152680511, 0.00289122178, -0.0237934496, 0.00213576201, -0.0388602801, 0.00627313927, -0.0244571231, 0.00805588253, -0.00614958256, -0.0115295853, -0.0130334441, -0.0157446265, -0.0110424198, -0.0179615822, -0.0248948671, 0.0136406356, 0.0111695062, -0.0104775904, -0.00213046675, -0.021632975, -0.0546755083, 0.0193595365, -0.00976449251, 0.0214776471, 0.0113883773, 0.0136335753, 0.0261798538, -0.0493661128, -0.0230168086, -0.00403500162, -0.00876192, -0.0117060943, 0.00544001535, 0.00719804782, 0.0065696747, 0.00855010841, 0.00905845501, -0.0211528707, -0.00628726, -0.0326753967, -0.0270835813, 0.0460901, 0.0206445232, -0.00765344175, -0.0203197468, 0.0194866229, -0.0126098217, -0.00230521103, 0.0111695062, 0.0172273051, -0.00844420306, 0.00123821246, -0.00396086788, -0.0134147042, -0.0190347582, 0.00224519777, -0.0088325236, -0.00135823875, 0.00991276, 0.010767065, -0.00247642491, -0.0228191186, -0.0182298776, 0.0209975429, 0.0113248341, 0.00679560658, 0.0301619023, -0.00446921447, -0.0154198492, 0.00625901856, -0.00824651308, -0.00818297, -0.0415997021, -0.00790055469, -0.00331131369, 0.00323364977, -0.0160694029, -0.00749811344, 0.00701094791, 0.0105128922, 0.0674971417, -0.00618841499, 0.00877604075, -0.0276201703, -0.00584951695, 0.0172555465, -0.0046210126, 0.000319923041, -0.00472338777, -0.0145726046, 0.0335226394, 0.0206021611, 0.00223813741, -0.00804176182, -0.0139936544, -0.0124050714, 0.00852892734, -0.00615664292, 0.0179757029, -0.0425881557, -0.0104140462, 0.000342648622, -0.00234051282, 0.0223672539, -0.00739220809, 0.031489253, 0.00972213, -0.00418679975, -0.00367845315, -0.0157446265, 0.0137394816, -0.0169025268, 0.0038549623, -0.0094044134, 0.0177497715, 0.013548851, -0.00782289077, -0.00383731141, -0.0506652184, 0.0215058886, -0.00660497649, 0.024118226, -0.0180745479, 0.012157958, -0.0196560714, 0.0107247028, 0.00422916189, -0.0120520527, -0.00987039786, -0.00785113219, -0.0251490399, 0.0183287226, -0.0353865772, -0.00918554235, 0.0183428433, 0.0168036819, 0.0343134, -0.0261374917, -0.0115437061, -0.0061601731, -0.00533764, -0.013012263, 0.0234827921, -0.0512300506, -0.020164419, 0.00797115825, -0.0299359709, -0.0180604272, -0.000935499091, -0.0126027614, -0.0200373325, 0.00936911162, 0.00958092324, 0.00760401925, -0.00350194378, -0.00217282912, -0.0140148355, -0.00731454371, 0.00584598677, -0.0106046768, -0.018159274, 0.00876192, -0.00855716877, 0.0140218958, -0.0152504006, -0.00600484526, -0.0069968272, -0.000503492658, 0.00366786262, 0.0204609539, 0.0150527097, 0.0131040476, -0.0177921336, -0.034906473, -0.00176421, -0.0144313974, 0.0389450043, 0.024217071, 0.015476332, 0.0180886686, 0.0125533389, -0.00139354065, 0.0175238401, 0.00346134673, -0.00256291451, -0.0161400065, -0.0200938154, 0.00517172134, 0.00639669597, 0.0272812713, 0.0371940322, -0.00527762715, 0.00746281166, -0.0105270129, 0.00943265483, -0.0169731304, 0.00855716877, 0.01257452, -0.000394277566, 0.00826769415, -0.0205597989, 0.00274648424, 0.0263634231, -0.0104211066, 0.00930556841, -0.0106540993, 0.00353548047, 0.0156034194, 0.00860659219, -0.0142337075, 0.0113389548, 0.0102163563, -3.16613477e-05, 0.0087831011, -0.0095879836, -1.2652129e-05, -0.0403005965, 0.0201785397, -0.00207045372, 0.0312068388, 0.0135629717, 0.0129910819, -0.0103222616, -0.0138806887, 0.017820375, -0.0242876746, -0.0268152878, -0.00122762192, -0.0135700321, -0.000485400466, -0.0192748122, 0.0110636009, -0.00634727301, 0.0124827353, 0.00995512214, -0.0268717706, 0.0187241025, -0.0103010805, 0.00106523337, 0.00749811344, -0.00777346781, 0.04569472, 0.018653499, -0.00569771929, -0.00656261435, -0.0175662022, -0.00435624877, -0.00440214109, 0.0168601647, 0.0375611708, -0.0100469077, -0.0115931286, 0.00538706267, 0.00907963701, 0.0158434715, 0.00369963422, 0.0364879966, 0.0290887263, 0.0165636297, -0.00223284215, -0.0155328149, 0.00635433337, -0.0106046768, -0.0122709237, -0.0134570664, -0.000286606926, -0.0147985369, 0.0174955986, 0.0111342045, -0.00678854622, -0.00470573688, -0.00312068383, -0.0122003201, 0.0215482507, -0.0104069859, 0.000486724311, -0.000833123748, -0.0196984336, 0.00253114291, 0.0259680431, -0.0314327702, 0.0116990339, 0.00714156497, 0.0361208543, -0.00492460839, -0.0174249951, -0.0084865652, 0.000583363115, 0.00331837428, 0.00336603168, -0.016351819, 0.0138595076, 0.00545766624, -0.0123838903, 0.0329860523, -0.00954562146, 0.020799851, 0.00879722182, -0.0158858337, -0.0125392182, 0.0148550197, 0.00973625109, -0.00680266693, -0.00572596071, -0.0332119837, -0.00540471356, -0.000508346653, -0.00661203684, 0.000510553073, 0.00125586346, -0.0170154925, 8.70411313e-05, 0.0119461473, -0.00136353401, -0.00382672087, -0.0016309456, 0.0165071469, -0.006823848, -0.00770286424, 0.021632975, 0.0299642123, 0.00594130205, -0.0235675164, 0.00226461375, 0.00416914886, -5.36974294e-05, 0.0130616855, -0.0102587184, -0.0232003778, -0.00136618176, -0.00456806, -0.0206021611, 0.00862071291, -0.0315739773, -0.0102869598, 0.00494578946, -0.00166977767, -0.00112259889, -0.0127157271, 0.00504463492, 0.00167242531, 0.0255161785, 0.0138736283, 0.0114095593, 0.00234051282, 0.0384931415, -0.0281567574, 0.00758283818, -0.0354713, 0.0187947061, 0.00755459629, 0.0164647847, -0.0194866229, -0.014085439, -0.00753341522, -0.0155610563, 0.00948207732, -0.00516466098, 0.00452569732, -0.0128004523, -0.0164365433, 0.0206586439, 0.0108729703, 0.0119108455, -0.00787937362, 0.0194018986, -0.0279590674, -0.0185264125, -0.0099763032, -0.019726675, 0.0388885215, -0.029004002, -0.0268435292, 0.0103152012, -0.00567300757, 0.0282132402, 0.00857835, -0.00564123597, 0.00222754688, 0.00744163059, 0.0119461473, 0.0298230052, -0.047219757, 0.0169307683, 0.0191336051, 0.0197972786, 0.00605073757, -0.013231134, 0.0212658364, 0.010569375, 0.0189076718, -0.0189641546, -0.0108588496, 0.000601896609, -0.0195148643, 0.00915730093, -0.015476332, 0.00582833588, 0.0031912874, -0.0131393494, -0.00245524384, -0.00515054027, 0.00563064544, 0.0035690174, -0.0201926604, 0.00600131508, -0.0144737596, -5.23184499e-05, 0.00325836102, -0.0232003778, 0.0281285159, 0.00410913583, -0.00423622224, 0.00452569732, -0.00420445064, 0.00477987109, -0.00783701148, -0.00984921679, 0.0101245716, 0.00505522545, 0.00902315322, 0.0354713, -0.0191053636, -0.00140942645, 0.0122426823, 0.00886076503, -0.00535882125, 0.00176156242, -0.00678854622, -0.00699329702, -0.0142266471, -0.0115295853, 0.0218589082, -0.00822533201, -0.00312068383, 0.00368551351, 0.00958092324, 0.0151515556, -0.00376670761, 0.00864189398, -0.00898079108, 0.0247112978, -0.0193030536, -0.0166624747, 0.00746987201, 0.0151939178, -0.00335897133, -0.00634021265, 0.0282132402, 0.0201079361, -0.00241111661, -0.012496856, 0.0346805416, -0.000211700797, 0.00155151647, 0.0202773847, 0.0132946782, -0.0048257634, 0.00629785052, -0.0239346568, -0.0106540993, -0.0127510289, -0.00189923972, 0.00592365069, 0.00220460072, -0.0109929973, -0.0111271441, 0.0134570664, 0.0240052603, 0.00876898, -0.00649907114, -0.00366786262, 0.0133370403, 0.00906551536, 0.0327601209, 0.00816884916, -0.0252478849, -0.00149062078, -0.00119761541, 0.0266882014, 0.00104669994, 0.00840184093, 0.0132876178, 0.00488577643, 0.00214988273, 0.0295405909, -0.0164789055, 0.00784407184, -0.00913612, -0.0216188543, 0.0273659956, -0.0065696747, -0.0127722099, 0.0028718058, -0.0148691405, 0.0153210042, -0.00264234375, 0.0297100395, 0.00556004187, 0.0303595942, -0.000198021327, 0.00431741681, 0.0121367769, -0.0222684089, 0.0291169677, -0.0103787445, 0.0360643715, 0.0162953362, 0.00758283818, -0.00783701148, 0.0199667271, -0.00299359718, 0.00869131647, -0.026900012, 0.000471279724, 0.0174249951, 0.0219577532, 0.00678148586, -0.00892430823, 0.0222260468, -0.00363962096, 0.0252196435, -0.0135700321, 0.00196278305, -0.0150668304, -0.00385849248, 0.01332998, 0.0221413225, 0.0172273051, 0.00867719576, -0.00989863928, 0.0264199059, 0.00712744426, -0.00376670761, -0.00790055469, -0.00252584764, 0.0184134468, -0.00690504257, 0.0258550774, -0.00124086009, -0.0109576955, -0.030077178, -0.0237087235, 0.000758989831, 0.0203762297, -0.0260386467, 0.00821827166, 0.000326542126, 0.00488577643, 0.0115790078, -0.00806294288, -0.0402441137, -0.0148832612, -0.00496697053, -0.0164224226, -0.00932674948, 0.0102445977, -0.00307479128, -0.0121861994, -0.0142195867, -0.000500845, 0.0116637321, -0.0162812155, 0.0125250975, 0.00983509608, 0.031686943, -0.0178909786, 0.00704978, 0.00969388895, 0.0202067811, 0.0331272595, 0.0170154925, -0.00510111777, 0.0022240167, 0.0203197468, 0.0144596389, -0.0193030536, 0.00659085577, -0.0035690174, -0.028608622, 0.0246265717, -0.0107458839, 0.00493166875, -0.0104140462, 0.00587069802, 0.0152786421, 0.0156881437, 0.00185511238, 0.00839478057, -0.00556710223, 0.0101951752, -0.0253326092, 6.94453629e-05, 0.0151374349, 0.0160835236, -0.0248666257, -0.0110636009, -0.0182439983, 0.0082606338, 0.000540118373, 0.0158717129, -0.00723688, -0.00358843338, -0.00160888198, -0.00136794685, 0.00425740331, 0.0225649439, -0.00238993554, 0.00525644608, -0.0192042086, -0.00941853411, -0.00757577782, -0.00154357357, 0.00742751, -0.00999748521, -0.0290604848, -0.00159476115, -0.00967976823, 0.014184285, 0.0247960221, -0.00817590952, -0.00202103099, -0.0120167509, 0.00384084159, -0.0103716841, 0.0135135492, 0.0297665223, 0.00431035645, -0.0227202717, 0.0137253609, 0.014403156, -0.0165636297, 0.00182334066, 0.0178486165, -0.00870543718, 0.00694387453, -0.0208563339, 0.00870543718, 0.0131675908, 0.0268576499, 0.00242170715, -0.00146414433, 0.0029741812, 0.00793585647, 0.00171567011, 0.00360431918, -0.00398204895, 0.0171143375, 0.0103363823, -0.016351819, 0.00207574898, 0.00297771138, 0.0133652817, 0.010329322, 0.0141984057, 0.0174673572, -0.00723688, 0.0120308716, 0.00953856111, 0.00979979429, 0.0041620885, -0.000971683476, -0.00863483362, -0.00798527896, 0.00714156497, 0.0115366457, 0.00515407044, 0.00738514774, -0.0110706612, 0.0203479882, -0.0102587184, -0.00614958256, -0.00996924285, -0.0050481651, -0.0144878803, 0.00854304805, 0.0275778081, 0.00659791613, 0.00383378123, -0.0180039443, -0.00586716784, -0.0229885671, 0.0124191921, -0.0179757029, -0.0174814779, -0.0248242635, -0.0347652659, 0.0104352273, -0.023624, 0.00656261435, 0.00222931197, -0.0509758741, -0.000771786785, -0.00176774024, 0.0184699297, -0.0130616855, 0.0296817981, -0.0162670929, -2.68625045e-05, -0.00617782446, -0.0021057555, 0.0103434427, 0.0113460151, -0.00386202266, 0.0013255846, -0.00317363651, -0.00468455581, -0.0061601731, -0.00230697612, -0.0301901437, 0.000945207139, 0.0236946028, 0.00163359323, 0.0120732337, -0.00803470146, -0.00128145725, -0.025727991, -0.0245559681, -0.012157958, -0.0176226851, -0.0134217646, -0.0129981423, -0.00234933826, 0.00849362556, 0.0119743887, 0.00429623527, 0.000373979, 0.00538353249, -0.0241041053, 0.0119955698, 0.0174108744, -0.0180463064, -0.0136123942, -0.0113177737, 0.0119179059, -0.0194583815, 0.0032442403, 0.00804882217, -0.00208104425, -0.012496856, 0.0161541272, -0.0100539681, -0.0176650472, 0.00315245544, 0.0134853078, -0.00434918841, 0.0157163851, 0.0200796947, -0.0143466732, 0.00430682627, 0.00907257665, -0.0156316608, -0.0155186942, 0.0162670929, -0.00675677462, 0.0166624747, 0.0178344958, 0.00955268182, -0.00601896597, 0.0029053425, -0.00510111777, -0.00674618408, 0.00144472835, 0.0165918712, 0.00670735212, -0.0301619023, 0.00305184512, -0.00272706803, -0.00629785052, 0.018455809, 0.0141701633, 0.00358843338, -0.00615311274, 0.00457865046, -0.0038867339, -0.0145726046, 0.00796409789, 0.0185264125, 0.00891018752, 7.69470062e-05, 0.0349347144, 0.0104422877, -0.000485841738, -0.024414761, 0.00284885964, -0.00983509608, 0.0178909786, -0.00672853319, 0.0204609539, 0.0165918712, -0.00773816602, 0.000196256238, 0.00809118431, -0.00814060774, 0.00588834891, 0.00420798082, -0.0159846786, 0.0276484117, 0.0264481474, 0.0232709814, -0.0243441574, -0.0164647847, -0.00388320372, -0.00869131647, -0.0178486165, -3.2095727e-06, -0.00192748115, -0.0287921913, -0.00120202813, -0.00704978, 0.00247819, 0.0403005965, 0.0207292475, -0.00191159535, -1.28038164e-05, 0.0199526064, 0.0225649439, 0.00770286424, -6.29917413e-05, 0.00509405741, -0.0044480334, 0.0159423165, -0.0140360165, -0.0256150253, 0.00705331, 0.0202067811, 0.0153492456, -0.0177780129, -0.00386202266, 0.0177638922, -0.00180657231, -0.0038055398, 0.0242029503, -0.0110282991, 0.0107811857, -0.00971507, -0.00639669597, 0.00122585683, 0.00108023675, -0.0155469356, -0.0192465708, 0.000840625376, -0.0180604272, -0.0109223928, -0.00230697612, 0.00436330913, -0.0158575922, 0.0152786421, -0.0165353883, 0.00759695889, 0.00593777187, -0.0148832612, -0.0170296133, -0.0101598734, 0.000307788025, 0.0157587472, -0.00547531759, 0.0149679855, 0.000954032585, 0.0119249662, 0.0277754981, -0.00929850806, -0.0104140462, 0.0238922946, -0.00083930156, -0.00387614337, 0.0116919735, 0.0105199525, 0.0163659398, 0.0176368058, 0.00437743, 0.00362550025, 0.00966564752, 0.00273589371, 0.018018065, -0.00199102447, 0.01811691, 0.0120308716, 0.00751929451, 0.00269000116, 0.00425034296, 0.00161770743, -0.0158011094, -0.00648848061, -0.00737102702, -0.0156457815, -0.00871249754, 0.013450006, -0.011720215, -0.00803470146, -0.00141736935, 0.00507640652, -0.0123415282, -0.0080276411, -0.00810530502, 0.000899314706, -0.00689798221, 0.00572596071, 0.0110212388, -0.00502345385, 0.0142619489, -0.0254173335, 0.00600484526, -0.00500580296, -0.00881134253, -0.0200232118, 0.00206339336, -0.00750517379, -0.00318775722, 0.00129646051, -0.00682031782, -0.0111342045, -0.013986594, -0.0394815914, -0.0236098785, -0.0240758639, 0.00298300665, -0.00977155287, 0.00544001535, 0.0159281958, -0.00173420354, 0.0165918712, 0.00132205442, -0.020065574, 0.00325483084, 0.00544001535, 0.00454334868, 0.0141560426, 0.0062025357, 0.014403156, 0.0232709814, 0.0110212388, -0.0174814779, -0.0100116059, -0.00522467401, 0.015476332, -0.00361490971, -0.00790761504, 0.0109012118, -0.00429976545, -0.0078652529, 0.00118084694, 0.00809118431, -0.0126310028, -0.0150668304, -0.0099057, -0.0073427856, -0.00357960793, 0.00857128948, -0.011840241, 0.00277472567, -0.0251207985, 0.0143184317, -0.0113460151, -0.00867719576, 0.0157869887, -0.00363256061, -0.00130793371, -0.0262645781, 0.00450451626, 0.00877604075, 0.0118543617, -0.00859953091, -0.00556004187, 0.00609309971, -0.0211105086, -0.00775228674, -0.0077099246, 0.00845126342, 0.0120661734, 0.00970801, 0.0161117651, 0.00696152542, 0.00189217937, 0.0157446265, 0.0361773372, 0.0100257266, 0.0115366457, -0.0192465708, 0.00649907114, 0.0115154646, 0.0140077751, 0.000908140151, 0.00118172949, -0.000784583681, 0.0246265717, 0.0125180371, 0.00759695889, -0.00647789, 0.0221695639, -0.00813354645, 0.0198678821, 0.00189041428, -0.0152221592, -0.00513994973, -0.00224872795, 0.00814766809, 0.0249654707, -0.0193030536, -0.00749105308, 0.00676736515, 0.00564829633, -0.0133229196, -0.00318246195, 0.00530586857, -0.00673559355, -0.00560593419, 0.0124403732, 0.0169166476, 0.00383025105, 0.000520702335, 0.0022240167, 0.00248701544, -0.00336779677, 0.0135206096, -0.00859247055, 0.0194018986, 0.00984921679, 0.00652731257, -0.0297382809, -0.0099763032, -0.0287921913, 0.0118967248, -0.00659085577, 0.0140430769, 0.0157022644, -0.00171302236, -0.0152362799, -0.0193171743, -0.00410207547, 0.0192324501, 0.00748399273, 0.00730748335, -0.00235110335, -0.0139089301, -0.0136900581, 0.0172979087, 0.0101175113, -0.00342957512, 0.00378435873, -0.00208810461, -0.00468102563, -0.00214105728, 0.0108800307, -0.00144119817, -0.00198043394, 0.0104422877, 0.013965413, 0.00919966307, -7.30169177e-06, -0.012673365, 0.00910787843, -0.00496344035, 0.0111271441, -0.0251066778, 0.0013176417, -0.00485753501, -0.0177497715, 0.014205466, -0.00763932103, 0.00474809902, -0.00880428217, -0.0182016362, 0.00900903251, -0.000203647563, 0.00498462142, 0.00422563171, 0.00567300757, 0.000602337881, -0.00706037041, 0.0107105821, -0.00242170715, 0.00841596164, 0.0120873544, 0.0103928652, -0.000112745292, -0.000306684844, -0.0123344678, 0.00674618408, 0.00262116268, 0.0100822095, 0.00477281073, 0.00118525967, 0.00494578946, -0.00236169389, -0.00598366419, -0.0124686146, 0.0120520527, 0.0121791391, -0.0152786421, 0.00478340127, 0.00797115825, 0.00698976684, 0.0113460151, 0.000740456337, -0.0210963879, -0.00680972729, 0.00931968912, 0.0122497426, 0.00939029269, 0.0132946782, 0.00871249754, -0.0032442403, 0.0335791223, -0.00593424169, -0.0148267783, 0.0235957578, -0.0294276252, 0.0154057285, -0.00114201498, 0.000241597052, -0.00197690376, 0.00600837544, -0.00983509608, -0.0031418649, 0.00480105216, 0.0152362799, 0.00288945669, 0.00080223463, 0.0192324501, 0.0107882461, 0.0248807464, 0.00166095223, 0.00512582902, -0.0205739196, 0.000528203964, 0.00659085577, 0.0131252287, 0.0229038429, -0.00182510575, -0.0144172767, -0.00544001535, 0.0106399786, -0.00983509608, 0.00619194517, 0.0114589818, 0.0150668304, 0.0165212676, -0.0152786421, -0.016450664, -0.0145867253, -0.00795703754, -0.0158011094, 0.00261057192, 0.0227485131, -0.00620606588, -0.0132240737, -0.0182016362, -0.00979273394, 0.01621061, -0.00677442551, -0.0144525785, 0.00012112948, 0.0178486165, -0.00658026524, 0.0114307404, 0.027196547, 0.016944889, -0.0119179059, -0.0151233142, -0.00234757317, 0.00261939759, -0.00510111777, -0.00512229884, 0.000597483886, -0.0294276252, 0.0116143096, 0.0209269393, 0.00814766809, 0.0153492456, 0.00156387209, -0.00442685233, -0.0310373884, -0.0213929228, 0.00448333519, 0.0120520527, -0.000219643713, 0.0196984336, 0.0240052603, -0.0445933, -0.0236663613, 0.00306420075, 0.00618135463, 0.000219643713, -0.00691210292, -0.0134076439, -0.0110565405, -0.0078017097, 0.00706390059, 0.00600484526, -0.000799145724, -0.0135135492, -0.0025152571, 0.0217741821, -0.013111108, 0.00388320372, 0.0128569352, -0.00192395097, -0.024217071, 0.0122709237, 0.00860659219, -0.00537647214, 0.00372081529, -0.00677442551, 0.0221978053, 0.0136759374, -0.00166271732, -0.0052529159, 0.0125462785, -0.00483282376, 0.0048751859, -0.0083735995, -0.00506581599, 0.0301619023, 0.00876898, -0.025389092, -0.00857128948, 0.00511170831, 0.00686974078, 0.0103928652, -0.0162388515, -0.00727924192, -0.00389732467, -0.0282556023, -0.000840184104, -0.024315916, 0.0156457815, -0.00643199775, -0.00253643817, -0.0005101118, 0.00794291683, -0.0212799571, -0.00432094699, -0.0196843129, 0.00981391501, 0.0092420252, -0.0208704546, -0.00908669736, 0.0247254185, -0.00750517379, -0.0236663613, 0.00237934478, -0.0174532365, -0.0171849411, -0.0115931286, -0.00431741681, 0.0201079361, 0.0112895323, -0.0181310307, -2.09466853e-05, -0.00903727394, -0.00982803572, -0.000488048128, 0.0251066778, -0.00845832378, 0.00615311274, 0.0024940758, -0.0250501949, 0.0144737596, -0.0088325236, -0.0114660421, 0.0269706156, -0.0155610563, 0.0139018698, -0.00890312716, -0.0265611149, 0.00207927916, -0.00616723392, 0.00474809902, 0.0048751859, 0.0135135492, 0.00386908301, -0.0110141784, 0.00218694983, 0.0109082721, -0.009178482, -0.0239628982, 0.0086701354, 0.00175538461, -0.00955974218, 0.00276237, -0.0189076718, -0.00595189258, -0.0187947061, 0.00611781096, 0.00298477174, -0.00427505421, 8.74272446e-05, -0.00588481873, -0.0132028926, -0.0154057285, -0.00882546324, -0.00258586067, 0.0299924538, 0.0457229614, -0.00493166875, -0.0208422132, -0.0215764921, -0.00879722182, -0.00727924192, -0.00262998813, 0.0141489822, -0.00236345897, 0.0123556489, -0.00618135463, -0.0193877779, -0.00788643397, -0.00152327493, -0.00704978, 0.0125250975, -0.0170154925, 0.0243582781, 0.00367492298, -0.0197831579, -0.0150103476, -0.0122638633, 0.0022946205, 0.0409501493, 0.0130193233, -0.0292299334, -0.0117131546, -0.0120661734, -0.00117643422, 0.00735690631, 0.0210540257, 0.00872661825, 0.0047516292, -0.0187805854, 0.0200232118, 0.00946795661, -0.00516466098, -0.0133864628, -0.0124121318, 0.00010077576, 0.0094538359, -0.000840184104, 0.0187664647, 0.00865601469, 0.00514701, -0.0103999255, -0.0104634697, 0.00465278421, 0.0149256233, -0.0232851021, 0.00925614592, -0.00116054842, -0.0166059919, -0.0142831299, 0.041063115, -0.00446215412, -0.0180321857, 0.000355666154, 0.0242453124, -0.0147138126, 0.0139371715, 0.0120944148, -0.00630138069, 0.000255276536, -0.0110494802, 0.00914318, -0.0109153325, -0.000166470301, 0.00115701824, 0.0186817404, -0.0056200549, -0.00747693237, -0.00612487132, -0.000806647353, -0.00464219367, -0.0118826041, -0.000976978801, 0.00773110567, -0.0122073805, -0.0031965829, 0.0186111368, -0.0137747834, 0.00820415094, 0.00478340127, -0.00550355902, 0.0137112392, -0.00381260016, -0.00364668132, 0.0205880404, 0.0104564084, -0.0387190729, -0.00766756246, 0.0383519344, 0.0146996919, -0.0290887263, 0.0114660421, 0.00834535807, 0.00744869094, -0.0110636009, -0.00715215551, -0.0182298776, -0.0253326092, 0.00118967239, 3.33712815e-05, 0.0371375494, -0.0191900879, -0.0126239425, -0.00328660244, -0.00771698495, 0.0206586439, -0.0079146754, 0.0013255846, 0.00312421401, -0.000381039368, -0.00309067732, 0.00512582902, 0.018258119, -0.00257703522, 0.00561652472, -0.0153916078, -0.0092914477, 0.0219295118, 0.0198114, -0.00526350643, 0.00657673506, 0.0017139049, -0.00199455465, 0.00144296326, -0.0111483252, -0.00756165711, -0.013767723, -0.00738514774, -0.0262645781, 0.00912199914, -0.00106346828, 0.0283968113, 0.00273059821, -0.0156316608, 0.0145161217, 0.0240617432, -0.000256379717, -0.014600846, 0.00902315322, -0.0405547693, -0.0210963879, -0.0256856289, -0.0102092959, -0.00127086672, -0.0112965927, 0.0178344958, 0.00475515937, -0.0128498748, 0.00890312716, -0.00958092324, -0.00340133347, 0.00275001442, 0.00191159535, -0.0127439685, -0.0228049979, -0.000566153438, -0.0131393494, -0.00228756014, 0.0216753371, -0.0101669338, 8.16355314e-05, 0.00954562146, -0.00617429428, -0.000695446506, -0.0151939178, 0.0069156331, -0.000905492518, 0.00838066, 0.00176332751, 0.0171143375, 0.00431388663, -0.0205880404, 0.00366786262, -0.0468808599, 0.00534117036, 0.00151268439, 0.00639669597, -0.00366433244, 0.0223248918, -0.00375964725, -0.0112471702, -0.0200373325, 0.00797821861, -0.0248807464, 0.019331295, 0.0238640532, -0.00761814, -0.00345428637, 0.00746987201, 0.0345110931, -0.0156034194, -0.000278002088, -0.0154339699, 0.0133794025, 0.0119320266, 0.0205456782, 0.00364315114, 0.000112193702, -0.018018065, 0.0122779841, -0.0089454893, -0.0207151268, -0.00196631323, -0.00497050071, 0.00245700893, 0.00404559216, -0.0047939918, 0.0146714505, 0.00153210037, 0.00049996248, -0.0280579124, -0.0142266471, -0.0119108455, -0.00107405882, -0.00353371538, -0.00724394, -0.00290181232, -0.00155857683, 0.00602249615, 0.00507640652, 0.0387473144, 0.00083930156, -0.00910787843, -0.0079994, 0.0253467299, -0.0159705579, 0.00477634091, -0.00194866234, -0.00717333658, 0.0175238401, -0.000393174385, 0.00582833588, -0.00362550025, -0.00602602633, -0.038521383, -0.00436330913, -0.010152813, 0.0225790646, -0.000319923041, -0.0161964893, -0.0125462785, -0.00249760598, -0.00324777048, -0.00514348, 0.0190488789, 0.000734719797, 0.0031965829, 0.01066822, -0.00323718, 0.000496873574, -0.00680972729, -0.0102375373, -0.00114995788, 0.01047053, 0.0136265149, 0.0139018698, 0.0179474615, -0.0137889041, 0.0166201126, -0.00049996248, 0.0272247884, 0.00569418864, 0.00207221881, 0.00183040102, -0.000194601467, 0.00621312624, 0.0465419628, 0.00654849363, 0.0123980111, -0.00230168086, 6.56945413e-05, -0.0289475191, 0.00460689189, 0.0225508232, 0.0170013718, -0.0150527097, 0.00178097852, 0.0397640057, 0.0059977849, 0.0057930341, 0.00852892734, -0.014600846, 0.0053023384, 0.0141207408, -0.010767065, 0.00893136859, 0.00491401786, 0.0160552822, -0.0114660421, 0.00953150075, -0.0035301852, 0.0171990618, -0.0155045735, 0.01811691, -0.0129699009, -0.00784407184, 0.00277825585, 0.00728630228, -0.0108447289, -0.00656261435, 0.0180039443, -0.0122638633, -0.0155328149, -0.0171849411, -0.00282238307, 0.00754753593, -0.0195995886, -0.00936205126, -0.0118543617, -0.0232144985, 0.00521408347, 0.00186393782, -0.0146573298, -0.0019874943, -0.0118896645, 0.00794997718, -0.00274471915, -0.0299077295, -0.000393836293, -0.0052105533, 0.00330778351, -0.0141066201, -0.0316587, -0.0288627949, 0.00823239237, -0.00357607775, 0.00379141909, -0.0324212201, 0.00258233049, -0.00177303562, -0.0166201126, -0.00717333658, -0.00718039693, 0.0109012118, 0.0168319233, 0.00320364325, 0.0137889041, -0.0201926604, -0.00132117188, -0.0186958611, -0.0199102443, 0.0122991651, -0.00992688071, 0.0174391158, 0.0101669338, 0.0111906873, 0.0192748122, -0.00446568429, -0.0069156331, 0.000975213712, -0.00646376936, -0.00109877018, 0.00763226068, -0.00576479267, 0.00540118339, 0.00562711526, 0.00950325839, -0.00256291451, -0.0264340267, -0.00422916189, 0.0144172767, 0.0133652817, -0.00259998138, 0.000963740575, 0.00315951579, -9.73558926e-05, -0.00218518474, -0.0318563916, 0.00447274465, -0.00592012051, -0.0117484564, -0.0022946205, 0.0165353883, 0.00268470589, -0.0116849132, 0.00425387314, 0.0264763888, 0.00593777187, -0.00746281166, 0.000787231314, -0.0022399025, -0.011084782, -0.00291063776, 0.00800646, 0.000718392723, -0.00910787843, 0.0115578268, 0.013111108, 0.00893842895, -0.0283685699, 0.0360078886, -0.00105817302, 0.0126451235, -0.00159123098, 0.000239170055, 0.0100610284, -0.00103699195, -0.0104564084, -0.00568359811, 0.0102375373, -0.000172427492, 0.0173543915, 0.0192465708, -0.0233698264, 0.00490342733, -0.00140148355, 0.00158681825, -0.00295123481, 0.00628019962, -0.00601190561, 0.0155610563, -0.00479752198, 0.0196701922, 0.0159846786, -0.00545060588, -0.0208845753, -0.0230026878, 0.00869837683, 0.0200796947, 0.00689798221, -0.0140924994, 0.014939744, 0.000634550815, -0.0120167509, -0.00340662873, -0.00238817045, 0.0103363823, 0.00386555283, -0.00117555168, -0.0212799571, 0.00779464934, -0.00444450323, -0.0078017097, -0.0198537614, -0.024654815, 0.012059113, -0.00289828214, 0.00420445064, -0.0189217925, 0.000621312589, -0.0201220568, 0.00474809902, 0.00181981048, 0.00571184, -0.0142548885, -0.010350503, -0.00446215412, 0.0319128744, -0.00352842, -0.00413737725, -0.0038055398, 0.00238287519, -0.0180463064, -0.0102445977, -0.00845126342, -0.00647436, 0.00295123481, -0.00795703754, -0.00469514634, -0.0165212676, -0.00963034574, -0.01257452, -0.0105976164, 0.00867719576, 0.000481429015, 0.0182157569, 0.0253043678, -0.0203338675, -0.0144313974, 0.00261939759, 0.00517525151, -0.00454687886, 0.00695446506, 0.00677089533, 0.00480105216, -0.0107458839, 0.00202103099, -0.0282697231, -0.0335791223, -0.0193595365, -0.00985627715, 0.0121650184, -0.00788643397, -0.0170154925, 0.0119108455, 0.0131675908, 0.00816884916, -0.00917142164, 0.0055388608, 0.00635433337, -0.000470397179, -0.00311185839, 0.0044162618, 0.000795174215, 0.000986686791, 0.0186393782, -0.00571890036, -0.0139512923, -0.0323082544, 0.0178627372, 0.0100680888, 0.0228049979, 0.0134358853, -0.00679913675, 0.0107035218, -0.00470926706, -0.00838066, 0.00692622364, 0.00551414955, 0.00751929451, -0.0119673284, -0.00566241704, -0.00697564613, -0.0204891954, 0.0242453124, 0.00676030479, 0.000487606856, 0.0323929787, -0.0192889329, -0.0112683512, 0.00320364325, 0.0177215301, -0.000499079935, -0.00213046675, -0.0116354907, 0.0194018986, 0.0112612909, -0.0042432826, 0.000809295, -0.0181875154, 0.00432094699, 0.0205315575, -0.00113318942, -0.00790055469, -0.0103858048, -0.0206162818, 0.00242700242, -0.0361208543, 0.0130828666, 0.0139724733, -0.0199808478, -0.0246689357, 0.00194336695, -0.0123274075, 0.0100257266, -0.0107600046, 0.0693046, -0.01181906, 0.0204750746, -0.0215200093, 0.00443038251, -0.00468455581, 0.00501639349, 0.037843585, 0.00247465982, 0.00425387314, -0.00371728512, -0.0195007436, -0.010329322, 0.00946089625, -0.0176791679, -0.00903727394, 0.024019381, -0.0141560426, -0.0211811122, 0.010131632, -0.0227485131, -0.00702153845, 0.00540118339, -0.00966564752, 0.0143325524, 0.0114801629, -0.00385143212, 0.00828887522, -0.00235286844, 0.00495991, -0.0089454893, 0.00843008235, 0.00816178881, -0.00268647098, 0.00439155055, 0.00967976823, -0.0106258579, 0.0184134468, 0.00586716784, -0.0109365145, -0.000365153537, 0.00341368909, 0.00847950485, -0.0143749146, 0.0145443631, 0.00231580157, 0.00627313927, -0.0142690092, 0.000155328147, -0.00522114383, 0.00879722182, -0.0282273609, 0.00722275907, -0.0155186942, -0.00178274361, 0.0221413225, 0.036911618, 0.00710626319, 0.0151233142, 0.000139883588, -0.00486459536, -0.00598719437, 0.012673365, -0.00467396528, 0.00467396528, -0.0111906873, -0.00381613034, 0.00895255, -0.0137041789, 0.000195484012, 0.0138948094, -0.0109223928, 0.00669323141, -0.0198114, -0.0059660133, -0.00121173612, 0.0119743887, -0.0121932598, 0.00108200184, 0.00398204895, -0.010985937, 0.0224660989, -0.0366292037, -0.0164083019, 0.00802058075, -0.00538706267, -0.0201502983, -0.0211105086, -0.00996924285, 0.00854304805, -0.00569065847, 0.0417691506, -0.00952443946, -0.0116919735, 0.0153633663, -0.00858541, 0.00946089625, -0.00137500721, 0.0218589082, -0.000664557389, 0.00316304597, 0.00228932523, -0.00697211595, -0.0273377541, -0.0173685122, 0.0203338675, -0.00361314462, 0.0215200093, 0.00672147283, 0.0201926604, 0.015575178, -0.00220636581, 0.000926673645, 0.027196547, 0.0101104509, 0.0047516292, 0.00621312624, 0.018356964, 0.0214635264, 0.0072510005, 0.00152945274, 0.0211246293, -0.0140007148, 0.00657673506, 0.0168601647, 0.00369257387, 0.0206586439, 0.0190630015, 0.0142337075, 0.0215482507, 0.000640728627, -0.00199455465, 0.0158152301, -0.0023969959, 0.0196984336, 0.0221413225, 0.00881840289, -0.00511876866, -0.00327601191, -0.00553533062, -0.00243759295, -2.24084033e-05, 0.000581156753, 0.0247254185, 0.0040385318, -0.0166624747, -0.0063331523, -0.0159423165, 0.0124191921, 0.00854304805, 0.00238287519, 0.00350370887, -0.0132240737, 0.00138206757, 0.00600837544, 0.0227626339, -0.00215341314, -0.000569683674, -0.000811501348, -0.0144737596, -0.0194866229, -0.00639669597, 0.00905139465, -0.0119743887, 0.0191900879, -0.0106823407, 0.0129981423, 0.00576479267, 0.0216047335, 0.0214070436, 0.00252055237, 0.0192606915, 0.0157869887, 0.00921378378, 0.0199667271, -0.0052529159, -0.0314327702, -0.0114731025, 0.00217812438, -0.00283650379, 0.00722981943, 0.0119955698, 0.0027694304, 0.0471350327, -0.00408795476, -0.0161823686, 0.0155610563, -0.0243017953, 0.00504463492, 0.00259115594, 0.0193171743, -0.00758989854, -0.000996394781, -2.86827562e-05, 0.00772404531, -0.0131181683, 0.0234686714, -0.000985804247, -0.0521620177, -0.00311715365, 0.0182016362, -0.00557769276, 0.00514701, 0.00774522638, 0.0041303169, 0.0183004811, 0.00193630659, 0.0186111368, 0.00121350121, 0.0069474047, 0.00296182535]
30 Apr, 2024
How to Get the Latest Record from MongoDB Collection 30 Apr, 2024 Retrieving the latest record from a MongoDB collection is a common task in many applications. Whether we are building a messaging app, tracking sensor data, or managing user activity getting the most recent data entry is essential for real-time analytics and decision-making. In this article, we'll explore different methods to fetch the latest record from a MongoDB collection by covering various approaches and scenarios. We'll provide detailed examples with outputs to guide beginners through the process effectively. What is the Latest Record?In MongoDB, the latest record refers to the document with the most recent timestamp or the highest value in a field representing sequential order. The timestamp could be the creation time (createdAt), modification time (updatedAt) or any other custom field indicating the record's newness.Strategies for Getting the Latest RecordSorting: Sort the collection in descending order based on the timestamp field and retrieve the first document.Aggregation: Use MongoDB's aggregation framework to group documents by a common identifier (if necessary) and find the document with the maximum timestamp within each group.Indexing: Ensure proper indexing on the timestamp field for efficient retrieval of the latest record.Method 1: SortingSorting the collection in descending order based on the timestamp field and retrieving the first document is a straightforward approach to get the latest record. Example: // Connect to MongoDBconst MongoClient = require('mongodb').MongoClient;const uri = 'mongodb://localhost:27017';const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true });// Function to get the latest recordasync function getLatestRecord() { try { await client.connect(); const database = client.db('mydatabase'); const collection = database.collection('mycollection'); // Sort documents by timestamp in descending order and limit to 1 const latestRecord = await collection.find().sort({ timestamp: -1 }).limit(1).toArray(); console.log('Latest Record:', latestRecord); } finally { await client.close(); }}// Call the functiongetLatestRecord();Output: Latest Record: [ { _id: ObjectId("61f517cd4c6e57a57e5ac63f"), timestamp: ISODate("2022-01-27T10:30:00Z"), ... } ]Explanation: The query uses the find method to retrieve all documents from the MongoDB collection. It then sorts these documents in descending order based on the timestamp field, ensuring that the newest documents appear first. The limit(1) method is used to restrict the result to only the first document, which is the latest record. Finally, the toArray method converts the result into an array, and the console.log statement prints the latest record to the console Method 2: AggregationUsing MongoDB's aggregation framework allows for more complex queries, including grouping documents and finding the maximum timestamp within each group. Example: // Connect to MongoDBconst MongoClient = require('mongodb').MongoClient;const uri = 'mongodb://localhost:27017';const client = new MongoClient(uri, { useNewUrlParser: true, useUnifiedTopology: true });// Function to get the latest record using aggregationasync function getLatestRecord() { try { await client.connect(); const database = client.db('mydatabase'); const collection = database.collection('mycollection'); // Group documents by a common identifier (if necessary) and find the maximum timestamp const latestRecord = await collection.aggregate([ { $group: { _id: null, maxTimestamp: { $max: '$timestamp' } } } ]).toArray(); console.log('Latest Record:', latestRecord); } finally { await client.close(); }}// Call the functiongetLatestRecord();Output: Latest Record: [ { _id: null, maxTimestamp: ISODate("2022-01-27T10:30:00Z") } ]Explanation: This query uses MongoDB's aggregation framework to find the latest record in a collection. The $group stage is used to group all documents into a single group (with _id: null), and the $max operator is applied to the timestamp field within each group to find the maximum timestamp across all documents. The result is an array containing a single document with the maximum timestamp, representing the latest record in the collection ConclusionRetrieving the latest record from a MongoDB collection is a crucial task in many applications. By following the methods outlined in this article and experimenting with the provided examples, you'll be able to fetch the latest data entry effectively. Whether you choose to sort the collection or use the aggregation framework, understanding these techniques will empower you to handle real-time data retrieval tasks in MongoDB with confidence. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection
https://www.geeksforgeeks.org/how-to-get-the-latest-record-from-mongodb-collection?ref=asr10
Languages
How to Get the Latest Record from MongoDB Collection
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[0.00176799332, 0.0142216599, -0.000872957695, 0.0653927922, -0.00965772942, -0.0229326915, -0.0125260819, 0.0344767533, -0.0181426834, 0.0388569944, 0.0291074216, -0.00864744745, -0.00216009561, -0.0183970202, 0.0227631349, 0.0405243151, -0.00814583898, 0.00163022755, -0.0154297594, -0.0191459, -0.0187785253, -0.00184040854, 0.0193295889, 0.0543997921, -0.0142993741, 0.0199795607, 0.0246989187, -0.00217952416, -0.0446502194, -0.0321877226, 0.0328094326, 0.0395634845, -0.00298315752, -0.0475327037, 0.00454273587, -0.0100321695, 0.0324985795, -0.00339822075, -0.00464517716, -0.0240630768, 0.00563426409, 0.0477305204, -0.00439790543, -0.0153732402, -0.00909253675, -0.0170688182, -0.0297856536, -0.0221838113, -0.0169275198, -0.00556008285, 0.0126461852, -0.0152036827, -0.00405525742, -0.00669753319, -0.00551416073, -0.00871809665, 0.0156699661, -0.00738989376, 0.00938219763, -0.0477870405, 0.0339115597, -0.0164612364, 0.00593452295, -0.0241054669, -0.00243739341, -0.00252393843, -0.0337137431, 0.0226218365, -0.0230033416, -0.0117136175, -0.0339963399, 0.0440850258, 0.0431242, -0.0229185615, 0.00243386091, 0.0124201085, 0.0160797313, 0.0269455593, 0.0136635322, 0.0408916883, -0.00301671587, 0.00513972063, -0.00880287588, 0.0353810601, 0.0629059449, -0.0239782985, -0.0288106948, -0.0555867, 0.0171959866, 0.00441203499, 0.0201915074, -0.00748880254, -0.0114027616, -0.00739695877, 0.00814583898, 0.00598750962, -0.00824474823, 0.00216362812, -0.0163623281, 0.00590626337, 0.0260129925, -0.00472642342, 0.0132820271, -0.0323855393, 0.0233424567, -0.0330920294, 0.0244304519, 0.0143912183, -0.00175298029, 0.00974250864, 0.000793919084, 0.0261260308, -0.0391395912, 0.0507543, -0.0424742289, -0.00976370275, 0.00699072657, -0.0496239141, 0.0175916217, -0.0171818566, -0.019696964, 0.0401286781, 0.000248817232, 0.0203610659, -0.0638102517, 0.0453567095, 0.00419655535, 0.0368505605, 0.00769368513, -0.00190929149, -0.0216892678, -0.00487478683, -0.0600234605, 0.00235614693, 0.0202904157, 0.0303508453, 0.0355788767, 0.00547883613, -0.0138260256, 0.0120032793, -0.0417394787, -0.083026804, 0.0139108039, -0.0103712855, -0.0248684771, 0.0238652602, -0.00673285732, 0.0132890921, -0.0217457879, 0.000750646519, -0.0148363076, -0.00293017062, 0.0247695688, 0.0399591215, 0.0173090249, -0.0228055231, -0.0157688744, -0.0491152406, -0.0370766371, -0.021406671, 0.0447632596, -0.016644923, -0.00879581086, -0.0235402733, 0.0325550959, 0.0339963399, 0.0355788767, -0.0103712855, -0.0700273663, 0.00855560414, -0.0402699783, 0.00404112739, -0.00780672347, 0.000366933673, -0.0130064962, -0.0134586496, 0.0267760027, -0.0392526314, 0.032639876, 0.00701545365, 0.0227348749, 0.0111342957, 0.00588860083, -0.00483239722, 0.0225935765, -0.00137942331, 0.0116359042, -0.00962240528, -0.0203610659, 0.023427235, -0.0450458564, -0.0130983396, 0.0647145584, -0.022438148, 0.0307464805, 0.0212229844, 0.00381505047, -0.0196687039, -0.0455262698, -0.00284715788, 0.00321983197, -0.0359462537, -0.00888058916, 0.0118337208, 0.053071592, -0.0353810601, 0.0239076484, -0.0464870967, 0.0409482084, 0.00848495495, -0.052025985, 0.014963476, -0.00786324311, -0.00945991185, 0.0151471635, 0.0206860509, -0.00327635114, 0.00407645199, 0.00766542554, -0.0345050134, -0.0183263719, 0.00870396663, 0.0347310901, -0.01462436, -0.012215226, -0.0226500947, 0.0141156865, 0.00840017572, 0.0461762398, 0.0270727277, -0.0279346462, -0.00607228838, -0.0235544033, 0.00710023288, 0.0219859947, -0.000340881816, 0.00503727933, 0.00964359939, 0.000486154, 0.0267336126, 0.027906388, 0.0147939175, 0.00296726148, 0.0259988625, 0.0137412464, 0.00578969205, -0.0381505042, 0.00956588611, -0.0133880014, 0.0263662376, -0.00391395902, -0.0417677388, -0.035748437, 0.0479848571, -0.00851321407, -0.0119326301, -0.00481120264, 0.0047900076, 0.0274824928, 0.00534460321, 0.0305204038, -0.0192165505, -0.0275955312, 0.0212512445, 0.0281607248, 0.0005700498, -8.54412356e-05, -0.00521743484, 0.0206719209, -0.0329789929, 0.0364831872, 0.0203328058, 0.0176764, 0.0250097755, -0.00654210476, -0.00327988365, -0.0283585414, 0.0239076484, -0.00388216693, -0.00963653438, -0.00605815882, -0.016291678, 0.0532128885, 0.0229892116, 0.0108022448, 0.00276237912, 0.0237239618, -0.0351549834, -0.0228196532, -0.0276661813, -0.0421916321, 0.00674698735, 0.0137200514, -0.00145713729, 0.0016249289, -0.0464305766, -0.0057473029, 0.0521955416, 0.0114522157, 0.0358332135, 0.00403406238, -0.00830833241, -0.0381222442, 0.00443323, -0.0125190169, 0.00503021479, 0.0026864314, -0.0236533135, -0.00568018621, -0.01461023, 0.00422834745, -0.0329224728, -0.0173090249, -0.0260977708, -0.00433078874, 0.0635276511, 0.0371614173, 0.0310573354, -0.0140026482, -0.0315094888, -0.0326681361, -0.0309725571, -0.0423894487, 0.0183405019, 0.00315978029, -0.0500195511, 0.00271115848, -0.00265993783, -0.0117913317, -0.0160514712, -0.0547671691, -0.028174853, -0.012222291, 0.025815174, 0.0114734108, -0.0213360228, -0.013953194, -0.00081688, -0.0401852, 0.0113391774, -0.00688122073, 0.0320181623, -0.0193719789, -0.0145678408, 0.0502456278, 0.0250662938, -0.0323007591, -0.0126037961, 0.0388852544, -0.00953762606, 0.000996152, -0.0183263719, 0.0340811163, 0.0443676226, 0.0385178812, 0.00763010094, 0.009862612, -0.0347310901, -0.0217175279, 0.0330072492, -0.0110636465, -0.0400438979, -0.00148716313, 0.0223816298, -0.00146331906, -0.0466849133, -0.0116217742, 0.0133738713, 0.0187643953, 0.0441698059, 0.00436611334, 0.021759918, 0.00269526243, -0.0141863357, -0.0286693983, -0.0143064391, 0.0269031711, 0.0266064443, 0.0402982347, 0.0348441266, 0.00454980088, 0.0159243029, -0.0395352244, 0.054710649, 0.0030396767, 0.00787737221, -0.0257445257, -0.0116853584, 0.0210110378, 0.0107457256, 0.00170440914, 0.000808932, -0.00166466902, -0.0142075308, 0.0306334421, -0.0368788205, 0.0389982946, 0.0100604296, -0.0106114922, -0.0315660089, -0.00972837862, 0.00199936912, 0.00931154937, -0.00202939496, -0.0159525629, -0.0246282704, 0.0257021356, -0.028188983, 0.00262108096, -0.0104419347, -0.0202621575, -0.00276237912, -0.022438148, 0.000338232465, 0.0262108091, -0.0370766371, -0.000661893573, 0.00932567846, -0.0323855393, 0.0457523465, -0.00345650641, 0.0317638256, -0.0109294131, -0.0126603153, -0.0393939279, 0.0171959866, 0.0002574276, -0.0101240138, -0.0688969865, 0.0171677265, -0.0113674374, 0.0327811725, 0.0190611221, 0.000834542268, 0.0130983396, -0.0528737716, 0.0243174136, -0.0146526191, -0.00787030812, -0.022099033, 0.021095816, 0.0600234605, 0.013931999, 0.0064220014, -0.0294182785, 0.0193719789, -0.0457240865, 0.00653150771, -0.0119820843, -0.0302943271, -0.0250239056, 0.00756651675, 0.021406671, 0.000914022501, 0.015994953, -0.0155286677, 0.0330072492, 0.0181426834, 0.0119679542, 0.0168992598, 0.00705431076, 0.00646792352, 0.0155993169, -0.0222262014, 0.00481826719, -0.0266347043, -0.00382211525, 0.00088002265, -0.000994385802, -0.0061535351, 0.0119962143, 0.00640080683, -0.0111413598, 0.0211240761, 0.0187785253, -0.0319333859, -0.00633015763, -0.00454273587, 0.0356353968, -0.0328942128, 0.0022766667, 0.0503021479, 0.00290544354, 0.0326963961, -0.0269031711, -0.00296726148, -0.0285281, -0.0206012726, -0.0198806524, -0.0176198818, -0.0106609464, -0.00606522383, -0.0428416021, -0.00538699236, 0.00420715287, -0.0111554898, 0.00263697701, 0.00882407, 0.00264050951, 0.00950936601, -0.0100180395, 0.0070048566, 0.00064776378, -0.0142993741, -0.0385178812, 0.0165036246, -0.0105761671, 0.000922853651, -0.0383765809, 0.0009087238, -0.00248861383, 0.0260271225, -0.0132961571, -0.00229079649, 0.0300965086, 0.0216892678, 0.00166820141, 0.0315660089, -0.00163994182, 0.00823768321, -0.00873929169, 0.00302731316, 0.00692714239, 0.0193437189, 0.00245858799, -0.0136140781, -0.00242326362, -0.0188491754, 0.0213642828, -0.00912079681, 0.00156222784, 0.00621711928, -0.000989970285, 0.0171677265, -0.0175492316, -0.0339115597, -0.00500901975, 0.00840724073, 0.0257021356, -0.0211099461, -0.0257021356, 0.018707877, -0.0121587068, 0.0343354531, 0.000459660601, -0.00501255225, 0.0299834702, 0.00528808357, 0.00110742438, 0.00438730791, 0.0221838113, 0.00062391971, -0.00247271778, -0.0173938032, -0.00887352508, 0.029926952, -0.0155427977, -0.0264510158, 0.00319687091, 0.0232152883, -0.0106468163, 0.0233283266, 0.00432725623, 0.0314529724, 0.032639876, 0.0173090249, -0.0118478509, 0.0595713072, -0.0317920856, -0.00242149737, 0.0114734108, -0.0054081874, 0.0293334983, -0.00424954249, 0.0311986338, 0.0110707115, -0.00156134472, 0.00483946223, 0.0339963399, 0.0331202894, 0.00776433386, 0.0154438894, 0.0427568257, 0.00518211024, 0.00237910775, -0.0256032273, -0.0444806628, -0.0240772069, 0.0359745137, -0.0300965086, 0.0230174717, 0.0168851297, -0.026832521, 0.0225653164, -0.0395917445, 0.0249108654, 0.00790563226, -0.0318486057, 0.000967892411, -0.0061570676, 0.0214773212, -0.00787737221, -0.0320464224, -0.0110989707, 0.0068988828, -0.0324420594, 0.00625244388, -0.0131266, -0.0328376926, 0.00914199091, -0.00950230192, -0.0189480837, 0.0314529724, 0.00433432125, 0.00216716062, 0.00921970513, 0.0150906434, 0.0121516418, -0.0117630726, -0.0286552683, 0.0145819709, 0.0294465367, 0.00512559107, 0.00083851628, -0.0109294131, 0.0678231195, 0.00767249, -0.0129429121, 0.0233141966, -0.029926952, 0.00476174802, -0.0253206305, 0.00642906642, -0.00696246698, 0.00698366156, 0.0181426834, -0.0176057518, -0.00179183739, -0.0155710578, 0.0153167211, -0.0191176422, 0.0199795607, 0.0172101166, 0.116090573, -0.0072697904, 0.00559894, 0.0182133336, 0.0387439579, 0.0219153445, -0.0157830045, -0.0434350558, -0.0125614069, 0.0199513, 0.0170122981, -0.038037464, -0.0309725571, -0.000693244103, 0.00236674421, 0.0102653112, 0.0279911663, 0.00294783292, -0.0508390777, 0.0108516989, 0.0137412464, 0.0181285553, 0.0171677265, -6.61231243e-05, 0.0205023643, 0.0125896661, 0.026846651, -0.0169416498, -0.0288389549, -0.0293900184, 0.0167862214, 0.00590626337, -0.012264681, -0.0266629644, 0.0225370564, 0.00595925, 0.0192024205, -0.00689535029, -0.00905721262, 0.0126603153, 0.0407221317, -0.0264792759, -0.00921264, -0.0164612364, -0.0403547548, -0.000543114787, -0.0345332697, -0.00270585972, -0.0179024767, 0.0314529724, 0.0174644534, 0.0316507891, -0.0155569278, 5.1027404e-05, 0.00605109381, 0.0176057518, -0.0441415459, 0.00428486662, 0.0164753664, -0.0212229844, -0.0123212, -0.0111484248, 0.0575931333, -0.0159384329, 0.0584974401, -0.0240489468, -0.00622771634, 0.0213784128, 0.01154406, -0.039450448, 0.00885233, -0.00658802688, -0.00330814323, -0.0342506766, 0.000700750563, 0.00378325838, 0.033261586, 0.0191176422, -0.00182098011, 0.022424018, -0.0151471635, -0.0161645096, -0.0360027738, 0.0249532554, -0.00620298926, 0.000597426319, -0.00152778637, 0.0196263157, 0.019739354, 0.00347240246, -0.00362429791, -0.01766227, -0.0159525629, 0.0205871426, 0.0111978799, -0.00476528052, 0.0155004086, 0.00110035948, 0.0338833, 0.00463811215, 0.00724153081, -0.0108163748, 0.0109788673, 0.00425660703, 0.00685649319, -0.00430959417, -0.0347876064, -0.0152602019, 0.00193578482, 0.0508955978, -0.0187785253, 0.00766542554, -0.0358897336, -0.0116359042, 0.00446855463, 0.0381787643, -0.0334311463, 0.0189763438, 0.00477587804, -0.0158819128, 0.0223816298, -0.0193578489, -0.0366244838, -0.048945684, -0.0215197112, 0.0167297032, 0.0018421748, 0.00665514357, -8.0473721e-05, 0.0469392501, -0.03532454, 0.0109364782, 0.00583914667, 0.00872516166, -0.026860781, -0.0163764562, -0.0173090249, -0.0162775479, 0.00893710926, 0.0136423381, 0.0170264281, -0.000507348741, 0.000178720104, -0.00389982923, -0.0315377489, 0.0316790491, 0.0176340099, -0.00877461582, 0.00228726398, 0.00104560645, 0.00172207132, 0.0118054617, -0.00536579778, 0.0222262014, 0.00314741652, 0.00244269194, -0.0115158, -0.00552829076, -0.0153591102, 0.0171394665, 0.0360875502, -0.00323572801, -0.0151754227, -0.0185383186, -0.0375005342, -0.010879959, 0.0126320561, -0.000432284083, 0.0192589406, -0.0125402119, 0.0204599742, -0.00356954476, -0.0141015565, 0.0233707167, -0.00435551582, 0.0285139699, -0.00322513049, 0.00793389231, -0.0270444676, 0.0148221776, -0.00103324279, -0.00859799329, 0.000551945937, -0.0149776051, 0.00447208667, 0.0171818566, 0.0141227515, 0.0130064962, 0.0209686477, -0.041485142, 0.0179589968, -0.00803280063, 0.0171959866, -0.0189904738, 0.00794095639, 0.00849202, 0.0312268939, 0.0223109797, 0.00858386327, -4.8736827e-05, 0.005266889, -0.035748437, 0.0326681361, 0.0219294745, 0.00561306952, -0.0124201085, 0.012264681, 0.0221696813, -0.0262955874, -0.0150765143, -0.00835778657, 0.00800454058, -0.00924796518, -0.0152460719, 0.0193437189, -0.000596101629, 0.00614647, 0.00819529314, -0.0180861652, -0.0194708873, -0.0113815675, 0.0297291335, 0.0228620432, -0.0192448106, 0.0053763953, -0.0259140823, -0.0328659527, -0.0121375127, -0.0189763438, 0.0203893259, 0.00466283923, 0.0183122419, 0.0188067853, -0.0300965086, 0.0483239703, 0.0140803624, -0.0474196635, 0.0153449802, 0.0295313168, 0.00264934055, 0.0227490049, 0.0121375127, -0.0239359085, -0.0299552102, -0.0287259165, -0.0125614069, -0.0378679074, -0.00655623479, 0.02311638, -0.0326681361, -0.0219718646, 0.0108093098, 0.039422188, -0.0100886887, -0.0362005904, 0.0097919628, 0.00438730791, 0.00624891138, -0.00317567633, 0.0314247124, 0.00763010094, 0.0100463, -0.00083100982, 0.0211099461, -0.0129641062, -0.0064184689, 0.0207001809, 0.0072697904, 0.0544280522, 0.0176340099, -0.0185524486, 0.00603343174, 0.000855295453, 0.00207884912, -0.0439437293, -0.0052704215, -0.00382211525, 0.0122717451, 0.0208838694, -0.0350984633, 0.0406090915, -0.00881700497, -0.000678672746, -0.0378113873, -0.0164471064, 0.009862612, 0.0273411945, -0.00473702094, 0.0211805943, 0.0123777194, -0.0122929402, -4.96199427e-05, 0.00618179468, -0.0280900747, 0.0339115597, -0.00623124884, -0.0364831872, 0.0150482543, 0.0150765143, -0.00291604083, 0.00596631505, -0.0335441828, 0.0199371707, -0.0425872654, -0.0208838694, 0.00583208166, 0.0178883467, 0.022113163, 0.00515031815, 0.0539476387, 0.00325162406, 0.00240560132, -0.0248543471, 0.000530751247, 0.0229609516, -0.0172525067, 0.0235685334, -0.0186513569, 0.0430959389, 0.0127945486, -0.00297609251, 0.00370201189, 0.0402982347, -0.00625950843, -0.0112685282, -0.00164524047, -0.0349006467, -0.00675758487, 0.00204705703, 0.0145254508, 0.00788443722, 0.0227066148, 0.00198170682, 0.0127380295, -0.0288530849, -0.0114734108, -0.00331520825, -0.0114239566, -0.00569784828, 0.0115016708, 0.00265817181, 0.0502456278, -0.0531563684, -0.000253453589, 0.0120386034, 0.00916318595, -0.00283479434, 0.0174079333, 0.0161079913, 0.0364266671, -0.0322159827, -0.0560388528, 0.0240206886, 0.0134303905, 0.00494896807, -0.0259140823, -0.00400227029, -0.00836485159, 0.0194002371, 0.0143841533, -0.00262991199, 0.00213890104, 0.0185665786, 0.0283585414, 0.0157688744, -0.0242891535, 0.0230881199, -0.0203469358, -0.0185100585, -0.00398814073, -0.028217243, 0.0194850173, 0.0175774917, 0.00288424874, -0.00189162919, -0.00202762871, -0.0107810497, 0.00823768321, -0.0295313168, 0.0406656116, -0.0274542328, 0.00317920861, -0.003484766, -0.00218305667, -0.00607935339, 0.00231199129, 0.0114804758, -0.00627363846, -0.026521666, 0.00014681762, -0.00290544354, 0.00148716313, 0.00210710894, -0.0140591674, -0.0514042713, 0.024147857, -0.00183687615, 0.00133880007, -0.0143558932, 0.00760184135, 0.0343354531, -0.0437459126, -0.0291074216, 0.00164170808, -0.0119396951, -0.0119608892, -0.0102794413, 0.030237807, 0.00787737221, -0.0151612926, 0.00577556249, -0.0141651407, -0.0138613498, -0.0317638256, -0.0135575589, 0.0352962799, -0.00128404703, -0.0251228139, -0.0230316, 0.0020064339, 0.0036737523, -0.0178742185, 0.0249249954, 0.00996152, 0.00634075515, 0.017365545, 0.00880994089, -0.00953762606, -0.00729098544, 0.0106114922, -0.012921717, -0.0187785253, 0.0213925429, 0.0076795551, 0.00279240496, -0.0162492897, -0.0185383186, 0.0257869158, 0.0139885182, 0.0378679074, 0.00966479443, -0.000560335524, -0.00732630957, 0.0141580757, -0.00359603832, -0.0132890921, -0.012264681, -0.0326681361, 0.00799041148, 0.000337570149, -0.00137500779, 0.0237522218, 0.0206295326, 0.0136917923, 0.0747184679, -0.0190893821, -0.00183687615, -0.0164471064, -0.00997565, 0.00140415051, -0.0148645667, 0.00664807856, -0.00333640282, -0.0285139699, 0.035720177, 0.00201349892, 0.00392102404, -0.00228726398, -0.0324985795, 0.00182627875, -0.0028400931, -0.0044544246, 3.92709553e-05, -0.0309160389, 0.0017600453, -0.00600870419, -0.00842137076, 0.0178318284, -0.00795508642, 0.0393374078, -0.0181285553, -0.0036878821, -0.0286976565, -0.021067556, 0.0160797313, -0.00225370564, 0.000765217876, 0.00196227827, 0.024472842, 0.0332333297, 0.0213501528, 0.00650678063, -0.0330355093, 0.0296726152, -0.0220707729, 0.0348723866, -0.00142357894, 0.0119891493, -0.0076089059, 0.00705077825, -0.0131266, -0.00909960177, -0.032611616, -0.0243739337, -0.00840017572, 0.0260836408, -0.012229356, -0.0117348125, 0.0092409, 0.00386450486, 0.0421916321, -0.0350419432, -0.00845669489, -0.00553888781, -0.00491011096, -0.00916318595, -0.00172648695, -0.0219436046, -0.0018174476, 0.012907587, -0.0304073654, -0.0214349311, 0.0121728368, -0.0170546882, -0.0136352731, -0.00724859582, -0.0149917351, 0.00285598915, 0.0129570412, -0.00380798546, -0.0273694545, -0.0211382061, 4.08715969e-05, -0.00711436244, 0.00643966394, -0.00525275944, -0.0280194264, 0.0238511302, -0.00388923194, -0.0138401547, -0.00555655034, -0.00330814323, 0.00298315752, 0.0162634179, 0.0103288954, 0.0222262014, -0.0198523924, -0.0365114473, 0.0107104005, -0.00940339267, 0.0278498679, 0.00727685541, -0.0116076441, 0.012222291, -0.00294606667, -0.00251157489, 0.0338267796, 0.00731218, 0.027185766, -0.00629483303, -0.00718501164, 0.00646792352, -0.000793919084, 0.0092055751, 0.031594269, 0.00891591422, 0.00315978029, 0.0079268273, 0.008159969, 0.0041506337, 0.01462436, 0.00670106523, 0.00385390734, -0.00201879744, -0.000453920336, 0.0234837551, 0.0191741604, -0.0188633054, -0.0129570412, 0.00433785375, -0.0143276341, 0.0120880576, 0.00444029458, -0.00132731965, -0.0159101728, 0.033261586, -0.00031129751, 0.00186160335, -0.00616413262, 0.0136423381, -0.0368788205, 0.0420503318, 0.0261825491, 0.0269596893, -0.0110565815, 0.0220425129, -0.0139037389, 0.0114239566, 0.0316507891, -0.04691099, -0.0269738194, -0.00440143794, -0.0159384329, -0.00143417635, -0.0229750816, -0.0115369949, -0.0105973622, 0.0143558932, 0.0168286115, -0.033261586, 0.0177187901, -0.0206154026, -0.008831135, -0.00329048093, 0.00231375732, 0.0212653745, 0.0196404438, -0.0220142547, -0.0174220633, 0.00640433934, -0.0065279752, 0.0119608892, -0.0132113779, 0.029926952, 0.00154809805, 0.000913139374, -0.0041153091, 0.00708257034, 0.00748880254, -0.0154156294, 0.00490304641, 0.0110636465, 0.0130700804, -0.0181426834, -0.0107033355, 0.000929918548, -0.0106397513, -0.0137765706, -0.0150341243, -0.0020594208, -0.0010544376, 0.013592883, 0.0126532502, -0.0110777756, 0.00193931733, -0.0131266, -0.0165742747, 0.0089724334, -0.000306881935, 0.00294783292, -0.0219294745, -0.0318768658, 0.0102370521, 0.018354632, -0.0053763953, 0.00624891138, 0.00352185662, 0.027863998, 0.00282419706, -0.00107916468, -0.0151895527, -0.0180296451, 0.00613940507, 0.00819529314, -0.0053022136, 0.0275955312, 0.0112755932, -0.0179166067, 0.0269031711, -0.0133668063, 0.00216892688, 0.0205023643, -0.0065279752, -0.00187573314, 0.0248543471, 0.000829243625, 0.00182981126, 0.00323926029, -0.0142923091, -0.0300682485, 0.00310502714, 0.0183970202, 0.0140803624, 0.000756828289, -0.00842843577, 0.00748173799, 0.0113179833, 0.00580382207, -0.00398460822, -0.00952349603, 0.0112755932, -0.00302024814, 0.00184040854, 0.0266912226, 0.0309160389, 0.000718412863, -0.0348441266, -0.0043449183, -0.00547530362, -0.000112376198, 0.0225935765, 0.0106326872, -0.00282066455, 0.00498429267, 0.000844698108, -0.0240630768, 0.0280052964, -0.025490189, -0.0121869668, -0.0185807087, -0.0128157437, -0.00538699236, -0.0122010969, 0.0194284972, -0.00290014478, 0.0305486638, 0.0151612926, -0.00910666678, 0.0100604296, 0.0280900747, -0.0262108091, 0.00628423598, -0.0352680199, 0.00266523659, 0.0117983967, -0.00423188, -0.0196121857, -0.00946697686, -0.00967185944, -0.00356071373, -0.00623831386, 0.00825887732, 0.00668693567, -0.0147091392, -0.0094881719, -0.00866157748, 0.0235544033, -0.00921264, 0.0143205691, 0.0157971345, -0.0259988625, -0.0165318847, -0.0165601447, -0.0298421718, 0.0223675, -0.014271115, -0.0366810039, -0.00491364347, -0.0128722629, 0.0222262014, 0.00910666678, -0.000885321293, -0.00989793614, 0.0257586557, 0.00495603308, -0.000733425783, -0.0523085818, 0.00904308259, 0.0173796732, 0.0158395246, -0.00793389231, 0.00147126708, 0.0338550396, 0.00628776848, 0.0278357379, -0.0083719166, -0.00950936601, -0.0124766277, -0.0264651459, 0.0126815103, -0.0216892678, 0.0124624977, 0.0156699661, -0.0207708292, 0.00118425523, -0.00788443722, 0.00183687615, -0.00618179468, -0.0236957017, 0.00676464941, -0.020050209, -0.0150765143, -0.00236674421, -0.0252923705, 0.0018174476, -0.00388569944, -0.00107121665, 0.017323155, 0.0197676122, 0.0282596331, 0.01463849, -0.00917025097, 0.00203292724, -0.00964359939, -0.00673285732, 0.0160797313, -0.0233424567, -0.00385037507, -0.00539405737, 0.0184394103, 0.0214208011, 0.00467343675, -0.00483239722, 0.00480413763, 0.00458159298, -0.012215226, -0.000220999165, -0.0195980556, -0.0116924234, -0.0021742254, 0.014949346, 0.0228761733, -0.0135222338, 0.00299905357, 0.000642023515, 0.00104207394, -0.012928782, -0.000502050039, -0.00711083, 0.0330637693, -0.00131937163, 0.011226139, 0.0260695107, 0.0227772631, 0.00784204807, -0.00474761846, 0.0196121857, -0.00907840673, 0.0319051258, 0.0277085695, -0.00178212312, -0.000855295453, 0.0199513, -0.00834365655, -0.0312834121, -0.0328094326, 0.00758771133, 0.00674698735, -0.00394928362, -0.0101098837, -0.0135151697, -0.00232788734, 0.00815290399, -0.00135646237, -0.0289661232, -0.0157547444, 0.0219577346, -0.0118195917, 0.0113250474, -0.00259105512, -0.0245576203, 0.00912786182, -0.00312622194, 0.00495250057, -0.00127521588, 0.00619592424, 0.00687768823, -0.00317920861, -0.0045215413, 0.0358614735, -0.0179589968, -0.00702251866, -0.0157971345, -0.0217740461, 0.0353810601, -0.000268466509, 0.00332580553, 0.00732630957, 0.00359603832, 0.00200820016, -0.0139602581, 0.00276767788, 0.0173796732, 0.0312268939, -0.0111766849, -0.00312445569, 0.000547530362, 0.00319157238, 0.0168568715, 0.020742571, 0.0375853106, -0.00365609, 0.00247801654, -0.0100674946, 0.0184959304, -0.00844963, -0.00470876135, -0.00460985256, 0.00987674203, 0.0383200608, 0.0230033416, -0.0298986919, -0.0280618146, 0.0122788101, -0.0220001247, 0.0135010397, -0.0105832322, 0.00683883112, 0.0056377966, -0.00364902499, 0.0144265424, 0.0222262014, 0.0246706586, -0.00503727933, -0.0186230987, 0.0286693983, 0.000961710641, 0.00325692259, -0.0227066148, -0.000277959974, 0.031622529, -0.00613587257, 0.026521666, -0.00328518241, -0.0104701938, -0.0306334421, -0.0154438894, 0.014285244, 0.0173938032, -0.0172807649, 0.00825181231, 0.0151471635, 0.00140415051, 0.00117983972, -0.0127097694, -0.00264757429, -0.0194002371, 0.0175774917, -0.0212371144, -0.0256173573, 0.0109364782, 0.00414356869, -0.0134869097, 0.00885939505, 0.00712849246, 0.00981315784, -0.00865451247, 0.00379738817, 0.0157547444, 0.048945684, -0.017337285, 0.00919851, 0.0181992035, -0.00258752261, 0.00516444771, 0.012568472, -0.0297856536, -0.00384331, 0.0160232112, 0.0169840399, -0.0260695107, 0.00915612094, 0.0104913888, -0.00292133959, 0.0171677265, -0.00628070347, 0.0171959866, 0.00781378802, -0.00343001285, -0.00377266086, -0.00940339267, 0.0266347043, -0.000341985724, 0.0110565815, 0.0102511821, -0.0109718023, -0.0089724334, 0.0106680114, -0.00111272302, -0.0111272307, -0.001400618, -0.00648205308, 0.0204458442, -0.00120368379, 0.00788443722, -0.0109929973, -0.0137695065, -9.71976842e-05, 0.00442969752, -0.0101522729, 0.0157547444, -0.0110071274, -0.00466990424, -0.0151754227, 0.00279240496, -0.00341058453, -0.000965243089, 0.025518449, -0.00256279553, -0.0283868015, -0.00483592972, 0.00212477124, 0.0162210297, 0.00175827905, -0.00435904833, 0.0142357899, -0.0253630206, 0.0172525067, 0.0018421748, 0.027878128, -0.00690241531, -0.0129641062, -0.0274824928, 0.00688475324, 0.00594865251, -0.0217316579, -0.0189763438, 0.0189056937, -0.00593452295, 0.019032862, -0.00147126708, 0.0196121857, -0.00225017336, 0.0120103443, 0.00536933029, -0.00286128791, -0.00293017062, 0.0214631911, 0.00979902782, 0.00303791044, -0.00841430575, 0.00386803714, 0.012215226, -0.0271009877, -0.0130771454, -0.013592883, 0.000693244103, 0.00962240528, 0.012928782, 0.0247271787, -0.0125331469, 0.00303437817, 0.00348299975, -0.00775726931, -0.00854147412, 0.0165601447, 0.000442881428, -0.0138684148, 0.00330814323, -0.00465577468, -0.00950936601, -0.0100674946, -0.0106680114, 0.0223392397, -0.00189869408, -0.00774313929, -0.011204944, -0.0158819128, 0.0051609152, 0.00695186947, 0.0189622138, 0.000460985262, -0.000528101868, -0.0191459, 0.000588153605, -0.0236674417, -0.00148628, -0.0181426834, 0.000275531405, -0.0214208011, -0.015994953, 0.0121304477, -0.0299552102, 0.00830833241, 0.0012504888, -0.0257869158, -0.00717441412, -0.00864744745, 0.018382892, -0.00371967419, 0.0274824928, -0.0157830045, -0.00502668228, -0.00219012145, 0.00285245664, 0.0199230406, 0.00509379897, 0.00308559858, -0.00755945174, 0.00650324812, 0.000486154, 0.000519270776, -0.0168992598, -0.0207143109, -0.0114522157, 0.0196545739, 0.00245858799, 0.0221414231, -0.0154015, 0.0273411945, -0.0205871426, -0.02313051, -0.0113603724, -0.00743228337, -0.00254513323, 0.0110353865, 0.0103430254, 0.00132202089, 0.000339998718, -0.00126991724, 0.013917869, 0.0145537108, -0.0382918, -0.00816703402, 0.0198241323, -0.00293370313, -0.0083153965, -0.00161609775, 0.0102370521, -0.0142993741, 0.0308877788, 0.0101452079, -0.00632662512, -0.00866157748, 0.0218164362, 0.000991736539, -0.00970718358, 0.00691654533, 0.00466637174, 0.00796215143, 0.020728441, 0.0110000623, -0.00340351951, 0.00531281112, 0.00783498306, -0.0128793279, 0.00698719407, 0.016319938, -0.00256279553, 0.00991206616, 0.0113745024, 0.000774490531, -0.0151047735, -0.00300965086, -0.00933274347, 0.00835072156, -0.0125967311, -0.00282772956, 0.0206719209, -0.0322159827, -0.00106150249, -0.00415769825, -0.00268466515, -0.00297785876, 0.0113674374, 0.00330461073, -0.00803280063, -0.00777846389, 0.00205412204, -0.0177470502, -0.0182981119, 0.0124766277, 0.0293052383, -0.00246918551, 0.0356071368, 0.00636194972, -0.000678672746, 0.0022590044, 0.000366712891, -0.0162069, 0.0263379775, 0.00222191354, 0.0197534841, 0.0152743319, -0.00323572801, 0.00583914667, 0.0230174717, 0.00472289091, -0.0131124696, 0.0137341814, -0.0318768658, 0.00982728694, 0.0229044314, 0.0209262576, -0.0129994312, 0.00255573052, 0.000488361751, -0.0193013288, -0.00430252915, 0.00775726931, -0.011233204, -0.0321877226, -0.0053022136, -0.0121021876, -0.0096506644, 0.0258858241, -0.000520595408, -0.0109506072, -2.66589886e-05, -0.00468050176, 0.0221979413, 0.00852734409, 0.0197676122, 0.0108870231, -0.0180155151, 0.0100463, 0.00861918833, -0.00593099045, -0.00175033102, 0.0230174717, 0.0115299299, -0.00597338, -0.0184111502, 0.00126903411, -0.00639020931, -0.00672579277, 0.0201208591, -0.00429546414, 0.0226359665, 0.000283921, -0.00079215283, -0.00158695504, 0.00271115848, 0.00510792853, -0.0122858752, -0.0131831188, -0.00921264, 0.00159401994, -0.00535873277, -0.00383271277, -0.00469816383, -0.022424018, 9.42447696e-06, -0.00561660202, 0.00488891639, -0.018354632, -0.0157264862, 0.00236144545, 0.0106892064, 0.00568371871, 0.00607582089, 0.0113956966, -0.000547088799, 0.0116005791, 0.0134021305, -0.0110707115, -0.0120386034, 0.0276237912, -0.0061606, -0.00101558061, 0.00517151272, 0.0194991473, 0.0335724428, 0.0165742747, -0.00317744236, 0.0108446339, 0.0145819709, 0.00646439102, 0.00598044461, -0.0225935765, 0.0242467653, 0.00560953701, 0.0251086839, 0.00991206616, 0.0175209716, 0.0100039104, -0.0223675, -0.0176764, -0.0150341243, -0.00469109882, -0.0031279882, 0.00915612094, -0.00562366704, 0.00241973111, 0.000922853651, 0.000954645744, -0.0137483114, -0.0144336075, -0.0043449183, 0.00712496, -0.0174503233, 0.00247625029, 0.0299834702, -0.019696964, 0.0094881719, -0.0192448106, 0.00834365655, -0.0069342074, 0.00734750461, -0.0293900184, 0.0139814531, -0.00864744745, 0.00287895, 0.0137765706, -0.000895477133, -0.00977076776, -0.00491011096, -0.0228761733, -0.0044897492, -0.00766542554, -0.00724859582, -0.0243174136, 0.00791269727, 0.00925502926, -0.00886646, -0.000149798128, -0.0149776051, -0.03467457, 0.0036878821, 0.0112402691, -0.00193401857, 0.00968598947, -0.00150305917, -0.00359250582, 0.0179872569, 0.0102229221, -0.0106326872, -0.0203751959, -0.00658802688, -0.00194814848, -0.0114946058, -0.00525275944, 0.00232082233, -0.000785529497, -0.0022060175, -0.00767249, 0.00698719407, -0.00210534269, -0.0138542848, -0.0169133898, 0.00780672347, 0.000511322753, 0.00373380398, 0.00729805, 0.00036914146, 0.0026157822, 0.000721503748, -0.00826594234, -0.00322689675, 0.0141227515, 0.00719207665, -0.0117772017, -0.0240772069, 0.00631249556, -0.000294959929, 0.011551125, -0.02311638, -0.0104560638, 0.00998978, -0.0202197675, 0.00353951892, 0.00784204807, 0.00936806854, 0.0108870231, -0.00277827517, 0.0252358522, 0.00840017572, -0.00276591163, 0.00561306952, 0.0349854268, 0.0194284972, 0.00696246698, -0.0161786396, -0.0010120481, 0.0135081047, 0.0216468778, 0.00533400569, -0.00225723814, 0.00744641339, 0.01764814, 0.0160373412, -0.0188209154, -0.00896536838, 0.023837, -0.00318803987, 0.0269031711, -0.0011471645, 0.0166731831, 0.00951643102, -0.00704724574, -0.00323396176, 0.0347310901, -0.0116994884, -0.00169204548, 0.00157194212, 0.00385037507, -0.0324703194, 0.00932567846, -0.0010085156, -0.0256032273, -0.0107669197, 0.0170264281, 0.0111908149, 0.00237027672, 0.00134409883, 0.00629130052, -0.00768662, 0.00391749153, 0.0145113217, 0.0114027616, 0.00809638482, 0.0130347554, 0.00741815381, -0.0188774355, -0.0254760589, -0.0248402171, 0.00562366704, -0.00536579778, -0.000279284664, 0.012257616, 0.00118072273, -0.0198382623, -0.0289943833, 0.0140662324, 0.0184818, -0.00167526631, 0.0128510678, 0.000529426557, -0.0164753664, -0.01189024, 0.0115087358, -0.00533047318, -0.00108534656, -0.00537992781, 0.00737576419, 0.00577203, -0.00371260918, 0.00137324154, -0.0027694439, 0.00685296115, 0.00879581086, 0.00546823908, 0.000687062333, 0.0145537108, 0.006969532, 0.0130700804, -0.00823768321, -0.000459219038, -0.0291356817, -0.00995445531, -0.0141298166, -0.0182698518, 0.0148504367, 0.0094175227, -0.00991206616, -0.0064184689, -0.00982728694, -0.00671872776, 0.00536933029, 0.00434138626, -0.000347063615, 0.00794095639, -0.00205058954, -0.00797628146, 0.00508320145, 0.00209297915, 0.0102582471, 0.0181709435, 0.0181002952, 0.00562719954, -0.0153167211, -0.0126108611, 0.0142145948, -0.000417933479, 0.0145537108, -0.00126991724, 0.0022625369, 0.012264681, 0.00683529861, -0.00470169634, -0.028188983, 0.0220001247, -0.00421421789, -0.0238087401, 0.012243486, 0.0185807087, 0.0121021876, 0.000521036971, 0.000215258915, -0.0178742185, -0.00770075, -0.001828045, 0.028895475, 1.52889024e-05, 0.012215226, -0.000739607553, -0.00710729742, 0.0202762857, 0.0069342074, 0.00220071897, 0.0161221214, -0.0166166648, 0.0115158, 0.0106821414, 0.0102794413, 0.00479354, -0.00472642342, -0.0013078911, -0.00128139777, 0.00989087112, 0.00670106523, 0.00222897856, -0.0164753664, 0.00411177659, 0.00743934838, 0.0159384329, 0.00526335649, 0.0149776051, -0.00788443722, 0.0161362495, 0.0198947806, 0.027539013, 0.00803280063, 0.000619945698, -0.0230881199, -0.00592039293, -0.00747467298, -0.00917731598, 0.0083719166, 0.0129499771, 0.0150058651, 0.0212371144, -0.00509379897, -0.0105761671, -0.018707877, -0.00385743985, -0.00465577468, -0.00969305448, 0.0115369949, 0.000126285231, -0.00903601758, -0.0117277475, 0.0168427415, 0.00940339267, -0.00835072156, -0.00566958869, -0.00460985256, 0.00967185944, -0.0124766277, 0.00947404187, 0.024133727, -0.00882407, -0.00220071897, -0.0050019552, 0.00273941807, 0.0176764, 0.00118248898, -0.0135646239, 0.0180861652, -0.0225653164, 0.00640433934, 0.0298704319, 0.00753825717, 0.0189763438, 0.00768662, -0.00585680874, -0.0400438979, -0.000703841506, -3.10193609e-05, 0.0172948949, -0.00349889579, -0.00112508668, 0.0264651459, -0.0475044437, -0.0212512445, 0.0102441171, 0.00552829076, 0.013607013, -0.0161786396, -0.00739695877, -0.00982022192, -0.0134939747, 0.00511146104, 0.00995445531, -0.0127168344, 0.0113462424, 0.00929035433, 0.0240489468, 0.000641581952, -0.00592745794, 0.00194284972, -0.00886646, -0.00777139887, 0.00705077825, -0.000445089216, -0.00353951892, 0.0172101166, -0.00848495495, 0.00349712954, 0.0224522781, 0.00602283422, -0.00173355185, 0.0127874836, 0.0115158, -0.00385743985, -0.00770075, -0.0100674946, 0.0152460719, 0.00782791805, -0.0313399322, -0.00906427763, -0.000524569419, -0.0030043521, 0.00875342079, -0.00203292724, -0.00907840673, 0.0127168344, -0.0393656678, -0.0016249289, -0.00885939505, 0.00351655809, -0.0242185052, 0.00555655034, 0.00915612094, 0.00680350652, -0.00237380923, -0.0202338975, 0.00114363199, -0.00321629946, 0.0169557799, -0.0191741604, 0.00779259391, 0.0139955832, 0.00546823908, -0.0143346991, -0.015627576, -0.017323155, 0.00192518753, -0.00576849747, -0.00777846389, 0.00598750962, 0.0152319418, -0.0139885182, -1.31777097e-05, -0.0135575589, -0.0235261451, 0.000932567869, 0.0133456113, 0.0152460719, -0.000861918787, -0.00772194471, -0.00589919835, 0.0135434289, -0.0177187901, -0.00499489, 0.0272705462, -0.0134657146, -0.00997565, 0.00136176101, -0.00821648818, 0.00166466902, -0.00758771133, 0.0177046601, 0.00824474823, 0.00519270729, -0.00784204807, -0.0117842667, -0.00628776848, -0.00827300735, -0.00748880254, -0.0134939747, 0.00460632, 0.028174853, 0.000774932094, 0.00826594234, -0.0111696199, -0.00467343675, -0.0185241885, 0.00418242579, 0.0150199952, -0.0164753664, 0.0097919628, -0.0161221214, -0.00944578182, -0.0318203457, -0.010540843, -0.00929035433, 0.0277085695, 0.0194284972, 0.000598309387, -0.00992619619, -0.0109859323, 0.0109294131, 0.00155604607, -0.00969305448, 0.0250662938, -0.0092409, -0.00256456179, 0.00584974419, -0.0236250535, -0.00840724073, 0.00379032316, -0.00706490828, 0.0103218304, -0.0291074216, 0.00469816383, -0.00815290399, -0.00304674171, -0.0131901838, -0.0190469921, 0.00912079681, 0.0185807087, 0.00236321171, -0.0138401547, -0.0209262576, -0.0168568715, -0.0119467601, -0.00163994182, 0.0291074216, 0.00762303593, 0.0237522218, -0.00712142745, 0.0131972488, 0.0171818566, -0.0122717451, -0.0310290772, -0.0167438332, 0.0103288954, 0.0022236798, -0.00193048618, 0.0156982262, 0.00153750065, 0.0126108611, -0.0127592245, 0.00271292473, -0.00678231195, -0.00991206616, -0.012582601, -0.011551125, 0.00456393091, -0.0144830616, -0.0114380866, 0.0225087982, -0.00817409903, -0.00628776848, 0.00399167323, 0.0222968496, -0.00255219801, 0.00179183739, 0.00643966394, 0.00969305448, -0.00468756678, -0.00129641069, -0.00304497546, -0.019725224, 0.00293370313, 0.00357660977, 0.0206436608, -0.0136211431, -0.00689535029, 0.00588860083, -0.00594158797, 0.00530927861, -0.00741815381, 0.00386450486, -0.00869690161, 0.0039704782, 0.0122717451, 0.0182274636, -0.00873929169, 0.0145819709, -0.00933274347, 0.0101098837, 0.0107457256, 0.00811051484, -0.00834365655, 0.0157123562, -0.0165884048, -0.0376418307, -0.0113038532, 0.0276237912, 0.027878128, -0.025490189, -0.00481473515, 0.000508231809, 0.00717441412, -0.0172525067, -0.00131318986, -0.0164188463, -0.0303508453, -0.00995445531, 0.00494543556, 0.0343354531, -0.0257162657, 0.00889471918, -0.00548943365, -0.00523862941, -0.0136352731, -0.00593099045, -0.00171324029, 0.00415416621, 0.0096506644, 0.00997565, 0.000339777936, 0.0243315436, -0.0151189035, -0.000174414919, 0.00311385817, -0.00503727933, -0.00343707786, 0.0143205691, 0.00578969205, 0.00806106068, -0.0134091955, -0.00392102404, -0.00185100595, -0.0134939747, -0.0157123562, -0.00284892414, -0.0132396379, -0.0178176984, -0.00148009823, -0.00432372373, 0.0274824928, -0.0039704782, -0.00744641339, 0.0125190169, 0.0069730645, -0.00539052486, -0.0207143109, -0.00644319644, -0.0230033416, -0.0266629644, -0.0121021876, 0.00291604083, 0.00752412714, -0.0273129344, 0.011233204, 0.000650413102, 0.00383977755, 0.00344061037, 0.00828713737, 0.024486972, 0.000551945937, -0.0171677265, -0.0125967311, -0.0188209154, 0.00800454058, -0.0136917923, -0.0284150615, 0.0225511864, -0.0141792707, -0.00214243331, 0.0230739899, -0.0180155151, -0.00425660703, -0.0086898366, -0.00380798546, 0.0104136746, 0.00383271277, 0.0107810497, 0.00907134172, -9.95710507e-05, -0.0199089106, -0.00750999758, -0.00758064631, -0.0072026737, 0.00330814323, 0.0083719166, -0.00210181018, 0.0267477427, -0.00951643102, 0.000657919561, -0.00762303593, 0.0068635582, -0.0171394665, 0.0210110378, 0.0241619851, -0.0047900076, -0.0123282652, 0.00753825717, 0.0264086276, -0.010547908, -0.0115369949, -0.0143558932, 0.00235791318, 0.00548590114, 0.0120527335, -0.00135999487, -0.00835778657, -0.0181992035, 0.00793389231, -0.0165601447, -0.0295030568, -0.00321629946, -0.0160514712, 0.0124271736, 0.0158960428, 0.000270674296, 0.0168427415, 0.0205306225, -0.0107174655, -0.010554973, -0.0116359042, -0.00972837862, -0.0068635582, -0.00969305448, -0.0178035684, 0.00332757179, 0.0301247686, 0.0162775479, 0.0234131049, 0.0418807752, 0.0125967311, 0.00360486936, 0.00472642342, 0.0117136175, -0.0132325729, -0.00444382709, -0.0235402733, -0.0132184429, 0.0230739899, 0.00629130052, -0.000287674222, 0.00958708, 0.00304850796, -0.0097213136, -0.0048571243, -0.0217175279, 0.00950936601, -0.00264580804, -0.00698719407, -0.0124483686, -0.000921087398, -0.00841430575, 0.00556361536, 0.0284998398, 0.0080186706, -0.0107951798, 0.00341235055, 0.0118619809, 0.0158677846, -0.000530751247, -0.00417889329, -0.00931861345, 0.0088382, 0.00614647, 0.0144971916, 0.00559540745, 0.000279726199, 0.025532579, 0.00508673396, 0.0142287249, 0.00803986564, 0.00977076776, 0.00330990949, 0.000154986425, 0.00639727432, 0.0384896211, -0.00739695877, 0.0143488282, -0.0051609152, -0.00650678063, -0.00630189804, -0.00506200688, 0.016305808, 0.0188633054, -0.0139673231, 0.00147921511, 0.0353810601, 0.0155286677, -0.0131477937, 0.000942282146, -0.00893710926, 0.0132325729, 0.0145819709, -0.0188633054, 0.00983435195, 0.0178318284, -0.0017247207, -0.0242608953, -0.00479354, 0.00195874576, -0.00711436244, -0.0267053526, 0.0178318284, -0.0152743319, 0.00105267134, -0.0231587682, 0.0150765143, -0.0225370564, -0.00194108346, 0.00477234554, -0.0141722057, -0.00990500115, -0.0285704881, 0.00106150249, 0.0149776051, -0.00369494688, -0.00926209427, 0.00191988877, -0.0121233827, -0.00258928887, -0.00245505548, -0.000416829571, -0.00315624778, -0.00569078373, -0.0121445768, 0.0077148797, -0.0144336075, -0.00977076776, -0.00296196272, -0.00125843682, -0.0159243029, -0.00954469107, -0.0355788767, 0.0109929973, 0.00107474916, 0.00849908497, -0.0280335564, 0.00643259892, -0.00313152047, -0.0103924796, -0.0243598036, 0.0161079913, 0.00998978, 0.0189622138, 0.00454626838, 0.00926915929, -0.0218729563, -0.00437671039, -0.0169275198, -0.0235544033, -0.00679644151, -0.00534813572, 0.0171253383, 0.00365962251, 0.0111696199, 0.0102723762, 0.00495603308, -0.01189024, -0.0259140823, 0.00307146879, 0.0088382, -0.00583208166, 0.00134144945, 0.0254477989, 0.000766101, -0.0145961, 0.0189622138, -0.0309725571, 0.0011224373, 0.0172383767, 0.0013255534, 0.00594158797, 0.00159225368, 0.0126956403, -0.00294430042, -0.000171655192, -0.025518449, -0.00469109882, -0.00839311071, -0.0307747405, -0.0123000052, 0.00967892446, 0.0148645667, -0.0110636465, 0.00754532171, 0.0108163748, 0.01154406, 0.00170264288, 0.00667280564, -0.00198700535, -0.0240065586, 0.00460985256, 0.00845669489, -0.000286128779, -0.0213360228, 0.0110565815, 0.00812464487, 0.015627576, -0.0106962714, 0.0227066148, 0.0095800152, 0.0170546882, 0.00102529477, 0.00155427982, 0.0151895527, 0.00936806854, -0.00750999758, -0.00451094378, 0.0254195388, 0.0152743319, 0.0295878351, 0.00731924502, 0.00596631505, 0.0101734679, -0.00288248248, -0.0188633054, -0.00544704404, -0.00429546414, 0.00220955, 0.00651384518, -0.00517857773, 0.0310008172, 0.010547908, 0.0100816237, -0.0182415936, -0.0135292988, 0.00969305448, 0.00110919063, 0.0312834121, -0.0212512445, 0.0138401547, 0.0106256222, -0.027863998, 0.00884526502, 0.00113480084, 0.00588860083, 0.0162069, 0.00473702094, -0.0131054046, -0.00442263251, -0.00130347558, -0.00660922145, 0.000754178967, -0.00600163965, 0.0127309645, 0.0180720352, -0.0127733536, -0.0266205743, 0.000209518679, -0.00953056104, 0.00357131101, -0.00113568397, 0.0036384277, -0.00244445819, -0.00448268419, -0.0187643953, 0.000919321203, -0.00886646, -0.0155710578, 0.00473348843, 0.0172807649, 0.00375499879, -0.00586740626, 0.000407556887, -0.0107174655, 0.00569784828, -0.00214066729, 0.00497369515, -0.0139814531, -0.0164188463, 0.00359957083, 0.0041153091, 0.0283868015, -0.0112473341, 0.0133385463, 0.0146808792, -0.0284857098, -0.0180296451, -0.0036702198, 0.0230316, 0.0123706544, 0.00125667057, 0.00736869918, -0.00522803189, -0.00356424623, 0.0119820843, -0.00531987567, 0.00220778375, -0.014963476, -0.00208944664, 0.00960121, -0.0171112083, -0.00800454058, 0.00986967701, -0.00574377039, -0.00653857272, -0.00455333339, 0.0123353293, -0.00342648057, -0.00573317287, -0.0153449802, 0.00568725122, 0.00923383515, 0.000562101777, 0.015302591, -0.0064184689, -0.02378048, -0.0434915759, 0.00133791694, 0.0297008734, 0.0160797313, 0.0113815675, 0.0020205637, 0.00945284683, 0.0112473341, -0.0104419347, -0.0131831188, -0.00390689401, 0.0200078208, -0.00876755081, -0.0064891181, -0.0240348168, -0.0105832322, 0.0335441828, 0.0087463567, 0.000967009284, 0.0275672711, -0.0303791054, -0.0059769121, 0.0118831759, 0.0144194774, -0.00588860083, 0.00109947636, -0.0107881147, 0.0123918485, -0.00589213334, -0.0107527906, -0.00731924502, -0.0128298737, 0.00578616, 0.0247130487, 0.0109435432, -0.0119962143, -0.00524922693, -0.00531634362, 0.00799041148, -0.0304356236, 0.0168568715, 0.00826594234, -0.0132749621, -0.0152602019, -0.000543556351, -0.0060475613, 0.00836485159, -0.0208414793, 0.0121516418, 0.0036031031, 0.0111131007, -0.00484652724, -0.000745347817, 0.00386097236, -0.00436258083, 0.0452719331, 0.00182098011, -0.00466990424, -0.00989793614, -0.0106538814, -0.00974250864, 0.0161079913, -0.0186089687, -0.0213925429, 0.0127450945, -0.0153449802, -0.0256032273, 0.0320464224, -0.0231870282, -0.00532694068, 0.000659244251, -0.00521037, 0.000123856677, 0.0133244172, -0.00233495212, 0.00511146104, 0.00742521835, -0.00355894747, -0.0113109183, 0.0182133336, -0.00358544081, -0.00766542554, -0.0128510678, 0.0104772588, -0.00158165628, -0.00189692783, -0.00161168224, 0.00320570217, 0.0149917351, 0.0060122367, 0.00205765455, -0.0083012674, 0.0195415355, -0.00247625029, 0.014278179, -0.0285422299, 0.005602472, -0.0120809926, 0.00504787685, -0.0173796732, -0.00130700797, -0.000903866719, -0.00330284447, 0.000588595169, 0.00661981897, -0.00383271277, 0.00432372373, 0.00274295057, -0.00371614168, 0.0153449802, 0.0196828339, -0.0106892064, 0.00818116404, 0.00236144545, 0.00262814574, 0.00762303593, -0.0060828859, -0.000932567869, -0.00193401857, -0.0164612364, 0.024797827, -0.00777846389, 0.00485359179, -0.00972837862, 0.012264681, -0.00924796518, 0.00550709572, 0.00998978, -0.0221272931, 0.0267477427, -0.0243739337, -0.0157830045, 0.00614293758, -0.000702075253, -0.00401640031, 0.00634075515, -0.0140803624, 0.00924796518, 0.0011224373, 0.0363136269, -0.00482886471, -0.00380445295, -0.00862625334, -0.000551945937, 0.00897949841, -0.0222968496, -0.00555655034, -0.00953056104, 0.00969305448, 0.0125967311, 0.00787737221, -0.0243880637, -0.0186372269, -0.00446502212, -0.0024126661, -0.00533400569, 0.00777846389, 0.0093468735, 0.0167438332, -0.00670813024, 0.00765129551, 0.0193437189, 0.0160090812, -0.00564839412, 0.00916318595, 0.0155569278, 0.0170546882, 0.0223816298, 0.00420008786, 0.00919144601, -0.00420008786, -0.00568725122, 0.0154438894, -0.00570138078, 0.0103571555, 0.0211523343, 0.0106114922, 0.0123847844, -0.0156558361, -0.0130347554, 0.0220707729, -0.015627576, 0.0117701367, 0.0102723762, 0.00646085851, 0.00608995091, -0.00421068538, -0.00104648957, -0.0121163176, 0.014271115, 0.0243598036, 0.00801160559, 0.00744641339, -0.0194426272, -0.0142499199, -0.0392243713, 0.026535796, 0.0012045668, 0.00809638482, 0.00853440911, -0.00748173799, 0.00177770748, -0.00217245915, -0.00106061937, 0.00444382709, 0.0107598556, -0.00510439603, -0.0056766537, -0.0162492897, -0.0140874265, -0.00606169133, 0.00806106068, 0.0140591674, -0.0284291897, 0.00718854414, 0.00315624778, 0.0313399322, 0.0132043138, -0.00151807209, 0.00971424859, -0.00106503488, 0.015288461, 0.0218588263, -0.00186690199, -0.0234837551, -0.0133102871, 0.00961534, -0.00346180494, 0.00234378339, -0.00559540745, 0.0101734679, 0.0158819128, 0.00302731316, -0.0268183909, 0.0215197112, -0.0213077627, -0.0133173522, 0.0204458442, 0.0112755932, -0.0109011531, -0.00660215691, -0.00774313929, 0.0138966748, 0.00928328931, 0.00116747606, 0.0219153445, -0.040496055, -0.0155569278, 0.0101381429, -0.012222291, 0.0111201657, 0.00622065179, 0.00232435483, 0.00654210476, -0.010519648, 0.0212795027, 0.00842843577, -0.002294329, 0.00698012905]
12 Jul, 2024
PostgreSQL – Temporary table name 12 Jul, 2024 In PostgreSQL, it is possible, though not recommended, to create a temporary table with the same name as an existing permanent table. When a temporary table shares its name with a permanent table, the temporary table will take precedence, preventing access to the permanent table until the temporary table is removed. This behavior can lead to confusion and should be managed carefully. Let us get a better understanding of the Temporary Table Name in PostgreSQL from this article. PostgreSQL Temporary table name Example Let us take a look at an example of the Temporary Table Name in PostgreSQL to better understand the concept. Step 1: Create a Permanent Table First, create a permanent table named ‘customers'. Query: CREATE TABLE customers( id SERIAL PRIMARY KEY, name VARCHAR NOT NULL); This table is now ready to store customer data with unique IDs and names. Step 2: Create a Temporary Table with the Same Name Next, create a temporary table named ‘customers'. Query: CREATE TEMP TABLE customers( customer_id INT); Step 3: Querying the customers Table Now query the data from the customers table as below. Query: SELECT * FROM customers; Output: PostgreSQL will access the temporary customers table instead of the permanent one. This is because the temporary table takes precedence in the current session. Step 4: Listing Tables in the Database If you list the tables in the test database using the \dt command. \dt The result is as shown below: Output: The output will show the temporary ‘customers' table, but not the permanent one. The schema for the temporary table will be something like ‘pg_temp_3'. Important Points About PostgreSQL Temporary table name PostgreSQL creates temporary tables in a special schema, so you should not specify the schema in the ‘CREATE TEMP TABLE' statement. To access the permanent customers table again, you must remove the temporary table using the DROP TABLE statement. When a temporary table has the same name as a permanent table, the temporary table takes precedence in the current session. When listing tables using the ‘\dt' command, PostgreSQL will display the temporary table, not the permanent one, as long as the temporary table exists. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name
https://www.geeksforgeeks.org/postgresql-temporary-table-name?ref=asr10
Languages
PostgreSQL – Temporary table name
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0574482195, -0.0320449546, -0.0199493188, 0.0328933485, 0.0319722369, 0.00948986411, 0.0280696359, 0.00278302678, -0.0463706516, 0.0164103135, 0.027560601, 0.00883539, -0.0335478187, -0.0554605573, -0.0164587926, 0.00650837412, -0.0262516551, 0.0132106664, 0.0128470697, -0.00798699912, 0.053763777, -0.0213067438, -0.0136348624, -0.0279969163, 0.0263243727, 0.0258880574, -0.0413287804, -0.0111381672, -0.0155619225, -0.00169526786, 0.00419953745, 0.028312033, 0.0271000452, -0.012628912, -0.0180707369, -0.00831423607, -0.0281423554, 0.0192584842, -0.0138409, 0.018737331, -0.0288695469, 0.00199826481, 0.00492673, -0.0243488327, -0.0288210679, 0.00332993618, -0.0300088171, -0.0377170593, -0.0352446027, 0.0378140174, 0.00329054659, -0.000815061736, -0.0120410984, 0.0488915853, 0.000435179332, -0.00520245731, 0.00118699053, -0.0204825923, 0.00400561932, -0.0300330557, -0.00957470294, 0.0101019181, 0.0145802125, -0.00752038369, 0.0502247699, -0.0156467613, -0.0413772613, -0.0338629372, -0.0361414738, 0.00419650739, -0.0122653162, -0.00178162195, 0.0335963, 0.0303724129, 0.0023451962, -0.0243245941, 0.0390502438, 0.0107200313, -0.00183010148, 0.0366505086, -0.0166890714, 0.0450617038, 0.00786580052, 0.0363596305, 0.0190645661, -0.0187252108, -0.0339114182, -0.0247972682, 0.0744160488, -0.0153922439, 0.0510004424, 0.00402379921, 0.0286756307, -0.0128107099, -0.010283716, 0.0187252108, -0.0138651393, 0.00718102744, -0.0184343327, 0.0228702091, -0.00855663326, 0.0349537246, 0.0110230288, 0.0153195253, 0.0136712212, -0.00299360976, 0.028166594, 0.0220581759, -0.0103079556, -0.00427225698, 0.016337594, 0.0182525348, -0.0644292682, 0.0407470278, -0.046055533, -0.0148104904, 0.0449647456, -0.0171253867, -0.0171738658, 0.0151134869, -0.0466857664, 0.0247851498, -0.0122653162, 0.0202280749, 0.00167557306, 0.01084729, 0.0201068763, 0.0155255627, 0.0218400192, 0.0317540802, 0.0262758937, -0.0628779233, -0.00851421338, 0.053763777, -0.00642959494, 0.00509640854, 0.00907172821, 0.010138277, -0.0350022055, -0.018119216, -0.0770824179, 0.00263910322, 0.0146650514, -0.033669021, -0.00635687588, 0.00526911672, -0.0257911, -0.018494932, -0.00712042814, -0.011689622, -0.00565695297, -0.0463464111, 0.0435588397, 0.0329903066, -0.0103382552, 0.00566907274, 0.00217551808, -0.0129440287, 0.0146650514, 0.0167981498, 0.00423892727, -0.0287725888, 0.00915656704, -0.0438254774, -0.0212219059, 0.0355112404, 0.070392251, 0.0357536376, 0.0173799042, 0.00815667771, -0.0120713981, 0.0101140374, 0.00572058233, 0.022021817, -0.0287483484, -0.0248215087, -0.0144590139, -0.00868995208, -0.0159012787, -0.0146286916, -0.00382685126, -0.0304208919, 0.0028572611, -0.0170284268, 0.00641747518, 0.0467342474, 0.023900399, -0.00757492334, 0.0119198989, 0.00999889895, -0.021270385, 0.0323600732, 0.0791185573, 0.0279726777, 0.0196099617, 0.00822333712, -0.0202644356, -0.0226641707, 0.00434497604, 0.00446920469, -0.036989864, -0.0438497178, -0.0193554442, 0.0579330139, 0.0117138615, 0.0265667718, -0.00612053787, -0.00330569665, 0.0174526237, 0.0246639512, 0.00182858645, -0.0131379468, 0.00936866552, -0.00962318294, -0.0436315574, -0.0149680488, -0.0141681368, -0.0127622308, 0.0238519181, -0.0259850174, -0.0046570627, 0.000799154397, 0.0243245941, -0.0127379913, -0.000533274608, -0.0014248431, -0.029863378, -0.00406318903, -0.000669244502, 0.0238761585, 0.0694711357, -0.0102231167, -0.0097928606, -0.0264455732, 0.017791979, -0.00039919847, -0.0181676969, 0.0202038363, -0.0083990749, -0.0344931707, 0.0621992089, 0.0399955958, -0.00907778833, 0.0124471141, -0.0302269738, 0.0110654477, 0.00705376873, 0.00938078482, 0.0136833414, 0.0495460592, 0.0162042752, -0.0362384319, -0.020567432, 0.0157073606, -0.0113866245, 0.00831423607, -0.0277060401, 0.010798811, 0.0143862944, -0.0264213327, 0.0129682692, 0.0114957038, -0.0667562857, 0.0225187317, 0.0232822839, -0.0144953737, 0.0200220365, -0.0255729407, 0.0156952403, 0.0169193484, -0.00216188305, -0.00687803049, 0.0138772596, -0.0235246811, -0.0246639512, 0.026009256, -0.0263243727, -0.00794457924, 0.00421771733, -0.00838089548, 0.00209370884, -0.0305178519, 0.00543576479, -0.00662957272, 0.0114835836, -0.00229065679, 0.0218400192, 0.0185312927, -0.0220945366, -0.0245427508, -0.00170284277, -0.0253790226, 0.016664831, 0.041183345, 0.0115381228, -0.00140287576, -0.0176223014, -0.0186282508, 0.00684167072, 0.0111684669, -0.00182252657, -0.0209673885, -0.00279969163, 0.0272212438, -0.0492794216, -0.00673259189, -0.00541758537, 0.0163860749, -0.0111502875, -0.00486613065, 0.0248215087, -0.0113320854, -0.0026694031, 0.00552969426, -0.0290392265, -0.00118471798, -0.0571088605, -0.0110715078, -0.029814899, -0.0168829896, 0.0170284268, -0.0243124738, -0.0544909686, -0.0109806089, 0.0575936586, -0.0453768224, -0.00948986411, -0.0157437213, 0.0431225225, 0.0269788466, -0.0199856777, -0.0747069269, -0.03943808, 0.043340683, 0.00113699597, 0.0195130017, 0.0228702091, -0.0086354129, 0.00517821778, 0.00775066158, -0.0132955052, 0.0285059512, 0.0363111533, -0.00103473454, 0.0158528, 0.0352446027, 0.0250639059, -0.00406015897, 0.0132349059, 0.00853845384, 0.000740827527, 0.0131379468, 0.0205916725, 0.0363596305, 0.0390502438, -0.0280938763, 0.000840059, -0.0104533946, 0.0199250784, 0.0146892909, 0.0224096533, -0.00423286716, 0.0302027352, 0.0055630235, -0.0433891602, -0.0249427073, -0.0204583537, -0.00539637543, -0.0347113274, -0.017137507, 0.00585390069, -0.00361475348, 0.0283847526, -0.0123198554, 0.0122653162, 0.00806577876, -0.00406621862, 0.0362384319, 0.067435, 0.00209522387, -0.0235246811, -0.0115744825, 0.0137924207, 0.0380079336, -0.0356566794, -0.0208461899, 0.0144832535, -0.00528426655, -0.0171617456, -0.01483473, 0.00655685365, 0.0421044528, -0.0174405035, -0.0310753658, -0.0165193919, -0.019440284, 0.0110109085, 0.00589026045, 0.023197446, -0.0276333205, 0.0216218606, -0.00584481098, 0.00185737119, 0.0124349939, -0.0198644791, 0.023427723, -0.0155134434, -0.00585390069, -0.00559029356, 0.0274394024, -0.0223975331, 0.00181949663, -0.0382745713, 0.010471574, 0.0103018954, 0.0398986377, 0.0102655357, 0.0346628502, -0.00485098083, 0.0090656681, -0.006338696, -0.00218915287, -0.022118777, 0.00798699912, 0.00927170645, 0.0235246811, 0.0141923763, 0.0284332316, -0.018216176, 0.0138409, 0.0276090801, -0.00858693291, 0.00262395339, -0.0100352587, -0.033669021, -0.0340568535, -0.00620537717, -0.0112048266, -0.00888993, -0.00290422561, -0.0129561489, 0.0199129581, 0.0440678746, -0.0126410322, -0.0366505086, -0.0208340697, -0.014507493, 0.0118168807, -0.0137803005, -0.0350022055, -0.0123562152, 0.0191615261, -0.0271727648, 0.016761791, 0.00693256967, -0.00809001829, -0.0172223449, -0.00176192715, 0.0147256507, -0.0118532404, 0.0139014991, 0.0170163084, 0.00922322646, -0.0465160906, 0.0270515662, 0.0302269738, 0.012016858, -0.00902930833, 0.00910808798, 0.00699316943, -0.0023239865, -0.00307541876, -0.0533274598, 0.0208219495, -0.0180343781, 0.00807789806, 0.0111502875, 0.0125077134, -0.0202159546, 0.0166769512, 0.0588056445, 0.0121683571, 0.0201068763, -0.00742342509, -0.025354784, 0.035026446, -0.00449647428, -0.0333539024, -0.0590480417, -0.00981710106, 0.000677955628, -0.000403743412, 0.00792034, -0.0432194844, 0.035777878, 0.00571452221, -0.0324812718, -0.0239246376, -0.0156346411, -0.00721132709, 0.0038965405, -0.0201674756, -0.0500793345, 0.0101079773, -0.00948380399, 0.00539637543, -0.0213794634, 0.0334266201, -0.0316813588, -0.00123698497, -0.00668411236, 0.000659775804, 0.00789004, 0.0523578711, 0.00774460146, 0.00910202786, -0.0061599277, 0.0125440732, 0.00335417595, -0.00619931705, -0.0254275035, 0.00126501219, -0.00940502435, 0.0208219495, -0.00849603396, -0.0183979739, 0.0343477316, 0.000800669368, 0.00920504704, -0.0459343344, 0.0185797717, 0.0364081115, -0.0056811925, -0.0167375505, -0.0250881463, 0.0136954617, 0.0263001341, -0.0240943152, 0.00805365853, 0.0118956594, 0.0241549164, -0.00469039241, -0.00781126088, 0.00245427527, 0.00836877525, -0.00656291377, 0.0128107099, 0.0049570296, 0.00758098345, -0.0298876166, 0.0414499789, 0.021173425, -0.000885508547, 0.035171885, -0.0109260697, -0.00186343119, -0.0253063031, 0.0144590139, -0.00154982926, 0.00530244643, 0.00562059321, -0.0312935226, 0.015307405, 0.0288937874, -0.0384927318, -0.0257426202, 0.0172344651, 0.0247487891, -0.0132955052, 0.0237670802, 0.00545394467, -0.000852178899, -0.00390866026, -0.0170769077, -0.0144105339, 0.00599630922, -0.00473584188, 0.0194766428, -0.00256335409, 0.00246185018, 0.00387230073, 0.0410136655, 0.00655079354, -0.00213006837, -0.00859299302, -0.0189191289, -0.0170284268, 0.00781126088, -0.0224217735, -0.00589632, 0.0102776559, 0.035171885, 0.0165921114, 0.0114775235, 0.00899294857, -0.00401167944, -0.0397289582, -0.00494491, 0.0078961, 0.0381291322, 0.00822939631, 0.0190039668, 0.00582360104, 0.0149438083, 0.0482855923, -0.0121925967, 0.0101200975, -0.0685500279, 0.00862935279, 0.0153680043, -0.035171885, 0.000126690589, 0.0235004425, -0.0128955496, 0.0328206271, -0.0309784058, 0.0243367143, 0.0420802124, -0.0299118571, 0.0141560165, -0.00130818924, -0.00725980662, 0.0271970052, 0.0170163084, -0.0349537246, 0.0223975331, 0.0150407674, 0.0379594564, 0.0149559285, -0.0192584842, -0.0156710017, 0.0116047822, 0.0194524024, -0.0252335854, 0.0204462335, 0.0406500697, -0.0204825923, -0.00125137728, 0.0296937, 0.0215612613, 0.0588056445, 0.00867783185, 0.0160345975, 0.077033937, -0.0147256507, -0.0202523153, 0.0135257831, 0.0128834294, 0.0194039233, -0.0161921568, -0.0250154268, 0.00721738674, -0.0170647874, 1.32087725e-05, -0.0240579564, -0.0284817126, -0.000692726753, 0.00776884146, 0.0400925539, 0.0255971812, -0.00339053571, -0.0165072735, 0.024506392, -0.00290119555, 0.00377231184, 0.0172708258, 0.0156225218, -0.0140711777, 0.00186191616, 0.0171738658, -0.024651831, -0.0338629372, -0.027560601, -0.0200099181, 0.0045964634, -0.0278757177, 0.0187858101, -0.0058599608, 0.0135257831, 0.00531153614, 0.000687424268, 0.00793246, -0.00437224563, -0.0194039233, -0.035632439, 0.00273757731, -0.0236095209, -0.0211613066, 0.00541152526, -0.0187494494, 0.0132349059, -0.00529941637, 0.0239852369, -0.00041813578, -0.0041086385, -0.0163860749, 0.00177556206, -0.012350155, -0.0094232047, -0.0203613937, 0.00445708493, 0.0154649634, 0.0164830331, -0.0157679599, 0.00176192715, 0.0350991637, -0.0176101811, 0.0110836281, -0.00412681838, 0.0144590139, 0.0223732945, -0.0280938763, -0.00579027133, 0.0111502875, -0.0162285157, 0.00776884146, 0.00321176741, 0.0179858971, -0.0275363605, -0.0257668588, -0.0345901288, -0.0190403275, -0.00166193815, 0.0242397543, -0.00575997168, 0.0158164408, -0.00429346645, 0.0106533719, -0.0175253432, 0.00110139383, 0.00685379049, 0.00611144817, 0.0342507735, -0.00180283177, -0.00308753876, -0.00523881707, 0.0139863389, -0.0158891585, -0.0189312492, -0.0151134869, 0.00901112892, -0.00645989459, -0.0300088171, 0.0086960122, 0.0389290452, 0.0161921568, 0.0353415608, -0.0122592561, -0.00833241548, 0.00921110716, 0.0192100052, -0.0156588815, 0.039486561, -0.0127379913, -0.0146771716, -0.0180343781, -0.0266152509, 0.00399652962, 0.0506126061, 0.0378140174, 0.0162406359, 0.00178768195, -0.00437224563, -0.0014119657, 0.0188948885, -0.00750220427, -0.0115623632, 0.00804759841, 0.0178525802, -0.00329357665, 0.0111927064, 0.0178646985, 0.0239367578, -0.00422377745, 0.0448920242, -0.0347840488, 0.0104533946, -0.0148226097, -0.0135985026, -0.0143499346, 0.0076718824, -0.0489158258, 0.0121077579, -0.0242033955, 0.00679319119, -0.000807486824, 0.0242882334, 0.0175374616, 0.00363899325, 0.0087687308, 0.0135257831, 0.0127622308, 0.0215370227, 0.0139742186, 0.00181040668, -0.00861117244, 0.0050751986, -0.0117684007, -0.0263486132, -0.0411348641, 0.0117259817, -0.000862783752, 0.015210446, -0.0209552683, -0.00785974, -0.0549272858, 0.0115563031, -0.00873843115, -0.0207855888, 0.0373777, 0.00446617464, 0.0155376829, 0.0188100487, -0.00392381, 0.0494975783, -0.00195887522, -0.00451768422, -0.00692651, 0.0146650514, -0.0125683127, -0.0123259155, -0.0472190417, 0.0126652718, 0.0180101376, -0.029717939, 0.0168829896, -0.0169072282, 0.0238276795, 0.0486734286, 0.0065871533, 0.00291331555, -0.0172344651, -0.0116775017, 0.0102776559, -0.0351476446, 0.0216582213, 0.0104836943, 0.00515397778, -0.00315419817, 0.00336629595, -0.0127864704, -0.0165072735, -0.0176707804, -0.0398986377, 0.0135742621, 0.0143620549, -0.00897476915, 0.00585390069, -0.0164224338, 0.0510489233, 0.034226533, -0.00843543466, -0.0439224355, 0.0217551794, -0.00537516549, -0.00914444774, -0.0230883658, 0.0224217735, 0.0299360976, -0.00327236694, 0.0303239338, 0.032723669, -0.0341780558, 0.0108897099, 0.0142529756, 0.00732646603, 0.0315601602, -0.0048964303, 0.0164709128, -0.00908384845, 0.0129319094, 0.0109987883, 0.0182404146, -0.0393653624, -0.00148544251, 0.00868995208, 0.0147498911, -0.0100170784, 0.010047378, -0.00544788502, 0.0153316446, 0.000217968423, -0.0141196568, -0.0217309408, -0.00961106271, 0.0150771271, -0.015683122, -0.00959288329, -0.00754462369, -0.0364323519, 0.0101625174, 0.0107442709, -0.0268334076, -0.0111139277, 0.00571755227, 0.00983528048, 0.0179131795, -0.00962318294, 0.0115381228, 0.0174647439, 0.00169526786, 0.0477038361, -0.0152225662, -0.0228823293, 0.0178283397, 0.00290271058, 0.0252820645, -0.00983528048, 0.00141575316, 0.00735676568, 0.0180828571, 0.0413530208, 0.0162042752, -0.000689318, 0.00669623213, -0.0205553118, 0.00246791, -0.00100746483, -0.0238882788, -0.0206159111, 0.00925352611, 0.0460797735, -0.0156467613, -3.78272744e-05, 0.00304511911, 0.00671441201, 0.0180707369, -0.00750826392, -0.00796882, 0.0129197892, 0.0250639059, 0.00132182415, 0.00103094708, 0.00605387893, 0.0195372421, 0.00435709581, -0.034081094, 0.00878085103, -0.0263243727, -0.0102231167, 0.0037420122, 0.0125077134, 0.0249427073, -0.00557514373, -0.0122471359, 0.0102291768, 0.00178768195, -0.0115684234, -0.00488734059, -0.00982316, 0.0221430156, 0.0271970052, 0.0180949774, -0.0237186, -0.0059145, -0.0249427073, -0.00556605356, -0.0231489651, -0.00284514111, 0.0323843136, -0.000497672474, 0.00264667813, 0.0391956829, 0.00817485712, 0.0189433675, 0.0525517873, 0.0138893798, 0.0336205401, -0.0120592779, -0.0186767317, -0.0332084633, -0.0025497193, -0.0105503537, -0.0106897317, -0.0127258711, -0.0364081115, 0.00785974, -0.0144953737, -0.00536304573, 0.00293452526, 0.0202038363, -5.50602235e-05, -0.00831423607, 0.0264698118, 0.00783550087, -0.0588056445, -0.0178283397, -0.0169557091, -0.0182767753, 0.0202401951, -0.0138772596, 0.0257426202, 0.0292331446, -0.00552060409, 0.030566331, 0.0073143458, 0.00203007949, -0.00178162195, -0.0140348179, -0.0131500671, -0.00376928179, -0.015355885, 0.0157679599, -0.00705376873, -0.01478625, -0.0129803885, 0.0639929548, 0.000436315575, 0.0119804991, -0.0073143458, -0.011126047, -0.00210128375, -0.0302269738, -0.0152710453, 0.021597622, -0.0180101376, 0.0143378153, 0.00101579726, 0.0165921114, 0.0246881898, 0.00370262261, -0.0283847526, -0.010283716, -0.0293785818, -0.00898082927, 0.0158891585, -0.00932624564, -0.0176950209, -0.000890811, 0.0194887631, 0.0366262682, -0.022955047, 0.0237307195, -0.00555696385, -0.0172829442, -0.00218763785, -0.0157073606, -0.0169193484, 0.00833241548, -8.42236768e-05, 0.00312692835, -0.0078961, -0.00676895166, 0.0396804772, 0.000725298887, -0.0111502875, 0.0124592343, -0.0132349059, 0.0143378153, 0.00759310322, 0.010659432, 0.00122941006, -0.00796882, -0.0170647874, -0.0220339373, 0.0186646115, -0.0449162647, 0.00752038369, -0.0112351263, 0.0276575591, -0.0238882788, -0.0263970923, 0.0264213327, -0.0142287361, -0.00447829487, -0.00464494294, 0.0103867352, -0.0135621428, -0.0094232047, -0.00215582317, -0.0167860296, -0.0229792874, -0.0011786581, -0.0118108205, 0.0184222143, 0.00581148127, -0.00373292225, 0.0182404146, -0.0136833414, -0.0251608659, 0.00922928657, 0.0203492735, 0.0130773475, 0.0152346855, -0.00212855334, -0.000119967852, -0.0134167038, 0.0188585296, -0.0189191289, -0.0115563031, -0.0121925967, 0.0161315575, 0.00778096123, 0.0139136193, 0.0121804764, 0.0318995155, 0.0389290452, 0.050661087, -0.023900399, -0.0182404146, -0.0426134877, -0.0195372421, -0.0059145, 0.0164103135, 0.0264698118, 0.026857648, -0.00453586411, 0.0336932577, -0.0226399302, 0.00882933103, 0.0213188641, -0.0236701202, 0.00913232751, -0.00614780793, 0.0258638188, -0.000388593558, -0.0182040557, -0.00990194, 0.00698710931, 0.0111139277, 0.0316328816, -0.0114957038, -0.0151740862, 0.0120713981, -0.00220733276, 0.012253196, 0.00268455292, -0.0130652273, -0.00343295536, 0.0186524913, -0.0128228301, -0.00614174781, -0.00668411236, 0.0242639948, -0.0133197447, 0.00383291114, 0.00147256511, -0.000754083623, -0.0027981766, -0.0199735574, -0.00496915, 0.00277393684, 0.00696892943, -0.01385302, -0.010374615, 0.0114290444, -0.00766582228, 0.0139499791, -0.0274394024, 0.0116956821, -0.0140105784, -0.022118777, 0.0313904807, 0.0236701202, -0.00299663958, 0.00338144577, 0.0192342456, -0.01385302, -0.00979892071, 0.00729010627, -0.0303481724, 0.00785974, -0.000315874291, 0.013428824, 0.00332993618, -0.011925959, 0.00583269075, -0.0111381672, 0.00685379049, 0.00787186064, 0.00447526481, -0.00592965, 0.00535395602, -0.000421923236, 0.00317540788, 0.00286635105, -0.0241185557, 0.00319055771, 0.0130167482, 0.0149074495, 0.00334811606, 0.00319964765, -0.0123804547, 0.0136591019, 0.00265122321, -0.00818091724, -0.0127985906, -0.0173677839, 0.0238397978, -0.0182040557, -0.0119320191, 0.0264940523, -0.010750331, -0.0177798606, 0.0160103571, -0.0244700331, -0.0131864268, 0.00348749477, 0.0115199434, 0.00244518532, 0.0419105366, 0.0149801681, -0.0235368013, -0.00477220165, 0.0142166158, -0.0149074495, -0.00620234711, 0.000677955628, 0.00542364502, -0.0251608659, -0.00564180268, -0.00840513501, -0.012677392, -0.000365679414, 0.00887175, 0.00890811, 0.000913535769, -0.0397532, 0.0304208919, 0.0143862944, 0.0186524913, -0.0100231385, -0.0134651838, -0.0267364495, -0.0127258711, -0.00724162674, 0.0089444695, 0.000171666703, 0.00574785192, -0.00209370884, -0.0231126063, 0.00518124737, -0.0118350601, -0.0244942717, -0.00392078049, -0.00109457644, -0.006314456, -0.00370868249, 0.0299603362, -0.012301675, 0.0169557091, -0.00791428, 0.0158891585, -0.0200826358, 0.0392441638, -0.0012854645, 0.0220581759, 0.0296452194, -0.021124946, 0.0284574721, -0.029014986, 0.031923756, -0.0341053344, 1.2403937e-05, 0.000469645252, 0.00422074739, 0.0423710905, 0.0204825923, 0.0136833414, -0.0193069652, -0.000824909133, 0.00473887194, 0.0158891585, -0.0314632021, -0.0051085283, -0.00143317552, 0.0200705174, 0.015586162, 0.000385942345, 0.00562059321, -0.0247851498, -0.0270030871, -0.00331781642, 0.0222157352, -0.0237791985, 0.0144105339, -0.0151862064, -0.026857648, -0.0207128711, 0.00153543695, 0.0259850174, -0.0224702526, 0.00284514111, 0.0124228746, 0.0348567665, -0.0110290879, 0.000847633928, 0.0172344651, -0.0135015436, 0.0180222578, -0.0101079773, 0.000933230564, 0.00948380399, 0.0144226542, -0.0172102265, 0.00361778331, 0.0197554, -0.0160951968, 0.00381776132, 0.0143378153, 0.0282150749, 0.0194766428, -0.0115138832, 0.00400561932, -0.0388563275, -0.0110533284, -0.0144226542, -0.00239519076, 0.0107018519, -0.00729616638, -0.0151983257, 0.0226884112, -0.00649625435, -0.00179677177, 0.0209431481, 0.00166042324, -0.00565695297, -0.0125198336, -0.00953834318, 0.000419272, 0.019573601, -0.0100413179, 0.00178010704, 0.0109624295, 0.0390260033, 0.0140105784, -0.0262031741, 0.0105261132, -0.00128091953, 0.00440557534, 0.00245730509, 0.0012392574, 0.0128107099, 0.0168466289, 0.00179222692, 0.00261183362, 0.00830211584, 0.00457525346, 0.0282150749, -0.0244094338, -0.00647201436, -0.00393896, -0.000174412606, 0.00947168376, -0.0154043641, 0.0124955932, 0.0075870431, -0.0398986377, 0.00896870904, -0.0103261359, -0.00533880619, 0.0251123849, -0.0180586167, 0.00688409, 0.0313420035, -0.00194978528, -0.0179010592, 0.0100594983, 0.0212946236, 0.00744766463, 0.0201068763, 0.0151740862, -0.00850209408, -0.037135303, -0.0364808291, -0.0307844877, 0.0206886306, -0.00858087279, -0.0104897534, -0.002477, -0.0115866028, 0.0318267979, 0.00727192638, -0.0021906679, 0.0162285157, -0.00678713107, -0.00908990763, -0.0414257422, 0.0116653815, 0.0127379913, -0.0141802561, -0.0212825052, -0.00595085975, 0.00588117028, 0.0604539476, 0.0141438972, -0.0165799931, 0.0245669913, 0.0200220365, 0.0149801681, 0.0129319094, 0.0219006184, 0.00267394795, 0.00486916071, -0.00910202786, -0.0141196568, 0.0149680488, -0.0243367143, -0.0492309406, 0.0137439407, 0.0399471149, -0.0222399756, 0.0325539894, 0.0133682247, -0.00947774388, 0.0195614826, -0.015586162, 0.0136833414, -0.0157194808, 0.0255729407, 0.00705982838, -0.00220581773, -0.0097807413, 0.00268606772, 0.006526554, 0.0131137073, -0.017040547, -0.00581148127, -0.0199493188, -0.0210037474, 0.0243003536, -0.0173314251, -0.000318146776, -0.0139620984, 0.0250396673, -8.79164509e-05, 0.0150286481, -0.00566907274, 0.000360187609, -0.0189433675, 0.0427831672, -0.00327539677, -0.00611447822, -0.0156467613, -0.00656897342, 0.0214521829, -0.013428824, -0.00618416723, -0.00441163545, -0.00308299391, 0.0296937, -0.00927170645, -3.72828254e-05, 0.0220339373, -0.00566604268, -0.0175859425, 0.00562362326, 0.0310511254, 0.00762340287, 0.00623567682, -0.0116290227, 0.00298754987, -0.000892325945, -0.00221945252, 0.0141196568, -0.0144347735, 0.00836877525, 0.0218157787, -0.00155134429, -0.000464342796, -0.00676895166, 0.0237670802, -0.00552969426, -0.0116775017, 0.00164072844, -0.0013392464, 0.00463888282, 0.00549030444, -0.0107260915, 0.0339356549, 0.0202159546, 0.000155001864, -0.0104291542, 0.0249911863, -0.00814455748, 0.0202886742, -0.0382745713, 0.00397531968, -0.00551454397, 0.00260728854, 0.00505398866, -0.00665987236, 0.00703558885, 0.00616295775, 0.0323115923, -0.00933836587, 0.00512973825, -0.00877479091, -0.00266334298, 0.019113047, 0.0112411864, -0.0124107543, -0.0284574721, -0.00479947124, -0.0163981933, -0.00827181619, -0.0214521829, -0.00301330443, 0.0198766, -0.0233913641, 0.00622355705, 0.0296452194, 0.0266637299, -0.00985952, -0.0514852405, 0.00649625435, 0.0228459686, -0.0136348624, 0.00354809407, -3.22881097e-05, -0.0226520505, 0.00675683143, 0.0181070976, 0.00709618814, -0.0182404146, 0.0181919355, 0.0252093449, 0.0415711775, 0.00636899564, -0.00565089285, -0.00844149478, -0.0165193919, -0.0389532857, 0.0183858536, -0.010095858, 0.0141438972, -0.00556908362, -0.00240731053, -0.0248699877, 0.017137507, 0.032263115, 0.0281423554, 0.00632657576, 0.00986558, 0.0149801681, 0.0185555313, -0.0123743946, 0.0210158676, -0.0118047604, -0.00518427743, -0.00991405919, -0.0121380575, -0.0167981498, 0.00525699696, -0.00962924212, -0.023476202, -0.0128470697, 0.00222702743, 0.0015589192, -0.0166284721, 0.0147377709, -0.0194281638, 0.0100352587, 0.0400198363, -0.00963530224, 0.0119562587, -0.0151013676, 0.00179374183, -0.0115441829, -0.00680531096, -0.000105954241, 0.00393593032, 0.000799154397, 0.0136469817, -0.0055024242, 0.00860511325, 0.039292641, 0.00696286932, -0.0255729407, -0.000126027793, 0.00279363175, 0.0248457491, 0.000137958297, 0.0184585731, 0.0119623188, 0.00567210279, -0.0280453954, -0.00500550913, -0.00033178163, 0.0140105784, 0.0133682247, 0.00699316943, 0.0345901288, -0.00716890767, -0.00499641942, 0.0123804547, 0.0339598954, 0.0175495818, 0.00536304573, 0.0113745052, 0.0207371097, 0.00132561161, -0.00101958471, 0.00181949663, 0.0154892029, 0.0090656681, 0.00229368685, -0.00218006293, 0.00294967508, 0.0135015436, -0.00292392052, 0.0133682247, 0.0178283397, -0.0214885417, 0.00930806622, 0.0211128257, -0.00758098345, -0.013331865, -0.00904748868, -0.00256183906, 0.0195008833, 0.00612356793, -0.00645383447, 0.00602963893, 0.0114896437, -0.0109684886, -0.00579027133, 0.0145438528, -0.0196826812, -0.00596903963, -0.0146044521, 0.0342022926, 0.0135500226, -0.0087081315, -0.00584784104, -0.0235125627, -0.0110048484, 0.0106412526, 0.00158012903, -0.00491158, 0.0479462333, -0.0106291324, -0.014555973, 0.0108715296, 0.0132470261, 0.0144105339, 0.0101685766, 0.00693256967, 0.0179374181, -0.0338871777, 0.0293785818, -0.0116229625, 0.0107866907, -0.00463282317, -0.0105079338, 0.0179616585, -0.00463282317, -0.0152468057, -0.0219369773, -0.00222551241, 0.000929443107, -0.00424498692, -0.000758249837, 0.0390987247, 0.0152710453, -0.00433588633, -0.0100231385, -0.00582057098, 0.00521760713, -0.00213309843, 0.00298300479, -0.00663563283, -0.0204947125, 0.00505701872, 0.003263277, -0.00515700784, 0.0093626054, 0.00246336497, 0.030469371, 0.0303481724, -0.000466994, 0.0124713536, -0.00335720601, -0.00208764896, -0.00126652722, -0.00838089548, 0.0152346855, -0.00825363677, -0.0188827682, -0.00654473389, -0.0030496642, -0.0133076254, -0.00409045862, 0.0124713536, -0.00754462369, -0.00828393642, -0.0135015436, -0.000403364655, 0.0032299473, -0.0166284721, 0.00286635105, -0.0343477316, 0.0179010592, -0.00925352611, -0.00295119, -0.00264516333, -0.0152831655, 0.0124107543, -0.00177101709, -0.00547818467, 0.0187009703, -0.00739312498, -0.00682955096, -0.0147498911, 0.00982922, -0.00962924212, -0.0190645661, 0.0017043578, -0.00581451133, 0.0111078676, -0.0137439407, -0.0182767753, -0.0215855017, -0.0146408118, 0.00534486584, -0.00766582228, -0.00875055138, -0.0108836498, -0.00407833885, 0.00446617464, -0.00940502435, -0.00779914111, 0.0131985461, 0.0306875296, 0.000381776132, 0.00303451438, 0.00553272385, 0.0106957918, -0.0150044085, -0.0211613066, 0.0118653597, -0.0271000452, 0.00967772212, -0.00653261365, -0.0204704721, 0.0178041, 0.00350567442, -0.0316813588, -0.00808395818, -0.010610953, -0.0408924669, 0.00845361408, 0.0190524478, -0.0232822839, 0.0011127562, 0.00816879701, -0.0152346855, 0.000917323225, -0.00306632905, 0.00496915, 0.00238307077, 0.00933836587, -0.0261546951, 0.0166405924, 0.00269515766, 0.0170041882, -0.0211491864, 0.0238155592, -0.00780520122, 0.00528123649, 0.0116653815, -0.00489946036, -0.015307405, 0.0141438972, -0.00375716202, -0.0137197012, 0.0161073171, 0.0180707369, -0.0165799931, -0.0229429286, 0.00763552263, -0.00345719489, -0.0124955932, 0.0232701637, 0.001584674, 0.00175586727, 0.00908384845, 0.00738706533, -0.0165799931, -0.0180949774, -0.000301103195, 0.0114229843, 0.0167375505, 0.0245306324, 0.0187736899, 0.00140969327, 0.00368444272, -0.0260819755, -0.0126531515, -0.0147983702, 0.0139742186, 0.00218006293, -0.0199735574, -0.00589026045, 0.0206280313, 0.0195251219, -0.0114229843, 0.0185312927, -0.00383291114, -0.00799305923, 0.000534789579, -0.00830817595, 0.0142772151, 0.000421165751, 0.0231489651, -0.00842331443, 0.00699922908, 0.0173677839, 0.0134409443, 0.0100352587, -0.0204462335, 0.0164587926, -0.0160345975, -0.00397531968, 0.00456010364, -0.0156467613, 0.000593495264, -0.013380345, 0.00203310931, 0.00357536389, -0.00584481098, -0.000480250135, 0.0149680488, 0.00891417, -0.0116775017, 0.0220339373, -0.00337235583, -0.00875055138, 0.0466857664, -0.0212097857, 0.00344204507, -1.58718321e-05, 0.0182525348, 0.00730828615, -0.0136469817, 0.00914444774, 0.00761734275, -0.0202038363, 0.0119501995, -0.00971408188, 0.0149438083, -0.00896264892, 0.00470554223, 0.0124228746, 0.00902324822, -0.004741902, 0.0105806533, -0.0240579564, 0.00953228306, 0.0248093884, -0.0110836281, 0.00347840483, 0.00499338936, -0.0090050688, -0.0158406794, 0.00865965243, 0.0145802125, 0.00527517684, -0.0127258711, 0.0154286036, 0.0159376394, 0.0382260941, -0.0258153379, 0.00444799475, -0.0216218606, -0.0154407239, -0.0116169024, -0.00417226786, -0.0218157787, -0.000559408101, -0.0169920679, -0.013477304, 0.000493506261, 0.00713254791, 0.00641141506, -0.00576906139, 0.00055827183, 0.000893083459, -0.00638111541, -0.00934442505, 0.0252820645, -0.00636293553, 0.00321176741, -0.00716890767, 0.0102776559, -0.0199735574, -0.0194766428, -0.00950198341, 0.00861117244, 0.0135621428, -0.0169557091, 0.0309056863, -0.00208916375, 0.0210037474, -0.00612356793, 0.0171132665, -0.0123077352, -0.0161315575, -0.00439648563, 0.00335417595, -0.0172465853, -0.00964742247, -0.00899294857, -0.0101443371, 0.0256941393, 0.00138696842, 0.000150172855, 0.0101019181, 0.00245427527, 0.00312086847, -0.0330387838, -0.00117638556, -0.0158043206, 0.0173193049, -0.00184828124, 0.00685379049, -0.00609023822, 0.00418135757, -0.0110836281, 0.00483280094, -0.000277052808, -0.00238913088, -0.00492370035, -0.00944744423, 0.0174768623, -0.0159255192, -0.00224369229, -0.0185434129, 0.00120820024, -0.00205583428, -0.0115138832, -0.000487067562, -0.0126167927, 0.0107806306, -0.00836271513, 0.0115744825, 0.00959288329, -0.0166890714, -0.00570846209, 0.0114593441, -0.0160830766, 0.00764158275, -0.00223005749, 0.00309056882, -0.00129076699, 0.00795669947, -0.0113260252, 0.0109927291, 0.0176344216, 0.0264698118, -0.00484492118, 0.000210772239, -0.00204522931, 0.0141438972, -0.00429346645, -0.00347840483, -0.00479644164, 0.0133924643, -0.0206643902, -0.00263607339, -0.0105018737, -0.00479947124, -0.00806577876, 0.0117744608, -0.000652579649, 0.0216703415, -0.0200826358, -0.00699316943, 0.00371171255, 0.0240458362, 0.0189191289, 0.0174768623, 0.0145438528, 0.00413590809, 0.0120047387, -0.0140105784, -0.00783550087, 0.0144226542, -0.0299118571, -0.00394502, -0.0214643031, -0.0121744163, 0.0107200313, 0.0297906585, 0.0054690945, -0.0112714861, -0.0268334076, 0.0158406794, 0.0129076689, -0.00525699696, 0.00992011931, 0.0085748136, 0.00993224, -0.00387533079, -0.00274060736, -0.0226641707, 0.00351476436, 0.0066477526, 0.00173920242, 0.0111563466, 0.0106351925, 0.0193796847, 0.00774460146, -0.000562059286, -0.00590541027, -0.0044086054, 0.00530547649, 0.0239125174, 0.0102231167, 0.0154649634, 0.00446920469, 0.00467827264, -0.00932018552, -0.0129561489, -0.0082778763, 0.00476311194, 0.0165072735, -0.00451768422, 0.00971408188, -0.0226762909, 0.00950198341, 0.0122713754, -0.000772642205, 0.00885357056, 0.00876267161, 0.0131864268, 0.00855057314, -0.00328751677, 0.015258926, -6.91211744e-06, 0.0116775017, -0.0028239314, 0.0292816237, -0.0228944477, -0.0186161324, -0.0122228963, -0.01089577, 0.0116229625, -0.0123743946, -0.00135363883, 0.0183131341, -0.0149559285, -0.00315116812, 0.00372383231, -0.00904748868, -0.00319055771, -0.00630839635, 0.00919898693, -0.0184585731, 0.00534486584, -0.019573601, 0.0305905696, -0.0226520505, 0.00523578702, 0.0111381672, -0.00156346417, -0.00772642158, 0.00597206969, 0.0107927509, 0.00735070556, -0.00415105792, 0.00577815156, 0.0102776559, 0.00113699597, -0.004860071, -0.00219975784, 0.00999889895, -0.0333054215, -0.00379958143, -0.00961712282, 0.00479644164, 0.0393896028, -0.0241549164, 0.0015058947, 0.00169981283, 0.000400713441, 0.00958076306, -0.00352991419, 0.0146650514, -0.0238640383, -0.019113047, -0.00263607339, 0.00435709581, 0.0143014556, -0.00212552352, 0.0134894233, 0.0267606899, 0.00617810758, -0.00498732971, -0.00466009276, 0.00323600718, 0.00925958622, 0.00431164633, 0.0133561045, 0.026809169, 0.000716966519, 0.00197099498, 0.0224460121, 0.00610538805, -0.00790216, 0.0199371986, -0.015258926, 0.019816, -0.0264455732, 0.010659432, 0.0143984146, -0.0107624512, 0.0122410757, 0.00678107142, -0.0119138397, -0.00546000479, 0.00125440734, 0.0119562587, 0.0175738223, 0.00622961717, -0.0140711777, 0.0171132665, -0.0207249895, 0.0330630243, -0.00575694162, -0.0160830766, -0.0070416485, -0.00436315592, 0.0172344651, -0.0288210679, -0.0152952848, -0.00368444272, -0.0115017639, 0.035487, 0.0105261132, 0.0052539669, 0.00751432404, -0.00919898693, 0.00682349084, -0.00180131674, 0.0102291768, -0.00134076143, 0.000253949314, -0.00100670732, -0.00387230073, 0.00742342509, 0.01380454, 0.0065871533, -0.00189373083, -0.0132227866, 0.0223975331, -0.0227126498, 0.00533274608, -0.0196584407, 0.00559938326, -0.0207371097, 0.0109321298, 0.0300572962, -0.0108836498, 0.0233792439, -0.00246336497, -0.0146892909, -0.0122047169, -0.014931689, -0.00221187761, -0.0146408118, 0.00116199325, -0.00665381271, -0.00908384845, -0.0269061271, -0.0193554442, -0.0223369338, -0.00346022495, -0.00601751916, 0.000320040504, 0.00445405487, 0.0105261132, 0.0148226097, 0.00813243724, 0.0154892029, -0.00684167072, 0.00754462369, 0.0268818885, -0.00156043423, -0.015961878, 0.00576300174, -0.00569331227, 0.00433891593, -0.00289059081, 0.00471160235, 0.0234156027, 0.0241427962, -0.0164224338, -0.00624173693, -0.0158164408, -0.0163981933, -0.00950804353, -0.0086475322, 0.0129440287, 0.00285423105, 0.000617356272, -0.025403263, 0.00729616638, -0.0142893353, -0.0104897534, 0.0189918485, 0.00577815156, 0.000939290505, -0.00130288687, 0.00829605572, -0.00417226786, 0.0178768188, 0.0009908, 0.00623567682, -0.00429346645, 0.00164224335, 0.0130409878, 0.0203613937, -0.00977468118, -0.0111866472, 0.00672047213, -0.00294664525, -0.00278454181, -0.0291361846, -0.0157679599, 0.0127743511, 0.0163618345, -0.029766418, 0.00519033754, 0.00053138088, 0.00638111541, -0.0086960122, 0.0166527107, 0.01483473, -0.00849603396, 0.00190433569, 0.0190766864, -0.00682955096, 0.0121380575, -0.0218157787, -0.000417378265, 0.0287968293, 0.00723556662, 0.00281181163, 0.0174526237, -0.00888387, 0.00363293313, 0.0159497578, -0.0159012787, -0.0129561489, 0.0178404599, 0.0198887195, -0.00119002047, 0.0250396673, -0.0216824599, -0.00782338064, 0.0139984582, -0.00848997384, -0.0136469817, 0.00360869337, -0.00337235583, -0.0103927944, 0.000574936683, 0.00163012347, -0.00830817595, 0.000635157339, -0.0117199216, -0.0226156916, -0.00778702134, 0.000624931185, 0.0202401951, -1.88544582e-05, -0.0398501568, 0.0235246811, 0.00374807208, -0.0176586621, -0.00562059321, -0.0167254303, 0.00184828124, -0.0164224338, 0.0224217735, -0.00322388741, -0.0135257831, 0.0130288685, -0.0120471576, -0.0126895113, 0.0109018292, -0.0114108641, -0.0149801681, 0.0187494494, 0.000278567808, 0.00673865201, 0.0061356877, 0.000738555042, 0.0133924643, 0.00360869337, 0.00521457708, 0.00134682131, -0.0019119106, -0.0280696359, -0.00739312498, -0.0144590139, -0.0110775679, -0.0139742186, 0.0099685993, -0.0198644791, 0.001332429, 0.0309056863, 0.000420408236, 0.0155740427, 0.0097807413, -0.010798811, -0.00615386758, 0.0194039233, -0.000155380621, 0.00976256095, 0.00251941942, 0.00732040592, -0.0224944931, -0.0265910104, 0.00736888545, 0.0266152509, -0.0144468937, -0.00941714458, 0.00709012803, -0.0240943152, 0.00251941942, 0.0242639948, -0.00176041212, -0.00531153614, -0.0087566115, -0.00799911935, -0.0112533057, 0.0136833414, 0.00193615037, 0.00454798387, 0.00360263349, -0.0219612177, 0.00602357881, 0.0151619669, -0.026954608, 0.0145802125, 0.00985952, -0.00206492399, 0.0175495818, 0.00735676568, 0.000441618031, 0.0159376394, -0.0213673431, -0.00345719489, 0.0264455732, 0.00896264892, -0.0144953737, -0.00230277679, 0.00902324822, 0.00665987236, -0.00236186106, 0.00527820643, -0.0047752317, -0.00627809623, 0.0175980628, 0.010798811, -0.0221066568, -0.0056478628, 0.0045631337, 0.0145802125, -0.00275727198, 0.00560241332, 0.0236701202, 0.000952925358, 0.0093141254, -0.00799911935, -0.0276090801, -0.00547818467, -0.0167496707, 0.00782944076, -0.00918686669, 0.027560601, -0.0142529756, -6.31559233e-05, 0.00571452221, -0.00342689524, -0.00470251217, 0.0108291106, 0.00523275696, -0.0140226977, -0.00393896, -0.0102715958, -0.00655685365, -0.000780974573, -0.0128591899, -0.0234883223, -0.00110821123, 0.00898688938, 0.0109927291, -0.00441163545, 0.00522669731, 0.00245579, 0.00745372474, -0.00666593248, -0.00214976328, 0.00747190416, 0.0210401062, -0.0153437648, -0.0311480854, -0.0250396673, 0.000769612205, -0.00068553054, -0.0120289782, 0.0105503537, -0.00364505313, 0.0106533719, 0.0123743946, 0.0174041446, 0.0165436324, 0.00222096755, 0.00901112892, -0.0114351045, 0.00813849736, -0.0226035714, 0.0110230288, -0.00715072779, 0.00230732164, 0.000274969731, -0.0140711777, 0.0126531515, -0.00398441, 0.00612962805, -0.0112836054, 0.00113396603, -0.0181434564, 0.00625991682, -0.00767794251, 0.00636293553, -0.00615386758, 0.0056478628, 0.0118714198, -0.0108715296, -0.021876378, 0.0144832535, -0.00904748868, -0.0159861185, 0.00486310059, -0.00813243724, 0.00984740071, -0.00353294425, -0.00460555358, -0.00744766463, -0.00941714458, 0.00566604268, 0.0091262674, -0.025354784, 0.0078961, -0.0257911, 0.0175980628, -0.0140711777, -0.00364202308, -0.00143696298, 0.0228823293, 0.00748402439, 0.00255880901, -0.00636899564, -0.0055266642, 0.0151256071, -0.0100837378, 0.000406394625, -0.00169375283, -0.00307541876, 0.0187736899, -0.00387533079, 0.0147741307, -0.00723556662, -0.00594177, -0.00348143466, -0.0113320854, -0.0197069198, 0.00765976263, -0.0110412082, 0.00115214579, 0.00881115068, 0.00959894247, -0.00294967508, -0.0051691276, -0.00452071428, -0.0119077796, 0.00235125609, -0.00915050693, 0.0285301916, 0.0177435, 0.0219854582, -0.00450859452, -0.00686591072, 0.013380345, -0.00367232272, 0.00629627611, 0.0191857666, 0.00115214579, -0.0381776132, 0.00342689524, 0.00273000239, -0.0162285157, 0.0286998693, 0.00667805225, 0.0209067892, 0.0115805427, 0.0245185122, 0.00115214579, -0.0042298371, -0.00801123865, 0.00355718401, 0.00291028549, 0.0112472465, -0.0157194808, 0.00762946298, -0.023900399, 0.0134894233, -0.0140226977, -0.010986669, -0.011362385, 0.0144226542, -0.00592056, 0.0136591019, 0.0257911, -0.0265910104, -0.0140105784, 0.0121319974, -0.00717496732, 0.0114896437, -0.00933836587, -0.00855057314, -0.0180464964, -0.0177798606, -0.00455101393, -0.0187979303, -0.00945956446, -0.0136833414, -0.00570846209, 0.00355718401, 0.0151256071, 0.0231732056, 0.0110351481, 0.0170890279, 0.000769612205, 0.00224672235, -0.0155982822, 0.0110593885, -0.0205916725, -0.00563877309, 0.0104412744, 0.00578421168, -0.00872025173, 0.00941714458, 0.0068598506, -0.0339598954, -0.0186767317, -0.00619022734, 0.00604175869, 0.00477826176, 0.023573162, -0.00959288329, 0.0286271498, -0.000953682873, 0.0107382117, -0.00640535494, -0.00673259189, 0.000184922814, -0.0114775235, 0.0147135314, 0.0235368013, 0.00496612, -0.021876378, 0.00322691724, 0.0137318214, 0.0119865583, 0.00052342721, 0.0176344216, -0.00124683243, -0.0101503972, 0.0116835618, 0.00544182491, -0.00626597647, -0.0137318214, -0.0247487891, -0.00842331443, 0.0200220365, 0.0203977544, 1.07646765e-05, -0.0117199216, -0.0139136193, -0.00154225435, -0.0177556202, -0.00339356554, -0.020421993, 0.00100216235, -0.00272697234, -0.0087081315, 0.000204901677, 0.0159861185, -0.0263001341, 0.0109200096, 0.000502974901, 0.0109745488, -0.00593268, 0.0248942282, 0.00827181619, 0.00449344469, -0.0136591019, -0.0103200758, 0.0145196132, 0.000679849356, 0.00811425783, -0.0151619669, -0.00206037913, 0.0333539024, -0.0133076254, -0.013380345, -0.00186040113, -0.00693863, -0.0238519181, 9.40237369e-05, 0.00755674345, -0.00241185562, -0.00709618814, -0.0206037909, 0.00575088197, 0.00506913848, -0.00123244, -0.0197675191, -0.00610235846, -0.00653261365, 0.0216339808, -0.00121577515, 0.00985952, -0.0093141254, 0.00176950207, 0.0293543432, -0.00361172343, -0.0259122979, -0.0276818, -0.020518953, 0.0104958136, 0.00987164, 0.00236792094, -0.00928382576, -9.45445136e-05, 0.0162285157, 0.0123319756, 0.00759310322, 0.00539334537, -0.0217673, -0.000676819414, -0.00736282533, -0.0115138832, 0.000400713441, 0.01681027, 0.0028239314, -0.018264655, 0.0235610418, 0.0139257386, -0.0102897761, -0.000515094784, 0.0144832535, 0.00920504704, 0.00271939742, 0.0159376394, 0.0043237661, 0.00948380399, -0.01084729, -0.0144711332, 0.00434194598, -0.014555973, 0.0294270627, -0.00311480858, -0.0112108868, -0.00205128919, -0.0137681803, -0.0128955496, -0.0143378153, -0.00825969595, -0.0186040122, 0.00964742247, 0.0205068327, 0.013331865, -0.0178283397, 0.00221036258, -0.0121077579, -0.015258926, -0.000279325293, 0.0153680043, 0.000587814, 0.00981104095, 0.00396926, -0.0115684234, 0.00908384845, 0.00536910584, -0.0209310278, 0.0110957474, 0.0146165723, -0.0143984146, 0.00414499827, 0.0103261359, -0.0148953293, 0.00331781642, -0.0174889825, 0.018361615, -0.00529335625, 0.00547818467, -0.00608114852, -0.000235580112, 0.000952925358, 0.0362384319, 0.00749008404, -0.0136348624, 0.00238307077, 0.00638111541, 0.00556605356, -0.0134167038, -0.0167981498, 0.0144832535, -0.016761791, 0.00125895231, -0.0218884982, 0.00217248802, 0.0155498022, -0.0140105784, -0.0183010139, -0.00619628746, -0.0107382117, -0.000669244502, 0.00681137107, -0.0032299473, 0.00676895166, 0.0101322178, 0.0165678728, 0.0176950209, 0.0130167482, -0.0283847526, -0.0235489216, -0.00309965853, 0.0172223449, 0.0116290227, -0.0214885417, 0.00831423607, 0.0165193919, 0.00234822626, -0.0190888066, -0.006526554, 0.00951410364, -0.00243609538, -0.00486613065, 0.00213612849, -0.0237791985, 0.0130894678, 0.00854451396, 0.00569634233, 0.012628912, 0.00955046341, -0.0109745488, -0.00724768685, 0.0229065679, -0.0181434564, 0.0102776559, -0.00902324822, 0.00743554486, 0.0110230288, -0.0142772151, 0.000790064514, -0.0197554, 0.00174829236, 0.00268455292, -0.0190403275, 0.014555973, 0.00554181403, 0.00307238894, -0.0271242857, 0.0204825923, -0.000920353166, -0.0175980628, -0.0175495818, -0.00582360104, 0.0167981498, -0.00449647428, 0.000353180803, 0.00699316943, 0.00707194861, -0.0024179155, 0.00809001829, -0.0361899547, -0.00566907274, 0.00493279, -0.0033359963, 1.06167281e-05, 0.021646101, 0.029863378, -0.0187736899, -0.00193312042, 0.00565998256, 0.00409348868, 0.00433891593, -0.0123380348, -0.00221642246, -0.00376928179, -0.0373049825, -0.0286756307, 0.0125440732, -0.0210401062, 0.0361657143, 0.00392078049, 0.00981104095, 0.000240314446, 0.0013521238, -0.0191736463, -0.0309541672, -0.00417226786, -0.0166163519, 0.0139499791, -0.0009908, 0.000992315, 0.0128713101, 0.0333296619, -0.00140817824, -0.0195978414, 0.0183131341, -0.00605387893, 0.000933230564, 0.00231489656, -0.00689621037, 0.00369959255, 0.0260577369, 0.000762794807, -0.0258638188, -0.0240700766, -0.0135742621, -0.00738706533, 0.00542364502, 0.00976256095, 0.00372080225, 0.0119623188, -0.0237670802, 0.0157437213, -0.0104473345, -0.0147135314, -0.0119562587, -0.00814455748, -0.0229671672, 0.00992011931, 0.0273666829, -0.00523578702, -0.0165799931, 0.00343598519, -0.0111563466, 0.00518730748, -0.0106473118, -0.00243458035, 0.00773854181, -0.0054084952, 0.0142408563, -0.0105261132, 0.00411772821, 0.0198038798, 0.0250396673, -0.0105685331, 0.00654473389, 0.0021785479, -0.0014778676, -0.0259122979, 0.00672047213, 0.0145923328, 0.000531759637, -0.0296452194, -0.0279241968, -0.00599327916, 0.00537819555, 0.0283847526, 0.0203129146, -0.0248457491, 0.00169981283, -0.00989588, -0.0198644791, 0.0135863824, -0.0229429286, -0.00173920242, -0.0181434564, -0.00792034, 0.0159255192, 0.028263554, -0.0105321733, -0.0187009703, -0.00114684342, 0.0151983257, 0.0178646985, -0.0108048711, 0.0259122979, -0.00699316943, 0.000610538817, 0.00278757187, -0.00757492334, 0.0173435453, 0.0242033955, -0.0181919355, -0.0318025574, -0.00171041768, -0.0416923799, 0.00211340352, 0.0175253432, 0.0368929058, 0.0355112404, 0.00544788502, -0.0280938763, 0.0168587491, 0.00312086847, 0.0333539024, 0.00529335625, -0.0130894678, -0.0124834739, -0.000347878347, -0.0151256071, -0.0187736899, -0.00837483536, 0.0123804547, 0.0274394024, -0.0104594538, 0.0153801246, 0.0027769669, 0.0134651838, 0.0306875296, -0.000789307, 0.0200583972, 0.0111139277, -0.00123319752, -0.0152952848, 0.00944138411, 0.0191978849, 0.0210764669, 0.00251941942, 0.01478625, -0.0178041, -0.0125561925, -0.0182525348, 0.00899900869, 0.00983528048, 0.0115805427, -0.0172223449, -0.00732040592, -0.00161497365, -0.0104594538, -0.00446314504, 0.0125319529, -0.00563877309, -0.00606902875, 0.00197099498, -0.00896870904, -0.0113199651, -0.00890811, -0.0212825052, -0.0184706934, -0.00579330139, -0.0176344216, -0.00828999653, 0.0176101811, -0.0174768623, 0.0149195688, -0.00215582317, -0.0175011028, 0.0326024704, 0.0155498022, 0.0336932577, 0.00908384845, -0.00184979627, -0.0244821515, 0.00161800359, 0.0058023911, 0.0102109965, 0.00576906139, 0.034081094, -0.00138469599, 0.0262274146, 0.00775672169, 0.0125077134, -1.57889808e-05, 0.00792034, -0.0139014991, -0.0162769947, 0.00942926481, -0.0156588815, -0.00707800826, 0.00498429965, 0.000980195124, 0.000368709385, 0.00334205618, 0.0102170566, -0.00489037065, 0.0133924643, -0.00140287576, -0.00125743728, 0.015355885, 0.00184979627, -0.00518427743, 0.024506392, 0.00813243724, 0.00540546514, 0.0327721499, 0.011974439, 0.00976256095, -0.00286938087, 0.0241549164, 0.0121380575, 0.0217067, 0.00949592423, -0.00098171, -0.000213044725, -0.0200583972, -0.0125319529, 0.000812789251, 0.0678713098, 0.00925958622, 0.00522063719, -0.00752038369, 0.0388563275, -0.00575391157, -0.0137318214, 0.0107745705, -0.0049570296, -0.00429043639, -0.0161315575, 0.000136632676, 0.00454192422, 0.00293149543, -0.00154452689, -0.00114457088, -0.00105064188, -0.0107260915, 0.0287725888, -0.0318510383, -0.0105806533, 0.0260334965, 0.0165921114, 0.0116108423, 0.00730222603, -0.00455404399, -0.0234398432, -0.0156346411, -0.0185676515, -0.00972620118, 0.00480856141, -0.0278514773, -0.0134651838, 0.0155619225, 0.00239822082, 0.014883209, -0.00124228746, -0.0110109085, 0.00901112892, -0.0176465418, 0.0117199216, 0.00756886322, 0.0273424424, -0.00079385197, -0.0102231167, 0.0018710061, 0.00284211128, -0.0276090801, 0.0227732491, 0.0105442936, -0.0107139712, -0.00725980662, 0.0129561489, 0.0243488327, 0.0167011917, 0.0164830331, 0.0202159546, 0.000840059, 0.0249184687, 0.0248942282, 0.0158285592, -0.00426619686, 0.030469371]
01 Nov, 2024
PostgreSQL – DROP TABLE 01 Nov, 2024 In PostgreSQL, the DROP TABLE statement is a powerful and permanent command used to delete one or more tables from a database. Since this operation cannot be undone, it is essential to understand how to use it safely and to be aware of its options to prevent accidental data loss. In this article, we will explain the DROP TABLE statement in detail, its syntax, options, and examples for a better understanding. What is the DROP TABLE Statement in PostgreSQL? The DROP TABLE command is used to permanently delete tables from a PostgreSQL database. Once a table is removed using this command, all of its data, structure, and relationships are lost. Use this command with caution, especially in production environments, as the action cannot be reversed. Syntax DROP TABLE [IF EXISTS] table_name [CASCADE | RESTRICT]; Key Terms 'DROP TABLE': This keyword initiates the command to remove the table(s). 'IF EXISTS': This optional clause prevents an error from occurring if the specified table does not exist. Instead of raising an error, PostgreSQL will issue a notice. 'table_name': Replace this with the name of the table you wish to remove. Multiple tables can be specified, separated by commas. 'CASCADE': Use this keyword to automatically remove any dependent objects (such as views or foreign key constraints) along with the table. This is useful when a table is referenced by other database objects. 'RESTRICT': This is the default behavior. It prevents the table from being dropped if any dependent objects exist. PostgreSQL will not remove the table unless we explicitly resolve these dependencies. PostgreSQL DROP TABLE Examples Let us take a look at some of the examples of DROP TABLE in PostgreSQL to better understand the concept. Each example demonstrates the command’s syntax and its implications, helping us grasp how to effectively manage our database tables. Example 1: Basic Table Removal We will remove the ‘author' table from our database using the below statement: DROP TABLE author; PostgreSQL issues an error because the ‘author' table does not exist. To avoid this error, we can use the IF EXISTS parameter as follows: DROP TABLE IF EXISTS author; Output Explanation: PostgreSQL issues a notice instead of an error if the table does not exist, making the command safer for cases where we are unsure if the table is present. Example 2: Removing Multiple Tables Here we will remove a table that already exists in our database. To check for all available tables in the database use the below command. It will list all existing table as below: Query: \dt Output Explanation: This command deletes both categories and products tables if they exist. It will issue notices for any specified table that doesn’t exist, ensuring no interruptions due to errors. Example 3: Dropping a Table with Dependencies Suppose we have a table orders that references data from the customers table through a foreign key. To drop customers and remove dependent objects automatically. Here we will remove the categories table using the below statement: Query: DROP TABLE categories; Now check the list of tables again to verify the removal using the below command: \dt Output Explanation: Using the CASCADE option will ensure that any objects (like foreign keys) dependent on the customers table are also removed. This option is especially useful when we are re-structuring a database with multiple dependent relationships. Important Points About PostgreSQL DROP TABLE Statement The DROP TABLE command permanently removes a table and its data from the database. This action cannot be undone, so use it with caution. You can drop multiple tables in a single command by specifying their names separated by commas. Example: ‘DROP TABLE table1, table2;’ Only the owner of the table or a superuser can drop a table. Ensure you have the necessary permissions before attempting to drop a table. The CASCADE option automatically drops any dependent objects (such as views, foreign key constraints) along with the table. Conclusion The DROP TABLE statement in PostgreSQL is a vital command for database management, enabling us to remove unwanted tables and free up storage. However, it should be used carefully, given the irreversible nature of the operation. Use IF EXISTS to handle non-existing tables gracefully, and employ CASCADE when we need to remove dependent objects alongside the table. Understanding the syntax, options, and usage scenarios for DROP TABLE ensures that we can manage your PostgreSQL database safely and effectively. FAQs How do I Drop a table in PostgreSQL? To drop a table in PostgreSQL, use the command DROP TABLE table_name;. You can add the IF EXISTS clause to prevent errors if the table does not exist, like this: DROP TABLE IF EXISTS table_name;. How to DROP TABLE column in PostgreSQL? In PostgreSQL, you cannot drop a column using the DROP TABLE command. Instead, use the ALTER TABLE statement with the DROP COLUMN syntax: ALTER TABLE table_name DROP COLUMN column_name;. How do I Drop all table data in Postgres? To remove all data from a table without deleting the table itself, use the TRUNCATE TABLE table_name; command. This command quickly removes all rows from the table while preserving its structure. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE
https://www.geeksforgeeks.org/postgresql-drop-table/
Languages
PostgreSQL – DROP TABLE
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0359602049, -0.0344629586, -0.0181114413, 0.0540059768, 0.0100538852, 0.0038613223, 0.00546363974, 0.00755847292, -0.0276334099, 0.0398477949, 0.0544262566, -0.0459943898, 0.006402703, -0.08337304, -0.00587735279, -0.0124376612, -0.0263069011, 0.0194116812, -0.00721699558, -0.0163909197, 0.0297873449, 0.000316030841, 0.00618599588, -0.0260179583, -0.000327317655, 0.0272131283, 0.00159492972, 0.0157999, 0.00566721288, 0.00311434036, 0.0235225447, 0.0212766752, 0.000454756082, -0.0232861377, -0.0462307967, 0.00644538784, -0.0297873449, 0.00429145247, -0.0360127427, 0.0279486198, -0.000553259219, 0.0292882621, 0.00371685112, -0.0026595844, -0.029629739, 0.0216444191, 0.00997508317, -0.0414501131, -0.0306279045, 0.0456791818, -0.00824799482, -0.0239690933, 0.0273444671, 0.0112030888, 0.0308905784, -0.0150250094, 0.0070331227, -0.0154321557, 0.00474456698, 0.00428160233, -0.00179111515, 0.0034114914, 0.0293145292, -0.0157210976, -0.00989628, 0.00706595741, -0.0164828561, 0.0154584236, -0.0336224, -0.0389284343, -0.013350456, 0.00259227375, 0.0116824703, -0.0171789452, -0.0152745508, -0.0272656642, -0.00643882062, 0.0123260235, 0.00470844936, 0.0420542657, 0.0121749863, -0.000856156286, -0.0226031821, 0.0029665858, 0.0307329744, 0.00552274147, -0.015918104, -0.035382323, 0.0521147177, 0.0172446128, 0.0366694294, -0.0163515192, 0.0287891794, -0.00291569252, -0.00166716531, 0.0122078201, -0.0368007645, 0.00408131257, -0.00697402097, 0.0250723287, -0.0176254921, 0.0486474074, 0.0224455781, -0.00212602573, -0.000934958807, -0.0316523351, 0.0208038595, 0.0140399784, 0.00190275197, 0.0093512293, 0.033359725, 0.0402418077, -0.0333859921, 0.0594696179, -0.037221048, -0.0306279045, 0.0465985425, -0.0352509841, 0.00715132663, -0.0248096529, -0.0313633941, -0.00344760926, 0.00416011503, 0.031284593, -0.0327030383, 0.00796561874, 0.00643553725, -0.00996194873, 0.0151169458, 0.00778831355, 0.000346607849, -0.0398740619, -0.0222879723, 0.029629739, 0.00893751625, 0.0111899544, -0.00196021213, 0.00958763715, -0.045232635, -0.0286315735, -0.0390597731, 0.0190702043, 0.0278698169, -0.0343578905, -0.0517732427, 0.00489232177, -0.0101261213, 0.0121355848, -0.00120584236, 0.00996851549, -0.00346402638, -0.0129761444, 0.049435433, 0.0121487183, -0.0014340413, -0.00567706348, -0.0105726682, 0.0203967132, 0.00240675965, -0.00221303687, -0.00143568299, -0.0180195048, -0.00702655595, -0.0143814562, -0.00649792282, 0.0470450893, 0.0697664768, -0.000521656126, -0.0183478482, 0.02752834, -0.0303126946, -0.00271376106, -0.022655718, -0.00674418034, 0.0109601142, -0.0241923667, -0.0035296951, 0.000131747933, 0.010290293, -0.0268979184, -0.0115839671, -0.0265564416, 0.00630748319, -0.0327293053, 0.00651105633, 0.0274758041, 0.00371028436, -0.00037595359, -0.00424876809, -0.0121224513, -0.0488575473, 0.0343841575, 0.0497506447, 0.0464409404, -0.00548005709, 0.0238508899, -0.031547267, 0.000316030841, 0.00310777361, -0.0142895197, -0.0564225875, -0.0825324804, -0.00908855442, 0.0536645, 0.0324666277, 0.0242580362, 0.0418703929, -0.0335435979, 0.0376413278, 0.00870110933, -0.0105201332, 0.0367219634, 0.0154846907, -0.0136459656, -0.0190176703, 0.000639859878, -0.0281062238, -0.0159706399, -0.0193591472, -0.0051123118, -0.00729579804, -0.000276629609, -0.0284477025, -0.0356449969, -0.0280011538, -0.0150906779, -0.0131994188, -0.0050729108, -0.0183347147, 0.0363804847, 0.0585239865, 0.00159082538, -0.0259785559, -0.0220121648, 0.00915422384, 0.0165747926, -0.019674357, 0.0107302731, -0.00550632458, -0.0244550426, 0.055371888, 0.0273181982, -0.00975180883, -0.00806412194, -0.0159706399, 0.0443658046, 0.000889811548, 0.00929869432, 0.0279486198, 0.0574207529, 0.0170476064, -0.0291569233, 0.00367416651, 0.0282638296, 0.00359864742, -5.60236513e-05, -0.011715305, -0.000151345943, 0.00514843, 0.00774234533, 0.0136590991, 0.0108484775, -0.0370109081, 0.00245765294, 0.031547267, 0.0134358257, -0.00356581295, -0.0312057883, 0.0193328802, 0.0224193111, 0.0120436484, 0.00743370224, -0.010756541, -0.0120699154, -0.0541635826, 0.0177830961, -0.0539534427, 0.0067835818, -0.00585765252, 0.0131271826, -0.0108156428, -0.0313371271, -0.0115314322, 0.0302076247, -0.00167373219, -0.0450224951, 0.00786711555, -0.0103296945, -0.0194379501, -0.00918705761, -0.0186499245, -0.0230759978, 0.0348832384, 0.0279486198, 0.0234831441, 0.0286315735, -0.0151694808, 0.0031274741, -0.0293933321, 0.00783428177, -0.0331233181, -0.0252824686, 0.0307592414, 0.0264382381, -0.0399528667, -0.0213292092, 0.0145259267, 0.00761757465, 0.000421921693, -0.0305491015, 0.0126478011, -0.0252168, -0.0288154464, -0.0309431143, -0.0364330225, 0.0369058363, 0.000839739107, -0.0121421516, -0.0242186338, -0.0230497308, 0.0288942493, -0.002346016, -0.0822172761, 0.0181771088, 0.0244681761, -0.024678316, -0.0285527725, -0.00146112964, 0.0149724744, 0.00763070863, -0.0153796207, -0.0415026471, 0.0183215812, 0.0751775801, 0.0131534506, -0.0234174747, 0.00273181987, -0.0509589501, 0.0105661014, 0.0226688515, -0.0164040532, 0.0216706861, 0.0107631078, -0.024599513, 0.0113606937, 0.0319150127, 0.00955480244, 0.0178224985, -0.00653404044, 0.011715305, 0.00118121656, 0.045521576, -0.00278435485, 0.0501183867, 0.0350671113, -0.00956793688, 0.0147886025, -0.00816919189, -0.009824045, 0.0136459656, 0.0330445133, -0.00137493946, -0.0159312375, 0.00413384754, -0.0211584698, 0.00368401688, -0.000580758, -0.0293145292, 0.00568363024, -0.00197334588, 0.00806412194, -0.0128185395, 0.0398215279, 0.00710535841, -0.0150381429, -0.0305228345, 0.0151957478, 0.0029665858, 0.0111965211, 0.00288121635, 0.0116693368, 0.0110783176, -0.00533558568, 0.0281324908, 0.0239822268, -0.0219333619, 0.000418022624, 0.0179144349, 0.00413713092, -0.0230103284, 0.000971897447, 0.0523248576, -0.017730562, -0.0278698169, -0.00687551778, -0.00272853649, 0.0169294029, 0.00902945269, 0.00293046795, -0.018636791, 0.0504598655, -0.021618152, 0.0116168018, -0.0163515192, -0.0309956484, -0.00175007212, 0.0232992712, 0.00462636352, 0.00795905199, 0.0331758521, -0.00321120187, 0.0270555243, -0.0271868613, 0.0286841094, 0.0241661, 0.0472289622, -0.00368730025, 0.0231679343, -0.0243762396, 0.0142107168, 0.00499410834, 0.01975316, -0.0376150571, 0.0143026533, 0.0290781222, 0.0018009654, 0.0105267, 0.0084121665, -0.0126412343, 0.00960077066, 0.0392173752, -0.00517469738, -0.0191227403, 0.00467233127, -0.0208563935, -0.0472289622, 0.0309693813, 0.0219990313, 0.00707252417, 0.0178881679, 0.00863544, 0.00180753227, 0.0347519033, -0.00970584061, -0.0293145292, -0.00902288593, -0.0488050133, 0.0250723287, -0.0247965194, -0.02353568, -0.039585121, 0.0276071411, -0.0101523884, 0.00592003763, 0.0100079169, 0.00182066602, -0.0231022649, 0.00112457736, 0.0255057421, 0.00198812131, 0.00711192563, -0.0021605019, 0.00632718392, -0.00535200303, 0.0423694775, 0.0371159762, -0.00732863229, -0.00674418034, -0.0106055029, 0.00839246623, 0.01376417, -0.0348044373, 0.00845813472, 0.0109995157, 0.000292020704, 0.0600475036, 0.0220646989, 0.00960733742, -0.0198582299, -0.00321612693, 0.0464146696, 0.00313075748, 0.0201997068, -0.0311007183, -0.0135934306, 0.0181639753, 0.00549975783, -0.027817281, -0.0273970012, -0.0459155887, -0.00221139519, 0.000671873393, -0.0495667718, -0.0217626225, 0.0259260219, 0.00486933766, -0.0644079074, -0.00802472141, -0.0291569233, -0.00476755109, 0.0143420547, -0.0261624288, -0.0558447, 0.0298136119, -0.0125230299, -0.0104938662, -0.0179538354, -0.000562699104, -0.00634360127, 0.00936436374, -0.00828082953, 0.00768981036, -0.00110077241, 0.0286578424, -3.08078779e-05, -0.00661612628, -0.0258997548, 0.0374311879, 0.0188863315, 0.00782114826, 0.0026546591, 0.00993568171, -0.0361178108, -0.000252414262, 0.00932496227, 0.00210468331, 0.0269241873, 0.00749280397, -0.00274495361, -0.0191884078, 0.0384293497, 0.014749201, -0.0124048265, 0.00111636869, -0.0195430201, -0.0076110079, 0.00939063076, 0.00868797582, 0.0169819389, 0.0287103765, -0.0147229331, 0.0178487655, 0.00233616563, -0.00599884, 0.0205280501, -0.0100735864, -0.0146703981, 0.00355267921, 0.00767667685, 0.0163515192, 0.0356187299, 0.0472289622, -0.0120961834, -0.0011483822, 0.0147229331, -0.017756829, -0.0419229269, -0.00118696259, 0.0137773035, 0.0134752272, -0.0207513236, -0.055424422, 0.0088521475, 0.0208301265, 0.00303389621, -0.0139480419, 0.0215656161, 0.0103493948, -0.0196218211, 0.0199895669, 0.0122275213, -0.0025561559, -0.0115445657, -0.029656006, -0.0105529679, 0.019805694, -0.0169688053, 0.00344432588, -0.0310219172, 0.0326767676, 0.0128448075, 0.0146441311, 0.0025561559, 0.00420936663, -0.0149199395, -0.00607764255, -0.0110257827, 0.00726296334, 0.00375296897, -0.0109798145, -0.0135540292, 0.0432363041, 0.00392370764, 0.0016474647, -0.0193460137, 0.005210815, -0.0122406548, -0.0307855085, 0.00210796692, 0.027554607, 0.00716446061, 0.0086223064, 0.0231153984, 0.016824333, 0.0405832864, -0.0147360675, -0.020711923, -0.0604152493, -0.00351327797, 0.0208038595, -0.0168112, 0.0120961834, 0.0344104245, -0.00444249064, 0.00860260613, -0.0214342792, 0.0156685635, 0.0292094592, -0.0112556238, -0.0151563473, 0.0120633487, 0.00158507936, 0.0261755623, -0.00741400151, -0.00950883515, 0.00209154957, 0.00287136598, 0.0253350027, -0.0147886025, -0.0319675468, -0.0084318677, 0.0116956038, 0.00314389123, -0.0279486198, -0.00228034728, 0.0101589551, 0.0152614173, -0.0100604519, 0.00638956903, -0.0166010596, 0.0426584184, 0.0317574069, 0.0407934263, 0.106593512, -0.0261098947, -0.00499082496, 0.00681641605, 0.0193460137, 0.0153139522, 0.0110520506, -0.021618152, 0.0189125985, 0.037509989, 0.00316687534, -0.0276071411, -0.0505386703, -0.00275316229, 0.00466576451, 0.0178881679, 0.026674645, 0.013219119, -0.047649242, 0.0223930422, 0.00178290647, 0.00240347628, -0.0273707341, -0.0191884078, -0.0167849325, 0.00321284356, 0.0179013014, -0.023667017, -0.0465197414, -0.00849753618, 0.0219202284, -0.00196677889, -0.0298924148, -0.000427257299, -0.00721699558, 0.0170476064, -0.016666729, -0.0189388674, 0.0199501663, 0.0212635398, 0.0144733917, -0.0435777828, -0.00115412823, -0.013711635, -0.0230234638, -0.00723669585, -0.0321251526, 0.00869454257, 0.00464606378, 0.0153533537, -0.00107450492, 0.0188863315, -0.0185317211, 0.0214211456, -0.0259916913, 0.0176386256, -0.0368007645, 0.0067113461, 0.0177962314, -0.00935779698, -0.00277942978, 0.010237758, 0.0218939614, -0.0117021706, 0.00773577858, -0.00172544632, 0.00177141442, 0.0311532542, 0.0129433107, 0.0106580378, 0.0083136633, -0.00293539301, 0.031521, -0.00292882626, 0.00245272764, -0.0225769151, -0.0179801024, -0.0331495851, -0.014696666, 0.00591018749, 0.00760444114, -0.0164565891, 0.00820859335, -0.0110914512, 0.0136459656, -0.00739430124, 0.00259884074, 0.00256764796, 0.00140531117, 0.0402418077, -0.0161676463, -0.015786767, 0.0159706399, 0.00986344554, -0.0258209519, -0.0288417134, -0.0087339431, 0.011354127, 0.00934466254, -0.00858290493, 0.00445234124, 0.0157999, 0.0355661921, 0.0519308448, -0.0211716052, -0.0239822268, 0.0200552363, 0.0112950243, -0.00484635355, 0.0717102736, -0.00151038123, -0.0432363041, 0.0248884559, -0.0472552292, 0.00691491924, 0.0287891794, 0.00264809234, 0.0145259267, 0.0442607366, -0.0185579881, -0.0199238975, 0.00599227333, -0.00750593795, -0.0172052123, 0.0182427783, 0.0169688053, 0.00594958849, 0.0356187299, 0.0310219172, 0.07927531, 0.00128300313, 0.0226951186, -0.0218414254, 0.0254400726, -0.0343053527, -0.0332809202, -0.00753220543, 0.000355637312, -0.0120567819, 0.0160888433, -0.0154715572, -0.00101129874, -0.026648378, 0.0432100371, 0.0317048728, 0.00246750331, 0.0312583223, 0.00874707755, 0.0141187804, 0.00983061176, 0.021723222, -0.00267928489, 0.00145948795, -0.00976494327, -0.0254006721, -0.0188469309, -0.0352772512, 0.0223405082, -0.0193328802, -0.00773577858, -0.013895507, -0.000379647448, -0.0287103765, 0.0165222567, -0.0226819851, -0.0371159762, 0.0126872025, 0.0155766271, 0.0153270857, -0.0120567819, 0.0270555243, 0.0299712159, -0.019805694, 0.00425861822, -0.00749280397, -0.00881931279, 0.00396639248, -0.0154321557, -0.0269767214, 0.0175335556, -0.00690835249, -0.0373261161, 0.0350671113, -0.00459024543, 0.0107696746, 0.0272656642, 0.00966644, 0.0185185876, 0.00643553725, -0.0283163637, -0.00407474581, -0.0336224, 0.0132453861, -0.0105792349, -0.00284181512, -0.00600212347, -0.00470844936, 0.00409116317, -0.0104150632, 0.00233452395, -0.0132256858, 0.000335936697, -0.0211059358, -0.00399922673, -0.00117382884, -0.0170344729, 0.0388759, 0.0159049705, -0.0349883102, -0.0518520437, 0.035434857, -0.0111833876, -0.00986344554, -0.0156948306, 0.00971897505, 0.0165222567, 0.0218020249, 0.0296822749, 0.0147360675, -0.0190176703, 0.0322564878, 0.0144865261, 0.0161019769, 0.00268913526, 0.0055916938, 0.00265137572, -0.0184003823, 0.0143157868, 0.0231416672, 0.0386920273, -0.0111308526, -0.0101523884, -0.0223011076, -0.0274758041, -0.0212110057, 0.000926750188, -0.0297873449, 0.00666537788, -0.00682954956, 0.000640680722, 0.00236079143, -0.00243795221, 0.0143289212, -0.0312583223, -0.0387445614, -0.0200683698, -0.00680984929, -0.0017057457, 0.00814949162, -0.0372998491, -0.01031656, -0.0165616591, -0.0108550442, 0.00575914932, -0.00912795588, -0.00739430124, -0.0179538354, 0.010395363, 0.0312057883, 0.00492843939, -0.00434070406, 0.00793278497, -0.0175466891, 0.0190833379, 0.00252660504, 0.0236013476, 0.000695267867, 0.0203310438, 0.0284214336, 0.00520753162, -0.00037595359, 0.0236276146, 0.00818889309, 0.0152614173, -0.0227082539, -0.00118367921, -0.0527714044, -0.0122537883, 0.0193066113, -0.00812979136, 0.0113475593, -0.00567377964, 0.00932496227, -0.017835632, 0.00300927041, -0.00723669585, 0.0221303683, 0.0145259267, 0.0106580378, -0.0102837263, 0.0142632518, 0.0001258993, 0.0242055, -0.0385869555, 0.043157503, -0.0326767676, -0.018899465, 0.00144799589, -0.004652631, 0.00481023593, -0.022655718, -0.013711635, 0.0169950724, 0.00212274236, 0.0168637354, -0.0106908726, -0.00315538328, 0.00139710261, 0.011899177, 0.0331495851, -0.00979777705, -0.0345680304, -0.0521672517, -0.0211453363, -0.0139349084, -0.000328754162, 0.00785398204, -0.0117284385, -0.00506306067, 0.0585765243, 0.0116693368, 0.0193460137, 0.0395325869, 0.0160363074, -0.00438010553, -0.0200027, -0.0048627709, -0.0101326881, -0.00631733378, -0.00632390054, -0.00422578398, 0.0141056469, -0.00578541681, -0.00906885415, -0.0233780742, -0.00469859876, -0.006921486, 0.0127200363, -0.0113672605, -0.0250329264, 0.0302864257, 0.0138823735, -0.055371888, 0.00496455748, -0.00816262513, -0.0145390611, 0.024573246, -0.0313371271, 0.0171920788, 0.0102508916, 0.00686895102, 0.010992948, -0.0196349565, 0.0036708829, -0.0154190222, -0.0285790395, 0.00230497308, 0.0107171396, -0.0185317211, 0.00491530588, 0.0108681777, 0.00605465844, -0.00187812618, 0.0271868613, -0.0209614635, 0.00879961252, 0.0285790395, -0.00788681675, -0.045600377, -0.035382323, -0.0453902371, 0.00410758, -0.0125427311, 0.0132453861, 0.00144963758, -0.0144733917, 0.0152482828, 0.000518783112, -0.0409510322, -0.014854271, -0.035723798, 0.010342828, 0.025479475, -0.00447860872, -0.0181245748, -0.0101720886, 0.0302076247, -0.00905572064, -0.0130286794, 0.0110717509, -0.00910825562, 0.00402221084, -1.97647532e-05, -0.0344892256, -0.0311532542, 0.0232073348, -0.0128973424, -0.0150644109, -0.0162201803, 0.00776204607, 0.0286578424, 0.00749280397, -0.00849096943, 0.00698058773, -0.00422578398, 0.0143157868, -0.00060907763, 0.00430458644, -0.0106711714, 0.00417653238, -0.00181574083, -0.0180720389, 0.0319938138, -0.0405307524, -0.00140531117, -0.0029862863, 0.027554607, -0.0184135176, -0.0365906246, 0.0159049705, -0.0035099946, -0.0115051642, 0.00313732447, 0.0201603062, -0.0225637816, -0.0127069028, -0.024599513, 0.0186761916, -0.0189388674, 0.00292882626, -0.0100473184, -0.00121487188, 0.0259654224, -0.0226688515, 0.00732863229, -0.0192278102, -0.00473143347, 0.027685944, -0.00220318651, 0.0204886496, 0.0330970474, -0.0129695777, -0.0150775444, 0.0270029884, -0.000686238403, -0.0301025547, -0.00900975242, -0.00268749357, 0.00462307967, 0.000829067954, 0.0379302688, -0.0105464011, 0.0337274708, -0.00137165596, 0.05894427, -0.0199238975, -0.00623524748, -0.0266615115, -0.010237758, -0.000696909614, 0.0226688515, 0.0096139051, 0.0303652287, -0.00685581751, 0.0261230282, -0.0300237518, 0.0135540292, 0.0323615596, -0.0185448546, -0.0275020711, -0.0265695751, 0.015918104, 0.0238902904, -0.0228395909, -0.00460994616, 0.00844500121, 0.00115741172, 0.00893094949, 0.0152614173, -0.00698058773, 0.0303914957, -0.00493172277, -0.0100932866, -0.00830709655, -0.00386460591, -0.00184857531, 0.0161807798, 0.00280733895, 0.0152876843, 0.0159837734, 0.0246257801, 0.00736146653, -0.0102180569, 0.022787055, 0.0045212931, -0.0127266031, -0.0154058887, 0.0106974393, -0.0166273266, 0.0192146748, -0.0212766752, -0.0210928023, 0.00836619828, -0.00476755109, -0.00356909656, -0.00592660438, 0.0131994188, -0.0257027484, -0.0103822295, 0.0412399732, 0.0232073348, -0.00114017364, 0.00971240737, 0.00530603481, -0.0122931898, -0.0131074823, 0.00710535841, -0.0605728514, 0.0144602582, -0.00522394897, 0.00986344554, -0.0222091712, -0.0223011076, -0.00352312834, 0.0120896166, 0.0118860435, 0.0101720886, 0.00804442167, 0.000631240837, 0.0116102351, 0.00183379976, -0.00209975825, -0.000997344148, -0.00518454751, 0.0216050185, 0.0107499743, -0.0028450985, 0.0129170427, -0.000381289166, -0.0119976802, 0.0116365021, -0.0271605942, -0.0136590991, -0.0024872038, 0.00466904789, -0.00811665691, -0.0141056469, 0.00987001322, -0.0153008187, -0.0177699625, -0.0112424893, 0.021880826, 0.00519768149, -0.000484307, 0.0179538354, 0.00323911104, -0.00196842081, 0.0225900486, 0.00433413731, -0.0141581818, -0.000279913045, 0.00171559607, 0.00133553811, -0.0123719918, 0.0146309966, -0.00220154482, -0.00045434566, 0.00514514651, 0.0390072353, -0.0110192159, 0.00408131257, 0.0100604519, 0.0256502125, 0.0124442279, -0.0408722274, 0.0425008126, -0.00711192563, 0.0254532062, 0.00311598205, -0.0224718451, 0.000884065521, -0.0102246236, -0.0143157868, 0.00353297871, -0.0176780261, 0.00104167056, -0.00591018749, -0.0223011076, 0.0163777862, 0.00186499243, -0.0234306101, 0.0125558646, -0.0120305149, -0.00120091718, -0.017756829, 0.0197925605, -0.0116956038, 0.0162070468, -0.016719263, 0.0164434537, -0.00998165, 0.0330970474, -0.00633703405, 0.0137247685, 0.0309431143, -0.0195824206, 0.00868797582, -0.0155503592, 0.0306016374, -0.0282638296, 0.0174678862, 0.0190570708, 0.0261755623, 0.0247177165, 0.0032506031, 0.0123785594, 0.0029370347, -0.00329657109, 0.00824799482, 0.0135146286, -0.0045212931, 0.00327687059, 0.00281883101, 0.0214211456, -0.00340492465, -0.010756541, -0.00283360644, 0.00268092658, -0.000758884475, -0.00595615525, 0.0135146286, -0.0129236095, 0.0242580362, -0.0203967132, -0.01376417, -0.00412728079, -0.0253087357, 0.0298924148, -0.0197662935, 0.0157736335, 0.0133044887, 0.0098043438, -0.0020816992, -0.0101392549, -0.00496455748, -0.00629763305, -0.00262510823, -0.0152482828, 0.00752563868, -0.0105726682, 0.0192278102, -0.00927899405, 0.0124048265, 0.0187549945, -0.0129564442, 0.0348569714, 0.00853693765, 0.0201209038, 0.00335895643, -0.000351943454, -0.0172577463, -0.0171789452, 0.00988971349, -0.017835632, 0.00573288184, 0.0014693382, -0.00442935713, -0.00830709655, 0.0331233181, -0.0199107639, -0.00460994616, -0.00728923082, 0.02073819, -0.017835632, 0.00235422468, -0.00738116726, -0.00063000957, 0.0282375608, 0.00294852676, 0.00251839659, -0.0013141958, 0.0270817913, 0.0240741633, -0.00297479425, -0.00451144297, -0.0056015444, 0.00156373705, -0.00182394951, -0.0101261213, 0.00279092183, 0.0149593409, -0.00416668225, -0.0105529679, -0.00219990313, 0.00282375608, 0.0201997068, -0.0288154464, 0.000428078143, 0.0152745508, 3.56047749e-05, 0.000770786952, -0.0225375146, 0.00220318651, 0.0399528667, -0.0240610298, -0.0119976802, 0.00324403611, -0.0273707341, 0.023824621, -0.0073549, 0.0150118759, 0.00824799482, -0.0210008658, -0.0231810678, -0.00860917289, 0.020580586, 0.00828082953, 0.00960077066, 0.00378251984, 0.0157210976, -0.035750065, -0.0130155459, -0.0156160286, 0.00322761899, -0.0147098, 0.0107959425, -0.00421921723, 0.0249935258, 0.0117350053, 0.0140925134, 0.0176386256, 0.0205280501, 0.000276013947, -0.0141713154, -0.0364592895, 0.0436040498, 0.0270029884, 0.000815523788, -0.00981091056, 0.00246421969, 0.00377266947, 0.0391385742, 0.0199238975, -0.0219990313, -0.00147344253, 0.0179275684, 0.0101917898, 0.0178881679, 0.0165222567, 0.0222223047, 0.00111801049, -0.00691491924, -0.0121355848, -0.00187976786, 0.00497112423, -0.0193722807, -0.00255779782, 0.00604152493, 0.00198647962, 0.0117809735, 0.0237852205, 0.0116036674, 0.0192803442, -0.0147623345, 0.00507947756, -0.0253875386, 0.0124901962, -0.00573288184, -0.0263331681, -0.00251018791, 0.0254400726, 0.0162464473, 0.01565543, -0.0165485237, -0.00725639658, -0.00988971349, -0.0353560522, 0.00562124467, -0.00596272247, -0.0218939614, -0.0131862843, 0.00073097524, -0.0307329744, -5.50488803e-05, 0.0125033297, -0.00191260234, -0.0195298865, 0.0423957445, 0.00544722285, 0.00144799589, -0.00405832846, -0.0204229802, 0.0061925631, -0.0100210514, -0.000927571091, -0.025768416, -0.00556870969, 0.0291831922, 0.0255188756, 0.0171001423, 0.00325716985, 0.0130221127, -0.00780144706, -0.0116299354, 0.00280733895, 0.00600212347, 0.0172577463, 0.0253875386, -0.000516320521, -0.00160888431, -0.00180753227, 0.0309168473, -0.0109535474, 0.0254400726, 0.0202785097, 0.0309693813, 0.0165879261, -0.0044326405, 0.0298398789, 0.0111308526, 0.00527648395, -0.0105332676, -0.00756503968, 0.0135540292, -0.00146605482, 0.0123588583, 0.0170344729, 0.00463293027, 0.0263725687, -0.00320791826, 0.0295246691, -0.0184397846, 0.0264382381, -0.0130024124, -0.0235882141, -0.013297921, -0.00459024543, -0.0113147255, -0.027580874, -0.0178881679, 0.00544393901, 0.0342002846, 0.0212635398, 0.0022721386, 0.0119582787, -0.035382323, 0.0229840614, -0.00265630079, 0.00878647808, -0.0042619016, -0.0203967132, -0.0111242859, -0.0115248654, -0.00605137506, 0.0108813113, 0.0263463017, -0.0152614173, 0.000104505656, 0.0320463479, -0.00240675965, 0.0162989832, -0.0268453844, 0.0260967612, -0.00693462, -0.0125230299, 0.00472814962, -0.0165616591, -0.0157210976, 0.00265137572, 0.0151563473, -0.00140449032, -0.000813471619, 0.00441950653, 0.0139743099, 0.0311532542, 0.0101655219, -0.0114788972, -0.0322039537, -0.00412399741, -0.0103296945, 0.0206199866, 0.0239822268, 0.00749280397, 0.00574273197, 0.00511559565, -0.0157473665, 0.004652631, 0.00155470765, 0.0045705447, 0.0124442279, 0.00839903299, 0.0120961834, 0.0235488135, 0.00950226746, 0.0100276181, -0.00721042836, 0.00148493459, -0.0139086405, -0.00920019113, -0.0101064201, 0.0188075285, 0.00164664385, -0.0241529662, -0.00837276503, -0.0189125985, 0.00647493871, -0.0045803953, 0.0293670632, -0.0238640234, -0.00682954956, 0.00356909656, -0.0239559598, 0.00783428177, 0.0100670187, -0.00802472141, -0.0334647931, -0.0177699625, -0.009902847, -0.00234437431, -0.0143683217, 0.0239034239, 0.00784741528, 0.0162070468, 0.0165485237, 0.00196677889, -0.0135671636, -0.00996194873, -0.00236571673, 0.0295509361, 0.00236079143, 0.0162989832, -0.000252003811, 0.00974524207, -0.0282112937, 0.00176156417, 0.00967957359, 0.0130943479, 0.0266089775, 0.0144602582, 0.041108638, -0.00503350934, 0.00669164537, 0.0103887962, 0.0319412798, 0.01695567, 0.00776204607, 0.0332283862, 0.00308150589, -0.00267107622, 0.00269898563, 0.0164959896, 0.0172840152, -0.00639613625, -0.0336224, 0.012989278, 0.00384818856, 0.0193854142, -0.00632390054, 0.0152482828, 0.0195824206, -0.0150775444, 0.00539797125, 0.00361834792, -0.0122078201, -0.00213751779, -0.0252824686, 0.000639039, 0.0317311399, 0.0329657122, -0.00466576451, -0.00161463034, -0.0109338462, -0.00833993126, 0.0035099946, 0.01376417, -0.000157912815, 0.00975837559, -0.0147229331, 0.00685581751, 0.026674645, -0.0135277621, 0.0110717509, -0.0188863315, -0.00667194463, 0.00830709655, 0.00630748319, 0.00044203276, 0.0317311399, -0.023719551, -0.0156948306, 0.0075125047, 0.00409773, 0.00274331192, 0.0256633461, -0.00487590441, 0.0252430663, -0.00290091685, -0.00420608325, -0.0123063233, -0.0167586636, 0.00024995167, -0.0254400726, 0.0225112475, 0.00239855098, 0.00877991132, -0.0110783176, -0.0100932866, 0.00477083446, -0.00275808736, -0.00813635811, 0.0219202284, 0.010342828, -0.016666729, -0.0100079169, 0.00483322, -0.0027761464, 0.0105661014, -0.0163909197, 0.0089637842, -0.00231810682, 0.00263824197, 0.000834403501, 0.00728923082, 0.000500313763, 0.00952196866, 0.0254532062, 0.00551289134, 0.000780226837, 0.00504664332, 0.00691491924, 0.00666537788, -0.00371685112, -0.00347387674, -0.000849589414, 0.0146178631, -0.00700685522, 0.003940125, -0.00194872008, 0.013429259, -0.000645195425, 0.00964017212, -0.000925108499, -0.00696088746, -0.00510246167, 0.0153270857, 0.0160494428, -0.0116759036, -0.0110586174, -0.0259260219, 0.00780801428, -0.00329657109, 0.0127922725, -0.0050729108, -0.0126281, -0.0174547527, -0.00301747886, -0.0116759036, -0.00698058773, 0.0036511824, 0.000138520016, -0.00560482778, -0.00477411784, -0.0209089294, -0.0167586636, -0.00878647808, -0.0155372256, 0.00612032739, -0.00154649897, 0.0130418129, -0.0048627709, 0.00162365974, -0.00370371738, -0.00676388107, 0.00303389621, 0.00506306067, -0.00340164104, -0.0038613223, 0.000954659423, -0.00942346547, 0.000841380854, 0.0118860435, 0.0180063713, 0.0098043438, -0.0310744513, 0.00659970939, -0.0226163175, -0.0130286794, 0.0160494428, -0.0168506, 0.00795905199, -0.0089637842, -0.0281850267, 0.012365425, 0.0181639753, -0.0135671636, -0.000228814548, -0.000862723158, -0.0435515121, 0.0154846907, 0.0156291611, -0.0271343272, 0.0289205164, -0.0142895197, -0.0144208567, 0.017756829, -0.00163433095, 0.00386788929, 0.00499082496, 0.0025118296, -0.0136196986, 0.00814949162, 0.00791965146, 0.00664896052, -0.00908855442, 0.0415814519, -0.00507619418, 0.0107499743, 0.00960077066, -0.0101129869, -0.00979121, 0.0144733917, 0.00298136123, -0.0246389136, 0.0277384799, 0.026622111, -0.00107368408, -0.0114066619, 0.0144602582, -0.0136590991, 0.00424876809, 0.0249803923, 0.0125427311, -0.0135671636, 0.0170082059, -0.00433413731, -0.0061925631, -0.00235258299, 0.00809039, 0.0185054541, -0.011715305, 0.00339835766, 0.0172446128, -0.00683611678, -0.00532573555, -0.0160757098, -0.00273838686, -0.00460666278, 0.0157999, 0.011899177, -0.0140399784, 0.0066128429, 0.00927899405, 0.0136853671, -0.0168768689, 0.0114854639, 0.00468874862, -0.000629188668, 0.00811009, 0.00299777836, 0.0324140936, 0.00432428718, -0.00380222057, -0.0129958456, 0.0101720886, 0.00112211471, 0.0143814562, -0.00225572148, -0.0381141417, -0.00546035636, -0.00271868613, 0.00830053, 0.0113212923, 0.00178619, 0.00624838145, -0.00624509808, -0.00928556081, -0.0058116843, 0.00781458057, -0.0221566353, -0.00117382884, 0.0121355848, -0.0390860401, 0.0179932378, -0.00656687468, -0.00083850784, 0.0403994136, -0.0152220158, 0.0067507471, -1.38135238e-05, 0.00369058363, -0.00814292487, -0.0181902424, 0.0230497308, 0.00574273197, -0.0182427783, 0.00151120208, -0.0142895197, 0.00423563411, 0.000773659965, 0.0143289212, 0.00946286693, 0.0141056469, -0.0103034265, 0.0121355848, -0.0183084477, -0.00698058773, 0.0144077232, 0.000240101363, 0.00230661477, 0.000115741168, 0.0110651841, -0.00363476528, 0.00977151, -0.00309135625, -0.0179538354, -0.00179768202, -0.00443592388, 0.0167455301, 0.0107696746, -0.00591018749, -0.0110192159, -0.0135408957, 0.0057131811, -0.00141516153, -0.0106777381, -0.0109469807, -0.00578213343, -0.0228001885, -0.00274987891, 0.00109748892, 0.00723669585, 0.00663911039, -0.0172183458, 0.00263824197, 0.0145653281, -0.0045705447, -0.00284838188, 0.0193197448, 0.000648478861, -0.00335074775, -0.0108025093, 0.0272131283, -0.0069937217, -0.00171887944, -0.0188075285, 0.020554319, 0.0271868613, -0.0175598226, 0.0160231739, -0.0100013502, -0.00775547931, 0.00642568711, 0.00374968559, -0.00942346547, -0.0266352445, 0.0038416218, 0.00995538197, -0.0172708798, -0.000499082496, -0.016771799, -0.00084466429, 0.0118794767, -0.00777517958, 0.000977643533, 0.021014, 0.011275324, -0.00249212887, -0.013895507, -0.016798066, -0.0180457719, 0.00665881112, -0.0193066113, -0.00744026899, 0.000220811169, 0.010369095, -0.00977807678, 0.00532901892, 0.00962047186, -0.00951540191, -0.003940125, -0.0151432129, 0.00274987891, 0.00971897505, 0.00707252417, -0.00387117267, -0.0070331227, -0.0228264574, -0.0172314793, 0.000197929709, -0.0144208567, -0.00246914499, -0.00277778809, 0.0146047296, 0.00335074775, -0.018899465, -0.00197498756, 0.0288679823, -0.00900975242, -0.0170870088, 0.023561947, 0.0118663432, -0.0291569233, -0.00383505481, 0.00314717484, 0.00888498127, 0.000261854118, 0.0141450483, 0.0158524364, -0.00633703405, -0.0153008187, -0.0240872968, -0.0135934306, 0.00315374159, 0.00141926587, 0.0116759036, -0.00165403157, -0.0042717522, -0.00822172686, -0.00515828, -0.01565543, -0.0105792349, -0.00881931279, -0.00483978679, -0.0202916432, 0.0014094155, 0.0050006751, 0.0317574069, 0.00616629561, 0.0188863315, 0.00645852135, -0.0206199866, 0.0249409899, -0.0194510836, -0.0129630109, 0.00867484137, -0.0272131283, 0.00015483459, -0.0225243811, -0.000847947726, 0.000943988271, 0.00416668225, 0.0252956022, -0.0167061295, -0.029656006, 0.00563437864, 0.0212898087, 0.00311105698, 0.0117481388, -0.00585436868, 0.00795905199, 0.000784331118, -0.00243631052, -0.0215130821, 0.0134752272, 0.0116036674, 0.00396639248, -0.00117382884, -0.00811665691, 0.00573288184, 0.0183478482, -0.0175598226, -0.00337865716, 0.0118926102, 0.00856320467, -0.0203573126, 0.00345417624, 0.0117481388, 0.0157605, -0.00497769099, -0.0185317211, 0.00106465456, -0.00867484137, -0.00132486701, 0.00377595308, -0.0135277621, -0.00413384754, -0.00721042836, -0.0102443248, 0.020816993, -0.000696909614, 0.00476755109, 0.0109010125, 0.00883901305, 0.00830709655, -0.00582481781, 0.0109338462, -0.0129498774, -0.00792621821, -0.00539140403, 0.00491858926, -0.0162070468, -0.0121355848, -0.00390072353, -0.00181738264, -0.010507, -0.0116890371, -0.0304965656, 0.0147623345, -0.00586750265, 0.0021851277, 0.00634688465, 0.00619913, 0.00429801969, -0.00217199395, 0.0211584698, -0.0149462074, 0.00357238, 0.000639039, 0.00773577858, -0.0288679823, 0.0152220158, 0.0142895197, -0.00332776387, 0.00375953573, 0.0112687573, 0.0200289674, 0.0223011076, 0.0121552851, 0.0130155459, 0.00688865175, 0.00282703969, -0.0263725687, -0.00491858926, 0.0173365492, -0.0353560522, 0.017861899, -0.0073023648, 0.0030109121, 0.019779427, -0.0304177646, -0.00127479457, 0.0162727162, 0.0159706399, -0.00485620368, -0.0084056, -0.00285987393, -0.0235750806, -0.0133898575, 0.00213751779, 0.00954823568, 0.011380394, 0.0228395909, -0.00730893156, 0.0239428263, 0.00828739628, 0.00481351931, 0.00728923082, -0.0040517617, -0.0112884576, 0.0153533537, -0.00546035636, 0.000508932804, 0.00584451854, 0.017730562, -0.000318288221, -0.00727609731, -0.0249278564, -0.00646837149, 0.0102114901, 0.0143420547, -0.0259260219, 0.0219464954, 0.0237064175, -0.0025118296, 0.0114394957, 0.0246914495, 0.0101655219, 0.00686895102, 0.00690178527, -0.00399594335, 0.0214605462, -0.0101917898, -0.0102640251, 0.00787368324, -0.0061433115, 0.00781458057, -0.0128185395, -0.00213259249, 0.00747967046, -0.00548005709, 0.0220778324, 0.00661940966, -0.0204361137, 0.00381863769, -0.00546363974, 0.014696666, 0.00713819312, 0.00923302583, 0.00749280397, -0.0101523884, 0.0138561055, -0.00613017753, 0.00576899946, 0.0248227865, -0.00462307967, 0.00252332166, 0.0185579881, 0.0235750806, -0.00374640198, 0.0142763862, -0.00653075706, -0.0216312855, 0.0144996597, 0.00660299277, 0.00300762872, 0.0121946866, 0.000369797141, -0.0139743099, -0.013324189, 0.0239165574, -0.0145390611, -0.000717841496, 0.00695432024, -0.0301550888, -0.00586421927, -0.0107696746, -0.00899661891, -0.011715305, -0.00698058773, 0.000746982, -0.021854559, -0.0339638777, -0.0233912077, 0.00326209515, 0.000370617985, -0.0121749863, -0.0035296951, 0.00927899405, 0.00734833302, -0.00418309914, 0.0106252031, 0.00673761358, 0.0169688053, 0.0140662454, 0.0330445133, 0.00803128816, 0.00341805839, -0.0168768689, -0.00946943369, -0.00887184776, -0.00375953573, -0.00448517548, 0.00910168886, 0.0164959896, -0.00223602098, 0.00547677372, -0.0064913556, -0.00652419031, -0.0045311437, -0.0160363074, 0.0131140491, -0.00706595741, 0.0229971949, -0.0353560522, 0.00995538197, 0.0111439861, -0.0118006738, -0.00547349034, 0.0156160286, 0.00586421927, -0.0106120696, -0.0112621905, 0.0120239481, 0.0193460137, 0.00925272703, -0.00357894669, -0.00941033196, 0.0102837263, -0.00547349034, 0.0219990313, 0.0107696746, -0.0184003823, -0.00825456157, 0.00885871425, 0.00330970483, -0.0261361618, 0.00333433063, -0.00611376064, 0.0178093649, -0.0133373225, -0.0155897606, -0.00151202292, 0.0151169458, 0.00488247164, 0.0114394957, -0.00266779284, 0.000199571426, 0.00606450904, 0.0150644109, -0.000804442156, 0.0246651825, -0.0213292092, 0.00129449519, 0.0167849325, -0.00317508401, -0.00916735735, 0.0175598226, -0.021618152, 0.0174810216, -0.00252824672, -0.0372735821, 0.00531260157, 0.0256239455, -0.00954823568, 0.0179801024, 0.00891781598, -0.0229052585, 0.00490545528, -0.0089637842, 0.00122143875, -0.0274495371, -0.014854271, 0.00931839552, 0.000857798033, -0.014775468, -0.00582153443, 0.00150299352, 0.01042163, -0.0162201803, -0.00310613168, 0.0142501183, -0.00626808219, 0.00806412194, -1.64684916e-05, -0.041108638, 0.0288679823, 0.00495799026, 0.0111111524, -0.00323418574, -0.00179932371, 0.00676388107, -0.0128907757, -0.00702655595, -0.00142419094, -0.00293046795, 0.0158787034, -0.0103231268, -0.00864857435, 0.00697402097, -0.0135408957, 0.000790898, -0.000354816468, 0.0179275684, 0.00807725638, 0.0222879723, -0.00385475555, -0.012884208, 0.00173201319, 0.0036511824, 0.00176813104, -0.0439455248, -0.0103231268, -0.0101195537, -0.00936436374, -0.017730562, -0.00583138503, 0.00541438814, -0.0120173804, 0.00260048243, 0.0208301265, -0.012910476, -0.0105792349, 0.0148674045, -0.00696745422, -0.00235094107, 0.00552930869, 0.00124031852, 0.039663922, 0.011354127, 0.0121421516, -0.0160231739, -0.0271868613, 0.0163515192, 0.0229709279, 0.00665552774, 0.00964673888, 0.00979777705, 0.00805755518, -0.00591347087, 0.0128645077, 0.00530603481, -0.00460009556, 0.00390729029, -0.0172577463, -0.01695567, 0.000333474105, 0.00127643626, -0.0145653281, 0.00697402097, -0.0180457719, 0.0131534506, 0.0116233686, -0.0258472189, -0.00509917829, 0.0038908734, 0.000256723753, 0.00119024608, 0.00680984929, -0.0123719918, 0.0164697226, -0.0174810216, -0.0156160286, 0.0145127932, 0.0181245748, -0.0053815539, -0.00632718392, 0.0189782679, -0.000233944913, 0.0132256858, 0.0154321557, 0.00401564408, -0.00829396304, 0.0120173804, 0.0112424893, -0.0224061776, 0.00206856546, 0.00694775349, 0.00853693765, 0.0170607399, 0.00573288184, 0.00680328207, -0.00557856029, 0.0118006738, -0.00676388107, -0.0212898087, -0.0108419107, -0.00289599178, 0.00957450364, 0.0206987895, 0.0251905322, 0.00241332641, 0.0142763862, 0.00439323904, -0.011951712, 0.000495388638, -0.00201274711, -0.00238049217, -0.0211847387, -0.0109535474, -0.000971897447, 0.00197662925, -0.00882588, 0.000734258676, -0.0139480419, 0.00229019765, 0.00639941962, 0.00960733742, -0.00814949162, -0.000691574, -0.00332940556, -0.00450159283, 0.00451144297, -0.00385475555, 0.0224849787, 0.0168768689, -0.0052929013, -0.0110389162, -0.0162727162, -0.0158787034, -0.00184200844, 0.0122931898, 0.00894408394, -0.0210534, -0.0105923694, 0.0292882621, 0.0118006738, -0.00099323981, 0.0134883607, -0.00562124467, -0.0214342792, 0.00501709245, -0.027580874, 0.0308905784, -0.0100867199, 0.00111636869, 0.00972554181, -0.00165403157, 0.00877991132, 0.00139956514, -0.00744026899, 0.00483650342, -0.00889154803, -0.00619913, -0.0090425862, -0.0138561055, 0.011432929, 7.58781825e-05, -0.00872737635, -0.000905407884, 0.00732863229, -0.00898348447, 0.014933073, -0.00429145247, 0.0109666809, -0.0038613223, -0.0146441311, 0.00138068537, -0.00903601944, 0.0076110079, -0.00688865175, -0.00606450904, 0.0121881198, 0.00392370764, -0.00910168886, 0.0162595827, -0.0207513236, 0.017835632, 0.0121158836, -0.00642240373, -0.00687551778, 0.0109601142, -0.00507947756, 0.0246257801, -0.00341805839, -0.0157473665, 0.0209877323, -0.0227213874, -0.00237885048, -0.000798285706, -0.0220909659, -0.00637971889, 0.00343119213, 0.0122734886, 0.0349357724, -0.0100670187, -0.000754369714, -0.0207907259, 0.00270883576, -0.0189651344, 0.0104347644, -0.00755190616, -0.000779816357, 0.000995702343, -0.00231810682, -0.00325881154, 0.0158393029, -0.00954166893, -0.0056015444, -0.00941033196, 0.0207513236, 0.0146178631, 0.0083333645, 0.00150709774, -0.018768128, 0.0083333645, -0.061308343, 0.00655702455, 0.0242317673, 0.0123851262, -0.0245863795, 0.000434645015, 0.00972554181, -0.00318657607, 0.0429998972, 0.000469531544, 0.0153927542, 0.00694118673, 0.011432929, -0.010342828, -0.0202522427, -0.0029862863, -0.000921004219, 0.0165091231, 0.0032013515, -0.0161676463, 0.00701998919, -0.0162201803, -0.00471501611, -0.0124507947, -0.00174350524, 7.00295641e-05, 0.0225900486, -0.0124113932, 0.00796561874, 0.00830709655, -0.0178750325, -0.0216444191, 0.00743370224, -0.00828082953, 0.0153533537, -0.0115051642, 0.0101589551, -0.02742327, -0.0249147229, -0.00195528707, -0.0176123586, -0.00382192107, -0.0296822749, -0.000365282409, 0.00775547931, 0.0105989361, 0.0130089791, 0.024678316, 0.000602510758, 0.00839246623, 0.00587735279, -0.0175204221, -0.01231289, -0.0216838215, -0.0127397375, 0.000220605943, -0.010474165, 0.00928556081, -0.00484963693, -0.0018009654, -0.0295246691, -3.69386689e-05, -0.0069937217, 0.00829396304, 0.01695567, 0.00932496227, -0.0269767214, 0.00835306477, 0.0121158836, -0.00523708249, -0.00919362437, -0.0139217749, 0.0187549945, 0.00440965639, -0.0141581818, 0.0079918867, 0.0060710758, -0.0164828561, 0.0134095587, 0.0101720886, 0.00173365499, 0.0045803953, 0.0179538354, -0.0139349084, 0.0112096556, 0.0154452892, 0.0132585205, -0.000749855, 0.0107040061, -0.0077226446, 0.0105792349, 0.00818889309, 0.00616957899, 0.00103510369, 0.0137247685, -0.0089637842, -0.0101523884, -0.00529618468, -5.67419e-05, -0.0109469807, 0.00584780192, -0.0063534514, 0.00758474041, 0.00431772, 0.0361703448, -0.0255451426, 0.00902945269, 0.0024445192, 0.000866827497, -0.011354127, 0.0209877323, -0.000680081954, 0.00183708325, 0.00135277619, 0.00444249064, 0.00404847832, 0.00809039, 0.00774891209, -0.0280274209, 0.00461979629, 0.00392699102, -0.0221435018, -0.0115314322, 0.00336552341, 0.00187976786, -0.00122143875, -0.00951540191, -0.00676388107, -0.0206068531, -0.0160363074, -0.0134489592, -0.00459024543, 0.0103887962, -0.0170344729, -0.0179407019, -0.009902847, 0.00272361143, 0.0210928023, -0.00814949162, 0.014880538, -0.00599555671, 0.0009127956, 0.0213292092, -0.00268585188, -0.0355924629, -0.0338588059, -0.0263463017, 0.00974524207, 0.00718416087, -0.00881931279, -0.00643882062, -0.00340492465, 0.0259785559, 0.000304744026, -0.0279223509, 0.000509753649, 0.00326209515, 0.0194116812, -0.0042028, -0.0122669218, 0.00395325851, 0.00228198897, -0.0019946883, -0.0149199395, 0.0104347644, 0.00162119721, -0.0240872968, -0.00363148167, 0.00373655185, -0.0113606937, -0.00160806347, 0.0329919793, 0.000552848796, 0.000465427263, -0.00424548471, -0.013402991, 0.000872573466, -0.0233255401, -0.00492187263, 0.00509917829, -0.0037923702, -0.00171723776, -0.0121552851, 0.00698058773, 0.00336880679, -0.0228658579, -0.00936436374, 0.0316786058, 0.0212635398, 0.0120961834, 0.0103559615, 0.000422742567, -0.021723222, -0.0157473665, -0.0241266973, 0.00988314673, -0.011715305, -0.0127791381, -0.00109174289, -0.00128136144, 0.0184003823, 0.0172314793, -0.00844500121, -0.00255779782, 0.0145259267, -0.0118663432, 0.000173611756, -0.000490053033, -0.0163777862, -0.0176780261, -0.0104084965, 0.00922645908, 0.0182165112, -0.0152745508, -0.00153582788, -0.000857798033, 0.00145948795, 0.014854271, -0.00763727538, -0.00671791285, 0.0114788972, 0.00541110476, 0.00767667685, 0.00173693837, -0.0135408957, -0.00417981576, -0.000187566358, 0.0172314793, -0.000788025, 0.0101852231, 0.0157210976, -0.00128792832, -0.00412728079, -0.00311762374, -0.017756829, -0.00701998919, 0.00924615934, -9.71179252e-05, -0.00315702497, 0.0150906779, 0.0290781222, 0.0169162694, 0.00530275144, -0.00664239377, -0.0179801024, 0.00309135625, -0.0222485717, -0.00510902843, 0.00707252417, 0.0126872025, 0.0216444191, -0.00387773965, -0.000792129256, -0.0116627701, 0.00904915389, -0.0107499743, -0.00448845886, 0.0225506481, -0.0394275151, 0.00399594335, -0.00621554721, -0.00668836199, 0.0153927542, 0.00169753714, -0.0237589534, 0.00494485674, 0.00364789902, -0.0198844969, 0.00407802919, -0.00252660504, 0.0116365021, -0.0110192159, -0.017756829, -0.0101917898, -0.0063928524, -0.00958107, -0.0171789452, -0.000710043358, -0.0215393491, 0.0111702541, -0.000231892773, -0.0248753224, 0.0119845467, 0.0126149664, 0.00216378528, -0.00105726684, -0.0153402193, 0.0154978242, 0.00261689955, 0.0160494428, 0.00113524846, -0.0178750325, 4.87064608e-06, 0.016824333, -0.0255714096, -0.0224981122, 0.00290255877, -0.0197662935, -0.0145390611, 0.0297085419, 0.033333458, -0.0186630581, -0.0121618519, 0.00507619418, 0.000135339185, 0.00399922673, -0.0144471247, -0.0161019769, -0.00800502, -0.0322039537, -0.0180195048, 0.0058510853, -0.00425533485, -0.0114132287, -0.00711192563, 0.010940413, -0.00925272703, -0.00137493946, -0.00976494327, -0.0314159282, 0.00565079553, -0.0152351493, -0.0136985006, -0.00292390096, -0.00523708249, -0.00384818856, 0.0230628643, -0.0119845467, -0.00539468788, -0.00941689871, -0.00279748859, 0.00469859876, -0.0227213874, -0.0194248147, -0.0151432129, -0.00214080117, -0.00373655185, -0.00748623721, -0.0441293977, -0.0426058844, -0.00615972839, 0.0131271826, 0.00889811572, -0.00970584061, -0.00100062753, -0.0222485717, -0.00751907146, 0.00292390096, 0.0112293558, -0.00528633408, -0.00342790876, -0.0191621408, 0.0218020249, 0.00419623312, -0.0191752743, -0.00112621905, 0.00179275684, -0.0168112, 0.0116036674, 0.00559826056, -0.00413384754, -0.00153500703, 0.00846470147, 0.0143420547, -0.00525021646, 0.0105464011, 0.0155372256, -0.00267928489, -0.0178224985, -0.019700624, -0.0157473665, -0.00818232633, -0.02473085, 0.0679277554, 0.0153139522, 0.00634688465, -0.0294196, -0.00808382314, -0.00807725638, 0.00706595741, 0.0338850729, 0.0101720886, -0.0183084477, -0.0100079169, 0.00545050623, -0.0224193111, 0.00635016803, -0.0213292092, -0.0127922725, 0.00918705761, -0.0160231739, 0.00755847292, 0.0125492979, -8.18807166e-05, -0.0193722807, -0.00305852201, -0.00814292487, 0.000809777761, -0.00503022596, 0.006402703, 0.00425861822, 0.00257093157, 0.012910476, 0.00558512704, 0.00780144706, 0.0215656161, 0.0087536443, -0.0259785559, 0.0060218242, -0.0185579881, -0.0173759516, 0.0157999, 0.00773577858, 0.0342265517, -0.00100883609, 0.00621554721, 0.010861611, 0.00816919189, 0.00797875319, 0.0214868151, -0.0204755161, -0.0162201803, -0.0200158339, 0.0115248654, -0.0195955541, -0.0274758041, -0.0111899544, 0.0242449027, -0.00662597688, 0.00284838188, -0.00798532, -0.010237758, 0.0114591969, -0.00100637355, 0.0100276181, 0.0245863795, -0.0147623345, -0.0242843032, -0.00578541681, 0.0012682277, 0.0122209536, -0.0102049233, 0.0136985006, -0.00317015871, -0.0135671636, -0.0027268948, 0.0025118296, 0.0151957478, 0.0174678862, -0.0257552825, 0.00923959259, 0.0113147255, -0.00405832846, -0.00806412194, 0.0319412798, -0.00501380907, -0.00195857044, -0.00626808219, -0.0103887962, -0.0096927071, -0.0169294029, -0.0238508899, 0.00684268354, -0.00613674428, -0.00727609731, -0.00672119623, 0.00529618468, -0.00395982573, 0.031547267, -0.00256436458, -0.0164697226, 0.022655718, 0.0231285337, 0.0225112475, 0.00376938609, -0.0100670187, -0.0303914957, -0.00352312834, 0.016824333, 0.00527648395, 0.0100210514, 0.0110520506, 0.017861899, 0.0189388674, 0.00467561465, 0.0212110057, 0.0351721831, 0.00125837734, -0.00841873325, 0.00493500661, -0.00606122566, 0.0117284385, -0.000463375094, 0.00889811572, 0.00135934306, 0.00799845345, 0.00921989232, -0.00158015429, -0.0145784616, 0.0310744513, 0.00394997513, -0.0118400753, 0.00826769508, -0.00499082496, -0.0176254921, 0.0290255863, -0.0188863315, 0.000165505771, 0.0108484775, 0.0103493948, 0.00187976786, -0.00993568171, 0.00153500703, 0.0247439835, 0.0167849325, 0.0194116812, 0.00306673045, 0.0213948786, -0.00186827593, -0.00719729485, -0.00998165, 0.022892125, 0.0165616591, 0.000862723158, 0.0110848844, 0.0142763862, -0.0135540292, 0.00883901305, 0.00922645908, -0.000180178627, -0.000522066548, -0.00933809578, -0.000398322, -0.0136328321, 0.00185842556, -0.00723012909, -0.0200158339, 0.00629106583, -0.0210928023, 0.00908855442, -0.0203704461, -0.00939063076, 0.0203573126, 0.0133176222, 0.0213160757, 0.0199501663, 0.00107286312, -0.012805406, -0.0175729562, -0.00815605838, -0.0146047296, 0.00721042836, -0.0365118235, -0.0136328321, 0.01975316, -0.00209975825, 0.0385869555, -0.00384490518, 0.013816705, 0.00549975783, -0.00467889849, 0.00701998919, 0.0091739241, 0.0169294029, -0.0057525821, 0.00178126479, 0.00949570071, 0.0144733917, -0.0195692871, 0.0280011538, 0.011794107, -0.0149987424, 0.00251018791, 0.0164697226, 0.00834649801, 0.00694775349, 0.0113672605, 0.0299974848, -0.0246389136, 0.0111571206, 0.0189257339, 0.0100210514, 0.00404191157, 0.0184135176]
25 Jul, 2024
PostgreSQL – DROP ROLE 25 Jul, 2024 In PostgreSQL, the DROP ROLE statement is used to remove a role from the database. Let us look at the process of dropping a role, including important considerations and steps to ensure smooth execution. Syntax The basic syntax of the DROP ROLE Statement in PostgreSQL is: DROP ROLE [IF EXISTS] target_role; Parameters Let’s analyze the above syntax: target_role: The name of the role to be deleted. IF EXISTS: An optional clause that prevents an error if the role does not exist, issuing a notice instead. Important Conisderations It is important to note that to remove a superuser role, one needs to be a superuser. To remove non-superuser roles, you will need the privilege to create a role using the CREATE ROLE statement. If we accidentally try to remove a role that has been referenced in any database, PostgreSQL raises an error. In this case, one has to take two steps: Step 1: You either need to remove the database objects owned by that particular role using the DROP OWNED statement or reassign the ownership of the database objects to another role using the REASSIGN OWNED statement. Step 2: You will also be needing to revoke all other permissions granted to the role. In other words, follow the below statements exactly as shown to drop a role: REASSIGN OWNED BY target_role TO another_role; DROP OWNED BY target_role; DROP ROLE target_role; PostgreSQL DROP ROLE Example Let us take a look at an example of the DROP ROLE Statement in PostgreSQL to better understand the concept. Here, we will create a new role called ‘geeksforgeeks’ and use this role to create a table named ‘employees’. Then, we will show the step by step guide on how to remove the role ‘geeksforgeeks’ from the PostgreSQL database server. Create and Configure the Role 1. First, log in to PostgreSQL using the Postgres role: psql -U postgres 2. Second, create a new role called ‘geeksforgeeks’ using the below statement: CREATE ROLE geeksforgeeks WITH LOGIN PASSWORD 'geeks12345'; 3. Third, grant createdb privilege to geeksforgeeks using the below statements: ALTER ROLE geeksforgeeks CREATEDB; 4. Fourth, create a new database called sales: CREATE DATABASE sales; Create a Table Using the Role Now, login to the PostgreSQL database server using the geeksforgeeks role as shown below: psql -U geeksforgeeks -W sales Add a new table to the Sales database: CREATE TABLE employee( employee_id INT GENERATED ALWAYS AS IDENTITY, employee_name VARCHAR(150) NOT NULL, PRIMARY KEY(employee_id) ); Now show the list of tables in the sales database using the below command: \du This will show you the following result: Now log in as Postgres and attempt to drop the geeksforgeeks role: DROP ROLE geeksforgeeks; Output: Important Points About PostgreSQL DROP ROLE Statement Use the IF EXISTS clause to avoid errors when running scripts that may try to drop non-existent roles. Only a superuser can drop another superuser role. To drop a non-superuser role, you need the CREATE ROLE privilege. Use the REASSIGN OWNED statement to transfer ownership of database objects to another role. Before dropping a role, ensure that all permissions granted to the role are revoked. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE
https://www.geeksforgeeks.org/postgresql-drop-role?ref=asr10
Languages
PostgreSQL – DROP ROLE
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.058571212, -0.0392792113, -0.0133030806, 0.0369039215, 0.00365708, 0.00372225558, 0.0146138361, 0.0116012711, -0.0300097801, 0.0181043558, 0.050315626, -0.0409882627, 0.00312300143, -0.0552400127, -0.0227970053, -0.0221452489, -0.0356873088, 0.022912873, -0.0174526, -0.0196396057, 0.0435083881, 0.0141503653, 0.0150628248, -0.0104425931, -0.0140634635, 0.0288221352, -0.000608759, 0.0182636753, -0.0295028593, 0.00656101853, 0.0162359867, 0.0160477012, 0.0024006376, -0.0170180947, -0.0318347, 0.00643066736, -0.0082266191, 0.00513439532, -0.0464050844, 0.0327037089, -0.0105584608, 0.0175395012, -0.019480288, -0.00112247013, -0.0178291705, 0.0232315101, 0.0122602703, -0.0184809268, -0.0506921969, 0.0254764501, 0.00168008427, -0.0114419535, -0.00514887879, -0.0168153252, 0.0155118126, -0.0137593104, 0.0353686698, -0.0181043558, -0.0406116918, -0.0320664346, 0.00678189192, -0.022883907, 0.00107268314, -0.0294159576, 0.0114854034, -0.0100225713, 0.00185569655, -0.00146373722, -0.0254040323, -0.0268813483, -0.00464195712, -0.00126006315, 0.0249695275, 0.0142155401, -0.0233039279, -0.00934908912, 0.0313712284, 0.0172498301, 0.00740106078, 0.0208562184, 0.0167718753, -0.0207403507, -0.029662177, 0.000595633348, 0.0218700618, -0.016525656, -0.00445729261, -0.0356004052, 0.0347024314, 0.0238977503, 0.0263309758, 0.00103375874, 0.0304732528, -0.00315921, -0.0187126622, 0.000851357356, -0.00585132791, -0.00532630179, 0.0125064896, 0.0430738851, -0.00756762084, 0.0336016864, 0.00833524577, -0.0117098978, 0.0115940301, 0.0140924305, 0.0127309831, 0.0188719817, 0.00995739549, 0.0420600399, 0.0274172369, 0.0466947556, -0.0255923178, 0.0573546, -0.0370487534, -0.00235537672, 0.027402753, -0.0138606951, -0.0012003188, -0.0171629302, -0.017235348, -0.00580063555, -0.0119706, 0.0148600554, -0.0415096693, 0.00990670361, 0.0147514297, 0.0189009476, 0.00658636494, 0.0260268226, -0.0157435481, -0.0283296965, -0.0373384245, 0.0426393785, -0.0195816718, 0.00805281755, -0.0120647429, 0.0144327926, -0.0269682482, -0.000111568093, -0.0314870961, -0.00559786707, 0.0346155278, -0.0133030806, 0.00372587657, 0.0304153189, 0.00369328866, -0.0192485508, 0.00633652462, 0.00655015605, -0.00388881564, -0.00944323186, 0.0140996724, -0.00169547298, -0.0018004782, 0.0121661276, -0.0177422687, 0.00269211782, -0.01462832, 0.0199292749, 0.00541682355, -0.0197699573, -0.0110364156, -0.00192087225, -0.0174381156, 0.0691731274, 0.0481431037, -0.00334749557, -0.00914632063, 0.0259544048, -0.0358900763, -0.00813247636, 0.0218121279, 0.00132704934, 0.00744451117, -0.0096894512, 0.0018176774, -0.000165202247, -0.000662619423, -0.0240715519, -0.0477665327, -0.0141213974, -0.0293869916, -0.0358321406, 0.0345575958, 0.0156131964, 0.0130785871, 0.0120937098, -0.00440660026, -0.0386419371, -0.0210589878, 0.0208417345, 0.0506052971, 0.0358031765, -0.000944142172, 0.0371646211, -0.0385260694, 0.00377294794, 0.0156711303, -0.022507336, -0.0443194658, -0.038294334, -0.016858777, 0.0179884881, 0.0357162729, 0.0269827321, 0.0338044539, -0.0372515246, 0.0313712284, 0.0010111283, 0.00669861166, 0.0132813556, 0.0317188315, 0.0108481301, -0.0168008432, -0.00341991289, 0.00427986961, -0.0276924241, -0.0148890223, -0.00930563919, -0.0276344884, -0.0118909413, -0.000255497725, -0.0251722969, -0.0211603716, 0.013889662, -0.0196106378, -0.00625686534, 0.00868284889, 0.0352528021, 0.04426153, 0.0358031765, -0.00589115731, 0.00495697279, 0.00790798292, 0.0332540832, -0.0227535553, -0.00128812494, -0.0246508922, -0.0215948764, 0.0404378884, 0.00577166863, -0.00234270375, -0.00659360643, 0.0126440823, 0.0481431037, -0.00803109258, 0.016525656, 0.0074300277, 0.0384681374, -0.0152366264, -0.00100026571, -0.0068615512, 0.032616809, 0.0193209685, -0.0239701681, -0.0202334281, 0.0131437629, 0.0111450413, 0.0500549227, -0.000421152596, 0.00885665137, -0.0350790024, 0.0290249046, 0.0211893376, -0.0298649464, -0.00719105033, -0.0187271461, 0.0138027612, 0.00702086929, 0.0313132927, -0.0132161798, -0.0189733654, 0.0170615446, -0.0400902852, -0.0204361975, -0.0561669543, -0.00013306702, 0.0484907068, -0.00660446938, 0.0166270416, -0.0144545184, 0.00631479966, 0.0178871043, -0.0156131964, -0.0215514265, -0.000456682377, -0.0190313, -0.00866112392, 0.0133682564, -0.0232025422, -0.0139258709, 0.0165980738, 0.00163572864, 0.041683469, 0.0155552626, -0.0367011502, 0.00978359394, 0.00329137198, 0.0139838047, -0.00235537672, -0.00132885971, 0.0262006242, 0.0215224586, -0.0264323596, -0.00426538615, -0.019118201, 0.0348183, 0.00539871911, -0.0343837924, 0.00459126476, 0.0105367349, -0.0317767672, -0.0280545112, -0.0195527039, 0.0368459858, -0.0125499396, -0.0062713488, -0.0152511094, -0.0223335344, -0.0230142567, -0.011659205, -0.0724753588, -0.011268151, 0.0538785644, -0.0165111721, -0.0289380029, 0.0221742149, -0.0201175604, -0.0177712366, -0.0378887951, -0.0381495, 0.0166125577, 0.0404378884, -0.00184573908, -0.0105512189, 0.0179595221, -0.0540813319, 0.02327496, -0.00334749557, -0.0302125495, 0.021392107, -0.00071466947, -0.0188574977, -0.00155787985, 0.0052900929, 0.0162794366, 0.0279241595, 0.0123109622, 0.0302704833, 0.0013044189, 0.038236402, 0.0356873088, 0.0257371534, 0.0141358813, -0.00882768445, 0.0420600399, -0.00221235235, -0.0253316145, 0.0182781573, 0.0117533477, 0.0195816718, -0.0425814465, -0.0174381156, -0.0182057414, -0.00749520352, 0.0154538788, 0.00939254, -0.00668050768, -0.013896904, 0.0245350227, 0.000537699379, 0.0407854952, -0.0105512189, -0.0230432246, -0.0388157405, 0.0122168195, 0.0113767777, 0.00636549154, 0.020247912, 0.0234053116, -0.00652118912, -0.0386419371, 0.036759086, -0.00709690759, -0.00271927426, 0.00221235235, 0.0082121361, 0.0211314037, -0.00671309512, 0.0115940301, 0.0357162729, -0.0150628248, -0.0127092581, -0.0295318253, 0.00584408641, 0.0314870961, 0.00378381042, 0.00064677815, -0.0109277898, 0.00536251, -0.0351948701, -0.0069375895, -0.00441384222, -0.0369618535, -0.0181767736, 0.0189878494, -0.0262440741, 0.0125861485, 0.0286048837, 0.0169167109, 0.0291118044, -0.0665660948, 0.0114419535, 0.0320954025, 0.0385260694, -0.00208924268, 0.0205955151, -0.00220873137, 0.0308787897, 0.016120119, 0.0190457832, -0.0300387479, 0.0504025295, 0.034963131, -0.0103412084, -0.0104570761, 0.0107105374, 0.0117678316, -0.0184374768, 0.0282572787, 0.00485196756, 0.000956815202, -0.0211458877, -0.0347603634, -0.0261426903, 0.00609754724, 0.0331092477, 0.00437401235, 0.0340651572, 0.000966772612, 0.0108119212, -0.000574813283, -0.0242888052, -0.020653449, -0.0127092581, -0.0357742086, 0.00472523691, -0.0190457832, 0.0122168195, -0.0528647192, 0.0218845457, -0.0197554734, 0.015758032, -0.00771969743, -0.000771698193, 0.021015536, 0.0115723042, 0.0264178775, -0.0133320475, 0.0124485558, 0.00165292772, 0.0179015882, -0.00264142547, 0.0407854952, 0.0374253243, -0.0198134072, 0.00913183764, -0.0103556914, 9.6745156e-05, 0.0488962457, 0.00603599241, 0.00676016649, -0.00299083954, 0.0286917835, 0.0511267036, -0.00578977307, 0.00461299, 2.60815887e-05, 0.0262006242, 0.0121806106, -0.00377656869, 0.0389605761, -0.0127309831, 0.0334568508, 0.0112898769, 0.0284600481, -0.0215948764, -0.0509818681, -0.0525171161, 0.00670585362, 0.00984152779, -0.0520826131, -0.0103629334, 0.0129047856, -0.0196975395, -0.0357452407, -0.020247912, -0.00244408799, -0.0327326767, 0.029618727, -0.0221452489, -0.0455071107, 0.0479982682, 0.0252302308, -0.0380626, -0.0216528103, 0.00509094493, 0.0133248065, 0.0039032991, 0.0173367318, -0.00206389651, -0.0136579266, 0.028155895, 0.0058947783, -0.0227535553, -0.0239991341, 0.0556455478, 0.0370487534, 0.0191906169, -0.017669851, 0.0064161839, -0.034963131, 0.00771969743, 0.0102977576, 0.00656101853, 0.00871181581, 0.0276779402, -0.0130930701, -0.0174670834, 0.0506632291, 0.0246364083, 0.00140761374, -0.010500527, -0.0149469562, 0.000264549919, 0.00447177608, -0.00866112392, 0.0136651676, 0.0233328938, -0.00506197801, 0.0362087116, -0.00349414069, 0.0100080883, -3.36345e-05, -0.00613737665, 0.000963151746, -0.0064487718, 0.00537699368, 0.0168008432, 0.031516064, 0.0464340523, -0.00917528756, -0.018379543, 0.0239556842, 0.00602150895, -0.0475058295, -0.0091535626, 0.0043160785, 0.0227825213, -0.0101529229, -0.0278082918, -0.00298721879, 0.000320899708, -0.00549286185, -0.0100225713, 0.0288655851, 0.00827007, -0.0242598373, 0.0155697465, 0.0174236316, 0.00571735576, -0.00771969743, -0.0380336307, -0.0103267245, 0.00602513, 0.00160042511, 0.00359552517, -0.0337175541, 0.0456229784, -0.0117533477, 0.011275393, -0.0197699573, -0.00305058411, -0.0108119212, -0.000565308495, -0.0151931755, -0.00405175472, 0.00565580092, -0.00807454251, -0.0308787897, 0.0350210667, -0.000730510801, 0.00995739549, 0.000334025361, -0.022869423, -0.0162070189, -0.0182057414, -0.0048374841, 0.0012872197, 0.000812885584, 0.0249115936, 0.00744451117, 0.0230432246, 0.0488962457, -0.0225652698, -0.00701724831, -0.0395399146, 4.24320845e-08, 0.0216672942, -0.0113043599, 0.0154249119, 0.0106019108, -0.0151352417, 0.0194223542, -0.0251722969, 0.00819765218, 0.0307918899, -0.00257262914, -0.0178002026, 0.00564493844, 0.0164677221, 0.0282717627, -0.00176789041, 0.004500743, -0.0113912607, -0.00409520557, 0.0229418408, 0.00651032664, 0.00178418425, -0.00983428676, 0.0249840114, -0.0237384327, -0.0264758114, -0.00128178846, 0.0129699605, 0.0269247983, -0.0141793322, 0.00976911094, 0.0110653825, 0.0613520406, 0.0290538706, 0.0366432182, 0.0800067708, -0.0333120152, 0.0122168195, 0.0188719817, 0.0290828384, 0.00308860326, -0.0196540896, -0.016887743, 0.00792246591, 0.0213486571, -0.00575356418, 0.00723450072, -0.0449567363, -0.0132596307, -0.0276924241, 0.00685068825, 0.00748796156, 0.00484110508, -0.0174670834, 0.0155842295, -0.0222466327, 0.00597805856, -0.0128323678, 0.00260340632, -0.0155407796, 0.03299338, 0.0275041386, -0.0433925204, -0.0590346865, 0.00463109417, 0.0231011584, -0.0232025422, -0.0099429125, -0.00369509915, -0.0141431233, 0.00970393512, 0.00643790886, -0.036440447, 0.0182926413, 0.0297780447, 0.0201610103, -0.00803833455, -0.0156421643, -0.0333989151, -0.0184809268, -0.00869009085, -0.0200596265, -0.0207258668, 0.00887113437, -0.000768982514, -0.00504387356, 0.00778487325, 0.00211458886, 0.00379829388, -0.0236660149, 0.0131944548, -0.0297780447, -0.0244626068, 0.00672395807, -0.0124920057, 0.008632157, 0.00187199039, -0.000372497132, -0.00681448, 0.00554355374, 0.00288402406, -0.015381461, 0.0270117, 0.0136362007, 0.0104136253, 0.029633211, 0.0223190505, 0.0434794202, 0.0128468508, 0.0152800763, -0.0121009517, -0.00789349899, -0.0271855015, -0.0219569635, 0.00984152779, 0.02327496, -0.0295897592, 0.00318817724, 0.0172932819, -0.00858146511, -0.022507336, 0.00954461657, -0.00373673905, 0.00683982577, 0.0196975395, -0.0127237411, 0.0100660222, 0.0234197956, 0.00523578, -0.0261571743, 0.00603599241, -0.00540234, 0.00561597152, -0.00202225661, 0.0329354443, 0.0207693167, 0.012014051, 0.013520333, 0.0226666536, -0.0188574977, -0.0404378884, 0.00747347809, 0.021768678, -0.000951383903, 0.0583105087, -0.00140399288, -0.0513294712, 0.0150628248, -0.0297780447, -0.00106815703, 0.0171774123, 0.00709328661, 0.0202044621, 0.0333120152, 0.00303610065, -0.0189733654, 0.0136651676, 0.0137448274, -0.0298070125, 0.0153090432, 0.0214790087, -0.00162577117, 0.0265047774, 0.0058875368, 0.0362376794, -0.0262151081, 0.0243032873, -0.0102470657, 0.0325878412, -0.0114564365, -0.0222321488, -0.0313132927, -0.00328594074, -0.00182763475, 0.00920425449, -0.0181188397, 0.00238977512, -0.0432766527, 0.029618727, 0.0284455642, -0.00201682537, 0.0154973287, -0.0213196892, 0.0142952, -0.00394312898, 0.0348183, -0.00969669316, 0.0168008432, -0.012354413, -0.0235501472, -0.0172787979, -0.0349052, 0.0417124368, 0.000775319058, -0.00947219878, -0.00717656687, 0.00226485496, -0.0037113931, 0.0264323596, -0.0257081855, -0.0201899782, 0.0155697465, 0.00586943235, 0.0193209685, -0.0361797437, 0.0278951917, 0.00360095641, -0.00497145625, -0.0156566463, 0.000100366022, -0.00288040307, -0.00500766514, -0.00922598, -0.026229592, 0.0391923115, -0.0114926454, -0.0124413138, 0.0312553607, -0.012354413, 0.00960979238, 0.0192195848, 0.0187995639, 0.0472161621, 0.0271855015, -0.0140996724, 0.00110436569, -0.0349341668, 0.0151062747, -0.00557614164, -0.00999360438, -0.00655739801, 0.0147514297, 0.0178726204, 0.00430159504, -0.00351224514, -0.0231590923, -0.00010189358, -0.0229997747, -0.0206824169, 0.00462023169, -0.00281160651, 0.0179450382, 0.000241919464, -0.0275186207, -0.078790158, 0.0245784745, 0.0160621852, -0.0276634563, -0.0221886989, -0.00545303198, 0.0245929584, 0.0290104207, 0.0137882773, 0.010507768, -0.0158594158, 0.0186981782, 0.0114854034, 0.00147369457, 0.0115288543, 0.00874078274, 0.00122657011, -0.0240860358, 0.0180464219, 0.0024223628, 0.012767192, 0.0029220432, -0.0138389701, -0.0110074487, -0.0388447084, -0.0434504561, -0.000636368117, -0.01874163, 0.0115143703, -0.00735036843, -0.011622997, -0.0140707055, -0.00711139105, 0.019509254, -0.047650665, -0.0452753752, -0.0173512157, -0.00804557558, -0.0116664469, 0.00296549359, 0.0118547324, 0.00104733696, -0.00118221447, 0.000940521306, -0.0128758177, -0.00613013515, -0.0185967945, 0.010884339, 0.00552544929, 0.049881123, -0.00989222061, 0.000677555508, -0.00829903688, -0.0197265074, 0.0287786853, 0.00791522488, 0.0198423751, -0.00195346, 0.00194259745, 0.0211603716, 0.00366613222, 0.00363354431, 0.0233184099, -0.0100225713, 0.00644515082, 0.00236080796, -0.00166016945, -0.036063876, -0.0273593031, 0.0126585662, -0.0126802912, 0.00688689714, -0.00819041114, -0.000791612954, -0.0297490787, 0.00180953043, -0.00372225558, 0.0314291641, 0.0104643181, 0.00981980283, -0.0134768831, 0.013129279, -0.0154538788, 0.0227101035, -0.0299518462, 0.0310815591, -0.0301546156, -0.0355714373, -0.00181405654, 0.00414589746, -0.00295463088, -0.0219859295, 0.0034162919, 0.00910287071, -0.0141720902, 0.0386419371, -0.00989222061, 0.00441384222, 0.0108191632, 0.00221235235, 0.0083786957, -0.0205665492, 0.00586581137, -0.0409882627, -0.0247377921, -0.0130061693, -0.0170905124, 0.0334568508, -0.0237673987, 0.0128468508, 0.0357162729, 0.00711863302, 0.00182672951, 0.0335437506, 0.00512353284, 0.0169601608, -0.0059853, 0.0194223542, -0.0114709204, 0.00552182877, -0.000259797525, 0.00435952889, -0.00609392626, -0.030733956, -0.0437690914, -0.0253605824, -0.0069774189, 0.0186692122, 0.00328231975, 0.0186692122, -0.0445512, 0.0229273569, 0.0177133027, -0.0444642976, -0.0247233082, -0.0265482273, -0.000292837969, -0.00379829388, -0.0305022188, 0.0112102171, -0.0288221352, 0.000424999773, 0.0205955151, -0.012397863, 0.0172498301, -0.00959530845, -0.0180609059, -0.0114347115, 0.0156421643, -0.0305891205, 0.00993567053, 0.00103013788, -0.000573455472, 0.0183505751, 0.0341230892, -0.0380626, -0.00958082546, 0.0130134113, -0.00403002976, -0.0258530211, -0.0189878494, -0.0430449173, -0.00607582182, -0.0193933863, 0.00879147556, 0.0190602671, -0.000428168016, 0.0149759231, -0.019147167, 0.00439935876, -0.0250419453, -0.0118185235, 0.0067855129, 0.0221742149, -0.00505473604, -0.0161925368, -0.00485558854, 0.0265337452, 0.00532992231, -0.0134261902, 0.00414227648, -0.013151004, -0.00366975297, 0.00303791091, -0.00355388504, -0.016149085, 0.0102036148, -0.00941426493, -0.0181333236, -0.00623876136, 0.00206932798, 0.0318057314, -0.010906064, -0.0309077576, -0.00735036843, 0.00953013357, 0.00674568303, -0.00359009393, 0.00636911253, -0.0142082991, 0.0155842295, -0.00130713452, -0.0241584536, 0.000961341313, -0.0335727185, 0.00177241652, 0.000236714463, 0.0138317281, -0.0260702725, -0.0307049882, 0.00719829183, 0.0198134072, 0.00463833613, 0.016149085, -0.00291299098, -0.0134044653, 0.00335292681, -0.0179595221, 0.033369951, -0.0239267163, 0.00546389492, -0.014650045, -0.0064234254, -0.00234089326, -0.0192051, -0.00315921, -0.0269537661, 0.00452608895, 0.0550082773, -0.0128975436, -0.00225399225, 0.0276200064, -0.0115723042, -0.0073214015, 0.0362087116, 0.00268125511, -0.00841490459, 0.0148238465, -0.00173620775, 0.00850904733, -0.0233473778, 0.00218157494, 0.008617674, 0.0299518462, 0.00494248932, 0.0468395911, -0.0262151081, -0.0126078734, -0.0301835835, -0.0141213974, -0.00709328661, 0.00708966609, -0.00597081659, 0.00887837633, -0.0020783802, 0.0462892167, -0.0322692059, 0.032240238, 0.0399164855, -0.0271855015, -0.00755313737, -0.0222756, 0.0246943422, 0.0472740941, -0.0226376876, -0.0108191632, 0.0226376876, -0.00205846527, -0.00352310762, 0.0224494021, 0.00371863483, 0.00516336225, 0.00700638583, -0.00766900508, 0.0110871075, -0.00656463951, -0.00856698118, 0.0264468435, 0.00151714508, 0.0077269394, 0.0117533477, 0.0343548246, -0.00321895443, -0.0124268299, 0.0204651635, 0.00616634358, 0.00733588496, -0.00466368208, 0.0169311948, -0.018770596, 0.0110002067, -0.0210879538, -0.0287062675, -0.000830084726, -0.0181333236, 0.0205086153, -0.0369328856, 0.0272868853, -0.024419155, -0.0229418408, 0.0409013629, 0.0134117072, -0.00500042317, 0.00146283198, 0.0100587802, -0.000931469142, -0.0220293812, 0.00698828138, -0.0517060421, 0.006188069, -0.00838593766, -0.020247912, -0.0246653743, -0.0499100909, -0.0148890223, 0.0174526, 0.0193933863, 0.000320447114, 0.00589839928, 0.00441384222, 0.00265047769, 0.0119126663, -0.00773418089, -0.0285759158, 0.00378381042, 0.033051312, -0.0237384327, -0.0070606987, 0.0217831619, -0.00579701504, -0.0114419535, 0.0107395044, -0.0205665492, 0.00508732395, -0.00655377703, 0.00329680322, 0.0199003089, 0.0016981886, 0.0162939206, 0.00751692848, -0.00812523533, 0.00663705682, 0.0239412, -0.008248345, -0.0106091527, 0.000783013413, 0.0123037202, -0.0117750736, 0.021001054, -0.0011351431, -0.0153959449, 0.00924046338, 0.00232278882, -0.00251650554, -0.00831352081, 0.00296187261, -0.0104136253, -0.00186474866, 0.0235646293, 0.0221742149, 0.00368423644, 0.00644515082, 0.0621051826, 0.0248971116, 0.0294449255, -0.028112445, 0.0152655933, -0.011246426, 0.0215948764, -0.0127961589, -0.0203782637, 0.0148745393, 0.00978359394, -0.00341448165, 0.0034162919, -0.0274896547, 0.00518146669, -0.00691948505, -0.0121806106, 0.012397863, -0.00442108372, -0.0133827403, 0.0137665523, -0.00966048427, 0.0103846584, -0.0165691059, 0.0250274613, -0.00723087974, 0.0179450382, -0.025896471, 0.0153524941, -0.00474334136, 0.011253668, 0.0189154316, 0.0298070125, 0.0250853952, -0.0330223441, 0.00145015889, -0.0151062747, 0.0612361729, -0.0285614319, 0.0193644203, -0.00257625, 0.00550010335, 0.0228549391, 0.0210445039, 6.33086674e-05, -0.00628945325, 0.00238615414, 0.00656463951, 0.00626772828, -0.015033857, 0.0130568622, -0.00479041273, 0.00911735371, -0.00897251908, -0.00473609939, 0.0033004242, -0.000852715166, 0.027750358, -0.00479403371, -0.00131799711, -0.00603961339, 0.0268378984, -0.0200596265, -0.000228793797, -0.0203782637, -0.00520319212, 0.0115578212, -0.0111740083, 0.0194658041, 0.0076907305, 0.0110653825, -6.22903e-05, 0.0124123469, 0.000878061284, -0.00516336225, 0.00478317076, 0.0089001013, 0.00490628043, 0.00807454251, 0.00360457739, -0.020262396, 0.0262006242, 0.0272289515, -0.00950840767, -0.00188104261, -0.000303700566, 0.021363141, -0.0258530211, 0.0133899823, -0.0109929647, -0.0247088261, 0.0139548378, -0.00777763128, 0.0144690014, -0.00405899668, -0.0102398237, 0.00284419442, 0.0105657019, -0.00668774918, 0.0167429093, -0.0022702862, 0.0103991423, -0.0129120266, 0.00727433, -0.0126947742, -0.0184664428, 0.0355424732, -0.00410606805, 0.00839318, 0.00420745229, 0.0107901962, 0.026635129, -0.00460574823, -0.0167139415, -0.0155407796, -0.00946495775, -0.00125734753, -0.0136434427, -0.00613375567, -0.00127545185, -0.0089001013, -0.0048374841, 0.00255633518, -0.00299083954, 0.0305022188, 0.00853801426, -0.0114274696, 0.00958806742, -0.000159770949, -0.000744541641, -0.0167429093, -0.00433418294, 0.0396557823, -0.0441746302, -0.00683982577, 0.0113550518, -0.00923322141, 0.00966048427, 0.0133537734, 0.0134479161, 0.00386709045, -0.0192195848, -0.0174526, 0.00499680219, -0.00311213895, 0.01388242, -0.00244227774, 0.00701362779, 0.0387578048, -0.0286048837, 0.00694121, -0.0228259731, -0.0136506846, -0.00568476785, 0.00725622615, -0.0113550518, 0.0364694148, 0.00947944075, -0.000349187758, 0.0104643181, 0.0237384327, 0.000733226421, -0.0170470625, -0.021015536, 0.0182057414, 0.0354555696, 0.00174797559, -0.00720191281, -0.00802385062, 0.00154882763, 0.034094125, 0.00615910208, -0.00415676041, -0.00150537724, 0.0220293812, 0.0185823105, 0.0171774123, -0.00717294589, 0.0227970053, 0.00259616459, 0.00489179697, -0.0156276803, -0.0174091496, -0.0053661312, -0.0124051049, 0.0218555797, 0.0152945602, 0.0158014819, 0.0126658073, 0.029633211, 0.00345974253, 0.00788625795, -0.00218881667, -0.00895803515, -0.0123471711, 0.0094215069, -0.0135927508, -0.0271130838, -0.01500489, 0.0229563229, 0.014990407, 0.0102325818, -0.0234632455, -0.0277358741, -0.0125716645, -0.0470133908, 0.00477230828, -0.0145703861, -0.0191326831, -0.0111378, 0.00579701504, -0.0220293812, -0.00516698323, 0.00497869775, 0.00306868833, -0.0259399209, 0.0411331, 0.0154249119, -0.00794419181, 0.00629669521, -0.0150483409, 0.00764728, -0.0222321488, 0.0082266191, -0.0137737943, -0.0101167141, 0.0239267163, -0.00690138061, 0.0102325818, 0.0201754943, 0.00953013357, -0.0140127717, -0.0294014737, 0.0223190505, 0.0135275749, 0.0317767672, 0.0224204343, -0.0199003089, 0.0128613347, 0.00833524577, 0.0341810249, -0.00288221356, 0.0134117072, 0.0218555797, 0.0223190505, -0.00318636675, -0.0218121279, 0.0543130673, 0.0130785871, 0.00313929538, -0.00853077229, -0.0137375854, 0.00633652462, 0.000169502033, 0.00969669316, 0.00754589587, -0.00515612075, 0.0484907068, -0.0147586716, 0.0158594158, -0.0222611167, 0.0190602671, 0.0223335344, -0.0231735762, -0.0120357759, 0.00028446471, 0.006188069, -6.00838321e-05, 0.012397863, 0.00093961606, 0.0256647356, 0.0167429093, -0.00891458523, 0.0177712366, -0.0411620662, 0.0284455642, 0.0144834854, -0.000730058178, -0.00328050926, -0.0278807078, -0.0050981869, -0.011268151, -0.0101746479, 0.0199582428, 0.00511267036, -0.00377656869, 0.00320447097, 0.0291552544, 0.00035235603, 0.0216238424, -0.0265482273, 0.043102853, -0.0150773078, -0.0101818899, 0.0199582428, -0.0191326831, 0.000458945433, -0.0342679247, 0.0087480247, -0.00904493593, -0.0195382219, -0.0281993449, 0.0205665492, 0.029633211, -0.00434866641, -0.0293290578, -0.0231446084, 0.00214898703, -0.00624962384, 0.0139041459, 0.00488817599, 0.00687241368, 0.00204217131, -0.00107811438, -0.0373963565, 0.0183360912, 0.0037331183, -0.00565942191, 0.0172787979, 0.0083642127, 0.0152800763, 0.00207294873, 0.00194078695, 0.00537699368, 0.00206208625, 0.00068208162, -0.0192195848, -0.000957720447, 0.00129265105, 0.0240281019, 0.0147659127, -0.00788625795, -0.00804557558, -0.0163953044, 0.01051501, -0.00910287071, 0.011246426, -0.0148310885, -0.0199582428, 0.0111450413, -0.043160785, 0.010906064, 0.0113550518, 0.0139475958, -0.0306180865, -0.0185243767, -0.00594184967, -0.00221778359, -0.0305022188, 0.00524302153, 0.00821937807, -0.00125553715, -0.000404632359, -0.00091698562, -0.0129047856, 0.00133700669, 0.00718742935, 0.0333989151, 0.00410244707, 0.011246426, 0.00880595855, 0.0114347115, -0.00315921, -0.00340724, 0.0150483409, 0.0253026485, 0.00384536525, 0.00633290363, 0.0327326767, -0.0145052103, -0.00011847038, 0.00835697073, 0.021015536, 0.00127454672, -0.0016221503, 0.0399454534, -0.000586581125, 0.00739744, 0.0167718753, 0.00903769489, 0.0199727267, 0.019523738, -0.0431897528, 0.0092549473, 0.0154538788, 0.0134623991, -0.00756762084, 0.0249550454, 0.0260557886, -0.000905217836, 0.0173946656, -0.00174435473, -0.00577166863, 0.00157598418, -0.0133248065, -0.0100298133, 0.0142082991, 0.0333120152, 0.00243141502, -0.00121842313, 0.00656826049, 0.00612289319, 0.0155842295, 0.0264902934, -0.00813247636, 0.0087697506, -0.00908838678, -0.00654653506, 0.029647693, -0.00308136153, 0.018379543, -0.0139041459, 0.00410606805, -0.0143676167, 0.0116085131, -0.000904765213, 0.0272289515, -0.0171194784, -0.0329354443, 0.000302569068, -0.000531815458, 0.00974738505, 0.0114854034, 0.00106815703, 0.0192340687, 0.00295463088, -0.00751692848, -0.0183505751, -0.0240281019, 0.0119126663, -0.0302704833, 0.0255199, -0.00863939896, 0.000504658907, -0.0185823105, -0.0008490943, 0.018365059, -0.0143965837, 0.00362630258, 0.0190023314, 0.0200161766, -0.00790798292, 0.00664792, -0.0137520693, -0.00418572733, 0.00945771579, -0.00661895284, 0.0131075541, 0.00814696, -0.00285686739, 0.00115958403, 0.00958806742, 0.0136724096, 0.0221452489, 0.0354845375, 0.0127092581, -0.00304515264, 0.0118692163, 0.0030397214, 0.00232097856, -0.0118619744, -0.00563045498, -0.0153380102, 0.0143096829, -0.0217397101, -0.00275186216, 0.00029713774, -0.00598167907, 0.00427624909, 0.010305, 0.00765452161, -0.0207982846, 0.00281884824, 0.00654291455, 0.0052900929, -0.0143603757, -0.00666602375, -0.0264033936, -0.0101167141, 0.00623151939, 0.00170814595, 0.00773418089, -0.00788625795, -0.0159463175, -0.00758934626, 0.00208743219, 0.00709328661, -0.0134768831, -0.0120719848, 0.0105367349, -0.00124920055, -0.0139765628, 0.00340724, 0.0016981886, -0.0124702808, 0.00320266071, -0.016149085, 0.0172063801, -0.010906064, -0.00374398078, -0.00709690759, -0.00119669794, 0.000207068573, 0.00484834658, -0.0149324732, -0.0108191632, -0.00119941356, -0.0104715601, 0.0128323678, 0.00407348, 0.00496059377, 0.0216817763, -0.0191037171, 0.0188140478, -0.00105186307, -0.0089001013, 0.0102180988, -0.0212617554, 0.00907390378, -0.00383088179, -0.0221742149, 0.00816868525, -0.00142119196, -0.0284021143, 0.00590926176, -0.0256357677, -0.0305022188, 0.0198568571, 0.00281884824, -0.0321243703, 0.0126223573, -0.00567028439, -0.0108119212, 0.0123109622, 0.00117225712, 0.000493796309, 0.00509456592, -0.0116664469, 0.00493524736, 0.0105657019, 0.00162396079, 0.0100153303, 0.00185931742, 0.0424945466, -0.00622427789, 0.00711501203, -0.000439709547, -0.00378381042, -0.000497869798, 0.00237167068, 0.00265953, -0.0245784745, 0.0224638861, 0.0206679329, -0.000356429518, 0.010131198, 0.00754589587, 0.00563769648, -0.00155969034, 0.0262006242, -0.00289126579, -0.0150483409, 0.0179160703, -0.00477230828, 0.00891458523, 0.00520681264, -0.014606595, 0.00648498, -0.0188864637, -0.000238977504, 0.00847283844, 0.00338913547, -0.000896618236, -0.0103267245, -0.0152945602, 0.0045079845, 0.0154249119, 0.0136651676, -0.00996463746, 0.00467454456, 0.00636549154, 0.0196830556, -0.0155407796, 0.0196251217, -0.0199437588, -0.0225652698, 0.00405899668, 0.0139403539, 0.0198423751, 0.00358285219, -0.00775590632, 0.0087335417, 0.0189588815, 0.004500743, 0.00960979238, -0.00788625795, -0.015758032, -0.0060722013, -0.00258892286, -0.00163844426, 0.00646687625, -0.0034162919, 0.00693396851, 0.0103412084, 0.0188574977, 0.0013849833, 0.00442108372, -0.0342099927, -0.0185967945, 0.0163518544, -0.0247667599, 0.0230866745, 0.00311394921, 0.0131220371, 0.0290104207, -0.0118692163, 0.0122095775, -9.4906427e-06, 0.00848008, -0.00706794066, -8.82587337e-05, 0.000853620411, 0.0160766691, -0.0177567527, -0.00646325527, -0.00839318, 0.0182491913, -0.00983428676, -0.00202768785, -0.0130568622, -0.00250021159, 0.00444642967, 0.00594909163, -0.00620617345, 0.00200234191, 0.0198568571, 0.00808178447, -0.00250564283, 0.00435590791, 0.0144545184, 0.00209829491, 0.00637273351, -0.00395761244, -0.0102760326, -0.00122657011, -0.00391416159, 0.0267654806, 0.00487731351, -0.00370415137, -0.00436315, -0.0146717699, 0.0143531337, -0.0213052072, -0.0111884922, 6.58546e-05, -0.0118764574, -0.00311213895, 0.0136724096, 0.00561959203, -0.0049461103, 0.00794419181, -0.0197409894, 0.0195671879, 0.00974738505, -0.00992842857, -0.00372225558, -0.000477502384, -0.0223335344, 0.0124340719, -0.0133827403, 0.0259254389, -0.00738657732, -0.00834248774, -0.0322112702, 0.00610840973, 0.0229852907, -0.0281848609, 0.0107032955, -0.00694121, -0.0102615487, 0.00742278621, -0.0036444068, -0.00572459726, -0.0192051, -0.00605409686, -0.0137665523, -0.0133030806, -0.0104788011, 0.00326783629, 0.00595995411, 0.0226087198, -0.0102470657, -0.00879871752, -8.52884932e-06, 0.00812523533, -0.00882044248, -0.00341991289, -0.0117895566, -0.0247233082, 0.00431245752, -0.00544941099, -0.000580244639, 0.0010328535, 0.00957358349, -0.0217107441, 0.0144690014, 0.0277213901, -0.0079804, -0.000116320487, -0.014266233, -0.00561959203, -0.00192992436, 0.00132795458, 0.00458040228, 0.000626410707, -0.0460574813, 0.00434504542, 0.00609754724, -0.0198134072, 0.00320990244, 0.00710414955, 0.008632157, 0.0129989274, -0.0119271502, -0.00101022306, 0.0114781614, -0.0160911512, -0.0113260848, 0.0362087116, 0.00990670361, -0.0158594158, -0.015366978, -0.0237529147, 0.0122313034, -0.00750968698, 0.0119488752, 0.00988497864, 0.0010219909, -0.0132089388, -0.00486645103, -0.00646687625, -0.0193933863, -0.00824110303, 0.00792246591, -0.00458040228, -0.000971298723, 0.00189552607, -0.0116954139, -0.0104715601, -0.00761107123, -0.000761740783, -0.000787539524, -0.0119488752, -0.0134189492, -0.00961703435, 0.0229852907, -0.0032117127, 0.0220148973, 0.0144472765, -0.0208851863, 0.0175395012, -0.0224204343, -0.0196251217, 0.00489179697, -0.0189154316, 0.00103737961, -0.0120647429, 0.00924770534, -8.52884932e-06, -0.0100298133, 0.0250274613, -0.00623876136, -0.0333989151, -0.00270479079, 0.00939978193, 0.00670585362, 0.0100587802, -0.0114636784, 0.0208272506, 0.0153235272, -0.00658274395, -0.00832076184, 0.00860319, 0.00599254202, -0.00123381184, -0.00108264049, -0.00792246591, 0.000300758606, 0.00554355374, -0.0167429093, 0.00665516127, 0.0186692122, 0.0101529229, -0.0215948764, 0.00148003118, 0.00869009085, 0.0169891287, -0.0144110676, -0.0314291641, -0.00998636335, -0.00202225661, -0.00291118049, -0.00817592721, -0.0174526, -0.000390375179, 0.00488455547, -0.0126802912, 0.0213052072, 0.0287786853, 0.0174091496, 0.0107250204, 0.00729243457, 0.018365059, -0.00449350104, 0.0103846584, -0.00410968903, 0.0134623991, -0.0111450413, -0.00299446052, -0.0402351208, -0.0113043599, -0.00810350943, 0.0100298133, -0.0256212857, -0.0376860276, -0.0264323596, 0.010877097, -0.0205955151, 0.000865840819, 0.00612651417, -0.00141304499, 0.0106888115, 0.00565580092, 0.0189588815, -0.00737571483, -0.0101022311, 0.0102687906, 0.00290755951, -0.0139548378, 0.0132089388, 0.00519232918, -0.00099211873, 7.13424815e-05, 0.00409158459, 0.0162794366, 0.0174091496, 0.00597805856, 0.0162504707, 0.00736847287, -0.00356293726, -0.0150483409, -0.0173222478, 0.00522491708, -0.0453043394, 0.00432332046, 0.00921149645, 0.0214500409, 0.0197844412, -0.0266061611, -0.00494248932, 0.00631842, 0.0116519639, 0.000328141468, -0.00381277734, -0.00690138061, -0.0126440823, -0.0107467454, 0.00902321097, 0.00785004906, -0.00775590632, 0.015758032, -0.00372225558, 0.019885825, -0.000537246757, 0.0126658073, 0.00408796361, 0.00771969743, -0.00849456433, 0.0144400345, 0.000582055072, 0.0105801858, 0.00891458523, 0.0133103225, -0.0102325818, -0.00519595, -0.0216817763, -0.0114274696, 0.00681810034, 0.0155987134, -0.0159318335, 0.0027591039, 0.0170036107, 0.0126802912, 0.0152511094, 0.008248345, 0.00766176358, -0.0113622937, 0.00549648236, -0.0148310885, 0.00829903688, -0.0271999855, 0.00346155302, 0.00896527711, 0.01500489, 0.00130803976, -0.0148890223, 0.0191616509, 0.00270479079, -0.0017461651, 0.00487369252, -0.0102398237, -0.0208562184, -0.0051525, -0.00867560785, 0.0145848691, -0.0021417453, 0.0152800763, -0.00687965518, -0.0103339665, 0.0125571815, 0.00512715383, 0.00184030784, 0.0312553607, -0.000339230377, -0.0151207587, -0.00198242697, 0.016902227, 0.00427262811, -0.00913907867, -0.0057427017, -0.00315739983, 0.0306760203, 0.0266496129, -0.00061554811, 0.00966772623, -0.00481937965, -0.0233328938, 0.000259344903, 0.0323271379, -0.0130568622, -0.00289307605, 0.017235348, -0.0249115936, -0.00699552335, -0.0189443976, -0.00840766262, -0.00498593971, -0.0067094746, -0.00526112597, -0.00316464156, -0.0158304498, -0.0220873151, -0.00866112392, -0.0127961589, 0.00215622876, -0.00402278779, 0.0092549473, -0.00638359599, -0.0170470625, 0.0287497174, -0.00267763436, 0.0184374768, 0.00695931446, 0.0307918899, 0.00183306611, -0.0173512157, -0.00745175313, -0.0157290641, -0.00701724831, 0.00662257336, -0.00415676041, 0.02327496, 0.0306180865, -0.0100515382, 0.0181188397, -0.0025327995, -0.0163084045, -0.0177133027, -0.0236225631, 0.0087335417, -0.00271927426, 0.0232025422, -0.0288511012, 0.00458040228, 0.0211893376, 0.00349414069, -0.0300097801, -0.00625686534, 0.0142445071, -0.0159173496, -0.0206969, -0.000666240288, 0.0211458877, -0.00814696, 0.00265047769, -0.0134479161, 0.0080962684, -0.00532992231, 0.0137665523, 0.019914791, -0.0189443976, 0.013875179, 0.00115686841, -0.0153235272, -0.0214210749, -0.00376570621, -0.0102470657, 0.0166270416, -0.0259109549, -0.0236949809, -0.00219243765, 0.00421831477, 0.00779935671, 0.00307955104, -0.00296911434, -0.0069375895, -0.00804557558, 0.0238398165, -0.0107105374, -0.000710596, -0.0137520693, -0.00833524577, 0.0298359785, -0.00110708142, 0.00452246796, 0.00870457478, -0.0204796474, 0.0187271461, -0.00245495071, -0.0466078557, 0.00387795316, 0.029662177, -0.0149324732, 0.0189733654, 0.0140996724, -0.0114926454, 0.0174670834, -0.0205520652, -0.00421107328, -0.0154683618, 0.000549467222, -0.00921149645, 0.0102108568, -0.0122747533, -0.0030940345, -0.0111305583, 0.0094070239, 0.00389243662, 0.0109784817, 0.00850180537, -0.00371863483, 0.022869423, -2.37478234e-05, -0.030762922, 0.0308787897, -6.35349716e-05, 0.000860862143, -0.0131075541, 0.00648135971, 0.00696655642, -0.0114419535, -0.0130496202, -0.015033857, -0.0096532423, 0.0174815655, -0.0242598373, -0.0263454597, 0.00341448165, -0.0256647356, -0.0147297038, -0.0193064846, 0.0167284254, 0.0117098978, 0.0133610154, 0.00936357304, -0.00475420384, -0.00133610144, 0.00937805697, -0.0113405688, -0.0460285135, -0.00575718516, -0.0222176667, -0.0161635689, -0.0121661276, 0.010145681, 0.0127020162, -0.00145921111, 0.00132071273, 0.00969669316, -0.0171918962, -0.0126513243, 0.0171918962, 0.00971117709, -0.00445367163, -0.00337827299, -0.0129844444, 0.0267220307, 0.00551096583, 0.000884397828, 0.0048374841, -0.00988497864, 0.0341230892, 0.0140562225, -0.00501852762, 0.0160911512, 0.00359552517, -0.00297273532, -0.009001486, 0.0162215028, 0.0087480247, -0.00611927221, -0.00823386107, -0.00728881359, -0.0136506846, 0.0016393495, 0.0100225713, -0.0266061611, -0.00245314022, -0.00947219878, -0.00017549911, 0.0130496202, 0.00125282141, -0.0103629334, 0.00226847595, 0.00272289524, 0.00841490459, 0.0139475958, -0.00844387151, 0.00450436398, -0.0154828457, -0.0082121361, 0.0054747574, 0.033369951, -0.00432694098, -0.00933460612, 0.0186692122, 0.018770596, -0.00309584499, 0.00882768445, 0.0140055297, -0.00468902849, 0.00618444802, -0.0193933863, -0.0197409894, 0.00580063555, 0.00536975218, -0.00476506678, 0.0127382251, 0.00415676041, -0.00272651599, -0.0191326831, 0.00047976544, -0.0103484504, -0.0243032873, -0.00939254, 0.000746352074, -0.00514525827, 0.0140562225, 0.0333120152, -0.000731868611, 0.00744451117, 0.0134334322, -0.0132379057, -0.00367880519, -0.0064161839, -0.00250745332, -0.0355714373, -0.00703897374, -0.00380915659, 0.0128251258, 0.00193716609, -0.0027916918, -0.0173222478, 0.00848008, 0.0067855129, 0.0357452407, 0.0087263, -0.00273556821, -0.00352310762, 5.38321729e-05, 0.016902227, -0.0156131964, 0.0162215028, 0.014266233, -0.0062713488, -0.0167718753, -0.0137882773, -0.0163953044, 0.00401916727, 0.00568476785, 0.000448082807, -0.0283007305, 0.0159463175, 0.01163748, 0.00785729103, 0.00573183922, 0.00789349899, 0.00592012471, -0.0300097801, 0.00450436398, -0.0154828457, 0.0346444957, -0.015381461, -0.000842305191, -5.34644278e-05, -8.37892221e-05, 0.0171484463, -0.00487731351, 0.00108626136, 0.00803109258, -0.000340135593, -0.0102687906, -0.00515612075, -0.0221162811, 0.0126875332, 0.000171086169, 0.00142390758, 0.00447901757, 0.00518146669, 0.00590564078, 0.0166270416, -0.001217518, 0.0216238424, -0.00263056299, -0.00328956149, -0.0156421643, -0.0119633581, 0.00291299098, -0.0204941314, -0.0124051049, 0.0198134072, 0.00274643092, 0.00992118753, 0.00745899463, -0.0187561139, 0.0122675113, -0.00012378853, 0.00522853807, 0.00621703593, 0.0178581364, -0.00279531255, 0.0267365128, -0.00855973922, -0.020653449, 0.0160911512, -0.00586581137, 0.00519595, -0.000499227608, -0.0105874278, 0.00216709147, 0.00290937, -0.0121878525, 0.0396268144, -0.0204361975, -0.00403002976, 0.000563045498, 0.00748796156, -0.012014051, 0.0267509967, -0.00359552517, 0.0132668726, 0.0133537734, 0.00547113642, -0.00496421428, -0.0129699605, -0.00802385062, 0.00253461, -0.00355026429, 0.0280979611, 0.00498593971, 0.020291362, 0.000269076, -0.0124847637, -0.0103484504, -0.0506052971, -0.00336197903, 0.0132885976, 0.0160042513, -0.0114274696, 0.0120719848, 0.00829903688, -0.022912873, 0.0381205343, -0.00257262914, -0.0102253407, 0.019914791, -0.000945952605, 0.000798402121, -0.0232315101, 0.00112156488, -0.00342534413, -0.00499680219, 0.0088856183, -0.0119271502, 0.00715484144, -0.0120502599, -0.00957358349, -0.00290937, -0.000955004769, -0.00444642967, 0.0290393867, 0.00264504645, 0.0248681437, 0.0196251217, -0.0170615446, -0.0119126663, 0.00654653506, -0.00380915659, 0.018394025, 0.00635100808, -0.000482028496, -0.0305311866, -0.0087697506, -0.0142227821, -0.0163808223, -0.00204760279, -0.0126223573, -0.0173801817, 0.00617720652, -0.0100805052, 0.00220692111, 0.0290104207, 0.00260159606, 0.00366613222, 0.00120575016, -0.0139331128, -0.0300677139, -0.0160911512, -0.017640885, 0.00248210714, -0.0170180947, 0.00105819968, 0.00330404495, -0.00588029483, -0.038236402, -0.000273149461, -0.000536341569, -0.00250564283, 0.0213776231, 0.000643609848, -0.02925664, 0.021363141, 0.0204217136, 0.0240425859, -0.0122602703, -0.0231156424, 0.0124630388, 0.0274606869, -0.0191037171, -0.0087480247, 0.00431245752, -0.00630031619, 0.0104788011, 0.0166125577, 0.0143024419, 0.00677827094, -0.00732864346, 0.00514525827, 0.000293516874, -0.00237891241, -0.0100008463, 0.00771245593, 0.00950840767, 0.00840766262, 0.00178237387, 0.00557252066, -0.00116773101, 0.0289090369, 0.0166125577, 0.00538423564, -0.00625686534, -0.023245994, 0.00372225558, -0.0100877471, 0.00761107123, 0.00979807787, 0.00646325527, 0.0114347115, 0.0325588733, -0.0195382219, 0.0161346029, 0.0054819989, -0.00175431208, 0.00274281, 0.0254619662, 0.000122204408, -0.0140200136, 0.0131944548, 0.00688689714, 0.00299627101, 0.00257443939, 0.00565218, -0.0271710176, 0.0184954107, -0.0193789024, -0.0169167109, -0.00677102944, -0.0177567527, 0.0143603757, -0.0061482396, -0.0314870961, -0.01275995, -0.00702811126, 0.006188069, -0.00454419339, 0.00210734713, 0.0118547324, -0.0170470625, -0.022869423, 0.000712859037, -0.00174254423, 0.0162215028, -0.0136289597, 0.0165691059, 0.00549286185, 0.00183849735, 0.0184229929, -0.0175684672, -0.0324719734, -0.0185533445, -0.00597081659, 0.00405175472, 0.0179740041, -0.0291262884, 0.0177422687, -0.0140055297, 0.0178871043, -0.0015741738, -0.019147167, 0.00532268081, 0.00567390537, 0.0214355569, -0.00541320257, -0.0133972233, -0.00089163956, -0.00547837839, -0.00318455626, -0.028880069, 0.000317505153, 0.00135601626, -0.0249550454, 0.00662619434, -0.00256900815, -0.00658998545, 0.00575356418, 0.0260413066, -0.0122313034, 0.00335111632, 0.000723269, -0.0118692163, 0.00997912139, -0.0349341668, 0.0022702862, 0.0113985026, 0.00556165818, 0.00135511102, -0.00612289319, -0.00848008, -0.0149759231, -0.0289959367, -0.00803833455, 0.0164387561, 0.00528647192, 0.0146717699, 0.00351586589, 0.00605047587, -0.00149360939, -0.00827731192, -0.0221017972, 0.00371501385, -0.0126947742, -0.00503301108, -0.000182740841, -0.0173512157, 0.0238253325, 0.00181224605, -0.00693396851, 0.0205955151, 0.00871905778, -0.00673119957, -0.00473609939, -0.0029437684, -0.00684706774, -0.0144545184, -0.0037874314, 0.0172787979, -0.00168642076, -0.00441384222, -0.0107395044, 0.0150917917, -0.000622337218, 0.0170325786, -0.00254004123, 0.000286048831, 0.0111667672, 0.00701724831, 0.00099211873, 0.00753141241, 0.00447177608, -0.00955185853, 0.00384536525, 0.0220004134, 0.0172208641, -0.00648498, 0.0101094721, -0.0212617554, 0.00875526667, 0.00456229784, -0.00885665137, 0.0160911512, 0.00770521397, -0.000158978874, 0.018379543, -0.00202225661, 0.0351659022, 0.00823386107, 0.00352853909, 0.00127273623, -0.0338623896, 0.00413865596, -0.0177857187, -0.00871905778, -0.014990407, 0.0161925368, 0.0251433291, -0.00523940055, 0.00418572733, 0.00662619434, 0.01462832, -0.00792246591, -0.00710414955, 0.0215803925, -0.0304153189, 0.0091680456, 0.0149035063, -0.00848008, 0.0087697506, -0.00174707035, -0.00651032664, -0.00352310762, 0.0103412084, -0.0147152208, 0.00807454251, 0.00183759211, 0.00828455295, -0.0101818899, -0.0164242722, -0.0184954107, 0.00912459567, -0.00808902644, -0.0249405615, 0.00408072211, -0.015033857, 0.00934184808, 0.00854525622, -0.0316029638, -0.00159861462, -0.00662981533, 0.00694121, -0.00855249818, -0.00484834658, -0.00578615209, -0.0115940301, 0.0128323678, -0.00162033993, -0.0145631442, 0.00327145727, 0.0276055224, -0.022883907, -0.00687241368, 0.0218410958, -0.0165691059, -0.000374081254, 0.0227245875, 0.0251433291, -0.0143603757, -0.00403365074, 0.00803109258, -0.00725260517, 0.00160857209, -0.0120212929, -0.0116809309, -0.0105367349, -0.0249984954, -0.00976186898, 0.0160766691, 0.000327009941, 0.00135058502, -0.0115578212, 0.0194658041, -0.0220148973, -0.00525750499, -0.00408434262, -0.0157145821, 0.0111305583, -0.00487731351, 0.00126458926, -0.00195164955, -0.00786453206, -0.00383812352, 0.0124413138, -0.0196106378, 0.0072381217, -0.0100370552, -0.00797315873, -0.00255633518, -0.0079586748, -0.0152366264, -0.0263599418, 0.00937805697, 0.00433780393, -0.0239556842, -0.0305601526, -0.0464340523, 0.000493796309, 0.0107612293, 0.0224349182, -0.0179595221, -0.00127997797, -0.0305022188, -0.00812523533, -0.00493886834, -0.00835697073, -0.00654291455, -0.0139620798, -0.0211169217, 0.0264613274, -0.00288402406, -0.0258240532, -0.00576442713, -0.00230106362, -0.0155697465, 0.0173656978, 0.0194078702, -0.00218338543, -0.00605771737, 0.0068615512, 0.00909562875, -0.00806005951, -0.00355931651, 0.0190892331, -0.00122023362, -0.0152655933, -0.00258530211, -0.0109567568, -0.00956634153, -0.02098657, 0.0615837798, 0.023651531, -0.00260521681, -0.0179884881, -0.0114491945, -0.00249296986, -0.00819765218, 0.0368749537, 0.0269537661, -0.00187199039, -0.00425090268, 0.00573908072, -0.0394530147, 0.0038634697, -0.0160187352, -0.0105439769, 0.00324249, -0.028546948, 0.0133392895, 0.0130206533, -0.00467454456, -0.00466730306, -0.0046854075, -0.00632928312, 0.011992326, -0.00755313737, 0.0043921168, -0.000467997597, -0.000345793203, 0.0280834772, 0.00188466348, -0.0011632049, 0.0293725077, -0.00179323647, -0.0196975395, 0.0118619744, 0.00106815703, 0.000806096476, 0.00402640877, 0.00511629088, 0.0297780447, 0.00997187942, 0.0191037171, 0.00743726967, 0.0142445071, -0.00237348117, 0.0167718753, -0.0316898637, -0.0174091496, -0.00728881359, 0.0196396057, -0.00454057241, -0.0215948764, 0.00335292681, 0.0111450413, 0.00688689714, -0.00263237348, 0.006944831, -0.0117533477, 0.0106526036, -0.0160621852, 0.0151062747, 0.0291987062, -0.0127020162, -0.0122168195, -0.0179884881, -0.00539509812, 0.00122566486, -0.0215079747, 0.00736847287, 0.00518508768, -0.0190023314, -0.000701091194, -0.00963151734, 0.0252157468, 0.00436315, -0.0242743213, 0.0066841282, 0.00431969948, 0.00129174581, -0.0152800763, 0.033369951, -0.00130351365, 0.00699552335, 0.0238977503, -0.0271855015, -0.00829179492, -0.00612289319, -0.0214500409, 0.00282609, -0.0115071284, -0.0145341773, 0.000891186937, 4.67884456e-05, 0.00386709045, 0.0213776231, 0.00097673, -0.00370234088, 0.0207838, 0.0270117, 0.00370777212, -0.0257226694, 0.00410606805, -0.0173077639, -0.0242308695, 0.0335727185, 0.0143169248, 0.00564493844, 0.0204072297, 0.00462747365, 0.0203927476, -0.0101167141, 0.0320954025, 0.0362956151, 0.00418572733, -0.00309946574, 0.00768348901, -0.0168442931, 0.00773418089, -0.00370596163, 0.0160911512, 0.0109277898, 0.00348146772, 0.00996463746, 0.00315558934, -0.019523738, 0.0298939124, 0.00180590956, -0.0122313034, -0.000371365604, 0.00227571768, -0.0158449318, 0.0208562184, -0.000219062713, 0.0137303434, 0.00639445847, 0.0119488752, 0.0152366264, -0.00538061466, -0.000511900696, 0.0168153252, 0.00886389241, 0.0158014819, 0.00540958159, 0.0177857187, 0.00175612257, 0.0140924305, -0.0106019108, 0.0117533477, 0.0206969, 0.013896904, 0.00259073335, 0.00447539706, -0.00425814465, 0.000974014343, -0.00117044663, -0.0172208641, -0.000541320245, -0.004500743, -0.0122530283, -0.0107395044, -0.00174435473, -0.015019374, -0.0253171325, 0.0182347074, -0.026273042, 0.00721277529, 0.00261607952, 0.00624600286, 0.015786998, 0.0109857237, 0.0122892372, 0.0109639978, 0.00688689714, -0.00537699368, -0.0104643181, -0.00299083954, -0.00830627885, 0.00808178447, -0.0332540832, -0.0185388606, 0.0235211793, 0.000828726916, 0.0506342649, -0.0068615512, 0.0109495148, 0.00468178652, -0.00820489414, 0.00483024213, -0.00944323186, 0.029618727, -0.0229997747, 0.00748796156, 0.00672395807, 0.00559062511, -0.0276634563, 0.0150483409, 0.0153090432, -0.0205520652, -0.00902321097, 0.0243322551, 0.0247088261, 0.008248345, 0.000143363868, 0.0196540896, -0.00909562875, 0.0216383263, 0.00870457478, -0.000339456688, -0.00816144422, 0.0161780529]
13 Aug, 2024
PostgreSQL – DROP TABLESPACE 13 Aug, 2024 In PostgreSQL, the DROP TABLESPACE statement is used to remove a tablespace. A tablespace is a storage location where PostgreSQL stores database objects such as tables and indexes. This command is useful for managing and cleaning up database storage. Let us get a better understanding of the DROP TABLESPACE Statement in PostgreSQL from this article. Syntax DROP TABLESPACE [IF EXISTS] tablespace_name; Parameters Let’s analyze the above syntax: tablespace_name: Specify the name of the tablespace you want to delete. IF EXISTS: This optional clause helps avoid errors if the tablespace does not exist. It prevents the command from failing if the tablespace is missing. Note: It is important to note that only tablespace owners or superusers can execute the DROP TABLESPACE statement. PostgreSQL DROP TABLESPACE Example Let us look at an example of DROP TABLESPACE Statement in PostgreSQL to better understand the concept. Step 1: Create a Tablespace First, we create a new tablespace named ‘gfg’ and map it to the ‘C:\data\gfg’ directory: CREATE TABLESPACE gfg LOCATION 'C:\data\gfg'; Step 2: Create a Database with the Tablespace Now create a database named ‘db_gfg’ and set its tablespace to ‘gfg’: CREATE DATABASE db_gfg TABLESPACE = gfg; Step 3: Create a Table with the Tablespace Now create a new table named ‘test’ in the ‘db_gfg’ and set it tablespace to ‘gfg’: CREATE TABLE test ( ID serial PRIMARY KEY, title VARCHAR (255) NOT NULL ) TABLESPACE gfg; Step 4: Verify Objects in the Tablespace The following statement returns all objects in the gfg tablespace: SELECT table_space.spcname, class.relname FROM pg_class class JOIN pg_tablespace table_space ON class.reltablespace = table_space.oid WHERE table_space.spcname = 'gfg'; This will lead to the following: Step 5: Drop the Tablespace Now if you try to drop the ‘gfg’ tablespace: DROP TABLESPACE gfg; This will raise the following error: As the gfg tablespace is not empty, it is not possible to drop the tablespace. Now, login to the Postgres database and drop the ‘db_gfg’ database: DROP DATABASE db_gfg; Now delete the gfg tablespace again: DROP TABLESPACE gfg; Step 7: Verify Deletion Now check for the tablespace using the below command to verify: \db+ Output: Important Points About PostgreSQL DROP TABLESPACE Statement Ensure you have the necessary permissions to drop the tablespace. Only the owner or a superuser can perform this action. A tablespace must be empty of all objects before it can be deleted. This includes databases, tables, indexes, and any other database objects. Always use the IF EXISTS clause in scripts to prevent errors during execution, especially in automated processes. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE
https://www.geeksforgeeks.org/postgresql-drop-tablespace?ref=asr10
Languages
PostgreSQL – DROP TABLESPACE
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0493379086, -0.0127199301, -0.0185017157, 0.0452497788, 0.00678629847, -0.0245287903, 0.0304857828, 0.0193310231, -0.0194595065, 0.00859675743, 0.0542436689, -0.0238630082, 0.0049466393, -0.0639617443, -0.0125330435, -0.0127783315, -0.0199734438, 0.010897791, 0.00782585237, -0.0306025855, 0.0526551381, 0.0342235044, 0.0120424684, -0.0369333513, -0.0149976034, 0.00902893115, 0.00834562909, 0.00902309082, -0.00160313165, -0.000350228773, 0.0155232204, 0.0408813171, -0.014728955, -0.00107167452, -0.0551781, -0.0180929024, -0.00650596945, 0.0359755605, -0.0209195539, 0.0181863457, -0.00376400119, 0.00484443596, -0.00467507076, 0.021305006, -0.0402272157, 0.0216437373, 0.000962171, -0.0598969683, -0.0243652649, 0.0482165925, -0.0139930909, -0.0352513753, 0.011283244, -0.0106641836, 0.0233724322, -0.0185484383, 0.0198216, -0.00028251909, -0.00594823156, 0.0203121752, -0.00163963286, -0.0093151005, 0.0105765807, -0.0332657136, -0.0250193663, 0.0190390144, 0.00645924825, -0.000268831151, -0.0426567346, -0.0614387803, -0.00428085774, 0.00752800237, 0.0172402356, -0.00349827274, -0.00906981248, -0.0224263221, 0.0109620336, 0.021059718, -0.00118555815, 0.0126264868, -0.0053875735, 0.00254778215, -0.00502840197, 0.00617891923, 0.0175906476, -0.00600371324, 0.00777913071, -0.0299484842, 0.0807814822, 0.0151494481, 0.0477026552, -0.0240382142, -0.000949030567, 0.000967281172, 0.000203311545, 0.0131988255, -0.0631674752, -0.00282811117, 0.0277759358, 0.00991664, -0.00336102839, 0.031677179, 0.00822298508, -0.0294111874, -0.0196113512, -0.00750464201, 0.02945791, 0.0267714225, -0.00582850771, 0.0232789908, 0.0231505055, 0.0408112332, -0.0186068397, 0.0545707196, -0.0321677551, -0.0279628206, 0.0401571356, -0.0271451939, -0.0224964041, -0.0101210466, -0.0255566631, -0.00388664519, -0.00584602822, 0.0454133041, -0.0213984493, 0.0160488375, -0.0160955582, -0.0148107177, -0.00183527917, -0.00458746776, 0.00234921579, -0.0482165925, -0.0302521754, 0.047142, -0.00157831085, 0.0128600942, -0.0131871449, 0.0225548074, -0.024996005, -0.00860259682, -0.0463477336, 0.0193427037, 0.0493379086, -0.0336862057, -0.0241550189, 0.0375874527, -0.0144719863, -0.00174037612, -0.015079366, 0.0300886501, 0.00641252659, -0.0432173908, 0.0411382839, 0.014623831, 0.0177308116, 0.0209545959, -0.00861427747, 0.0302054528, 0.0139346886, 0.0167029388, 0.00853835512, -0.0219941493, 0.0153012928, -0.0149041601, -0.0137478029, 0.0736330897, 0.0444788747, 0.0174621623, 0.0224496834, 0.00544889551, -0.0204056166, 0.00841571111, -0.014448626, 0.0293411054, 0.0151611287, -0.0455067456, -0.00836314913, -0.0097998362, 0.0324013643, -0.022145994, -0.0393395089, -0.0238396488, 0.00105853414, -0.00950198621, 0.0166211762, 0.020569142, 0.0107634664, -0.00190244126, 0.0109269917, -0.0137127619, -0.0267013405, 0.0363960527, 0.0438481346, 0.0412550904, -0.00362675684, 0.0201720092, 0.0074287192, 0.0229636207, 0.0146705527, -0.0252296124, -0.0558322, -0.0276357699, 0.00793097541, 0.046301011, -0.0175205637, 0.029037416, 0.0192959812, -0.0285234787, 0.0349710472, -0.000154491223, -0.0126615278, 0.0331489071, 0.00718343165, 3.27598063e-05, -0.0429370627, -0.0155582614, 0.0033289073, -0.0171584729, -0.014728955, -0.00287775276, 0.00282227085, -0.00314786145, -0.0247857589, -0.0334525965, -0.017719131, -0.00770904822, -0.0177775323, 0.00560366036, -0.00435386039, 0.0352046527, 0.0634010807, 0.005518978, -0.00960710924, -0.0284767579, 0.025486581, 0.0077440897, -0.0361624435, 0.00286899251, -0.0296214353, -0.057514172, 0.0463710949, 0.0441051, 0.0091048535, 0.00216232962, -0.0357653126, 0.0206625853, -0.00555985933, 0.00222073146, 0.0155115398, 0.0295747127, 0.0115460521, -0.0241783783, -0.00880116317, 0.0422829613, 0.0206742659, -0.0118322214, -0.025346417, -0.0163291655, 0.00125126028, 0.0207326673, -0.00290841376, 0.00279891025, -0.0158502702, -0.0154998591, 0.0312099662, -0.00172139541, 0.0128600942, -0.0220291894, 0.0303222574, -0.00347783207, -0.00668117544, 0.00476559345, -0.0107868277, -0.0164926909, -0.0288505293, 0.00817626342, -0.0747076869, 0.0207910705, 0.0162357222, 0.00889460649, -0.0039479672, -0.0133156292, -0.0343403071, 0.00176519691, -0.0114117274, -0.0434977226, -0.00314202113, -0.00430129841, 0.0222511161, -0.017614007, -0.0154648181, -0.0371669568, 0.0238980502, 0.0345505551, 0.0159203522, 0.0173219983, -0.0159086734, -0.0164459702, -0.0173804, -0.0135842776, -0.0323312804, 0.00707830815, 0.00392168621, 0.00516856648, -0.0274255238, -0.0201720092, 0.00687390147, 0.036069002, 0.010126886, -0.0256267451, 0.0126732085, -0.00171263516, -0.0456702709, -0.0168431029, -0.0163291655, 0.017614007, -0.00282665109, -0.0199384019, -0.0219824687, -0.0021024677, 0.0333591551, 0.000821276451, -0.076669991, -0.00152136898, 0.0279628206, -0.0207793899, -0.0309062749, -0.00394212687, 0.0166445356, 0.00577302603, -0.0117270974, -0.00881284382, 0.0233023502, 0.0639150217, 0.0199150424, -0.00255800248, -0.0114234081, -0.0394796729, 0.0266779792, 0.0210480373, 0.0235593189, 0.0133740306, 0.0143201416, -0.035228014, -0.00840987079, 0.0218423046, 0.0334525965, 0.0174271222, -0.0269349478, 0.00923333783, 0.000668336521, 0.0380546674, -0.0123811988, 0.0423530452, 0.00804193877, -0.0267247017, 0.0169248655, -0.0300652888, 0.0171467923, -0.0043713809, 0.0190506931, -0.0188871678, 0.00346323149, -0.00158269098, -0.0217488613, 0.00541385449, 0.00124834024, -0.000419033488, -0.0400403291, -0.000358806574, -0.000658846227, 0.0116862161, 0.0371202342, 0.00122497953, -0.00344863115, -0.0212699659, -0.00338438898, 0.00091471948, 0.0444788747, 0.0110321157, 0.0270751119, 0.0279394612, -0.00950198621, 0.000495685963, 0.0135375559, -0.00755720353, -0.000160240161, 0.0188638084, -0.00350995315, -0.00734111667, 0.00421077572, 0.0649428889, -0.0373071209, -0.0514403768, 0.000167357895, 0.00283395126, 0.00385744427, -0.0065351706, -0.0181513056, -0.0212582853, 0.0127783315, -0.0425866507, -0.0136894006, -0.0140514923, -0.0247390363, 0.00450278493, 0.017929377, -0.00978815556, -0.00721263234, 0.0461842082, -0.00102130289, 0.0342702232, -0.0297148768, 0.0268415045, 0.0400636904, 0.0532625169, -0.00842155144, 0.0365362167, 0.000135693117, 0.0237345248, 0.000598254264, 0.00157393073, -0.0497584045, 0.0131521039, 0.0319575109, 0.00696734432, 0.017719131, 0.0281497072, 0.00783753209, -0.0102203293, 0.034737438, 0.0105064986, -0.0272152778, 0.000871648081, -0.02204087, 0.00213458878, -0.0101152062, 0.0327517763, 0.0201486498, 0.0384518, -0.00337562873, -0.00599203305, 0.0411382839, -0.00237841671, -0.0171351116, 0.000916179502, -0.0121242311, 0.0522813648, -0.00567958318, -0.00591027038, -0.0267013405, 0.0433341973, -0.00593655137, 0.0124162398, -0.0268181432, 0.000324312947, -0.026327569, -0.00455826707, 0.00318290247, -0.00780249154, 0.0325882509, -0.00368515868, 0.0168314222, -0.0220875908, 0.0151844891, 0.0432641134, -0.0274488851, 0.0155933024, 0.00426041707, 0.0227416921, 0.0335927606, -0.0196463931, -0.0178242549, 0.0119139841, -0.000547517615, 0.0374239273, 0.00117533782, 0.0123227974, -0.00238279672, 0.0034573914, 0.014238379, -0.00600371324, 0.014098214, -0.00358879566, -0.00390124577, 0.0348308831, -0.0018265188, -0.0221693534, -0.0614855029, -0.0460440442, 0.00584894838, 0.00610299688, -0.0323079228, -0.0303923395, 0.0228351355, 0.00361799658, -0.0370501541, -0.0211882032, -0.025066087, -0.014098214, -0.00604459457, -0.0194011051, -0.0639150217, 0.0144603057, 0.00588690955, -0.00780249154, -0.0154180964, -0.0103137726, -0.0246689543, 0.0133973919, -0.0339665338, -0.0237695668, -0.00031993282, 0.0431706719, -0.000328328082, 0.00430129841, -0.0307427514, 0.0236527622, 0.0415120572, 0.00174913637, -0.0352513753, 0.0134908343, -0.0371903181, 0.0121242311, -0.00416405406, -0.0232906695, 0.0167963803, -0.0113766864, -0.00400636904, -0.0256501064, 0.0387321264, 0.0300652888, -0.0101852883, 0.007259354, -0.0173920803, 0.0145771094, -0.00385744427, 0.0136894006, 0.0236527622, 0.0303689782, -0.0092917392, -0.00071797811, -0.00616723858, 0.0130236195, 0.00802441873, -0.0252296124, -0.0128834555, -0.00920997653, -0.00152428914, 0.00258282316, 0.0176957697, 0.0250427276, -0.0150326444, 0.000516856671, 0.0158269107, 0.000519776775, -0.0347841606, 0.0011308064, 0.0135492366, 0.031677179, -0.0119431848, -0.0398300849, 0.0206041839, -0.00097312138, 0.0155349, -0.010494818, 0.00996336062, 0.00807698071, -0.025766911, 0.0350411274, 0.00918077584, 0.00864931848, -0.010740106, -0.0173804, -0.0177308116, 0.0133039486, -0.0225314461, -0.00402973, -0.0338497311, 0.00469551142, 0.0201720092, 0.00775577, 0.00265874574, 0.0232789908, 0.000832956866, -0.0205808226, -0.00933262054, -0.0301353708, -0.00712503, -0.0116920564, 0.0075338427, 0.0409046784, 0.0258603524, -0.0024587193, -0.014869119, -0.00181775854, -0.000627455243, -0.0384985209, -0.0241783783, 0.00544597534, 0.0206859466, 0.00678045861, 0.00490575796, 0.014834078, 0.0258837137, -0.00326174521, -0.00679797912, -0.0469083898, -0.029598074, 0.0328919403, -0.00776745, 0.0108861104, 0.0278226566, -0.00558906, 0.0287337266, -0.025346417, 0.00463418942, 0.0387321264, -0.00337854889, 0.00133010291, -0.0137361223, 0.0177424923, 0.0206742659, -0.00145712693, 0.0142266983, 0.000743163924, 0.00644172775, 0.0134791546, -0.00188346067, -0.0161773209, 0.00118920836, 0.0237345248, 0.0137244426, -0.00846243277, -0.00919829682, 0.0183381904, 0.0270050298, -0.0170533489, 0.00913405418, -0.00218715053, 0.0383583568, 0.0235593189, 0.0346673578, 0.0451096147, -0.0178826563, 0.0122527145, 0.0159320328, 0.0305558648, 0.0136660403, -0.00255508232, -0.0157918688, 0.0305558648, 0.0136777209, 0.00150384847, -0.00540509401, -0.0219941493, 6.77096832e-05, 0.00153012935, 0.0194361471, 0.00445314357, 0.0313968509, -0.0102904113, 0.00896468852, 0.000825656578, -0.00659941277, -0.0097998362, -0.0334058776, -0.021830624, -0.00929757953, 0.0136660403, -0.0408112332, -0.0419559106, -0.00748128118, 0.0142266983, 0.00881284382, -0.0269349478, 0.0116336551, -0.0051744068, 0.0170183089, -0.00292447419, 0.00927421916, 0.00792513508, 0.0200084839, 0.0187586844, -0.0229052175, 0.00492035877, 0.0190390144, -0.0197865572, 0.00711334916, -0.0218890253, 0.0157101061, 0.00866683945, 0.010161927, 0.0083164284, 0.0206976272, -0.0205224212, 0.0236527622, -0.0172402356, 0.0384050757, -0.0345271938, -0.0131170629, 0.0388022102, 0.0315603763, -0.00559490034, 0.0140398126, 0.0365128554, -0.01117812, 0.00355083449, 0.00953118689, -0.00255362224, 0.0070199063, 0.00848579314, 0.0131053822, 0.00364135741, 0.000650815957, 0.024996005, -0.0156283434, 0.00111401593, -0.0116102938, -0.00274488842, -0.038919013, -0.0243886262, -0.000322852895, 0.0116686961, -0.0252296124, 0.0137594836, -0.0195996724, 0.00579930702, -0.00416989438, 0.00724183349, -0.0217605419, -0.000924209773, 0.0395263918, -0.0166094955, 0.00395964738, 0.0124863228, 0.00720679201, -0.011265723, -0.0342468619, -0.0185367577, 0.0246455949, 0.0157101061, 0.0114526087, 0.0333357938, -0.014553749, 0.0310464408, 0.0584018826, -0.0403907411, -0.0492911898, 0.0186418798, 0.0151027264, -0.0231621861, 0.0637281314, -0.00888292585, -0.0276124105, 0.0270751119, -0.00961879, 0.0161890015, 0.0243652649, 0.00334350765, 0.0247623976, 0.0248091202, -0.00480939494, 0.000861427747, 0.0231271461, -0.0135141956, 0.00200756476, 0.0269349478, 0.0244820695, 0.00626652176, 0.00678629847, 0.0160021149, 0.0596633628, -0.00478603411, 0.0364894941, -0.0148223974, 0.0173219983, -0.0309763588, -0.0266312584, -0.0326583311, 0.0145771094, -0.00464878976, 0.0233607534, -0.00970055256, -0.0044765044, -0.046301011, 0.0525616929, 0.0228701774, -0.00872524083, 0.0160488375, -0.00657605194, 0.0261640437, 0.0112774037, -0.0021199882, 0.00370267942, 0.0103896949, 0.0134908343, -0.0175088849, -0.00425457722, -0.0379612222, 0.015009284, 0.00117898802, -0.0117329378, -0.0352747366, 0.0260939617, -0.0136543596, 0.0239914935, 0.00602123421, -0.00913989451, 0.0201252885, -0.0116570154, -0.0104305763, -0.0184900351, 0.033218991, 0.0474690497, -0.00339898956, -0.0125447242, -0.0198683199, 0.0259771571, -0.0131287426, -0.025276335, -0.0076564867, 0.0128367338, 0.0215269327, -0.0331489071, 0.0227884147, 0.0139580499, 0.00699654547, 0.0317239, 0.00913405418, 0.0171467923, 0.00969471224, -0.0273554418, 0.0127900122, -0.0233957935, 0.0288738906, 0.00530873099, 0.00324130454, -0.00625484157, -0.00113518653, 0.00898805, -0.00652349042, -0.0135842776, -0.0387321264, 0.00473055243, -0.0172519162, -0.020989636, 0.0204289779, -0.0160137955, 0.0416755825, 0.0149742421, -0.00455534691, -0.0585887693, 0.0226599295, -0.0232789908, -0.0233373921, -0.0120658288, 0.0149158407, 0.0164226089, 0.0169015042, 0.0132338665, 0.00151844893, -0.0174621623, 0.0214334913, 0.00213020854, 0.011318285, 0.00883036479, 0.0119315041, 0.0139697306, 0.00120307878, 0.00637748558, 0.0259537958, 0.0270751119, -0.0111664394, -0.00307193887, -0.00807114, -0.0298784021, -0.0204172973, 0.00609715655, -0.0112598827, 0.00622564042, -0.00150676852, 0.00310114, 0.0139930909, -0.0016367127, -0.00125856057, -0.0165744536, -0.0652232245, -0.0388956517, -0.0200668871, 0.014553749, 0.00349535258, -0.0279161, -0.0264443718, 0.00457870774, -0.00190390134, 0.00271860766, -0.00431881938, 0.00446190359, -0.0302521754, 0.000978961587, 0.0204289779, -0.00166883378, -0.0213634092, -0.00142281584, -0.0242251, 0.0274956059, 0.0127199301, 0.00233315513, 0.0117212581, 0.0160137955, 0.0191674978, -0.0120541481, 0.014203338, 0.0227183327, -0.00256384257, 0.021900706, -0.0195529498, -0.00978231523, -0.0185834784, -0.00998672191, 0.0137945246, -0.0104188956, 0.00970639288, 0.00313034095, -0.000220467104, -0.0208611526, 0.00151260872, 0.0141566163, 0.0306493081, 0.00917493552, 0.0115577327, 0.00856755581, 0.0224029627, 0.0213984493, 0.0188404471, -0.0510198846, 0.0162357222, -0.0283132326, -0.0127549712, -0.0117095774, -0.00971807353, 0.0126031265, -0.00589859, -0.0105765807, 0.0243419036, -0.00672205677, 0.0156984255, -0.00535837281, 0.0098056756, 0.00270546717, 0.025836993, 0.0275890492, -0.0134207522, -0.0380079448, -0.0246222336, -0.010161927, -0.00527369, -0.0217605419, 0.00132645271, -0.00398592837, 0.00206450652, 0.0538698956, 0.0148107177, 0.0251128096, 0.0448059253, -0.00391876604, -0.0124512808, -0.0279628206, -0.00567958318, -0.00456118677, 0.00261202408, 0.00154618977, 0.00616139872, -0.00202216511, -0.0209195539, 8.69184259e-06, -0.014763996, 0.020989636, -0.00694398396, -0.00071213796, -0.000902309082, -0.03690999, 0.0277525745, 0.00547809666, -0.0418391079, 0.000325043, 0.00960710924, -0.0145303886, 0.031677179, -0.0234191548, 0.0121242311, -0.00937350187, -0.000536567299, 0.0208961926, -0.0171000715, 0.020569142, -0.00617891923, -0.0366296619, 0.0168314222, -0.00645340793, -0.0308361929, -0.0018265188, -0.0108510694, 0.00226745312, -0.0293644667, 0.0297382381, -0.0233490728, 0.0121592721, 0.0132338665, 0.00172431557, -0.0454366654, -0.000535472238, -0.0512534901, -0.00975311454, -0.0266078971, 0.00857923646, -0.00461082859, -0.0176373683, 0.0378911421, -0.0309062749, -0.0419792719, -0.0208961926, -0.0440350175, 0.00170387491, 0.0306025855, -0.00477727409, -0.018454995, 0.00584018836, 0.0298550427, 0.00861427747, -0.0160955582, 0.00694398396, -0.00490575796, -0.0163291655, -0.0242718216, -0.00708414847, -0.0158969928, 0.0118205408, 0.00552189769, -0.0117738191, -0.023571, -0.00715423049, 0.0139113283, 0.0170183089, -0.017368719, 0.0207910705, -0.00784921274, 0.0196931139, -0.00341651, -0.000550072698, -0.00148413784, 0.00344571099, -0.0236527622, -0.0215386134, 0.0298550427, -0.0466981456, -0.00303105777, -0.00234921579, 0.0297849588, -0.0370968767, -0.0439883, 0.0190857351, 0.00275364867, -0.0120307878, 0.00685638096, 0.0121475914, -0.0111839604, -0.0128250532, -0.0164926909, 0.010985394, -0.018104583, -0.0138879679, -0.0274488851, 0.00501964195, 0.022566488, -0.00730607519, 0.00091471948, -0.0294345487, -0.0074462397, 0.0363026112, 0.000562848116, 0.00301937736, 0.0227066521, -0.0184666757, 0.0140047716, 0.0230687428, -0.0146004707, -0.0223796014, -0.00297119585, -0.010932832, 0.0200318452, 0.00369683909, 0.0487772524, -0.00556569919, 0.0281263459, -0.000612854725, 0.0410214812, -0.0137127619, 0.010582421, -0.0363726914, -0.00499336096, 0.0136543596, 0.00602123421, 0.0156400241, 0.0303689782, -0.014834078, 0.0323546417, -0.00644172775, 0.014378543, 0.0166211762, -0.0199500825, -0.0428202599, -0.0300886501, 0.0216787793, 0.0356485099, -0.0111898007, 0.00870188, 0.00546933617, 0.00231125439, 0.0101327263, 0.00950782653, 0.00225285254, 0.0474223271, -0.0125797652, 0.00363551709, 0.00315954187, -0.0213166866, -0.00469551142, 0.00804193877, 0.0118497415, 0.00756888371, 0.0104539366, 0.0138295656, 0.00241929805, -0.00772656873, 0.00776161, 0.00636580493, 0.00861427747, -0.00396256754, 0.0113241253, -0.0101560876, 0.00794849638, -0.0115402117, -0.0116978968, 0.00236819638, -0.0155816218, 0.00852083415, -0.0161306, 0.0117913401, -0.0192959812, -0.0231154654, 0.0267714225, 0.00292009418, -0.000128210377, -0.0153363338, 0.00198712409, -0.00666949479, -0.00713086966, 0.0242484622, -0.0440350175, -0.00399468886, 0.000242002803, 0.00676293811, -0.00363259716, -0.0348308831, -0.00665781461, -0.00534085231, 0.0321210362, 0.00459914841, -0.00485027628, -0.0187470037, 0.017438801, 0.00720095215, -0.00373188034, -0.00968303159, -0.0052649295, 0.0431940332, 0.0114000477, 0.0206158645, 0.0237695668, 0.0219474267, -0.0181162637, 0.0141449356, -0.00658773212, -0.00760392519, 0.0103079323, 0.00473931292, 0.005370053, 0.00168635428, 0.000945380481, -0.0156166628, -0.03571859, -0.00748712104, 0.0199267212, 0.00366179808, 0.0074404, 1.36993476e-05, 0.0081704231, 0.00694982382, 0.025276335, 0.0238513276, -0.0119723855, -0.034059979, -0.0135959582, -0.0217839014, -0.0128016928, 0.0138996476, 0.00164839311, -0.0100100823, 0.013852926, 0.0217605419, -0.0154531375, 0.00652933028, 0.0154648181, 0.0304624215, 0.0152195301, -0.0376575328, 0.0368399061, -0.00759808486, 0.0192959812, 0.00777329039, -0.0221576747, 0.0197865572, -0.00552773802, 0.00161043194, 0.0013819345, -0.0167496596, -0.00800689775, 0.00913405418, -0.0207209885, 0.0264910944, 0.00329970638, -0.018770365, -0.0137828439, -0.0130002592, -0.00264706532, 0.00998672191, 0.0296214353, -0.0102378502, 0.0104714576, -0.0217255, 0.0101035256, 0.00228935387, 0.0112248417, 7.12685433e-05, 0.01427342, 0.0139930909, -0.0139463693, 0.00416697422, -0.0371435955, 0.039059177, -0.0155115398, 0.00228059338, -0.00310406, 0.0224146415, 0.0290607773, 0.00342235016, -0.00133667304, -0.0160955582, -0.0049028378, 0.0110963574, 0.0191090964, -0.0178709757, 0.00710750883, 0.00820546411, 0.0199734438, -0.00345447124, -0.0121242311, 0.00200756476, -0.00597743271, -0.0103020919, 0.00121548912, 0.000323400425, -0.00986991823, 0.0317005403, -0.0119548654, -0.0157217868, -0.0338263698, -0.02854684, 0.0267247017, -0.0181980263, 0.00802441873, 0.0118205408, 0.00334934797, -0.0159203522, 0.00416405406, 0.00682718, 0.00171555532, 2.89728086e-05, -0.0179527383, 0.00516856648, -0.00845075212, 0.0124746421, 0.00201048469, 0.0155465808, 0.0184316337, 0.00174913637, 0.0174037609, 0.0055832197, -0.00187032029, 0.00148851797, 0.0249492843, -0.0226132087, -0.011090517, 0.0178826563, -0.014763996, 0.0104772979, -0.0241316576, -0.00965967122, 0.0119081438, 0.0417923853, -0.00760976505, 0.0124863228, -0.00874860212, 0.0120424684, 0.00811202172, 0.00661693327, -0.00176373683, 0.00906397216, 0.0316538215, -0.00414653355, 0.0156750642, 0.010634983, 0.0316538215, 0.0211765226, 0.00734695652, -0.00528537, 0.00928005856, 0.000262625952, -0.0213517286, -0.0049466393, -0.00331722689, 0.00877196249, -0.00362383667, -0.00160605169, -0.00819962379, 0.00295221503, 0.0263042077, -0.0139230089, -0.0109561933, 0.0148574384, -0.000146825987, 0.0190039724, -0.0302988961, 0.0038808051, 0.0186652411, -0.0484034792, 0.0117212581, -0.0138996476, -0.0255800243, 0.0161890015, -0.0128717748, 0.0316071, 0.0190623738, -0.00191558176, 0.0165744536, 0.00585770886, 0.0221693534, 0.00471887225, -0.0100217629, 0.0131637845, 0.00998088159, -0.0266779792, -0.0181629844, -0.0255566631, -0.0133156292, -0.0175556056, -0.00430713873, -0.0160838775, 0.0253697783, 0.0233490728, 0.001801698, -0.000402972975, 0.0268648658, 0.00540217385, -0.00449110474, -0.0450628921, 0.0268181432, 0.00707830815, -0.0272152778, -0.0187937263, -0.00197690376, 0.0140748536, 0.0423530452, 0.00815874245, -0.0260005184, 0.00327634555, 0.0167730208, 0.0101560876, 0.0127900122, 0.0206742659, 0.0266546197, 0.0177074503, -0.000420493539, -0.00154034968, 0.00344279082, -0.0211998839, -0.0232556295, 0.0123111168, 0.00590151036, -0.0119957468, 0.0192025378, 0.0287337266, 0.0132922679, 0.0340833366, -0.0430071466, 0.00923333783, -0.00190828147, -0.00345155131, -0.01458879, -0.0324948058, -0.018034501, 0.00492911879, 0.0277759358, 0.0109445127, -0.0393395089, -0.00393336685, -0.0134324329, -0.0395731144, 0.00822882541, 0.00805361941, -0.0153713757, -0.00165277324, 0.0128250532, -0.036769826, 0.000811786158, 0.0125914458, 0.00696734432, -0.0158619508, 0.0231972281, 0.00858507678, -0.00260326383, -0.0186652411, -0.0285234787, 0.000997942174, -0.00115781731, 0.00873108115, -0.0355317034, -0.0128367338, 0.0190974157, 0.00189222093, 0.0122877555, 0.00751048187, 0.00856171548, -0.0056883432, -0.015044325, -0.00130966224, 0.00175205641, 0.0164576508, 0.00370559935, -0.00475683343, -0.0015564101, -0.0120541481, 0.017929377, -0.0019608431, 0.00568542304, 0.0343169458, 0.017123431, 0.00383700361, 0.00140018517, 0.0252296124, 0.00301645719, -8.75115729e-05, -0.0244353469, -0.00496416, 0.0115343714, -0.00170533499, 0.0153947361, 0.0253931377, 0.00964799058, 0.0290841367, 0.0002544132, 0.0225314461, -0.0210246779, 0.0184433144, -0.0142266983, -0.0161306, -0.00855003577, -0.018174665, -0.00442978274, -0.0234074742, 0.00482691545, 0.00447942456, 0.0336862057, 0.0209779553, 0.0234541949, -0.00378444185, -0.00803025905, 0.00237403647, 0.00181045837, 0.0195879918, 0.000194368768, -0.0034398709, -0.0117621394, -0.00382240326, -0.00254778215, 0.0262574852, 0.0445022322, -0.00666949479, 0.00392460637, 0.0299484842, -0.000350411283, 0.0245521516, -0.0404374637, 0.00529121049, 0.0163758881, -0.0159553941, 0.0129652182, -0.0100217629, 0.003629677, 0.000608474598, 0.0262107644, -0.00930342, -0.00188200059, 0.00352747366, 0.00796601642, -1.15663106e-05, -0.00606211554, -0.0126381675, -0.0234775562, -0.00216232962, -0.00321210339, 0.00812954176, 0.00397716835, 0.0306025855, -0.00368807884, -0.00580806704, -0.0179761, 0.0109094717, 0.014518708, 0.00215502945, -0.00107459468, 0.00985239726, 0.0084449118, 0.0155115398, 0.00933846086, 0.010897791, -0.00897052884, 0.0103196129, -0.0163408462, 0.0035858755, -0.0167847015, 0.0342468619, 0.00709582865, -0.0215152539, 0.0120658288, -0.0083164284, 0.00391876604, -0.0156166628, 0.0180578623, -0.0105415396, -0.0144953467, 0.0152195301, -0.0236177202, 0.00707830815, -0.00526200933, 0.0042837779, -0.0180461816, -0.0213400479, -0.00630740309, 0.00484151579, -0.0270050298, 0.0184783563, 0.0056445417, -0.014518708, 0.0235359576, 0.00258428324, -0.0132572269, -0.00487947743, -0.00192434201, 0.0347608, -0.00299893669, 0.00697902497, -0.00327050546, 0.0184082724, -0.0114467684, -0.00170241483, 0.0101736076, 0.0263509285, 0.00885372516, 0.00272298767, 0.0400636904, -0.0180578623, 0.0194945484, 0.00194040255, 0.0256734677, 0.0181513056, 0.0117679788, 0.0352046527, 0.00439766189, 0.00661693327, 0.00520360749, 0.00224409229, 0.0171935149, 0.0143551826, -0.0228468161, 0.00445898389, 0.0206041839, 0.00591903087, -0.0137945246, 0.0258136317, 0.0137711633, -0.00575258536, -0.0035245535, 0.00909317285, -0.0206859466, -0.00170387491, -0.025136169, 0.00721263234, 0.0201603305, 0.0164926909, -0.00257844315, 0.0113416454, 0.00860843714, -0.0155115398, 0.0160488375, -0.00077747507, -0.0074287192, 0.00957790855, -0.014483667, 0.000234702558, 0.00936182123, -0.00313618104, -0.00492327847, -0.0391759835, -0.00374940084, -0.00748712104, 0.00454950659, -0.00527369, 0.0440583788, -0.0142500596, -0.0100684846, 0.00762144569, 0.0193660632, 0.0121125504, 0.0155465808, -0.00968887191, -0.00375524093, -0.0154297771, -0.0145303886, -0.00740535883, -0.00867852, 0.00572046451, -0.0124396011, 0.0172869563, 0.00523280865, 0.00953118689, -0.0126848891, -0.0152195301, 0.00045699472, -0.00315078162, -0.0070023858, 0.0348075218, 0.0186068397, -0.0199500825, 0.00456702709, -0.00138485467, 0.0148808, -0.00442394242, -0.025907075, 0.00453198608, 0.0162006821, -0.000693522335, -0.00143011613, -0.00013760943, 0.00255216216, 0.00880116317, 0.0177308116, 0.0143668633, -0.0183965936, 0.0274722446, 3.2965123e-05, 0.00105926418, -0.00332306698, -0.0125797652, 0.0213283673, -0.00333474739, -0.0120074265, -0.00185133971, -0.00272298767, 0.0151377674, -0.0146355117, 0.010845229, -0.0138062052, -0.0143902237, -0.0252062529, 0.00735279685, 0.0149859227, 0.00384576386, -0.0154998591, -0.0399936102, -0.00156079035, -0.00128192129, 0.00409397203, 0.0116862161, -0.00895884912, -0.0283833146, -0.00254048174, -0.0224380028, 0.0130937016, -0.0180812217, -0.00566790253, 0.00143960642, 0.00171117508, -0.0150326444, -0.00818794407, -0.00482691545, -0.000639865641, 0.0186652411, -0.00183819921, 0.00501964195, 0.0036471975, 0.00906397216, -0.0135141956, -0.0159437135, -0.00276094885, -0.0109269917, -0.00665781461, -0.0150676854, 0.0081704231, -0.011230682, 0.0261173211, 0.000361726648, 0.0180461816, 0.00482107513, -0.0268181432, 0.00412901305, -0.00867852, -0.0123344772, 0.0147873564, -0.0168547835, 0.0164109282, 0.0105941016, 0.00063220039, -0.000273758807, -0.000649720954, -0.0341300592, -0.0151728084, -0.0102028083, -0.0358120352, 0.00810034107, 0.0148574384, -0.0217488613, 0.00852667447, 0.00114248681, -0.0234308355, 0.014623831, 0.00209662761, 0.00833978876, 0.011055476, 0.00226745312, -0.0158385895, 0.000488750753, 0.00250398065, -0.00090814929, -0.0101502473, 0.0415587798, -0.00240469747, 0.0156283434, 0.00385452411, 0.000857777661, -0.010950353, 0.00870772079, 0.00723599317, -0.0170650296, 0.0403206609, 0.033218991, 0.0100743249, -0.0205341019, 0.0155232204, 0.00984655693, 0.00859675743, 0.0185017157, 0.0043451, -0.00550729735, 0.0183615517, 0.00620228, -0.00746960053, 0.00180023804, 0.000528902048, 0.0122877555, -0.011388367, 0.00399468886, -0.011265723, -0.0186185203, -0.00403849036, -0.0154414577, -0.00868435949, 0.0121008698, 0.0242951829, 0.0122410348, -0.00353623391, 0.0107809873, 0.0100451233, 0.00553941866, -0.0243185442, 0.014518708, -0.000270656223, -0.0122410348, 0.0033522679, -0.00602123421, 0.0210129973, 0.00523280865, 2.37713903e-05, -0.0178476144, 0.00826386642, 0.00550729735, 0.00235067564, -0.0110963574, -0.0387321264, 0.00488531729, -0.0060679554, 0.0103780143, 0.010967873, -0.00408813171, 0.0130353, -0.00466631027, -0.000593509118, -0.0208261106, 0.00378736202, -0.0241082963, 0.00409397203, 0.00599787338, -0.0153246541, 0.00633660425, 0.00202508527, 0.00932678, 0.0226015281, -0.0169365462, 0.0268882271, -1.50453288e-05, 0.00612635724, -0.00877196249, -0.0246689543, 0.0159320328, 0.0176607296, -0.0233023502, 0.0224263221, -0.0197398365, 0.0115460521, -0.00933846086, 0.0106408233, 0.0034398709, 0.0068096593, -0.00925085787, 0.0241550189, -0.0151728084, 0.00386620453, 0.00694982382, 0.00564746186, 0.0118263811, -0.0041582142, -0.00311866053, -0.00749296136, 0.0168431029, -0.0205457825, -0.0208027512, -0.00842739176, 0.0159904361, 0.0173453595, 0.0217722207, 0.018349871, -8.05763484e-05, -0.0255333036, -0.0125213638, -0.00673957728, -0.00611467706, 0.00183673913, -0.0110963574, -0.0107517866, -0.00229373388, 0.00475683343, 0.0107167456, 0.0184199531, -0.0248792022, 0.00409105187, 0.0158502702, -0.00798937771, -0.00125418045, -0.00189222093, -0.00999840256, 0.00593655137, -0.0059628319, 0.0144603057, -0.0099516809, 0.00793097541, -0.0119256638, 0.00828722678, 0.0258136317, -0.0164576508, 0.0264210105, 0.00364135741, -0.00559198, 0.021655418, 0.00468383078, -0.025766911, -0.0203238539, -0.00196814351, -0.0041144127, -0.0062606819, 0.0111664394, -0.00497876061, -0.0132922679, 0.0134441135, 0.00655269111, -0.0113708461, 0.00543721532, 0.0157568268, 0.010792668, -0.0109620336, -0.0261640437, -0.0301353708, 0.0160254762, -0.00853835512, 0.0100334436, -0.00186740013, 0.0120658288, 0.00269232667, 0.00423121639, 0.0176724102, 0.0122760758, -0.00229081372, -0.0132221859, -0.00481523527, 0.00274196826, 0.0012629407, -0.00858507678, -0.00832810812, -0.0114876498, -0.00951950718, -0.00333474739, -0.0226015281, 0.00613219757, 0.00179877796, 0.0156867448, -0.000237622662, -0.0241550189, -0.0141682969, 0.0305792261, 0.0127666518, -0.0167613402, 0.0227066521, -0.00454950659, -0.0328919403, -0.00428085774, -0.00423413655, 0.0133273099, -0.00125929061, 0.028616922, 0.014063173, -0.00582558755, -0.0137361223, -0.00748712104, -0.00637748558, 0.00369391893, 0.00420785556, 0.00122497953, -0.000383992359, -0.00527953031, 0.00735863717, -0.014308461, -0.0175088849, -0.0138762873, -0.0105356993, 0.00968887191, -0.00915741548, -0.00168197416, -0.000808136, 0.0274488851, -0.0106583433, 0.00787841342, 0.0178008936, -0.00403265, 0.0140047716, -0.0116628557, -0.0212232433, -0.000591684075, -0.0197631959, 0.00363551709, -0.0037581611, 0.0155465808, 0.000413558329, 0.00257844315, 0.0206158645, -0.0167613402, -0.03571859, -0.000579638698, -0.00170533499, 0.00359755591, 0.0129768979, -0.00840987079, 0.00634244457, 0.00454366626, -0.0172051936, -0.0277292132, 0.0172635969, 0.00413777353, -0.00427501788, -0.000144635909, -0.00345447124, 0.0132572269, 0.00918661617, -0.0168197416, -0.0176490489, 0.0158969928, -0.00328802597, -0.0142617393, 0.000939540274, 0.0229869802, 0.0188287664, 0.0195412692, -0.0180111397, 0.0156750642, -0.00371143967, 0.00555985933, -0.00233899546, -0.019190859, 0.00829890743, -0.00774992956, -0.00497876061, 0.0240849368, 0.0161890015, 0.00587230921, 0.0186068397, -0.00487071695, 0.00764480652, -0.00866683945, 0.0169949476, -0.00628404226, -0.00685054064, -0.00293031451, 0.0140047716, -0.00613803789, -0.0179060176, -0.0147523154, 0.0101794479, 0.014869119, -0.0226949714, -0.0360456407, 0.011283244, -0.00365887792, 0.00536713284, -0.00196230318, 0.000375232077, 0.0164109282, 0.00361215649, 0.0305558648, -0.00787257403, 0.00682718, -0.00556569919, 0.010512339, -0.0159437135, 0.000197106347, 0.0137361223, 0.00493495911, -0.00464878976, 0.0111664394, 0.018384913, 0.0173920803, -0.000425603706, 0.00440058159, 0.00534085231, 0.00221781153, -0.0204406586, -0.00609715655, 0.0150676854, -0.0420727171, 0.00353623391, -0.00942606386, 0.0108335493, 0.0426333733, -0.0132221859, -0.00375524093, 0.0102728913, 0.000783315219, -0.0069147828, 0.00215210929, -0.0248792022, -0.0154881794, -0.00884788483, 0.00487655727, -0.010950353, 0.00834562909, 0.018525077, -0.00147245743, 0.0306259468, -0.00458162744, 0.00260472391, 0.00468675094, -0.00195354293, -0.0133740306, 0.0171584729, -0.00808866, 0.00887124613, -0.00466631027, 0.0154180964, -0.00374940084, -0.00777329039, -0.0170883909, -0.00788425375, 0.0219357461, 0.0174972042, -0.0232789908, 0.00957790855, 0.0168197416, 0.00071797811, 0.00685638096, 0.0122059938, 0.0062606819, -0.00337562873, 0.00838651, 0.000520141737, 0.0109620336, -0.014483667, -0.0154764988, 0.00853835512, -0.00133156287, 0.0272386372, -0.0198916811, -0.00381072285, 0.000183144657, 3.39689068e-05, -0.000332890719, -0.00938518252, -0.017298637, 0.000739878858, 0.0118789431, 0.0188054051, -0.000251858117, -0.00658773212, 0.00836898945, 0.00400636904, -0.00315078162, -0.00117022765, -0.00117752794, -0.00298725627, -0.000287081755, 0.00912237354, 0.0148574384, 0.0326816924, -0.00754552335, -0.00790177472, -0.0170533489, -0.0154064167, 0.0226248894, -0.00551605783, -0.00290111359, 0.00106510427, -0.00508972397, -0.00609715655, -0.0249726456, 0.0218539834, -0.00726519432, -0.00692646299, 0.00711918948, -0.0316304602, -0.00348951248, -0.0156166628, -0.0049466393, -0.0153246541, -7.85231532e-05, -0.00643588742, -0.00329386606, -0.0190974157, -0.0333124325, -0.0112540424, -0.00850331411, -0.00394212687, -0.000630010327, 0.0127666518, 0.0033113868, 0.0154881794, -0.000133685564, 0.00993416, 0.00268064649, 0.00433341973, 0.042119436, 0.0149041601, -0.0139697306, -0.0169949476, 0.00105488393, -0.014413584, 0.00150676852, 0.00470719161, 0.0128717748, 0.0241550189, -0.00902309082, 0.00739367818, -0.0037202, -0.00360047608, -0.00591611071, -0.00308945961, 0.00941438321, 0.00634244457, 0.0106817046, -0.0268882271, -0.00213896902, 0.0144719863, -0.00753968302, -0.0137478029, -0.00602123421, 0.0251595303, -0.0158269107, -0.00850915443, 0.00163525273, 0.000380342244, 0.00845659245, 0.0195295885, 0.00190244126, 0.0135141956, -0.000873108162, 0.0316304602, 0.000403338, -0.0273554418, 0.0141098946, -0.00814122241, -0.00158999127, -0.0267013405, 0.00661109295, -0.000978231546, 0.0189338904, -0.0202304125, -0.01458879, -0.000912529416, 0.0131637845, -0.00654101092, 0.00539633399, -0.0108919507, 0.00155349006, -0.00489699794, 0.0165861342, 0.0118439021, 0.0121359108, -0.0110145947, -0.0293177441, 0.0105064986, 0.00671037612, -0.00684470031, 0.00609715655, -0.0364661366, 0.016878143, 0.0068096593, -0.0351345725, 0.00503424229, 0.025346417, -0.0066870153, 0.0133156292, 0.0124863228, -0.0116862161, -0.00118117803, 0.0108510694, -0.00199880451, -0.0203355346, -0.0175556056, 0.0015943714, -0.00174913637, -0.0134441135, 0.011055476, 0.0112423627, 0.00305149844, -0.00785505306, -0.0153480144, -0.00164985319, -0.00964215, 0.0157101061, -1.65167821e-05, -0.0398067236, 0.0298083201, -0.0155465808, -0.00775577, -0.00373480027, 0.00551021751, 0.0117796594, -0.0166795775, 0.0119490251, 0.00515396614, -0.00723015284, 0.0186068397, -0.0142851006, -0.0232673101, 0.0129535375, -0.0197047945, 0.00391876604, 0.00152866927, 0.0193193424, 0.00592779089, 0.021620376, 0.00281205052, 0.011598614, 0.00545473583, 0.0158385895, -0.00884788483, -0.0299718454, -0.0045378264, -0.00189660105, -0.00652349042, -0.0148457587, -0.00548393652, 0.00489407778, -0.00620228, -0.0124045601, 0.0130703412, -0.00182797888, -0.0142150177, 0.0125914458, -0.0127549712, 0.00886540581, 0.0149392011, -0.00419033505, 0.0278693773, 0.00619059941, 0.00394504704, -0.01988, -0.0190974157, 0.00103663339, 0.0204873793, 0.00521528814, 0.000461374875, 0.00518316682, -0.00200026436, 0.00310990028, -0.00347491191, -0.00652349042, 0.0085909171, 0.0147873564, -0.00496123964, -0.0190740544, 0.0157334674, 0.00314494129, -0.00642420677, 0.00733527634, -0.0275656879, 0.0101852883, 0.0130937016, -0.0229402594, 0.00166445365, -0.000374502066, -0.00919245649, -0.00214626919, 0.00765064638, -0.0118672624, 0.00767400721, -0.0238513276, -0.00393920671, 0.014308461, 0.0247857589, 0.00108481501, 0.00749880169, 0.00192872214, -0.00609131623, 0.0229402594, -0.00614387775, 0.000427428778, -0.0213166866, 0.00666365493, -0.00479187444, -0.0223445594, -0.00220613112, 0.0198332798, -0.00104174356, 0.0126148062, 0.0113591664, -0.00101327267, -0.0223679207, 0.018104583, 0.00122351944, -0.032518167, 0.00239155698, -0.0131053822, 0.00905813184, -0.00919245649, 0.026327569, 0.0122643951, 0.00731191551, 0.000832956866, -0.021375088, -0.00624316139, 0.0051130848, 0.00341067, -0.00271276734, 0.00278138951, 0.00173015578, -0.00508096348, -0.00276240893, 0.000308069924, -0.0185017157, -0.00773824938, 0.010897791, 0.0229986608, -0.017368719, -0.00187470042, -0.00287337252, -0.000941000297, 0.0142266983, -0.0104422569, -0.00298433611, 0.0203355346, -0.00260326383, -0.0195412692, -0.014098214, -0.00488531729, 0.0102261696, 0.00239885738, 0.0129184965, -0.00226453296, -0.00870772079, 0.0132805882, 0.0143318214, -0.00556277903, 0.0137361223, -0.00523280865, -0.0141215753, -0.00141989579, -0.0457870737, 0.0132572269, 0.00249668048, -0.0016002116, 0.01427342, -0.00978815556, 0.0169482268, -0.00821714476, -0.0128016928, -0.00117752794, -0.00397132803, -0.0175556056, 0.00879532378, -0.0171818342, 0.00202946528, 0.00210100762, -0.00871356111, 0.0294345487, -0.0169131849, -0.0151260877, 0.0244820695, 0.0132922679, 0.00672789663, -0.00435386039, 0.000547152653, -0.00652933028, -0.0133273099, 0.0213517286, -0.0136426799, -0.00928005856, 0.0220642313, -0.00999256223, -0.00665781461, 0.00517148664, -0.0128717748, 0.00978815556, 0.0151377674, -0.0111898007, -0.00100378238, 0.00941438321, -0.00126586074, 0.0257201884, -0.00325006479, -0.0242484622, 0.0188170858, -0.00764480652, -0.000613949785, 0.000482180534, 0.00142792601, -0.00554233836, -0.000117716292, 0.00687974179, 0.032237839, -0.0124279205, 0.00175059645, -0.0161422808, 0.00614971807, -0.0207093079, 0.0172402356, -0.0238162875, 0.00275072875, 0.00679797912, -0.0105415396, -0.0128834555, 0.00346907182, -0.00265728566, -0.00329970638, -0.0205925032, 0.0174621623, 0.010634983, 0.00350411283, 0.00703158649, -0.0153596951, 0.0099516809, -0.0275423266, -0.000950490648, 0.0198332798, 0.000404433027, -0.0194945484, -0.00167467399, -0.00281497068, -0.0182447471, 0.0261640437, -0.00461082859, 0.00281643076, 0.0229636207, 0.0131053822, -0.0103429733, -0.0125447242, -0.000147008483, -0.0133273099, -0.0168431029, 0.0122877555, -0.017929377, 0.00751048187, -0.0283365939, -0.00412901305, -0.0135375559, 0.00213166862, -0.00405601086, 0.0274488851, 0.00748128118, 0.0208377913, 0.0182330683, -0.0188404471, 0.00293469452, 0.00833394844, -0.00274780858, 0.00740535883, -0.00174767629, 0.00819378439, -0.0108160283, -0.0214334913, 0.011511011, -0.0264677331, 0.00565330219, -0.035578426, -0.00681549963, 0.0112131611, -0.00449986476, 0.0134090716, 0.0242951829, 0.0024514189, 0.0104422569, 0.0128834555, -0.0316071, 0.0112190014, -0.00897052884, -0.0134674739, 0.00661109295, -0.00905813184, 0.000870188058, -0.00682134, -0.0118088601, -0.0248324797, -0.00846243277, -0.0124512808, -0.000585113827, 0.0180812217, 0.0100684846, -0.025766911, 0.000946110464, 0.00105196389, -0.0177775323, -0.00376984151, -0.00639500609, 0.00337562873, 0.0141098946, -0.010792668, -0.00348659232, 0.000893548771, -0.00872524083, 0.00423997641, 0.0126615278, 0.000644245767, 0.00578470621, -0.00363843725, -0.00420785556, 0.00207472686, 0.0116570154, 0.00825802609, 0.00328510581, 0.00351579324, -0.0197631959, 0.0266312584, 0.0240849368, 0.000635850476, 0.0085909171, 0.0079543367, 0.000459914823, 0.00650012959, -0.0156283434, 0.0115810931, 0.00402680971, 0.00520652765, -0.00528829033, 0.0116394954, 0.014133255, 0.0273554418, -0.0152078504, 0.0072768745, 0.00965967122, -0.0066870153, -0.00058766891, 0.0198216, 0.00251712115, -0.00442978274, -0.00911653414, -0.0066870153, 9.15267e-05, 0.00143595622, 0.00650596945, -0.0311866049, 0.00827554706, 0.00238133664, -0.00659357244, -0.011037956, 0.00761560537, -0.0064300471, -0.00688558165, -0.014799037, -0.0144603057, -0.010810188, -0.00885956548, -0.0115285311, 0.00934430119, 0.0237695668, -0.00444730325, -0.0175672863, -0.0118147, 0.0021199882, 0.0225898474, -0.0159320328, 0.0114350887, -0.00993416, -0.00227475329, 0.0236177202, -0.0179176982, -0.0358120352, -0.025416499, -0.0325415283, 0.0260238778, 0.0172752775, -0.0121359108, -0.0158269107, 0.00923333783, 0.0234892368, -0.0130586606, -0.0124045601, 0.00387496478, 0.00383700361, 0.0252062529, -0.0108569097, -0.0163291655, 0.0170883909, 0.0243886262, -0.00133740308, -0.0207209885, 0.0131287426, -0.00762728555, -0.0247390363, 0.00708414847, -0.010792668, -0.00560950069, -0.00193602243, 0.0310698, 0.00448818458, 0.00202508527, -0.0193777438, -0.0301587321, -0.00600955356, -0.0348075218, -0.00915157516, 0.00300477678, -0.0154998591, -0.014518708, -0.00974727422, -0.00524156867, -0.00346323149, -0.0060679554, -0.00838067, 0.018209707, 0.0143551826, -0.000248573022, 0.0139697306, 4.38242241e-05, -0.02263657, -0.00981151592, 0.000208604222, 0.010424736, -0.000249850564, -0.000948300527, 0.00205720635, -0.017368719, 0.00617891923, 0.0119490251, -0.00902309082, 0.00578470621, 0.00230103405, -0.00422537606, -0.000136970659, 0.00250544073, -0.0232205875, -0.0118964631, -0.00408813171, -0.00199734443, 0.00242659822, -0.00310114, -0.000549342716, 0.0131637845, 0.0127900122, 0.0302755348, 0.0084449118, 0.0156750642, 0.00731191551, 0.0168080609, 0.0177541729, 0.00349243265, -0.00149216806, 0.0114000477, 0.00122789957, 0.0317239, -0.0108510694, -0.000110963578, 0.0191090964, -0.00482399529, 0.00537589332, 0.00873108115, -0.00892964751, -0.000299127132, 0.0129068159, 0.000374137046, -0.0101327263, 0.0165627729, 0.0281730685, 0.0079601761, -0.000799375761, -0.00477435393, -0.0151377674, 0.000276313891, -0.00489407778, 0.000313545112, -0.000478165399, 0.00969471224, 0.0205107406, -0.0121592721, -0.00925669819, -0.0105649, -0.00178125745, 0.00589275, -0.00734695652, 0.0220642313, -0.0260706, 0.00607963605, -0.00518608699, -0.00800105743, 0.0111372387, 0.00419909507, -0.00746960053, 0.0039917687, 0.0203238539, -0.0134791546, -0.00390124577, -0.0243419036, 0.00466923043, -0.0184783563, -0.0137244426, -0.0117562991, -0.00391584635, -0.0126031265, -0.0105532203, -0.00195062289, -0.0147406347, 0.000128301632, -0.00140821538, -0.0278693773, 0.0186652411, 0.0237111636, -0.00794849638, 0.00334350765, -0.0331722684, -0.00402973, -0.00794849638, 0.00914573483, -0.000411003246, -0.0218773447, -0.0152078504, 0.0202070512, -0.0244587082, -0.00788425375, -0.00353915407, -0.0172051936, -0.0192142185, 0.0416055024, 0.0287337266, -0.0155115398, -0.0118906228, 0.0155232204, 0.0094435839, 0.0176957697, -0.00160167157, -0.0115285311, -0.0154648181, -0.0443620682, -0.0228000954, 0.0114993304, -0.00794265606, 0.00234775571, -0.00340482965, -0.000406988111, -0.00704326713, -0.00149362814, -0.0217722207, -0.0290607773, -0.00120672886, -0.014763996, -0.000748274091, 0.00420493539, 0.00452614576, 0.00578762637, 0.0148808, 0.00470427144, 0.00340774981, -0.0214568507, 0.00456702709, 0.01427342, -0.00193310226, -0.0163408462, -0.035228014, -0.00740535883, -0.00120380882, -0.0254632197, -0.0120307878, -0.0449460894, 0.00503716245, 0.0167730208, 0.00546349585, -0.0113299647, -0.0149508817, -0.0158736315, 0.000644610787, 0.000438744144, -0.000903039123, -0.00656437129, -0.00778497104, -0.0116920564, 0.0271451939, -0.0127082495, -0.0123811988, -0.00684470031, -0.00857923646, 0.00146369718, 0.0175789669, 0.00368807884, 0.00201486493, 0.00803609937, 0.0115752527, 0.0243185442, -9.92832e-05, 0.00254924223, 0.0289906934, 0.0009285899, -0.0242718216, -0.00454658642, -0.0208494719, -0.00241199764, -0.0162006821, 0.00467507076, 0.0143902237, 0.0137594836, -0.0227884147, -0.0151844891, -0.00766232703, 0.0081061814, 0.0242017396, 0.00345447124, -0.0203939378, -0.0100509636, 0.00614971807, -0.0232205875, -0.00226599304, -0.0227300115, -0.0104364166, -0.0133740306, -0.00391292619, 0.00824050512, 0.0164810102, -0.014413584, -0.00932094, -0.00676293811, -0.0153480144, 0.0173219983, -0.00246163923, 0.00461958908, -0.00258866348, -0.00037030442, 0.0162941255, -0.00657605194, 0.0134090716, 0.0100392839, -0.00365595776, -0.014623831, -0.00123008969, -0.0184783563, -0.0214918926, 0.00398592837, -0.00518608699, 0.0334292389, -0.00289673335, -0.00163817278, 0.00252150116, 0.00881868415, 0.0334993191, 0.00569418352, -0.0203939378, -0.0253230557, -0.0330321044, 0.0236644428, -0.0222627968, -0.0233490728, -0.00386328436, 0.0176490489, 0.0162590835, 0.0140514923, -0.0136777209, -0.0030777792, 0.0128367338, -0.00224409229, -0.00248061982, 0.0186652411, -0.0154064167, -0.0265378151, -0.00291717402, 0.0187820457, 0.00992832, -0.0112715634, 0.0199267212, -0.00648260908, -0.00731775584, -0.00246601948, -0.0017286957, 0.0207560286, 0.00821714476, -0.0134908343, 0.00926837884, -0.00697318465, -0.00304273795, -0.028687004, 0.00486779679, 0.0162707642, 0.00338438898, -0.00655269111, -0.000522331859, -0.002728828, -0.0107809873, -0.0158385895, 0.00522112846, -0.0023360753, -0.0171467923, 0.00381072285, 0.0141215753, -0.00120380882, 0.0258603524, -0.010757627, -0.00586646888, 0.0287103653, 0.0209662747, 0.0138879679, -0.000536567299, -0.00248792022, -0.0277992953, -0.00475975359, 0.00418449473, -0.000504811294, 0.00317414221, 0.0209312346, -0.000240177746, 0.0111547597, 0.00437722122, 0.0125564048, 0.0324013643, -0.00278869, 0.00552773802, 0.000316465186, 0.00457286742, 0.00287775276, -0.00444730325, 0.0145303886, 0.00475683343, 0.0178709757, 0.00193456234, -0.010932832, -0.00562994136, 0.0175205637, 0.0109620336, -0.00718927151, 0.00635996507, -0.000800835784, 0.00526200933, 0.0349009633, 0.00304565812, 0.010424736, -0.00137755438, 0.0155699421, -0.00416989438, -0.000889898685, -0.00661693327, 0.0114467684, 0.0201603305, 0.0190156531, -0.00506344298, 0.00851499476, -0.00857923646, -0.011002915, 0.000762144569, 0.0399936102, 0.0117971804, 0.00665197428, 0.000518316694, 0.00877780281, -0.00860259682, -0.00383992377, -0.000433999, -0.00357711525, -0.00112277619, 0.000955600815, 0.0176724102, 0.00205866643, 0.000938810233, -0.0160254762, -0.0230570622, 0.00457578758, -0.0166211762, 0.0235242788, 0.000976771466, -0.00295805535, 0.0117971804, 0.000446409394, 0.0362325273, 0.0112598827, 0.00086361781, -0.00658773212, -0.00841571111, -0.00147172739, -0.0328919403, 0.0131170629, -0.0381247476, -0.0146121504, 0.0137127619, -0.00678045861, 0.0252996944, 0.00155203, 0.02200583, 0.0110262753, 0.013817885, 0.0189222097, -0.000299674663, 0.0169365462, -0.017964419, 0.000794265594, -0.00171555532, 0.0118614221, -0.0295046307, 0.031537015, 0.00884204451, -0.0301820934, -0.0143201416, -0.00701406598, 0.00523572881, 0.0165978149, 0.0173219983, 0.0308128335, -0.0197748765, 0.0121826325, 0.0078959344, 0.0067045358, -0.00389832561, 0.0137828439]
08 Aug, 2024
PostgreSQL – Drop Procedure 08 Aug, 2024 In PostgreSQL, the DROP PROCEDURE statement is used to remove a stored procedure from the database. Let us look at the syntax, usage, and examples of the DROP PROCEDURE statement, along with additional tips to enhance your understanding and improve database management. The DROP PROCEDURE statement in PostgreSQL allows you to delete stored procedures that are no longer needed. Properly managing and removing unnecessary stored procedures can help maintain database performance and organization. Syntax DROP PROCEDURE [IF EXISTS] procedure_name (argument_list) [CASCADE | RESTRICT]; Parameters Let’s analyze the above syntax: procedure_name: Specify the name of the stored procedure you want to remove. IF EXISTS: Use this option to avoid errors if the procedure does not exist; PostgreSQL will issue a notice instead. argument_list: Specify the argument list if the procedure name is not unique. Different procedures can share the same name but have different argument lists. CASCADE | RESTRICT: CASCADE: Drops the procedure and its dependent objects. RESTRICT: Default option; prevents dropping the procedure if it has dependent objects. To drop multiple stored procedures, you specify a comma-list of stored procedure names after the drop procedure keyword like this: Syntax: drop procedure [if exists] name1, name2, ...; PostgreSQL Drop Procedure Statement For the sake of example, we will create a stored procedure on the sample database ie, dvdrental. Example 1: Creating and Dropping Stored Procedures Let’s create a couple of stored procedures that manage actors so that you can learn how to drop them: The following ‘insert_actor()’ stored procedure inserts a new row into the actor table. It accepts two arguments which are the first name and last name of the actor. CREATE OR REPLACE PROCEDURE insert_actor( fname VARCHAR, lname VARCHAR) LANGUAGE plpgsql AS $$ BEGIN INSERT INTO actor(first_name, last_name) VALUES(fname, lname); END; $$; The following ‘insert_actor’ stored procedure also inserts a row into the actor table. However, it accepts one argument which is the full name of the actor. The ‘insert_actor()’ uses the ‘split_part()’ function to split the full name into first name and last name before inserting them into the actor table. CREATE OR REPLACE PROCEDURE insert_actor( full_name VARCHAR ) LANGUAGE plpgsql AS $$ DECLARE fname VARCHAR; lname VARCHAR; BEGIN SELECT SPLIT_PART(full_name, ' ', 1), SPLIT_PART(full_name, ' ', 2) INTO fname, lname; INSERT INTO actor(first_name, last_name) VALUES(fname, lname); END; $$; The following stored procedure deletes an actor by id: CREATE OR REPLACE PROCEDURE delete_actor( p_actor_id INT ) LANGUAGE plpgsql AS $$ BEGIN DELETE FROM actor WHERE actor_id = p_actor_id; END; $$; And the following stored procedure updates the first name and last name of an actor: CREATE OR REPLACE PROCEDURE update_actor( p_actor_id INT, fname VARCHAR, lname VARCHAR ) LANGUAGE plpgsql AS $$ BEGIN UPDATE actor SET first_name = fname, last_name = lname WHERE actor_id = p_actor_id; END; $$; Dropping Stored Procedures First, attempt to drop the ‘insert_actor’ stored procedure: DROP PROCEDURE insert_actor; Output: Because there are two ‘insert_actor’ stored procedures, you need to specify the argument list so that PostgreSQL can select the right stored procedure to drop. Second, drop the ‘insert_actor(varchar)’ stored procedure that accepts one argument: DROP PROCEDURE insert_actor(VARCHAR); Example 2: Detailed Steps to Drop Procedures Since the ‘insert_actor’ stored procedure is unique now, you can drop it without specifying the argument list: DROP PROCEDURE insert_actor; It is the same as: DROP PROCEDURE insert_actor(varchar, varchar); Third, drop two stored procedures using a single drop procedure statement: DROP PROCEDURE delete_actor, update_actor; Best Practices for Using DROP PROCEDURE Use the drop procedure statement to remove a stored procedure. Specify a comma-separated list of stored procedure names after the drop procedure keywords to drop multiple stored procedures. If the stored procedure name is not unique, use the argument list to specify which stored procedure you want to drop. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure
https://www.geeksforgeeks.org/postgresql-drop-procedure?ref=asr10
Languages
PostgreSQL – Drop Procedure
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0430169068, -0.0140576549, -0.0166015364, 0.0573398, 0.000589252042, -0.00950037, 0.0160710588, 0.0197723452, -0.0218580868, 0.0331548452, 0.057484474, -0.023389237, -0.0212311577, -0.0663096905, -0.00431917235, -0.0014173697, -0.0225452948, 0.012249209, -0.000472079817, -0.0227864217, 0.0277053956, 0.0105432412, 0.0066189128, 0.021833973, 0.0290798154, 0.0411843471, 0.00571770407, 0.00559412688, -0.00982589088, 0.00324917492, -0.0021038258, 0.0466820225, -0.0089759212, -0.0055609718, -0.0398099273, 0.000411044748, -0.0161313396, 0.00163362967, -0.025173571, -0.00239468412, 0.00771000888, 0.00690223603, -0.0216772407, -0.0108386204, -0.0197844021, 0.0237509273, -0.0115619991, -0.00641395571, -0.0523726, 0.0560377203, 0.0177830532, -0.030068431, 0.0168426614, -0.0357107855, 0.0294415038, -0.015600862, -0.0100429049, -0.0175419282, -0.0145881325, -0.0460792072, -0.0177589413, -0.00478635402, 0.0263309758, -0.0144916819, -0.0161072277, 0.0166738741, 0.00126289821, 0.00771603687, -0.0194106549, -0.00904223, -0.00224699429, -0.028742237, 0.00549164834, 0.0140094301, -0.0264756512, -0.0132860513, 0.0206645112, 0.0310811624, 0.00840927474, 0.00477429805, 0.012466222, -0.00659480039, 0.0161433965, 0.000515783904, 0.0250530075, -0.0233651251, -0.00667316653, -0.0199652463, 0.0473089516, 5.98105908e-05, 0.0456451811, -0.0245345868, 0.0444636643, 0.0408226587, -0.0299237557, 0.00154019333, -0.0420765132, 0.0083731059, 0.0162277911, 0.0289833639, -0.0321662277, 0.0316357501, 0.00486170594, 0.00124858133, 0.0203389917, 0.01168859, 0.0125988415, 0.00989220105, 0.000577195722, 0.0282117613, 0.0150101036, 0.023594195, -0.0281876475, 0.0529030785, -0.0260416251, -0.0148413153, 0.0505882688, -0.0428240038, -0.0205560047, -0.0371575393, 0.000236039908, -0.0216531288, 0.014479626, 0.0401957296, -0.0176745467, 0.0220027622, 0.0243657976, -0.00832488, 0.0181206316, 0.00761355832, -0.0186269954, -0.0219183676, -0.00530477567, 0.0345051549, 0.018036237, 0.0105191283, -0.0191815849, 0.0289592519, -0.015588806, -0.0389659852, -0.0178915616, -0.00199381192, 0.0150944972, -0.05299953, -0.00370430062, -0.00518119847, 0.00365607534, 0.0439572968, -0.0221474376, 0.00977163762, -0.0268132295, -0.0311293863, 0.0475259647, -0.00638381485, 0.0113027887, 0.0209538639, -0.00807169825, -0.00710719358, 0.00354455458, 0.0270784684, -0.0258728359, -0.0427275561, -0.0150342155, -0.00962093379, -0.0217495803, 0.059027683, 0.0372057669, 0.00393035635, -0.0156129189, 0.00758341746, -0.0246551502, 0.00977766607, -0.0080355294, -0.0108928746, 0.000447967177, -0.0417148247, -0.00253182463, 0.0199531894, 0.0142867249, -0.0223041698, -0.00462359423, -0.0245707557, -0.0252217967, -0.0395688042, 0.0148051465, 0.0267891157, -0.000225867392, -0.0357831232, 0.0194468237, -0.0199290775, -0.0389177613, 0.000228881472, 0.0473089516, 0.0362171493, 0.0188198965, 0.019362431, -0.00981383491, -0.00359277963, -0.00811389554, 0.0106879165, -0.0472125, -0.0962093398, 0.0157937631, 0.0412566848, -0.0120683638, 0.00817417633, 0.0178674478, -0.0289833639, 0.0441984236, -0.00764369918, 0.0126350103, 0.0401716195, 0.0222318321, 0.00744477, -0.0222318321, -0.0167703237, 0.00774617773, 0.00391227193, 0.00779440301, -0.0279465225, -0.0337817743, 0.00392734213, -0.0267650038, -0.0150583284, -0.0244863611, -0.0160710588, -0.0236544758, 0.0108325928, 0.00663096923, 0.0151668349, 0.0266685523, 0.00461153779, -0.0292968284, 0.00201943167, -0.000271266937, 0.0125988415, -0.0335647613, 0.00158540451, -0.0217857491, -0.035879571, 0.0430169068, 0.0247877687, 0.0153959049, 0.0140455989, -0.0260898508, 0.0387007482, -0.019386543, 0.0216651857, 2.38418197e-05, 0.0328413844, -0.000135821843, -0.00616077334, -0.00830679573, 0.0232083928, -0.010923015, -0.0480323322, 0.00787276868, -0.0134910084, 0.00685401121, 0.0281153098, -0.0426552184, 0.0134066148, -0.0502506904, 0.0189886857, 0.0266444404, -0.0235339124, -0.0159987211, -0.00213547354, 0.00289803511, -0.004231764, 0.0146604702, 0.0159504954, -0.032961946, 0.0115258303, -0.039882265, 0.0225452948, -0.0559894927, 0.0100730453, 0.0217616353, 0.00561823929, 0.0147086959, -0.0156370308, -0.0246069245, 0.0381943844, -0.0131896008, -0.0339746773, -0.0141782183, 0.0204595551, 0.0111761978, 0.00533491606, 0.00506666349, -0.0204233862, 0.0479358807, 0.00922307558, 0.045018252, 0.053674683, -0.0088131614, 0.0178674478, 0.00518119847, 0.0207971316, -0.00470798835, -0.022497071, 0.0279947463, 0.00426491909, -0.0453558303, -0.0244501922, -0.0181809124, 0.0216892976, -0.00231029, -0.0145519637, 0.0276571698, -0.0102960868, -0.0250530075, -0.0265479907, -0.0171199571, 0.0238835458, 0.00520832511, -0.0247636568, -0.0262827519, -0.0063235336, -0.0136718526, 0.00295982347, -0.0746526569, -0.000972039823, 0.0602333136, -0.0150342155, -0.0263550896, -0.0336371, -0.00580812618, 0.00649232185, 2.97875577e-05, -0.0375674553, 0.0191092473, 0.0505400412, 0.017132014, 0.00243537407, -0.0130810943, -0.0352526456, 0.0416907109, 0.0141420495, 0.01035034, 0.0282358732, 0.00241578277, -0.0167823806, -0.00196367106, 0.0201460905, 0.000953201845, 0.0185426, 9.24827145e-06, 0.0310570486, 0.000701903191, 0.0272472557, 0.0149498219, 0.0381702706, 0.00167884084, -0.0253182463, 0.0154923555, 0.0188078396, -0.00828268379, 0.0260175131, 0.0351320803, 0.0353490934, -0.00916279387, -0.0194829926, -0.00302311918, -0.0176263228, 0.0108567048, -0.0388213098, 0.02115882, 0.00296886591, 0.0224367883, -0.0175419282, 0.0466579124, -0.00584730925, -0.0102056647, -0.0543016121, -0.0139612043, 0.0165291987, 0.0192177556, 0.0222197752, 0.0286699, 0.0344328135, -0.0229069851, 0.0113208732, 0.0154079618, -0.0297549684, -0.00290255621, 0.0149859907, 0.0187596157, -0.0216772407, -0.00235098, 0.0551214404, -0.0122431805, -0.0187475588, -0.000423477817, -0.0055459016, -0.00502748042, 0.013599515, -0.00977163762, -0.0320456661, 0.0245828126, -0.0292003769, -0.012912306, -0.00228165626, -0.0487315953, -0.0160228331, -0.000182445845, -0.0239197146, 0.0210623704, 0.0252459086, 0.00154320744, -0.000973546878, -0.0179518424, 0.0328896083, 0.0359036848, 0.0251012333, 0.0168908872, 0.0174937025, -0.0181688555, 0.0106517477, 0.0319251046, 0.0160831138, -0.0256799366, 0.00629339274, 0.024040278, -0.0110315215, 0.0333959721, -0.0104588475, 0.011242507, 0.0082103461, 0.0075291642, 0.0170717314, -0.0218098611, -0.0172887463, -0.0441984236, -0.0179759543, -0.000188474, 0.0469472632, 0.0272231437, 0.0183014758, 0.032769043, 0.00940392, 0.0317563154, 0.046103321, 0.0121889273, -0.00552480295, -0.0133101642, 0.0123396311, -0.0248601064, -0.0299237557, -0.0203992724, 0.0393276773, -0.00601308374, 0.00693237688, 0.0170958452, -0.00283775339, -0.0143108377, -0.0178433359, 0.0126591232, 0.0150221596, -0.0153115112, 0.00342399138, 0.0293209404, -0.0144434571, 0.0366270617, 0.0349150673, -0.00681181392, -0.0133463331, 0.014021486, 0.000604322413, 0.0219183676, 0.00595581625, -0.0114414366, -0.00361990649, 0.000723001722, 0.0131534319, 0.0135633461, 0.000615248457, -0.0303577837, 0.0152391735, 0.00982589088, 0.0094461171, 0.00802950095, 0.00150402437, -0.0207006801, 0.0143228937, 0.0262827519, -0.0213758331, -0.0353249833, -0.0406297557, 0.00396049721, -0.0138406418, -0.0391106643, -0.0193383172, 0.0272713676, 0.00576894311, -0.031201724, 0.0107180579, -0.00839119, -0.00746888295, 0.00964504667, -0.0141541054, -0.0471401624, 0.0379050337, -0.0165291987, -0.0472848378, -0.0078366, -0.0216290168, -0.0124782789, -0.00484663574, -0.0138768107, 0.0132016568, -0.0276330579, 0.0348427296, 0.0152030038, -0.0164206922, -7.24320344e-05, 0.0267891157, 0.0177348293, 0.0334200859, 0.00865642913, 0.00968121551, -0.0420282893, 0.0164689161, 0.00729406625, -0.0192539245, 0.0237750392, -0.0124541661, -0.0208212435, -0.0197120626, 0.0453799441, 0.0350838564, 0.0127796866, -0.0225452948, -0.0161192827, -0.000886892143, 0.00103608891, 0.00703485543, -0.00208574114, 0.0315393023, -0.0206765682, 0.0176986605, -0.00301407697, 0.0257281605, 0.0211105943, 0.0110616628, -0.00392432837, -0.0290557016, -0.0155164683, 0.0176142659, 0.0130449254, 0.0377121307, 0.00430410169, 0.0061487169, 0.0355902202, 0.00293420395, -0.0484904684, -0.0269579049, 0.0187716708, 0.0117127029, -0.0354214311, -0.0295861792, 0.00123426446, -0.00607637921, 0.01168859, 0.00100519462, 0.000118114142, 0.00901811849, -0.022738196, 0.0191092473, 0.00355058257, 0.0105552971, -0.0185667146, -0.0350838564, -0.00287241535, 0.0146484142, -0.00708910916, 0.0180241801, -0.0355902202, 0.0217736922, -0.0166497603, 0.00798127614, -0.00019440797, 0.0155164683, -0.00633558957, -0.00685401121, -0.00931952614, 0.000713959453, -0.0175660402, 0.00494911429, -0.0268373415, 0.0258004982, 0.00718555925, 0.00228316337, -0.0280429721, -0.00052294234, -0.00592567539, -0.0350838564, -0.0160831138, 0.0228105336, 0.00646820897, 0.00945214555, 0.000697758805, -0.00119734206, 0.0292244907, -0.00865642913, 0.00263882428, -0.0265721027, 0.0101393545, 0.0255111475, 0.00399365183, 0.014925709, 0.0185667146, 0.00110993383, 0.0129002491, -0.0421729647, -0.0166377053, 0.029827306, -0.0089337239, 0.0149498219, 0.00204806519, 0.0175660402, 0.0166738741, 0.0104347346, -0.0409914479, 0.0124903349, 0.00728201, 0.0282117613, -0.0181206316, -0.00967518706, -0.00839721877, 0.00108958886, 0.0117609287, -0.014913653, 0.0075954739, 0.0233651251, 0.0187355019, 0.00555192959, -0.002699106, 0.0235098, 0.028477, 0.035204418, 0.015154779, 0.0611495934, -0.0321903415, -0.0140938237, 0.00442466512, 0.0100609893, 0.0204354413, -0.0177709982, -0.0287663508, 0.00582319684, 0.031201724, 0.0121648144, 0.00701074302, -0.0446324535, 0.00370128662, -0.00988014415, -0.00763164274, 0.0214722846, 0.0182894189, -0.022738196, -0.00637175888, 0.00887344219, -0.00166527752, 0.00288145756, -0.0142385, -0.0114776054, 0.0203510486, 0.0502506904, -0.03696464, -0.0408467725, 0.0137562472, 0.012695292, 0.00738448836, -0.0143228937, -0.0112003097, -0.00342700561, 0.0079451073, -0.00149724272, -0.00849366933, 0.00992234144, -0.0125506166, 0.012020139, -0.0396170281, 0.00667919451, -0.0217134096, -0.0481770076, -0.00911456905, -0.0320456661, -0.0214361157, -0.0128279114, 0.0176142659, 0.0207368489, 0.0203751605, 0.00817417633, 0.00538314134, -0.0115439147, -0.0142987808, -0.0438849591, -0.0285734497, 0.027391931, -0.012912306, -0.0259692874, -0.0124179972, -0.00575085869, -0.0232204497, 0.0123577155, 0.0220751, -0.00143093301, 0.0303336699, 0.0212311577, -0.00187174184, 0.00787879713, 0.00880713295, 0.0441743135, -0.000600931584, 0.000695121475, -0.0164206922, -0.0502024665, -0.0234495196, -0.0337335505, -0.0323109068, 0.0189886857, -0.00633558957, 0.00028878625, 0.0233048424, -0.0164930299, -0.025390584, 0.000409914472, 0.00319492165, -0.00640792772, -0.00522038108, -0.00588046433, -0.00951242726, 0.00377663854, 0.00236755749, -0.00610049162, -0.000914018834, 5.02503135e-05, 0.00106924376, 0.00117322942, 0.0349632911, 0.00963299, -0.0127314609, 0.0270543545, 0.0295861792, -0.0200014152, -0.00993439741, 0.0281876475, 0.0157696512, -0.0284287743, 0.075472489, 0.00522942375, -0.0518903472, 0.028477, -0.0202545971, 0.0152873984, 0.0219304245, -0.00655863155, 0.0150824413, 0.0108687617, 0.00205710763, 0.00100218062, 0.00912059657, -0.00414435565, -0.0240523349, 0.0331066214, 0.0163483527, 0.0188560653, 0.0286457874, 0.0100790737, 0.0287663508, -0.0183858704, 0.0227020271, -0.0171922948, 0.011905604, -0.0226899721, -0.0224247333, -0.0217495803, -0.0027654157, -0.0143108377, 0.00125988421, -0.0340229, -0.0015869115, -0.0402439572, 0.0294415038, 0.0300202072, 0.0136718526, -0.00416244, -0.00155224965, 0.0175539851, 0.0141902743, -0.00438548205, 0.00346317445, -0.0124541661, 0.00745682651, -0.0172164068, -0.00638381485, -0.0410155579, 0.0336371, 0.00115439144, -0.040750321, -0.0192418676, 0.0177227724, -0.0166859291, 0.023594195, -0.0174695905, -0.0336371, 0.0128881931, 0.00146634842, 0.00518421223, -0.0104829594, 0.0131534319, 0.0304060075, 0.00758341746, 0.0112244226, 0.0106457202, -0.0100368764, -0.00652849069, 0.00734831952, -0.0421970785, 0.0330583975, -0.00654657511, -0.0254629217, 0.01871139, 0.00858409144, 0.0185184889, 0.0169873387, 0.0215446223, 0.0283323228, 0.0314428508, -0.0265721027, 0.0188198965, -0.0275124945, 0.00323410449, 0.0152632855, 0.00742065767, -0.0161675084, -0.0201702025, 0.00284076761, -0.0183376446, -0.0148895402, -0.0248601064, -0.0103322556, -0.0194347687, -0.00114836334, 0.0171079, -0.0240885038, 0.0294656157, 0.00149347517, -0.0476706401, -0.0306471344, 0.0259451736, -0.0115378862, -0.0301889945, -0.0182050243, -0.0059497878, 0.00658274395, 0.0128881931, 0.0248118807, 0.000349067792, -0.0471401624, 0.0101152426, 0.0190730784, 0.0313705131, -0.0150944972, 0.00767986802, -0.0117729846, -0.0136356838, 0.0204354413, 0.00635970244, 0.0232566185, -0.0224850141, -0.032769043, -0.0367235132, -0.0299237557, -0.0593170337, -0.0186028834, -0.0156611446, 0.0263550896, 0.00584429502, 0.00451508723, -0.0144434571, 0.00573880272, 0.0236544758, -0.00140229927, -0.0421970785, -0.00494007207, 0.0108808177, 0.0150703844, 0.0107662827, -0.0135392342, -0.00553987361, -0.000644258922, -0.0217495803, -0.00953051168, -0.0261863, -0.0167341549, -0.0371816531, 0.00418052496, 0.0302372202, -0.00611556228, -0.00737846037, 0.0166015364, 0.00935569499, 0.0310570486, 0.0122070117, 0.0292486027, -0.00610049162, 0.0243416857, 0.00463866442, 0.0260175131, 0.00398762384, 0.0292727146, 0.00449398858, 0.0217134096, -0.0210141446, -0.0242572911, -0.0220148172, -0.0253182463, 0.00662494125, -0.0588830076, -0.00686606718, -0.0179518424, -0.0030336685, -0.0144555131, 0.0109712398, 0.00550069055, 0.0226658583, 0.0229310971, 0.0103865089, 0.00653451867, 0.0215566792, -0.00450604502, 0.00374348368, -0.0497202128, 0.0258487239, -0.00543438084, -0.0259692874, -0.0233289562, -0.00978369359, -0.0115077458, -0.0282358732, -0.019603556, 0.0220509879, 0.00177830539, 0.016951168, -0.0248842202, -0.0324314684, -0.00275034527, 0.00922910403, 0.0141058806, -0.0313222893, -0.0166015364, -0.00730009424, -0.00322204828, -0.0102780024, 0.00398159586, 0.015142723, -0.00871671084, -0.00896989275, 0.0597510636, 0.0103865089, 0.0161675084, 0.0262827519, -0.0057207183, 0.0130328685, -0.0213155523, 0.00805964135, 0.00032231785, 0.0080234725, -0.0119357444, -0.00386706064, -0.00261019054, -0.0180965178, 0.000669878616, -0.0257281605, -0.0140455989, 0.0286699, 0.0137683032, 0.00569660543, -0.0427034423, 0.0555072427, 0.012466222, -0.038724862, -0.00140983448, -0.0169752818, 0.0100971581, 0.0170235075, -0.0254146978, 0.000734681264, 0.00818623323, 0.0237268135, 0.0335647613, -0.00457235472, 0.0217736922, -0.0154802995, -0.0304542333, -0.0114293797, 0.00386103266, -0.0336612128, -0.00272924663, -0.0266926661, -0.0102538895, 0.0396170281, 0.0251253452, -0.0140697109, -0.00840324629, 0.0147689767, -0.0115439147, -0.0544462875, 0.000748621358, -0.0107542267, -0.0246310364, -0.000491671322, 0.0155405812, 0.0263550896, -0.0148051465, 0.0405333079, -0.0165050849, -0.0200255271, -0.030526571, -0.022919042, 0.00502748042, 0.0180724058, -0.00972944, -0.0175660402, 0.00997056626, 0.0303577837, 0.0082404865, -0.0199893583, -0.000617509, -0.0176504347, -0.0235459693, -0.0078908531, -0.00837913435, -0.0332030728, 0.0198205709, -0.015817875, -0.00349030108, -0.0157575943, -0.021604903, 0.0207730178, 0.00933761057, -0.012020139, -0.00320396386, -0.00879507698, 0.0111882538, 0.000666864507, -0.00110465917, -0.00963901822, -0.00380677916, -0.0105131008, -0.0235459693, 0.0129002491, -0.0403886326, 0.0100911297, -0.00638381485, 0.0361206979, -0.0136718526, -0.0380014814, 0.0141782183, 0.018506432, 0.00755930506, 0.00181748846, -0.00582319684, -0.00811389554, -0.00457235472, -0.0137080224, 0.0294415038, -0.0171199571, -0.00524750818, -0.00461153779, -0.0161072277, 0.010567354, -0.020941807, 0.00555795804, -0.00505460706, -0.0241246726, 0.0200134702, -0.00865040068, 0.00246551493, 0.0167823806, -0.0155646931, -0.0247877687, 0.0207971316, -0.0088011045, -0.00110541272, 0.00947625842, -0.0148654273, 0.0194227118, -0.00459948136, 0.0174093079, -0.00698663061, 0.0331548452, -0.00250168378, 0.0333718583, -0.0028467956, -0.013370445, -0.0260898508, -0.00908442773, 0.00462359423, 0.00757738948, 0.000397858152, 0.0210141446, -0.03161164, 0.0262345262, -0.0341193527, 0.0230637174, 0.0274160448, -0.0216651857, -0.0274642687, -0.0228105336, 0.0239799954, 0.0422694162, -0.0267650038, 0.000716596784, -0.00838516187, 0.00107301143, 0.0107723111, 0.0269579049, -0.00320396386, 0.0227020271, -0.00800538808, -0.00425286265, -0.0011611731, 0.00531984586, -0.0197361764, 0.00722172856, 0.00845147204, 0.00204655831, 0.0225694086, 0.025173571, -0.006456153, -0.0134307267, 0.00676961709, -0.0130810943, -0.00417449651, 0.0078908531, 0.02115882, -0.0144434571, 0.00289049977, -0.0159866642, -0.0100851012, 0.00274431705, -0.0238956027, 0.00167733384, -0.0310088247, 0.0193503741, -0.0202425402, -0.0147207519, 0.0336129852, 0.00925321598, -0.00828871131, 0.000505611417, 0.00672742, -0.036289487, -0.0231842808, 0.0179277305, -0.0466820225, -0.00860820338, -0.00779440301, 0.0202425402, 0.0106698321, -0.0434268191, 0.00566043658, 0.0150944972, 0.0109169865, 0.00413229968, 0.0110134371, -0.00878904853, 0.0199411325, 0.00459043914, -0.00295680948, -0.0304060075, 0.00702882744, 0.01825325, 0.0202907659, -0.00944008864, 0.0217495803, 0.00199230481, -0.00222137477, 0.00166377053, -0.010567354, -0.005398212, 0.00232837442, 0.015600862, -0.00802950095, -0.0236906447, -0.00134578533, -0.00174967165, -0.0223644506, 0.00649835, 0.00559412688, -0.00399968028, -0.026499765, 0.00772206532, 0.0131172631, -0.00209176936, 0.00177378429, 0.0159384385, -0.0201943163, 0.00252127531, -0.00306531624, 0.016927056, -0.0312258378, 0.0184702631, 0.00347824488, -0.0167341549, 0.0141420495, 0.0150462724, -0.0206524562, 0.00596485846, 0.0274160448, 0.0235580262, 0.00620297, -0.0310570486, 0.0176986605, 0.0138406418, 0.0158661, -0.00188831927, -0.0158299319, -0.0075291642, -0.0121045327, -0.00411722902, 0.0177830532, -0.0210985392, 0.0235218573, -0.000871821772, -0.00478032604, -0.00221685367, -0.00498829735, -0.00349030108, 0.00723378453, -0.0201099217, 0.00940392, 3.76759635e-05, 0.0249324441, -0.0148051465, 0.000614871678, -0.0171922948, 0.0164689161, -0.0127314609, -0.00895783678, 0.00888549909, 0.0115921404, 0.024715431, -0.00514502916, -0.00472908653, -0.0397375897, 0.0366994, -0.0353490934, 0.030960599, 0.00813800748, 0.0168306064, 0.0170837883, -0.0127073489, 0.000954708899, -0.00256950059, 0.00930144172, 0.0245828126, 0.0250771195, -0.0220992118, 0.0141661614, 0.00352044194, 0.02674089, -0.0015190948, -0.0109591838, 0.00657068798, 0.00188530516, -0.000276164792, 0.0156490877, -0.0159987211, -0.0278741829, 0.0541569367, -0.00901209, -0.0388695374, -0.0226176344, -0.0291521531, 0.0226176344, -0.00851175375, 0.0372057669, 0.00693840533, -0.00244441652, 0.00758944592, 0.00347824488, 0.00986808818, -0.0108567048, 0.00594677404, 0.000115665207, -0.0083309086, 0.00555494381, 0.00523243751, 0.00484663574, 0.0249324441, 0.0346739404, -0.00940994825, 0.00271719042, -0.00849366933, 0.0152150607, -0.0201099217, -0.0023223462, -0.0305989087, 0.0137080224, -0.000147313011, -0.00598294288, -0.00364100491, -0.0015145737, -0.025173571, 0.0108868461, 0.0343363658, -0.013599515, 0.0058684079, 0.0148533713, 0.0146001885, -0.0115017174, 0.0118995756, -0.0191333611, -0.0314428508, 0.0446083397, -0.00188379805, -0.00324917492, -0.0172646325, 0.0161192827, 0.0261621885, -0.00723378453, -0.00717350328, -0.00903620292, 0.0164327472, -0.0139370915, -0.00152587646, 0.00612159027, 0.017807167, -0.00119282096, -0.00629339274, 0.0182291381, -0.0142385, 0.0414978117, -0.00749902334, 0.000739579147, -0.00749902334, -9.38131489e-05, 0.00279555633, -0.00404790556, 0.00167582685, 0.0251976829, -0.0366270617, -0.0122853778, 0.00532888807, -0.0362171493, 0.0212552715, -0.0117609287, 0.020037584, -0.000214376225, -0.0113329291, -0.00701677101, -0.00541931, 0.00367114577, 0.022497071, 0.0130810943, 0.0132860513, 0.0155526372, -0.0474295169, 0.0068178419, -0.0084575, 0.010133327, -0.00453317165, 0.00188982626, -0.0127073489, 0.0203631036, -0.00664905366, 0.0102116931, 0.0182894189, 0.0334442, -0.00599198509, -0.00741462922, -0.0305747967, 0.0321421176, 0.00948228594, 0.0116825625, -0.00585032348, -0.00919293519, -0.00180995325, 0.0366752893, 0.0136959655, -0.0189645719, -0.0138044721, 0.0162157342, 0.000150703854, 0.0164086353, 0.0182894189, 0.0210262015, 0.0130328685, -0.00921704713, -0.011344986, -0.0277295075, -0.00708308071, -0.0265479907, 0.000647649809, 0.00542835239, -0.00201189634, 0.00947625842, 0.0153959049, 0.0147448648, 0.0129364179, -0.0324073546, -0.00358675164, 0.00362292049, 0.0214120019, -0.0224488452, -0.0263792016, 0.00583223905, -0.00582018262, 0.00965107419, 0.0356384479, -0.0275124945, -0.00173460133, -0.0275124945, -0.0200858098, 0.0196879506, -0.00917485, -0.0313222893, -0.0104467906, -0.00882521737, -0.0336129852, -0.0120080831, 0.0167944375, 0.00182954466, -0.00764369918, 0.0206524562, 0.0143831754, -0.0124903349, -0.00421669381, 0.000161629883, 0.00606432278, -0.0230878294, 0.00374649768, -0.0244622491, -0.00799333211, 0.00304723182, -0.00683592632, 0.0224850141, -0.00677564507, 0.00221986766, -0.00916279387, -0.0106698321, -0.00610350585, 0.0232083928, 0.00551877497, 0.020483667, -0.011025494, 0.0112847043, -0.015154779, 0.0158661, -0.00558508467, 0.0216772407, 0.0356866717, -0.00791496597, 0.0146725271, 0.000593773148, 0.0250288956, -0.00697457418, -0.0302131083, -0.0151306661, -0.00478635402, -0.0207006801, 0.00731817866, 0.0254146978, 0.0117970975, -0.0148654273, 0.0293209404, -0.031201724, 0.0171079, -0.0141420495, 0.00865040068, 0.0173369702, -0.00725789741, -0.017361084, 0.00573578849, -0.0128037985, 0.00403886335, -0.00229069847, -0.00446083397, 0.0327449329, 0.0134910084, 0.0229913797, 0.0112786759, -0.0116584497, 0.012912306, -0.0233410113, 0.0116222808, -0.0034420758, -0.0202545971, -0.0182894189, -0.0206162855, 0.00330041419, -0.00192599522, 0.0281394217, 0.0120261675, -0.00020213153, 0.0218460299, 0.000321187574, 0.0287904628, -0.0358313471, 0.0185908265, -0.015588806, -0.00690223603, -0.00515407138, -0.0190730784, 0.011344986, -0.0325520299, 0.00267499336, -0.0164327472, -0.00926527288, 0.00629942073, 0.00711925, 0.0337335505, -0.0392553397, -0.0130810943, -0.0131052062, -0.00805964135, -0.00745079806, -0.0102297775, 0.00405996153, 0.0123456595, 0.0245948676, 0.011483633, -0.0129967, -0.0104769319, 0.00799936056, 0.00796921924, 0.00719158771, 0.00645012455, 0.00394241279, 0.00839721877, 0.022063043, 0.0164327472, -0.0205921736, 0.00753519218, -0.0167703237, 0.0129364179, -0.00221233256, 0.031201724, 0.0225814655, -0.0187355019, 0.0164689161, -0.0215687342, -0.00355661078, -0.00930144172, 0.0191936418, -0.0104829594, -0.00240824744, 0.0117729846, -0.00705294032, 0.0170476194, 0.00173309422, -0.00458441116, -0.015359736, -0.00716747483, -0.0148172025, 0.0109049305, -0.0110978317, 0.0169029441, 0.00255443016, 0.011803125, 0.00798730366, 0.0088131614, -0.0026327963, -0.010567354, 0.0100670168, 0.0279465225, -0.00358072342, 0.00394844078, 0.00284528872, 0.0113148447, -0.0244260803, 0.00101046928, 0.0227623098, 0.0327931568, 0.00887344219, -0.0136356838, 0.0500577912, -0.0100007076, 0.00308942888, 0.0187596157, 0.0297067426, -0.0084575, 0.00472305855, 0.0228587594, -0.0141420495, 0.0210864823, -0.00349934329, 0.00670933537, 0.0299719814, -0.00579305599, -0.041425474, 0.0103744529, 0.0259692874, 0.0223403387, -0.0116584497, 0.0259210616, 0.00117021543, -0.012924362, 0.00543739507, 0.0246913191, -0.00913265347, -0.0144434571, -0.0237991512, -0.00741462922, 0.0260175131, 0.0313464, 0.000612234406, 0.00151306659, 0.010681889, -0.000347184, 0.00726392539, 0.0114293797, 0.0011348, 0.0117850406, -0.0206404, -0.00594074558, 0.0135633461, -0.0254146978, -0.00927732885, -0.0180844609, -0.00324917492, -0.0108145084, 0.00954256766, 0.00105568045, 0.0404368564, -0.0180603489, -0.0105010439, 0.01214673, 0.00745079806, -0.00393638434, 0.0135030644, -0.0027804859, 0.00977163762, -0.000978821539, 0.000199305839, 9.15525889e-05, -0.0180241801, 0.0128399683, -0.0277777333, 0.013599515, -5.2652158e-05, 0.0241367277, -0.0122371521, -0.0118091535, -0.0097113559, 0.00889152661, -0.00775220618, 0.0221353807, 0.00940392, -0.00711925, -0.00889152661, -0.012020139, -0.00764972717, 0.00682387035, -0.0125988415, 0.00819226075, 0.01168859, -0.0068841516, -0.00349934329, 0.000232272301, 0.0220027622, 0.00818623323, 0.0194829926, 0.0198687948, -0.000544794428, 0.0161192827, 0.000556473969, -0.000423477817, -0.00399365183, -0.0104226777, -0.0128037985, 0.00568153523, -0.0145157948, -0.000831131707, 0.0136959655, 0.00723378453, -0.0114474641, 0.00273527484, -0.00774014974, -0.0131052062, -0.0127314609, 0.0110918032, 0.015817875, -0.0043794536, -0.0142385, -0.0194106549, 0.00368923019, 0.00644409657, -1.2020987e-05, 0.015600862, -0.0221112687, -0.0114474641, 0.00998865068, -0.00333959726, 0.0238714889, -0.000712452456, 0.00367114577, 0.0131896008, -0.00781851541, -0.00752313621, -0.014262612, 0.0044216509, -0.0146243013, -0.000116041963, -0.0132498825, 0.0243416857, -0.00573880272, 0.010464875, -0.00526257837, 0.00146107376, 0.00420162315, 0.00109184941, -0.00744477, -0.012466222, 0.0230034348, -0.0179518424, 0.00730612269, 0.0161554534, 0.0188560653, -0.00651040627, -0.0148413153, -0.0044879606, -0.00953051168, -0.0150824413, 0.00398762384, -0.0341916904, 0.0191695299, -0.00641998416, -0.0264756512, 0.00329137198, -0.00580812618, -0.0276089441, -0.00156581297, -0.00727598183, -0.0216410719, 0.00471100211, 0.00324917492, -0.0259451736, 0.00948831439, -0.0203751605, -0.0123938844, 0.00525655039, 0.000306870701, -0.00448193261, 0.0161675084, -0.00413832767, -0.0176624916, 0.00391528616, 0.00560316909, 0.0062572239, -0.010247862, 0.0390383266, -0.00981986243, 0.0210262015, -0.00235851528, -0.00676961709, -0.0158299319, 0.0155285243, -0.00559412688, -0.00623311102, 0.0205560047, 0.0335165374, -0.00359579385, 0.00412627123, 0.00325821713, -0.000216071639, 0.00998262316, 0.00260416255, 0.00616378756, 0.00462660799, 0.0021852057, -0.00309847109, 0.0101875803, 0.00262978207, -0.00194106554, 0.0189163461, -0.00412627123, -0.00755327707, 0.0104528191, -0.00724584097, 0.000481875555, -0.03161164, -0.0124059403, 0.00355661078, 0.0170958452, 0.00985000376, 0.000811540231, -0.00840324629, 0.0163724665, 0.0144916819, -0.00482553709, 0.00830076821, 0.00189736148, -0.017831279, -0.00356866722, -0.00470196, 0.0332512967, 0.0236424189, 0.00446987618, -0.0137562472, 0.0179639, -0.00869259797, 0.0019109248, 0.000523319119, -0.0313464, -0.0112304511, 0.000454748864, 0.00564235216, 0.00784262829, -0.0102116931, 0.00892166793, 0.00620899862, 0.00305326, 0.00228165626, 0.0135512901, -0.00498528313, -0.0163965784, 0.0211829338, -0.0348909535, -0.00637778686, -0.00397858163, 0.00588649232, 0.00900606159, 0.00317985122, 0.00615173113, -2.05922679e-05, -0.000593773148, -0.0115017174, -0.0151186101, 0.0161795653, 0.0132016568, -0.0317804292, 0.00898797717, -0.0166135915, 0.00858409144, -0.000242256443, 0.0163001288, 0.00418052496, 0.00338179432, -0.0299719814, 0.0241728965, -0.0281394217, -0.0123818284, 0.00972944, 0.00985603128, 0.00679975748, -0.00653451867, 0.00769192446, -0.010706001, 0.000905730121, -0.00687209563, -0.0212311577, -0.00858409144, -0.00241578277, 0.00464167865, 0.0157214254, 0.00528066279, 0.00170898158, 0.00346317445, -0.00319492165, -0.000949434238, -0.00960284937, -0.00682989834, -0.00111294794, 0.013141376, 0.00559111265, 0.00268403557, -0.0149859907, 0.0151306661, -0.0207247939, -0.0124059403, 0.0147569207, -0.00887344219, -0.00753519218, -0.00611857604, -0.0201099217, 0.00689018, -0.00722172856, 0.0125385597, -0.0205560047, 0.0163483527, -0.00725789741, 0.0103443125, 0.0299237557, -0.0211105943, 0.00927732885, 0.0020420372, -0.000586991489, 0.013816529, -0.00253182463, -0.00743271364, -0.0190007407, -0.00824651495, 0.000941145525, -0.0252700206, 0.000444953126, 0.0196879506, 0.00086353306, 0.0230757724, -0.00213999464, 0.0068600392, 0.0103563685, -0.00716747483, 0.0106336633, -0.0170596763, -0.00360182207, -0.0172164068, 0.00643204, -0.011254563, 0.020037584, 0.0253664721, -0.00314669637, 0.00077838538, 0.00651643425, 0.00411421526, -0.0143470066, -0.00745079806, -0.00330041419, -0.0100730453, -0.00565139437, 0.00382184959, -0.00453015789, -0.000949434238, -0.0291280393, -0.00971738435, -2.72679772e-05, -0.0172043517, 0.0200014152, 0.0022319241, 1.52469911e-05, 0.00221986766, -0.0159022696, -0.0198446829, 0.0110556344, -0.0232566185, -0.0292968284, 0.0336612128, -0.00834296457, -0.00193805154, 0.00134879944, -0.0120683638, 0.00161705224, -0.00209930469, 0.0122371521, -0.0180000681, -0.00209930469, -0.0263792016, -0.0132257696, -0.00942200422, -0.00597390067, 0.00170446048, 0.00735434797, -0.00237810682, 0.00720364414, 0.00154170033, -0.0128640803, -0.0047682696, -0.00618488574, 0.00362292049, 0.00228316337, -0.0326484814, 0.00854189415, -0.0249083322, 0.0172164068, -0.00880713295, 0.00893975236, 0.0128158554, -0.0310329366, 0.00972341187, -0.0232807305, -0.03209389, -0.0017873476, -0.0228949282, 0.00336371, -0.00551274698, 0.00280158455, 0.0102297775, 0.0110496059, 0.0128520243, -0.00655863155, -0.0156732, 0.019157473, 0.0185546577, 0.01168859, 0.0151065541, -0.00639587129, 0.0174695905, -0.001252349, -0.0152994543, -0.024739543, 0.00598294288, 0.00921704713, 0.00815609191, 0.0121587869, -0.012020139, 0.0134910084, 0.00996453874, -0.0149015961, -0.0292727146, 0.00561823929, 0.0110676903, -0.0363859385, 0.0229552109, 0.0246430933, 0.0156249749, -0.00600705529, -0.036289487, 0.0027729508, -0.00332754105, 0.0213758331, -0.00437644, -0.0174816456, -0.00111068739, -0.0111822253, -0.0225694086, 0.0191936418, 0.0288628, 0.0011197296, 0.0201702025, -0.000142415141, 0.00334863947, -0.0185305458, 0.00343604782, 0.00331849884, -0.00170295348, -0.0207850747, -0.00595280202, -0.00524449395, -0.0147569207, -0.0172525775, -0.00431013, 0.00467784749, -0.016915, -0.0403162949, 0.0165171418, -0.0181326866, -0.00345413224, -0.00892769638, 0.00710719358, -0.0056272815, -0.00378869474, 0.0233048424, -0.0150342155, 0.00604322413, -0.0101755243, -0.0121889273, -0.0190971922, -0.00505762128, 0.022497071, -0.00484060775, -0.00147689774, -0.0146725271, 0.0275607202, -0.00940994825, 0.0124421101, 0.0178915616, 0.0149015961, 0.00126515876, -0.0380014814, -0.0138768107, 0.0396170281, -0.0413290225, 0.0140576549, -0.0196517818, 0.00478936825, 0.0409673341, -0.0155044124, 0.00509680435, 0.010706001, 0.0147569207, -0.00187475584, -0.0173851959, -0.00955462363, 0.00226055761, -0.0208574124, 0.0103684245, 0.0215084534, 0.00172706612, 0.000287279225, -0.0151788918, 0.0192780364, -0.00981383491, -0.0159022696, -0.00305778114, -0.00675756065, -0.0141661614, 0.00991028547, 0.000172461718, 0.0171922948, -0.00960284937, 0.0110556344, -0.00749902334, 0.00416846853, -0.0258969497, -0.00545849325, 0.02383532, 0.0340711251, -0.0197602883, 0.0104588475, 0.0123155182, 0.00936172344, 0.0184461512, 0.00155526376, 0.0253664721, 0.00693840533, 0.00828871131, 0.00883124582, 0.00541026797, -0.0145399077, -0.018687278, 0.00908442773, 0.000605829468, -0.0116041964, -0.00966313109, 0.00828268379, -0.00143244013, -0.0234012939, -0.00424080621, -0.00786674116, -0.0227261409, -0.00450905925, -0.0065526031, 0.0170235075, -0.0196758937, 0.00213396642, -0.00405091932, 0.00460551, 0.00787276868, -0.0142023303, -0.0143108377, 0.0143470066, 0.00161855936, 0.00229521957, 0.0174695905, 0.0321421176, 0.00299297832, -0.00718555925, -0.023618307, -0.0163001288, 0.0328896083, -0.00862628873, 0.00218671281, -0.005678521, -0.0129725868, -0.01557675, 0.00248812046, 0.0219665933, -0.00906634331, 0.0124300532, 0.0237027016, -0.039183002, 0.00352948415, -0.00402680691, -0.00207067095, -0.0185908265, -0.0122853778, -0.0098861726, -0.0347703919, -0.0191695299, -0.0274883825, 0.00143922179, -0.0107662827, 0.00548863411, -0.00849969685, 0.0185426, 0.00725186896, 0.00383993401, 0.0102297775, 0.0151306661, 0.00202093855, 0.0259451736, 0.0267891157, 0.00913265347, -0.00588347809, -0.0203510486, -0.012924362, -0.0145881325, -0.0127796866, -0.0166135915, -0.00297790812, 0.0230998863, -0.00270513399, 0.019386543, -0.0183497, 0.000395597599, -0.0152512295, -0.0303577837, -0.00261169765, 0.00339385075, 0.0161072277, -0.0128640803, 0.0040991446, 0.0135633461, -0.0068841516, 0.0111159161, -0.0123818284, 0.0138888666, -0.00611254806, -0.0125747295, -0.0092833573, 0.0139009226, 0.0110194655, 0.00761355832, -0.00848764088, 0.00881918892, 0.0129364179, 0.00426190486, 0.0129605308, -0.0237509273, 4.65945686e-06, -0.000811540231, 0.00204806519, -0.0197844021, 0.00599198509, -0.0132739954, 0.00691429246, -0.0374710038, -0.00895783678, 0.0040177647, -0.00195161486, -0.00873479526, -0.0144314, 0.00401475048, -0.00617885776, 0.00710116513, 0.0379291438, 0.00866245758, 0.0199290775, 0.000600178086, -0.0114354081, 0.0203751605, -0.00510283234, -0.00742065767, 0.000195538247, -0.0165774226, -0.00651040627, -0.00646218099, -0.0414495878, -0.00861423183, 0.0304783471, -0.0108747901, 0.0153717929, 0.0223403387, -0.0325279199, 0.00972944, 0.0021821917, -0.00360785, -0.0351320803, -0.012261265, 0.0171440691, 0.00664302567, -0.0115017174, 0.0136477407, -0.00906031579, 0.0102177206, -0.0108446488, 0.00799333211, 0.0103322556, -0.000684195489, 0.0203872174, -1.37870475e-05, -0.0432098061, 0.0166015364, -0.00501240976, -0.0168547183, -0.0209297501, 0.00347523065, -0.00263581029, -0.0162157342, -0.0108687617, -0.00391227193, 0.000791948696, 0.0263309758, -0.0132137137, -0.0139129795, 0.00127495453, -0.0109712398, -0.00670933537, 0.00249565579, 0.00842735916, 0.00105115934, 0.0145278508, -0.0163845215, -0.0168306064, 0.00554891583, -0.00408106, -0.00777631858, -0.0265962146, 0.0104950164, -0.0174093079, -0.00745079806, -0.0173128583, 0.00471401634, -0.00807169825, 0.00336672389, -0.000525579671, 0.024739543, -0.00657671597, -0.0248842202, 0.0298755318, 0.00864437316, -0.011254563, 0.00659480039, -0.00279706344, 0.0231842808, 0.00964504667, -0.00811389554, -0.0209779758, -0.0110978317, 0.00641998416, 0.0104166502, -0.0103202, 0.00612761825, 0.0124541661, -0.00754724862, 0.00292214751, 0.0363618247, 0.0101875803, 0.00635367446, 0.0167582687, -0.0135392342, -0.00749902334, 0.00563933793, -0.00284227449, -0.00346016046, -0.0110857747, -0.0145519637, 0.00996453874, 0.0204595551, -0.00405694777, -0.0201099217, 0.00607637921, -0.00380376517, -0.00505762128, -0.00828268379, -0.0143228937, 0.00572373206, -0.0150583284, -0.0116463937, 0.0107301138, 0.0110978317, 0.00333055505, -0.0063898433, 0.0225452948, -0.00792702287, 0.00177378429, 0.00391528616, 0.00059000554, -0.0178433359, 0.0178192239, 0.00517818425, -0.0144072883, -0.0150342155, 0.0193383172, -0.00315272459, 0.0202907659, 0.00314971036, -0.0115137743, 3.20245672e-05, -0.00561823929, -0.00284528872, -0.00382787781, 0.019362431, -0.02383532, -0.00122070115, -0.00336371, 0.0190127976, 0.00775823416, -0.00849969685, 0.0102297775, -0.0246069245, -0.0169632249, -0.000151174798, -0.000517667737, -0.0124300532, -0.0116403652, -0.00315573858, 0.0133945579, -0.00687812362, -0.00974149629, -0.0298755318, 0.00215205085, 0.00124481379, 0.0218701418, 0.0188681222, -0.00840927474, -0.00934363902, 0.000748998136, 0.0128640803, -0.0134668956, 0.00157786929, 0.021363778, 0.00336672389, -0.00220931834, -0.0195794441, -0.00651643425, -0.00361990649, -0.0063235336, 0.00843941513, -0.0152873984, 0.00339987874, 0.0190851353, -0.00201189634, -0.00527162058, 0.00267348625, -0.0140817678, -0.0306953602, 0.00733626354, -0.0338058881, 0.0221836064, -0.00886138622, 0.0144193443, 0.0082103461, -0.00385500444, 0.00421669381, -0.00661288481, -0.0110857747, 0.0114474641, 0.00276240148, -0.0190971922, 0.0196638387, -0.0163845215, -0.00571469, -0.00963299, 0.0051420154, -0.00458139693, 0.00475922739, -0.0177468844, 0.0123577155, 0.00201038923, 0.00179186871, 0.00293571106, -0.0101815518, 0.000596787257, -0.0165533107, 0.0152994543, -0.0151306661, 0.00763767119, 0.0249806698, 0.00177529128, -0.000770096667, 0.0197120626, -0.0293691661, 0.0217134096, -0.00752313621, -0.000821336, 0.00174816465, 0.00836707745, 0.0127194049, 0.0263550896, 0.000205899138, -0.0145399077, 0.0183617566, -0.0175780971, 0.00393035635, 0.008680542, -0.0154079618, 0.00161705224, -0.00374649768, 0.00822843052, 0.0125506166, -0.0146604702, 0.00421970757, -0.00185064331, 0.00867451355, -0.00865642913, 0.0102599179, -0.0190127976, -0.00365908933, 0.00859011896, -0.0049430863, 0.000666864507, -0.00307887956, 0.00221082545, -0.00261320476, -0.0125144478, 0.0218821988, 0.000697382085, -0.0107120294, -0.000120563076, -0.00254086684, 0.0154320737, -0.0300925449, -0.00106396922, 0.0102358051, -0.000473963592, -0.0192177556, -0.0176383778, 0.000500336755, -0.00932555366, 0.0292486027, 0.002699106, -0.00398762384, 0.00976560917, 0.0210744254, -0.00486170594, -0.010030848, -0.00749902334, -0.00748696737, -0.00731215067, 0.00525956415, -0.0126591232, -0.000418579933, -0.0106577761, 0.000661589904, -0.0127676297, 0.000275599654, 0.00913868099, 0.0295861792, -0.0178433359, 0.0061909142, 0.0167221, -0.0143108377, -0.00395748299, 0.0118814912, -0.00367717398, 0.0128158554, 0.00259662722, 0.0118453223, -0.0252217967, -0.0167944375, 0.00110239862, -0.00875288, 0.00415942632, -0.0051420154, 0.0125023909, 0.00908442773, 0.0124541661, 0.0147448648, 0.00756533304, 0.00340590696, 0.0183858704, 0.0163724665, -0.00714939041, -0.0063235336, -0.0156129189, -0.00865040068, 0.0106879165, -0.0132981073, 0.0207006801, 7.76595771e-05, -0.00970532745, -0.0196156129, 0.0134307267, -0.0104528191, 0.0149980467, 0.00901811849, 0.0142385, -0.0232686736, 0.00869862642, -0.000402002508, 0.00407503219, 0.00531080365, -0.00925924443, 0.00129303907, 0.0188078396, -0.00202847389, 0.00796319172, -0.00754724862, -0.0123697715, 0.00882521737, 0.0160590019, 0.00516311405, 0.0044065807, -0.0216892976, -0.00586539367, -0.000843941525, 0.00783057231, -0.000865040114, -0.0144434571, 0.017807167, -0.013370445, 0.00229069847, 0.00147313008, -0.00582319684, 0.00553987361, 0.0130208125, 0.000457762944, 0.0113630705, -0.017602209, 0.0354937688, -0.00658274395, 0.0171922948, 0.00642601214, 0.000252617319, -0.00572373206, 0.0217134096, -0.0164206922, 0.0243055169, 0.00441863667, 0.00906634331, -0.00908442773, 0.016927056, 0.00238112081, -0.00766781159, -0.00994645432, -0.00167431973, 0.0126350103, 0.0167221, 0.0115258303, -0.0249565579, 0.0161554534, 0.00726392539, -0.0116524212, -0.0122009832, 0.0149859907, 0.0140576549, 0.00679975748, 0.00737243239, -0.0019832626, -0.0194347687, -0.0107723111, 0.00108808174, 0.00510886032, 0.0116162524, -0.00725186896, -0.0303818956, -0.0129725868, 0.0285493378, 0.0130087566, -0.0185787696, 0.0116825625, 0.0104467906, 0.014479626, 0.0278741829, -0.0145278508, -0.0134307267, -0.0268855672, -0.024498418, 0.0155164683, 0.0160590019, -0.0140938237, 0.00149724272, -0.00189434737, 0.0373022147, 0.0247636568, -0.0127676297, 0.000677037053, 0.0106698321, 0.0219907053, -0.00221836055, -0.0208333, 0.018048292, 0.00306380913, 0.00315272459, -0.00228919135, 0.0152150607, -0.0113027887, -0.0219786484, 0.000789688143, -0.00333356904, 0.00499733957, 0.0188319534, 0.0288628, 0.00947625842, -0.012261265, -0.00706499629, -0.0095365392, 0.0014233978, -0.0389177613, 0.00213848753, 0.0100851012, -0.0038188356, 0.00424984843, -0.00339385075, -0.00558508467, -0.0112244226, -0.0296585169, -0.0136236278, 0.0224609021, 0.0131654879, 0.0143590625, 0.0166256484, 0.00631147716, -0.0248601064, -0.0203148779, -0.0124300532, 0.0112123666, -0.0130690373, -0.00795113482, 0.00341494917, 0.011574056, 0.00301859807, 0.000448720704, -0.0065887724, -0.00262224698, 0.00215054397, 0.00812595151, 0.00456029829, -0.00620899862, -0.00158389739, -0.0214963965, -0.00736037595, -0.00706499629, -0.00189886848, -0.0036982724, -0.00800538808, 0.0100851012, 0.0290798154, 0.0251012333, -0.00663699768, 0.0027654157, 0.0134427836, -0.00494007207, -0.00611857604, 0.0137803601, 0.000415942632, 0.00830076821, -0.00775823416, 0.0236785877, -0.011369098, 0.0171802379, 0.00942803267, 0.00031930377, 0.00768589647, -0.0120683638, -0.0124782789, -0.00233289553, -0.00121542648, -0.00453317165, 0.0152512295, 0.00189434737, 0.0208453555, 0.0197482314, 0.00661288481, 0.00405694777, -0.00687209563, 0.00871671084, -0.0201099217, -0.0278741829, -0.0110496059, 0.00265690894, 0.0107421707, -0.0125988415, 0.0174695905, -0.00469593192, -0.00965710264, 0.00412928546, -0.0139491484, 0.00288296468, -0.0455487296, 0.000390699715, -0.00788482558, -0.00659480039, 0.00682387035, 0.00614570314, -0.0121407025, 0.0187957846, 0.0113871824, -0.00450905925, 0.00154772855, -0.00620899862, 0.00532587385, -0.0175178144, -0.00789688155, -0.00817417633, -0.00163815077, -0.00840324629, -0.0259210616, -0.0059497878, -0.00427094707, 0.0177589413, -0.00949434284, -0.0216651857, 0.0223644506, 0.0132137137, 0.00347523065, -0.00128625729, -0.0117549, 0.0143952314, -0.00996453874, 0.00881918892, -0.00149272161, -0.0130931502, -0.0141179366, 0.00658274395, -0.0284528863, -0.00431615813, -0.00767986802, -0.0188078396, -0.0209538639, 0.0288145766, 0.00654657511, -0.00484362151, 0.0022560365, 0.0113269016, 0.00294023217, 0.0134668956, -0.00584429502, -0.0153717929, -0.014021486, -0.0246913191, -0.0110013811, 0.0138647538, -0.00589553453, -0.00806567, -0.00520531088, 0.011905604, -0.00725186896, -0.00127344753, -0.0126229543, -0.0282599851, -0.00157937629, 0.00428903149, -0.0190610234, -0.0120924767, 0.00886741467, -0.000964504608, 0.000750128413, -0.0147448648, -0.0146604702, -0.00525956415, -0.000266934192, -0.00744477, -0.0237147585, -0.0154079618, -0.0193142053, 0.000819075387, -0.00209327647, -0.00960887782, -0.0202184282, -0.035614334, 0.0131052062, 0.0117729846, -0.0100609893, -0.0126350103, -0.00633558957, -0.0245225299, 0.0032431467, -0.000578326, -0.000993891852, -0.0213276092, -0.00965107419, -0.0339987874, 0.0212432146, -0.0140697109, -0.0184702631, -0.00820431765, 0.0111460565, -0.00716747483, 0.0182894189, 0.000171237247, 0.00956065208, 0.000532738108, 0.0115800835, 0.0212432146, -0.0117790131, 0.00461153779, 0.00667316653, 0.00446987618, -0.0256558228, -0.0201581474, -0.0150944972, 0.00233138842, -0.00763164274, 0.00390624371, 0.0313705131, 0.00634161802, -0.0190730784, -0.00963901822, -0.0111340005, 0.000308377756, 0.0281635355, 0.00369224418, -0.0107783396, -0.00273075374, -0.0150703844, -0.0285734497, 0.00946420152, -0.0203631036, -0.00637175888, 0.0168788303, -0.014250556, 0.00693237688, 0.0006446357, -0.00478032604, 0.00629339274, -0.00168185495, -0.0203028228, 0.00566345081, 0.00458441116, 0.0120985052, -0.00493705785, 0.0118995756, 0.0130690373, 0.0109772682, 0.0156370308, 0.0263550896, -0.00412928546, -0.011140028, 0.0112786759, -0.0320456661, -0.0317804292, 0.012924362, 0.0076617836, 0.0266926661, 0.0125747295, 0.0202425402, 0.0136959655, 0.0174937025, 0.015142723, 0.0107542267, -0.0182050243, -0.0386766344, -0.00846352801, 0.0163724665, -0.0323832445, -0.0180844609, -0.00686606718, 0.00771603687, -0.000995399, 0.00580812618, -0.00793305, -0.0109772682, 0.0148413153, 0.00467483327, 0.0116222808, 0.0147328079, -0.016951168, -0.0213034954, 0.000725639053, -0.0077702906, -0.00879507698, 1.08141785e-05, 0.00491595967, 0.0212673265, -0.0172164068, -0.0100489324, 0.0104106218, 0.0124059403, 0.0112967603, -0.0291039273, 0.0187475588, 0.0122009832, 0.0184943769, -0.00980177801, 0.0141299926, -0.00377362431, 0.0061336467, 0.00789688155, -0.0070589683, 0.0160831138, -0.00666111, -0.0159866642, 0.0215084534, -0.00360785, -0.0132619385, -0.00390322972, 0.0125385597, -0.0257522743, 0.0312258378, -0.00260717655, -0.0277536213, 0.0259210616, 0.0268132295, 0.0155405812, -0.0166015364, -0.00195462885, -0.0170476194, -0.010796424, 0.00939789228, 0.0118754636, 0.0108386204, 0.00494610053, 0.00446987618, 0.0051570856, -0.0080234725, 0.00607336499, 0.0139612043, 0.00814403594, -0.00519626867, -0.0121648144, -0.0122672934, -0.00257251458, -0.0113992393, 0.0112726474, -0.00128851784, 0.0130328685, 0.00970532745, -0.0037525259, -0.0113269016, 0.030285446, 0.00344810402, -0.00119583507, 0.0188560653, 0.00222589588, -0.00478936825, 0.0293932781, -0.0141782183, 0.0153115112, 0.012924362, 0.0130328685, -0.00320697785, -0.00863834471, 0.00195010775, -0.013599515, 0.0186028834, 0.0267167781, 0.00113932113, -0.00822843052, -0.003562639, -0.023148112, -0.00192147412, 0.0268614534, 0.00137818675, 0.00945817307, -0.00671536336, 0.00154471444, -0.0120924767, 0.00620297, 0.0144072883, -0.00425587688, -0.00641998416, 0.00781248743, 0.000397858152, -0.00349331531, -0.0074628545, -0.0036319627, -0.0199170206, 0.023823265, -0.0208815243, 0.0208694693, 0.00866245758, -0.0120985052, 0.00460852357, 0.0109471278, 0.0140697109, 0.0061909142, 0.00702279946, -0.000578702777, -0.00313464, 0.0114354081, -0.0157455374, 0.00305476692, -0.029610293, -0.0186390523, -0.00273226085, -0.00227562804, 0.0215807911, -0.00617283, 0.00489184679, 0.00756533304, 0.00527463481, 0.0284528863, 0.0139491484, 0.0268132295, -0.000197045287, 0.00737846037, 0.00431615813, 0.0124300532, -0.0361930355, 0.00428903149, 0.0128399683, -0.0116825625, -0.00352948415, 0.0176986605, 0.0074628545, 0.0183979254, -0.0177107155, 0.0124179972, -0.0196276698, 0.00293269684, 0.00974752475, 0.00413229968, -0.00492500188, 0.0258487239]
21 Oct, 2024
PostgreSQL – DROP INDEX 21 Oct, 2024 In PostgreSQL, indexes are essential for improving query performance but sometimes we may need to remove them when they are no longer effective or necessary. This is where the DROP INDEX statement comes in. It allows us to delete an existing index from the database, ensuring that our PostgreSQL environment remains efficient and optimized. In this article, we will explain how to remove an index in PostgreSQL, explain the DROP INDEX IF EXISTS option, and demonstrate how to use DROP INDEX CONCURRENTLY for safe index removal. We will also provide detailed examples to illustrate these concepts. PostgreSQL – DROP INDEX The PostgreSQL DROP INDEX command is used to remove an existing index from a database, freeing up system resources and improving performance. It includes options like IF EXISTS to prevent errors and CONCURRENTLY to drop indexes without blocking other operations, making it easier to remove unused or unnecessary indexes without disturbing the database. Syntax DROP INDEX [ CONCURRENTLY ] [ IF EXISTS ] index_name [ CASCADE | RESTRICT ]; Key Terms 1. index_name: This is the name of the index we want to drop. It is a mandatory parameter. Example: DROP INDEX idx_actor_first_name; 2. IF EXISTS: Use this option to avoid errors when attempting to drop a non-existent index. PostgreSQL will issue a notice instead of an error. Example: DROP INDEX IF EXISTS idx_actor_first_name; 3. CASCADE: Automatically drops any dependent objects. Use this option when the index has dependencies that also need to be removed. Example: DROP INDEX idx_actor_first_name CASCADE; 4. RESTRICT: Default behavior that prevents the index from being dropped if there are dependent objects. Use this option to ensure that no dependencies are unintentionally removed. Example: DROP INDEX idx_actor_first_name RESTRICT; 5. CONCURRENTLY: Allows the DROP INDEX command to be executed without blocking other transactions. Useful for maintaining high availability and reducing downtime. Example: DROP INDEX CONCURRENTLY idx_actor_first_name; Important Points for CONCURRENTLY: We cannot use the CASCADE option with CONCURRENTLY. DROP INDEX CONCURRENTLY cannot be executed within a transaction block. It cannot be used on indexes for partitioned tables. Examples of PostgreSQL DROP INDEX For the purpose of example, we will use the actor table from the sample database to demonstrate how to manage and remove indexes effectively, ensuring optimal database performance. Step 1: Creating an Index The following statement creates an index for the first_name column of the actor table. This index will help optimize queries that filter by the first_name column. Query: CREATE INDEX idx_actor_first_name ON actor (first_name); Step 2: Checking Index Usage Sometimes, the PostgreSQL query optimizer may choose not to use an index if it determines that a sequential scan is more efficient. For example, the following statement finds the actor with the name ‘John‘. Query: SELECT * FROM actorWHERE first_name = 'John'; The query did not use the idx_actor_first_name index defined earlier as explained in the following EXPLAIN statement: EXPLAIN SELECT * FROM actorWHERE first_name = 'John'; If the query optimizer decides to perform a full table scan instead of using the idx_actor_first_name index, it indicates that the index is not useful for this query. Step 3: Dropping the Index If the index is not being used or has become Outdated, we can safely remove it using the DROP INDEX command. This will remove the index and improve database performance by reducing unnecessary overhead. Query: DROP INDEX idx_actor_first_name; Using IF EXISTS If we are unsure whether the index exists and want to avoid an error, we can add the IF EXISTS option: DROP INDEX IF EXISTS idx_actor_first_name; Using CONCURRENTLY for Non-blocking Removal In production environments where downtime is critical, we can use DROP INDEX CONCURRENTLY to avoid blocking other transactions: DROP INDEX CONCURRENTLY idx_actor_first_name; This allows other SELECT, INSERT, UPDATE, and DELETE operations to continue while the index is being dropped. Dropping Indexes with Dependencies Using CASCADE If the index has dependent objects (e.g., unique constraints), we can use the CASCADE option to automatically drop those objects. However, be careful with CASCADE, as it will remove all objects that depend on the index. Query: DROP INDEX idx_actor_first_name CASCADE; Output DROP INDEX Important Points about DROP INDEX statement in PostgreSQL The DROP INDEX statement is used to remove an existing index from a PostgreSQL database. Before dropping an index, use the EXPLAIN statement to analyze whether the index is being used by the query optimizer. To avoid errors during the removal process, use the IF EXISTS option. Be cautious of dependent objects when using the CASCADE option. Use the CONCURRENTLY option to minimize the impact on database availability during the index removal. Conclusion The PostgreSQL DROP INDEX command is a powerful tool for managing and optimizing your database. By understanding its various options like DROP INDEX IF EXISTS, CASCADE, and CONCURRENTLY, we can efficiently manage and remove indexes without causing errors or disrupting ongoing database operations. Whether we are dropping a single index or multiple indexes, this command ensures that our PostgreSQL environment stays efficient and optimized. FAQs Does DROP INDEX delete data? No, the DROP INDEX command removes the index itself but does not delete any data from the table. The underlying data remains intact and accessible. Does dropping a table drop the index as well? Yes, when you drop a table in PostgreSQL, all associated indexes are automatically dropped along with it, freeing up resources. How do I drop a UNIQUE index in PostgreSQL? To drop a UNIQUE index in PostgreSQL, you can use the DROP INDEX command followed by the index name, just like any other index: Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX
https://www.geeksforgeeks.org/postgresql-drop-index?ref=asr10
Languages
PostgreSQL – DROP INDEX
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0241215732, -0.016105473, -0.0254404936, 0.0373107679, 0.00762042403, 0.000383539969, 0.00103315362, 0.0153580857, -0.0353763551, 0.0315954499, 0.0360211581, -0.0495034456, 0.0081699742, -0.0949035883, -0.018655384, -0.00352810975, -0.0238431338, 0.016061509, 0.00525003253, -0.0318006165, 0.00735297659, 0.0139219286, -0.00166238821, -0.0189924408, -0.00899063516, 0.0402710102, 0.00272576697, 0.0231690202, -0.0135921985, -0.00533429673, 0.0137607278, 0.0164864939, -0.0248543061, 0.0155632505, -0.0379262641, -0.00465285499, 0.00727970339, -0.0208535828, -0.0513499342, 0.0122000063, 0.0153287761, 0.0164571851, -0.0109323775, -0.0189777873, -0.0105953207, 0.0178493783, -0.0089393435, -0.0356401391, -0.0387176163, 0.0267154481, 0.016838206, -0.00100384431, 0.00610000314, -0.0288843382, 0.027228361, -0.0115991645, 0.00420955149, -0.0120388046, 0.00782559, -0.0172192268, -0.00129876938, 0.000564662449, 0.00395675888, 0.00292910053, 0.0140611483, 0.0063491324, -0.0200475771, 0.00921778195, -0.0490345, -0.0330609158, -0.0244293213, 0.0117017478, 0.0221138839, -0.00311594736, -0.0268913042, -0.0262025353, 0.0031910527, 0.0226121433, 0.00427916134, 0.0155485962, 0.0377504081, -0.00450997194, -0.0226267986, 0.0132771237, 0.0274481811, -0.00020207405, 1.31376755e-05, -0.0303644594, 0.0619599111, 0.0234034956, 0.035757374, -0.0363435596, 0.0247077588, -0.0162959844, -0.0152848121, 0.0174243934, -0.0106539391, 0.00302618765, 0.0117090745, 0.0206777286, -0.0118629485, 0.0195639729, 0.0251180902, -0.012251297, 0.0135115981, -0.00418024231, 0.0195346642, -0.00106063113, 0.0225681793, 0.0356987566, 0.023418149, 0.0310678836, -0.027316289, 0.0617840551, -0.0314489044, -0.00522805052, 0.0503827259, -0.0104707554, 0.000263325957, -0.0255870391, -0.0203260165, 0.00263051176, 0.0113280537, 0.0575048923, -0.0293239783, -0.00294192345, 0.00238138251, -0.000673656468, 0.0335591771, 0.00525003253, 0.0163252931, -0.0203992892, -0.0186700393, 0.0249129254, 0.0276533458, 0.0036453472, 0.026451664, 0.0298955105, -0.033295393, -0.0335591771, -0.0424985178, -0.0167063139, 0.00418756949, -0.0294705257, -0.0285912454, -0.00653964281, -0.0106319571, 0.0104927374, 0.0124051711, -0.0160761643, -0.00615495816, -0.00169902481, 0.0329436809, 0.0152848121, -0.000762042415, 0.00155614188, -0.0132624693, -0.00962811243, 0.0102509363, 0.0150943017, -0.00580691, -0.00671916222, -0.00626120437, -0.00361786969, -6.46293483e-05, 0.0396262072, 0.0394503511, -0.0164278764, -0.0403296277, 0.0364314876, -0.0166623499, -0.00631982274, -0.0119069126, -0.0074482318, 0.00561273564, 0.0150796473, 0.00826522894, -0.037105605, 0.00727603957, -0.0165011492, -0.00948156603, -0.0226561073, -0.0196812116, -0.0299394745, 0.0303058401, -0.00223666779, -0.000305916066, 0.00488000223, -0.0157830715, 0.000340262923, -0.0277705844, -0.0108297952, 0.0721009374, 0.0684079602, 0.0242974292, 0.0289283022, -0.0317713059, 0.0213958062, 0.000244549679, -0.021557007, -0.048272457, -0.0566549227, -0.0186407305, 0.0260706432, 0.055980809, 0.0436122715, 0.0339988135, -0.0241069179, 0.021688899, 0.0095401844, -0.0185967665, 0.0510275327, 0.00373144331, -0.0103315366, -0.023330221, 0.0241215732, -0.0117970025, -0.0214544255, -0.0353177339, -0.00988457, -0.0268180314, 0.01114487, -0.000352398813, -0.0248103421, -0.0179519597, -0.0151675753, -0.0147572448, -0.0138046909, 0.0286058988, 0.010214299, 0.063484, 0.00394210406, -0.0330316089, -0.00544787059, 0.0135189258, -0.00692066411, -0.0302472226, -0.0256456584, 0.0145520791, -0.0193588082, 0.0329729877, 0.0059791021, -0.00728703057, 0.00170360447, -0.0230957475, 0.0487707146, 0.0079355, 0.0171899181, 0.0181571264, 0.0673528239, 0.030129984, -0.0371642224, -0.012163369, 0.0290308855, 0.00581790088, -0.00762775121, -0.0240922645, -0.00267630769, -0.0266714841, -0.00789886247, 0.00653964281, -0.000365679618, -0.0468069911, 0.0368418209, 0.0534015857, -0.00427183369, -0.00472979201, -0.00398606807, -0.00440006237, -0.00521705952, 0.0647149831, 0.0241362285, 0.00626486773, 0.00148103677, -0.0253965296, 0.0134529797, -0.0399779156, 0.00638210541, -0.00503754, 0.017790759, 0.0212346055, -0.00583255524, -0.0117603661, 0.014911118, -0.00707453815, -0.029177431, -0.0271990523, -0.00470414665, -0.0244879406, 0.00396042224, -0.0126396455, -0.0251767095, 0.0289136469, 0.031302359, 0.0324747302, 0.0284300447, -0.0216302816, -0.00721009355, -0.016794242, 0.0147352628, -0.0178054143, -0.00830919296, 0.0108810868, 0.0132624693, -0.029954128, 0.00504853111, -0.0042205425, 0.0218061358, -0.0117164021, -0.0413554572, 0.014244331, -0.0252499823, -0.014999046, -0.0376038626, -0.0532257333, 0.0417950936, 0.0091958, -0.00695730047, -0.0152261937, -0.028224878, 0.0370762944, -0.0190217514, -0.0393624231, 0.0189484768, 0.0177174862, -0.0249275789, -0.0330902264, -0.000282331224, 0.00528666936, -0.0110862516, -0.0302765314, -0.0491810441, -0.00857297704, 0.0536360629, 0.0165304579, -0.00477375602, -0.0145154428, -0.0406520329, 0.00467117364, 0.0108078131, -0.0136288358, 0.0398313701, 0.0086096134, -0.0201061964, 0.00797213614, 0.0303937681, -0.0089173615, 0.0385710709, 0.024546558, 0.012075441, 0.0013647154, 0.03376434, 0.0137534, 0.0135409078, 0.0236819331, -0.0189924408, -0.00620624935, -0.00287780911, -0.00676312624, 0.00714048371, 0.0392158739, 0.00387615804, -0.0337936506, 0.00494961208, -0.0241948459, 0.0070562195, -0.011320726, -0.0244293213, 0.0052463687, 0.0190070961, 0.0042425245, -0.0172778461, 0.0411502905, -0.00555778062, -0.0276533458, -0.0429381579, 0.000475360604, -0.0129473936, 0.00871219672, 0.010434119, 0.012273279, -0.00121633697, 0.0217621736, 0.00631982274, 0.0123538794, -0.0183329824, -0.000519782538, 0.0106832488, 0.00429747952, -0.0292507056, -0.00106337888, 0.0435536541, -0.0125077534, -0.0420002602, 0.00472979201, -0.00979664177, 0.0208096188, 0.0167356245, -4.90301463e-05, 0.00219819928, 0.0161787458, -0.0145154428, 0.0195200089, 0.0104487734, -0.027228361, 0.000356978388, 0.0101043889, -0.0263783913, -0.001894115, 0.0302765314, 0.00625754055, 0.012273279, -0.0433777981, 0.0283714253, 0.0309213363, 0.0434071086, -0.0152994664, 0.0225242153, -0.00521705952, -0.00722474838, 0.0223190505, 0.0122806067, -0.0182597078, 0.0169407893, 0.00987724215, -0.0092470916, -0.0109323775, 0.00452462677, 0.0287377909, -0.00781093491, 0.00770835206, -0.00547718, 0.00435243454, 0.0141857127, -0.0518188849, -0.0348487869, -0.0086242687, 0.0227586888, 0.00535627874, -0.00555778062, 0.0115552, 0.0110496152, 0.0200329218, -0.0278731659, -0.00937898364, -0.0164864939, -0.0481552184, 0.0180398878, -0.0202527419, -0.0334126279, -0.0404175557, 0.0322402567, -0.00678144488, 0.00442204438, 0.00295108254, -0.00917381793, 0.00149660732, 0.00466751, 0.031566143, -0.0178493783, 0.0217182096, 0.0109250499, 0.0174537022, -0.0197984483, 0.0350539498, 0.0484190024, -0.00390546746, -0.0195639729, -0.00594246527, 0.00885874312, 0.0440812223, -0.0212785695, 0.0505585819, 0.028092986, 0.00869754143, 0.0451363586, 0.031478215, 0.00256090215, -0.021688899, -0.00735297659, 0.0537239909, -0.0109836692, 0.0404761769, -0.0195639729, -0.0195346642, 0.0222164672, 0.029177431, -0.0259094425, -0.0489465706, -0.0565376841, -0.00747387763, -0.00188495591, -0.0695803314, 0.00400805, 0.00645904196, -0.00980396848, -0.0454880707, -0.00293642795, -0.0341160521, 0.0101483529, 0.015885653, -0.0176002495, -0.0708113238, 0.0448432639, 0.0129400659, -0.0331781544, -0.00928372797, -0.00351528707, 0.0295144897, -0.00237588701, -0.00303168315, 0.000214667903, 0.0126762828, 0.00479207421, 0.00207363465, -0.0278145485, -0.0269352682, 0.00815531891, 0.0231397115, 0.00882943347, 0.0189777873, 0.00492763, -0.031947162, 0.0063711144, 0.0172778461, -0.00773033407, 0.0055541168, -0.00869021472, 0.00981129613, -0.0237112418, 0.0248543061, 0.0108591048, -0.00188678771, -0.0148964636, -0.0231250562, -0.0134529797, 0.00767171523, -0.00515844114, 0.00135372439, 0.0286645181, -0.0150356833, 0.0275800731, -0.0161347818, 0.024546558, -0.014955082, -0.00931303762, 0.00438907137, -0.0236672796, 0.00246931054, 0.0260559879, 0.0141637307, 0.0152994664, 0.00409964146, -0.00511447713, -0.0103535186, 0.000543596339, -0.0219233744, -0.00321486639, 0.00152591662, 0.0112401256, -0.0208975468, -0.0289722662, 0.0351418778, -0.00304267416, 0.00522072334, -0.0195200089, 0.0285912454, -0.00678510824, -0.0273749083, 0.00603405712, 0.026363736, -0.000791351718, -0.0237698611, -0.0416192375, -0.00974535, 0.0183183271, 0.00243816944, 0.0032002118, -0.000822034955, 0.0284300447, 0.0290748496, 0.0182157438, -0.000457271235, -0.00139768841, -0.00635279575, -0.0166770052, 0.00128228287, -0.000686937245, 0.00519874133, 0.00372228399, 0.000438265968, 0.0277852379, -0.0101263709, 0.00413627829, -0.0224509425, 0.000454294524, 0.00392378587, -0.0154899778, -0.0104267914, 0.0155339418, 0.0163692571, -0.00175489578, 0.0176588669, 0.00403735926, 0.0206630733, 0.000534895167, -0.0384245217, -0.0363142528, 0.00298955105, 0.00657627964, -0.00872685108, 0.027140433, 0.0392744951, 0.003755257, 0.0289869215, -0.0189924408, -0.0050888313, 0.0300127473, -0.00707820151, -0.00903459918, 0.0218207911, 0.00592414709, 0.00942294765, -0.00219087186, -0.00494961208, 0.0182743631, 0.00873417873, 0.0205311812, -0.00629784074, -0.00204798905, -0.0196225923, 0.00752516882, -0.00595345628, -0.00585453724, 0.00710018352, 0.0228173081, 0.0100237885, -0.00949622, 0.00296756905, -0.00320204371, 0.031126501, 0.0533136576, 0.0251620542, 0.0958414897, -0.0191682968, 0.00847039465, -0.0101336986, -0.00914450921, 0.0201208498, -0.00786222611, -0.0259973705, 0.0207216926, 0.0315368325, 0.0119801862, -0.00566769065, -0.0585307181, -0.00533063337, -0.00284300442, -0.00126762828, 0.0271111242, 0.0059791021, -0.0492689721, 0.0273749083, 0.00675946288, -0.000500548282, -0.033295393, -0.00411063246, -0.00165506091, 0.0054295524, 0.0361090861, -0.015021028, -0.0416778587, 0.00594246527, 0.00874883309, -0.000511539285, -0.0292507056, 0.0012007663, 0.012141387, 0.00899796188, -0.0140977846, -0.0230664369, 0.0332660824, 0.00351711875, 0.00491663907, -0.0294412151, -0.00967207644, -0.00130426488, -0.0262611546, -0.00446600839, -0.0262025353, -0.0141490763, -0.0147938812, 0.0275361091, 0.0118409665, 0.0240189899, -0.00134914485, 0.040915817, -0.0377504081, 0.0018483192, -0.0191389881, 0.00259387516, 0.0105953207, 0.0122879343, -0.0184209105, -0.000858213636, 0.00960613, -0.0178933423, -0.00398973189, 0.00515477732, -0.0176149029, 0.0191243328, 0.0107785035, 0.00767171523, 0.00885141548, 0.00402270444, 0.0240776092, 0.00699760113, -0.00528300554, -0.0164425299, -0.0179079957, -0.00391279487, -0.00795748178, 0.00356657826, 0.00102124678, -0.0159149636, 0.0201648138, -0.00206081173, 0.0208535828, -0.0185088385, 0.0135702165, -0.013071958, 0.00824324694, 0.0406227224, -0.0244000126, -0.018919168, -0.00527567836, -0.000148721912, -0.0181717798, -0.0228759274, 0.00884408876, -0.00822859257, 0.00691700028, 0.00320204371, 0.0161640923, 0.0157830715, 0.0349074043, 0.0485655479, -0.0190217514, -0.0249715429, 0.00622090371, 0.00548817078, -0.00880012475, 0.0698734298, -0.0222018119, -0.0323281847, 0.0125956815, -0.0346729308, -0.00867555942, 0.0159442723, 0.00989189651, 0.0176002495, 0.0296317264, -0.00031965482, -0.00579591887, 0.00194540631, 0.00319288438, -0.0303644594, 0.010236281, 0.018743312, 0.0156658329, 0.0263490826, 0.00446234457, 0.0507051311, -0.0191682968, 0.0105220471, -0.00349696865, 0.00822859257, -0.0192415714, -0.0211466774, -0.0112254713, 0.00213408517, -0.0117896758, 0.0237112418, -0.0061879307, 0.0221285392, -0.0289576109, 0.0523757599, 0.0224509425, 0.0100750802, 0.0251767095, 0.00449898094, 0.0164864939, 0.0130426493, 0.0230957475, -0.0170433708, 0.0325333476, -0.00474078301, -0.0474224836, -0.0239603724, -0.0473638661, 0.0280636773, -0.00904925354, -0.0216302816, -0.020604454, 0.000158682509, -0.0315075219, -0.000467346312, -0.0101630082, -0.0129913576, 0.014156403, 0.0202820525, 0.0203553252, -0.00396775, 0.0324454196, 0.0377504081, -0.0197251756, -0.0146912988, -2.58030814e-05, 0.00105696754, 0.0230517834, -0.0229345448, -0.00767904287, 0.0264223553, -0.015841689, 0.0054185614, 0.0275507644, 0.00976733211, 0.0147645716, 0.0364901088, 0.0186260752, 0.0159149636, 0.0154899778, -0.0347901657, 0.00515477732, -0.0277705844, 0.0357866846, -0.0152848121, 0.00659826165, -0.0131672136, -0.0015762921, 0.0150356833, -0.00309030176, -0.0115332184, 0.00748853199, 0.00388348545, -0.00526468735, -0.00221468578, 0.0146400072, -0.00915916357, 0.0325333476, 0.00568967219, -0.0346436203, -0.0422933549, 0.0225681793, 0.000736854738, -0.0134749617, 0.00880745146, 0.00187488075, 0.00157079659, 0.0331195369, 0.028312806, -0.00418390613, -0.0436415821, 0.0239750259, 0.0297343079, 0.00828721095, 0.0073639676, 0.0185674559, 0.0145300971, -0.0193148442, 0.0249422342, 0.0176881775, 0.0565376841, -0.01331376, -0.0126030091, -0.0392158739, -0.0211613309, -0.021557007, -0.0165890772, -0.0407985784, 0.00345850014, -0.006579943, 0.000148607432, -0.0136728, -0.0250155069, -0.000850428361, -0.0298368912, -0.0436415821, -0.0199889578, -0.0200768858, 0.00244916044, 0.00750318682, -0.0232276395, -0.0213811509, -0.0253818743, -0.00499723945, -0.0225681793, -0.0162520204, -0.00684372708, -0.0181424711, -0.00102857407, 0.0273895636, 0.0260852985, -0.0265542474, -0.0106392847, -0.0139732203, 0.0188898593, 0.0109616872, 0.0171899181, 0.00386516703, 0.0115918377, 0.00792817213, 0.0231397115, -0.0105440291, 0.0255870391, 0.0202820525, -0.0230224729, -0.017834723, -0.00789153576, -0.0479793623, 0.00389447645, 0.00915183593, -0.0161787458, 0.013071958, -0.0121487146, 0.00426450651, -0.011276762, 0.0099944789, -0.010456101, 0.0290601943, 0.0173511188, 0.00783291645, 0.00116504566, 0.015021028, -0.0138926189, 0.0176588669, -0.0477155782, 0.0437295102, -0.0122366427, -0.0276386924, 0.00394943124, 0.017702831, 0.00157079659, -0.0225242153, 0.0139219286, 0.0273895636, -0.00277889031, 0.0385710709, 0.0123758614, 0.0275800731, 0.0120021682, 0.00943760201, 0.0168675166, -0.0133870337, -0.0289136469, -0.0340281241, -0.0233595315, -0.0193441529, -0.0171312988, 0.0183036719, -0.00759111485, -0.00356657826, 0.0189631321, 0.00658360682, -8.89583753e-05, 0.0277266204, 0.0172778461, -0.012295261, -0.0279464405, 0.0110569419, -0.00685838191, 0.00255540665, 0.0169994067, 0.0205311812, 0.0163399484, -0.0115698557, -0.0278731659, -0.0259240959, -0.00669718, 0.000685563369, -0.00234474591, 0.0184648745, -0.0293093231, 0.0294998344, 0.0221285392, -0.0555997863, 0.00201135222, -0.017966615, -0.00295474613, 0.0320057794, -0.0331781544, 0.0285912454, -0.0160468537, -0.00496793026, 0.0108591048, -0.0164864939, 0.00490931189, -0.015841689, -0.0333247, -0.00460156379, 0.0167356245, -0.0161201283, 0.0200182684, 0.015885653, 0.0114599457, 0.0252939463, 0.0253379103, -0.0098479325, 0.00238138251, 0.0138559826, -0.0101043889, -0.060259968, -0.0189631321, -0.00631615939, 0.00420588814, -0.0171752628, 0.0320644, -0.000443074532, -0.0119655309, 0.00628318638, 0.00485802, -0.0162959844, -0.0083165206, -0.0220259558, 0.0142956227, 0.0149257733, 0.00537459739, -0.0298808552, -0.0054185614, 0.0174390469, -0.0117896758, -0.00814066455, 0.00692799129, -0.0189777873, 0.00882943347, 0.0111082336, -0.0107418671, -0.0366366543, 0.0117310565, -0.00361420587, -0.00845574, -0.018787276, 0.0238284804, 0.0170287173, 0.00394943124, -0.027360253, 0.0182597078, -0.00825790223, 0.0396262072, 0.00678877207, 0.0131525593, -0.00320753898, 0.0151675753, 0.0113353813, -0.00745189562, 0.0324454196, -0.0295437984, -0.00190510601, 0.00538925175, 0.0250008535, -0.015108956, -0.0248103421, 0.00316174328, 0.000757462811, -0.000647094916, 0.0289136469, 0.0215863176, -0.011320726, -0.002802704, -0.00496793026, 0.021469079, -0.00364901079, 0.000193945292, -0.0086242687, -5.57277854e-05, 0.00575195486, -0.0149624096, 0.00397141324, -0.0100897346, -0.00454294495, 0.0192122608, 0.00584721, 0.0135482345, 0.0356108285, -0.0091152, -0.0154020498, 0.0481259078, 0.0170726813, -0.0241508819, 0.00345117273, -0.00352994166, -0.00526102353, -0.00987724215, 0.0180985071, 0.00645537861, 0.0361090861, 0.00667519821, 0.059703093, -0.0294412151, -0.0128301559, -0.0391279459, -0.0190803688, 0.00122183247, -0.00658360682, 0.0201501604, 0.0264663193, -0.0294412151, 0.0563911386, -0.0230517834, 0.0231836755, 0.0333247, -0.00480672903, -0.00959880371, -0.0288696829, 0.0152848121, 0.0192122608, -0.0259827152, -0.012273279, -0.0073749586, 0.00378823, 0.00940829329, 0.0152701577, 0.0199743044, 0.0285765901, -0.00250961073, -0.00355558726, -0.00897598, 0.00249495613, 0.00640408741, 0.00952553, 0.0115405461, 0.0118116578, 0.00388348545, 0.0181278158, 0.003295467, -0.013159886, 0.010302227, -0.00904192589, -0.0064443876, -0.00516576832, 0.0192269161, -0.0237405524, 0.0112474533, -0.0204139445, -0.0223043952, -0.00444036257, -0.0141930403, 0.00853634067, -0.0279171299, 0.0139732203, -0.0237405524, -0.00281735882, 0.027404217, 0.0377504081, -0.022465596, 0.00086325116, -0.0109616872, 0.000141394587, -0.0205898, 0.000239283152, -0.0472173207, 0.0147572448, 0.0118556209, -0.0160761643, -0.0222897399, -0.0284740087, -0.00736030377, 0.0134163424, -0.0104487734, -0.00469315564, 0.00156072143, 0.00218354468, 0.0191829521, -0.00524270535, -0.00920312759, -0.0100457706, 0.0103535186, 0.0107711768, 0.0137314182, -0.00581423705, 0.0112694353, -0.00907123554, -0.0300713666, 0.00369663839, -0.0342332907, -0.0176735222, -0.0145740611, 0.0114599457, 0.00289063202, -0.0478621237, 0.0172925014, 0.00174024107, -0.0191243328, 0.00710384734, 0.0214397702, 0.00973069575, -0.0027404218, 0.0340281241, 0.0099944789, 0.0118995849, 0.00623189472, 0.00049459486, 0.00537459739, 0.00501922145, 0.000236306427, -0.00676679, -0.00841910299, 0.0237405524, -0.00737129478, -0.00370213389, 0.0218354464, 0.0368418209, 0.00147187756, 0.0177614503, 0.031478215, 0.0101263709, 0.0110203056, -0.0402417, 0.035845302, -0.00254624756, 0.0116138197, -0.0135335801, -0.00691700028, -0.00282285432, -0.00824324694, -0.00252060173, 0.00942294765, -0.029133467, 0.0100384429, -0.00837513898, -0.0202673972, 0.00279171299, 0.00294741895, -0.0195639729, 0.0183036719, -0.0130133396, 0.00531964237, -0.00962811243, 0.0100750802, -0.0179959238, -0.00147187756, 0.000262181071, 0.00983327813, -0.00470781, 0.00956949405, -0.00791351777, 0.0210294388, 0.0235353876, -0.0183476359, -0.00172467052, -0.0185088385, 0.028180914, -0.0251034349, 0.0121267326, -0.0145081151, 0.00648102397, 0.00460156379, 0.00313976128, 0.0219966471, 0.0142956227, 0.0032899715, 0.00249129254, -0.000675946299, -0.0183036719, 0.00668985303, 0.00346033205, 0.0141197667, -0.00498258509, -0.0174537022, 0.00221102219, 0.00165506091, 0.0130353216, 0.0154460138, 0.00650300598, -0.00122366427, 0.011276762, -0.02078031, -0.0145154428, 0.0045392816, -0.0128374835, 0.028049022, -0.00338522694, 0.00272393529, -0.00215057167, 0.0132844513, -0.00244183303, -0.00413627829, -0.00436342554, -0.0166183859, 0.00155522593, -0.0125004267, 0.0098479325, 0.0128228292, -0.000669534842, 0.00458324561, 0.0141270943, 0.0322402567, -0.0124564627, 0.035669446, -0.0103828283, 0.00766438805, 0.00546985259, -0.0214251149, -0.0095768217, -0.0118702762, 0.00199120212, -0.0121560423, 0.000447196158, 0.0113060717, 0.00918847322, -0.00762775121, 0.0438467488, -0.0142809674, -0.00435976172, -0.00248946063, 0.0154460138, -0.00452462677, 0.00402270444, -0.0106905755, 0.0192855354, 0.0199596491, -0.00807471853, -0.00234657782, -0.00283934083, 0.024546558, 0.00652865181, -0.00397141324, -0.0061146575, -0.0191976074, -0.000248442317, 0.00717345672, -0.000221766255, 0.00315991137, 0.0172631908, -0.0148378452, -0.0105733387, 0.0167063139, -0.00956216641, 0.0258654784, -0.0378090255, 0.0109616872, 0.00848504901, -7.79960033e-07, 0.00317639788, -0.0210734028, -0.00715880236, 0.0420881882, -0.0313316658, -0.0209561661, 0.0105147194, -0.0117530385, 0.00996517, -0.00559441699, 0.0210294388, 0.0159149636, -0.0169114806, -0.0153727401, -0.00507417647, 0.00264333468, 0.0255577303, 0.0128448112, 0.0110056512, 0.0117090745, -0.0439932942, -0.00241069193, -0.0152701577, 0.0077669709, -0.0133064333, 0.00956216641, -0.024546558, 0.0311558116, 0.00191976072, 0.00446600839, 0.0188165866, 0.0346143097, -0.0124564627, -0.0126543008, -0.0327678248, 0.0511154607, 0.0144421691, 0.0108517772, -0.00814066455, -0.00348048215, -0.00921778195, 0.0570652522, 0.0115845101, -0.000536269043, -0.0149917193, 0.0128301559, 0.0169994067, 0.0206630733, 0.00760576967, 0.00562372664, -0.00105238787, 0.0132551417, -0.0194760449, -0.0241655372, 0.00991387852, -0.0204285979, -0.00229345448, 0.0265689027, 0.0142150223, 0.0111741796, 0.0216595903, 0.00497525744, 0.0365194157, -0.00822126493, 0.0129400659, -0.0164425299, -0.00222201319, -0.00331195351, -0.028092986, 0.00129693758, 0.0183036719, 0.00982595049, 0.0277119651, -0.0212785695, -0.0102729183, -0.0125810271, -0.0462794229, 0.00916649122, -0.00985526, -0.00711483834, -0.025235327, -0.00126030087, -0.0372228399, -0.00367282471, 0.0162520204, -0.00754715083, -0.00900528952, 0.0223483592, 0.00680342689, -0.00917381793, -0.00295291445, -0.0150063736, -0.0042315335, -0.011298744, 0.0117970025, -0.00615129434, -0.0196372475, 0.0138486549, 0.00913718157, -0.0011879435, -0.0042315335, 0.00719177537, -0.0155779058, 0.00591682, 0.00809670053, -0.00565669965, 0.0263344273, 0.0343212187, -0.00224765879, -0.00645904196, -0.00146455027, 0.0344091468, -0.0229052361, 0.0236086603, 0.00739694061, 0.0363435596, 0.00874883309, -0.0197251756, 0.0356108285, -0.00494594825, -0.00261036167, -0.00992120616, 0.0168088973, -0.000429793756, 0.00891003478, 0.0177174862, -0.012141387, -0.0238284804, 0.0223483592, 0.00692799129, 0.0259973705, -0.000607252528, 0.0283274613, -0.00825790223, -0.029910164, -0.0174683575, -0.00576294586, -0.0101776626, -0.0117750205, -0.0051108133, 0.00690234546, 0.044931192, 0.0142956227, -0.0142076947, 0.00978198647, -0.0294119064, 0.019739829, -0.00653964281, -0.00753249601, 0.000738228613, -0.0223776679, -0.00375892082, -0.0217768271, -0.00903459918, 0.0074592228, 0.0294265617, -0.00246747863, 0.00198387494, 0.0184355639, -0.000346216373, 0.0161347818, -0.0140538206, 0.0507637486, 0.00388348545, -0.00724306656, 0.0232569482, -0.0361090861, -0.000120214019, 0.00652132463, 0.022641452, 0.0129620479, 0.00823592, 0.00258837966, 0.0328557529, 0.0211466774, 0.0174683575, -0.00587285589, -0.0321816355, 0.00840444863, -0.00822126493, 0.0086242687, 0.00976733211, 0.00224582688, 0.023550041, 0.0139072742, -0.0239164084, 0.0194320809, 0.00315807969, -0.00623922236, 0.0329436809, 0.0160908177, 0.000574279577, -0.000834857754, 0.00553946197, 0.0109763416, -0.00440738956, -0.00535261538, -0.00841910299, 0.008441085, -0.0064956788, 0.0280050579, 0.00695730047, -0.0165744219, -0.0229052361, -0.0173511188, 0.00754715083, -0.00218720827, 0.0179959238, -0.00967207644, -0.0133357421, 0.0117383841, -0.0319178551, 0.0125370631, 0.0325040407, -0.00291444594, -0.0321230181, -0.0208682381, -0.0182010904, -0.00344567746, -0.00757646, 0.0223776679, 0.0163985658, 0.0198570658, 0.00845574, -0.0146180252, 0.00217621727, -0.00742991362, 0.00802342687, 0.0119801862, 0.00888072513, 0.0120094949, -0.000173451655, 0.00262867985, -0.0265249386, 0.00268546678, 0.00775231607, 0.0143102771, 0.0107565215, 0.00561639899, 0.0516137183, -0.00314159319, 4.64255099e-05, 0.00646636961, 0.0341746695, 0.0186114199, -0.000479024253, 0.0185234919, -0.0133430697, 0.00291078212, -0.00380654843, 0.00332111283, 0.0260413345, 0.00467850082, -0.0342039801, -0.000263325957, 0.0152408481, 0.0167795885, 0.00131250813, 0.0229638554, 0.0237991698, -0.0117750205, 0.00552847097, 0.00655429764, -0.00812601, -0.00743357698, -0.0195932835, -0.00250411523, 0.0110422876, 0.0161347818, -0.0154167041, -0.00948889367, -0.0143542411, -0.00105147203, 0.00671549886, 0.0173218101, -0.00315624778, -0.00452462677, -0.0123245707, 0.0145960432, 0.0267301034, -0.0121340603, 0.013049976, -0.0298222359, 0.000525278039, -0.00594979245, 0.00209012115, 0.00656162482, 0.024370702, -0.0218940638, -0.000192227948, 0.010368173, 0.0104048094, 0.00989189651, 0.0206337646, -0.00629417738, 0.00373144331, -0.0166330412, -0.00207180274, -0.00926174596, -0.0173804294, -0.00218537636, -0.020692382, 0.0265395921, -0.0129107572, 0.0121560423, -0.0155485962, -0.0175855942, -0.013006012, 0.00568234501, -0.0104048094, 0.0437881276, 0.011408654, -0.0287377909, -0.00837513898, 0.00451729959, 0.000568326097, 0.0213225335, -0.00994318817, 0.0170726813, 0.0115332184, 0.00989922415, 0.00318738888, 0.0116724381, -0.00420955149, 0.00710384734, 0.0173804294, 0.0128081748, -0.00996517, 0.00302801956, 0.0149184456, -0.00770102488, 0.00450630859, -0.00411063246, -0.00207729824, 0.0148818092, -0.0203260165, -0.00450997194, 0.0127055915, 0.0148305176, -0.00608534832, 0.013958565, 0.00811135489, -0.0131965233, 0.00151767337, 0.015108956, 0.0191829521, -0.0189045127, -0.00185015099, -0.0321230181, 0.00869021472, -0.00415093312, 0.00684372708, 0.0059681111, -0.0127715375, -0.0036929748, -0.00778895291, -0.00632715039, -0.00319471629, 0.0129254116, -0.0203846339, 0.00548450695, -0.00281735882, -0.02078031, -0.016017545, -0.00227147248, -0.0196225923, 0.00122824381, -0.0171606094, 0.0278878212, -0.00560174463, -0.00536360638, -0.0136068538, -0.0016477335, -0.00657261582, 0.00564570865, -0.0101483529, -0.0132404873, -0.00287964102, -0.0115698557, 0.00293093245, 0.0141930403, 0.0322695635, 0.00940096565, -0.0232716035, 0.00120351405, -0.00482504722, -0.01125478, 0.013936583, -0.00255723856, 0.0219526831, 0.0174390469, -0.0306282435, 0.00804540887, 0.00775231607, -0.0137021085, 0.000939730206, -0.0087927971, -0.0207949653, -0.00165048125, -0.00120992551, -0.0203406699, 0.0182743631, -0.0268766489, -0.000687395222, 0.0378090255, -0.00622456754, 0.00255540665, 0.0045576, 0.00785489846, -0.0149917193, 0.017922651, -0.00294375513, 0.000396362797, -0.00301336474, 0.0461328737, -0.014090457, 0.0262171905, 0.0167795885, 0.00629051356, -0.00542222476, 0.015108956, 0.0157097969, -0.00771567924, 0.013071958, 0.022553524, -0.00645537861, -0.00298039173, 0.0155632505, -0.00420588814, -0.00620991271, 0.00604871148, 0.00993586052, -0.0057373, 0.00726504857, -0.00507784029, 0.00558709, -0.00142974546, 0.00154973043, 0.0193734635, -0.02618788, 0.00832384825, 0.0100091342, -0.000820203102, 0.00816264655, -0.00652498798, 0.00834583, -0.000483145879, 0.0120461322, 0.0133430697, -0.0148085356, 0.00387249445, 0.0125810271, -0.00503021246, -0.0184795279, 0.00851435866, 0.0120021682, -0.0148598272, 0.000581148954, 0.0161347818, 0.0272430163, 0.0137534, 0.00392378587, 0.00923976395, 0.000173108187, -0.00087241031, 0.00420588814, -0.0027715629, -0.0269352682, -0.020736346, -0.00385051244, 0.0121047506, 0.0123538794, 0.0106246294, 0.00826522894, -0.00578492787, 0.00289063202, 0.00220003119, 0.000475360604, -0.0250741262, 0.0087927971, 0.0132771237, -0.0319764726, 0.0155779058, -0.00177779363, 0.0126030091, 0.0381314307, -0.00392378587, 0.00961345807, -1.67584076e-05, -0.00959880371, 0.00759844203, -0.00583988288, 0.0179519597, 0.0125077534, -0.0128081748, 0.00667153485, -0.0241069179, 0.00567501783, 0.00476642884, 0.0170287173, 0.00799411815, 0.000950721209, -0.0129400659, 0.0165304579, -0.0128448112, -0.00651399698, 0.031859234, 0.0169114806, 0.0123245707, 0.00217988086, 0.000128915228, -0.00655429764, 0.00400805, 0.00666054385, -0.0192269161, 0.0077669709, 0.0015982741, 0.0229638554, 0.0146839712, -0.00786955375, -0.0115258917, -0.00926907361, 0.00567868166, 0.000651216542, 0.000130632572, -0.00646636961, -0.00400072243, -0.0128594656, -0.0106173027, 0.00377357542, -0.00230261381, -0.00362336519, -0.0268619955, -0.00170543627, 0.00734564941, 0.0077669709, -0.00594979245, 0.0122806067, -0.0068254089, -0.00423886068, -0.002802704, 0.0380435027, -0.0146180252, 0.00312510668, -0.014068475, 0.0233888403, 0.0176002495, -0.017790759, 0.0105073927, 0.00382120302, 0.000730901258, 0.00435976172, 0.00951820239, -0.0051621045, -0.0248249974, -0.0171899181, -0.00738228578, -0.00505952211, -0.00844841264, -0.0265102834, 0.00344018196, 0.0139439106, -0.00875616074, -0.0164864939, 0.0109030679, -0.0145740611, -0.00489832088, 0.00678144488, -0.0137680545, -0.0280343685, 0.00708919251, -0.0149184456, -0.00494594825, 0.011210816, 0.00201318413, 0.000582064851, 0.0151675753, 0.0222897399, 0.00463820063, -0.00803808216, 0.00521705952, 0.00422420632, -0.00580691, 0.016750278, -0.00379922101, -0.00288696843, -0.0298222359, -0.0095768217, 0.00512180431, -0.0092470916, 0.00639309641, 0.00770102488, 0.0174390469, 0.0133284144, -0.013115922, 0.00386883062, 0.0200475771, -0.0265982114, -0.00667519821, 0.0336177945, -6.43431267e-05, -0.026275808, 0.00214324426, -0.00967940409, 0.00246931054, 0.00235024141, -0.00301153306, 0.00978198647, -0.00398240425, -0.0102509363, -0.000875158061, -0.00928372797, -0.00148012082, 0.00225864979, -0.012163369, 0.00458324561, -0.0108297952, -0.00140226795, -0.00736763142, -0.000373693882, -0.00355192367, -0.010170335, -0.00317822979, -0.00109360414, -0.0116431285, -0.00340354512, 0.0301886033, 0.00686937291, 0.0141490763, 0.00950354803, -0.0162813291, 0.00522072334, -0.0183769464, -0.0176002495, 0.0155925602, -0.00354093267, -0.00660558883, -0.020648418, -0.00992120616, 0.00652498798, 0.00955484, 0.0192562249, -0.0129913576, -0.0185674559, -0.00940829329, 0.0253965296, 0.00387615804, 0.00847039465, -0.0116211465, 0.0205458365, 0.00210843957, 0.00755447801, -0.0234034956, 0.00910787191, 0.00542588858, -0.00536726974, -0.0069609643, -0.00629784074, -0.00395309506, 0.0085876314, -0.0135409078, 0.0131672136, 0.0157097969, 0.0144055327, -0.0296903439, 0.00670450786, 0.00593513809, 0.0108151408, -0.0156511795, -0.0280050579, 0.00968673173, 0.00286865, 0.00579225505, 0.00161018095, -0.0218647551, -0.00984060578, 0.00526102353, -0.0116064921, 0.0343798362, 0.0124930991, 0.0136288358, 0.0166330412, 0.00601573847, 0.0255430751, -0.0115332184, 0.0107711768, -0.0129913576, -0.00287231361, -0.0136508178, 0.018787276, -0.0188165866, -0.00686204527, 0.00868288707, -0.00548450695, -0.00106887438, -0.0106979031, -0.0257335864, 0.0178493783, 0.00965009443, -0.00716246571, 0.0081699742, -0.00105421979, 0.00929838326, 0.00861694105, 0.0166476965, -0.00898330752, -0.000593971752, 0.000480856077, -0.00666054385, -0.013936583, 0.0106612667, 0.00420955149, 0.00611099415, 0.00102399453, -0.00397874089, 0.0136288358, 0.0190510601, 0.0137753822, 0.00707087433, 0.00153232808, 0.0101776626, -0.0107052308, -0.00367832021, 0.0134309977, -0.0278438572, 0.0156072145, -0.00189045141, 0.0165011492, 0.027404217, -0.0348780937, 0.00124015077, 0.00283567701, 0.0164425299, -0.0106392847, -0.00105330383, -0.0101263709, -0.0360504687, -0.0184355639, 0.00668252585, 0.0102069722, 0.00441471674, 0.0201208498, 0.000582980749, 0.0131672136, 0.000847222633, -0.00360138319, 0.000432083529, 0.00401171343, -0.0134236701, -0.00571898185, 0.0152555024, 0.00728703057, 0.00031690707, 0.0230224729, 0.0013409016, 0.031038573, -0.027404217, -0.00245099212, 0.018787276, 0.0136728, -0.023330221, 0.0108810868, 0.0135042705, -0.00191792881, 0.0114965821, 0.0135115981, -0.00336324493, -0.00157171243, -0.00490564806, -0.00397507707, 0.0175709389, -0.00660558883, -0.00442204438, 0.00160468544, 0.00311777927, 0.00194174272, -0.00616594916, -0.0111961616, 0.00942294765, -0.003273485, 0.0123758614, 0.00191426522, -0.0329729877, 0.00240519643, 0.0123758614, 0.0022861273, 0.00877814274, 0.00226048147, -0.00661658, -0.00874883309, 0.00549549796, -0.0069829463, 0.00759111485, 0.0226121433, 0.00313609769, -0.00881477911, 0.0123465527, 0.0278585125, 0.00471513765, 0.0108737592, 0.000743266137, -0.00720642973, 0.0162813291, 0.0230224729, -0.000539016793, 0.00265432568, 0.00257922057, -0.0147792259, -0.0091005452, 0.02445863, -0.00461621862, 0.00425717933, 0.0112914173, -0.0149404276, -0.00327531691, -0.00874150544, -0.00877814274, -0.00582889188, 0.000187991827, -0.00358489668, -0.0209415108, -0.029954128, -0.0110056512, 0.00874150544, -0.00334859, 0.01136469, -0.0112401256, 0.009393638, 0.00415093312, -0.00360321486, 0.0219380278, 0.00923243724, 0.013291778, 0.00193075172, 0.026319772, 0.00624654954, -0.00592781045, -0.0179079957, -0.0107272128, -0.015871, -0.00278988131, -0.00429015234, 0.00869754143, 0.00896865316, -0.00401171343, 0.0195053555, -0.0102875726, -0.00711850217, -0.000582064851, -0.00713682035, -0.00459057279, -0.0159442723, 0.0199596491, -0.037574552, 0.00899063516, 0.00227330439, -0.00263783918, -0.0127935195, 0.00431213435, 0.00995784253, 0.0028503316, -0.013159886, -0.005649372, 0.0205311812, 0.00739694061, 0.00455393596, -0.0157391075, 0.0227586888, -0.00982595049, 0.012075441, 0.00225681788, -0.0294558704, -0.0148012079, 0.00716979336, -0.00619892171, -0.0160028897, -0.0105953207, -0.0273016356, 0.00217988086, -0.0203846339, -0.0159882363, -0.00306099257, 0.0118336398, 0.00913718157, 0.0145740611, -0.0153434305, -0.0107491948, 0.0106319571, 0.0185381472, -0.0117237298, 0.0063711144, -0.0162959844, -0.0125224087, 0.0278585125, 0.00774498889, -0.00145997072, 0.0164718404, -0.00404468644, 0.00198570662, 0.010280245, -0.0468069911, 0.0180398878, 0.0196225923, -0.0117530385, 0.0270818155, 0.00080600637, -0.0241069179, 0.00487267505, 0.0116064921, 0.00280087232, -0.0261732265, -0.014999046, 0.0126323188, 0.019827757, -0.0178933423, 0.00168070651, 0.00614030333, 0.0151236113, 0.00266348477, -0.00177504588, 0.0134090157, 0.00337423594, 0.010346191, -1.68585848e-05, -0.026319772, 0.0291041583, 0.0131305773, 0.00514012249, -0.0148818092, 0.00382486661, -0.0127861928, -0.0094302753, 0.00141142716, -0.00931303762, 0.00247297413, 0.00329180341, -0.015841689, -0.0195493195, 0.000936524477, -0.025367219, -0.00899063516, -0.00918847322, 0.00562006282, -0.00889537949, 0.0341160521, -0.00430114334, -0.0146033708, 0.00907123554, 0.00717345672, 9.38814264e-05, -0.0415313132, -0.0063491324, -0.0201355051, -0.0132185053, 0.00136746315, 0.00747021381, 0.00530132372, -0.00283384533, 0.00163033116, 0.0212932229, -0.0133430697, -0.000326753157, 0.0174683575, -0.0014178385, -0.00397874089, -0.00335225393, -0.00893201679, 0.0437295102, 0.00609633932, 0.00483603822, 0.00345300464, -0.026275808, 0.016105473, 0.0207656566, -0.00261952076, 0.0131745413, -0.000444906385, 0.00559808081, -0.0229345448, 0.00905658118, -0.00122366427, -0.00723207556, 0.0023594005, -0.00631982274, -0.00564570865, 0.00199303403, -0.00542222476, -0.00758378766, -0.00306831975, 0.00248213322, 0.0104927374, 0.0146400072, -0.0181424711, -0.00741525879, 0.010192317, 0.00139677245, 0.00888805278, 0.00849970337, 0.00483603822, 0.0229931641, -0.017834723, 0.000641599414, 0.0211759862, 0.00689135492, 5.41535555e-05, -0.0032899715, 0.033383321, 0.00556144398, 0.01320385, 0.0210734028, 0.0141270943, -0.00287231361, 0.00712949317, -0.0165304579, -0.0190364048, -0.00146546622, 0.00934967399, 0.00375159341, 0.0218501, 0.0135262525, -0.000548175944, -0.0100604249, 0.0148085356, -0.000839437358, -0.023418149, -0.0153141217, -0.0133650517, 0.00023997009, 0.0408571959, 0.0175269749, 0.0041692513, 0.0110642696, 0.014068475, -0.0181864351, -0.00175306387, -0.0129400659, -0.0126323188, -0.00685471809, 0.012229315, -0.00545153394, 0.00392744923, -0.00385051244, 0.00389814, -0.0192562249, -0.000270195334, 0.00799411815, 0.0114379637, 0.0055760988, 0.00699760113, -0.0141417487, -0.000871494412, 0.00253892015, 0.00792084448, 0.000231726837, 0.00220552669, 0.00645537861, -0.0138633102, -0.00396775, -0.0163106378, -0.00694630947, 0.0154167041, 0.005649372, -0.0264663193, -0.00449898094, 0.0213078782, 0.00296940072, -0.0145594068, -0.00192891981, -0.00896865316, -0.0173364654, 0.0176588669, -0.0253525656, 0.027360253, -0.0111155612, 0.0140611483, 0.00325699849, -0.00925441924, 0.0089393435, 0.00167887472, -0.00748853199, -0.00192891981, -0.0116284741, -0.00197471562, -0.010258263, -0.0109470319, 0.00686570909, 0.0111155612, -0.00337789953, 0.017966615, -0.00513645913, -0.0111961616, 0.00854366738, -0.00175489578, 0.0237405524, 0.00198204303, -0.000659001817, 0.00689501828, -0.0059791021, 0.0160028897, 0.000484519755, -0.00867555942, 0.0339988135, 0.00471513765, 0.0197984483, 6.44576139e-05, -0.0145520791, 0.0218501, 0.0052463687, -0.0122000063, 0.00476642884, 0.01136469, -0.0125517175, 0.0190657154, 0.00677411724, -0.0174830109, 0.0402710102, -0.0112694353, -0.00233558682, -0.00341636804, -0.0211759862, 0.00432312535, 0.0135262525, 0.0165890772, 0.0376917906, -0.00694997329, 0.00288513652, -0.0249861982, 0.0119875129, -0.0125150811, 0.0238431338, -0.0218501, 0.00740426779, 0.0194760449, -0.00390546746, -0.00629784074, 0.0161201283, -0.0133797061, 0.00759111485, 0.00149569137, 0.0298955105, 0.00253159273, -8.59244e-05, -0.00365450629, -0.0163985658, 0.00381387561, -0.071338892, -0.00841177627, 0.0350539498, 0.0183036719, 0.000442158635, 0.00594246527, 0.0037186204, 0.000732275133, 0.0259827152, 0.00818462856, 0.00437808037, 0.0170873348, 0.00204798905, -0.00233192299, -0.004696819, -0.000284163048, 0.0171459541, 0.00202234322, 0.004696819, -0.0250887815, 0.00795748178, -0.0174830109, 0.00200585672, -0.0013757064, 0.006568952, -0.0145374248, 0.0220992304, -0.011188834, 0.00386150344, 0.0148451719, -0.0277412739, -0.0126543008, 0.018875204, -0.00624654954, 0.0111009059, -0.0115698557, 0.000411246438, -0.0399193, -0.0213078782, -0.00458690897, -0.0242534652, -0.0114526181, -0.0171752628, 0.000560540822, 0.00969405845, 0.0195346642, 0.020604454, 0.0348194763, 0.00526468735, 0.0121926786, -0.0018409919, -0.0140098566, -0.0131965233, -0.0106685935, -0.00630150456, 0.00145813881, -0.00815531891, 0.00728703057, -0.000346216373, 0.00614030333, -0.0364021808, -0.0059791021, -0.00485802, 0.00607802114, 0.0256310031, 0.00763507886, -0.0301592946, 0.0122146606, 0.0132844513, 0.00791351777, -0.000898513943, 0.00333393551, -0.00722841173, 0.0125810271, -0.0232569482, -0.00264150277, 0.00449531758, -0.0128081748, 0.0144788055, 0.0138120186, 0.00513645913, -0.00519141415, 0.017922651, -0.0124198254, 0.0131672136, 0.0110789239, 0.00254624756, 0.0091005452, 0.00925441924, -0.00578859122, 0.0147792259, -0.000107219457, 0.00202417513, 0.0105073927, 0.0135921985, 0.00554678962, -0.00786222611, -0.00114947499, -0.00815531891, -0.0169554427, 0.0127422288, 0.00387615804, 0.001631247, 0.00781093491, 0.0487120971, -0.0215863176, -0.00821393821, 0.012251297, -0.0154167041, 0.00506684929, 0.0348194763, -0.0116797658, -0.00648835162, -0.0179519597, 0.0174243934, 0.00461988198, 0.0086462507, 0.00112749299, -0.0278585125, 0.0081333369, -0.0068876911, -0.010236281, -0.0108224675, 0.00211759866, -0.0152115393, 0.00300603756, 0.00380654843, -0.00530132372, -0.0116358018, -0.011276762, -0.0212639142, -0.00565303583, 0.00697561912, -0.021688899, -0.0229345448, 0.00294558704, 0.0153434305, 0.0214983895, -0.00851435866, 0.0108151408, -0.00465651881, -0.00800877251, 0.0269792322, -0.00269645778, -0.0328850597, -0.0301592946, -0.0191829521, 0.00699027348, 0.00751784164, -0.0194760449, 0.0155046321, -0.001894115, 0.0248543061, -0.010324209, -0.0207656566, -0.017014062, -0.000970871362, 0.0212346055, 0.000991937472, -0.00959880371, 0.0129400659, 0.0199743044, -0.00209012115, -0.0176881775, 0.00925441924, -0.00721742073, -0.00959147606, 0.00099010556, -0.0023594005, -0.0188165866, -0.00599009311, 0.00782559, -0.000832568, -0.00138211774, 0.0217621736, -0.0136434902, -0.00077257544, -0.0334419385, -0.00515477732, 0.00815531891, -0.00499357609, 0.00054313842, -0.0128887752, 0.000646636938, -0.0127495555, -0.0211027134, -0.00499723945, 0.0222311225, 0.00850703102, 0.0116504561, 0.0184941832, 0.00857297704, -0.020648418, -0.00921045523, -0.0276680011, 0.00117237295, -0.0190070961, -0.0113720177, 0.00713315653, 0.00256090215, 0.0165451132, 0.0194320809, -0.0210294388, -0.00754715083, 0.000713956775, -0.002802704, -0.00343285454, 0.000591224, -0.0116577838, -0.0162666738, 0.0106319571, 0.0147499172, 0.00823592, -0.000107677421, 0.000645263062, 0.00848504901, -0.0103388643, -0.0014361568, -0.00376991183, 0.00857297704, 0.0104927374, 3.20856961e-05, -0.00158545119, 0.00766438805, 0.0125590451, -0.00827988423, 0.00212858967, 0.0119875129, -0.00261952076, 0.00964276772, 0.0151822297, -0.0028888, 0.0042938157, 0.00213042134, -0.0223190505, 0.012185351, -0.00258105225, -0.0142663131, 0.00401537726, 0.0238284804, 0.0294851791, 0.0112914173, -0.000891644566, -8.97598e-05, -0.0118482942, 0.000897140068, -0.00163399475, -0.00806739088, 0.0266568288, 0.00272393529, 0.0233009122, 0.00315441587, -0.00544054341, -0.00666420721, 0.00992120616, 0.00110459514, -0.00604871148, 0.0250448175, -0.0342919081, 0.0142809674, -0.00698661, -0.00235756882, 0.00257189316, 0.00694264611, -0.0181424711, -0.00158911489, 0.0182304, -0.00286865, 0.00756913284, -0.0188898593, 0.003284476, -0.0183476359, -0.0134090157, -0.0163985658, 0.00147554127, 0.00121908472, -0.0210440941, 0.012163369, -0.00162758341, 0.0176881775, 0.00647369679, -0.0247370694, 0.00778895291, 0.0104634287, 0.0131525593, -0.000103155078, -0.0125004267, 0.00201684772, 0.00614030333, 0.00327714882, 0.00833117496, -0.0069609643, 0.00777429808, 0.00723573938, -0.0126762828, -0.0245612133, 0.00825057458, -0.0177614503, -0.0197691396, 0.0170287173, 0.0285326261, -0.019827757, -0.00377723901, 0.0178493783, -0.0141051123, -0.000943393854, -0.0095401844, -0.0144494968, -0.00838246662, -0.0109836692, -0.00612931233, 0.0189777873, -0.0241069179, -0.00827988423, -0.00486168405, 0.00989922415, -0.028049022, -0.0157244522, -0.0055760988, -0.018787276, 0.00373327499, -0.00675946288, -0.00185564649, 0.000167727179, 0.0125663728, -0.0103755007, 0.0185528025, -0.00648102397, -0.0105879931, -0.0222311225, 0.00201501604, 0.00885141548, -0.0229638554, -0.0172925014, -0.0211320221, 0.0061146575, 0.00832384825, -0.0186114199, -0.0211027134, -0.0515551, 0.00562739, 0.0142589863, 0.00385783962, -0.0231836755, 0.0125883548, -0.0244000126, -0.00272943079, 0.00155614188, 0.00192159251, -0.000601299107, -0.0140538206, -0.0178493783, 0.0126909371, -0.00175489578, -0.00496793026, -0.00383219402, 0.0139658926, -0.0220113024, 0.00866823271, 0.0097233681, 0.00168986572, -0.00728336675, 0.00602672948, 0.0238724444, -0.00359405577, 0.0129034296, 0.0253525656, 0.0027459173, -0.0323868021, -0.0136728, 0.00360321486, -0.010478083, -0.0227586888, 0.0743284449, 0.011342708, 0.00778162526, -0.0322109461, 0.00138028595, -0.010412137, -0.00897598, 0.041472692, 0.0110129779, -0.0117383841, -0.0138266729, -0.00336141302, -0.0269938875, 0.00836781226, -0.0248836149, -0.00589850126, 0.0109030679, -0.0224949066, 0.00459423661, 0.00327165332, -0.00779628, -0.0230078194, 0.0019124333, -0.0129986852, 0.0051730955, 0.00194174272, 0.0121340603, 0.0280050579, 0.0069719553, 0.0119215669, 0.00273859, 0.0134383244, 0.0177614503, 0.00353543716, -0.0167356245, -0.00487267505, -0.0204725619, 0.00147187756, 0.0115698557, 0.00513279531, 0.0387176163, 0.0133870337, 0.0157977249, 0.00783291645, 0.00736763142, -0.00384318503, 0.0142296767, -0.0166476965, -0.00449165376, -0.0230371282, 0.0192269161, -0.00510714948, -0.00231360481, -0.0165011492, 0.0248836149, 0.00166147226, -0.00338705862, -0.00303534674, -0.0102436086, 0.0156511795, 0.00493129389, 0.00127129187, 0.0214251149, -0.0089393435, -0.00767171523, -0.00442570774, 0.00211576675, -0.0106466115, 0.00647736061, 0.00684372708, 0.00838979427, -0.0141930403, -0.00964276772, 0.000330874784, 0.0291041583, 0.00353543716, -0.0137021085, 0.00535261538, 0.0206337646, -0.00377357542, -0.00789153576, 0.0296170712, 0.00730901258, 0.0104707554, 0.00108719268, -0.00592048327, -0.00766438805, -0.0184355639, -0.0176295582, 0.00891003478, -0.00676312624, -0.00579225505, 0.00198753853, 0.0223337039, -0.00219087186, 0.0260999519, 0.00115497049, -0.00412528729, 0.0181717798, 0.0207656566, 0.0131965233, 0.00534528773, -0.0143395867, -0.0276973099, -0.00410330528, 0.0306868609, 0.012075441, -0.00169352931, 0.0175416302, 0.0027459173, -0.0027349263, -0.000472612854, 0.0420881882, 0.0495327562, 0.00436708936, -0.00181992585, 0.00525003253, -0.0163692571, 0.00451363577, 0.0011403159, 0.0264663193, 0.00562006282, -0.00324051199, -0.00795015413, 0.00594246527, -0.0186114199, 0.0439053662, 0.0113060717, -0.00531231472, -0.00450630859, 0.000304542191, -0.0249568895, 0.0293825977, -0.0118116578, 0.0147865536, 0.0092470916, 0.015929617, 0.00701591931, -0.014002529, 0.0109690139, 0.00900528952, 0.0148085356, 0.0228466168, 0.016017545, 0.0109616872, -0.0123099163, -0.000412620313, -0.0103535186, 0.014046493, 0.0016660518, -0.00350979157, 0.00253342465, -0.00827988423, -0.0119215669, 0.000921411847, 0.0040739961, -0.00345117273, 0.0143102771, 0.00746288663, -0.010236281, -0.00566036301, 0.00701225549, -0.00266165286, -0.0146546615, 0.00565303583, -0.014955082, 0.0217475183, 0.0042938157, -0.0130646313, 0.00740793161, 0.0118482942, 0.00733099459, 0.00713682035, 0.00851435866, -0.0151675753, 0.000533979211, 0.00159369444, -0.029954128, -0.00362702878, -0.0465138964, -0.00541123375, 0.0145813888, 0.000758836686, 0.0464259684, -0.00962811243, -0.010434119, 0.000826614501, -0.00608168449, 0.0117750205, 0.00863892306, 0.0141710583, 0.00396408606, -0.0190510601, 0.0073749586, -0.00264883018, -0.0275361091, 0.00945958402, -2.243995e-05, -0.0225242153, 0.00800877251, 0.0235793516, 0.00182358944, -0.00146821397, 0.00435609836, 0.0179079957, 0.00544420676, 0.00448432658, 0.00265066186, 0.00373144331, -0.0107858311, 0.00956949405]
13 Nov, 2024
PostgreSQL – CREATE INDEX 13 Nov, 2024 The PostgreSQL CREATE INDEX statement is essential for improving database performance, allowing faster data retrieval by creating indexes on specified columns. Indexes in PostgreSQL act like pointers, significantly reducing the time required for query processing, especially on large tables. In this article, we will cover how to create an index in PostgreSQL, with examples showing various types, such as single-column, multicolumn, and unique indexes, to enhance our understanding of efficient query optimization. What is an Index in PostgreSQL? In PostgreSQL, an index is a data structure that enhances query performance by allowing the database to retrieve data faster. The PostgreSQL CREATE INDEX statement is an important command for improving database performance by creating indexes on specified columns. Just like an index in a book, an index in PostgreSQL acts as a pointer to the data location in the table, allowing quicker data lookups. Why Use Indexes? Using indexes can greatly improve query speed, especially on large tables. Without an index, PostgreSQL has to perform a sequential scan, checking each row individually—a slow process for big datasets. However, with an index, PostgreSQL can quickly locate and retrieve data, which is ideal for frequently queried columns. Syntax CREATE INDEX index_name ON table_name [USING method]( column_name [ASC | DESC] [NULLS {FIRST | LAST }], ...); Key Terms Index Name: Choose a meaningful and memorable name for the index. Table Name: Specify the table to which the index belongs. Index Method: Choose an index method such as ‘btree‘, ‘hash‘, ‘gist’, ‘spgist’, ‘gin’, or ‘brin’. PostgreSQL defaults to ‘btree’. Columns: List one or more columns to include in the index. Sort Order: Specify the sort order with ‘ASC’ (default) or ‘DESC’. Nulls Order: Specify ‘NULLS FIRST’ or ‘NULLS LAST’. ‘NULLS FIRST’ is the default with ‘DESC’, and ‘NULLS LAST’ is the default with ‘ASC’. Types of Indexes in PostgreSQL 1. Single-Column Indexes A single-column index is created for just one column, which is efficient if that column is frequently used in WHERE clauses. CREATE INDEX idx_address_phoneON address(phone); 2. Multicolumn Indexes A multicolumn index is an index on more than one column, which is beneficial if your queries frequently filter by multiple columns CREATE INDEX idx_customer_cityON customer(city, country); 3. Unique Indexes A unique index ensures that all values in the index are unique. It’s often used on columns that require unique values, like an email or username. CREATE UNIQUE INDEX idx_email_uniqueON users(email); 4. Partial Indexes Partial indexes include only rows that meet specific criteria, which is helpful for indexing frequently queried subsets of data. CREATE INDEX idx_active_usersON users(status)WHERE status = 'active'; Examples of PostgreSQL CREATE INDEX For the purpose of demonstration, we will use the address table from the sample database for the demonstration. Let us look at an example of CREATE INDEX Statement in PostgreSQL to better understand the concept. 1. Querying a Phone Number Without an Index Suppose we want to find an address with a specific phone number in the address table. The following query finds the address whose phone number is 223664661973. Query: SELECT * FROM addressWHERE phone = '223664661973'; It is obvious that the database engine had to scan the whole address table to look for the address because there is no index available for the phone column. To show the query plan, we use the EXPLAIN statement as follows. EXPLAIN SELECT * FROM addressWHERE phone = '223664661973'; Output Explanation: This output shows a sequential scan on the table, which is slow for large tables. 2. Creating an Index on the Phone Column Creating an index on the phone column allows PostgreSQL to store the phone numbers in a structured way, which significantly speeds up search queries on this column by avoiding a full table scan. Query: CREATE INDEX idx_address_phone ON address(phone); Once the index is created, PostgreSQL uses the idx_address_phone index for the lookup, making the query faster. EXPLAIN SELECT * FROM addressWHERE phone = '223664661973'; Output Explanation: With the index, PostgreSQL performs an index scan instead of a sequential scan, resulting in a significant performance boost. This time, the output will show that PostgreSQL uses the index for a more efficient lookup, significantly speeding up the query. PostgreSQL Indexing Tips Use Indexes on Frequently Queried Columns: Index columns that are often used in WHERE clauses, joins, or sorting. Avoid Indexes on Small Tables: For small tables, sequential scans may be faster than using an index. Choose the Right Index Type: Consider the type of data and query when selecting an index type. The btree index is the default and works well for most use cases. Be Cautious with Update-Heavy Tables: Indexes can slow down insert and update operations, so avoid creating too many indexes on frequently updated tables. Use Partial Indexes for Selective Queries: Partial indexes can reduce index size and improve query performance by indexing only a subset of rows. Conclusion In this PostgreSQL indexing tutorial, we’ve explained how to use indexes effectively to enhance PostgreSQL query performance optimization. By creating indexes on key columns, we can improve query speed with PostgreSQL index and streamline data retrieval. For large datasets, indexing is a powerful tool to make your queries faster and more efficient, ensuring optimal database performance. FAQs How to create an index in Postgres? To create an index in PostgreSQL, use the CREATE INDEX command with the syntax: CREATE INDEX index_name ON table_name(column_name);. Indexes help speed up data retrieval by reducing the amount of data scanned during queries. What are indexes in PostgreSQL? Indexes in PostgreSQL are special database structures that improve query performance by allowing faster search and retrieval of data. They function like a catalog or roadmap for the database, significantly reducing query response time. How to create an index? You can create an index in PostgreSQL using CREATE INDEX followed by the index name, table name, and column(s) you wish to index. For example: CREATE INDEX idx_column ON table_name(column_name); Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX
https://www.geeksforgeeks.org/postgresql-create-index/?ref=next_article
Languages
PostgreSQL – CREATE INDEX
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0229106452, 0.00703550642, -0.0227354877, 0.0401695296, 0.00934759, 0.0139775956, 0.00213254662, 0.0214042887, -0.0226420704, 0.0488573611, 0.0219297614, -0.0243586171, 0.00595536642, -0.0683816224, 0.00872869883, 0.000262371846, -0.0269976612, -0.00746756233, -0.0280486085, -0.0047496967, -0.00607213844, 0.0161028448, 0.00392645504, -0.0153321493, -0.0129383253, 0.0248023495, 0.0137674063, 0.00726321153, -0.000948771602, 0.00955777895, 0.0140710128, 0.0307577159, -6.32210358e-05, 0.00600791397, -0.0368065, -0.00667351345, -0.00350023736, -0.0309679061, -0.038791623, 0.0114611611, 0.0230741259, 0.0105153089, 0.0126697505, -0.00907317642, -0.00527517032, -0.00726905046, -0.0358956791, -0.0290762018, -0.0135455392, 0.0263904482, 0.00213254662, -0.00558461575, -0.00210481347, -0.0148767391, 0.0218713749, 0.018625116, 0.0165465772, -0.00695960457, -0.00116406975, -0.0280018989, -0.00474677747, -0.0172238536, 0.00603710674, -0.00229456765, 0.037460424, 0.0141761079, -0.0276515838, 0.020061411, -0.043345727, -0.011408614, 0.0154839531, -0.0234594736, 0.0435792692, 0.0357555524, -0.0390718766, -0.0210539717, 0.00848931633, 0.00574809639, -0.0104277302, 0.0372268781, 0.012494592, 0.0125529785, -0.0143512655, 0.0437661037, 0.0392353572, -0.0148066757, 0.0085477028, -0.0388616845, 0.0502119139, 0.00765439775, 0.0346111879, -0.0504454561, -0.0213342253, 0.0212875158, 0.00222742395, 0.00917827059, -0.00727488892, 0.0096687125, 0.016815152, -0.00958697218, 0.00734495185, 0.0033571918, 0.0203299858, -0.00629984355, 0.0278150644, -0.0149351247, 0.0331398621, -0.000105185929, 0.0114961928, -0.0110758143, 0.0142461704, 0.0307810716, -0.0225369744, 0.0762286931, -0.0102292178, 0.0164765138, 0.0466620475, -0.0505855829, -0.00725153461, -0.0185667314, -0.0358489715, 0.0255496893, 0.018625116, 0.0335368887, -0.0361058675, 0.000225515716, -0.0183448642, 0.0116246417, 0.0246622227, -0.00820322521, 0.0400294028, -0.00819738675, -0.0153438263, 0.022338463, 0.0574517697, 0.00395564782, 0.0307110082, 0.0268341806, -0.00561380852, -0.0369232707, -0.0600207523, -0.00225077826, -0.0015399293, -0.0585260727, -0.0169786327, 0.0095344251, -0.0161378756, 0.0144680375, -0.00220115017, -0.027511457, -0.035662137, -0.0266239922, 0.0337003693, 0.0316685364, -0.00344769, -0.00957529526, -0.000217852561, -0.0341441, 0.0136156026, 0.00877540745, 0.00209459593, -0.0232609604, 0.00748507818, 0.0124712382, -0.00669686822, 0.0663731471, 0.0182631239, 0.0114144525, -0.000655017328, 0.00934759, -0.00849515479, 0.02317922, 0.00575393485, -0.033630304, -0.0238564983, -0.00175595738, 0.00156620296, -0.0151920235, 0.021147389, -0.019103881, -0.00621226477, -0.0414773747, -0.0176909417, -0.0195242595, 0.00275581656, 0.00795216579, 0.0250125397, 0.0217896346, 0.0206452701, 0.0251059569, -0.0108305933, -0.00942349155, 0.0321589783, 0.0358723253, 0.0429253466, 0.0242885537, -0.0244987421, -0.00469714915, -0.00483143702, -0.0252694376, -0.0399126336, -0.0208788142, -0.027137788, 0.0163830966, 0.0424115509, 0.0170019884, 0.0256431084, 0.0114611611, 0.00260401331, 0.00178515026, -0.00177931169, 0.063664034, -0.0190338176, -0.0251293108, 0.0144330058, 0.0126931043, -0.0261569042, -0.0124829151, -0.00823825691, -0.00940597616, -0.0378808, 0.0484836884, 0.0172355305, -0.0119807962, -0.01117507, -0.0172822401, -0.0370633975, -0.0128916167, 0.0257832333, -0.00511752814, 0.0353585295, -0.0127514908, -0.0322523974, 0.0238915291, 0.0100073507, -0.0234711505, -0.00311780954, -0.0148417074, 0.0212875158, 0.0120508596, 0.034330938, 0.0137440516, 0.00662680482, 0.0169903096, -0.00882211607, 0.0291462634, 0.0113385506, 0.0116830282, -0.0121209221, 0.0405198447, 0.0291696191, -0.0384880155, 0.00386514957, 0.00895056594, -0.0139425639, -0.0110641364, -0.00211503101, 0.00662680482, -0.0203650184, -0.018484991, 0.0153555041, 0.00622394169, -0.0125062698, 0.033747077, 0.0272078514, -0.0180646125, 0.00608381536, -0.0201431513, -0.0197344497, 0.0278150644, 0.0366663747, 0.00330464449, 0.0555367135, -0.00715227844, -0.00850683264, 0.0404030755, -0.0212291293, -0.00531020202, -0.0150285428, -0.000241024478, 0.0118757011, -0.00119983114, 0.0351016298, 0.00592033472, -0.000611227879, -0.0466854, -0.0295899976, -0.00389142334, -0.0056692753, -0.0179828722, 0.00449571805, -0.0355220102, 0.00723985722, 0.0140943676, 0.0289827827, -0.00190776074, -0.0326027125, -0.0230741259, -0.00832583569, 0.0478297658, -0.000482048956, -0.00314700254, -0.00429136725, 0.0236229543, -0.0558636747, 0.0114611611, -0.0176325552, 0.0410803519, -0.021626154, -0.033630304, -0.00338054635, -0.0164064504, -0.00773613807, -0.046591986, -0.0430421196, 0.0376472585, -0.0141761079, -0.0131368376, -0.0150518967, -0.0451907218, 0.0158342682, -0.0259934235, -0.0781437531, 0.0484369807, 0.0297301244, -0.0120625366, -0.0225252975, -0.00932423584, 0.0102292178, 0.0214626733, -0.0498849526, -0.0379742198, -0.0221749824, 0.0528276041, 0.0131251607, -0.0042388197, -0.0113385506, 0.00575101562, -0.00386514957, 0.006247296, -0.0089213727, 0.0459614173, -0.0209372, -0.0238097887, 0.00635822956, 0.0488106497, -0.0120391818, 0.0418276936, 0.0146315182, -0.0100540603, 0.00068384537, 0.0280719623, 0.0117355753, 0.0120625366, 0.0315050557, -0.0181463528, -0.0122260172, -0.0203650184, 0.00216611871, 0.0169669557, 0.0169786327, 0.0010575155, 0.00333091826, 0.0219881479, -0.0299403127, -0.022934, -0.0274180397, 0.014888416, -0.019454198, -0.00901479, -0.0127981994, 0.00507665798, 0.0541821569, -0.00542113511, -0.0304074, -0.00903814472, -0.0157408509, -0.0161378756, 0.0336069502, 0.0239382386, 0.0112392949, 0.0220115017, 0.0159860719, 0.0096687125, -0.0136973429, -0.00913156196, 0.00861192681, -0.00270764832, -0.013685666, -0.0316218287, -0.011887379, 0.031224804, -0.0110991681, -0.0525006428, 0.0149584794, 0.00462708622, 0.00563132437, 0.0161145218, 0.0176092014, 0.00935342815, 0.0418276936, -0.0203533415, -0.000728729588, 0.0143279107, -0.0320188515, 0.00868782867, 0.0166166406, -0.0290061384, -0.0024726449, 0.0158693, -0.00621810323, -0.0177259725, -0.0493711568, 0.0263437387, 0.0094702, 0.0645047948, -0.0387449153, 0.0441864841, 0.0193257481, 0.0196643863, -0.00269013247, -0.00996064208, -0.0404964909, -0.0147015816, -0.00209021685, 0.0239382386, -0.00439938111, 0.0202132147, -0.0051233666, 0.0225019436, -0.00266969739, -0.021859698, 0.00480808271, 0.0188936926, -0.0395156071, -0.0335602425, 0.00241863774, 0.0176909417, -0.00444608973, -0.021007264, 0.00340973935, 0.0320889167, 0.0039410512, -0.000466722646, -0.0277917106, 0.0100598987, -0.0389317498, 0.0338872038, -0.0104452455, -0.0318553708, -0.0332566351, 0.0173756573, -0.00747340126, 0.0105153089, -0.000785290962, 0.00927752722, -0.00459789345, 0.0228405818, 0.032415878, -0.0347513147, 0.00890969578, 0.00257773953, 0.0154722761, -0.0553498752, 0.0291696191, 0.0220115017, -0.00665015914, -0.0236112773, -0.00585902948, -0.00173114333, 0.00867031328, -0.0277683567, 0.0110991681, 0.024615515, -0.0170136653, 0.00809229258, 0.0409402251, -0.0087870853, -0.00522262277, -0.000910090923, 0.0398192145, -0.0155423386, -7.2697344e-06, 0.00910820719, -0.0256431084, 0.00899727456, 0.0115370629, -0.0358256176, -0.028095318, -0.0106612742, -0.0344710611, -0.0225019436, -0.0427385122, -0.0240083, 0.0323691703, -0.00729824323, -0.0543222837, -0.00161291182, -0.0236229543, 0.0218830518, -0.0165232234, -0.0145964865, -0.0647850484, 0.0519401394, -0.0123544661, -0.00620058738, 0.0162429698, -0.0169903096, 0.00574809639, 0.0100774141, 0.00935342815, -0.0131251607, 0.00847180095, 0.0345411263, -0.00649251742, -0.0231441893, -0.0137674063, 0.0114319678, 0.0232609604, -0.0202716012, 0.00445484789, -0.00869950559, -0.0309445523, -0.00751427142, 0.0106145646, -0.00215152209, 0.0191505905, -0.00803390611, 0.0123194344, -0.0191272367, 0.00476429332, 0.0167567674, 0.00664432067, 0.00192965555, -0.0230858028, -0.00766607467, 0.0134637989, -0.000522189308, 0.0024215572, -0.00812148489, -0.0166049637, 0.00941181462, 0.00481975963, 0.00911404658, -0.00976213, -0.00474093901, -0.0136272795, -0.0201081205, 0.0157758817, 0.014771644, -0.00489858072, 0.00750843249, 0.0208788142, -0.00869950559, -0.00229164842, 0.0148533843, -0.0204467587, -0.0280719623, -0.0165699311, -0.00575977378, -0.000620715611, -0.0140359811, 0.0283755697, 0.00310905161, 0.0165465772, 0.00542113511, 0.0173523035, 0.0114786774, -0.0227938741, 0.0207620431, 0.00265656062, 0.0183331873, -0.0131368376, -0.0279318374, -0.0238681752, 0.0149000939, 0.00404906552, -0.0117939608, 0.0185316987, 0.0214509964, 0.0375538394, 0.0316685364, -0.00101080665, -0.00547368266, -0.0021880134, -0.0391185842, -0.0192323308, -0.00319371116, 0.00729824323, -0.00201139576, -0.0058415141, 0.0241484269, -0.00989641808, -0.00971542113, -0.00794632733, 0.00190776074, -0.00860025, 0.00109181716, -0.00892721117, 0.0361992866, 0.00646916265, 0.00634655217, 0.038791623, 0.0101358006, 0.0566577204, 0.00487522641, -0.00238944474, -0.0479231849, 0.00851267111, 0.010205863, -0.0292163268, 0.00773613807, 0.0310613234, -0.0207970738, 0.0113560669, -0.0376239046, -0.00303023052, 0.031224804, -0.00571598392, -0.0236229543, 0.015729174, 0.0228405818, 0.0106904665, 0.0181346741, -0.0328829661, 0.0117472522, 0.0199796706, -0.00722234137, 0.00570138777, -0.0179828722, -0.0104744388, -0.0186835025, 0.0163130332, -0.0140943676, 0.0124011748, 0.0360591598, -0.0402395949, 0.0159627181, 0.00167421706, 0.0110349441, 0.0128449081, 0.0241250731, 0.0143045569, 0.0961266235, -0.003152841, 0.031458348, -0.0181346741, -0.021018941, 0.0342375189, -0.0132652866, -0.00977964606, -0.00927752722, -0.00245658867, 0.010696305, -0.0115137082, -0.0433924347, 0.0045803776, 0.0209488776, 0.00714060105, 0.0193140712, 0.0177493282, -0.0279084817, 0.0245921612, 0.0227705184, 0.00111882074, -0.0115720946, -0.0119340876, 0.00309445523, 0.00141877844, 0.0329997353, -0.0133820586, -0.0396090262, -0.00583275594, 0.00656258035, -0.00867031328, -0.045517683, 0.0131601924, 0.0124362065, 0.00933591276, -0.00634655217, 0.0217546038, 0.0402629487, -0.012249371, -0.0213225484, -0.0358723253, -0.00423006201, -0.0154722761, -0.0337937847, -0.0026478027, -0.0308744889, -0.0123544661, -0.0203650184, 0.047549516, 0.0189053696, 0.0360358059, -0.0177142955, 0.0121209221, -0.028095318, 0.0119165713, -0.0172238536, -0.0140710128, 0.0146665499, 0.0115195476, -0.0338404961, -0.0172822401, 0.0212174524, -0.0204934664, 0.0361992866, -0.0264371559, -0.00170632929, 0.00351191475, 0.00136258197, -0.0164181273, 0.0251059569, 0.00761352759, 0.0185784083, 0.00781787839, 0.00135017501, -0.00969790574, 0.000374034978, -0.000501389324, 0.0210656486, -0.000323859538, 0.0123544661, 0.00118304521, 0.0230390951, -0.0160794891, -0.00792297255, -0.0227705184, 0.0044431705, -0.0166166406, 0.0166166406, 0.0373903587, -0.0105386637, -0.0196877401, -0.0156240789, -0.00536858756, -0.00972709898, -0.0154605983, 0.00860608835, 0.00763104297, 0.00807477627, -0.0207386874, 0.0156357568, 0.0261569042, 0.0379975736, 0.0395156071, -0.00854186434, 0.0129500031, -0.018379895, 0.02317922, -0.00652171, 0.0445134453, -0.0311780944, -0.0172121767, -0.0176442321, -0.0302439202, -0.000346849, 0.0330698, 0.000173333276, 0.022338463, 0.0255963989, 0.000307256036, 0.000682385755, 0.0217546038, -0.0297534782, -0.0335602425, 0.00909653, 0.010153316, 0.0117530907, 0.0110933296, 0.0176442321, 0.0241250731, 0.00327837095, 0.0102292178, 0.00851851, 0.0116129648, -0.00612468552, -0.00427969, -0.0127514908, 0.0100190286, -0.0372035243, 0.0158342682, -0.0132886413, 0.011467, -0.0201898608, 0.0393521264, 0.00844260771, 0.0157174971, 0.0120391818, 0.0169669557, 0.0339572653, 0.0172238536, 0.0353118218, -0.0218713749, 0.030384047, 0.0229807086, -0.0328129, 0.000212196421, -0.0519868471, 0.0319721438, -0.00704134488, -0.00465627899, -0.00298060244, 0.00827912707, -0.034120746, 0.0123311114, -0.0121559538, -0.015367181, 0.0112392949, 0.005704307, 0.0111400383, -0.0149000939, 0.023529537, 0.0149468025, -0.00834919047, 0.00524889678, -0.0124712382, 0.00952274818, 0.0132652866, -0.0164181273, -0.0185550544, 0.0320188515, 0.00942933, 0.0143512655, 0.0201665051, 0.0129616801, 0.0161145218, 0.0520802625, -0.00235441327, 0.00241571851, -0.00442857388, -0.0348213799, 0.0247322861, -0.014047659, 0.0408001, -0.0027660341, 0.0343075804, -0.0023631712, -0.0147015816, -0.0125413015, 0.00801055226, -0.0314817019, -0.0201548282, -0.00204058876, 0.00615971722, 0.00910236873, -0.0124478834, -0.0134170903, 0.0449805334, 0.0150635745, -0.0261101946, -0.0628699884, 0.00244199228, -0.000385712163, -0.00547076296, -0.00457745837, 0.00782955531, 0.0199329611, -0.00621810323, 0.0339105576, 0.0164765138, -0.0430888273, 0.0329530276, 0.0135105075, -0.00651587173, 0.0125646554, 0.0177026186, 0.00274705887, -0.0321356244, 0.0215794463, 0.00233397819, 0.0343542919, -0.0351249836, -0.0174340438, -0.0219064075, -0.00256022369, -0.0214159656, -0.0144797144, -0.0282821525, -0.00627648924, 0.00421838462, -0.016581608, -0.0266473461, -0.0231441893, -0.00634655217, -0.0299169589, -0.013218578, 0.00175741699, -0.0388850383, 0.0219180845, -0.013802438, 0.0195592921, -0.0158342682, -0.00280252541, -0.0103985369, -0.0167801213, 0.00487230718, 0.000918119, 0.00727488892, 0.00653922604, 0.0129032945, -0.00535399141, -0.0228055511, -0.0164998677, -0.00847763941, 0.0334901772, 0.0176208783, -0.00687202578, 0.0220231786, 0.00690705748, 0.00948187802, 0.0327428393, 0.00311197084, 0.00787626393, -0.00237630797, 0.0132652866, -0.0374137126, -0.00489858072, -0.0250125397, 0.0054328125, 0.0219064075, -0.0321823321, -0.00184061693, 0.0055320682, 0.00527517032, -0.007327436, 0.0120742135, 0.0175157841, 0.0387682691, 0.0155656934, 0.00732159754, 0.0207970738, -0.00108597858, -0.0233543776, 0.00415999861, -0.0482501462, -0.00136331189, -0.0471524894, -0.0138257919, 0.019208977, 0.00653922604, 0.0072281803, -0.0135221854, -0.00535691064, 0.0066151279, 0.0130083887, 0.0227705184, -0.000989641761, 0.0354519449, 0.0244053248, 0.00385931111, 0.00986138638, -0.0089914361, -0.0118231541, -0.0119807962, -0.00106919266, -0.0123778209, 0.0144563606, -0.00570722623, 0.0076368819, -0.00870534498, 0.0137790833, 0.00589989964, 0.0143162338, 0.029309744, 0.0125996871, -0.0127981994, -0.00876956899, -0.0287725944, 0.00245658867, -0.0134287672, 0.00453950744, 0.0262736753, 0.0230157394, -0.00278646918, -0.00304482714, -0.0206335932, -2.83263071e-05, 0.0216495097, 0.00285945181, 0.0247322861, -0.0133703817, 0.0441864841, 0.037460424, -0.0702499673, 0.0125062698, -0.020540176, -0.00343601289, 0.0272545591, -0.0515664667, 0.0312014502, -0.0106729511, 0.00313824462, -0.000748799765, -0.00358197768, -0.000127080668, -0.00244199228, -0.0131251607, -0.0110758143, 0.0182748, -0.0122143403, 0.00332507957, 0.00118742418, -0.0155540165, 0.021252485, 0.0275815204, -0.0152270552, -0.0081740329, 0.0107722068, -0.0101591544, -0.0347980224, -0.00937678292, 0.00299811829, 0.0234945044, -0.00350023736, 0.0247322861, 0.00861776527, 0.019582646, 0.00495988596, 0.0150051881, -0.0123778209, 0.0120742135, -0.00753762573, -0.0041366443, 0.029893605, 0.00686618732, -0.0240783636, 0.0149468025, 0.00886298623, -0.00468839146, -0.00102175411, 0.00371334609, -0.00294557097, -0.010748853, 0.0202015378, -0.012249371, -0.0418510474, 0.0250592474, -0.00421838462, 0.0251760203, -0.00650419435, 0.0194892287, 0.0101941861, 0.00591741549, -0.0210656486, 0.0318787247, -0.0329997353, 0.0152037, 0.00781787839, -0.00823241845, -0.00422130385, 3.08350791e-05, 0.027861774, -0.0108189154, 0.0234010871, -0.0288193021, 0.000346301647, 0.00597872073, 0.0311080329, -0.0204701126, -0.0145848095, 0.0226887781, -0.00665015914, 0.00787042547, 0.0264838655, 0.0369699821, -0.010813077, -0.0138725005, -0.0110524595, 0.0126697505, -0.00926584937, -0.00319663063, -0.0199212842, 0.00259087631, 0.00579772424, -0.0245220978, 0.00069515768, -0.00870534498, -0.0293331, 0.0183098335, 0.0146665499, 0.00520802662, 0.0308511332, 0.00676109269, -0.015367181, 0.0391886458, 0.0141644301, -0.011467, -0.0123778209, -0.019092204, 0.00760768866, 0.0202599224, 0.00371042686, 0.0124362065, 0.0314116403, 0.0174573977, 0.0398192145, -0.0323925242, -0.0233660564, -0.0299870223, -0.00142680656, 0.00456578098, -0.00510001229, 0.0379975736, 0.00296308682, -0.0122376941, 0.020540176, -0.0132769644, 0.0104102138, 0.0219180845, -0.00278209033, 0.01429288, -0.0123311114, 0.0231558662, 0.0239615925, -0.0290294923, -0.0182748, 0.00116261013, -0.00704134488, 0.00870534498, 0.00130565569, 0.022583684, 0.0171187595, -0.00240696059, 0.0128682628, -0.00913156196, -0.00568971038, 0.00290178158, -0.00130273646, 0.011951603, 0.0094702, -0.0122610489, 0.000558680505, -0.0100949304, -0.0154138897, 0.00617723307, -0.0197110958, -0.0216611866, -0.0203183088, 0.00707637658, -0.0288426578, -0.00638742233, -0.0155306617, -0.0109940739, -0.0133587047, -0.0218363442, 0.0258766506, -0.0296367053, 0.00686618732, 0.000995480339, -0.00425341632, 0.0189871099, 0.0429253466, -0.0257365257, -0.00627648924, 0.00406366168, 0.00764855882, 0.0122610489, 0.0142812021, -0.0174340438, 0.0230858028, 0.00218509394, 0.00192235725, -0.0373436511, -0.00646916265, 0.0181229971, -0.0156941414, -0.00368707255, 0.0114436457, -0.000448112143, -0.0208437834, -0.00392061612, -0.00711140828, -0.00757265743, -0.0072281803, 0.0120158279, 0.0172355305, 0.0035965743, 0.00317619555, 0.0161962621, -0.000456505106, -0.0254095644, 0.000612687494, -0.0166283175, -0.0319020823, -0.00235149404, -0.0352884643, 0.00105167681, -0.0253862087, -0.0213575792, 0.0211240351, -0.0246388689, 0.00705886073, 0.0302205663, -0.0188936926, -0.00696544349, 0.0143045569, 0.00388558465, 0.00844260771, 0.0148183526, 0.0290762018, 0.00519926846, 0.000367649016, 0.000565613853, -0.00768359052, 0.00860608835, 0.0111517161, -0.0085827345, 0.011046621, 0.0288426578, 0.0209839083, -0.000877248822, 0.0169085693, 0.0192206539, 0.011525386, 0.0121793086, -0.0382778272, 0.0473626778, -0.0157174971, -0.0149701564, -0.0094993934, -0.0115312245, -0.00862360466, -0.0237046946, -0.00366663747, 0.00175449764, -0.00886298623, -0.00122610491, 0.000189571874, -0.0201548282, 0.0120742135, 0.00430304417, -0.0107196597, 0.0200847648, 0.00348856021, 0.0188469831, 0.0051583983, 0.0116655119, -0.0168968923, 0.0203883722, -0.00803974457, 0.03675979, 0.0046124896, 0.0262736753, -0.0129967118, 0.00332216034, 0.022338463, -0.0204117261, 0.00516131753, -0.0211240351, 0.0132769644, -0.0365262479, 0.00446944404, -0.0095344251, 0.0128332311, 0.022945676, -0.000599185762, 0.00514088245, -0.00464460207, 0.0129149714, 0.00352359191, -0.0053977808, -0.0267407633, 0.00718731, -0.0114144525, 0.0177843589, 0.00792881101, -0.00305358507, 0.0107780453, 0.0033630305, -0.0207270104, 0.0091257235, 0.00587946456, -0.000902792672, 0.0195125826, -0.00308277784, -0.0314817019, -0.000714133086, -0.0213575792, 0.0489507765, 0.00596996304, 0.0072281803, -0.00642245403, 0.0160911661, -0.015133637, 0.00170049071, 0.00635239109, 0.00786458701, 0.0271844957, -0.00314700254, -0.0127631677, 0.00139542413, -0.00299227983, -0.00563132437, 0.000664140156, 0.0124712382, -0.027745001, 0.0254329182, -0.00144432229, 0.0220115017, 0.000147150829, -0.000478764763, -0.00511460891, -0.00310905161, -0.0046124896, -0.0039410512, -0.0152037, 0.0087520536, 0.00625313492, 0.0100073507, 0.0423181355, -0.0189871099, -0.00278792903, -0.00752011, 0.023529537, 0.00841341447, 0.00391185842, -0.023190897, 0.01741069, 0.0180646125, -0.0135338623, -0.0223267861, -0.000891115516, 0.0254562721, -0.0154489214, 0.000175978887, 0.00317327608, 0.00244053244, -0.0202716012, -0.000907171634, 0.00660928898, 0.00228726934, 0.0290528461, -0.0143629424, 0.00663848221, 0.03963238, 0.000779452384, 0.0314116403, -0.0443733186, 0.0224085264, 0.0229807086, -7.61298e-05, -0.000853894453, -0.0246622227, -0.0142228166, 0.032789547, -0.0363627672, -0.0166750271, -0.00927752722, -0.000135108727, 0.0183915738, -0.00697128195, 0.0198745765, 0.0266239922, -0.0122260172, 0.0077711693, -0.02317922, 0.0151102832, 0.0146198412, -0.000171508713, 0.0315984748, 0.00410161261, -0.0422714241, -0.0299870223, -0.0124478834, 0.00718147121, -0.00864695851, 0.0060429452, -0.0183682181, -0.00154722761, 0.0176325552, 0.0146315182, 0.0101883477, 0.0432056, -0.00833751354, -0.00826745, -0.0217195712, 0.0178894531, 0.0163947735, -0.00191797828, -0.0100949304, -0.00310905161, -0.0043409951, 0.0403563641, -0.00892721117, -0.0121793086, -0.00135528378, 0.0264138021, 0.0146431951, 0.0223618168, 0.00467379484, 0.00401987229, 0.00777700823, 0.0057714507, -0.0192907173, 0.00605462259, -0.000823971641, -0.0251526665, 0.00119326275, 0.0225136206, 0.00275289733, 0.0174807515, 0.0161261987, 0.0149234477, 0.0272545591, -0.00684867147, 0.00215590117, -0.00492485473, -0.000215115724, -0.00823825691, -0.0261101946, -0.00864695851, 0.015378858, 0.0170019884, 0.0411504135, -0.0284456331, -0.0178427454, -0.0241017193, -0.0136623112, 0.023669662, -0.0105970493, -0.0175274611, -0.0246388689, 0.00434975279, -0.020294955, -0.010153316, 0.000525838404, -0.0191856213, -0.0181813836, 0.020423403, 0.0102467332, -0.0203299858, 0.00867031328, -0.00823825691, 0.000424757745, -0.0172005, 0.0199212842, -0.0162663255, -0.00826745, 0.0120858904, 0.010451084, 0.0141994618, 0.025339501, 0.0141060445, -0.0182748, 0.0364094749, 0.0281653795, 0.00764272036, 0.0220231786, 0.00940597616, -0.002625908, -0.00841341447, 0.00746756233, 0.0131952241, -0.0344710611, 0.00822658, 0.0299870223, 0.0234010871, 0.00154722761, -0.019208977, 0.0147249354, 0.00295140967, -0.00242739567, -0.0176559109, 0.0163830966, 0.0147599671, 0.0212641619, 0.0311780944, 0.010205863, -0.00662680482, 0.0326260664, -0.0157758817, 0.0108597856, -0.000101992948, 0.0315517634, -0.00452783, -0.0227588415, -0.00428844756, -0.0137790833, -0.00457745837, -0.00102321373, -0.00288864458, 0.0117939608, 0.0431822464, 0.0183565412, 0.00165816082, 0.0187185351, -0.0200380571, 0.0246855784, -0.0186134391, -0.0278851278, 0.00861192681, -0.0107838847, -0.0101241227, -0.0251293108, -0.0224552341, -0.00615971722, 0.0112684872, -0.00677276962, -0.00599623658, 0.0217195712, 0.011408614, -0.00472050393, -0.0217779577, 0.0373202972, 0.00916659366, -0.00788210239, 0.0282821525, -0.0146315182, 0.0150285428, 0.0295666438, 0.0106379194, 0.00373670063, 0.0156357568, 0.0158225913, 0.0167917982, 0.0290995557, 0.0113151968, 0.0241951365, -0.0215560906, -0.005736419, -0.0109765576, 0.0227238107, 0.00510585075, 0.00749675557, 0.0176675878, 0.0137674063, -0.0276515838, 0.00955194049, -0.0257598795, 0.0191272367, 0.0152971176, 0.0238214657, -0.0184149276, -0.0153555041, 0.00411329, 0.0129500031, 0.000415270042, -0.0137206977, -0.0121559538, -0.00346812513, -4.94912128e-05, 0.0238448195, 0.00837254431, -0.0213108696, -0.00824409537, -0.0120742135, 0.00907901488, -0.0102992812, 0.0291229095, -0.00583567517, -0.0119282492, 0.0241017193, -0.0255029816, 0.0204701126, 0.0246855784, -0.00408993568, -0.0236112773, -0.00489274226, -0.0266006365, 0.0155306617, -0.0217195712, 0.0166750271, -0.000148063104, 0.00558169652, 0.0261569042, -0.00893305, -0.019208977, -0.0257131699, 0.0122844027, 0.00107065227, -0.00330756395, 0.0186835025, 0.00955777895, -0.0166283175, -0.0139192091, -0.00166399952, -0.00989641808, 0.0154138897, 0.0205752067, 0.0060779769, 0.0574984811, 0.014654872, -0.00445484789, 0.00361700938, 0.0378107391, 0.019208977, -0.0034943989, -0.00156766269, 0.00215590117, -0.000794778694, -0.0156591106, -0.00483435625, 0.018963756, 0.0148533843, -0.0260634869, -0.0124245295, 0.0135922479, 0.000826891, 0.00170778891, 0.000736757647, 0.0138841784, -0.00385931111, 0.0091374, 0.0218947306, -1.08846452e-05, -0.0207503662, -0.015729174, -0.0112159401, -0.00808645319, 0.03194879, -0.00487230718, -0.015378858, 0.00895056594, 0.0102233794, 0.00649835588, 0.0122844027, -0.0140826898, -0.0271144342, -0.0159627181, 0.0368065, 0.0166283175, -0.00513504399, 0.00554666482, -0.0145614548, -0.0130434204, 0.0167450886, 0.00610717, 0.00198804145, 0.0294031631, -0.0225603301, -0.0097738076, 0.0297534782, -0.00338054635, 0.0108305933, 0.0116947051, -0.000966287393, -0.0028813465, -0.0242184903, 0.00649835588, 0.000293571822, -0.00466211792, -0.00580356317, -0.00286091142, 0.0265072193, -0.0224785898, -0.000961178623, -0.0161495525, -0.0239849463, -0.00665015914, 0.00737414509, -0.0076368819, 0.0355920717, 0.00548535958, -0.03003373, 0.00233543781, 0.014047659, 0.00797552057, 0.0179828722, 0.007806201, 0.0134054134, 0.00822658, 0.00138301705, 0.000610133109, 0.0102876034, 0.00808645319, -0.0249424763, 0.0186017621, 0.00491025811, -0.000777262903, 0.000339915685, 0.00357030053, 0.00807477627, -0.00357322, -0.00114655402, 0.0103985369, 0.0137440516, -0.00554958405, -0.0223734938, 0.00307110068, 0.0110699758, 0.00788794085, -0.00227559218, -0.00924249552, -0.00248286244, 0.00558753498, 0.00867615175, 0.00505330367, -0.0183915738, 0.0129616801, -0.0391652919, 0.00829664338, -0.002612771, 0.00986722484, 0.00775949238, -0.0116304802, -0.0125529785, -0.0177259725, -0.00726321153, -0.00176617492, 0.00147278549, -0.0128799397, 0.0119457645, -0.00151657499, -0.0174457207, -0.029309744, 0.00143191533, -0.00121004868, -0.00332507957, -0.0152971176, 0.00683115562, -0.0103751831, 0.00117647683, -0.000767045363, -0.00679612393, -0.00767191313, -0.0113794208, 0.01117507, -0.000829810277, -0.0046475213, -0.0178894531, -0.000218582383, 0.007806201, 0.0103926985, 0.00352359191, -0.00972709898, 0.00848931633, -0.00638742233, -0.0198979303, 0.00822658, 0.00175741699, 0.0290061384, 0.0211240351, -0.00406658137, 0.0119048944, 0.00577437, -0.000692603295, 0.000605024339, -0.0176208783, -0.0147249354, -0.0072281803, 0.00828496553, -0.00656258035, 0.015378858, -0.0286091138, -0.0154605983, 0.0127631677, 8.61192675e-05, 0.0152737638, 0.00788794085, 0.0122376941, -0.0290762018, 0.0425516777, -0.00998399686, 0.0139425639, -0.0109532038, 0.0502119139, -0.01741069, 0.0066151279, 0.0236229543, 0.00686618732, -0.00291491835, 0.00197636429, 0.0100598987, -0.00904398318, 0.00233251858, 0.0150285428, 0.00451615313, -0.015729174, 0.000144413993, -0.00808061473, 0.00204934669, -0.00902646687, 0.018975433, -0.0032900481, -0.000754638342, -0.0149935111, -0.0148417074, 0.0040344689, -0.00449571805, 0.0263904482, -0.0166049637, 0.0202599224, 0.0179828722, 0.00168005563, 0.0111984247, -0.0131601924, 0.00410745153, -0.00601375243, 0.0257832333, 0.00194717129, -0.0202015378, 0.0122026624, 0.0241717808, 0.0065800962, -0.00586778764, -0.00432347925, 0.00284923427, -0.0118231541, 0.0089914361, 0.0224318802, -0.00558753498, 0.0100598987, 0.0107955616, 0.000869950571, -0.0120275049, 0.00616555568, 0.00367831462, 0.00510001229, -0.0199212842, 0.0117939608, -0.00399651797, 0.00211795024, 0.00576269301, -0.0103518283, 0.0143629424, 0.00472342316, 0.000759747112, -0.00740333786, -0.0026988904, -0.0145030692, 0.0115662562, 0.0095344251, -0.0146315182, 0.0304541104, -0.0132652866, 0.0189987868, 0.0516131781, -0.00626481185, 0.00264342362, -1.92833268e-05, 0.000909361115, 0.021018941, 0.0107313367, 0.0105211474, 0.0133003183, -0.0139542408, 0.0083783837, -0.0301505029, -0.00977964606, -0.0014231574, 0.00250621676, 0.00615387876, 0.0111458767, -0.0393521264, -0.00301271491, -0.00609549275, -0.0218947306, 0.0191389136, 0.00903230626, 0.000514891057, 0.000549192831, -0.0136506343, -0.00537150726, 0.00364036369, 0.022104919, -0.00049774017, -0.00597872073, 0.00917827059, 0.0114202909, 0.0206452701, -0.000306891132, -0.0101883477, -0.0322290435, -0.00542697357, -0.0146081634, -0.00165232224, -0.0142812021, -0.00607213844, -0.0006276489, -0.00787626393, 0.0013720697, 0.0115429014, 0.00906733703, -0.0160678122, -0.00623561908, 0.00644580834, 0.00921914075, -0.0259233601, 0.0242418442, -0.00506206136, -0.00337762688, 0.00974461436, 0.0307577159, -0.00848347787, 0.00170486968, 0.00577437, 0.0220465325, 0.0209955871, -0.0112509718, 0.013452122, 0.00273976056, 0.00991977192, 0.00615387876, 0.0091957869, -0.015133637, -0.021380933, -0.00911404658, -0.0149000939, -0.0043059634, -0.0190338176, -0.0240316559, 0.0107254982, 0.0132652866, -0.000210189406, -0.0111809084, -0.00406658137, -0.0187535658, 0.0041366443, -0.0212174524, -0.0181813836, -0.0146081634, -0.00806893781, -0.00564300176, 0.00671438361, 0.00368123385, -0.00473218085, 0.00907317642, -0.00022186659, 0.026180258, 0.00519634923, 0.001591017, 0.0218713749, 0.0074325311, 0.00900311302, 0.0257832333, 0.00131222419, 0.0022770518, -0.0271611419, -0.0249658301, 0.0141177215, -0.023295993, 0.00484311441, 0.0114611611, 0.0124595612, 0.0136739882, -0.00954610202, 0.00469714915, 0.0109415259, -0.0212291293, -0.00115239259, 0.0267874729, -0.0131368376, -0.0263670925, 0.0181346741, -0.0246622227, 0.013206901, 0.0187652428, 0.0106379194, -0.00890385639, 0.0150518967, -0.00326669379, -0.00696544349, -0.00595828565, 0.000397754251, -0.00212086947, -0.00255584484, -0.0113852592, 0.00855938, -0.0170136653, -0.00138228724, -0.00137644866, 0.000356336735, 0.00752011, 0.0262036119, 0.00278938864, -0.00138374697, 0.0238448195, 0.0151686687, 0.0110816527, 0.0147949988, 0.013206901, -0.0102525717, 0.00328129018, -0.0136039257, -0.0271611419, 0.0054328125, 0.00324917794, 0.00142534694, -0.0226420704, 0.000691873487, -0.00202891161, -0.00115020317, 0.0182397701, -0.00404906552, -0.00492193503, 0.00430888264, 0.026904244, 0.0127748447, 0.00312948669, -0.00218655379, 0.012973357, 0.012728136, 0.007806201, -0.0205868855, 0.0169085693, -0.0144330058, 0.00208145892, 0.00654506451, 0.0134404451, 0.004203788, 0.00857105665, -0.00192381698, 0.015612402, 0.0103985369, 0.0156007251, -0.0191856213, 0.0199796706, 0.00178952923, 0.0058415141, -0.0168034751, -0.0288893655, -0.00594952796, 0.00752594834, 0.0140359811, 0.00737998355, -0.011951603, 0.00207999931, 0.0111225229, 0.0120742135, 0.0178894531, 0.0135922479, -0.0022099081, 0.0208554603, 0.0056692753, 0.0415007323, -0.0294031631, 0.0174223669, 0.00246972544, 0.0107663684, -0.00826745, 0.0266707, -0.0014662171, -0.0087870853, 0.00470882654, 0.00818571, 0.00580356317, -0.0227821954, -0.020656947, 0.0254562721, 0.00683115562, -0.000147424507, 0.0119224098, -0.0056692753, -0.00822658, 0.0147949988, -0.0014377539, -0.00301563414, 0.027137788, -0.0112976804, 0.00463584391, -0.0233310238, 0.00133922766, 0.00914907735, 0.0192323308, -0.00393521274, -0.00236900966, 0.00930088107, 0.0178894531, 0.0101941861, 0.00273684133, -0.00895056594, 0.0141060445, 0.000670343637, -0.00150051876, 0.0237514023, -0.0176092014, 0.0280018989, 0.0123311114, 0.0089564044, 0.0209722314, -0.0317386, 0.0170486961, -0.0215210598, 0.00352359191, -0.00939429831, 0.0133703817, -0.00511168968, -0.0305942353, -0.00352359191, -0.00556418067, 0.00248578168, 0.00872286, 0.00474385824, 0.00272224471, 0.0175975244, -0.0138958553, -0.0185316987, -0.0122610489, 0.00555834221, -0.00257336069, -0.00345352874, -0.00532187894, 0.00286675, -0.00658593467, 0.00732159754, 0.0114202909, 0.0119282492, -0.00886298623, 0.00329588656, 0.0230974797, 0.0135221854, -0.0244520344, 0.0097738076, -0.00151365565, -0.00921330228, 0.0130667752, -0.00438186526, -0.0118173156, -0.0165465772, -0.0108014, -0.000724350626, 0.0171070825, 0.00732159754, -0.0212991927, -0.0028463148, 0.00474385824, 0.00403738813, 0.00434683356, -0.0112042632, -0.00152095384, -0.00861776527, 0.012728136, -0.0200847648, -0.0238798521, -0.00881627761, 0.0175041072, 0.0120858904, 0.00331924111, -0.00861776527, -0.00541237742, -0.00622394169, 0.01549563, 0.0117297368, -0.0031878727, 0.00848931633, 0.009803, 0.000312912191, -0.00241571851, 0.024989184, 0.000364547246, 0.0347279608, 0.0131601924, -0.00351775321, 0.0161028448, -0.00420086877, -0.00309445523, 0.00294994982, -0.00419794954, -0.0141877849, 0.00063786644, 0.0158926547, 0.00683115562, 0.00613052445, -0.00150051876, -0.0145264231, -0.000851705, 0.00391477766, -0.0153438263, -0.0127631677, 0.00317327608, -0.00650419435, -0.00122026622, -0.0117005436, -0.00299811829, 0.00033334727, -0.00248432206, 0.0102817649, -0.0040695006, 0.0118114771, 0.0191739444, 0.0167450886, 0.033163216, 0.0177843589, 0.00284047634, -0.0197928362, 0.021626154, 0.0149818342, -0.00060721382, 0.00715227844, -0.0100015122, -0.0147249354, 0.00404030737, 0.00521678431, 0.0220582113, 0.00622978061, 0.00158663804, -0.00841341447, -0.00127938204, -0.0168618616, -0.00363160577, -0.015133637, -0.00415416, -0.0184616353, 0.00705302227, -0.0357789062, 0.0116246417, -0.00324333925, -0.0027952271, 0.0150869284, 0.0131251607, 0.0028521535, 0.00304190768, 0.00233397819, -0.0128916167, -0.00233105896, 0.024381971, 0.0118581858, -0.00856521819, 0.0248257034, 0.0101474775, -0.000306161295, 0.00597288227, -0.0170370191, -0.00292805512, -0.0067494153, -0.0135805709, -0.0299870223, -0.0134754768, -0.0197694805, 0.0091257235, -0.0325092934, -0.0142578483, -0.012494592, 0.00555250328, 0.00377465133, 0.00610133121, -0.0211824216, 0.0132886413, 0.0097037442, 0.0172822401, -0.000409796368, -0.00248870091, -0.00385639165, -0.012973357, 0.0174924303, 0.0159510411, -0.019337425, 0.0196877401, 0.00500367535, 0.00550871389, -0.00784707069, -0.0195476152, -0.000352322706, 0.010567856, 0.0114436457, 0.0102934428, 0.00632903678, -0.0209255237, -0.00123705226, 0.0173172709, 0.00494820904, -0.00733911339, -0.0219414383, 0.0139192091, 0.0029835219, -0.0284456331, -0.00841341447, 0.0103051197, 0.0188936926, -0.0103635052, -0.00557877729, 0.00684283301, 0.0121909855, 0.0098088393, -1.48815743e-05, -0.0260401312, 0.0196293555, 0.0095344251, -0.0146899037, -0.0161729064, -0.0194308423, -0.0157058202, -0.0270910785, 0.000302147266, -0.00160123454, -0.00764272036, 0.0021077327, -0.0116655119, -0.00462124776, 0.0131835463, -0.0178077128, -0.0176792648, 0.00652171, -0.00328420941, -0.00627648924, 0.0133820586, -0.0207153335, -0.0233193468, 0.0104218917, 0.0117764454, -0.0133703817, -0.0163247101, -0.00242885528, -0.0029032412, -0.0204817895, 0.00662680482, 0.0109590422, -0.00744420802, -0.00632319786, -0.00407533906, 0.0233660564, 0.00528100878, 0.00415416, 0.0198745765, -0.00221720641, -0.0049890792, -0.00230186596, -0.00789961871, 0.034330938, 0.0118698627, 0.0185200218, 0.00840757601, -0.0279318374, 0.0115137082, 0.0317619555, -0.00428844756, 0.0181113202, 0.00822074153, -0.0243352614, -0.0205635298, 0.00186835031, 0.0148066757, 0.00802806765, -0.0149584794, -0.0175041072, 0.000530947174, -0.0132652866, 0.00135017501, -0.00395564782, -0.0147015816, -0.0110232662, 0.0153905358, 0.00726905046, -0.0300804395, 0.00273830094, 0.00342141651, 0.0141177215, 0.0104919542, 0.0162429698, 0.00276019564, 0.0190454964, -0.027745001, -0.0216845404, 0.0252460837, -0.00165524159, -4.02543737e-05, -0.0147366123, 0.0139892725, 0.00588238426, 0.00926584937, 0.010620404, 0.0112509718, 0.00284485519, 0.0118640242, 0.000754638342, -0.0299870223, 0.0158342682, 0.0121793086, 0.00687202578, 0.0157525279, 0.0237981118, 0.00462124776, -0.00476429332, 0.0165699311, -0.00459789345, 0.00200993614, -0.00608381536, -0.0211006813, 0.00425633555, 0.0163013563, 0.0229223222, 0.00486938795, 0.0117997993, 0.0178661, -0.000731284, -0.000818862871, 0.00163188716, -0.00371626555, -0.00322290417, -0.00808645319, -0.0232843161, 0.00455118436, -0.00763104297, -0.00698295934, -0.0244053248, 0.000181635027, 0.0107079828, 0.00665015914, -0.00493945088, 0.0176325552, -0.0136973429, -0.00176179595, 0.00404030737, 0.0106787896, 0.00730992062, -0.000567073526, -0.00737414509, -0.0164298061, -0.00652754866, -0.0284923408, 0.00405490398, 0.0166283175, 0.00159685558, -0.00922497921, -0.00176909415, 0.0103751831, -0.010567856, -0.00164356444, -0.00568679115, -0.00748507818, -0.00961616542, 0.0262269676, -0.0111925863, 0.0120975683, -0.0278384183, 0.0106437579, 0.00265364116, -0.00675525377, 0.00805142242, 0.00116333994, -0.0141877849, 0.00565175945, 0.00587946456, 0.0012472698, 0.00944100786, -0.0161612295, -0.00638158387, 0.0306642987, 0.00156036438, 0.030384047, -0.0141994618, -0.00670270668, 0.0244286805, -0.0177493282, 0.0156941414, 0.0103576668, 0.00205226592, 0.00893888809, -0.00493653165, 0.029309744, -0.0155890472, -0.0303373374, 0.018006226, 0.0156941414, 0.0128916167, -0.00424173893, -0.0106145646, 0.0326494202, 0.0104861157, -0.00124945922, -0.0171771459, 0.0197461266, -0.0135105075, 0.0244286805, -0.00801055226, -0.0148183526, 0.0348914415, -0.000218035013, 0.0129500031, 0.00918410905, -0.000872140052, 0.00498032104, -0.00282296049, 0.0209722314, 0.0320889167, 0.00508833537, -0.00460665114, -0.0201548282, -0.000983073376, -0.00489858072, 0.021497706, 0.00509709306, -0.00212670816, 0.00843093079, 0.0149234477, 0.00158809777, 0.0129850348, -0.0107079828, 0.0190688502, -0.00730992062, 0.0137790833, -0.000178989416, 0.0028010658, -0.0179595165, -0.00359365507, 0.00232959935, -0.0121793086, 0.00205956423, 0.024989184, 0.0223034322, 0.010696305, -0.0110699758, -0.000428771804, -0.00536858756, 0.000966287393, -0.00994896516, 0.0104452455, 0.00975045282, 0.0116304802, -0.0171537902, -0.00666767498, -0.00317619555, -0.00260985177, -0.00810980797, 0.00389434258, -0.0147599671, 0.00696544349, -0.0143279107, 0.0226537473, -0.00153409073, -0.0140826898, -0.0181580298, 0.00680196285, -0.00937094446, 0.0317152441, 0.0248724129, -0.0106904665, -0.00383595657, 0.0222333688, -0.00564592099, 0.0126463957, -0.00112319959, -0.00541237742, -0.0205051433, -0.0102292178, -0.0129500031, -0.0313649289, -0.00658593467, -0.00917243212, 0.00159393635, -0.00712892413, 0.00910820719, 0.015729174, 0.0433690809, 0.00686034886, 0.000749529572, 0.000444463018, -0.0199329611, 0.00034867358, -0.0205752067, -0.0115312245, -0.00958697218, -0.00885714777, 0.0120158279, 0.00975629129, -0.00708805397, -0.039212, -0.029660061, 0.00206540292, 0.0133937364, 0.0333033428, 0.0277917106, -0.0164998677, 0.0106145646, 0.00926001091, 0.0063757454, -0.0173990112, -0.00102978211, -0.015857622, 0.00357905845, -0.00363744446, -0.0109765576, 0.00111736101, -0.0102292178, 0.00584443333, 0.00347980228, -0.00839589909, -0.0145614548, 0.0280252546, -0.00620058738, -0.0117939608, 0.0111458767, -0.00808645319, 0.0135805709, -0.00752594834, -0.016920248, 0.0263437387, 0.00382136018, 0.0149818342, 0.0114845159, 0.00737998355, 0.00593201211, 0.00329880603, -0.00728072738, -0.00745588541, 0.00278938864, 0.0134988306, 0.0102350563, 0.0102642495, 0.0069537661, 0.0343075804, -0.0112801651, 0.0199563168, 0.0155773703, -0.00656841882, 0.00350899529, 0.045891352, 0.012973357, 0.00697712041, -0.0212291293, 0.00348856021, 0.00945852324, 0.00416875677, -0.00277625164, -0.0357088447, 0.00304190768, -0.0112451334, -0.0127398139, -0.0203416627, 0.00545908604, -0.0188820157, -0.0162663255, 0.0136272795, 0.00874621514, -0.00238068704, -0.0168034751, -0.0215911232, 0.00785291, 0.000279887638, -0.0138491467, -0.0287725944, 0.0112101017, 0.0053277174, 2.49508685e-05, -0.00627065077, 0.0129500031, -0.0134054134, -0.00307110068, 0.0102992812, 0.000553936639, -0.0213459022, -0.0244987421, -0.020656947, 0.00465919869, -0.0115020312, -0.00428844756, 0.0118581858, 0.0134170903, 0.00849515479, -0.00796968117, -0.0349381492, -0.0149000939, 0.00229456765, 0.0129616801, -0.00029649114, -0.0097738076, 0.01549563, 0.0241017193, -0.00169173279, -0.0148300305, 0.0119224098, 0.00868199, -0.0204934664, 0.0101591544, 0.00482559856, -0.00177347311, 0.00106627331, 0.0115954485, -0.00144724164, -0.000314736739, 0.0132536096, -0.0181580298, -8.35192695e-05, -0.0316451825, 0.00517883338, 0.0102000246, 0.00367831462, 0.00160123454, -0.022572007, -0.0183682181, -0.0138841784, -0.0153555041, -0.00567219453, -0.00618891045, 0.00782371685, 0.0075668185, -0.00210043439, 0.0134054134, -0.0133587047, -0.00357613922, -0.0128332311, 0.0181229971, -0.0145147461, 0.00242593605, 0.0117647685, -0.00188586605, 0.00812148489, 0.0276048761, -0.0152620859, -0.0123427892, 0.00906733703, -0.000933445292, -0.00920162536, 0.0146198412, -0.00520218769, -0.0261569042, 0.00551163312, 0.00634071371, -0.000826891, 0.0137206977, -0.0134404451, 0.00917827059, -0.0194074884, 0.0152153773, 0.00116844871, 0.0246855784, 0.00404030737, 0.0172822401, -0.0126814274, 0.00568971038, 0.0011086032, 0.013323673, 0.0101182843, -0.0066910293, -0.0050562229, 0.00498616, 0.0169786327, -0.0102876034, 0.00996064208, -0.0148650622, -0.0291462634, 0.0102992812, 0.00965703558, -0.0179595165, 0.00673189946, 0.0140593359, 0.0174340438, 0.011642158, 0.00477888947, -0.0209955871, 0.0109123336, 0.0118757011, 0.0176092014, 0.00223618164, 0.00775949238, -0.0060663, 0.00862944312, -0.005225542, -0.0104977936, -0.0124245295, 0.00819154829, -0.0110699758, 0.0144213289, 0.0162196159, -0.0166983809, 0.00507957721, 0.00130054692, 0.00306818145, -0.0136272795, 0.0121092452, 0.00163626613, -0.00998983532, 0.00666767498, -0.0126580736, 0.0296834148, -0.0139659187, 0.0013202522, -0.0147015816, 0.00148446264, -0.0186484717, 0.00353526906, 0.0017442801, -0.0197578035, -0.00181434327, 0.00229456765, 0.00994896516, -0.00860608835, -0.018730212, 0.0060663, 0.00778284669, -0.00105970493, -0.00253395014, -0.0120858904, -0.0162196159, -0.00848931633, 0.00649251742, 0.0183448642, 0.00570138777, -0.00690705748, 0.0112217786, -0.0513796322, -0.0304074, 0.0105269859, -0.0171304364, -0.00792881101, 0.00238944474, 0.0267407633, -0.0150051881, 0.00503578782, 0.013802438, 0.00344769, -0.002625908, -0.0125996871, -0.0213692561, -0.0143629424, -0.0337237231, -0.00655090297, 0.0301972106, -0.0142111396, 0.0134170903, -0.00996648055, -0.00501243351, -0.00951690879, -0.00686034886, -0.0283755697, -0.034120746, -0.00111809082, -1.26692939e-05, 0.023050772, -0.0249191225, 0.00157933985, -0.0284222793, 0.0143512655, 0.00362576731, -0.00544448942, -0.0105912108, -0.00115385221, 0.00150489772, -0.00378924794, -0.0194892287, -0.0250826031, 0.00684283301, 0.000469277031, -0.0157875605, -0.0161729064, -0.0267874729, -0.0227121338, 0.0120158279, -0.00256022369, -0.0140943676, 0.0188236292, -0.0280018989, 0.00930671953, -0.00533939479, -0.0110349441, -0.0236930177, -0.0279551912, -0.00910820719, 0.0275815204, 0.00376005494, 0.010205863, -0.00879292376, -0.00874037575, -0.0253862087, 0.000696617295, -0.00234857458, 0.006784447, -0.00639326125, -0.00755514158, 0.0154722761, -0.0101182843, 0.0137557285, 0.0234127641, 0.0117822839, -0.0126463957, 0.0123894978, -0.00688370317, -0.00649251742, -0.0283989236, 0.00884547085, 0.00903230626, 0.00109035755, -0.0138257919, -0.00766023621, -0.0136389574, 0.00823825691, 0.0241250731, 0.018730212, -0.000997669878, -0.0192556847, -0.0174457207, -0.0158109143, 0.00635239109, -0.0337003693, -0.00601375243, -0.0173055939, -0.00840757601, 0.000945852313, 0.0161845852, -0.0181930605, -0.00961032696, 0.0130784521, 0.0125996871, 0.00659761205, -0.00425341632, 0.023295993, 0.0176092014, 0.0363394134, 0.0182280932, 0.000153171874, 0.0264838655, 0.00439354265, -0.0250592474, -0.0285857599, 0.00121442764, -0.0272312053, 0.0202482454, 0.00167713629, 0.00839589909, 0.0447703451, 0.00747923972, -0.00670854514, 0.0173990112, 0.00775365345, 0.0143279107, -0.000403592858, -0.0241717808, -0.0141527532, -0.0152153773, 0.0114436457, -0.0156357568, 0.00627648924, -0.0087170219, 0.0197227728, 0.00799887441, -0.00505914213, 0.00491609657, 0.00673773838, 0.0100482209, 0.0161495525, 0.00418335292, 0.009803, -0.00295286928, -0.00665599806, -0.00917243212, 0.018496668, -0.00681364, 0.00700047472, 0.00855354127, 4.13719172e-05, -0.0202015378, -0.0114202909, 0.00595536642, 0.0354052372, 0.00581815932, -0.00251205522, 0.0128916167, 0.0218246672, 0.00282004126, -0.00214860286, 0.0283522159, 0.0201081205, 0.013930887, -0.0170136653, 0.00103854, -0.0215444136, -0.0159627181, -0.0219764709, 0.00704134488, -0.00499199843, 0.0177026186, -0.00299811829, 0.0157058202, -0.00565759838, 0.00743836956, 0.0045103142, -0.0126463957, 0.01885866, 0.0208904911, 0.0281653795, 0.00393813197, -0.0118289925, -0.0227705184, -0.0178894531, 0.00127865223, 0.00837254431, -0.00613052445, 0.0288426578, 0.00256606238, 0.0143512655, 0.0260167774, 0.0375771932, 0.0330698, 0.0101591544, -0.000676912081, -0.0038739075, -0.0125296237, -0.00494820904, -0.00433223741, 0.0209488776, 0.0220815651, -0.000974315451, 0.00211503101, 0.0145147461, -0.0105620176, 0.0338638499, 0.0151803456, -0.00808061473, -0.0018376977, -0.0100832526, -0.0216728635, 0.0328129, -0.00362576731, 0.00697712041, 0.0158342682, 0.0233660564, 0.007327436, 0.00207999931, 0.0204467587, 0.000940743543, 0.0290995557, 0.0122844027, 0.0229223222, -0.000896954094, -0.0264605116, -0.0177259725, -0.0156474337, 0.0390952304, 0.0190338176, 0.00752011, -0.00313532539, 0.00886298623, -0.0228989683, -0.0174223669, 0.0171888229, -0.0052956054, -0.0040432266, -0.00225661672, -0.00376589363, -0.00167567667, 0.0053277174, -0.00531020202, -0.0325793587, 0.0154022127, 0.00848347787, 0.0233427, 0.00306234276, -0.000226063086, 0.01549563, 0.0242184903, 0.0287959483, 0.00271056755, 0.00776533084, -0.0129266484, -0.0227471646, 0.00742669217, -0.0279318374, 0.0199679937, -0.0146665499, 0.00538902264, 0.0034593672, 0.00741501525, 0.0157758817, -0.0138841784, -0.00457161944, -0.000953150564, 0.00125091884, 0.020528499, 0.0272078514, 0.00578896655, 0.0218129903, -0.0131485155, -0.00391185842, 0.0179595165, -0.0252927914, 0.00427969, -0.00686034886, -0.0455410369, 0.0119691193, 0.010748853, 0.00712892413, 0.00261860969, -0.00830832, 0.0391886458, 0.00127646269, 0.00774781499, 0.02077372, -0.00271786586, -0.00587654533, 0.01981619]
08 Oct, 2024
What is an Index in PostgreSQL? 08 Oct, 2024 PostgreSQL is a powerful and reliable open-source relational database management system (RDBMS) known for its extensive features, including robustness and scalability. One key feature of PostgreSQL that contributes to its high performance is indexing. Proper use of indexes can significantly improve query performance by allowing faster data retrieval.In this article, we will learn about PostgreSQL indexes, their types, how to create them and ways to optimize their usage for better performance.What is an Index in PostgreSQL?An index in PostgreSQL is a tool that helps to speed up the process of finding data in a table. Without an index, PostgreSQL has to look at every row to find what you need, which can be slow for large tables. An index works like a shortcut, allowing PostgreSQL to find the data faster.Syntax:CREATE INDEX index_name ON table_name;Example of Create an Index in PostgreSQLLet's create an example table, insert some data into it, and then create some indexes.Step 1: Create a tableCREATE TABLE books ( id SERIAL PRIMARY KEY, title VARCHAR(100) NOT NULL, author VARCHAR(100) NOT NULL, publication_year INT);INSERT INTO books (title, author, publication_year) VALUES ('To Kill a Mockingbird', 'Harper Lee', 1960), ('1984', 'George Orwell', 1949), ('Pride and Prejudice', 'Jane Austen', 1813);SELECT * FROM books;CREATE INDEX idx_author ON books (author);Output:Books TableExplanation:After executing this statement, PostgreSQL will set up an index called "idx_author" on the author field of the books table. This index will be useful for queries containing filtering and searching functions on records based on the author column.Analyzing Queries with EXPLAIN statement:To analyze how PostgreSQL handles queries and whether it uses indexes, we can utilize the EXPLAIN statement. This command provides the query execution plan, showing whether the database is utilizing indexes and how the data is accessed.We can use the EXPLAIN command to see the query plan, as we can see in the below command:Query:EXPLAIN SELECT * FROM books WHERE author = 'Harper Lee';Output:Query PlanExplanation:The output will detail how PostgreSQL plans to execute the query, including whether it will use the idx_author index.Types of Indexes in PostgreSQLPostgreSQL supports various types of indexes, each optimized for different types of queries. Here’s an overview of the most common ones:1. B-Tree IndexThis is the default index type in PostgreSQL and is well-suited for most scenarios. In particular, the PostgreSQL query planner will consider using a B-tree index whenever an indexed column is involved in a comparison using these opeators. Best for: Range queries and equality checks (<, <=, =, >=, >).CREATE INDEX idx_btree ON books (author);2. Hash IndexHash indexes use a hash function to map values to locations in the index. These indexes are efficient for exact matches but are not suited for range queries.Best for: Exact match queries (=).CREATE INDEX idx_hash ON books USING HASH (author);3. GiST (Generalized Search Tree) IndexGiST indexes are flexible and support a wide range of data types and search operations. They are particularly useful for spatial and full-text search queries.Best for: Spatial and range queries (<<, &<, &>, >>, @>, <@, ~=)CREATE INDEX idx_gist ON books USING GIST (published_year);4. GIN (Generalized Inverted Index) IndexGIN indexes are designed for handling complex data types such as arrays and full-text searches. They are optimized for fast search operations but it can handle fast searches and typically consumes more space.Best for: Array and full-text searches (<@, @>, =, &&).CREATE INDEX idx_gin ON books USING GIN (title);5. BRIN (Block Range Index) IndexBRIN indexes are suitable for large tables with ordered data. They divide the table into blocks and store summarized information for each block, making them efficient for range queries on sorted data.Best for: Large datasets with ordered data, especially for range queries (<, <=, =, >=, >).CREATE INDEX idx_brin ON books USING BRIN (published_year);Optimizing Index Usage in PostgreSQLWhile indexes significantly improve query performance, they require careful management to ensure optimal utilization:Regular Maintenance: Periodically analyze and reindex indexes to optimize their performance, especially in environments with frequent data modifications.Index Selection: Select index types and column sets cautiously according to the query patterns and their workload features. Try different indexing schemes to learn the most effective one quickly.Query Optimization: Make use of PostgreSQL's query planner and execution analyzer tools so that we can identify inefficient runs and thereby optimize them better for index utilization.ConclusionIndexes are an important tool in PostgreSQL for improving query performance. By understanding the various types of indexes and how to create them, we can optimize the database for faster data retrieval. However, efficient index management requires regular maintenance and careful consideration of which columns to index on the basis on query patterns.FAQsWhat is the index of Postgres?An index in PostgreSQL is a data structure that speeds up data retrieval by allowing faster searches on specific columns. It helps avoid scanning the entire table, improving query performance.How many indexes are there in PostgreSQL?PostgreSQL supports five main types of indexes: B-Tree, Hash, GiST, GIN, and BRIN.What are the benefits of indexes in Postgres?Indexes improve query performance by allowing faster data retrieval, reducing the need for full table scans, and optimizing database operations like searches, sorting, and filtering.When to use index Postgres?Use indexes in PostgreSQL when you frequently search, filter, or sort large datasets. Indexes are especially helpful for speeding up queries that involve WHERE clauses, JOINs, or sorting operations. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Data Analysis using Excel, SQL, Python & PowerBI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?
https://www.geeksforgeeks.org/what-is-an-index-in-postgresql?ref=asr10
Languages
What is an Index in PostgreSQL?
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0143416086, 0.0144188274, -0.030157391, 0.0390866734, 0.0197398942, -0.00267632818, 0.0165949892, 0.00698828744, -0.0106982924, 0.0540530533, 0.0394236296, -0.00715676462, 0.0302416291, -0.0643020719, -0.0141310124, 0.00895736273, -0.0203997623, -0.0070514665, -0.0284585804, -0.0230813548, -0.00833961368, 0.000444226578, -0.022758441, -0.0261560604, -0.0188413505, 0.0199364498, 0.00720941368, 0.0129165733, -0.0263526179, 0.0111335246, 0.0181814805, 0.0209332723, -0.000689702923, -0.00780610321, -0.0407714434, -0.0127902161, 0.0121724661, -0.0438040309, -0.0416419096, -0.00638457807, 0.0337796472, 0.0133588258, 0.0183639973, 0.00176988647, -0.00297642779, 0.0170021411, -0.0159772392, -0.0286410972, -0.0200768486, 0.0218739361, -0.00307295122, -0.012376043, 0.0138502168, -0.0059844451, 0.0241483767, -0.00193397608, 0.0232357923, 0.0011723194, 0.00681981025, -0.0138291577, 0.000305364636, -0.00352222333, -0.0136677, -0.0170723405, 0.030999776, 0.000891085598, -0.0185324755, 0.034257, -0.0366999172, -0.0386374034, -0.00448219152, 0.00375563418, 0.0629542544, 0.0366718359, -0.029848516, -0.0173390955, 0.00800265931, -0.00428914465, 0.0019515258, 0.0300731529, 0.0102209412, 0.0113511411, -0.0149804177, 0.0122707449, 0.0493356958, -0.00933643617, 0.0106561733, -0.0387778, 0.0580684207, 0.0148680992, 0.0317579247, -0.0455449596, 0.00671451213, 0.00106351136, 0.0109439883, 0.0242747348, 0.00305540138, -0.00576682901, 0.0307470616, 0.0200908873, 0.00866954774, 0.00847299118, 0.0362506434, -0.0265210941, 0.0325441509, -0.0273915604, 0.0236710254, 0.00504378136, 0.0204278417, 0.00300801732, 0.014924258, 0.0233059917, -0.0470612533, 0.0606517382, -0.0335830897, 0.00558782183, 0.0493918546, -0.0432705209, 0.00558080198, -0.00795352086, -0.0448710546, 0.0271388441, 0.00738491071, 0.0184341967, -0.053182587, 0.00655305525, -0.0106000137, 0.0105157755, 0.0218177773, -0.00774994399, 0.0387778, 0.00727961212, -0.00807285868, 0.0138361771, 0.0480440371, 0.0262262598, 0.0283743422, 0.0550077558, 0.00793246087, -0.0493918546, -0.0497568883, -0.0175496917, -0.00328003755, -0.0407995246, -0.029848516, 0.00210420811, -0.0114213396, 0.0256085116, -0.0145873046, -0.0260858629, -0.00686193, -0.00668994291, 0.0452360883, 0.0105157755, 0.00164528366, -0.0211298298, -0.0104104774, -0.0105298152, 0.0108246505, -0.00238500326, 0.00586510729, -0.0145592242, -0.00100559741, -0.00226215529, 0.00048524898, 0.0744106919, 0.0188132692, -0.0148119405, -0.0295958016, 0.0208209548, 0.00390305161, 0.0245695692, -0.0146013442, -6.8114743e-05, -0.00749020884, 0.0133447861, -0.000558519, -0.00945577398, 0.000371176, -0.0280373879, 9.88267057e-05, -0.0417261496, 0.00656358479, -0.0201891661, 0.00404344918, 0.0204699617, 0.0470050946, 0.0211298298, 0.00121356116, 0.0169740617, -0.00542636495, -0.00869060773, 0.0587984882, 0.0434670784, 0.0270686448, 0.0313367322, -0.0315894447, 0.000192278821, 0.00134430639, -0.0236850642, -0.0311120935, -0.0300450735, -0.00704444665, 0.0337796472, 0.0692440644, 0.0460784733, 0.0275179166, 0.0140959127, 0.0188834686, 0.00113897503, -0.0138080977, 0.057394512, 0.00744808931, -0.0171706192, 0.016917903, 0.0133588258, -0.0193327405, -0.024218576, -0.00408205856, 0.00751828821, -0.0130990902, 0.0403783321, 0.0301012322, -0.00133991905, -0.00810093805, -0.0312805697, -0.0331899785, -0.0171425398, 0.0223653279, 0.0138993561, 0.058854647, 0.0047138473, -0.0369245522, -0.00713921478, 0.00428914465, -0.0142012108, -0.0234183092, -0.0312805697, 0.00294132833, 0.0154156499, 0.0240500979, 0.0171004198, 0.0113932602, 0.0199785698, -0.00173741952, 0.0192625429, -0.00359066692, 0.016960023, -0.00843087211, 0.0574225932, 0.0212000273, -0.0334146135, -0.00812199712, 0.0152892917, -0.0124322018, -0.00880994555, 0.00459450949, 0.0221406911, -0.025594471, -0.0113371015, 0.0286691766, 0.00873974711, -0.027279241, 0.0306628216, 0.00781312305, 0.00149611128, 0.027896991, -0.0213123467, -0.0304101072, 0.0203014836, 0.0309436172, -0.0113160415, 0.0342289209, -0.00334848138, -0.00373457442, 0.0219722148, -0.011224783, -0.0142012108, -0.0174092948, 0.0173671748, 0.00613186229, -0.00789736118, 0.0148540596, 0.0278689116, 0.00268159295, -0.0345097147, -0.0176620111, -0.0098699471, -0.025594471, -0.0256225504, -0.00959617179, -0.0250048023, 0.0166371074, 0.0222530104, 0.0253136754, 0.0071111354, -0.0353801809, -0.029006131, -0.0122496849, 0.0309155378, 0.00752530806, 0.00156806502, -0.0117723336, 0.0156402849, -0.0476228446, -0.00556325261, -0.0242466554, 0.0424562171, -0.0311401747, -0.0349028297, 0.00270967255, -0.0201891661, -0.00926623773, -0.0513293408, -0.0396201834, 0.0395640247, -0.0195573773, -0.0114213396, -0.00611431291, -0.051188942, 0.0230813548, -0.0363068022, -0.0742422193, 0.0443375409, 0.024794206, -0.0268018898, -0.0326003097, 0.0200628079, 0.00481914543, 0.0136115411, -0.0343973972, -0.0427370109, -0.0280795079, 0.0486056283, 0.0194169786, -0.0232498329, -0.0163703524, 0.00166020088, -0.024176456, 0.0393674709, -0.0260577835, 0.028121626, -0.0211298298, -0.0365314409, 0.0126919374, 0.0339481235, -0.0195714161, 0.0388901196, -0.00346781919, 0.00323791825, 0.00125919038, 0.0458538346, -0.0120039899, 0.0145311449, 0.0173250567, 0.0138782971, -0.0199504904, -0.028121626, 0.0260016248, 0.0155420071, 0.0168336648, 0.00546146417, -0.0155700874, 0.0507677495, -0.0102069005, -0.00265175849, -0.0176760498, 0.0205542, -0.00856425, 0.00555272261, -0.00921007805, 0.00386093231, 0.0574506707, -0.00110826304, -0.052564837, -0.00282199052, -0.0102139208, -0.00965935085, 0.0124041224, 0.0135694221, 0.0133447861, 0.0130008124, 0.0107333921, 0.00772888446, 0.00216036709, -0.0313367322, 0.0119478302, -0.012376043, 0.00265175849, -0.0207226761, -0.00564047089, 0.00953299273, -0.010894849, -0.0533791445, 0.0346220322, -0.00243589724, 0.0059844451, 0.016384393, 0.0034537795, -0.00255172513, 0.0443375409, -0.0105578946, 0.0020761285, 0.0303258691, -0.0182376411, 0.000736648333, 0.0243870523, -0.011779353, -0.00309225568, 0.0195714161, -0.0109229283, -0.00770080509, -0.0486898646, 0.0304381866, 0.00401185965, 0.0790157318, -0.0487741046, 0.0554570258, 0.00436987355, -0.000343315856, -0.0113862399, 0.015499888, -0.0353521, -0.0151208146, -0.00897842273, -0.00538424542, -0.0141871711, 0.00985590741, 0.0216493011, 0.00760954665, 0.0124743208, -0.0239377804, 0.00447868137, 0.0154437292, -0.0310840141, -0.0416138284, 0.00462609902, 0.00864146836, 0.00392762106, -0.0231375135, -0.00316947442, 0.0318140835, 0.00564047089, -0.0214527436, -0.0317860022, -0.00119250163, -0.057169877, 0.0120110093, 0.0110001471, -0.0141801517, -0.0279531498, 0.00523331808, -0.00993312616, 0.0223793667, 0.0102139208, 0.0107544512, 0.0263806973, 0.0128814736, 0.0494199321, -0.0185605548, -0.00976464897, 0.0163703524, 0.0085782893, -0.0433266796, 0.0266895723, 0.0296800397, -0.0125445202, -0.0245274492, -0.0114353793, -0.0169038642, 0.0235867873, -0.0193748605, 0.0444217809, 0.0303820278, -5.04896434e-06, 0.00876080617, 0.0224074479, 0.0234463885, -0.0179147255, 0.00564398104, 0.0453484058, -0.00607921323, -0.00977166835, -0.00433477387, -0.0314771272, 0.0272090435, 0.00917497929, -0.00572470948, -0.0117021352, -0.0182657205, -0.0461627096, -0.00803074, -0.0699179769, -0.0261420216, 0.00878186617, -0.0154577689, -0.0570294783, -0.0138010783, -0.0220143348, 0.0374580622, -0.000375124684, -0.0253979154, -0.0691879094, 0.051497817, 0.00521927839, -0.00434881356, 0.00685491, -0.00668994291, 0.0111756437, -0.0150365764, -0.00679875072, -0.013815118, 0.011779353, 0.0182376411, -0.000215312786, -0.0221406911, -0.028121626, 0.0134079652, 0.0170583017, -0.00537722558, 0.026436856, -0.0142714102, -0.0322633535, -0.00718133384, 0.00980676804, 0.0058510676, 0.00728663243, -0.00401537, 0.00847299118, -0.0256506298, 0.00309401075, 0.0128604146, -0.00272020232, 0.0106772324, -0.0153173711, -0.0108246505, 0.0203295629, 0.00608272338, 0.0118565718, 0.00793246087, -0.0194590986, 0.0239939392, -0.00581245823, 0.000847211399, -0.0195012186, 0.00233059912, 0.00412768777, 0.0050016623, 0.0316456035, 0.0246397685, 0.00297291786, 0.00609325292, 0.0187571105, -0.0145732649, -0.0157104842, 0.00824835524, -0.0366718359, -0.0174654536, -0.00678822072, 0.00477000652, -0.00580543838, -0.00420490606, 0.0281356666, -0.0060581537, 0.0173812155, -0.00409960793, 0.0259875841, 0.00343447481, -0.0392270721, 0.00340815028, 0.0217896979, 0.0311682541, -0.026787851, -0.033835806, -0.00538775558, 0.0207507554, 0.00666537322, -0.0175075736, 0.0177322086, 0.0113932602, 0.0324037522, 0.0327126272, -0.00430669449, -0.00650040619, 0.0110984249, -0.0346501134, -0.0206945967, 0.0067636515, 0.0013583462, -0.00501921214, -0.00354328286, 0.0340323634, -0.0182095598, -0.0113160415, -0.0057212, 0.0162299555, 0.00954001304, -0.00412066793, -0.0147698214, 0.0228848, 0.0180410836, -0.00205857889, 0.0471735746, 0.0110001471, 0.0301854704, 0.00746914884, -0.0158368424, -0.0242045354, 0.0101858415, 0.0263526179, -0.0261139423, 0.018335918, 0.0253417548, 0.000918726379, 0.0212421473, -0.0238956604, 0.00348712387, 0.0317298435, -0.0152190933, -0.0210034717, 0.0282901041, 0.0118916715, 0.0251732785, 0.0170302205, -0.0118565718, 0.0345377959, 0.00659517432, 0.00056027394, 0.00296063302, -0.0098488871, -0.00774994399, -0.0147979008, -0.00116793206, -0.0244291723, 0.0174233336, 0.034060441, -0.0371211097, 0.00570365, -0.00478404621, 0.00843789242, 0.0211438686, 0.0352959409, 0.0180410836, 0.120741881, -0.0108808093, 0.018602673, -0.0226320829, -0.0208630748, 0.0260437429, -0.0240641385, -0.00314139482, 0.00356609747, 0.0142573696, 0.0175918117, -0.0266053341, -0.0417823084, 0.00534563605, -0.00249732123, 0.00963829085, 0.0241483767, 0.00781312305, -0.0231234748, 0.0417542271, 0.0223091692, -0.00153559807, -0.0170021411, -0.00511047058, 0.0168757848, 0.00349238864, 0.0318140835, -0.0142012108, -0.0277425535, -0.0147979008, 0.00693212822, -0.00838875305, -0.028697256, 0.00488232449, -0.000418779528, 0.00258331466, -0.0254400335, -0.00378722348, 0.0145451846, 0.0129867727, -0.0106772324, -0.0233200304, -0.0161597561, -0.0280935466, -0.0312805697, 0.00356083247, -0.00801669899, -0.012579619, -0.0244010929, 0.0391428322, 0.0184341967, 0.0419507846, -0.0153454505, 0.0215089023, -0.0225618836, 0.0184903555, -0.0288095754, -0.0080237193, 0.00329056731, 0.0119408108, -0.0225618836, -0.0057808687, 0.0167775061, -0.00791140087, 0.0066829226, -0.0153173711, -0.0139555149, -0.00137150846, 0.00748318899, -0.0161878355, 0.0201049279, 0.0136115411, 0.0175777711, 0.00866954774, -0.00189361174, -0.0113581605, 0.00318526919, 0.0155420071, 0.00488934433, 0.00138203823, -0.00109246839, -0.00841683242, 0.014657503, -0.0151208146, 0.00683034025, -0.0212983061, 0.0067636515, -0.0100805433, 0.0082904743, 0.0419227034, -0.0111967037, -0.0231094342, -0.00458047, 0.0121654468, -0.0130359111, -0.0216071811, 0.0128604146, 0.0255383123, 0.013794058, -0.0220564529, 0.00155841268, 0.0344254747, 0.0412768759, 0.0535476208, -0.00469629746, -0.0116319358, -0.0180410836, 0.0124111427, -0.00961021148, 0.0425404534, -0.034060441, -0.0274336785, -0.0156964455, -0.0153454505, -0.0298765954, 0.0261981804, 0.0112177636, 0.00604411401, 0.0162439942, 0.00902054179, 0.0158930011, 0.0296519604, 0.00626173, -0.0395359471, -0.00974358898, 0.0107404115, -0.00154963788, 0.0098488871, 0.0261420216, 0.0413049571, 0.0141169727, 0.00333970645, 0.00771484477, 0.0238956604, -0.0117723336, -0.00507888105, -0.00760954665, -0.00728663243, -0.00747616868, 0.00133026671, -0.0210877098, 0.018953668, -0.0334146135, 0.0452922471, 0.00824835524, 0.0157385636, -0.00277460623, 0.00742703, 0.0301293116, 0.0122777643, 0.0423438959, -0.0125304805, 0.0173110161, 0.0056264312, -0.0375142209, -0.0197820123, -0.0461627096, 0.0226461235, -0.0193046611, -0.000984537764, 0.00127849507, 0.00134606136, -0.0350713059, -0.00630384963, -0.0111124655, -0.00504027167, 0.0076657054, 0.00675663166, 0.0287534166, -0.0148540596, 0.0367279947, 0.0130288918, -0.0175777711, -0.000577384897, -0.00930133648, 0.0137308789, 0.0247380454, -0.0174092948, -0.0104315374, 0.0172829367, -0.0121443868, 0.00174619432, 0.0331899785, -0.00855021, 0.00789736118, 0.0533791445, 0.00965935085, 0.00163563131, 0.000551499077, -0.0220283736, 0.0288657341, -0.0187290311, 0.0252715573, -0.0104315374, 0.0347905084, 0.00674961181, -0.00417331699, 0.00531404698, 0.00604411401, -0.0190519467, -0.00659166463, -0.000417243922, 0.00149084639, 0.0088661043, 0.00836769305, -0.00553517276, 0.0442813821, 0.0243308935, -0.0337234885, -0.0558220595, 0.0224214867, -0.00433126418, -0.0127972355, -0.00448570121, 0.0146855824, 0.00773590431, 0.0102209412, 0.0361944847, -0.00175321428, -0.0264649354, 0.0160614792, 0.019753933, 0.0120110093, 0.0107755112, 0.00124690565, 0.000726557279, -0.0335550122, 0.0154156499, 0.0173110161, 0.0527894758, -0.00640212791, -0.00749020884, -0.00251136092, -0.00977868866, -0.0073989504, -0.0202453248, -0.0275740772, 0.00837471336, 0.00955405273, -0.00703391666, -0.0302135497, -0.016033398, -0.00622663088, -0.0392832309, -0.0309436172, -0.00709709572, -0.0385250859, 0.00743404962, -0.0116670355, 0.00556676229, -0.0204278417, -0.032151036, -0.0108106108, -0.00824835524, 0.00542636495, 0.00440146262, 0.0010336769, 0.00194450584, 0.0236289054, 0.00167511811, -0.0222670492, 0.00456292, -0.00973657, 0.0425685346, -0.00419086637, -0.0117933936, 0.012333924, 0.00447517168, 0.00458748965, 0.00763762603, -0.00904160179, 0.00883802492, 0.0082904743, -0.0042926548, -0.0296800397, 0.010873789, -0.0209613517, 0.0118495524, 0.0223372485, -0.0101367021, 0.014369688, 0.00363980606, 0.00610378291, -0.00989100616, 0.00713219494, 0.00369596528, 0.0225057248, 0.0034116602, 0.00882398523, 0.0056264312, 0.0169319436, -0.0138572371, -0.00779908337, -0.0373176672, 0.0175918117, -0.0404344909, -0.0147557808, 0.016117638, 0.0199364498, 0.0218458567, -0.0303539485, -0.000318088161, -0.00877484586, 0.00209894311, 0.0239798985, 0.00528245745, 0.0383004472, 0.0133869052, 0.00712166494, -0.00196556561, -0.00878186617, -0.0168055855, -0.0191502236, -0.0139274355, -0.000760779134, 0.00191291643, -0.00222881092, -0.00179708854, -0.00171285, 0.0163703524, 0.00295536825, 0.00772888446, 0.0229549967, 0.0156262461, -0.00899246242, -0.024752086, -0.00545795448, -0.00570365, -0.0108878287, 0.00118899159, 0.0425966121, 0.0229269173, 0.00252715568, -0.0123058446, -0.0204699617, 0.010031404, 0.0106772324, 0.00230427459, 0.0421473421, -0.00816411711, 0.0427370109, 0.0388901196, -0.0733998343, 0.0274898373, -0.0218037385, -0.00852213055, 0.032151036, -0.0314771272, 0.0343412384, 0.00312560028, -0.00271844724, -0.00240781787, 0.00252715568, -0.0106140543, -0.00287112966, -0.0202312861, -0.0140397539, 0.0231936742, -0.0295958016, 0.0212561879, 0.0117302146, 0.0122216055, 0.0283181835, 0.0336954109, -0.0245555285, -0.00389603176, 0.0240641385, -0.0127621358, -0.0563555732, -0.0242606942, -0.00130043214, 0.0304101072, -0.0072445129, 0.0383566059, 0.00117846183, 0.0105087562, -0.0171986986, 0.000108314503, -0.00200066483, 0.0109931268, -0.00525437808, 0.00259033451, 0.0249065235, -0.00168477045, -0.0263385773, 0.00285709, 0.00531755667, -0.011491538, 0.003022057, 0.0139274355, -0.0167073067, -0.00690053916, 0.0181393623, -0.0236148667, -0.0541934483, -0.001937486, -0.00932239648, 0.00793948118, -0.0110071674, 0.0217896979, 0.0142292902, 0.0147136617, -0.0191923436, 0.0219862536, -0.0219581742, 0.0173952542, -0.00715676462, -0.0040188795, -0.0017935785, 0.0185184348, 0.018911548, -0.0213825442, 0.0295396429, -0.029848516, -0.0165809486, 0.00245520193, 0.0256646704, -0.0142573696, -0.0243168529, 0.0146996221, -0.0188553892, -0.000390700035, 0.0313648097, 0.0359698497, -0.00564749073, 0.00192520127, -0.00557378214, 0.00974358898, -0.0161035974, -0.00608623307, -0.0185184348, -0.00671100244, 0.00523682823, -0.012088228, -0.00933643617, -0.0122988243, -0.0125304805, -0.0027816263, 0.00765868556, 0.0110071674, 0.0442533046, 0.0051947087, -0.011449419, 0.0339762047, 0.00592828589, -0.016693268, -0.0240079798, -0.0059844451, -0.00446815183, 0.00734981103, 0.000313481374, 0.00124602811, 0.0311120935, 0.00849405117, 0.0552885495, -0.0355767347, -0.0132535277, -0.0277004335, -0.00483318511, 0.00935749616, 0.00840981212, 0.0383004472, 0.00453484058, -0.0247240067, 0.0406872071, -0.0148961786, 0.0144047877, 0.028781496, -0.00903458148, 0.00918199867, -0.0125094205, 0.0192344636, 0.0179708842, -0.0292588472, -0.0105649149, 0.00536318589, 0.00323265325, -0.00153998553, 0.000797194778, 0.0264649354, 0.0153033314, -0.0116459755, 0.0266474523, -0.0112107433, -0.00343447481, -0.00281146076, -0.00137940585, 0.0129797524, 0.0147417411, -0.00752530806, 0.00386444223, -0.00259910943, -0.0222810898, 0.00819921587, -0.0140046543, -0.0182095598, -0.0260156635, 0.0116880946, -0.0266474523, -0.00416980684, -0.0254400335, -0.0147277014, -0.0204980411, -0.00194275088, 0.0171986986, -0.0190800261, 0.0137870386, -0.0145030655, -0.00793948118, 0.0344535559, 0.0360540859, -0.0130639905, 0.00155227026, -0.00956809241, 0.00046155692, 0.00742001, 0.0163563136, -0.027054606, 0.0110914055, 0.0124392221, -0.0170863811, -0.0380758122, 0.00364331622, -0.00311682536, -0.00271844724, -0.0048682848, 0.0139274355, 0.005121, -0.00973657, 0.0133798858, -0.0104174977, -0.00812199712, 0.00466470839, 0.00703742681, 0.00291149388, 0.0130288918, -0.0136677, 0.0026324538, -0.00792544056, -0.0283462629, -0.00933643617, -0.017493533, -0.0294554029, -0.00971551, -0.018111283, -0.0036889452, -0.0256646704, 0.00565100089, 0.0219160561, -0.0207647961, 0.0176198911, 0.0148259802, -0.0048472248, -0.0023920231, 0.0208490342, 0.00642669713, 0.00705497619, 0.00964531116, 0.023558706, 0.001397833, -0.0107474318, -0.00102928944, -0.0120110093, 0.0223653279, 0.0208490342, -0.0203997623, 0.0159772392, 0.0366718359, 0.0259454641, -0.00723047322, 0.0169038642, 0.0187571105, 0.00598093495, 0.0134149846, -0.0407995246, 0.0361102484, -0.00319755403, -0.0318140835, -0.00714974478, -0.00977166835, -0.00963127147, -0.0175216123, -0.00727961212, 0.0132254483, -0.0197820123, 0.00444007199, 0.000779645052, -0.0161035974, 0.00257805, 0.00806583837, -0.019487178, 0.0269563273, -0.0129235936, 0.0221968498, -0.00116793206, 0.000616871694, -0.00962425116, 0.0222389698, 0.00531404698, 0.0218879767, 0.00432424434, 0.0234604292, 0.00702689681, 0.000259735447, 0.0109439883, -0.0123900827, 0.00151453842, -0.00431722449, 0.0211859886, -0.0239377804, -0.0056264312, -0.000831416692, 0.0195573773, 0.0288657341, 0.000551937846, 0.0221126117, 0.00315543474, 0.000792807317, 0.00289043435, -0.00833961368, -0.00852213055, -0.00661272416, -0.00373808434, 0.010670213, 0.000615555444, -0.0123900827, 0.00828345492, 0.00828345492, -0.0039346409, 0.00792544056, 0.0189817473, 0.00487179449, 0.025327716, -0.0142433299, -0.0317298435, -0.00474894652, -0.0168617442, 0.0386654809, -0.0135975014, -0.00185149256, -0.00474894652, 0.016384393, -0.0204278417, -0.00094505091, 0.00055676396, -0.0261139423, 0.0113722, -0.0299889147, -0.00290622911, 0.000470331754, 0.0128884939, -0.0135834618, -0.00526841776, 0.0169038642, -0.0274617579, 0.0173531361, 0.00167160819, 0.0222670492, 0.00573172932, -0.0080237193, -0.00328881224, 0.00264298357, -0.010670213, -0.0141590917, -0.00353801786, 0.0029150038, 0.00147856155, -0.00593179604, 0.0415295921, -0.0231515542, -0.012109288, -0.00674259197, 0.0255383123, 0.000837120344, -0.00385742239, -0.0149523374, 0.0150506161, 0.018111283, -0.010115643, -0.0224495661, 0.00916094, 0.0293711647, -0.000864322355, 0.0036994752, -0.00580894807, -0.0018356978, -0.0122426655, 0.00405046903, 0.00319053396, -0.000200176175, 0.0061178226, -0.0274757985, -0.00212702272, 0.0417542271, 0.0129376333, 0.0165388305, -0.0377950184, 0.0219300948, 0.010115643, -7.80824212e-06, -0.00450325105, -0.0206945967, -0.00447868137, 0.0419227034, -0.0442252234, -0.0141520714, 0.000977517804, -0.0192063823, 0.0185184348, -0.0108316699, 0.00852213055, 0.028205866, -0.00596689526, -0.00462609902, -0.00718835415, 0.0136677, 0.0159632, -0.00474192668, 0.0164686311, 0.0103543187, -0.0335550122, -0.027588116, -0.0159632, 0.017760288, 0.00201294967, 0.0136185614, -0.0291746091, 0.0020076849, 0.0124602811, -0.000676979369, 0.0129165733, 0.0304381866, 0.000370079128, -0.0123620033, -0.0076867654, 0.0453203246, 0.0187571105, -0.010242, -0.00596689526, 0.00582649792, -0.0115055786, 0.031392891, -0.00219546654, -0.0150786955, -0.00772186462, 0.0184482373, 0.0132605471, 0.0313648097, -0.000226829769, 0.00857127, -0.00436987355, 0.00211473787, -0.023642946, 0.00401537, 0.00916094, -0.0120110093, -0.00495603308, 0.028205866, -0.000799388508, 0.00949789304, 0.010607034, 0.000508502359, 0.0225618836, 0.00665484322, -0.00233059912, -0.0158508811, 0.00048524898, -0.0139484955, -0.0226180442, -0.00152331323, 0.00822729617, 0.0105227958, 0.0398448221, -0.0124181621, -0.0234744679, -0.0385531634, -0.0255102329, 0.0140327336, -0.00939259492, -0.0171144605, -0.0212842673, -0.0040083495, -0.0128955143, -0.0190238655, 0.00453835027, -0.0199785698, -0.00789736118, 0.0166230686, 0.0111405449, -0.00805881899, 0.011533658, -0.0217475779, 0.0037310645, -0.00930133648, 0.00406099856, -0.0112107433, -0.0163984317, 0.0168898236, 0.0309155378, -0.00628980948, 0.0205261204, 0.0144188274, -0.0156543255, 0.0241483767, 0.0158649217, -0.00118723663, 0.0251873191, 0.0132254483, 0.00895034336, -0.00335725606, 0.00931537617, 0.0219581742, -0.0237693023, 0.0233761892, 0.0120039899, 0.0384408459, 0.0132745868, -0.0256225504, 0.0289499722, 0.00513855, -0.00172952213, -0.0171706192, 0.0285007, 0.00783418305, 0.0129446527, 0.0182797592, 0.0101788212, -0.0259595048, 0.0299046747, 0.00578788854, 0.00756040728, -0.00260261935, 0.0225338042, -0.00706550619, -0.0297642779, -0.0225759242, -0.00691808853, -0.00483669527, -0.00627928, -0.000368104782, 0.00889418367, 0.0313648097, 0.00646530651, -0.00818517618, 0.0121724661, -0.0323195122, 0.0277425535, -0.00472788699, -0.0237833429, 0.0130639905, -0.0124532618, 0.000188988255, -0.024794206, -0.00765868556, -0.00674961181, 0.00975762866, -0.0144328671, 0.00427861512, 0.0293430854, 0.00347483903, -0.00660219416, -0.0132535277, 0.0442533046, 0.0128182955, 0.000235604617, 0.0240079798, -0.0130499508, 0.00106614386, 0.0328811035, 0.0157806836, 0.00905564148, 0.0110282265, 0.0072445129, 0.0137098199, 0.0226601623, 0.0202874448, 0.0222670492, -0.0305785835, 0.0107684908, -0.00270616263, 0.0195714161, 0.00542636495, -0.00100121, 0.0268440098, 0.0208911542, -0.0227163211, -0.00058045605, -0.0076657054, -0.00953299273, 0.0178304873, 0.0211438686, -0.00522278855, -0.0116178961, 0.0129657127, 0.00448921137, 0.00321510364, -0.0116038565, -0.0184763167, 0.00446113199, 0.00597040541, 0.0286551379, 0.00729365228, -0.0103964377, -0.0137378993, -0.0154156499, 0.0121373674, -0.00350642856, 0.025285596, -0.00912584, -0.00468576793, 0.012046109, -0.031842161, 0.0258471873, 0.0244291723, -0.0106000137, -0.0137449186, -0.0101928608, -0.017268898, 0.0124462415, -0.0135694221, 0.0193046611, 0.0225057248, 0.00571067, 0.0238956604, -0.000515083491, -0.0157104842, -0.0164405517, 0.00487530464, 0.0153314108, -0.00425404543, 0.0102069005, 0.00532457652, -0.00915391929, -0.0184061173, -0.00385391247, 0.00198311522, 0.0023920231, 0.00833961368, 0.023867581, 0.0331338197, 0.00800968, 0.00264298357, 0.00320106396, 0.0261560604, 0.0262403, -0.00111177296, -0.000300319109, -0.0113792205, -0.00230427459, -0.00558782183, -0.00557378214, 0.0117021352, 0.00171635987, -0.0160614792, -0.0148680992, -0.000130087094, 0.0148961786, 0.0115968371, 0.007462129, 0.0150225367, -0.0111896833, 0.00233937404, 0.00923815835, 0.000104036772, -0.0168617442, -0.0228988379, -0.0179568455, -0.00163212139, 0.0295958016, -0.000134803573, -0.0108597493, -0.0094487546, 0.0157806836, -0.000406714127, 0.0202312861, -0.0142924692, -0.0198802911, -0.0206103586, 0.032768786, 0.0224636067, -0.00170758506, 0.00887312461, -0.0076867654, -0.0110773658, 0.00479106605, 0.003309872, 0.000435232359, 0.0307470616, -0.0184341967, -0.00784822274, 0.0226742029, 0.00090029923, 0.0159912799, 0.0138712768, -0.010073523, 0.00385391247, -0.0369807109, -0.00198136014, -0.012312864, -0.00452782074, -0.00693212822, -0.010242, 0.0201330073, -0.0173110161, 0.00928027742, -0.00608272338, -0.0222389698, -0.00424702559, -0.00138730311, 0.00322036841, 0.0492514558, -0.00421192637, -0.0251171198, 0.00134518393, 0.0107895508, 0.00350467348, 0.0124322018, 0.00350818341, 0.0276863948, 0.00594232557, -0.00183394284, 0.0155279674, 0.0025359306, -0.00409960793, -0.0192344636, 0.00765166571, 0.0130710108, -0.00446464168, -0.00152068085, 0.00778504368, 0.0108808093, -0.00438040309, -0.00565802073, 0.0135694221, 0.00909776054, -0.00353450794, -0.0159210805, 0.0112528624, 0.00997524522, 0.00122233608, 0.00627928, -0.00913988, -0.00351344841, 0.00782716274, 0.010873789, 0.0130850505, -0.0129727321, 0.0102911396, -0.0329372622, 0.0131412093, -0.0057703387, 0.00326073286, 0.003309872, -0.0129586924, -0.00097400794, -0.0258471873, -0.0018497376, -0.0047033173, 0.00626173, -0.0237412229, -0.00488934433, -0.0147557808, -0.0237973835, -0.028163746, -0.00547199417, -0.0146153839, -0.00142679, -0.00676014135, 0.0159772392, -0.0104245171, 0.00636351854, -0.00843789242, -0.00620206119, -0.0125234602, 0.00235165865, -0.00775696384, -0.00231129443, -0.00643020729, -0.00862040836, 0.00440497277, 0.00508941058, 0.0132043883, -0.000712078763, -0.0163282342, 0.00842385273, 0.000102556012, -0.00545795448, 0.0154156499, 0.00706901588, 0.0179989636, 0.0127200168, -0.0109790871, 0.012930613, 0.00453484058, -0.00404344918, -0.00382583286, -0.0178726073, -0.00659166463, -0.00350116356, 0.00237622834, -0.0131341899, 0.0165669098, -0.0271669235, 0.00477702636, 0.0281918254, -0.00895736273, 0.0187290311, 0.00225689053, 0.0110071674, -0.025636591, 0.0342289209, 0.000773502688, 0.0210596304, -0.00821325555, 0.0403221734, -0.00964531116, 0.000421850738, 0.0350432247, 0.00593881588, -0.00555272261, 0.000577384897, 0.0217194986, -0.00927325711, 0.00312209036, 0.0201470461, 4.97698311e-05, -0.00796756055, -0.00688298931, -0.00653199526, 0.00906968117, 0.00598795479, 0.0147277014, -0.00757444697, 0.0118355127, -0.00784120243, -0.0185324755, -9.03260734e-05, -0.00928027742, 0.0179708842, -0.00951193273, 0.016384393, 0.0198522117, -0.00118021679, 0.00378722348, -0.00895736273, 0.0178585667, -0.00273950701, 0.0243308935, 0.000796317297, -0.0271248035, 0.00466821808, 0.0212000273, -0.00167160819, -0.0128955143, 0.0137308789, 0.0152612124, -0.0048682848, 0.0056861, 0.0132745868, -0.00966637, 0.00133289909, 0.00975762866, 0.00784120243, -0.0116178961, -0.00928729679, 0.00357311731, 0.0162159149, -0.00939259492, 0.00089678925, -0.00598093495, 0.000472525455, 0.00638808776, 0.000470331754, 0.0167073067, -0.00695318822, 0.00720941368, -0.00379073364, 0.00390656153, -0.00819921587, 0.0179428048, -0.00286410982, -0.0219441354, 0.0236991048, -0.00416278699, 0.00788332149, 0.0627296194, -0.0151348542, -0.0107263718, -1.83312022e-05, 0.00111440546, 0.0153033314, -0.00663729338, 0.0209613517, -0.00210420811, -0.00757444697, 0.0161035974, -0.0226461235, 0.0054825237, -0.00293430849, 0.0146715427, 0.00223232084, 0.00318526919, -0.0295677222, 0.00654603541, -0.0044260323, -0.0114845186, 0.0305505041, 0.0151208146, 0.00246924162, -0.0113581605, -0.00117144198, -0.00221652607, -0.00058133353, 0.00810093805, -0.00328530231, -0.000565977592, 0.0085782893, 0.0125164408, 0.0130218714, -0.00953299273, -0.00220950623, -0.0212000273, 0.00839577243, -0.00973657, 0.014369688, -0.0175496917, 0.00562994136, -0.0138361771, -0.00455239, 0.010242, 0.0135132633, 0.00972954929, -0.016609028, -0.0012056639, 0.00867656805, 0.00488934433, -0.00570014026, 0.0280233491, 0.0124602811, -0.00752530806, 0.00558782183, 0.0361383259, -0.00752530806, -0.00227795, -0.00757444697, 0.0290903691, 0.0165107511, -0.0196977742, 0.0219862536, 0.00474192668, -0.000343535212, 0.00618451135, 0.0110633262, -0.00507888105, -0.0132605471, -0.00458397949, -0.0126217389, 0.00225338037, -0.00932941679, -0.0390024371, 0.0118425321, 0.00556676229, 0.00337656075, -0.0056369612, -0.00027969823, -0.0101998812, -0.00304311654, -0.0119267711, -0.0183078386, -0.0110563058, -0.0047033173, -0.0137308789, 0.0049911323, -0.0105508752, 0.0045208009, 0.00071515, 0.00652497541, 0.0277425535, -0.000845895149, -0.0111265052, 0.0231375135, 0.000932766125, 0.00750424853, 0.018644793, -0.00135483628, 0.000312603894, -0.0201189667, -0.030775141, 0.00819921587, -0.0155279674, 0.0200908873, 0.0193608198, 0.0212281086, 0.0230813548, -0.00400484, 0.00801669899, 0.00941365492, -0.0131763089, -0.00535265636, 0.0222951286, -0.00244818209, -0.0125164408, 0.00448921137, -0.00753934775, 0.0165528692, 0.00556676229, -0.000261051668, -0.00469980761, 0.012046109, -0.00236745342, -0.013218428, -0.0146294236, -0.0122847846, 0.00559484167, -0.0118635921, -0.00807987805, 0.00375914411, -0.0167634655, 0.000632666401, -0.00410311809, 0.00921709836, -0.00501921214, 0.0179708842, 0.00370298512, -0.0168617442, 0.0101647815, 0.0152612124, 0.0153735308, 0.00781312305, 0.00644424697, -0.00589318667, -0.00542987464, -0.00765166571, -0.0263104979, 0.0183078386, 0.0083325943, -0.00731471181, -0.0131973689, 0.00123900827, 0.00659166463, 0.00843087211, 0.0107755112, 0.00566855073, -0.0173110161, 0.00401537, 0.0263666585, 0.0105508752, 0.00187957205, -0.00458397949, 0.00707252603, 0.00956809241, 0.00730067212, -0.0275179166, 0.0205542, -0.00587914698, 0.00893630367, -0.00266755326, 0.0061283526, 0.00351344841, 0.00710411556, -0.000772186439, 0.0226320829, 0.00687596947, 0.0199645292, -0.00887312461, 0.0133377658, -0.0024341424, 0.00670749228, -0.0252013579, -0.0164124724, -0.0042224559, 0.00169705518, 0.00878888555, 0.000922236301, -0.00403291918, -0.00110387569, 0.00890822336, 0.0137098199, 0.00738491071, 0.00371702481, 0.0104736565, 0.0231234748, 0.0145311449, 0.0404064097, -0.00198662514, 0.00988398679, 0.00250960607, -0.00663027354, -0.0117091546, 0.0278689116, -0.00803775899, 0.00155490276, 0.0084659718, 0.00199364498, 6.56468183e-05, -0.0136677, -0.0105789546, 0.0223653279, 0.0122075658, -0.00338007067, 0.0180130042, -0.00946981367, -0.00760252681, 0.0129727321, 0.0164405517, -0.0167073067, 0.0134220049, 0.0003869707, 0.00558431214, -0.00584755745, -0.000693212845, 0.00117056444, 0.00712868478, -0.00494550308, -0.0114774983, 0.0031606995, 0.0269563273, 0.00573874917, 0.0126217389, 0.0018356978, 0.0162720755, -0.00779206352, 0.00408205856, 0.00824133586, -0.00195854576, 0.0211579092, 0.00666888291, 0.00920305867, 0.0197679736, -0.0210877098, 0.0174654536, -0.0165528692, 0.0121514071, -0.0186307523, 0.0207367167, -0.00411013793, -0.0326564685, -0.0104525965, -0.00561239151, 0.000938031066, 0.00638106791, 0.00269563263, 0.0170161817, 0.00706550619, -0.010094583, -0.0239377804, -0.0125304805, 0.00480159558, -0.00666537322, -0.0146996221, -0.00129341229, 0.00791140087, -0.00132675678, 0.016609028, 0.00993312616, 0.00589318667, -0.0148259802, 0.00256576505, 0.0260437429, 0.00060721935, -0.0290342104, 0.0110422662, 0.00578788854, -0.0145873046, 0.0116740549, 0.00132061436, -0.016384393, -0.0103472983, 0.00857127, -0.00618100166, 0.0179287661, 0.00429616449, -0.00378371356, 0.00383987254, -0.00312911021, 0.00767974509, 0.00156982, -0.00762358634, 0.00130306464, -0.0010705312, 0.0249767229, -0.00702338666, -0.0217896979, -0.00645477697, 0.00728663243, 0.00311156036, 0.00594583573, -0.0193608198, 0.00313788489, -0.00328003755, 0.0179428048, 0.0210877098, -0.0119618699, 0.0119688902, 0.00596338557, -0.00790438149, 0.00558080198, 0.024485331, -0.0125515396, 0.0325441509, 0.00758146727, -0.0110492865, 0.0225338042, 0.00303960661, -0.00350291864, 0.00542987464, 0.00969445, -0.0134992236, -0.0111756437, 0.018644793, -0.00654603541, 0.00569663, 0.00379424356, -0.00346079934, 0.00469629746, -0.0105649149, -0.0180551242, -0.00996120553, 0.0167634655, -0.00291324896, -0.0145732649, -0.0207086373, -0.00762358634, 0.016917903, -0.00314841489, 0.00818517618, 0.000236920852, 0.00661623385, 0.00446464168, 0.00124953804, 0.0229690373, 0.0110563058, 0.00786928181, -0.0145030655, 0.0162720755, 0.00514557, -0.000770431478, -0.00339586544, -0.0137800183, -0.00699530728, 0.00754636759, -0.00438040309, 0.0124181621, 0.00863444898, 0.00119074667, 0.00247275154, -0.00118986913, -0.0205120798, 0.00488583418, -0.00595285557, -0.00794650055, -0.0104596168, 0.0134079652, -0.0356328934, 0.0103543187, -0.00388199184, -0.0131903486, -0.00473139714, 0.00128902495, 0.000863883586, -0.00517715933, 0.007462129, -0.0102490205, 0.0127831958, 0.0200487692, 0.00561590167, -0.0110843852, 0.0212842673, -0.000846772629, 0.00637404807, 0.0104385568, -0.0109229283, -0.00957511179, 0.00499464246, -0.00744808931, -0.0203576423, -0.00758848712, -0.0157385636, 0.0177883673, -0.00666537322, -0.0215369817, -0.0130359111, -0.00111703796, 0.0068514, 0.00307997107, -0.0126568377, 0.00581596792, 0.025327716, 1.12427715e-05, -0.0131341899, -0.0059844451, -0.0168055855, -0.0102630602, 0.00608272338, 0.0136536602, -0.0171565786, 0.00094856089, 0.0144609464, 0.00547550386, -0.00168213795, -0.0198381729, 0.0104666362, 0.0135904821, 0.0138010783, 0.0165669098, -0.00356258755, -0.0199785698, 0.00137501839, 0.014390748, 0.00224109576, -0.0221828111, -0.0175216123, 0.00941365492, -0.0066829226, -0.0206665173, -0.00486477464, 0.0124392221, 0.0186307523, -0.0040083495, -0.0117512736, 0.0152752521, -0.00646881666, 0.00114160753, -1.84545988e-05, -0.0131061105, 0.0261841416, 0.0217335392, -0.00552464323, -0.00482967542, -0.0180130042, -0.0143626677, -0.0195994955, -0.000418121432, 0.00380828325, -0.00781312305, 0.0107684908, -0.0229549967, -0.00983484741, 0.0213825442, -0.0253838748, -0.0211157892, -0.00622663088, -0.0010617564, -0.00256927498, 0.0117161749, -0.0205963179, -0.027279241, 0.00784822274, 0.0116810752, -0.0040890784, -0.0355767347, 0.00157332991, -0.0135975014, -0.0242045354, 0.0102560399, 0.0045208009, 0.00227268506, -0.00904862117, 0.00210771803, 0.0216633398, -0.00154349545, 0.0137238596, 0.0106982924, -0.00946279429, -0.00346255419, -0.0123900827, 0.00035582, 0.0468647, 0.0085993493, 0.0152752521, 0.00353099802, -0.0266053341, 0.0128814736, 0.0139484955, 0.00349238864, 0.0115196183, 0.010915909, -0.0146715427, -0.0325441509, 0.000471647974, 0.00711464509, -0.00058396603, -0.0129727321, -0.0117091546, -0.00742703, -0.00716378447, 0.00290271919, -0.0141731314, -0.0122847846, -0.000950315851, 0.00786928181, 0.00744106947, -0.0150786955, 9.66329899e-05, 0.0114283599, 0.0165107511, 0.0201751254, 0.0166371074, 0.0203155242, 0.0245836098, -0.0137308789, -0.011491538, 0.0236569848, -0.00053219439, 0.0112177636, -0.00576331886, 0.0228988379, 0.0047243773, 0.000245915056, 0.022758441, 0.0131903486, 0.000500166207, -0.00640914775, -0.00703391666, -0.0206805579, 0.0131692886, 0.0147417411, 0.00176286662, 0.0124743208, 0.0168617442, 0.00560888182, 0.00171899237, 0.014657503, -0.0039451709, -0.00677769119, -0.0152752521, -0.0175777711, 0.00935749616, 0.0361102484, 0.0301854704, 0.00744808931, 0.016117638, 0.0175918117, -0.011224783, 0.00667590275, 0.00298695755, -0.000173851644, -0.00231129443, -0.00734279118, -0.016117638, 0.00731471181, -0.0142714102, -0.00551060354, -0.0155279674, 0.0182657205, 0.0130569711, 0.00501921214, -0.00781312305, 0.0177041292, -0.0121935261, 0.00204980397, -0.00796054, 0.00419437652, 0.012109288, -0.00532808667, 0.00931537617, -0.010361338, 0.00252013584, -0.0286270585, -0.00191642635, 0.0203295629, -7.84800286e-05, -0.0155139277, 0.00402238965, 0.0163703524, -0.0110773658, -0.00810795743, -0.00107930612, -0.0171425398, -0.00104245171, 0.0164124724, -0.0137870386, 0.0195152573, -0.0255242717, 0.00729365228, 0.0044260323, 0.00656358479, 0.00658464432, 0.00285709, -0.0131131299, 0.000370517868, 0.00556676229, 0.00297291786, -0.0171565786, -0.0214246642, 0.00195854576, 0.0352397822, -0.006886499, 0.0240360592, -0.0158228017, -0.00505431136, 0.0257769879, -0.00585808745, 0.0175075736, 0.0123620033, 0.000450588355, 0.0187149923, -0.00215861225, 0.0354363397, -0.00671451213, -0.0236710254, 0.0196275767, 0.00550709339, 0.0212842673, -0.0151348542, -0.0144047877, 0.0143556483, 0.00183394284, -0.00403993903, -0.00420490606, 0.010115643, -0.0119548505, 0.0165949892, -0.00480159558, -0.0167353861, 0.0345658734, -0.00364682614, 0.00583000761, 0.0070409365, -0.0203014836, 0.0194169786, 0.0023323542, 0.0175777711, 0.0235025473, 0.00754636759, -0.00805881899, -0.0233059917, 0.00573523948, -0.00974358898, 0.015233133, 0.00505782152, 0.0121514071, 0.00644073682, 0.0113020018, -0.0067039826, 0.0164826717, -0.0115055786, 0.000879239582, -0.000931011164, 0.0183078386, 0.00808689836, 0.00286235474, -0.00647934619, -0.0105719343, -0.00094856089, -0.0537441783, -0.00781312305, 0.0273073204, 0.0243870523, 0.013815118, 0.00893630367, 0.00220775139, 0.00356960739, 9.6687836e-05, 0.000624330307, 0.0152471727, 0.0158649217, 0.00223232084, -0.00863444898, 0.00229725474, -0.000673030678, 0.0105789546, -0.00398378028, 0.0164826717, -0.0197398942, 0.00786928181, -0.0105578946, 0.0130288918, 0.00434881356, 0.0010336769, -0.0192906223, 0.0102139208, -0.0154718086, 0.0190800261, 0.0106842527, -0.00108983589, -0.00894332305, 0.0161737967, -0.00398027, 0.014657503, -0.00959617179, -0.00406801887, -0.0183639973, -0.00381881301, -0.00587914698, -0.0261841416, -0.0169881023, -0.00613186229, -0.00655656494, -0.00416629715, 0.0237973835, 0.0208911542, 0.0279812291, 0.00979272835, 0.00147856155, -0.000391138776, -0.00596689526, -0.00282725552, -0.0162439942, -0.00791140087, -0.0128323352, -0.00934345648, 0.000310629548, 0.0159351211, -0.00473139714, -0.0341446809, -0.0242747348, -0.00682332041, 0.0142854499, 0.0222389698, 0.0198522117, -0.0120741883, 0.0221406911, 0.00760252681, 0.0104104774, -0.00191818131, -0.000590547163, -0.00928027742, 0.00318000419, -0.00271844724, -0.00779206352, 0.00921709836, -0.00431371434, 0.00122496847, 0.00221652607, 0.00338709052, -0.00557027245, 0.0308313, -0.0182236, 0.00664431369, 0.0143205486, -0.00994014554, 0.00853617, -0.0049911323, 0.0059739151, 0.0149944574, 0.00408205856, 0.0121935261, 0.00252715568, 0.0141661111, -0.00175584666, 0.0066829226, -0.00909776054, -0.00760252681, -0.0081570968, 0.019487178, 0.00170495256, 0.00495603308, -0.00458047, 0.0375423022, -0.0208911542, 0.0101788212, 0.0208209548, -0.00889418367, 0.0104104774, 0.0359136909, -0.000467699312, 0.00657060463, -0.0174514148, 0.0223232079, 0.0217616186, 0.00499464246, -0.00705848634, -0.0339481235, 0.00248503638, -0.0145451846, -0.0135624018, -0.00306242122, -0.00113020022, -0.0155139277, -0.0219020154, 0.0129376333, 0.00391709153, -0.0090275621, -0.0156402849, -0.0141590917, 0.0116319358, -0.00300626224, -0.0123690227, -0.0196837354, 0.00754636759, 0.00616696198, 0.00123813073, -0.00143205491, 0.00828345492, -0.0137589583, -0.00198662514, 0.00624067057, 0.0043663634, -0.0223091692, -0.0207507554, -0.0180972423, 0.0129586924, -0.0158930011, -0.0114845186, 0.026703611, 0.00787630212, 0.0190519467, -0.00898544211, -0.0371491872, -0.0236710254, -0.00107140874, 0.0142573696, 0.0229830761, -0.00540530542, 0.011491538, 0.0133237261, -0.00189361174, -0.0246959273, 0.00869060773, 0.00257980474, -0.00985590741, 0.0126849171, 0.0134149846, -0.00874676649, -0.00359417708, -0.0020761285, -0.00119425659, -0.000944173429, 0.0123620033, -0.0146153839, 0.00783418305, -0.0237552635, -0.0124883614, 0.00650742603, -0.00683034025, 0.0067636515, -0.0259454641, -0.0206805579, -0.0104385568, -0.0159491599, -0.0128744543, 0.0121935261, 0.00858531, 0.0139274355, 0.00247275154, 0.00110563065, -0.00820623618, 0.00187430717, -0.0161457174, 0.0173531361, -0.0157385636, 0.00376967387, 0.0124813411, 0.00328003755, 0.0211438686, 0.023334071, -0.0111475643, -0.0111054452, 0.0141169727, -0.0161737967, -0.00333970645, 0.0117512736, -0.0112388227, -0.0198943317, 0.0184622761, 0.00511749042, 0.00583351776, 0.00210771803, -0.0165388305, 0.00364331622, -0.0261981804, 0.0222389698, -0.0118495524, 0.0190519467, 0.00538775558, 0.00825537555, -0.0164265111, 0.00604060385, 0.0131131299, -0.00264122873, 0.0124743208, 0.00981378835, 0.00467874808, 0.00397676043, 0.0264649354, -0.00488232449, 0.00480159558, -0.0125094205, -0.0223934073, 0.0118635921, -0.00203049928, -0.011203724, 0.00544742448, 0.0189677067, 0.025594471, 0.00899246242, -4.32709603e-05, -0.0207367167, -0.00362225645, 0.0179147255, 0.00451378105, 0.00547550386, 0.0200347286, -0.00781312305, 0.0174514148, -0.0124953808, -0.0100665037, 0.000114292372, 0.0167353861, -0.00489285402, 0.0119829299, 0.016609028, -0.0154016102, 0.010649153, -0.0127621358, 0.000497533765, -0.00786928181, 0.010585974, -0.0036573559, -0.00695669791, 0.00928729679, -0.0199364498, 0.0155981667, -0.0171144605, 0.00161895913, -0.0115266377, -0.00493146339, -0.0184763167, 0.00502974167, 0.0022902349, -0.0126708774, 0.00937855523, -0.0108878287, -1.05435256e-05, -0.00679524103, -0.0200066492, -0.00115740218, 0.0110843852, -0.00113897503, -0.00883100554, -0.0119408108, -0.00986292679, -0.00892226398, 0.0139133958, 0.0186307523, 0.00661272416, 0.00570365, 0.0065390151, -0.0306347422, -0.023291951, 0.0111265052, -0.0250048023, -0.00306944107, 0.0132816071, 0.0336954109, -0.0181814805, 0.00539126527, 0.0120952483, -0.0100594833, -0.00937153585, -0.0080447793, -0.0338919647, -0.0073989504, -0.0218598973, -0.00662325369, 0.0334988534, -0.00370649504, 0.000566855073, 0.00210596318, 0.0101226624, -0.0159632, 0.000427993131, -0.0244712904, -0.0191221442, -0.00772186462, -0.0101998812, 0.00883802492, -0.0155560467, 0.00730769197, -0.0268861279, 0.0258191079, 0.0134360446, -0.0123058446, -0.0182657205, -0.0092943171, -0.00458047, -0.0241904967, -0.0265491735, -0.0183920767, 0.00107140874, -0.000514644722, -0.00982782803, -0.00935749616, -0.028781496, -0.0127340565, 0.0182797592, 0.00328179239, -0.0172127374, 0.0132465074, -0.0266474523, -0.00140309788, 0.00759550696, -0.00404344918, -0.0219722148, -0.0234744679, -0.00479808589, 0.0135413427, 0.00574225932, 0.0109088887, -0.00615292229, -0.0165247899, -0.0177322086, 0.00730769197, 0.00641967729, 0.0119337905, -0.00876080617, -0.00911882054, 0.0080237193, -0.00194801588, 0.0231234748, 0.0296519604, 0.00446464168, -0.00869060773, 0.00283603021, -0.00322036841, -0.0034257, -0.0277706329, 0.0686824769, 0.0119548505, 0.00568259042, -0.0252013579, -0.0076867654, -0.00597040541, 0.00125304807, 0.0347905084, 0.0214667842, 0.00509292074, -0.0107825305, -0.00615994213, -0.0216493011, 0.0140537936, -0.0338638872, -0.0106982924, -0.00383636262, -0.0081570968, 0.007462129, 0.0032502031, -0.00873974711, -0.012312864, -0.00461907918, 0.00564047089, 0.00287639466, 0.000665572064, 0.0201751254, 0.00928729679, 0.0182797592, 0.00781312305, 0.0163563136, 0.023334071, 0.00499815214, -0.00665835338, -0.0282339454, 0.00248152646, -0.0163282342, 0.0149102183, 0.00366437575, 0.00226391037, 0.0395359471, 0.00557027245, 0.00211649295, 0.00511047058, -0.00238851318, 0.0048682848, 0.00817113649, -0.0215089023, -0.0038328527, -0.0213965848, 0.0124673015, -0.0211579092, 0.00883802492, -0.0219581742, 0.0105298152, 0.012376043, 0.00594934588, 0.010242, 0.0213544648, 0.0189396273, 0.0203857217, 0.0073287515, 0.0114774983, -0.0102841193, -0.00578437839, -0.0155420071, -0.00158912467, -0.00349940872, 0.00803074, 0.00764464587, -0.00986292679, -0.0143135292, -0.00269036787, -0.00876080617, 0.028205866, 0.00202698936, -0.0158228017, 0.0127480961, 0.0231655929, -0.00758146727, -0.00139344553, 0.0379073359, -2.40348527e-05, 0.00328354747, -0.0143626677, -0.00259559951, -0.0232498329, -0.0149804177, -0.0262683798, -0.0018444726, -0.000119447592, 0.0100454437, -0.0150506161, 0.0152190933, -0.00107491866, 0.0116740549, 0.0147979008, 0.00431020418, 0.00862742867, 0.0105368355, 0.0247240067, 0.00347132911, -0.0150786955, -0.0198522117, -0.010319219, 0.0172969773, 0.00237798318, -0.00582649792, 0.0237271842, 0.00560186198, 0.00782014243, 0.0197679736, 0.0351555422, 0.0354644172, 0.00651093572, 0.0149382977, -0.00159877702, -0.00790438149, 0.0141520714, -0.00160316436, 0.019220423, 0.00648636604, -4.18998898e-05, -0.0105017358, 0.0121163074, -0.00679875072, 0.0427931696, 0.028121626, -0.00224460568, -0.00782014243, 0.00201470475, -0.0228567198, 0.0327407047, 0.00518066902, 0.00339411036, 0.0247661248, 0.016384393, 0.0116178961, -0.00583351776, 0.0064161676, 0.0118284924, 0.020484, 0.0184341967, 0.0267738104, 0.00575278932, -0.0207647961, -0.0017821712, -0.0211719479, 0.0160614792, 0.0122847846, 0.00538073573, 0.0140397539, 0.00459099934, -0.0166792274, -0.0135413427, 0.00191291643, 0.000963478116, 0.0103472983, 0.0136115411, -0.0021884467, 0.000175935667, 0.00674259197, -0.00318702403, -0.0335550122, 0.0104385568, 0.00878186617, 0.0227444, 0.000571242475, 0.000953825773, 0.0185324755, 0.0154718086, 0.00129516725, 0.000728750951, -0.00138467073, -0.0175777711, -0.0118495524, 0.00610027323, -0.0218318179, 0.00982782803, -0.0178585667, 0.00687245931, 0.00265351357, 0.00221477123, 0.0433266796, -0.00932239648, 0.00763762603, -0.00365384598, -0.0104174977, 0.0213965848, 0.0203576423, 0.00196205568, -0.0021463274, -0.0153594902, -0.00287990458, -0.00666888291, -0.0206665173, 0.0102630602, -0.00289745419, -0.0356328934, 0.0111335246, 0.0192485023, 0.00848703086, -0.00474192668, 0.00339937536, 0.0278408322, 0.00203400943, 0.0127972355, 0.0194590986, 0.00522278855, -0.0142433299, 0.016342273]
07 Aug, 2024
Difference between MySQL and PostgreSQL 07 Aug, 2024 MySQL and PostgreSQL are two of the most widely used open-source relational database management systems. MySQL is known for its speed and ease of use, making it ideal for web applications and read-heavy workloads. PostgreSQL called “Postgres,” offers advanced features and strong data integrity by making it suitable for complex queries and transactions. In this article, We will learn about the difference between MySQL and PostgreSQL in detail. What’s the Difference Between MySQL and PostgreSQL? MySQL and PostgreSQL are both popular open-source relational database management systems (RDBMS), but they have distinct features and design structures: MySQL: It is known for its speed and reliability, MySQL is widely used in web applications and is a preferred choice for read-heavy operations. MySQL is known for being user-friendly and relatively simple to set up. PostgreSQL: It is referred to as “Postgres,” PostgreSQL is known for its advanced features, extensibility and compliance with SQL standards. It offers robust support for complex queries, transactions, and data integrity. PostgreSQL is a good choice for applications requiring complex queries and transactions. What are the Similarities Between PostgreSQL and MySQL? Despite their differences, MySQL and PostgreSQL share several similarities: Open Source: Both are open-source databases, which means they are free to use and have a large community of contributors. SQL Compliance: They both support SQL (Structured Query Language) for querying and managing data. Cross-Platform: Both can run on various operating systems, including Windows, Linux and macOS. Client-Server Architecture: They use a client-server architecture where a database server handles the data and clients communicate with the server. ACID Compliance: Both databases support ACID (Atomicity, Consistency, Isolation, Durability) properties, ensuring reliable transactions. Key Differences: PostgreSQL vs MySQL Data Integrity and Concurrency: PostgreSQL: Strong emphasis on data integrity with features like MVCC (Multi-Version Concurrency Control) and support for advanced data types (JSON, XML, etc.). MySQL: It Prioritizes speed and performance which sometimes compromising strict data integrity. It has optional transactional support with InnoDB. Extensibility and Standards Compliance: PostgreSQL: Highly extensible and compliant with SQL standards. It supports custom data types, operators, and full-text search. MySQL: Less extensible but simpler to use. It offers support for a variety of storage engines, which can be switched depending on the use case. Performance and Scalability: PostgreSQL: Performs well with complex queries and large datasets, supporting horizontal scaling through sharding and replication. MySQL: Known for its read-heavy workload efficiency and high-speed read operations. MySQL’s replication can be challenging in terms of consistency. Community and Support: PostgreSQL: Has an active community, comprehensive documentation, and a wide variety of extensions. MySQL: Has a larger user base, with widespread commercial support and a variety of tools available. License: PostgreSQL: Uses the PostgreSQL License, similar to the MIT License, which is permissive. MySQL: Uses the GNU General Public License (GPL) with commercial options available from Oracle. How to Choose Between PostgreSQL vs MySQL Choosing between PostgreSQL and MySQL depends on several factors: Application Requirements: If your application requires complex queries, data integrity, and extensibility, PostgreSQL is often the better choice. For simpler, read-heavy applications where speed is critical, MySQL might be more suitable. Skill Set: Consider the familiarity of your team with the respective database. PostgreSQL can have a steeper learning curve due to its extensive features. Community and Ecosystem: If you require strong community support and a variety of third-party tools, both databases offer strong ecosystems, but MySQL’s commercial support may provide more comprehensive resources. Budget: Both databases are open source, but commercial support costs can differ. PostgreSQL’s permissive license may offer more flexibility for proprietary applications. Hosting and Scalability: Consider your hosting environment and scalability needs. PostgreSQL offers more flexibility in terms of replication and scaling solutions. Summary of Differences: PostgreSQL vs MySQL PostgreSQL: Best for complex applications requiring full SQL compliance, data integrity, and extensibility. Suitable for developers needing custom data types and complex queries. MySQL: Ideal for simple, read-heavy applications requiring speed and reliability. Offers various storage engines and is easier to set up for beginners. Conclusion Both PostgreSQL and MySQL are powerful RDBMS solutions with their unique strengths. The choice between them should be guided by the specific needs of your application, your team’s expertise, and the level of community and commercial support you require. PostgreSQL is favored for complex and data-intensive applications, while MySQL is preferred for high-speed, simple read-heavy applications. FAQs Can PostgreSQL and MySQL be used together in the same application? Yes, it is possible to use both databases in the same application. You can leverage the strengths of each by connecting to them through an application layer or using data integration tools. Which database is better for handling large datasets? PostgreSQL is generally better suited for handling large datasets and complex queries, thanks to its advanced features and optimization for such scenarios. How do licensing differences affect the choice between PostgreSQL and MySQL? PostgreSQL’s permissive license allows for greater flexibility in proprietary projects, while MySQL’s GPL license requires that modifications be open-sourced if the software is distributed. It can influence the choice depending on your project’s licensing needs. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL
https://www.geeksforgeeks.org/difference-between-mysql-and-postgresql?ref=asr10
Languages
Difference between MySQL and PostgreSQL
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0295154601, 0.00613040291, -0.0229129493, 0.0535754561, -0.00472457195, -0.00274871453, -0.00771458587, -0.0103164222, -0.0211084485, 0.022073647, 0.0675918, -0.0390555263, 0.0366495289, -0.0436716899, -0.0290398542, 0.0103933588, -0.00634022849, -0.00548344059, -0.0475324802, -0.00842799246, 0.0334601812, -0.0171497408, -0.00119075994, -0.0215560775, -0.00783348642, 0.0303827375, 0.0248573329, 0.00672490848, -0.0367614329, 0.00979885273, 0.0307464357, 0.015289288, 0.0103024337, -0.00960301515, -0.037125133, -0.0237242747, -0.0357822478, -0.0289839, -0.00342540187, 0.0215840545, 0.00763065554, 0.0140932817, 0.0199893806, -0.00204230193, -0.0142331654, 0.0331804119, -0.0168419965, -0.0319774114, -0.0307184588, -0.036593575, -0.0299351104, -0.00135512324, 0.025864495, 0.00969394, 0.024381727, 0.0080712894, 0.00923232362, -0.000651333423, -0.00739285303, -0.00906446297, -0.0106241666, 0.0169678926, -0.015317264, -0.021304287, -0.0207167752, 0.0109458994, -0.0524563864, 0.00407760963, 0.00799435284, -0.0344953202, -0.0238082055, 0.0214441698, 0.0356703401, 0.00232032081, 0.0106521435, -0.0262841452, 0.0126175089, -0.00441333046, 0.00535404822, 0.0388876684, 0.00031517545, 0.0247873906, -0.0129112648, -0.000599751307, 0.0284523424, -0.00800134707, -0.00329950661, -0.0491271541, 0.0470009223, 0.00121436536, 0.0352786668, -0.0224093683, 0.0385239683, 0.0164782982, 0.00867978297, 0.0145339156, 0.00756770791, 0.00540300785, 0.0119740441, 0.0175833795, -0.016058648, 0.0150374966, 0.0531837791, -0.00547994347, 0.0168559849, -0.00450425502, 0.0108200032, 0.0397269689, 0.0359501094, 0.00986180082, 0.00694172829, 0.0248153675, -0.0350268781, 0.0389995724, -0.0324809924, -0.0168419965, 0.0151354158, -0.0197935421, -0.0140723, -0.0428044088, -0.0509456396, 0.0222415067, -0.00990376528, -0.00811325386, -0.0375447832, 0.00786845759, -0.00745580066, -0.00614788849, -0.00125545613, 0.0281166229, 0.0170238446, 0.0139673864, -0.0102324924, -0.0135617238, 0.0429722704, 0.0192899611, 0.0246614944, 0.0694382638, -0.000351894909, -0.0252629947, 0.00103426503, -0.0100576375, -0.0183387529, -0.0565409884, -0.0284523424, 0.0146178463, 0.00485746143, 0.0412936658, -0.00788244605, 0.0029672829, -0.0295714121, -0.056680873, 0.0654096156, 0.00292007206, -0.00621783035, -0.00365795847, 0.000666633248, 0.012918259, -0.0119670499, -0.015583043, -0.00637519918, -0.0332083888, 0.0233885534, -0.0277809016, 0.0197935421, 0.0542748719, 0.0301869, -0.0272073783, -0.0388037376, 0.0343834125, -0.0627238452, 0.0083720386, -0.0108060157, 0.010281451, -0.0102115097, 0.015792869, -0.0117362421, -0.00139971124, -0.0158628114, -0.00580167631, -0.0305226222, -0.0409859233, -0.0120719625, -0.0347471088, 0.0144080203, 0.0497985967, 0.0437276438, 0.0254588313, -0.000732203713, 0.021835845, -0.00304596731, 0.00357927405, 0.0659131929, 0.021835845, 0.000677124481, 0.0126384916, -0.0050218245, 0.0249832273, 0.00668294355, -0.0182268452, -0.0145059386, -0.0588071048, -0.0142261712, 0.0437276438, 0.0447907597, 0.00621783035, 0.0313339457, 0.0203950424, 0.0392513648, -0.0209545773, -0.0322851576, 0.0527921058, 0.0191081129, 0.0120649682, -0.00587161817, 0.014163224, 0.00893856771, -0.0562612228, -0.00697669899, 0.0126734627, -0.0117012709, 0.0106591377, -0.0100226663, 0.0235284381, -0.0531837791, -0.0117082652, 0.00183947058, -0.0214581583, 0.0163384154, 0.0455181524, 0.0749217048, 0.0105822012, -0.0123447357, 0.000211136954, -0.0342155509, 0.000652207702, 0.0184926242, 0.0043643713, -0.0794539377, 0.0378245525, 0.0189122763, -0.00628777221, -0.0157229267, 0.00264205318, -0.0093652131, 0.00296553434, 0.0209965426, 0.0288719945, 0.0117782066, 0.0140513172, -0.0211783908, -0.031082157, -0.0173455775, 0.0195417516, -0.0346352, -0.0184786357, 0.0314458534, 0.00853290502, 0.00185171037, -0.0164643098, 0.0107080964, -0.0189682283, -0.0200033672, 0.0378525257, 0.000703352678, 0.0659691468, 0.00798036437, -0.00281690783, -0.032620877, 0.0372370407, 0.0119460672, -0.0445109904, -0.00158505712, -0.0309982263, -0.0140932817, -0.0218218565, -0.00211923802, 0.0277529247, 0.054134991, 0.0200453326, 0.0131071024, -0.00777753349, 0.00965197477, 0.0300470181, -0.00153260073, -0.0277249478, 0.0244376808, -0.0114704631, -0.0346352, -0.0343834125, -0.0278928094, -0.0278088786, 0.041601412, 0.0248992983, -0.00467910944, 0.0117222536, 0.00943515543, 0.0138205085, -0.0213182755, 0.0265639126, 0.00350933219, -0.0232626591, 0.0447068289, 0.00392373744, -0.0538552217, -0.0481479689, -0.0182408337, 0.0174155198, -0.0193319265, -0.037097156, 0.0276969709, -0.0233885534, -0.0123027712, -0.0141492356, 0.00580167631, 0.0665846393, -0.0197795536, -0.0166321713, 0.00440633623, -0.0345792472, 0.0241719019, 0.00828810874, -0.0562332459, 0.0150095206, 0.0415454581, -0.0334042273, -0.0221435893, 0.00668993779, -0.0123657184, -0.00231332658, -0.0316976458, -0.0542748719, -0.0161985308, 0.0177372526, 0.035054855, -0.0429442935, 0.00814822502, -0.00184121914, -0.00159205124, -0.00604647258, -0.0330964811, 0.0441752709, -0.0213182755, 0.00653256848, 0.0311940629, 0.031613715, -0.00917637069, 0.0453782715, 0.0146458223, -0.00307918969, 0.00137785438, 0.0300190412, -0.0064206617, 0.00857487, -0.0144080203, 0.00129130133, 0.0117852008, -0.0298511796, -0.00825313758, 0.0289559253, 0.0323131345, -0.0120509798, -0.0167440772, 0.0418252237, 0.00691375136, 0.00178788847, -0.00928827748, -0.0132260034, 0.0202971231, 0.0124216722, 0.0065570483, 0.000480413059, 0.058751151, -0.0155410785, -0.0672560781, 0.0232206937, 0.00980584696, 0.0196116939, 0.0151214274, 0.0107990215, -0.00384330447, 0.00949110836, -0.012176876, 0.027906796, 0.00895255618, -0.0329845734, 0.0518968515, -0.0276829824, 0.0055848565, 0.0182548221, -0.0179750547, 0.0404543653, 0.00219617388, -0.0083440626, -0.0263960529, -0.0210245196, 0.0210524965, -0.00439234776, 0.000966071733, -0.00722499285, 0.0444830135, 0.00995971914, -0.0414335504, 0.0150934504, -0.0243537519, 0.0206468329, 0.00384330447, -0.00344638457, 0.00100716262, 0.0160866249, -0.0364257134, -0.0194018688, -0.0405103192, 0.0397269689, -0.017863147, 0.0810765922, -0.010309428, 0.0302708317, 0.00338693382, 0.00454272283, -0.00819019, 0.022339426, 0.0107570561, -0.0163104385, 0.0125405733, 0.0308863204, 0.0103723761, 0.0264380183, 0.0221855529, 0.0195697285, -0.000804331212, -0.0199753921, 0.000196165027, -0.0097498931, -0.00905746873, -0.0486795269, 0.0275710765, 0.00440283911, -0.0143660549, 0.0164083578, 0.0111837015, 0.0241299365, 0.0222834721, -0.017779218, -0.0367054828, 0.0016418848, -0.0631155223, -0.00189717254, -0.0230947975, -0.0318655036, -0.0240040421, -0.0128063522, -0.0310541801, -0.00330999796, 0.0196676478, -0.00354430312, 0.0337399468, -0.000261626206, 0.045182433, 0.00328901527, 0.0109808696, 0.0237662401, 0.0176673103, -0.0262981337, 0.0330125503, 0.0151633928, -0.00214896328, 0.0108969398, -0.000593194272, -0.00648710644, 0.0365096442, -0.0067354, 0.0187024493, 0.00800134707, -0.0207027867, 0.0245775655, 0.0318655036, -0.00260358513, -0.0281166229, 0.0179890431, 0.0409579463, 0.0463015027, -0.0152053572, -0.0231367629, -0.00914839376, 0.0557296649, 0.023850169, 0.00109371566, -0.0140653057, -0.00362648466, -0.0170797985, -0.00223464193, -0.0144499857, -0.0263540875, 0.00207202719, -0.00568627194, -0.0255567506, -0.00495887687, -0.0221575778, 0.0250811465, -0.0111347418, -0.0332643427, -0.0500224084, 0.0546105951, -0.00376986549, 0.0273612496, -0.0130161773, 0.0344393663, -0.00862383, -0.0221575778, 0.0141352471, 0.0109319109, 0.00497985957, 0.0485955961, 0.0266898088, 0.0144080203, 0.0057002604, 0.0130441543, 0.00697669899, 0.00746279489, 0.0119600557, 0.00700817304, -0.0118691316, 0.0116942767, 0.0147996945, 6.59119951e-06, 0.0127084339, -0.0230947975, 0.0260043778, -0.0359221324, -0.01342184, 0.000394734292, 0.004207002, -0.00602549, -0.00378385396, 0.00789643452, 0.035166759, 0.0257805642, 0.0452383868, 0.0228989609, -0.0132120149, 0.0123097654, 0.00227485853, -0.0130021889, 0.012680457, 0.00156057742, -0.0204090308, 0.00536803668, 0.0277809016, 0.00586812105, 0.0172616486, 0.0344953202, 0.0344113894, -0.00592757156, 0.00153172645, 3.82494472e-05, 0.00386778405, 0.00240250234, -0.00312465196, -0.0310541801, 0.0121139279, 0.0383001566, 0.0226331819, -0.00945613813, 0.00884064939, -0.0171777178, 0.0228150301, 0.00515471399, 0.00111906952, -0.0234025419, -0.00583315, -0.00629126932, -0.00749077182, -0.0188563224, 0.0123027712, 0.034663178, -0.0142261712, -0.0154991131, -0.00346387, 0.0094281612, 0.0139394104, 0.0204509962, 0.00940018427, -0.00285712443, 0.0254168678, -0.0264659952, -0.0084349867, 0.000737886468, -0.0180030316, -0.00564430701, 0.0294595063, 0.0247314367, -0.00638569053, 0.0135057708, 0.00921134092, 0.00590658886, -0.0135966949, -0.00480150757, -0.0120719625, 0.0264380183, -0.0110158408, 0.0270954706, 0.0265499242, 0.0166881252, 0.00864481181, -0.0183807164, 0.0118551431, -0.0166321713, -0.00286761578, 0.0119110961, -0.0213742275, 0.010428329, 0.010903934, 0.00402165623, -0.00366844982, -0.00737886503, 0.0304946452, 0.00944914389, -0.0150654735, -0.0124846194, 0.0233885534, 0.00160429114, -0.0235004611, 0.0168839619, 0.0123797068, 0.0439234786, -0.0133798756, 0.00428743521, -0.00582265854, -0.0204789732, -0.0248433445, 0.00340616796, -0.00451474637, -0.0207307637, 0.035082832, -0.00107972731, -0.0322851576, -0.00658852188, -0.0202271827, -0.00186569872, 0.00456370553, -0.0057002604, 0.00823215488, 0.0809646845, -0.0107360734, 0.0244936347, 0.00875671953, 0.00204579905, 0.0140862875, 0.00598702207, -0.0261162855, 0.00704664085, 0.0224373452, 0.0189262629, -0.0292636678, -0.0122468174, 0.0231787283, -0.0330405273, -0.000192667925, 0.0260743201, 0.0120509798, -0.0226611588, 0.0248153675, 0.00394821726, -0.00156320026, -0.0285502616, -0.00194788037, 0.00433639437, -0.00250566658, 0.0308863204, -0.0121069336, -0.0340197124, -0.0154711362, 0.0186185203, 0.0143800434, -0.0313339457, -0.018548578, 0.00897353888, 0.00393422879, -0.00774955656, -0.013065137, 0.0120719625, 0.0208846349, -0.0229129493, -0.0187863801, 0.00444830162, -0.0364536904, -0.0102254981, -0.00777053926, -0.0332923196, 0.00685080374, -0.0318934806, 0.0147577301, 0.0412656888, 0.0157788806, -0.0235704016, -0.00121786236, -0.00508826924, -0.00299351104, -0.0470568761, 0.0189122763, -0.0190941244, -0.00405313, -0.013687619, -0.00889660325, 0.00731591694, 0.00575271668, 0.00639618188, -0.0196256824, 0.0234864727, -0.000610242598, 0.0106801204, -0.00353031466, 0.000890447118, -0.00704664085, -0.0204370078, 0.00190766389, 0.00223813904, -0.013393864, -0.00115141761, 0.0154711362, 0.00862383, -0.00162527361, -2.36053729e-05, -0.0309422724, 0.0184786357, 0.00884764362, 0.0362858288, 0.0101485616, 0.0120859509, 0.0036859354, 0.00288510113, -0.000751874875, -0.011022835, -0.0365655981, 0.000668381748, 0.0248013791, -0.0137435729, 0.00459867623, -0.00967295747, 0.00487844367, 0.00446578674, -0.018814357, 0.0229409263, 0.0336839929, -0.00986879412, 0.0541909412, 0.00458119111, 0.0103653818, 0.0195557401, 0.0298791565, -0.0299351104, 0.00255287741, -0.0393632725, -0.0330125503, 0.00305471, -0.0175554026, 0.0161006134, 0.0315297842, -0.00829510298, 0.01706581, 0.0192200188, -0.000365009, 0.00985480659, 0.00705013797, -0.00497636246, -0.0572683848, -0.0268296916, 0.00413356302, -0.00354605168, 0.022339426, 0.0239341, 0.0593666397, -0.0177932065, 0.00461266469, 0.0189402513, -0.00893856771, -0.0504140817, -0.0526801981, 0.0169539042, 0.00657453341, 0.0173875429, -0.00195312616, -0.00378735107, 0.000196274312, -0.0293755755, 0.0401186422, 0.0193738919, 0.0256406814, -0.00677037053, 0.00800134707, 0.0263400991, 0.0166741367, 0.0246195309, -0.0101555558, -0.00328202127, -0.0080503067, -0.0322292037, -0.0459378064, -0.0313619226, 0.0192759726, -0.0303547606, 0.0103164222, 0.0039796913, 0.0120020211, -0.030130947, -0.0206887983, -0.0222415067, -0.0528200828, 0.0110368235, -0.0128972763, 3.42332569e-05, -0.00362648466, 0.055673711, 0.0260463431, 0.0107011022, -0.00327852415, 0.00776354503, 0.00648710644, 0.0179191, -0.00852591079, -0.0192200188, 0.0086588, -0.00708860625, 0.00143992773, 0.00898752734, 0.00835805107, 0.00530508906, 0.0573523156, 0.0227730647, -0.00838602707, 0.000266216142, -0.0339357853, -0.0192479957, -0.0379364565, 0.00165587326, 0.0139044393, 0.0151494043, 0.0254168678, -0.0108200032, -0.00279067969, -0.0104563059, -0.0184506588, -0.0053925165, -0.0106521435, 0.0135197593, 0.00907845143, 0.000954706222, 0.0103793703, 0.00489942636, 0.0431681089, -0.00514422264, -0.0446228981, 0.0223953798, -0.00255812309, -0.00339567661, -0.00898752734, 0.00280466815, 0.0100296605, 0.00138659705, 0.0344673432, 0.00348485261, -0.0197515767, 0.00296028866, 0.0120230038, -0.00930226594, 0.00264030462, -0.00251440937, 0.000725646678, -0.0377126448, -0.00672141137, -0.0168839619, 0.0353625976, 0.0117712123, 0.0130511485, 0.0235564131, 0.0021716943, 0.00639618188, -0.00312465196, -0.0372929908, 0.020618856, 0.0177232642, -0.00277319411, -0.0117502306, 0.00172581512, 0.0224793088, -0.0357262939, -0.0315857381, -0.0161146019, -0.0117082652, -0.0183667298, 0.0112816198, -0.0230108667, -0.00664447527, -0.0147577301, 0.000524126692, 0.0048644552, 0.0151074389, 0.0029463002, -0.0206608213, -0.00602549, 0.0302708317, 0.00213847193, 0.00913440529, 0.00718302745, -0.0154991131, 0.0282425173, -0.00851192232, 0.0136386603, -0.0189262629, 0.0150095206, 0.0488194078, -0.00668993779, -0.00996671338, 0.0127224214, 0.028592227, 0.0141702183, -0.021835845, 0.00253364351, -0.0275011342, -0.00706762355, 0.033124458, 0.00737886503, 0.0201852173, 0.00107710448, -0.00248293555, -0.0117712123, -0.0221855529, 0.0165062752, 0.0290398542, 0.0120719625, 0.0120439855, 0.0035285661, 0.00521766162, -0.001722318, -0.0172056947, -0.0160026941, 0.0448187366, -0.0468610376, -0.0150095206, -0.0165762175, 0.00335021457, 0.0356143899, -0.0206748098, -0.0127573926, 0.00934423, -0.0182827991, 0.0166321713, 0.0138484854, -0.00799435284, -0.011022835, -0.0151913688, 0.0159047768, -0.0236403439, 0.000614176854, -0.0225912165, -0.0187584031, -0.0143800434, 0.0048504672, 0.0210105311, 0.00654655695, 0.0269555878, 0.024563577, 0.00564081, 0.00322606764, 0.0319494344, 0.0126175089, 0.013953398, -0.0207867175, 0.00279942248, -0.00492040906, -0.014044323, 0.031613715, 0.0281026345, 0.010903934, -0.0274731573, 0.0168000311, -0.0255567506, 0.0282984711, 0.00976388156, 0.0465532914, 0.0118831201, -0.0244097039, 0.0407341309, 0.0268436801, -0.0338798314, 0.00475604553, -0.0444270596, -0.0109948581, 0.0128762936, -0.0177232642, 0.0148416599, 0.0180729739, -0.00216295151, -0.00409859233, 0.0204649847, -0.021807868, 0.00557786226, -0.0462735258, -0.0107710445, 0.00211399235, -0.026605878, 0.00846296363, -0.000316705438, 0.0303827375, 0.0274451803, 0.0156529844, -0.0269276109, -0.0160026941, 0.0162824616, -0.00753973098, -0.0364536904, -0.0107640503, -0.0254168678, 0.0230108667, -0.000766300363, -0.0106451493, 0.00341665931, 0.00942116696, -0.0187164377, -0.0172056947, -0.0233745649, -0.00436087418, -0.026102297, 0.0152333342, 0.029095808, 0.020353077, 0.00018687587, -0.0125755444, 0.0171357524, 0.00877070799, -0.012799358, 0.0251510888, 0.0069207456, -0.00277494267, -0.0119810384, -0.042748455, -0.0604857095, 0.005836647, -0.0232346822, 0.0137855383, -0.0159747172, 0.00710958848, 0.0255427621, 0.0036929294, -0.0382442027, -0.0108339917, -0.00567927817, -0.00786146335, -0.029123785, -0.00304247043, -0.00947012566, 0.00905746873, -0.0064206617, -0.00363347889, 0.0153592294, -0.0172476601, -0.00956804492, 0.00266478444, 0.0371531099, -0.0224093683, -0.0120929452, 0.0291797388, 0.00711308559, -0.006014999, 0.0327887386, 0.00262631639, 0.0138974451, -0.00211399235, 0.00226961286, 0.0188563224, -0.016590206, -0.00076936034, -0.00753973098, -0.00550092617, -0.0115404045, -0.0112186726, 0.00156494882, -0.0155410785, 0.0201432519, 0.00194438337, 0.0216260199, 0.0301029701, 0.0424966663, -0.00371740921, -0.00311765773, -0.000380745914, -0.0080083413, -0.0168000311, -0.0149675552, -0.00388876675, -0.00652207714, 0.00739285303, 0.0132679678, 0.00677386764, 0.0176253449, 0.0132190092, 0.0678715706, 0.000924106629, -0.0210245196, -0.0410418771, -0.00981983542, 0.0188003685, 0.0343274586, 0.016828008, 0.0269276109, -0.00801533554, 0.0183667298, -0.00532956887, 0.0153872063, 0.0256966352, -0.0304386914, 0.00893856771, -0.00804331247, 0.0233326, 0.0128832879, -0.011673294, -0.0167440772, 0.00928128324, 0.00793140568, -0.0101415673, 0.0227730647, -0.00951209106, 0.0192340072, -0.00708860625, 0.0141492356, -0.0100296605, -0.000881704385, 0.0125685502, -0.00743481843, -0.000377685967, -0.0261162855, 0.0157509036, 0.00685430085, -0.0159187652, -0.00581216766, -0.0187024493, -0.0208146945, -0.00803631824, -0.0116453171, 0.0206468329, -0.017275637, -0.00157718861, -0.0117852008, -0.00622132747, 0.0159747172, -0.0133588929, 0.0164922867, -0.0285642501, 0.0230947975, -0.00545546412, -0.0121628875, 0.0298791565, 0.0316976458, 0.0212902986, 0.00678086188, 0.0157788806, -0.0162684731, 0.00461965892, 0.0187304262, -0.00623181835, -0.00826013181, 0.00507428078, -0.0227311, -0.0238221921, -0.00305296155, -0.017093787, -0.0177232642, 0.0160726365, 0.00971492287, 0.0097219171, 0.00543797854, 0.00925330631, -0.0194438342, 0.022577228, 0.0289279483, -0.0122188404, -0.00856787618, 0.00895955, 0.0183527414, -0.00645213528, 0.00259833969, -0.014547904, -0.00593456579, -0.00830909144, 0.0100926086, -0.0121908635, -0.0087287426, -0.0199614037, -0.000946837768, -0.0334601812, 0.004399342, 0.0131980265, 0.0138834566, 0.0127573926, 0.011050812, 0.0140023576, -0.00545546412, 0.0325649232, -0.00273647485, -0.0109109282, -0.00316836569, -0.0246055424, 0.00929527171, 0.0165482406, 0.000276707433, -0.00261407648, 0.0184226818, -0.0190941244, 0.0112606371, 0.0194997862, 0.0240040421, -0.00569676328, 0.0172616486, -0.0128972763, 0.035054855, 0.00176340877, -0.0459657833, 0.00354780024, 0.0120160095, -0.0332643427, -0.00196886295, -0.0219337624, 0.000990551431, -0.00795238838, 0.0114984391, 0.0309702493, 0.00951908529, 0.00324355322, -0.0273892265, 0.00935122464, 0.0158488229, -0.00437835976, -0.0197236016, 0.0252070408, 0.0102045154, 0.0137016075, -0.00941417273, 0.0195417516, -0.0244097039, -0.00981284119, 0.0112536428, 0.00838602707, -0.0128483176, 0.0108060157, 0.00312814908, -0.0163803808, -0.0199054498, -0.0196256824, 0.00284488453, -0.00207902142, 0.0301869, -0.0303547606, 0.0213182755, -0.00505329855, 0.0154151833, 0.0194158573, 0.0208146945, 0.00420000777, 0.0169539042, -0.0358661786, -0.0172896236, 0.00394122303, -0.0154571477, -0.0189402513, -0.0275431, 0.016828008, 0.00138222578, 0.00623531546, 0.0306904819, 0.00937920157, -0.0152053572, -0.00342015619, 0.0185905434, -0.00214896328, 0.0170098562, 0.000201957082, -0.00236403453, -0.0135267535, -0.00925330631, 0.0350268781, -0.0180170201, 0.0309702493, -0.00333972322, 0.000117371164, 0.000997545547, 0.0167021137, -0.0120859509, 0.00180799677, 0.0176113565, -0.0230528321, 0.000566966075, 0.0094071785, 0.0267177857, -0.0168699734, -0.0103793703, 0.0179470778, -0.0133309159, -0.00633323425, 0.0202831347, -0.00715155387, -0.00617936207, -0.0129602244, -0.0300749931, 0.00858885888, -0.00536803668, -0.0127434041, 0.0177372526, 0.0073718708, -0.0146877877, -0.0135057708, -0.00853989925, -0.0342155509, -0.0121349106, -0.0161425788, 0.0111627188, 0.0108829513, -0.0206887983, -0.000521941052, -0.00951908529, 0.0133169275, -0.00523165, -0.0187164377, 0.0196256824, 0.0209126119, 0.0151773803, 0.00178351707, 0.00182723079, 0.0302988086, 0.00908544566, 0.0292356927, -0.000288947253, 0.0187444147, 0.0220316816, -0.0374328755, -0.0186325088, 0.024829356, -0.000746192061, 0.00686828932, -0.00971492287, -0.00563731277, -0.00815521926, 6.83572289e-05, 0.0101975212, -0.0317536, 0.0118621374, 0.0317256227, -0.0218498334, -0.010903934, 0.0125405733, -0.0357822478, 0.0100716259, 0.00183072779, 0.00562682142, 0.0294315293, 0.00136823743, -0.0259484258, 0.0183667298, 0.023794217, 0.00378735107, 0.00536104245, 0.00511274906, 0.0175134391, -0.0234025419, 0.00315262866, -0.0014932584, 0.0440353863, -0.0275570881, 0.00944215, -0.0191500783, 0.00556737091, -0.00321732485, -0.00428393809, 0.0223674029, 0.002288847, -0.0119041028, -0.00681233592, -0.00719701592, 0.0249412619, -0.0045567113, -0.0286481809, 0.0121349106, -0.0194298457, -0.0106801204, 0.0179051124, 0.0134078516, -0.0116593055, 0.0190241821, 0.0114284977, 0.00255812309, 0.0192340072, -0.00231157802, 0.0210524965, -0.00518269092, 0.00157456577, -0.0116453171, 0.00452523725, 0.0220596585, -0.0097219171, 0.021066485, 0.0268856455, 0.000101033183, 0.0137295844, 0.00710958848, 0.0083440626, -0.0151494043, 0.00807828363, -0.0144639742, -0.0248573329, 0.00774256233, -0.0105262483, -0.0275151227, -0.0131420726, 0.0137295844, 0.00182723079, 0.0262142047, 0.000846733456, -0.00467561232, -0.0221995413, -0.00609543175, -0.00753973098, -0.0029865168, -0.00847695209, -0.00756071368, 0.0180869624, -0.0111487303, 0.00472806906, -0.00603248412, -0.0194997862, -0.0220876355, 0.00384680158, 0.0153032765, 8.66623159e-05, 0.0106171723, -0.00109284138, -0.0097009344, -0.0240180306, -0.00598002784, -0.00781250466, -0.0112326602, 0.0186884608, 0.0190941244, -0.0259903893, -0.00490292348, 0.0160166826, -0.0147157647, -0.00665146951, 0.0067284056, 0.0133449044, 0.0142121837, 0.0104423175, -0.00283439341, 0.0128902821, -0.0186744723, -0.0157229267, -0.0116033526, 0.0109598869, 0.00768660894, 0.0248153675, 0.0101205856, -0.0136246718, -0.00772158, 0.00846296363, 0.00466512097, -0.00569676328, 0.0204090308, 0.012680457, 0.0304386914, -0.0233885534, 0.0212763101, 0.0163943693, 0.0108549744, 0.00386428693, 0.0107780388, 0.00479801046, 0.0293196216, -0.015555067, -0.0215001237, -0.0330685042, 0.00972891, -0.000813948223, -0.000430798071, 0.0241719019, -0.00522465585, 0.019317938, -0.00305820722, -0.0139324162, 0.00293231197, -0.0309702493, 0.0183527414, 0.00728794048, -0.042636551, -0.00346561847, -0.0330405273, -0.0120090153, -0.0166181829, 0.0108130099, 0.00549742905, 0.0281306114, -0.00608843798, 0.00364047312, 0.0316696689, 0.00814123079, 0.0204090308, -0.0440633632, 0.0120439855, 0.00846995786, -0.000588822935, 0.0155690555, 0.00246894709, -0.0173176, -0.0255847275, 0.0218778104, -0.0123027712, 0.0165482406, -0.002007331, 0.0129951946, -0.0116942767, 0.0231507514, -0.00258085411, -0.0347471088, -0.0140233403, -0.0120160095, 0.021304287, 0.000369380374, 0.00986879412, -0.0267037973, 0.0243677385, -0.033124458, -0.00714805676, -0.0027819369, -0.0110368235, 0.00783348642, 0.0301869, 0.00591008598, 0.0046930979, 0.00424197316, -0.0153872063, -0.0121279163, -0.0163104385, -0.0131210908, 0.0112326602, 0.00749077182, 0.0109179225, 0.00919735245, -0.000590571493, -0.00692774, -0.0242977981, 0.0148976138, -0.0209685657, 0.00860984158, -0.00776354503, -0.00330999796, 0.00147752149, -0.0283264481, 0.0204090308, 0.0119180903, -0.00348660117, -0.0109878639, -0.0051582111, 0.0090224985, 0.0136456545, -0.012204852, 0.00977787, 0.0239760652, 0.0157788806, 0.0177652296, -0.000198022855, -0.0201292634, -0.00752574252, 0.0140932817, 0.0176812988, -0.00963798631, 0.0187584031, 0.00246020453, 0.0159747172, -0.0148276715, 0.00133851205, -0.000659201876, -0.0149116013, 0.0202971231, 0.00786845759, 0.036621552, -0.000483473, 0.00650459155, 0.00709210336, 0.0241579134, -0.00278893113, -0.00596953649, -0.00594156, -0.0106031839, -0.000712095411, -0.0110088466, -0.00892457925, -0.00658502476, -0.00392723456, 0.0130441543, -0.0134008583, 0.00449376367, 0.0133658871, 0.0154571477, 0.0214441698, 0.00165762182, -0.00524563855, 0.0219897162, 0.0131980265, -0.015792869, -0.00197061151, 0.0015658231, -0.0153032765, 0.0149255898, 0.0247454252, -0.00614089426, -0.00220841379, -0.00422448758, 0.00900151581, 0.00684031239, 0.028592227, 0.00138747133, -0.00148539, -0.019052159, 0.015792869, 0.0227590762, -0.00703964708, 0.0108899456, 0.00442731893, 0.0073508881, 0.00765163824, 0.00296553434, -0.00273647485, 0.0189962052, -0.0220176931, -0.0177512411, -0.0115194218, -0.00206853, 0.0160306711, 0.00482598739, 0.00693473406, 0.0114424862, -0.0153452409, 0.00185345893, -0.0192899611, -0.000844547816, 0.0232626591, -0.00557436515, 0.0129672186, -0.0108969398, 0.00672141137, 0.00150812103, -0.00501483027, 0.0149255898, -0.00200558244, 0.0208706465, 0.0277669132, 0.0070011788, -0.0121069336, 0.0114704631, 0.00574572291, -0.0133518986, -0.00999469, -0.000462053315, 0.0111417361, -0.00744880689, -0.000503144169, 0.00921134092, -0.00667594932, -0.0148556484, 0.0124566425, 0.00397619419, 0.0187863801, -0.0169119388, 0.00620034477, 0.00639268477, -0.0202131942, 0.00683681574, -0.0193878803, 0.00811325386, -0.00302848197, -0.012057974, -0.00660251034, -0.0107780388, 0.00186395016, 0.00244971318, 0.0197935421, -0.00295329443, -0.0131420726, 0.0208846349, 0.027375238, 0.0188843, 0.00828111451, 0.014813683, -0.00367194694, 0.0149955321, 0.0104143405, 0.0209266, 0.0173875429, 0.00467910944, -0.0113935266, -0.0135407411, -0.00218393421, -0.00715155387, -0.00579118496, -0.00593106868, -0.0185345896, -0.00565479835, -0.0124566425, -0.00828810874, 0.00105874473, -0.0167300906, -0.00554988533, -0.00166636449, 0.010519254, -0.0232067052, 0.0281026345, 0.00575971091, -0.0199474152, -0.0200173557, 0.00649410067, 0.00410208944, -0.00586812105, -0.00516870245, -0.00505329855, -0.000286324444, 0.0277948901, -0.00135337468, -0.029095808, -0.0196256824, -0.0110088466, 0.00764464401, 0.00823215488, 0.014044323, -0.00502881873, 0.00449726079, -0.0309422724, -0.0246614944, -0.00427694386, 0.0126874512, -0.011764219, 0.0127154281, -0.0133449044, -0.0121558933, -0.0080712894, -0.0143660549, -0.0190661475, 0.0257945526, -0.00244621607, 0.000662699, 0.0148976138, -0.00183247635, 0.00963099208, 0.0196256824, 0.00795238838, -0.0271794014, 0.0120999394, 0.0127573926, 0.019317938, -0.00550442329, 0.00785446912, -0.0101695443, 0.021304287, 0.0232346822, -0.000358233403, -0.00633673137, 0.0107640503, 0.00314738299, -0.0260743201, -0.00283264485, 0.0127853695, -0.0103723761, -0.0216120314, -0.0111906957, -0.0203950424, 0.00678785611, 0.0220876355, -0.00268052123, -0.014575881, 0.00835105684, -0.000611116877, -0.00793140568, -0.00350233796, -0.0107570561, 0.0109109282, -0.0156250093, 0.000990551431, -0.00298127113, 0.0043294, 0.00856088195, -0.0134987766, 0.00108934427, 0.00528760348, 0.0123167587, 0.00795238838, -0.0336839929, -0.00328376959, 0.0221435893, -4.32765191e-05, -0.0266758204, 0.029123785, -0.00320683373, 0.0145618925, -0.00145391619, -0.00199159398, 0.00944914389, -0.00748377759, 0.0328167155, 0.00212798058, 0.00549742905, -0.020590879, 0.00513023464, -0.00150724675, 0.0103723761, 0.000105623119, -0.0164363347, -0.0144080203, -0.0172616486, 0.00361949066, 0.00277494267, -0.0117012709, 0.0115264161, 0.0134777939, 0.0116383228, -0.0265639126, 0.00317536, -0.0016060397, -0.0257945526, -0.00249692402, -0.00959602091, 0.0024252336, 0.0288719945, -0.0212763101, -0.00514072552, -1.48489817e-05, 0.017863147, 0.0103933588, -0.00860284735, 0.00315787434, 0.0167440772, -0.0144080203, 0.0229129493, -0.0132329976, -0.00774256233, -0.003829316, -0.00967995171, -0.00207027863, 0.00542049296, -0.0179330893, 0.0287600867, -0.0131420726, -0.0125195906, 0.0272493437, 0.00207727286, 0.00146790454, -0.0120929452, 0.0103234164, 0.006592019, 0.00676687388, 0.0058926004, -0.0048504672, -0.00358102261, 0.0057422258, -0.00663048727, 0.0175134391, -0.0163663924, -0.0012126168, -0.00667594932, -0.00683331862, -0.00860984158, 0.0254168678, -0.00296378578, 0.0234445073, -0.00814123079, 0.00115141761, 0.00491341483, -0.00392373744, -0.00458468823, -0.0247734021, 0.0077565508, 0.0124496492, -0.0204370078, -0.0156669728, 0.0341036431, 0.00964498054, 0.00909943413, -0.00582615566, 0.0248713214, 0.0137086017, -0.00546595547, -0.0274032149, 0.0147437416, 0.0102394866, -0.00629476598, 0.0215141121, 8.59519714e-05, -0.0110787889, 0.00771458587, 0.000826188072, -0.0061339, -0.0051791938, 0.0112746255, 0.0115124276, 0.0020353077, 0.0152193457, -0.0167021137, -0.00406711828, -0.00304247043, 0.00304596731, 0.00406012405, 0.00325754145, 0.0142261712, -0.010190527, -0.0135337478, -0.0201292634, 0.00877070799, 0.00140408252, -0.0146178463, 0.0228010416, -0.0106031839, 0.0180310085, -0.0084349867, 0.0125405733, -0.00534705399, -0.0109738754, -0.0186884608, -0.011288614, -0.00780551, -0.00303023052, 0.0147996945, -0.0193878803, -0.0153452409, -0.0343554355, -0.0216260199, -0.00625280105, -0.0197655652, 0.0168140195, -0.00823914912, 0.00438885065, 0.00935821887, -0.0014250651, -0.0119950268, -0.0108969398, -0.012029998, -0.0174994506, 0.0263261106, 0.00937920157, 0.000336158, -0.0028221535, -0.00751874829, 0.0161146019, 0.00370342075, -0.00791042298, -5.25383475e-05, 0.00725996355, -0.0110857831, -0.00628077798, -0.0222415067, -0.00534006, -0.00325054722, 0.0160306711, -0.0288160406, -0.0192340072, 0.00358102261, -0.0097498931, -0.0313899, 0.020534927, 0.00114879478, -0.00238326844, -0.00445529586, 0.000405225583, -0.0196256824, 0.0326768309, 0.0229968783, 0.00856088195, 0.000675376, -0.00981983542, 0.00819718465, -0.0112116784, 0.00974289887, 0.0101765385, -0.0150654735, 0.0195277631, 0.00788944, -0.0151494043, 0.00296028866, 0.00266478444, 0.015555067, 0.00229059556, -0.0297672506, 0.00963099208, 0.00889660325, -0.00123709638, 0.00101065973, -0.0043643713, 0.00563031854, -0.00756071368, -0.00327327847, -0.0410698541, 0.0129112648, 0.00267877267, 0.012799358, 0.0210245196, 0.00462665316, -0.00672141137, -0.00863781851, -0.00660950458, 0.0128203407, 0.00556037668, 0.0119670499, -0.00525962701, 0.0014731501, 0.00105961901, -0.00661649881, -0.014219177, 0.00166986161, -0.0189962052, 0.00295504299, 0.00688227778, -0.0153032765, -0.0132679678, 0.00190416677, 0.00632274291, -0.00750476029, 0.00689276913, 0.00119338278, -0.00258085411, -0.00471757771, 0.0123587241, 0.0134847881, 0.0056652897, 0.00818319619, -0.0116173411, -0.0101275798, -0.00599051919, 0.00522115873, -0.0136666372, -0.00243747327, 0.00589959463, 0.00900851, -0.0100296605, -0.030130947, -0.00720401, 0.00644514104, 0.0118131777, -0.00471058348, 0.00526312413, -0.0137995267, -0.0169539042, 0.02109446, 0.027375238, -0.0146458223, 0.0260323547, 0.00113655499, 0.0204649847, -0.00867278874, 0.0267737396, 0.0057212431, 0.0176253449, -0.0083930213, 0.00659551611, 0.00641017035, 0.0184926242, -0.0050218245, 0.0154991131, 0.00103951071, -0.0114844516, 0.00934423, -0.0260743201, -0.0090434812, -0.00270325248, 0.0227730647, -4.73473519e-05, -0.026871657, 0.010666132, -0.0179610662, 0.000544235, 0.0106171723, 0.0134358285, -0.00660251034, 0.00154396624, 0.0059940163, -0.000336158, -0.0191920418, -0.00273297774, -0.00849094056, 0.00541699585, -0.00752574252, 0.00414405437, 0.000219770402, 0.000547294971, -0.014163224, -0.0124216722, -0.00366145559, -0.0214161929, 0.00308793248, 0.00372090633, -0.00900151581, 0.0140513172, -0.0112746255, 0.00915538799, 0.00438885065, 0.0084349867, -0.00431890925, 0.00546245836, 0.00536104245, -0.0214161929, 0.0295993891, 0.0153732179, -0.0255007967, -0.0152613111, -0.0229968783, -0.00362298754, 0.00425246404, 0.0165062752, -0.0158768, 0.00837903284, 0.00353206322, 0.00989677105, 0.0158488229, -0.00941417273, 0.0250811465, -0.0113165909, 0.00760967284, 0.000645650667, -0.0104563059, 0.00907845143, 0.0133658871, -0.000640405051, -0.0103374049, -0.00125545613, 0.0115194218, -0.00668294355, -0.00970792864, 0.00568277482, 0.0126035204, 0.014282125, 0.0265079606, -0.00248468411, 0.021066485, -0.00711658271, -0.010400353, 0.00539601361, 0.0194997862, -0.00558835361, 0.0161705557, 0.00923232362, -0.0219477508, 0.0207727291, -0.00596603937, 0.000269713259, 0.000611554, -0.0022398876, -0.0249552503, -0.00826712605, -0.00538552226, 0.00175116898, -0.00322956475, -0.0133099332, -0.00508826924, 0.0149395783, 0.00866579451, -0.0156389978, 0.00531907752, -0.000136605173, -0.0194718093, -0.0318095535, -0.0214721467, -0.00578419073, -0.0033642028, 0.00474555418, 0.0227730647, 0.00118638854, 0.0191221014, 0.0109738754, 0.0202551596, 0.0236543324, -0.0141282529, 0.0125685502, 0.0144639742, 0.00966596324, 0.000602811284, 0.013184038, -0.0302428547, 0.00428044097, -0.00140320824, 0.00821117312, -0.00301799062, 0.00763765, 0.0253469255, 0.00502532162, -0.00195837161, 0.000372440321, -0.0223254375, -0.00765163824, -0.0237382632, 0.0297392737, -0.00622482458, 0.0278928094, -0.0118971085, -0.00573523156, 0.0203390885, 0.00787545182, -0.000497024273, -0.0053925165, -0.00251615793, -0.00754672522, 0.0155270901, 0.00304072187, -0.00406711828, 0.0115404045, 0.0156669728, 0.00391674321, 0.0125475675, -0.0160446595, -0.00254238606, 0.0166601483, -0.0019391377, -0.0100156721, 0.0100296605, -0.0149675552, -0.00328901527, 0.00715505099, 0.00637519918, 0.00152735505, 0.00522815296, -0.0244097039, 0.000149172847, -0.00713756541, 0.0129322475, -0.000397357129, 0.0235144496, -0.00373489456, 0.0236683208, -0.010903934, -0.000761928968, -0.00671791425, -0.0198355075, -0.0123447357, -0.0137995267, -0.00222764793, -0.0138834566, 0.0126734627, 0.00671441713, 0.0168000311, -0.00335546, 0.00981983542, -0.00399717642, 0.0322292037, -0.00524214143, 0.0211783908, 0.0176113565, -0.00788244605, -0.0135617238, -0.0370691791, 0.000279548811, -0.0289279483, -0.00929527171, 0.0109319109, -0.0192759726, 0.00761666708, 0.00919035822, -0.00124321633, 0.00543098431, -0.00862383, -0.0069207456, 0.0283124596, 0.00258260267, 0.00697669899, -1.7963579e-05, -0.0308583435, 0.0314178765, -0.00475954264, 0.00235004607, -0.00264904741, 0.00353556033, -0.0200453326, -0.0134708, -0.00803631824, 0.0130231716, 0.00163926207, 0.00110158406, -0.00947712, -0.0113235852, 0.0147996945, -0.00791042298, 0.00136299175, -0.0203670654, 0.00365096447, -0.00655355118, -0.00376636838, -0.00240949658, -0.0113026025, 0.0219757278, 0.00406012405, 0.00362648466, -0.0268157031, -0.0216400065, -0.0243677385, -0.0167161021, 0.00396220572, -0.00144167629, -0.0144499857, -0.0242838096, 0.0116872825, 0.0157648921, -0.0172616486, 0.0179750547, -0.00108409859, -0.010785033, -0.00646262662, -0.0144080203, -0.00300225383, 0.0429163165, 0.013659643, 0.0251091234, -0.00765863201, -0.0222275183, 0.00709210336, -0.00988977682, -0.000462490454, -0.00172668928, 0.0126384916, -0.013568718, -0.0128063522, -0.00467910944, -0.00215420895, -0.0126454858, -0.010134574, -0.0138764624, -0.00267352699, 0.00562682142, 0.00727395201, -0.0265639126, -0.01342184, 0.006399679, -0.004014662, 0.010666132, 0.0110018523, -0.00458818534, 0.00152822933, 0.00604297547, 0.0077005974, -0.000679747318, 0.0251510888, 0.0224793088, -0.0182967875, -0.0155270901, 0.0038782754, 0.0214301813, 0.00399717642, -0.00761666708, 0.00979885273, -0.0147577301, 0.00889660325, 0.017807195, 0.00431541214, 0.00530159194, -0.0186744723, 0.0123167587, -0.0119740441, 0.0150374966, -0.00135337468, -0.00302323629, 0.00958902761, 0.00899452157, 0.0130231716, -0.00617236784, 0.0151773803, -0.0329845734, -0.00926030055, -0.00315262866, -0.00408460386, 0.0128413234, 0.0245356, 0.0264520068, -0.00189892109, 0.00695921388, -0.000604997, -0.0156809613, 0.00814822502, 0.0143660549, 0.0235564131, -0.0068647922, -0.0109948581, 0.0154851247, -0.00484347297, -0.0110438177, -0.00689626625, -0.00831608567, 0.0132749621, 0.00593806291, 0.0207447521, -0.0307744127, 0.0137295844, -0.0134987766, 0.0135757122, -0.0246614944, -0.0102604693, -0.00674239406, 0.0201852173, 0.0100366548, 0.022577228, 0.00343414466, -0.0154291717, -0.00947712, 0.0109948581, -0.00643814681, -0.00663748104, 0.00774256233, 0.0105542243, 0.00139184273, 0.00886163209, 0.0145059386, -0.0267177857, -0.00867278874, 0.0136456545, -0.00180100254, 0.00856088195, -0.0240460075, -0.00772857387, 0.00117152592, -0.00856787618, -0.00265604164, -0.00271898927, 0.0217379257, -0.00207902142, -0.0168140195, -0.00246719853, -0.019080136, -0.00556737091, -0.002481187, 0.0255427621, -0.0271234475, -0.00316661713, -0.0117432363, -0.0123517299, 0.00151074387, -0.0169119388, 0.00538901938, 0.00695921388, -0.0199334268, 0.00240774802, 0.000695484225, -0.00215246039, -0.0165762175, -0.0291517619, -0.00509176636, 0.0110997707, -0.0104702944, 0.00570375752, -0.0140792942, 0.00471757771, 0.0302148778, 0.00661999593, -0.006014999, -0.00329426094, 0.0014014598, -0.0112396544, 0.00357402838, -0.0355304591, 0.0173036121, -0.000568714633, 0.00752574252, -0.00044325646, -0.012414678, 0.0262142047, -0.00120125117, 0.00177215156, 0.0100296605, 0.0123727126, -0.0110298293, -0.0264100414, -0.00401116489, -0.0039796913, -0.00635421695, -0.00319284527, -0.00433289725, 0.00725996355, -0.0121349106, -0.00446578674, -0.00486795232, -0.0157509036, -0.00557086803, -0.00650808867, 0.0158628114, 0.000838427863, 0.00949810259, -0.00175728893, -0.0255287737, -0.0111137591, -0.0561213382, 0.0027137436, 0.013568718, 0.0113305794, 0.0144220088, -0.0134777939, -0.0137505671, -0.0109249167, 0.0118831201, 0.0137645556, 0.0179470778, -0.00807828363, 0.0225912165, -0.000441726472, -0.00556037668, -0.0219897162, 0.000920609571, 0.00610942, -0.00983382389, -0.016562229, 0.0028221535, -0.0220456701, -0.000141632234, -0.0141562298, -0.0127434041, -0.00188493275, 0.00881966669, -0.017597368, 0.00176778017, 0.0049868538, -0.0101205856, -0.00807828363, -0.00213672337, 0.0110717947, 0.0205209386, 0.00351632643, 0.00797337, -0.0177512411, -0.00163926207, 0.0074278242, 0.00574572291, -0.00330125517, -0.0083720386, -0.0148696369, 0.00485396432, 0.0214441698, 0.0073718708, -0.00142331654, 0.000863344641, -0.00423148181, -0.00948411413, 0.00493439706, -0.00723898131, -0.0161845442, 0.0068647922, 0.00951209106, -0.0162125193, -0.0194857977, 0.0153592294, -0.0181569029, -0.0277529247, 0.00202831347, 0.00415804284, 0.0138694681, 0.00798036437, 0.0231927168, -0.00967995171, 0.0194578208, -0.000108792359, 0.0304386914, 0.0113095967, -0.0138135143, 0.00856787618, 0.0146598108, -0.011554393, -0.000442600751, 0.0198355075, -0.00760967284, 0.00511624618, 0.000563906156, 0.0100506432, -0.0112816198, 0.0264380183, -0.0241998788, 0.00429792656, 0.0138205085, -0.00313339476, -0.0163524039, 0.0181708913, -0.0159047768, -0.00504980143, -0.0124006895, 0.00949110836, 0.0228290185, 7.39307143e-05, 0.0200033672, -0.00259833969, -0.00926030055, -0.0186325088, 0.00178351707, -0.00113043515, 0.00807828363, 0.00632274291, -0.00666196086, 0.00897353888, -0.0101555558, 0.00167598145, 0.0246055424, 0.00067799876, -0.00630176, 0.0173036121, 0.0129602244, 0.00412307167, -0.00902949274, 0.00423148181, 0.0285502616, 0.00318934815, 0.00513023464, -0.0219897162, 0.00412307167, -0.0117222536, -0.0279487614, 0.00918336492, -0.00518968515, 0.00968694594, -0.0146458223, -0.00943515543, -0.00744181266, -0.0143240904, -0.0247454252, 0.00684730662, 0.0266758204, -1.44664873e-05, -0.00395521149, -0.00194788037, 0.0112116784, 0.0239760652, -0.0201152749, 0.00791741721, 0.0163104385, -0.002192677, -0.026368076, -0.00461616181, 0.022605205, -0.0337959, -0.0141072702, -0.0183387529, 0.0197655652, -0.00693473406, -0.0127434041, 0.00143205933, 0.000634722237, 0.0223674029, -0.0125965262, -0.041209735, 0.0116173411, 0.0109458994, -0.000508826924, 0.0104912771, -0.018814357, 0.00293056341, -0.011939073, -0.00949810259, -0.0136456545, 0.0208986234, 0.00228360132, -0.024591554, -0.00123447354, -0.000261844776, -0.00240774802, 0.000224469608, -0.0132679678, 0.000877333048, -0.00326278713, -0.00609193463, -0.0117502306, 0.00971492287, -0.0172336716, 0.0114774574, 0.0133868698, -0.0192759726, 0.00592407444, 0.00318585103, -0.0150934504, -0.0186604839, -0.0131071024, 0.00593106868, 0.0197236016, 0.0173176, 0.0121978577, 0.00949110836, -0.0103583876, -0.0128063522, -0.0119250845, -0.00933723617, 0.000278018852, -0.0193459149, -0.00560583919, -0.0052351472, 0.000462053315, -0.00267177843, 0.0141352471, -0.0116942767, 0.00210874667, 0.00360200508, -0.0228290185, -0.00188318419, 0.00387477828, -0.0288440175, -0.0239620768, -0.00188493275, -0.00219442532, 0.00166898733, 0.00535754533, -0.00724597508, -0.00853989925, -0.0202691481, 0.0174714737, -0.0178211834, 0.00392723456, 0.00144867052, 0.00627378374, -0.0033642028, 0.0120160095, -0.0133379102, -0.000972191687, 0.00542049296, 0.00128955278, -0.0120369922, -0.00458468823, 0.00637170207, -0.0107150907, 0.0202551596, -0.0101415673, -0.00808527786, 0.0111976899, 0.0100086778, -0.00254763174, -0.00691025425, 0.0238221921, 0.0284663308, 0.00608843798, 0.00134638057, -0.010575207, 0.00249517546, 0.0141562298, -0.0194718093, 0.0156949498, 0.00955405645, -0.00283089629, 0.0151773803, 0.00295679155, -0.00884764362, -0.00635072, 0.0093652131, -0.0131071024, -0.0105122598, 0.00466162385, -0.0255707391, 0.0169818811, -0.0172476601, 0.000461179065, 0.0142681366, -0.0155690555, 0.00781250466, 0.0205629021, 0.0147157647, 0.00526312413, -0.000866404618, -0.0261302739, 0.00305471, 0.0122608058, -0.00503931, -0.0217519142, 0.00580867054, -0.0108829513, 0.00232556649, -0.00385379582, -0.0305226222, -0.0168699734, -0.0266758204, -0.00758869, 0.00240075379, 0.0155270901, 0.00117502303, -0.0112606371, 0.000938969315, 0.000542486436, -0.00909244, 0.0176952872, 0.00395521149, 0.00450775214, 0.0317536, 0.0103863645, -0.0146318339, -0.0389995724, 0.00381882489, -0.0258085411, -0.0104563059, 0.0226611588, 0.0281026345, -0.00863082428, 0.0105052656, -0.00530159194, -0.0180310085, -0.00919735245, -0.0240739845, -0.0367614329, -0.00424896739, -0.0369292945, -0.0327327847, 0.00903648697, -0.0128762936, 0.00580167631, -0.00152997789, 0.0116593055, -0.00701167, 0.00277669122, 0.00582615566, -0.00844198093, 0.0101415673, -0.00347436126, 0.00267352699, -0.0157648921, -0.0180589855, -0.00523165, 0.0149535667, -0.00785446912, 0.00534705399, 0.01303716, -0.0121558933, 0.00727395201, -7.26739527e-05, -0.0141842067, 0.000219879686, 0.000591882854, 0.0106591377, -0.000901375548, -0.0132609745, -0.0068647922, -0.0151633928, 0.00718302745, 0.00651158579, -0.0247873906, -0.00340092229, -0.0203251, -0.0139743807, 0.0123936953, 0.0240460075, -0.0255707391, 0.00725996355, 0.00141544815, 0.0176812988, 0.00545896124, -0.00699418457, -0.0130511485, -0.00864481181, -0.0126175089, 0.0317815766, -0.000818756758, -0.0167440772, 0.00557786226, 0.00826712605, -0.00816920772, -0.00900151581, 0.0138624739, 0.0333482735, 0.00581916142, -0.00719701592, 0.00248293555, 0.0162265077, 0.00478402246, -0.00570725463, 0.0675918, -0.000737449329, -0.0016418848, -0.00679485034, -0.00791042298, -0.0371810868, 0.00464413874, 0.0407900847, 0.00901550427, 0.0201572403, -0.00494838553, -0.00600800477, -0.0142541481, 0.0080992654, -0.0206468329, -0.0141702183, -0.0135757122, -0.00891758502, 0.0243537519, -0.0121209221, -0.00770759163, -0.00250566658, 0.000889135699, 0.0104353232, -0.00703615, -0.0144919502, 4.01892394e-05, -0.00984081812, 0.0113725439, 0.00464413874, 0.0113095967, 0.00515471399, -0.00276794867, -0.00347086415, -0.0148556484, -0.00952607952, 0.012799358, 0.000957329, 0.0219897162, 0.0227311, 0.0255147852, -0.00802233, 0.00403914182, 0.00758169638, 0.00357927405, 0.0243537519, 0.0163803808, -0.0152193457, 0.00322956475, -0.0143520674, 0.00782649219, -0.0150374966, -0.00708161201, -0.0128623052, 0.00886163209, 0.00908544566, 0.00781949889, 0.0113655496, -0.00307394424, 0.0353905745, 0.0119320787, 0.0194857977, -0.00235004607, -0.00559185073, -0.0020755243, -0.00145304191, -0.000706849794, -0.00844198093, -0.0094281612, 0.00353381177, -0.0162265077, -0.00200558244, 0.00623531546, -0.0293196216, 0.0161985308, 0.0117152594, -0.0347191319, 0.0161425788, 0.00241823937, -0.0200733095, -0.00937920157, 0.0100016836, -0.00520717027, -0.0172896236, 0.00820417888, -0.0203670654, -0.0211644024, -0.020534927, -0.0159607287, -0.00158768, 0.004014662, 0.00961700361, -0.0224653203, 0.0118621374, -0.00826013181, -0.00582265854, 0.00412656879, 0.0038782754, 0.0185066126, 0.0174434967, 0.00387128117, 0.000197039291, -0.00545896124, -0.0135337478, -0.00767262047, 0.0247174483, -0.0108339917, 0.00626329239, 0.0237662401, 0.00155183475, 0.0162824616, 0.00983382389, 0.0113165909, 0.0164782982, 0.00362648466, 0.0230528321, -0.00544147566, -0.00311241229, 0.0124706309, -0.00759568438, 0.010134574, 0.0113865323, 0.0137295844, -0.0143170962, -0.00411258079, -0.0117222536, 0.0132190092, 0.00445879251, 0.0120160095, -0.00795238838, 0.0100576375, -0.00182723079, 0.0417692699, 0.00466162385, -0.00301274494, 0.0053715338, 4.99155285e-05, 0.000453747722, -0.00937220734, 0.0103024337, 0.00176166021, 0.0121978577, 0.0161006134, 0.016058648, -0.0148976138, -0.00969394, -0.00269625825, -0.0169958696, 0.00712707406, 0.0032960095, 0.00225212751, 0.00148451573, -0.00596254226, 0.00139621412, 0.0152753, 0.00329950661, -0.00762366131, -0.00519667938, -0.00366145559, -0.0112326602, 0.00755371945, -0.00263331062, 0.0139044393, -0.0133169275, -0.00164538191, -0.0139184278, 0.0117572248, -0.0206887983, -0.011022835, 0.0199054498, 0.016058648, 0.00724597508, 0.00277319411, -0.0142051894, -0.0104982713, -0.000436917966, 0.0129672186, -0.00171532377, 0.00304771587, -0.0201012865, -0.0037418888, -0.00114704634, -0.013953398, 0.0503861047, -0.0121558933, -0.00470009213, -0.000519755355, -0.0160726365, 0.0287880637, 0.0176393334, 0.0131560611, 0.00252839783, -0.0151074389, -0.0070781149, 0.0120509798, -0.0146737993, 0.0182548221, -0.00812024809, -0.0322292037, -0.0182688106, 0.0145618925, 0.00272248639, 0.00190241821, 0.00788244605, 0.0112536428, 0.00279067969, 0.0106101781, 0.00846296363, 0.00319109671, -0.0223114491, 0.0203810539]
23 Jun, 2020
Difference between MariaDB and PostgreSQL 23 Jun, 2020 1. MariaDB : MariaDB is an open source relational database management system (RDBMS) that is a compatible drop-in replacement for the widely used MySQL database technology. It is developed by MariaDB Foundation and initially released on 29 October 2009. MariaDB has a significantly high number of new features, which makes it better in terms of performance and user-orientation than MySQL. 2. PostgreSQL : PostgreSQL is a powerful, open-source Object-relational database system. It provides good performance with low maintenance efforts because of its high stability. PostgreSQL was the first DBMS that implemented multi-version concurrency control (MVCC) feature. Difference between MariaDB and PostgreSQL : S.NO. MARIADB POSTGRESQL 1. Developed by MariaDB Corporation Ab and MariaDB Foundation on 2009. Developed By  PostgreSQL Global Development Group on 1989. 2. It is a MySQL application compatible open source RDBMS, enhanced with high availability, security, interoperability and performance capabilities. It is widely used open source RDBMS. 3. MariaDB is written in C and C++ languages. PostgreSQL is written in C languages. 4. The primary database model for MariaDB is Relational DBMS. Also the primary database model for PostgreSQL is Relational DBMS. 5. It has two Secondary database models – Document store and Graph DBMS. It has Document store as Secondary database models. 6. Server operating systems for MariaDB are FreeBSD, Linux, Solaris and Windows. Server operating systems for PostgreSQL are FreeBSD, HP-UX, Linux, NetBSD, OpenBSD, OS X, Solaris, Unix and Windows. 7. It supports Server-side scripting. It has user defined functions for Server-side scripts 8. Supported Partitioning method are – Horizontal partitioning, sharding with Spider storage engine and Galera cluster. In PostgreSQL, partitioning can be done by range, list and hash. 9. It support two replication methods – Master-master replication and Master-slave replication. It support only one replication methods – Master-master replication 10. It supports in-memory capabilities. It does not supports in-memory capabilities. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL
https://www.geeksforgeeks.org/difference-between-mariadb-and-postgresql?ref=asr10
Languages
Difference between MariaDB and PostgreSQL
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0263817422, 0.00905378629, -0.0211463664, 0.0373760313, -0.00654991064, -0.00787582621, -0.00442161644, -0.0131339645, -0.042247206, 0.0310935806, 0.0495767333, -0.0227966476, 0.0135550713, -0.0214650407, -0.0290449541, -0.00289226067, 0.0121779395, -0.0171515457, -0.0465948433, -0.0207024962, 0.0265410785, 0.000994436909, 0.011950314, -0.000590758107, 0.00878632627, 0.00293351756, 0.0148411524, -0.00352818798, -0.0336657427, 0.00161898311, 0.0207024962, -0.00102573528, 0.00100724073, -0.00721002324, -0.0221820604, -0.0197123289, -0.0322317034, -0.0332104936, 0.0179937594, 0.00250387541, 0.0103455577, 0.0450925194, 0.00697670737, 0.0021766643, -0.0211691279, 0.0305245183, -0.0265638418, -0.0231380854, -0.048256509, -0.0116259484, -0.00186225737, -0.0115235178, -0.00633366685, 0.0044415337, 0.00829693303, 0.00633935723, -0.000703503611, 0.0195757523, -0.01027158, -0.0271329042, -0.0264045037, 0.00711897295, -0.0170491152, -0.0417236686, -0.0242193043, 0.028589705, -0.0265638418, 0.0169011597, -0.0113641797, -0.0343941413, -0.0214764215, 0.0123714209, 0.0339388922, -0.0146931959, -0.011825121, -0.0206000656, 0.0146590527, 0.00237156847, 0.0157630332, 0.0203269161, -0.00972528, 0.0233315658, -0.0313439667, -0.00635073846, 0.0126900962, -0.0383320563, 0.0017313729, -0.0434991457, 0.0432032309, 0.00667510414, 0.0188587345, -0.0137257893, 0.0235819537, 0.0389011204, -0.000830120058, -0.00857577287, -0.00472606486, -0.000790997, 0.0164686721, 0.0205431599, -0.015353309, -0.00441023521, 0.0583175346, 0.0167076774, 0.0235819537, -0.0196098965, 0.00837660115, 0.0503051318, 0.0164231472, 0.0263589788, -0.00386393489, 0.0272011925, -0.0420195833, 0.0550397336, -0.0327552445, -0.0118706459, 0.0385824442, -0.0171629284, -0.00839936361, -0.0541747585, -0.0542202853, 0.0213170853, -0.0360330418, -0.0144200465, -0.0424293056, 0.00945213, 0.00507888384, -0.0127470018, 0.00371028809, 0.0136005962, 0.00986185484, 0.00579021173, -0.0143403774, -0.0265866034, 0.0472549573, 0.0125193773, 0.00888306741, 0.0717018843, 0.000426441286, -0.018380722, 0.00106983772, -0.03535017, 0.0102658896, -0.0566331074, -0.0208504535, -0.00506750261, 0.00278982939, 0.0276792049, 0.00932124536, 0.00227198238, -0.0108463326, -0.0714742616, 0.0523082353, -0.00429073209, -0.00781892, -0.00582151, 0.000140754069, -0.00858146418, -0.0237412918, -0.0204407275, -0.0278157797, -0.0123600392, 0.0491214842, -0.0102772703, 0.00886599533, 0.0537195094, -0.00267601688, -0.0233998541, -0.0164800528, 0.0259492546, -0.066102311, 0.023946153, -0.0120527456, -0.0015094385, -0.0131794894, 0.00995290466, 0.0127583835, 0.00309000979, -0.0189953092, -0.0189384036, -0.0165824834, -0.0360785685, -0.0335974544, -0.0494856834, 0.0256078169, 0.0414505191, 0.042952843, 0.0216357596, 0.00643040752, 0.0131681086, -0.00644178875, 0.00682306057, 0.0533553101, -0.00694825407, 0.0117454519, 0.040039245, -0.00653852941, 0.015148446, 0.0279295929, -0.0226486903, -0.004916701, -0.0595922358, -0.00639626337, 0.0560868084, 0.0493946336, 0.0158654656, 0.0319357924, 0.0173336472, 0.0483930819, -0.0132819209, -0.0215219464, 0.0434536189, 0.0114893736, 0.00812052283, 0.0266093668, -0.00253375131, -0.00487971166, -0.0529911071, 0.0100724082, 0.0160475653, 0.0170832593, -0.0217723344, -0.00798963849, 0.00760836666, -0.0382865295, -0.0107951174, -0.0150573961, -0.0352363549, 0.000946066575, 0.0337112695, 0.0718839839, 0.0281116925, 0.0102146734, 0.0150346337, -0.022694217, 0.0200310033, 0.0406310707, -0.00810914207, -0.0684240833, 0.0145338587, 0.0101976013, 0.017470222, 0.0121893203, -0.00905947667, 0.00675477274, -0.008922901, 0.00782461092, 0.0220113415, -0.0105845639, 0.00223783869, -0.0233543292, -0.0479378328, -0.0259720162, 0.0165028144, -0.0434308574, -0.0379450954, 0.023445379, 0.0291132424, 0.0128266709, -0.0204748716, 0.000226202377, -0.0208959784, -0.0260175411, 0.0302058421, 0.0245607421, 0.0712921619, 0.00105987908, -0.00248964876, -0.0325503796, 0.0542202853, 0.0128835775, -0.0465265587, 0.00789858866, -0.021123603, -0.0186993964, -0.00027599535, -0.0238095783, 0.0269280411, 0.0394246578, 0.00685720425, -0.00400051, -0.0149208214, 0.0163776223, 0.00127256627, -0.0130656771, -0.0257443916, 0.00738074165, 0.00697101653, -0.00515286159, -0.0251753293, -0.0243103541, -0.0233770907, 0.0262906924, 0.0291132424, -0.0112674395, -0.00981064, 0.0143403774, 0.0192456972, 0.00855301, 0.0493491068, -0.00424236152, -0.0181872398, 0.00990738, -0.0223755408, -0.045934733, -0.0483930819, -0.0142607084, 0.0349404439, 0.00880339835, -0.041951295, -0.00279552, -0.0335064046, -0.0128721958, -0.00596946664, -0.00251525664, 0.0432715192, -0.0310935806, -0.0540381819, 0.0227283593, -0.0200992916, 0.015023252, 0.0242420658, -0.0589093603, 0.0175840333, 0.0251753293, -0.0616863854, -0.018380722, -0.00985616446, -0.0109658362, 0.00195473, -0.0280661676, -0.0497133099, 0.00492808223, 0.0142265651, 0.0171515457, -0.0293181054, 0.0161499958, 0.000370246358, 0.00360501162, 0.0172312148, -0.0279978793, 0.03045623, -0.024401404, 0.000892716926, 0.0186083466, 0.0400620066, -0.0278157797, 0.0220454857, 0.0177319907, -0.0211691279, 0.000641973747, 0.0228876974, 0.0172539782, 0.00279267458, -0.000224068397, -0.00397205679, -0.00353103341, -0.0439999178, -0.0153760714, 0.0493035838, 0.0242875908, -0.0128835775, 0.00174417684, 0.0193139836, 0.0301375557, -0.00965699181, 0.00972528, -0.00199456443, 0.0134526398, -0.00116231036, 0.00966268312, -0.0130998213, 0.0550397336, -0.0261085909, -0.0498498827, 0.0181303341, -0.0149549646, 0.0288173296, 0.0219430532, 0.0166735332, -0.00541463075, 0.0185628217, -0.0495767333, 0.0282482672, 0.0132591585, -0.0474370569, 0.0773925111, -0.0202244837, -0.00445860531, -0.000468765298, -0.00356517709, 0.0116771646, 0.00863267947, -0.0122234644, -0.0335291661, -0.0236047171, 0.0126787145, -0.0193139836, -0.00610604184, -0.00125407171, 0.0389466435, 0.0113755614, -0.0537195094, 0.0403123945, -0.0308659542, 0.0120299831, 0.0209415033, -0.0293181054, 0.00374443177, 0.0475736335, -0.0392197929, -0.0218747668, -0.0301375557, 0.0189042594, -0.0139875589, 0.0733407885, -0.00479719788, 0.0308887176, -0.0261768792, 0.00566217257, -0.00357940374, 0.0177206099, -0.00590117928, -0.00748317316, 0.0231267046, 0.0417919569, 0.00153789169, 0.0112617491, 0.0149549646, 0.0366476327, 0.012576283, -0.0284531303, 0.00371028809, -0.012325896, -0.0170832593, -0.0457753949, 0.0113584893, 0.0131794894, 0.00734090758, 0.00385539909, -0.0134184957, 0.0391742699, 0.025107041, -0.0141013712, -0.0442275442, 0.0168783963, -0.0305245183, 0.0105618015, -0.0151143027, -0.0150687778, -0.00801240094, 0.0214878041, -0.00830831379, 0.0022364161, 0.015478503, 0.0105048958, 0.0471639074, 0.0278840661, 0.0228763167, 0.0213398468, -0.00142052246, 0.010226055, 0.00307862856, -0.0269963294, 0.0340071805, 0.0192798413, 0.000150801585, 0.0145907644, 0.00251098862, 0.00776201393, 0.0532642603, 0.00324650202, 0.0088261608, 0.00715311663, -0.0107211396, 0.0308431927, 0.0172084533, 0.00640195422, 0.00509595545, 0.0425658822, 0.0179482345, 0.0338250808, -0.0209528841, 0.00623692619, -0.014317615, 0.0195188466, 0.0106073264, 0.00354241463, -0.0417691953, -0.0216926653, -0.0070165419, -0.00945213, -0.00524391187, -0.0464810319, 0.0240827296, -0.021954434, -0.00755715137, 0.014192421, 0.000364911393, 0.0192343164, -0.00837091077, -0.0275653917, -0.0400620066, 0.0372849815, -0.0126787145, 0.0447510816, -0.00695394492, 0.0181986224, -0.00433056615, -0.00307009276, 0.00669217622, 0.00287234341, 0.00223072525, 0.0442275442, 0.0175271276, 0.0162069034, 0.021533329, 0.0203269161, -0.0153988339, 0.00896273553, 0.0192456972, 0.0190635975, -0.0156378392, 0.0100724082, 0.0273377672, -0.0247200783, 0.000188146325, -0.0175043661, 0.0219885781, -0.0424065441, 0.000361176906, 0.00903671421, 0.00630521355, -0.00254797773, -0.0129291024, 0.0120868897, 0.0336657427, 0.0168556347, 0.0236274786, 0.0193026029, -0.0219202917, 0.0104764421, 0.00391230546, -0.013737171, -0.00619709166, 0.00794980396, -0.0055455151, 0.00600361032, 0.0198261403, 0.00355095067, 0.00465493184, 0.0144428089, 0.0418147184, -0.00233600195, 0.00728969183, 0.0185742024, -0.00950334501, 0.00579305738, -0.0039407583, -0.0338706039, 0.0242875908, 0.0488028079, 0.0286124665, 0.00572192436, 0.00238437229, -0.0167987272, 0.0103455577, -0.00506750261, 0.00689134793, -0.0212943219, -0.00991876144, 0.0298871677, -0.00975373294, -0.0273832921, -0.000569418247, 0.0294546802, -0.026472792, -0.00450697588, 0.000951757189, 0.0172539782, 0.0205659214, 0.0128835775, -0.0121779395, -0.00340014906, 0.0389921702, -0.0227738842, -0.0105048958, 0.00931555498, -0.0115235178, -0.00458948966, 0.0306610931, 0.025311904, 0.0141127519, 0.00913345441, -0.00396067556, -0.00937815197, -0.0147956274, 0.0145907644, 0.00134085375, 0.0258354414, -0.0239689164, 0.0195074659, 0.0071417354, 0.020998409, 0.0068344418, -0.0114381583, 0.0131225837, -0.00386962574, 0.00432203058, 0.00930986367, -0.00205004797, -0.00123486586, 0.0128835775, 0.00290648709, -0.0126445713, -0.00773356063, 0.0358964689, 0.0120527456, -0.0256988667, 0.00668648537, 0.0176181775, 0.0151825901, -0.0214422792, 0.0372166932, -0.0123941833, 0.0264500286, -0.012576283, -0.00399197405, -0.0100951707, -0.00503620412, -0.0259264912, 0.013611977, -0.0023217753, -0.0254712421, 0.0100553362, 0.0140217021, -0.017470222, -0.0169125404, -0.0175271276, 0.00557681359, -0.000206463024, -0.0124738524, 0.0328007676, 0.046936281, -0.00722140446, 0.018175859, 0.00916190818, 0.00280405581, 0.0276109166, 0.0191660281, -0.0385596827, -0.00336316, 0.00181104173, 0.00403465377, -0.0325048566, -0.0259037297, 0.00523822103, -0.0236274786, -0.0178913288, 0.0350770168, 0.0115861148, -0.00754577, 0.00895135477, -0.00195473, 0.00119218614, -0.00202017231, 0.00236018701, 0.00502197724, -7.98021356e-05, 0.0413822308, -0.0315943547, -0.0461168326, -0.0171287842, -0.000112123111, 0.0254484788, -0.0103227952, -0.0208618343, 6.08630216e-05, -0.00813759491, 4.53249449e-05, -0.0118137393, 0.00761974789, 0.021658523, -0.0070165419, -0.0233770907, -0.00829124171, -0.00178685656, -0.035941992, -0.00534349773, -0.0384458676, -0.00595808541, -0.0233088043, 0.00353103341, 0.0512156337, 0.0120299831, -0.0254257172, -0.0142379459, 0.00305586611, 0.0017626714, -0.0371256433, 0.0236047171, -0.0212943219, -0.0153646898, -0.014397284, -0.0140103213, 0.00772217941, -0.00300465059, -0.012075508, -0.0214764215, 0.0303424168, 0.00352249737, -0.0160020404, -0.00347981765, -0.0140558463, -0.00213540741, -0.0162865706, 0.00129675143, -0.00035922075, -0.0167190582, 0.0109430738, 0.020622829, -0.00260630669, -0.000808780198, 0.0256305784, 0.0131681086, 0.000664024905, -0.00840505492, 0.0299554542, 0.00222503464, 0.000680741097, -0.0148866773, -0.0135664521, -0.0246745534, -0.00388385216, -0.0192798413, 2.36516644e-05, 0.0228421725, -0.000333435106, -0.00453258352, 0.00464355061, 0.00549714454, 0.0299782176, -0.0157175083, 0.0121665578, 0.0319813192, 0.0127356211, 0.0493035838, -0.0144314272, 0.0166962966, 0.0236274786, 0.038263768, -0.00784168206, 0.00689134793, -0.0354639813, -0.0232746601, -0.0040175817, -0.0172312148, -0.00663526962, 0.0533097833, -0.01381684, 0.00819450151, 0.0147045776, 0.00606620731, 0.0270646177, 0.000791708357, -0.00680029811, -0.0235591922, -0.0376719423, -0.00429926766, -0.000535985804, 0.0109942891, 0.0181417149, 0.0447055586, -0.0124966148, 0.0375581309, 0.00339730363, -0.00822864473, -0.0354867429, -0.0358054191, 0.0277702548, 0.00978218578, 0.0202472471, -0.00133018382, 0.000561949331, -0.00483134156, -0.0373305045, 0.0265638418, 0.0295912549, 0.0295912549, -0.0260403045, 0.03535017, 0.020873215, 0.0109829083, 0.00933262613, 0.00652714772, -0.00394360395, -0.00836522, -0.0316398814, -0.0384458676, -0.0205090158, 0.0160134211, -0.00451551145, 0.0110284332, -0.0217040479, 0.0185628217, -0.0151598277, -0.0100155016, -0.00450982107, -0.0453201458, 0.0230811778, -0.00785306375, 0.0110284332, 0.00650438527, 0.051579833, -0.00721002324, 0.018505916, 0.00100652943, 0.00684013218, 0.0173222646, -0.00934400782, -0.00147814013, -0.0243331157, 0.0152850216, 0.0277474914, 0.00355664128, 0.00418830058, 0.00427366, 0.0125193773, 0.0758446604, -0.00218662294, -0.00459233532, -0.014772865, -0.0217495728, -0.0117682144, -0.0422699675, -0.0058841072, 0.015353309, 0.023445379, 0.021533329, -0.00747748232, 0.0054686917, -0.0166052468, -0.0157744158, -0.0249704663, -0.00408302387, -0.0145110963, 0.0165255778, -0.00499067875, -0.0099870488, -0.017970996, 0.036306195, -0.0224324465, -0.0371256433, 0.0331649669, -0.0046748491, -0.0103171049, -0.000191702959, -0.0191660281, 0.0221934412, 0.00183095888, 0.0236274786, 0.00429926766, -0.011699927, 0.00549998973, 0.0113983238, 0.0244241673, 0.00038269459, -0.00688565755, 0.0053036632, -0.0378085189, -0.0100325737, -0.0109715266, 0.029750593, -0.00569347106, 0.0180392843, 0.0307521429, 0.00443015248, -0.0045980257, 0.0220341031, -0.0420878679, 0.0393108428, 0.0285669416, 0.0178002771, -0.0127697643, 0.0159109905, 0.0255850535, -0.0370801203, -0.066056788, -0.0123714209, 0.00517277885, -0.00130173063, 0.00573899643, 0.0154898837, -0.0374215543, -0.00567355426, -0.019211553, 0.00255793636, 0.0193253662, -0.00907654874, -0.0289539043, 0.000800244277, 0.015148446, -0.00559673039, 0.0176409408, 0.0101520764, -0.021248797, 0.0409725085, -0.00898549799, 0.00727261975, -0.0139761772, -0.00790997, 0.0301830806, 0.00750024477, 0.0130429147, 0.0148866773, 0.0316171162, 0.0016929612, -0.0188587345, 0.00261342, 0.0128494333, 0.00103782793, 0.0338933691, -0.011369871, -0.0145566212, 0.0120072206, 0.00817173906, -0.0245379787, -0.0135550713, 0.0222617295, 0.0231494661, 0.00968544558, 0.00246546371, -0.00328633655, 0.0138396025, 0.00354241463, -0.0223413967, -0.0180279035, 0.0495767333, -0.0148639148, -0.0123486584, -0.0325959064, -0.000244163413, 0.0225690231, -0.0237412918, 0.00597515702, 0.0226259287, -0.0132136336, 0.0115292082, 0.00186510268, 0.00662388839, -0.0119047891, -0.00756284175, 0.00881477911, -0.0167532023, 0.00523537584, -0.0240827296, -0.0150346337, -0.0105618015, -0.000288977084, 0.0196098965, 0.00155638624, 0.0454339571, 0.00743195741, 0.0131681086, -0.00708482927, 0.0371256433, -0.00464070542, -0.000651221, -0.0416326188, -0.00961715821, -0.00967406388, -0.00886599533, 0.0376491807, 0.0384913944, -0.00317821465, -0.0200537667, 0.0129746273, -0.00942367688, 0.0180620458, -0.00409156, 0.0444779322, 0.00812052283, -0.0196098965, 0.0442503057, 0.0130087705, -0.0332332551, 0.00199029641, -0.042361021, -0.0124397082, 0.0134526398, -0.0183579586, 0.0373760313, 0.0222958717, -0.00331194419, 0.00603206363, 0.00846765097, -0.0297278296, -0.0057020071, -0.0498043597, -0.0158768464, -0.00118934084, -0.0445234589, 0.00226771436, -0.00794980396, -0.00349119911, 0.00847903267, 0.0292498171, -0.0135550713, -0.0343030915, 0.00860991701, -0.00825140718, -0.0233543292, -0.00859853532, -0.0432942808, 0.0197237097, -0.00111891935, -0.0215674713, -0.00677753566, 0.0173336472, -0.00829693303, -0.0122234644, -0.0108918576, 0.00381271937, -0.0270873792, 0.00832538586, 0.0252663791, 0.0239689164, -0.0170832593, -0.00393506791, 0.013611977, 0.00158626202, -0.0161499958, 0.018881496, 0.00801809225, -0.0161044709, 0.00958870444, -0.0447283201, -0.0412001312, 0.00378142088, -0.0166507717, -0.00865544192, -0.0162069034, -0.00621985411, 0.0133046834, 0.00345136458, -0.0425886437, 0.0069596353, -0.00302172243, 0.0074148858, -0.024151016, -0.0036789896, -0.00685720425, -0.00810345169, -0.0174133144, -0.00476589939, 0.000337703095, -0.0236957669, -0.00560526643, -0.0233315658, 0.0529000573, -0.0117795961, -0.0260175411, 0.0289539043, 0.0082457168, -0.00973666087, 0.0227055978, 0.00220369478, 0.0158882271, -0.00222645747, -0.0165711027, 0.00688565755, -0.00575891323, -0.0152964024, -0.0153077841, -0.0175954159, -0.0124510899, -0.0215105657, 0.00849610474, -0.0203952026, -0.000216777276, -0.0176067967, 0.0192798413, 0.0216129981, 0.013737171, -0.00352818798, 0.000510022335, 0.00583858229, -0.00419683661, -0.030501755, -0.0307521429, -0.0118820267, -0.009252958, 0.00539755868, 0.00936108, 0.00670924783, -0.0074148858, -0.0031952865, 0.0400164798, -0.0182213839, -0.0126787145, -0.0151598277, -0.00284815836, -0.00343144732, 0.0239916798, 0.0144655714, 0.00981064, -0.00911069196, 0.00823433604, 0.000595381716, 0.0168328714, 0.0440909714, -0.0303879417, 0.000926149369, -0.00240286672, 0.0122689893, 0.0247428417, -0.0169694461, -0.00808068924, 0.0160475653, 0.0134526398, 0.00297904271, -0.000844346592, 0.0129632456, 0.0273150038, -0.00310992706, 0.0139989397, -0.01427209, 0.00107481692, 0.00319813169, -0.0211805105, -0.00156207685, -0.00963992067, 0.0168442521, -0.0010307146, -0.0247200783, -0.00913914479, 0.00185372145, -0.02672318, -0.00553413387, -0.00958870444, 0.00718157, -0.0189611651, 0.00377003965, 0.00953748915, -0.00859284494, 0.0253801923, -0.0105276583, 0.0189042594, -0.0288173296, 0.0423837826, 0.0173108838, 0.00289652869, 0.00685720425, 0.0335974544, 0.0228876974, 0.0122120837, 0.0199058093, 0.000277418, 0.00971389841, 0.00893997308, -0.0248338915, 0.00294489902, 0.00623123534, -0.00569347106, -0.0220568664, 0.012781146, 0.00122917525, -0.019336747, 0.0238323417, 0.00439316314, 0.00632797601, 0.0160930902, 0.00292498176, -0.0176637024, 0.0179140903, 0.00566501822, 0.00637350092, -0.00658974471, -0.00185229874, 0.00519269612, 0.0136347394, 0.0184490085, -0.0180961899, 0.0113869421, -0.0221023913, 0.0100894794, 0.0315033048, -0.0233543292, 0.00193481287, -0.00515855243, -0.0130429147, -0.0059922291, -0.00243558781, 0.0156492218, 0.0153988339, 0.00864975154, 0.00667510414, 0.00941798557, 0.0219999589, -0.00602637278, -0.00956594199, -0.00242136139, -0.040585544, 0.00765389204, -0.0013259158, -0.0114381583, 0.00458664447, 0.00282255048, -0.0253574289, 0.0190635975, 0.0169011597, 0.0164345279, -0.00719864201, 0.0158654656, -0.00615156675, 0.033028394, -0.011039814, -0.0410635583, 0.0163548589, 0.0124510899, -0.0130087705, 0.0107552828, -0.0149322022, 0.0107325204, -0.00612311345, -0.0069880886, 0.0247883666, 0.00276422151, -0.0150573961, -0.00149378926, 0.00768803572, 0.020873215, -0.0090310229, -0.0196781848, 0.0125876646, 0.00304733, 0.0322999917, 0.00299326912, 0.0147614833, -0.00700516067, 0.017470222, 0.00818881113, 0.00821157359, -0.0170832593, 0.0118934084, 0.00812621415, -0.0197692346, 0.00697101653, -0.0150346337, 0.00496791629, -0.00804654509, 0.0426341705, -0.0385141559, 0.00721002324, 0.012860815, 0.0138965081, 0.0208504535, 0.0217609536, -0.015148446, 0.00622554496, -0.0252663791, -0.0152508775, 0.00365338195, -0.000423951627, 0.00332617084, -0.040335156, 0.0236274786, 0.014898059, 0.0149435839, 0.0265410785, 0.00831969548, -0.0174588412, 0.0143403774, -0.0109885987, 0.00813759491, 0.0170263536, 0.0020628518, -0.00721002324, -0.00934400782, 0.00217950973, 0.020497635, -0.0305245183, 0.0230242722, 0.0166280083, 0.00372736, 0.0109430738, 0.000822295435, 0.00858715456, -0.00164601358, 0.00478581619, -0.0231722295, -0.00157488068, -0.00370175205, 0.0176978465, -0.00839936361, -0.00420537265, 0.0198375229, -0.00763682, -0.00435617426, 0.0153760714, 0.00138993538, -0.0148183899, -0.0190863591, -0.0289994292, -0.000206107361, -0.00264471839, 0.0044415337, 0.00489393808, 0.0218861476, -0.0108804768, -0.00593532296, 0.00897980761, -0.0259264912, 0.00859853532, -0.000370957685, 0.00439316314, -0.000297157385, -0.0151029211, -0.0163434781, -0.000710972585, 0.012576283, -0.0132250143, -0.0113983238, 0.0108577143, 0.0244696923, 0.00566217257, -0.00315260678, 0.00745472, 0.025311904, 0.00694256369, 0.0251298044, -0.016639391, 0.00165170419, 0.0096114669, -0.0269052796, -0.00289937388, 0.0181644782, 0.00748317316, 0.00981633, -0.0123600392, -0.0107552828, 0.00669217622, -3.36547164e-05, 0.00284389034, -0.0283393171, 0.0112674395, 0.0221934412, -0.0256533418, -0.00433341181, 0.0280661676, -0.016889777, 0.0165711027, -0.000181210868, -0.00620847289, 0.0245835036, -0.00866113231, -0.0314805433, 0.0164003838, 0.0285669416, 0.0176523216, 0.0078872079, 0.0179140903, 0.0240599662, -0.0347128175, -0.00347128185, -0.0203838218, 0.0320496038, -0.0229559857, 0.0258126799, -0.00760267628, 0.00927003, -0.0108349519, -0.000325610512, 0.0149549646, 0.00697101653, -0.00600930117, 0.00130671, -0.012075508, 0.0243558791, -0.00289083808, -0.046890758, 0.0237412918, -0.0216471404, -0.000593959063, 0.0146362903, -5.58837237e-05, 0.00237725908, 0.0135095455, 0.00539471349, 0.0222503468, 0.03045623, 0.00806361716, -0.00587841636, 0.00723278569, 0.0108008077, -0.0143289957, 0.00331194419, 0.0118137393, -0.0187563039, 0.0256305784, 0.023445379, -0.0188245904, 0.0148070082, 0.0033403975, 0.00790427905, 0.00396636641, -0.00402042735, -0.00977080502, -0.0156719834, 0.0178685654, -0.00577314, -0.0230584163, -0.0237868167, 0.0172084533, -0.00281116925, 0.0122689893, -0.00559104, -0.0134071149, -0.0185969658, 0.00388669758, 0.0089911893, -0.0146362903, -0.00599792, -0.0184717719, 0.0355095044, -0.0218975283, 0.0178799462, -0.0144428089, -0.00817173906, -0.020167578, 0.0246745534, 0.0193595085, -0.0103114145, 0.0073067639, -0.0104479892, -0.0254940037, -0.0211008415, -3.46772504e-05, -0.00426512398, -0.0215105657, 0.0155581711, 0.0166166276, -0.0147842458, 0.0197009463, 0.0356005542, -0.0112332953, 0.00505896658, 0.0286124665, 0.0158085581, 0.00196468853, 0.0105162766, -0.0169694461, -0.00843919814, -0.0110227428, -0.022079628, -0.0107723549, 0.00597515702, 0.021658523, -0.00211833557, 0.0152736399, -0.00757991383, 0.00144115102, -0.00719864201, 0.00471752882, -0.00494799903, 0.0200537667, -0.00927003, 0.0378540419, -0.0184490085, 0.0269963294, 0.0163662396, -0.00873511098, -0.0117340703, 9.3184e-05, -0.00623692619, 0.0101919109, -0.00499921478, -0.0024597731, -0.0219430532, 0.02145366, -0.018050665, 0.004046035, 0.00882047, -0.0037074429, 0.0217837151, -0.0254484788, 3.41437553e-05, -0.0085643921, -0.0193822719, 0.0121779395, -0.0153760714, -0.0317992158, -0.00116231036, -0.0256078169, -0.0013984713, -0.0182327647, 0.00180535112, 0.00702792313, 0.0228307918, 0.0146704335, 0.00345421, 0.0327097178, 0.00487402128, 0.00076112122, -0.0232177544, 0.00115164043, -0.00111963064, -0.022409685, 0.0156947467, -0.00221507624, -0.0026518316, -0.0278840661, 0.0195871349, -0.0112503674, 0.00386962574, 0.00330625358, 0.0120868897, -0.00513009913, 0.0336429812, -0.00743764825, -0.030706618, -0.0061458759, -0.00252236985, 0.00948627386, 0.000624901848, 0.0159906596, -0.0301375557, 0.0138623649, -0.0223527793, 0.00130884396, -0.00171999168, -0.014397284, 0.00407733349, 0.0382182449, 0.0167759657, 0.00629952271, 0.0288628545, -0.00662957923, -0.0329601057, -0.0148411524, -0.0115519706, -0.0043647103, 0.00407164264, 0.00731814513, 0.0188359711, -0.000496507098, 0.00596377579, -0.0264045037, 0.0244924538, -0.021328466, 0.00309570041, -0.0262451675, -0.00321235834, 0.00885461364, -0.0379906185, 0.0168556347, 0.0133046834, -0.00432487577, -0.0113869421, 0.0036476911, -0.00420821784, -0.00353103341, -0.000645530352, 0.0129404832, 0.0144883338, 0.0103227952, 0.0242193043, 0.00129532872, -0.0200537667, -0.0174246971, 0.0123031335, 0.00874649175, -0.00442161644, 0.00310423644, 0.00673201028, 0.0181644782, -0.0185286775, 0.0108406423, -0.00636211969, -0.0148183899, 0.025311904, 0.0195529908, 0.0483930819, 0.000226024553, 0.00141625456, 0.0128152892, 0.0335291661, -0.0288400929, -0.0171174034, -0.0120413648, -0.0191660281, -0.00150801591, -0.025311904, -0.00775632309, -0.0143859023, -0.00543170236, 0.0186197273, -0.0114381583, -0.00282397307, 0.021203272, 0.0220682472, 0.0234909039, -0.00432203058, -0.0152850216, 0.0310935806, -0.00947489217, -0.0117682144, -0.00540894, 0.0139306523, -0.0119616957, -0.0023132395, 0.033984419, -0.00560242124, -0.00316114281, -0.00908223912, 0.00529228197, 0.0145793837, 0.0265866034, -0.0175271276, -0.0112958923, -0.0150346337, 0.0254940037, 0.0021282942, 0.0020913051, 0.0135095455, 0.00224068388, 0.00770510733, 0.00279552, 0.00678322604, -0.00598084787, 0.027428817, -0.0188018288, -0.0116031859, -0.00797256734, -0.00207850104, 0.00339161302, -0.014898059, 0.00190351438, 0.0143631399, -0.0130884396, 0.00309285522, -0.0138282208, 0.00360785681, 0.0100667169, -0.0142607084, 0.0142265651, 0.00747179193, -0.00569062587, 0.00136717292, -0.0258809663, 0.0204748716, -0.0146021461, 0.00380987395, 0.0194050353, -0.00297619728, -0.01381684, -0.00777339516, 0.00739212288, -0.00100937474, 0.00543454755, 0.000213398467, 0.0103626298, -0.00574753201, -0.0113527989, 0.0089342827, -0.0124055641, -0.00787013583, -0.00101150875, -0.00116231036, 0.0155809335, -0.0130998213, 0.0149322022, -0.00417407416, -0.0124738524, -0.000414348702, -0.0109146209, 0.0221251529, -0.0107666645, -0.00941798557, -0.00978218578, -0.00496222591, 0.0083538387, -0.000736936054, 0.0148297716, -0.0173222646, -0.0112332953, 0.0155240279, 0.0145224771, 0.018505916, 0.00915621687, 0.014397284, -0.00631090393, 0.00583289145, 0.0288400929, 0.0251753293, 0.0266776551, 0.00163605495, -0.00489962893, -0.0249704663, -0.00351965218, 0.00648731366, -0.0158654656, -0.00461225212, -0.0256305784, -0.00357371313, -0.0057304604, -0.00624261657, -0.00334608811, -0.0117795961, 0.000897696242, -0.0113471085, 0.00214109803, -0.0352363549, 0.0200310033, 0.00455819117, -0.0170491152, -0.025767155, 0.00262764655, 0.0213626102, 0.0160020404, 0.00437324587, -0.0139420331, 0.00678891689, 0.0361468568, 7.56230802e-05, -0.0244696923, -0.017549891, -0.00882047, -0.00600361032, -0.00969113596, 0.01336159, 0.00109686819, 0.0162410457, -0.031412255, -0.0164914336, 0.00536626, 0.00942367688, -0.0223186351, 0.0148639148, -0.0197237097, -0.009252958, 0.00153077836, -0.014898059, -0.00644747913, 0.00879201666, 0.00347981765, -0.011119483, 0.014772865, -0.00838229153, 0.0174929835, 0.0287035163, -0.000520336616, -0.0211577471, -0.00232035271, -0.00320097711, 0.0138054583, -0.0162865706, 0.00179112446, -0.00126758695, 0.0260175411, 0.0249477047, 0.00035068483, 0.00133871974, 0.00868389476, -0.00652145734, -0.0340527073, 0.00842212606, 0.00850179512, -0.0231608469, -0.00868958607, -0.0100610266, -0.0222503468, -0.0115007553, 0.00288799265, 0.0121437954, -0.0146021461, -0.0106414706, 0.0133957332, -0.00952041708, 0.00970820803, 0.0026432958, 0.0187221598, -0.00728969183, 0.00563941, 0.0102772703, 0.0123031335, 0.00197749259, -0.0141127519, -0.00114666112, 0.00805792585, 0.012200702, 0.000566928589, -0.0365338176, 0.00680029811, 0.0166280083, -0.014898059, -0.0249249414, 0.0380589068, -0.00522968499, 0.0178002771, 0.0102545079, -0.00416838331, 0.0124510899, -0.00907654874, 0.0225690231, 0.000466987, -0.00240144413, -0.025562292, -0.0114666112, 0.00236730045, 0.00868958607, 0.00473744608, -0.0215902347, -0.0136575019, 0.00161898311, 0.00313553493, 0.00121850532, 0.00505896658, -0.00369890686, 0.00742057618, 0.0261996426, -0.0188701153, 0.00615725713, 0.00904240459, -0.00847903267, -0.000188324149, -0.00911069196, 0.00212260336, 0.0174588412, -0.0221820604, -0.00333755207, -2.14065349e-05, 0.0280661676, 0.00200167764, -0.00804654509, 0.00451266626, 0.0169808269, -0.0168670155, 0.0163320955, -0.011307274, -0.00187221589, 0.00731814513, -0.0183238164, -0.0237868167, 0.0191091225, -0.0225917846, 0.0140558463, -0.0228194091, -0.0129518649, 0.039629519, -0.0112105329, -0.0086156074, -0.01027158, 0.000361710408, 0.00797825772, -0.00259350287, 0.0108292615, 0.0112788202, -0.0144200465, 0.00312984432, -0.0127925267, 0.0323455185, -0.00773356063, 0.00781892, -0.00702223228, -0.00854732, -0.0344851948, 0.0350770168, -0.0107211396, 0.0178002771, -0.0218975283, 0.0109146209, 0.00559673039, 0.0033403975, 0.00572476955, -0.00846765097, 0.0118934084, 0.0137940776, -0.0165824834, -0.00975373294, 0.0334836431, 0.0266548917, 0.0248566549, 0.000540253823, 0.0166962966, 0.0131794894, 0.00233884715, -0.0170263536, -0.00455250079, 0.0230925605, 0.000901252904, 0.0206683539, -0.00185087603, -0.0139989397, 0.0041228584, 0.00518131489, -0.00706206681, -0.0115747331, 0.0122348461, 0.0176295582, 0.000692833681, 0.0144541897, -0.000423595979, -0.00551990699, 0.00179254718, -0.000875645084, -0.000267815078, -0.000717018847, 0.00900826, -0.00838798285, -0.0215788539, -0.0140330838, 0.0100382641, -0.00718726031, -0.0215219464, 0.0282937922, -0.0123145143, 0.0012498037, -0.00386678032, 0.0184262469, -0.00907085743, 0.00450697588, -0.0216926653, -0.0103853922, 0.00425658841, -0.00327780051, 0.00594670419, -0.0156378392, -0.00772217941, -0.0197578538, -0.0166280083, 0.00139349198, -0.0221934412, 0.0108577143, -0.000353352312, -0.00338876783, -0.00449559465, 0.00038056061, -0.00794980396, -0.00961715821, 0.00239433092, -0.0176409408, 0.0263362173, 0.0070165419, 0.0107609732, 0.0096683735, -0.0153646898, 0.0193595085, 0.00659543555, 0.0065726731, -0.00240998017, 0.0113641797, -0.0120186023, -0.0225917846, -0.00463501504, -0.00108762085, -0.0105902553, 0.0134981647, -0.0171060208, -0.013737171, -0.000813048158, -0.0167190582, -0.0203155354, 0.0316854045, 0.00816035736, 0.0130884396, -0.0141810402, -0.0126900962, 0.000330589799, 0.0365565792, 0.02763368, 0.00450697588, 0.00589548843, -0.00619709166, 0.012860815, -0.00338592241, 0.0207366403, -0.00416269293, -0.0133160651, 0.00995290466, 0.00727261975, -0.00372451474, 0.0054117851, 0.00377573026, 0.0132022519, -0.00173706352, -0.0271329042, 0.00837660115, 0.0149435839, 0.0123031335, 0.000438178191, 0.00354526, 0.000929706031, -0.00955456123, 0.0135892145, -0.0237412918, 0.0180392843, -0.0186083466, 0.00473460089, 0.0114438487, 0.012530758, -0.00450413, 0.00565079134, 0.00387531635, -0.00897411723, -0.0108634047, 0.0150915403, -0.0154898837, 0.0124169458, 0.00424236152, 0.000785306387, -0.000755430607, 0.00384686305, -0.0192684587, -0.00293351756, 0.00535772415, -0.00662957923, -0.0207252596, 0.00263333716, 0.00696532615, 0.0044899038, -0.00531219924, 0.0116544021, 0.000791708357, 0.00878632627, 0.00823433604, 0.0124966148, 0.00717587909, 0.00400904613, 0.00414277567, -0.0112162232, -0.00251667923, 0.0064645512, -0.021533329, 0.0078303013, 0.00181246432, 0.0186766349, 0.00794411357, -0.0381271951, -0.00549145415, 0.00312130828, -0.00316683343, -0.0114666112, 0.0123486584, -0.0018394948, -0.00843350776, 0.0245607421, 0.0224552099, -0.0113129644, 0.0280661676, -0.00928710122, 0.00933262613, -0.0127470018, 0.022159297, -0.000628814159, 0.003599321, 0.00352818798, 0.0225462597, 0.0184148662, 0.0284303669, 0.000251988036, 0.00167731196, -0.00257785362, -0.00781322923, 0.0196212791, -0.0177206099, -0.0169239212, -0.00844488852, 0.0255395286, 0.0128494333, -0.0279751178, 0.0246745534, -0.00312984432, 0.0105902553, 0.00242136139, 0.00880339835, 0.000399410812, 0.00174133154, 0.00827417, -0.00188644254, -0.0108406423, -0.0142379459, -0.00568778068, 0.00818881113, -0.00217239652, 0.00125122641, 0.016309334, -0.0149777271, 0.000194192617, -0.0166507717, -0.0087692542, -0.00619140081, 0.0078872079, 0.0117113078, -0.0163320955, 0.0285441801, -0.0121210329, 0.00974235125, -0.0157971773, 0.00981064, 0.00495653506, 0.0164231472, 0.0193708912, -0.00843919814, 0.0216243789, 0.00827986095, -0.00376434904, 0.014898059, -0.0115064457, 0.00479435222, 0.0112731298, 0.00880339835, -0.0225234982, 0.00632797601, -0.00204151194, 0.00129034941, 0.00928710122, -0.0302058421, 0.0295912549, -0.0197578538, 0.00476589939, -0.00265040901, -0.0129860081, -0.00185229874, 0.00269308873, -0.00137072953, -0.00378995691, -1.40598477e-05, 0.0136347394, -0.00987892691, -0.0356688425, 0.0153419273, 0.0113300364, 0.00984478276, 0.02763368, -0.000254655519, 0.0219202917, 0.0114040142, -0.00656129187, -0.00458379928, 0.0255167671, -0.00148098543, 0.0224665906, 0.00510449149, -0.0127583835, 0.0272467174, -0.0114153959, 0.0044728322, -0.00404319, -0.00869527645, -0.0307293795, -0.0176409408, -0.0124624707, -0.00606051646, -0.00827986095, 0.00069496769, -4.29242136e-05, 0.00802947301, -0.000810914207, -0.0152394958, -0.00022229008, -0.00524106668, -0.0197009463, -0.030251367, -0.0250387546, 0.00438178191, -0.0146818152, 0.0152167333, 0.00857577287, 0.00923588593, 0.0160361845, 0.0162182841, 0.0089342827, 0.0125649022, -0.0180392843, 0.004046035, 0.00754577, 0.00180819642, 0.00927003, -0.000785306387, -0.0200196225, 0.00226202374, 0.00222218945, -0.00378142088, 0.00966268312, -0.00427081482, 0.0249021798, 0.0171287842, -0.030706618, -0.0152964024, -0.0173564088, -0.00663526962, -0.0133046834, 0.0282027423, -0.00529228197, 0.0373532698, -0.00864975154, -0.00319244107, 0.0121324146, 0.0117340703, 0.00199314184, 0.00218377775, 0.0203155354, -0.018927021, 0.0269280411, -0.00606620731, 0.0103740115, 0.040585544, 0.0132477768, 0.00787582621, 0.00777339516, -0.0115348985, -0.0050418945, 0.0125876646, 0.0149435839, -0.0101748388, 0.00994152389, -0.0223072544, -0.0107040675, -0.00483134156, -0.00395213952, 0.00279978802, 0.00681167934, -0.0129291024, -4.39912073e-05, 0.00178970187, 0.000524960225, -0.00359078497, 0.0165938661, -0.00323796622, 0.0227852669, -0.0173791721, -0.0197464712, -0.0144655714, -0.00728400098, -0.0143859023, 0.0100610266, 0.00293636299, -0.0202472471, 0.0201789588, 0.00443868805, 0.00590117928, 0.00377573026, -0.00594101334, -0.00250672083, 0.0274971053, -0.00384401786, 0.0279978793, 0.0153191648, -0.0101919109, 0.00811483245, -0.011039814, 0.0172539782, -0.0331877321, 0.00715311663, -0.00794980396, -0.0206342097, -0.00138851267, 0.0189384036, -0.00148952135, 0.000976653653, 0.000704926264, -0.00813190453, 0.0151029211, 0.0104992045, -0.00336316, -1.36152667e-05, -0.0353046432, 0.027223954, 0.000558392669, -0.00881477911, 0.00302741304, -0.00162751903, -0.00710759172, -0.0317536928, -0.00030587113, -0.000781749724, 0.00327780051, 0.00221792143, -0.0246290285, -0.0321178921, 0.025107041, -0.00954887, -0.00258069881, -0.0185400601, -0.00622554496, -0.00933831744, 0.0137599334, -0.00357655832, -0.0118023586, 0.00417691935, 0.0122234644, 0.00202586292, -0.0388783552, -0.0212943219, -0.021954434, -0.0282027423, -0.0025735856, -0.00423667114, -0.00860422663, -0.0252663791, 0.00397490198, 0.0169011597, 0.00273292302, 0.0207366403, 0.00689134793, -0.00767096365, -0.00885461364, -0.0141355144, -0.0273377672, 0.0174929835, 0.00820019189, 0.0256761033, 0.00159479794, -0.0214764215, -0.00212260336, -0.0210439339, -0.00520407734, -0.00360501162, 0.0140786087, -0.0118820267, -0.0147501025, 0.00634504808, -0.0173791721, -0.0114609208, -0.0105105862, -0.0143745206, -0.00527805556, 0.0116544021, 0.00154642761, -0.0117795961, -0.0121210329, -0.00834245794, -0.00891152, -0.0002939564, 0.00528659159, 0.00703361351, 0.0121551771, -0.00495653506, 0.00454396475, -0.00400051, 0.0186766349, 0.0128266709, -0.0222048219, -0.0241965409, 0.0199513342, 0.0161158517, 0.00501059601, 0.00752300769, 0.00667510414, -0.000867820461, -0.000859284541, 0.00383832725, -0.00787013583, -0.00133729714, 0.00554836029, 0.0142265651, -0.0139078898, 0.0219999589, 0.00631090393, -0.000965272426, -0.0140330838, 0.00736367, 0.00349973491, -0.0202131029, 0.00981633, -0.018505916, 0.00403749896, 0.00433341181, -0.0110568861, 0.0026802849, 0.0132933017, 0.0133388275, 0.00234880578, 0.00106201309, 0.0111877704, -0.00490532, 0.00375865842, 0.0143403774, 0.0106414706, 0.000882758352, -0.0171743091, 0.00511587271, -0.011369871, -0.0189384036, -0.0190408342, -0.020622829, 0.012075508, 0.00115021772, 0.0183921028, -0.0388555937, 0.0142151834, -0.0123486584, -0.000965272426, -0.0122689893, -0.0111081013, -0.00795549527, 0.01427209, 0.0232974216, -0.000289510586, -0.00937246066, -0.0203041527, 0.00302741304, 0.0137599334, -0.0138396025, 0.00731814513, 0.0118934084, 0.00277133472, -0.00564794615, -0.00953748915, 0.0160134211, -0.0209870283, -0.000624901848, 0.0110056708, -0.0146249086, 0.00239717611, -0.0234909039, -0.0171515457, 0.00731814513, -0.0304334667, -0.00764251081, -0.0100780986, 0.0200537667, 0.00129319471, -0.0113300364, -0.0133843524, -0.0164686721, -0.0185969658, 0.018175859, 0.023946153, -0.0122462269, 0.018301053, -0.00483134156, -0.0107495924, 0.0126331896, -0.0279068295, -0.00417976454, 0.00419399142, -0.00866113231, -0.0032038223, -0.0141127519, 0.0124624707, -0.0209528841, -0.0373760313, -0.0127470018, 0.0112503674, -0.000731956738, 0.0201903414, -0.00579874776, 0.00375296781, 0.0100439545, 0.00315545197, -0.0197692346, 0.00170576514, -0.00181957765, 0.00829693303, -0.00833107624, -0.0325731412, 0.0176637024, 0.00916759856, 0.0138396025, 0.000825140742, -0.012325896, 0.0161613785, 0.00208561448, -0.0136005962, 0.00631659478, 0.0203496777, -0.00851317681, -0.0122917518, -0.00389523339, -0.00999843, 0.00512156356, -0.0217609536, -0.00700516067, -0.000138086602, 1.94392669e-05, 0.00294489902, -0.012200702, -0.0100382641, -0.0106585426, 0.00777339516, 0.0195188466, -0.011699927, -0.00384401786, -0.00950334501, -0.0178799462, -0.00414277567, -0.0286124665, 0.00608327892, 0.00202444, 0.00969113596, 0.00652145734, -0.0206683539, -0.0121437954, -0.0149663463, 0.00689703878, 0.00636211969, 0.0130087705, -0.00733521674, 0.00989599805, -0.00956025161, -0.0153305465, -0.019131884, 0.00476305373, 0.0058072838, 0.00182669098, -0.0113641797, -0.0194505602, -0.0128835775, 0.000946777873, -0.00309285522, -0.00148809864, 0.0155581711, -0.00309854583, -0.0155581711, 0.0122917518, 0.00536910538, -0.017140165, -0.00169722922, 0.00296481606, 0.00842212606, 0.0320268422, -0.0027884068, 0.00210979953, -0.00891152, -0.00223072525, 0.0130429147, 0.00871234853, -0.000651932321, -0.0107837357, -0.015854083, 0.0114723016, 0.0118706459, 0.0111365551, 0.00770510733, 0.00249107159, 0.0143745206, 0.00200025504, -0.00397490198, 0.00147671741, -0.0143517582, 0.00400620047, 0.0146249086, -0.0177547522, -0.00300749578, 0.0140217021, -0.00991876144, -0.0190977398, -0.00373589597, -0.0121779395, 0.00642471667, 0.00460087089, 0.0123941833, -0.0130998213, 0.0178002771, -0.0126900962, 0.0128949583, 0.0189497843, -0.00558819482, 0.00706775719, 0.00913914479, -0.00924157631, -0.0166507717, 0.0108634047, -0.0106528513, 0.0114552304, -0.00624261657, 0.00111322873, 0.00501344167, 0.0125649022, -0.0178344212, -0.00126047363, 0.00929279253, -0.000955313852, -0.0169353019, 0.00887168571, -0.0157288909, -0.00936677, -0.00546015566, 0.016389003, 0.0203610603, 0.00135294627, 0.0342348069, -0.0131225837, -0.0143062333, -0.0205431599, 0.00458095409, -0.0181530975, 0.00979925785, 0.00356802251, -0.0188359711, 0.00263760518, 0.00374443177, -0.0143745206, 0.00506465696, -0.00641333545, -0.0279068295, 0.00808638, 0.00193196745, -0.00810914207, 0.00185372145, -0.00172995031, 0.0296140164, 0.00534065254, 0.012280371, -0.0215105657, 0.0138737457, -0.00722709484, -0.0193139836, 0.00531504443, -0.00479719788, -0.00183238159, -0.00350258034, -0.0110568861, -0.0100325737, 0.00469192117, -0.00900257, -0.000852171215, 0.0173336472, 0.0059922291, 0.0127470018, -0.0148411524, 0.00460087089, 0.0197578538, -0.0291815288, 0.0102146734, 0.022284491, -0.00186368, -0.0251298044, -0.00993583258, -0.00141127524, -0.0362834297, -0.0173905529, -0.0277247299, 0.0147273401, 0.00868958607, -0.00144115102, -0.0248794165, -0.0133502083, 0.0178230405, -0.018301053, -0.0397888571, 0.0140786087, 0.00624261657, -0.005073193, -0.00123202056, -0.0320496038, 0.01072683, 0.00953179877, -0.000231181679, -0.023240516, 0.0114438487, -0.00049152784, -0.0117340703, 0.00756284175, -0.000377003977, 0.00413993048, 0.0175271276, -0.0237412918, 0.000489393831, 0.00957732368, -0.0117795961, -0.00421959907, -0.00124269049, -0.0215560906, 0.00986185484, 0.0275426302, -0.00659543555, 0.0125876646, -0.000713106536, -0.0251298044, -0.0159223713, -0.00891721062, 9.08277216e-05, 0.0189725477, 0.018301053, 0.00827417, 0.0043846271, -0.00318675046, -0.0211008415, 0.00221080822, -0.0125535205, 0.00654991064, -0.0227055978, -0.0039976649, 0.0150118712, -0.0186424907, -0.0214878041, 0.00891152, -0.00813759491, -0.00630521355, 0.0123941833, -0.00645886036, -0.0217950977, -0.00392084103, -0.0269280411, -0.0204862542, 0.0202358663, -0.00699377945, 0.00590686966, 0.0181872398, -0.00743764825, 0.00611742307, -0.0042309803, 0.0199399535, -0.0144200465, 0.000544166076, -0.0108577143, 0.0181303341, -0.00673770113, 0.0149208214, -0.027428817, 0.00524675706, -0.00886599533, 0.00299326912, -0.0230811778, -0.00022335707, 0.00620847289, -0.0170377344, 0.0268369913, -0.00612311345, -0.00928710122, 0.0148297716, 0.0120299831, 0.00732383551, -0.0095147267, 0.0185742024, 0.0173108838, 0.0164459087, 0.00730107306, -0.010977217, 0.00948627386, 0.0180279035, -0.0130201522, 0.0112503674, 0.0166280083, 0.00380418333, 0.00500775082, -0.00236303243, -0.000396921154, -0.0100496458, 0.00600930117, 0.0029050645, -0.00843919814, -0.00437609153, -0.0224552099, 0.0184717719, -0.0142265651, 0.00131809118, 0.0107951174, -0.00289937388, 0.00540324952, 0.0107325204, 0.019131884, 0.00255793636, -0.000197215748, -0.0231722295, -0.00317252404, 0.0129632456, 0.00618001958, -0.0113812517, 0.011825121, -0.00804654509, -9.03386899e-05, -0.0101805301, -0.0188701153, -0.00421106303, -0.0116885453, -0.00303025823, 0.0122348461, 0.0121324146, 0.00200025504, -0.00435332861, -0.00589548843, 0.00210979953, -0.020998409, 0.00997566711, 0.0113414172, -0.00207707845, 0.0326414295, 0.00297050667, -0.022614548, -0.0264955536, 0.0172539782, -0.0182441473, -0.0139761772, 0.0279523544, 0.0376036577, 0.00270731538, 0.00574468682, -0.00871803891, -0.0158768464, -0.00937815197, -0.021248797, -0.0180734284, -0.00978218578, -0.0334153548, -0.0332787819, 0.0180734284, -0.0171060208, 0.0141241336, 0.0204407275, 0.00484841317, -0.0206114464, -0.0062539978, -0.00128465879, -0.0146704335, -0.00190920499, 0.00326641928, 0.00970820803, -0.0198261403, -0.0184831526, 0.00359647558, -0.00164885889, -0.0029420536, 0.000149912434, 0.000127416672, -0.00661250716, 0.00874649175, -0.00105987908, -0.0206683539, -0.00285242614, 0.0106414706, 0.0130770588, -0.00709052, -0.0150460154, -0.00231608469, -0.0233998541, 0.00847334228, 0.00124126778, -0.0123714209, -0.00653283857, -0.0169466846, -0.00922450423, 0.0145793837, 0.0172312148, -0.0248566549, 0.00989030767, 0.00637350092, 0.0262224041, -3.58109319e-05, -0.00607189769, -0.0183693413, -0.00954318, -0.0139420331, 0.0315260664, 0.0041228584, -0.019131884, 0.00866113231, 0.00552844303, 0.0122120837, -0.0108463326, -0.00392368669, 0.0318675041, -0.00834814832, 0.00516993366, 0.00921312347, 0.013611977, 0.0101577677, -0.0138282208, 0.00652714772, 0.00437324587, -0.00636211969, 0.0047033024, -0.0224779733, -0.0298188794, 0.0154102147, 0.0231836103, 0.0130884396, 0.0109544545, -0.0061743292, 0.000519980968, 0.00320666772, 0.00554266945, -0.0377857573, 0.00432772096, -0.0212715603, -0.00850179512, 0.00918467063, 0.00561380247, -0.0150004895, -0.00339445844, -0.0108235702, 0.00952041708, -0.0207594037, -0.0207024962, 0.000186368, -0.0169808269, 0.000879913045, 0.00962853897, 0.00882047, 0.00179396977, 0.000824429444, -0.00958870444, -0.0259720162, -0.010288652, -0.00179254718, 0.0101976013, 0.0084107453, 0.0271784291, 0.0222275853, -0.010806499, -0.00311846309, 0.0011758256, 0.0116657829, 0.0299554542, 0.0244241673, -0.015478503, -0.000275461847, -0.00838798285, 0.00292782695, -0.00726692937, -0.0184490085, 0.00339161302, 0.00324081141, -0.00312415371, 0.00380133814, 0.00800102, 0.0121779395, 0.0337795541, -0.0030103412, 0.0208390728, 0.0060206824, -0.0107666645, -0.0108747864, -0.00365338195, 0.0179140903, -0.0049650711, -0.00495653506, 0.0138396025, -0.0137485527, -0.00244270125, -0.00505612092, -0.0107723549, 0.0176864658, 0.0151939709, -0.0245607421, 0.00716449786, -0.0111650079, -0.00358793954, -0.0268142298, 0.011699927, -0.00448136777, -0.00326926471, -0.00210837694, -0.0171743091, -0.00890013855, -0.017014971, -0.00636211969, -0.00101791066, 0.00852455758, -0.0124624707, -0.0118934084, 0.000956736505, -0.0047516725, -0.00616863836, 0.00948627386, 0.00124766969, 0.0112503674, 0.0214308966, 0.0162069034, -0.0157175083, -0.0106243985, -0.013236396, -0.0215560906, -0.00199598703, -0.0150346337, 0.00448421342, 0.0291360039, 0.0221479163, 0.0133046834, 0.0100610266, 0.0119958399, 0.00950334501, 0.00974235125, 0.00618571043, -0.00550283538, 0.0121210329, 0.00844488852, -0.00184803072, 0.00242278399, -0.00433056615, 0.0068344418, -0.00629383232, 0.00188928784, -0.000390519213, 0.0116885453, 0.010146386, 0.00932124536, -0.0071246638, -0.00331194419, 0.00730107306, 0.0343486182, -0.00341437547, -0.00425374275, 0.0164345279, -0.0112731298, 0.000184056189, -0.0169466846, 0.0233315658, -0.00693118246, 0.0127583835, 0.0157061275, 0.0054402384, -0.0182213839, -0.0131453462, 0.014397284, -0.00799533, 0.0131453462, 0.00891721062, 0.0229559857, -0.00107268302, 0.00635073846, -0.00502482289, 0.0129860081, 0.00388954277, -0.00576175889, -0.0157288909, -0.00768803572, 0.00685720425, 0.0033489333, 0.00318390527, 0.00160191115, -0.0334381163, 0.00545161963, 4.37244562e-05, 0.00916190818, -0.0234226156, -0.0201106723, 0.0295229666, 0.0112674395, -0.000331656804, 0.0065726731, -0.0164800528, -0.00956025161, 0.0126787145, 0.0118365018, -0.00379564753, 0.0264045037, -0.0229104608, -0.00134867837, -0.00441023521, -0.0109658362, 0.0142834708, -0.0201448165, 0.000806646247, -0.00255651376, -0.00726692937, 0.0328690559, 0.0148183899, 0.021533329, 0.0104992045, 0.0025351739, 0.00146960409, 0.024606267, -0.0216016155, 0.0138509832, -0.0117909769, -0.0406538323, -0.01336159, 0.00667510414, -0.00357655832, 0.00337738637, 0.0303651802, 0.00714742625, 0.00023616098, 0.0052552931, 0.0217950977, 0.0120868897, -0.0271329042, 0.0323455185]
02 Jul, 2020
Difference between Elasticsearch and MariaDB 02 Jul, 2020 1. Elasticsearch : Elasticsearch is a distributed search and analytics engine.It is open source and can be used for all types of data.It is implemented in Java programming language and supports all operating systems having java virtual machines (J.V.M).It is the main component of Elastic Stack, which is a open source application for data analysis and visualization. It has high scalability and the speed of performing a action is also high which makes it a easy and fast tool for data analysis, processing and visualization. 2. Maria DB : Maria DB is an enhanced version of MySQL which was made by the original developers of MySQL to increase the functionality. Maria DB is an open source software. It is used worldwide because of its speed and its robust nature. It was developed by Maria DB enterprise in 2009. It is secure and has a inbuilt database firewall also. It is a relational database which has a SQL interface from which we can access data. Difference between Elasticsearch and MariaDB : S.NO. Elasticsearch Maria DB 1. Elasticsearch is a search and analytics engine based on Apache Lucene. MariaDB is a relational database management system. 2. The secondary database model is a document storage. The secondary database model is document store and graph DBMS in MariaDB. 3. It has no concept of transactions. It has concept of transactions satisfying ACID properties. 4. It was developed by ELASTIC in 2010. It was developed by MariaDB Corporation Ab (MariaDB Enterprise), MariaDB Foundation (community MariaDB Server) in 2009. 5. It does not have XML support. It has XML support. 6. It involves eventual consistency. It involves immediate consistency. 7. It is implemented in java. It is implemented in C and C++ languages. 8. It has Java API, RESTful HTTP/JSON API. It has proprietary native API, ADO.NET, JDBC AND ODBC. 9. It is considered high than MariaDB in terms of ranking. It is considered less than Elasticsearch in terms of ranking. 10. It accepts all operating systems having J.V.M. It supports LINUX, FreeBSD, Solaris, Windows. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB
https://www.geeksforgeeks.org/difference-between-elasticsearch-and-mariadb?ref=asr10
Languages
Difference between Elasticsearch and MariaDB
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0112480884, 0.000450663531, -0.0195716731, 0.0158894043, 0.0236801859, 0.0194887929, -0.0235025845, -0.00573356496, -0.0482365377, -0.00298962346, 0.0376514941, -0.0133319451, -0.00741189811, -0.0103600817, -0.0178075, 0.0245800335, 0.0251246765, -0.0029481831, 0.00214305683, -0.0145751545, -0.000435123424, -0.0122071356, -0.0198084749, -0.00844198652, -0.00399011141, 0.0121716158, 0.0153684402, 0.00812822394, -0.044329308, -0.0192401502, 0.0417008065, -0.0180324614, 0.00478931749, 0.00715141604, -0.0265218075, -0.0100759193, -0.0273742955, -0.0402089544, 0.0148001164, 0.0185771063, 0.0348572321, 0.0241774693, -0.00882678945, -0.00102490804, -0.0208267234, 0.0005842346, -0.0318261683, -0.030452719, -0.0297896732, -0.0252193976, -0.0023162181, 0.00458507612, -0.00532508176, -0.00567732472, -0.00967927556, 0.00881495, -0.0163038075, 0.0100285588, -0.0099279182, 0.00517412042, 0.0161854066, 0.000716325594, -0.0168129317, -0.0567850843, -0.029363431, 0.00657125143, -0.000384063023, 0.00521852076, 0.00324122538, -0.0134266652, -0.00941879395, 0.049160067, 0.0182337426, -0.0234670639, -0.000684135361, 0.00631669, -0.00853670668, -0.00662453193, 0.0206491221, 0.0190980695, 0.0233605038, -0.0245563518, 0.00708037568, -0.00715141604, 0.0213950481, -0.0341705084, -0.0268770102, -0.0485443808, 0.0152855599, 0.002434619, 0.00213861675, -0.0339810662, 0.0253614783, 0.0209332835, 0.0269480515, -0.0143265128, 0.00388947059, -0.00389539055, 0.00370298908, 0.0152381994, -0.0221054535, -0.0114967301, 0.0226619374, -0.0167300515, -0.00255598, -0.0132964244, 0.00605028728, 0.0400195122, 0.0282031018, 0.0406115204, 0.0325128958, 0.0102061601, -0.0211582463, 0.0366095677, -0.0125741791, 0.00301774358, -0.00213861675, -0.0176417381, 0.015167159, -0.0161617268, -0.0520490482, -0.0065298113, -0.0306895208, 0.0129293818, -0.031399928, 0.029363431, 0.0134740258, -0.00706853531, 0.0454896353, 0.0202820785, 0.00748885889, 0.012917541, -0.00734677771, 0.00396051118, 0.0510544814, 0.0352124348, 0.0308079217, 0.0711826384, 0.003442507, -0.00591116631, -0.0140423505, -0.0358044393, -0.0352124348, -0.03701213, -0.00660677161, 0.00382731, 0.00416179281, 0.0264981277, 0.012106495, -0.0119052138, -0.0256930012, -0.0921159238, 0.0301211961, 0.0106560839, -0.0285109431, -0.000196656547, 0.0139002688, 0.0106856842, -0.0283688623, 0.018079821, -0.0104074413, -0.0192401502, 0.0285109431, -0.00410851231, 0.00926487241, 0.0592004657, -0.0322524123, -0.0340284258, -0.0307368804, 0.0394275077, -0.0494442284, 0.0172273349, -0.0121716158, -0.00544644287, -0.00168129324, 0.00257670018, 0.020542562, -0.0165287703, -0.0185179058, 0.00185297453, -0.00763094, -0.0318024904, -0.00325010554, -0.0274453349, 0.0274216551, -0.00807494298, 0.00736453757, 0.0195598342, 0.0113013685, -0.00416771276, -0.00264034071, 0.0157473236, 0.0427427366, -0.0222238544, -0.00409963215, 0.0235499442, 0.00592892664, 0.0198795162, 0.0258824434, -0.0497283898, 0.0124676181, -0.0277768578, -0.0221291333, 0.0279189385, 0.0355913192, 0.0157236438, 0.0508650392, -0.0170023739, 0.0266875699, 0.0011410889, -0.0386460647, 0.0465789251, -0.00317906495, -0.00277058175, 0.0328207389, 0.00763094, -0.0064114104, -0.0562641211, -0.0041055521, 0.0165998098, 0.0206846427, -0.0403983966, 0.00619828841, 0.0209214445, -0.0412982441, -0.00798022281, -0.0224014558, -0.0278952587, 0.0390012674, 0.00684949383, 0.0473366901, 0.0611896, 0.0145633146, -0.00555892382, -0.0246747527, -0.0282741413, 0.0560273193, -0.0217620898, -0.064362742, 0.0238696281, 0.00496099889, 0.0120532149, -0.00973847602, -0.00950167421, -0.0043956344, -0.0263797268, 0.0118756136, 0.00330634601, -0.0083295051, 0.00243313913, -0.0262139663, -0.0388591848, -0.00614500837, 0.0394511893, -0.0458211601, -0.0220580939, 0.0481418185, 0.0169076528, 0.00418843282, -0.0247931536, 0.00865510758, -0.0330575407, -0.0155342016, 0.0297423135, -0.0144330729, 0.053138338, 0.0136161065, 0.00861958787, -0.0264981277, 0.0200689565, 0.019145431, -0.00956679508, -0.0102653606, 0.000404043181, -0.0101055196, -0.0234670639, -0.0556010753, 0.0331759416, 0.0325128958, 0.0157354828, -0.00327674579, -0.0318261683, 0.0392854288, 0.0335311443, -0.0182337426, 0.0209924839, 0.0125031378, -0.00166353304, 0.0215963293, -0.0182219036, -0.0413456038, -0.0310447235, 0.020128157, 0.0186836664, 0.00142673124, -0.0280136596, 0.0258350819, 0.0239643473, 0.000500243914, 0.0274216551, -0.00571580464, -0.0106679238, -0.00803942326, -0.0197019149, -0.0314709656, -0.0262850057, -0.0108277649, 0.0164932497, 0.00827030465, -0.0536593, -0.0147053953, -0.00268918113, 0.010537683, -0.0228395388, 0.0301211961, 0.0406352, 0.00401083147, -0.0479050167, 0.00469755707, 0.00591412652, 0.020542562, 0.0120532149, -0.0435715429, 0.0321340114, 0.0107389642, -0.0609527975, -0.0128109809, -0.0152381994, 0.0145396339, -0.0178075, -0.0328207389, -0.0401852764, 0.00108558848, 0.0158065241, 0.00793286227, -0.0592951849, -0.00938327331, 0.00281350198, -0.00649429113, 0.0114375297, -0.0142791523, 0.0267586093, -0.0381250978, 0.00508236, 0.0281794202, 0.0208504032, -0.0298843943, 0.034644112, 0.00318202493, -0.0395695902, 0.000754435896, -0.00903991051, 0.0352124348, -0.0385276638, -0.0373436548, -0.00972663611, -0.0304290392, -0.0489706248, 0.00245681917, 0.0529488958, 0.0206254423, -0.0214424077, 0.00413811253, 0.00539020216, 0.0198203158, 0.0138173886, 0.0256219618, 0.0285109431, 0.0166471712, 0.0131425029, -0.00413515233, -0.0125623383, 0.0413456038, -0.0277058166, -0.0257640425, 0.0226382576, 0.00625156891, 0.029363431, -0.0169668533, 0.0367042869, -0.00447259517, 0.00477155764, -0.0251009967, 0.0732191354, 0.0205070414, -0.0368937291, 0.0616632029, -0.0343362689, -0.00598220713, 0.00669557275, -0.0263323672, -0.00211493648, -0.0168602914, -0.0163274873, -0.0512439236, -0.0379119776, 0.016138047, -0.0065298113, 0.0117512923, -0.000535764208, 0.00159101246, 0.0130004222, -0.0440925062, 0.0342415497, -0.0297659934, -0.0150724379, 0.00864918809, -0.00915239193, 0.0084360661, 0.0361833237, -0.0619000047, -0.0272322129, 0.0112836082, 0.00130537024, -0.0181390215, 0.0409904, 0.0187547076, -0.000548714306, -0.0158302039, 0.0437846631, -0.0211582463, 0.00977399666, -0.0106620034, -0.00754213938, 0.0207320023, 0.0531856976, 0.00979175698, 0.0158657245, 0.0207083225, 0.0244379509, 0.000899107079, 0.00110704871, -0.00231177802, -0.00870246813, 0.00518892054, -0.0402799957, 0.0266165286, -0.00216969708, 0.0123255365, -0.0147053953, -0.0178193394, 0.0451107547, 0.0476918928, -0.0228987392, -0.0792339, 0.033033859, -0.0503914356, 0.00470051682, -0.0210043248, -0.030452719, -0.0041055521, 0.0130122621, -0.0253614783, -0.0138410684, 0.0371305309, -0.00835910533, 0.0465789251, 0.028937187, 0.0194059126, 0.0176891, 0.00155105221, 0.0366332456, 0.0114375297, -0.00560332416, 0.0254325196, -0.0129649015, -0.000325602567, 0.0179140605, 0.0106205633, -0.0123492172, 0.0361833237, -0.0287003852, 0.0269480515, 0.0453949161, 0.00167833315, 0.0305711199, 0.00356682809, 0.0272795744, 0.00145411142, 0.0355676375, 0.00517116068, 0.0243432317, -0.00827030465, 0.0137345074, -0.00724613667, 0.0221528132, 0.0265928488, 0.0487811826, -0.018281104, -0.0193111915, 0.0082111042, 0.00359938829, -0.0539908223, -0.0582058951, 0.0104725622, -0.0190151893, -0.0260008443, 0.00891559, -0.0268296506, 0.0322287343, -0.0263323672, -0.0147764357, -0.0187310278, 0.0156526025, -0.0359465219, 0.0486864634, -0.00779078109, 0.0322050527, 0.00437195413, -0.0183166228, 0.0194177516, -0.00394275086, 0.0154158007, 0.0181390215, -0.0035283477, 0.0376278162, 0.0413219258, 0.0163630079, -0.0119288936, 0.0259061232, 0.00776710082, 0.0255509205, 0.012372897, -0.00791510195, 0.0213595275, -0.0112184882, 0.00715141604, -0.0020276159, 0.0054346025, -0.04347682, -0.0336732231, 0.0171799753, 0.0220462531, 0.0273506138, -0.0137581881, -0.00087468687, 0.0211700853, 0.0298607145, 0.0220580939, 0.00493435888, -0.00596444681, 0.0129530616, -0.0153566, -0.00615092833, -0.0190388691, -0.0045673158, 0.0117098521, -0.0107271243, 0.0194887929, 0.0104370415, 0.00635813, 0.00741189811, 0.0395459086, -0.0143857133, -0.0198203158, 0.0421744101, 0.00972071663, -0.00582236564, 0.0167537313, -0.00774934096, 0.0331759416, 0.0467446856, 0.0297896732, 0.0269006919, 0.0177246183, -0.0270901322, 0.0106146429, 0.0128109809, 0.00880310871, -0.0112658488, -0.0109935263, 0.026782291, -0.00212973682, -0.0122781759, -0.00482187793, 0.0210753661, 0.00301182363, -0.0173102152, 0.0238577873, 0.0375804566, 0.00918199215, -0.00792102236, -0.00234433846, 0.0119821737, 0.0339573883, -0.00205129618, -0.0204123203, -0.00899255089, 0.0059378068, 0.0147764357, 0.0403747149, 0.0321576931, -0.0021119765, 0.0173575766, -0.00892743, 0.0102772005, 0.0144330729, 0.026142925, 0.0053162016, 0.0171799753, 0.0115144905, -0.000277687184, 0.00598220713, 0.0254088398, 0.0159130841, 0.0249115545, 0.0149658779, -0.000640845043, -0.016351169, 0.0135332262, -0.00709221559, -0.00562996417, 0.0176180582, -0.00509124, -0.0197019149, 0.000515784, 0.036680609, 0.0104370415, -0.0255272407, -0.0142199518, 0.0128938612, 0.0165642891, -0.0240472294, 0.0212174468, 0.0145751545, 0.00835318584, 0.00138973095, -0.0173812564, -0.020542562, 0.00708037568, -0.00614500837, -0.00604140759, -0.0254325196, -0.0147290751, 0.0160433259, -0.00494915899, -0.013130663, 0.0168484524, -0.00651205098, -0.0156170828, -0.00644101063, 0.0186836664, 0.0364911668, 0.0395932719, 0.00560036395, 0.0188257471, -0.0129293818, 0.012917541, 0.0229461, 0.00735269766, -0.0116743315, -0.0112895286, 0.0131661836, 0.00605028728, -0.010431122, -0.0345493928, 0.000651945127, -0.0104488824, -0.0288898274, 0.0502967164, -0.0234552249, 0.00385099021, 0.00506459968, 0.00719285663, -0.00555596361, -0.00726389699, 0.0184823852, 0.0104784826, 0.00232361816, 0.00944839418, -0.0115914512, -0.0202228781, -0.00719285663, 0.0104074413, 0.0301685575, 0.00526588131, -0.0178903807, 0.00621604873, -0.00401379168, 0.00515044061, -0.0243905913, -0.00165317301, 0.0151434792, -0.0191691108, 0.010496242, -0.0148948366, 0.00777302077, 0.0159604456, 0.00139269093, -0.0229697805, -0.0189915095, -0.00696789473, 0.0224606562, 0.0363964438, 0.0029689034, -0.0190270301, -0.00293930317, 0.014527794, -0.0187073462, -0.0172746964, 0.0148001164, -0.0286530256, -0.0158538837, -0.00211641658, -0.00350170746, 0.0442345887, -0.00433939416, -0.0383145399, -0.00123950967, 0.0272558946, -0.00289194263, -0.0285819843, 0.00486627826, -0.00940695405, 0.00829398539, -0.0359228402, 0.00853078719, -0.00562996417, -0.0119762542, 0.0430032164, 0.0177838188, 0.0265928488, 0.0123373764, -0.00306362403, 0.00528660137, 0.00235913857, 0.00610356778, 0.0344546698, 0.0140897101, 0.00313762459, -0.0029999835, 0.00721061649, -0.011733532, -0.001398611, -0.0113783292, -0.00046805368, 0.0167655721, 0.0188849475, -0.0147172352, 0.00609172788, -0.0174167771, 0.0223659351, -0.0316367298, 0.0161617268, 0.0241774693, -0.0116328914, 0.0440688245, -0.0102002397, -0.0061864485, 0.0215371288, 0.0244853124, -0.012586019, 0.00947207399, -0.0360649228, -0.00309618423, -0.0201518387, 0.00668965233, -0.00167241308, 0.0128346607, -0.00952535495, 0.00519188074, 0.0536119416, 0.00249677966, 0.0256693214, -0.0157710034, 0.0141489115, -0.0195124727, -0.0216673706, -0.0180087816, 0.0197255947, 0.0107152844, 0.0114256898, 0.0581111759, -0.0243669115, -0.00142229116, 0.00709813554, 0.0101943202, -0.012106495, -0.0161854066, 0.0275637358, 0.0102120806, 0.0119170537, -0.0103600817, 0.0083295051, -0.00687909406, -0.0226856172, 0.0228395388, 0.00584012596, 0.0238104276, -0.014954037, 0.0125031378, 0.00679621333, 0.012372897, 0.0169431735, 0.019476952, -0.000121545956, -0.0052629211, -0.0204478409, -0.0639838651, -0.00720469654, 0.00573060475, -0.000981987687, 0.0407299213, -0.0256693214, -0.00535172177, -0.0111474479, -0.0155578824, 0.0260482039, -0.011733532, -0.0130122621, -7.93656218e-05, 0.027113812, -0.024532672, 0.05077032, 0.00208533625, 0.0284635834, -0.0110527268, 0.00348098739, 0.0291266292, 0.0166116506, -0.00387171027, -0.0189086292, 0.00135717064, 0.0179614201, 0.00726981694, 0.01398315, 0.0128109809, 0.00951351505, 0.0679147765, -0.0147172352, 0.00693829451, -0.017097095, -0.00943655428, -0.0199505556, -0.0465789251, 0.00495211873, 0.00490475865, -0.00130981032, 0.0217147302, -0.000601624721, 0.0168484524, -0.0153092397, -0.00709813554, 0.0045673158, 0.00773750059, 0.00522740092, 0.00898071, -0.0242366698, 0.00815782417, -0.00534876203, 0.0217147302, 0.00731125753, -0.0266875699, 0.00608580792, 0.0165524501, 0.00300442358, -0.00538724242, -0.0240827482, 0.0211227257, -0.00740005821, 0.00564180408, 0.0058430857, -0.00282534212, 0.00812822394, 0.0226382576, 0.00374442944, 0.0105495229, -9.05582128e-05, 0.00406115176, -0.0313762464, -0.0216081701, -0.00770790037, 0.0153210806, 0.0060029272, 0.00799798314, 0.0411798432, 0.0106146429, 0.0114908097, 0.00285642245, -0.0305711199, 0.0654993951, 0.0271848533, -0.0104784826, -0.00239761872, 0.0294107907, 0.0419139303, -0.0410140827, -0.0496810302, 0.018067982, 0.0138055487, -0.0320156105, 0.00289194263, 0.0156407636, -0.0348098725, 0.00452883542, -0.00650021108, 0.00661269203, -0.00373554928, 0.00579868536, 0.00486035831, 0.00932999328, -0.0130359419, -0.00694421446, 0.0197137538, 0.0252904389, -0.00454659574, 0.0139002688, -0.0240590684, -0.00215193699, -0.029363431, -0.0185179058, 0.0155460415, 0.0201991983, -0.00300590368, 0.0335311443, 0.0246037133, -0.0169550125, -0.0135332262, -0.00829990488, 0.0372962914, 0.000510604, 0.0307368804, 0.0100522386, 0.0272558946, -0.0132135432, -0.00209421641, -0.0327970572, -0.0114848902, 0.0230289809, -0.0040522716, -0.00380363, 0.00627524918, -0.00338330655, 0.0166116506, 0.00620420882, -0.014740916, 0.000477673748, 0.0324418545, -0.0261192452, -0.00131869037, 0.00838278607, 0.00156881229, 0.029813353, -0.0176891, 0.00476267748, 0.0181271825, -0.0182455834, 0.00278686197, 0.00790918246, 0.0226619374, -0.0113901692, 0.0251246765, 0.0178193394, -0.0312578455, 0.0263797268, -0.0435241796, -0.0192401502, -0.00193141517, -0.0087912688, -0.00801574253, 0.00497579901, 0.0390249453, -0.0198676754, 0.0141370706, -0.00743557839, -0.00672517298, -0.00745925866, -0.00204093591, -0.035070356, 0.0103956014, -0.00257670018, 0.0349993147, 0.0410140827, 0.0226737782, -0.00534580182, -0.0102061601, 0.00129279017, 0.0253614783, -0.013343785, -0.0282031018, 0.00106560835, 0.00175973377, -0.015699964, 0.021939693, 0.0147172352, -0.0247931536, 0.0145988343, -0.0340757892, -0.0128109809, 0.0309973639, -0.00951943453, 0.0123965768, -0.0122189755, -0.00615684828, -0.00243757921, 0.0208504032, -0.0272795744, 0.00847750623, -0.0134148253, -0.0357570797, -0.00125430978, -0.0299080741, 0.000950907473, 0.0154513214, 0.0145988343, 0.0242366698, 0.0045554759, -0.0260482039, -0.0250536371, 0.00666597253, 0.0068731741, -0.00661269203, -0.0202820785, -0.0310447235, 0.00518300058, 0.0201991983, -0.00636997, -0.040256314, -0.00510308, -0.00839462597, -0.000488773861, -0.0120295342, -0.0136397872, -0.0216910504, 0.00727573689, 0.00998119824, 0.0270664524, -0.0162209272, 0.00118548935, 0.0137345074, 0.00212085666, -0.00794470217, 0.0192993507, 0.023561785, -0.0102831209, 0.0125149777, -0.0117572127, -0.0355202779, -0.000537244196, -0.00567732472, 0.0054346025, -0.0104666417, 0.000828066492, 0.0124084176, -0.0119940145, -0.0636523366, 0.00775526091, 0.00660677161, -0.00149851176, -0.00474787736, 0.0183995049, -0.0197374355, 0.00597036676, 0.00816374365, -0.00814598426, -0.0101351198, -0.00873798877, -0.0142436316, -0.0205307212, 0.0385513417, -0.000825106457, -0.0268533304, 0.0252904389, 0.00496099889, -0.00332114613, 0.0394511893, -0.000161413773, 0.00262850057, -0.00162653276, 0.00218745717, -0.0026063004, -0.0222001746, 0.00702709518, -0.0294581503, -0.0136397872, -0.00627524918, -0.0369410887, 0.0026255406, -0.0192875117, -0.00847158674, -0.00335962628, 0.0320156105, 0.035615, 0.00440451456, 0.0067014927, 0.00251009967, -0.00628116913, -0.00981543679, -0.0117868129, -0.054748591, -0.0157236438, -0.0095727155, -7.97356261e-05, 0.0145159541, -0.00583420554, -0.02538516, 0.00960823521, 0.0505808778, -0.00558852404, 0.0101943202, 0.00498763891, 0.00632260973, 0.0197611153, 0.0118874535, 0.0219988935, 0.0201636776, -0.00936551392, 0.0194532722, 0.00883270893, 0.0218449719, 0.0224724971, -0.0265454873, 0.00750069879, 0.0152263595, 0.00509124, 0.00234581833, -0.0167537313, -0.00997527782, 0.0194887929, 0.022164654, 0.0232421029, -0.020767523, 0.0122544961, 0.0288187861, -0.00389539055, 0.00305770407, 0.00357274804, 0.00262110052, 0.00928855315, -0.0103186406, -0.0239761882, -0.0107212039, 0.0125386585, -0.00415587239, -0.00433939416, 0.00268178107, -0.0241893101, -0.0468867682, -0.00365562877, -0.0126688993, 0.0234078635, -0.0184468646, 0.00317906495, 0.00800390262, -0.0242958702, 0.00191809505, -0.00148963172, 0.00151849189, -0.0128583405, 0.017760139, 0.0174996573, -0.000939067395, -0.00760726, 0.0368226878, 0.0182574224, 0.0229816195, 0.00679029338, -0.0163038075, 0.00229105796, 0.0248168353, -0.025929803, 0.0106560839, 0.00859590713, 0.00218449719, -0.0101824803, 0.00572764501, -0.000234396837, -0.0169786941, 0.010709364, 0.0105140023, 0.00972663611, 0.0134385051, 0.008341345, -0.00570692495, 0.0187547076, -0.00730533712, 0.00357274804, -0.0123136966, -0.00445187511, -0.0114079295, 0.0113368891, 0.0151789989, -0.00811046362, 0.0200571176, -0.0139121087, 0.00960231572, 0.0273506138, -0.00235321838, -0.0018426145, -0.0105140023, 0.00760726, 0.00993975811, -0.0103896819, 0.02538516, 0.0327260159, 0.00441931468, -0.00034373271, 0.0170260537, 0.0125504984, -0.00704485504, -0.00953127444, -0.0258824434, -0.0354729183, 0.0349282734, -0.00581940543, -0.027326934, -0.00436603418, 0.00837686565, -0.0199742373, 0.0210280046, 0.0368700475, 0.00275282166, -0.026782291, 0.0246984344, 0.0125268186, 0.0320629701, -0.00141193112, -0.0114256898, 0.0198676754, 0.00828214455, -0.013663467, 0.00540500227, -0.0135450661, 0.017535178, -0.00616276823, 0.00236061844, 0.0183166228, 0.0010404482, -0.0156644434, 0.0110468064, 0.0252193976, 0.00738229789, -0.0157710034, -0.0184823852, 0.019903196, 0.0164932497, 0.0211227257, 0.0152500393, 0.0162564479, 0.00319386506, -0.000718545634, 0.0112007279, 0.0195953529, -0.0210990459, 0.00583420554, -0.00131721038, -0.0246037133, 0.00109668856, -0.0129412217, 0.0109698465, -0.00652389135, 0.0417244881, -0.0151434792, -0.00749477884, 0.0156881232, 0.00429499382, 0.0309026428, -0.00188553485, -0.00121952954, 0.0165998098, -0.00457619596, -0.0093595935, -0.00306954398, -0.00710405596, -0.00381547, -0.0312578455, 0.02431955, 0.00622196868, 0.00441931468, 0.0249115545, 0.00219189725, -0.0217502508, 0.00212825672, -0.0200452767, 0.0102120806, 0.0153329205, -0.00249529956, 0.000149388667, -0.0140897101, 0.00803942326, 0.011295449, -0.0208859239, -0.00695605436, 0.0101173595, 0.0133674648, 0.0193230323, 0.00799798314, -0.00584604591, 0.00648837071, 0.00237393868, -0.0276110973, -0.0026270207, 0.0221054535, 0.00684357388, 0.0137463482, -0.011295449, 0.0329628177, -0.00631669, 0.0062930095, 0.0182337426, -0.00902215112, -0.0111474479, -0.0423164926, -0.0116032911, 0.00133941055, -0.0154631613, 0.0150724379, 0.00330338581, 0.0265218075, -0.0181627031, -0.00695605436, -0.000698565505, 0.00363490847, 0.00604436733, -0.0143383527, -0.0141607514, -0.0108988052, -0.000569064461, -0.0158657245, 0.00372962933, 0.0178193394, -0.0138292285, -0.00722837681, -0.00131351035, 0.0111770481, -0.00365562877, -0.000408483204, -0.0166471712, 0.0338389836, 0.0146580348, 0.0253141187, -0.021951532, -0.00994567759, 0.00728757726, -0.0240827482, 0.000845086644, 0.0243669115, 0.00250861957, 0.0231000204, -0.00186629465, -0.00655349158, 0.00631669, -0.000102953309, 0.0224251356, -0.0359228402, -0.00026547708, 0.014847476, -0.0106916036, 0.00483667804, 0.0400195122, -0.0180087816, 0.0197492745, 0.00957863498, 0.00586676598, 0.016883973, 0.0083295051, -0.030026475, 0.0370831713, 0.0426480137, -0.00391019089, 0.00888006948, 0.0260482039, 0.0067014927, -0.0173338968, 0.00773158064, -0.0220107324, 0.0323471352, -0.0206017625, 0.0103837615, -0.0141607514, 0.00651797093, -0.018292943, -0.0219160113, -0.00221409742, -0.0139121087, -0.0112480884, -0.00655941153, -0.013237224, 0.0241419487, 0.0117749721, -0.0379356593, 0.0285583045, -0.0188967884, 0.000868766801, -0.0155460415, 0.0190388691, 0.0149185173, 0.0207793638, -0.00263146055, 0.00948983431, 0.0179140605, -0.00218893727, 0.0179614201, 0.000458433584, 0.00719285663, -0.00148223166, 0.00384803023, 0.0219870526, -0.00719877658, -0.0127044199, 0.0058845263, -0.00593188638, 0.0132727437, -0.00253674, -0.000461393618, 0.0116151311, 0.00980359688, 0.00791510195, -0.00164577295, 0.0167182107, 0.00709813554, 0.000498763926, -0.0119821737, -0.008661028, -0.001405271, 0.000434383401, -0.00812822394, -0.0113132084, 0.000192771506, 0.00719285663, -0.00219485722, -0.00351650757, 0.000436973438, -0.00175825378, 0.0258824434, -0.00790326204, -0.000607174763, -0.0210161656, -0.0123136966, -0.018506065, -5.8229205e-05, 0.022389615, 0.00126985, 0.0114967301, 0.00293486309, -0.0178548601, 0.0102890404, -0.00723429676, 0.0207320023, -0.0301685575, 0.00980359688, 0.0132845845, -0.0124439374, 0.00395755097, 0.0269243717, -0.0122781759, 0.00202021585, 0.0201873574, 0.00131203025, -0.0121716158, 0.00741781807, -0.0174522977, -0.0158183649, -0.0056714043, -0.015924925, -0.0148948366, 0.00639365, -0.00520964107, -0.00215637684, 0.00151849189, -0.00603252742, -0.0084360661, -0.0133319451, -0.000766646, -0.0161262061, 0.0282031018, -0.0114375297, 0.0195006337, -0.0205780808, 0.00573948491, 0.018944148, -0.0288187861, 0.00589340646, 0.00521852076, 0.0094543146, -0.00326194568, -0.0436662622, -0.0108514447, -0.0197847951, 0.0107330438, -0.0181035027, -0.00250861957, 0.0142436316, -0.00891559, -0.00479523744, -0.000439193449, 0.012586019, 0.00673109293, 0.00118918938, 0.000549824326, -0.00680213328, -0.0429084972, -0.018067982, -0.0211819261, -0.00211789669, -0.0217620898, 0.0061864485, 0.00993383769, 0.00239317887, 0.0222830549, 0.00629892945, 0.00215933705, 0.0186363067, -0.00699749496, -0.0173694156, -0.0120887347, -0.00417659292, -0.0376041345, 0.0283925422, 0.00785590149, 0.00811638404, -0.0399011113, 0.0229934603, -0.00529252132, 0.00684357388, 0.00187961478, -0.00784406159, -0.0238696281, 0.0240472294, -0.00516524073, -0.0182219036, 0.0215371288, -0.0139594693, 0.0202465598, 0.00125578989, 0.0123018567, -0.0250773169, 0.0125741791, -0.00488995854, 0.0324418545, 0.00259446027, -0.0136279473, 0.00655941153, 0.0426953733, 0.0190507099, 0.0138292285, 0.0162327681, -0.00956679508, -0.0237157065, -0.0244616326, 0.00369114894, -0.0111711277, -3.77402976e-05, 0.0224961769, 0.0172391757, 0.00132387038, 0.00885046925, -0.0115144905, 0.0223540962, -0.00735861761, 0.00652389135, -0.0241301097, 0.00091316714, -0.000476933754, -0.0170734134, 0.000139398588, -0.00468867691, -0.0110527268, -0.0277768578, -0.00339218671, 0.0157354828, 0.0105140023, -0.00148001162, 0.00723429676, 0.0173102152, 0.0116743315, -0.00816374365, -0.000687465421, 0.00201873574, -0.0110941669, 0.0140186697, -0.00133053039, -0.0140897101, -0.00344842696, 0.0120709743, 0.00114330894, -0.0295055117, -0.00948391482, 0.00548492325, -0.0191217493, 0.0229342598, 0.0229934603, 0.0456317179, 0.00126985, -0.00148001162, 0.00863142777, 0.00202169595, -0.0350229964, -0.00373258931, -0.0144567536, -0.0236091446, -0.00116772915, -0.0270664524, -0.00467091659, -0.0323471352, -0.0107863247, 0.0284162238, -0.0176535789, -0.00184113439, 0.0214068871, 0.0364911668, 0.0345730707, 0.00888599, -0.0172746964, 0.00572764501, -0.00963191595, -0.0164222084, 0.0104192821, 0.00345138717, -0.0117631322, -0.012917541, 0.00547012314, -0.00448739529, -0.000995307812, -0.0087794289, 0.0114789698, 0.0274690147, 0.023774907, -0.0173102152, 0.0127517805, -0.0200807974, 0.0198439956, 0.00850710645, 0.00918199215, 0.00225405768, -0.0025397, -0.013343785, 0.00321754534, 0.0292923898, -0.00481003756, 0.0164103694, -0.0343836285, -0.000394423085, -0.00502019934, -0.0112244077, 0.00253674, -0.0157354828, -0.00433347421, 0.00975623634, -0.00286974246, 0.00338330655, 0.00143043126, -0.00278538186, 0.0188020673, -0.00310210441, -0.00494915899, 0.0123847369, 0.00607988751, 0.0134740258, -0.0232302621, 0.0206491221, -0.0193111915, 0.00454067579, 9.41657418e-05, -0.00116772915, -0.0124912979, -0.00534876203, -0.00295854313, 0.00948391482, 0.00194029522, 0.00354314782, 0.00238281861, 0.00232657837, -0.0121834558, 0.00822886452, -0.0128938612, -0.00864326768, -0.000959047524, -0.0166590102, 0.00937143341, -0.000681175326, 0.0087912688, 0.00960823521, -0.00537540205, 0.0169431735, -0.0136397872, 0.0256930012, -0.0130833024, -0.00779078109, 0.00858406723, 0.00795062259, -0.00559148379, 0.000434013404, 0.0153210806, -0.00686725369, -0.00882086903, 0.032607615, 0.0102120806, 0.0176180582, 0.0260955654, 0.0165642891, 0.0144922733, 0.00672517298, 0.0148001164, 0.01668269, 0.0151434792, 0.00317906495, -0.0047922777, -0.0309973639, -0.000485813798, -0.00175085373, -0.00144893141, 0.00211789669, -0.0209332835, 0.0130596226, 0.00140749104, 0.00147261156, 0.0116920918, -0.0283215027, -0.0118223326, -0.0152026797, -0.00478339754, -0.0347625129, 0.00718693621, -6.42301893e-06, -0.0220225733, -0.0110172061, 0.00307546416, 0.0227685, 0.00798022281, 0.0145396339, -0.0145396339, 0.0154631613, 0.0140305096, 0.00838870555, -0.0261902846, -0.0104429619, -0.0122308163, -0.00578092551, -0.0243669115, 0.00104266813, 0.00375922956, 0.0130122621, -0.0377225354, -0.00899847, -0.0199268758, -0.00413811253, -0.0120354546, 0.00507051963, -0.023786746, -0.0169905331, -0.00910503138, -0.00318202493, -0.000131813533, 0.0153566, 0.010537683, -0.00258558034, 0.0258587636, 4.34522153e-05, 0.00629892945, 0.0084360661, 0.0144922733, -0.014634355, 0.00807494298, -0.00992199779, 0.00716917636, -0.000945727399, -0.00396347092, 0.00388059043, 0.0295055117, 0.0150250783, 0.00253525982, 0.00202909601, 0.0102298399, 0.00714549609, -0.0142317917, 0.00358458818, 0.0226027369, -0.00289934268, -0.0131780235, 0.00592300668, -0.0310920831, -0.0121242553, -0.000839166576, 0.0139121087, 0.00238873879, -0.00556188356, -0.00964967534, -0.0166234896, -0.000474713714, -0.00373850926, 0.015167159, -0.0151789989, -0.00220077718, 0.00263886061, 0.0118519329, 0.003442507, -0.00122544961, 0.000108780856, 0.0154513214, 0.0121242553, 0.00932407286, -0.0262139663, -0.0137818679, 0.0119288936, -0.0258114021, -0.0278479, 0.0340757892, 0.00215785694, 0.0216792095, 0.0017567738, 0.0100344783, 0.0022496176, 0.000455473579, 0.0151789989, 0.00350170746, 0.0107508041, -0.0385750234, -0.0132135432, -0.0135805868, 0.00439859461, 0.0033773866, -0.0295765512, -0.0249825958, -0.00232065818, 0.0233131424, 0.00686725369, 0.00309322425, 0.00679029338, 0.00679029338, 0.019796636, -0.01915727, 0.00533396192, 0.00525996136, -0.00564772449, 0.00178193394, -0.0224488154, 0.00405819202, 0.00436899439, -0.0278952587, 0.0224724971, -1.55979342e-05, 0.0283925422, 0.00940695405, 0.00482779788, 0.00118178932, 0.00645877048, -0.0148829967, 0.012917541, 0.00260778051, -0.00960231572, 0.0119584939, -0.0106087234, -0.0147527559, 0.0122900167, -0.0101884, 0.00188257475, -0.0180561412, 0.00418843282, 0.0387881435, -0.021513449, 0.00627524918, -0.00383915, 0.00417363271, 0.0127991401, -0.00156437221, 0.0067014927, 0.000172976361, -0.00558852404, -0.00222741743, -0.0104488824, 0.0317077674, -0.00106930838, -0.00262258062, 0.0111948075, -0.00731125753, -0.0272558946, 0.0503914356, -0.0134858657, 0.00864326768, -0.0430742577, 0.0236446653, -0.00278982194, -0.00243165903, 0.0105080828, -0.008341345, 0.0111237671, -0.00983319711, -0.0197255947, -0.0301922373, 0.0324418545, 0.0295765512, 0.0136397872, 0.0103068007, 0.00564180408, 0.0275874157, 5.0066019e-06, -0.00350170746, 0.00693237456, 0.0303106382, 0.00522148097, 0.00266846083, 0.00273358147, -0.00278834184, 0.0010064079, 0.00263886061, -0.0047389972, -0.00741781807, -0.000411443238, 0.00301774358, -0.0104252016, 0.0151434792, 0.00673701288, -0.0115085701, -0.022377776, 0.00977991708, -0.000323382526, 0.0150487581, 0.0229816195, 0.00308434409, -0.0237275455, -0.00835318584, -0.0042653936, -0.00698565459, -0.017973261, 0.023786746, -0.0159367658, 0.00772566069, 0.00743557839, 0.0221409742, -0.00815190375, 0.00390427071, -0.0208504032, -0.0112125678, 0.0192756709, 0.0102831209, -0.00348690734, -0.0232894626, -0.00868470781, -0.0161735676, -0.00722245686, -0.0141607514, -0.0202347189, 0.00415587239, -0.00422099326, 0.003924991, -0.0215963293, -0.0249825958, -0.00347506721, -0.0108869653, 0.00944839418, -0.00870838854, 0.0290319081, 0.0021637769, 0.0268059708, 0.00527180126, -0.00693237456, 0.0311394446, 0.00489291828, 0.00339514669, -0.00552340318, 0.0167418905, -0.0101884, -0.00929447263, -0.0060680476, 0.0118164131, -0.00668373238, 0.0142317917, -0.0062930095, -0.00352242752, 0.00499651907, -0.0236328263, -0.0310210437, 0.0309736822, -0.000337627658, 0.0158657245, -0.0124202576, -0.0127517805, -0.0105909631, 0.0208030436, 0.00125504984, 0.0056714043, 0.00794470217, -0.00569508458, 0.0173575766, -0.00353722787, 0.0108869653, -0.012159775, -0.0240472294, 0.018932309, 0.00381547, -0.00748293893, 0.00138603093, -0.00879718922, 0.0180206206, 0.00839462597, -0.0205899216, -0.00050061394, 0.0246510729, 0.00867878832, -0.0061864485, 0.0193111915, -0.0102120806, -0.00695013441, 0.00679621333, -0.0284399036, 0.0105199227, -0.0172628555, 0.0169668533, 0.010815925, 0.0115144905, -0.0100995991, 0.0117749721, 0.00233397842, -0.00715141604, -0.00119732937, -0.00718693621, -0.0192993507, 0.0109698465, 0.0224724971, -0.00641733035, 0.00691461423, -0.0019610154, -0.0141370706, 0.0140305096, 0.00953719486, -9.74148224e-06, -0.0150842788, 0.0201518387, 0.0083295051, -0.0049106786, -0.00232657837, -0.0127636204, 0.000992347836, 0.00863734819, 0.012372897, 0.00827622507, 0.0433110595, 0.00458803587, 0.00299406354, -0.0102002397, 0.00467091659, -0.0112362485, -0.0194414333, 0.0110349664, 0.00941879395, 0.00190477492, -0.000916867168, -0.0381014198, -0.00195361534, -0.00915239193, 0.012479458, -0.00678437343, 0.01145529, -0.00509716, 0.00304586394, 0.0100167189, 0.00837094523, -0.0052540414, 0.00723429676, -0.0127754603, -0.0017538137, -0.0255509205, 0.0138529083, 0.00334482617, 0.01668269, 0.00568620441, 0.0141370706, -0.00546420272, 0.011733532, 0.00710997591, 0.00205129618, -0.00696197478, -0.0201755185, 0.0167892519, -0.010922486, -0.00282682222, 0.0335548222, 0.0236801859, 0.00859590713, -0.0145396339, 0.0165642891, -0.000948687433, 0.00836502574, 0.00674293283, 0.00396347092, -0.00276762177, 0.0164103694, 0.00393091096, 0.00136383076, -0.00985095743, -0.0017567738, -0.0107863247, 0.00863734819, 0.000491733837, 0.00119584939, 0.0059614866, -0.00203353586, 0.00384507026, -0.0122900167, -0.000509864, -0.00140453107, -0.0126807392, 0.0208977647, -0.0226145778, 0.0179140605, -0.0174878165, 0.022377776, -0.0213476866, 0.0187428668, 0.0240590684, 0.0147764357, 0.0235262644, -0.017547017, 0.0140541904, 0.00930039305, 0.0104488824, 0.0046738768, -0.0158065241, -0.00462355604, 0.0167655721, 0.0221172944, -0.0392854288, 0.0164340492, 0.0135095464, 0.0092411926, 0.0166234896, -0.0232894626, 0.0168602914, -0.0184705444, 0.00930039305, 0.0147290751, -0.0175233372, 0.0110645667, 0.0044607548, 0.00745333824, -0.000956827484, 0.0149066765, -0.00350762741, -0.0208977647, -0.0311868042, 0.0150961187, 0.0101173595, 0.00204981607, 0.0208622441, -0.00890967, 0.0231592208, 0.010496242, -0.00713957613, -0.0185652655, 0.00837094523, -0.0158657245, 0.0253377985, -0.00122174958, -0.00146447145, 0.0369647704, -0.0122544961, -0.00625748886, -0.00177897396, 0.00201577577, -0.0179969408, 0.00553228334, 0.00216821698, -0.00714549609, 0.00267142104, 0.00514156045, 0.00112850883, 0.00924711209, 0.00401675142, -0.00848934706, -0.00388059043, -0.00200985582, -0.0182574224, -0.0183876641, -0.0140068298, 0.00450811535, -0.00364082865, 0.00824662484, -0.00753029902, -0.00959639531, 0.0282504614, 0.0109876059, 0.0019417752, 0.0101943202, -0.0183758233, -0.00401675142, -0.00597332697, -0.00352538773, 0.00705669541, 0.000638995, -0.016895812, 0.0201755185, -0.0049728388, -0.00903399102, 0.00524220103, 0.00755989924, 0.00246125925, 0.0142199518, -0.0159486048, -0.006133168, -0.00925895292, -0.0094543146, 0.00144893141, 0.00708629563, -0.00229401793, 0.0324655361, -0.00384803023, -0.00194769527, 0.00252341968, 0.0244853124, -0.00332706608, 0.0166945308, 0.0207083225, -0.000384803017, 0.0203649607, -0.00486035831, 0.0106205633, 0.0246747527, 0.0146225151, 0.00422987295, 0.0156881232, -0.00949575473, 0.00950167421, 0.0031198645, 0.0135450661, -0.0195243135, 0.0110231265, -0.0188020673, 0.0043837945, -0.00480115786, -0.0135805868, -0.0179377403, 0.0145633146, 0.0143383527, -0.00130833022, -0.0119407335, 0.00409667194, 0.0197611153, 0.0257403627, -0.00174493366, 0.00827622507, -0.0168247726, -0.0421033688, -0.0143975532, -0.00992199779, -0.00817558449, 0.00950167421, -0.00271730125, -1.14296208e-05, 0.0134266652, 0.00986871775, 0.00113294891, 0.0155460415, -0.00273802155, -0.000703745522, 0.0309973639, -0.0281557404, 0.0268296506, -0.00776118087, 0.00157325238, -0.0113250492, -0.0118815331, 0.027753178, -0.0124557773, 0.0171444546, 0.000717065646, -0.00909319147, 0.0208977647, 0.0198795162, -0.0141725913, 0.00114478893, 0.0182100628, 0.00576020498, 0.025716681, 0.0193230323, 0.0011914093, -1.70432595e-05, 0.00681397365, 0.00953127444, -0.00534876203, -0.00478339754, 0.00753621897, 0.00533100171, 0.0108869653, -0.0237157065, 0.00616276823, -0.0173930973, 0.00734085776, -0.00758949947, -0.030452719, -0.0272795744, 0.00894519, -0.006133168, 0.00540500227, -0.00330930599, -0.00993383769, -0.00446963497, 0.0230289809, 0.00963191595, -0.00466203643, 0.0104548018, 0.0122544961, -0.010762644, -0.0244379509, -0.00373258931, -0.0203649607, -0.0528068133, 0.00195953529, -0.01668269, -0.0113250492, -0.0232065823, 0.0195243135, 0.00806902349, -0.00587564614, 0.0165406093, -0.00703893509, 0.00327674579, -0.0114493696, -0.00524812099, -0.0200334378, 0.0286056641, 0.0108455252, 0.0255272407, -0.00377106969, 0.012106495, -0.000436603412, -0.00861366745, 0.00321754534, -0.00824070442, -0.00269954116, -0.0137818679, -0.0178903807, -0.0012173095, -0.00906951074, 0.000599404681, -0.0204596799, -0.00622788863, 0.000445483485, 0.0249825958, 0.00716325641, -0.0106975241, -0.0228395388, 0.0178667, -0.0245089922, 0.000945727399, 0.00989831798, 0.0108869653, -0.00244941912, 0.00219189725, 0.00330930599, 0.000893927, 0.0269954111, 0.00819334388, -0.0236683451, -0.0213240068, 0.0244379509, 4.92103864e-05, -0.00457323575, 0.0120768948, 0.00986871775, 0.00737045798, 0.00562404422, -0.00366154872, -0.00466499664, 0.00399899157, 0.00954903476, -0.00239465875, -0.0169550125, 0.029150309, 0.00584604591, -0.0210161656, -0.00317610498, -0.000712625566, 0.0117394524, -0.0337679461, 0.0130714625, -0.0316130482, -0.0172391757, -0.00170941337, -0.00711589586, -0.0120354546, 0.0173694156, 0.0083295051, 0.0141252307, 0.00826438516, 0.00492251851, 0.0141962711, 0.0029689034, 0.018292943, 0.0108277649, 0.000973847636, 0.00070744555, 0.00715733599, -0.0156881232, -0.0159486048, -0.0245800335, -0.0287477449, 0.00165317301, 0.00581348548, 0.00204981607, -0.0449686721, 0.0155578824, -0.00521556102, 0.0165287703, -0.0155578824, -0.0114908097, -0.0136753069, 0.00696197478, 0.0173102152, -0.0030991442, -0.0094779944, -0.00908135157, 0.0186599866, 0.0255272407, -0.016138047, -0.00458507612, 0.0120650548, 0.0124202576, -0.00343066687, -0.0114967301, 0.0086728679, -0.0241301097, -0.00309618423, -0.0169905331, -0.00628116913, 0.000867286813, -0.00753621897, -0.00584604591, 0.0165761299, -0.0213713683, 0.00766054029, -0.0134740258, 0.0201636776, 0.00551748322, -0.0183758233, -0.00862550735, -0.0142436316, -0.0198203158, -0.00261518057, 0.0272085331, -0.00650613103, 0.0126688993, 0.00698565459, -0.000962007558, 0.00373258931, -0.0345257111, -0.00436307443, -0.00115588901, -0.00975031685, -0.00418547262, 0.00524812099, -0.0111296875, -0.0274453349, -0.0331049, -0.0308316015, 0.01016472, 0.00533100171, -0.00502019934, -0.00922343228, -0.00539020216, 0.00981543679, 0.0039013105, -0.014954037, -0.0139121087, -0.0158657245, 0.00647061085, -0.00740005821, -0.0135687469, -0.000413293252, 0.0115381703, 0.0201399978, 0.000428463361, -0.0062930095, 0.0105199227, 0.0107804043, -0.0122071356, -0.00927671231, -0.00092574727, -0.00592004647, -0.00568620441, 0.0150132375, 0.00209421641, -0.000630484952, 0.000842866604, -0.000298592349, -0.00148371165, 0.0056062839, 0.00806310307, -0.0114493696, -0.00906951074, -0.00407003192, -6.22067382e-05, 0.0270427726, -0.00482779788, 0.00322938524, 0.00671925256, -0.0120887347, 0.0160314851, -0.0200215969, -0.0058430857, -0.00599108683, 0.0186955072, 0.00603252742, 0.00814598426, -0.0222238544, -0.0145396339, -0.00225553778, 0.0440214649, 0.010431122, -0.00667781243, 0.0105909631, 0.0148829967, -0.0312578455, -0.0102357604, 0.00719285663, 0.00433939416, -0.0235854648, -0.000316722493, -0.0012609699, -0.0125741791, -0.00344842696, -0.00216229702, 0.0173694156, 0.00609172788, -0.00333890622, -0.0101055196, 0.00397827104, 0.00622196868, -0.015605242, 0.0146106742, -0.0233960226, 0.035070356, 0.00792694185, 0.00389243057, 0.000847306626, -0.0184231848, -0.00818742439, 0.00999303814, 0.0224369764, -0.0206372812, -0.00449331524, -0.0186363067, 0.0213595275, -0.00632260973, 0.0249352362, 0.013024102, 0.00719285663, 0.0115559306, 0.00411739247, 0.0193585511, 0.00232509826, 0.0108218445, 0.0264507681, 0.0177838188, -0.0322524123, 0.00605028728, 0.00279426202, -0.0285109431, -0.0167774111, -0.00388947059, -0.0194532722, -0.0179377403, -0.0054227626, 0.00760134, -0.0252667591, 0.000104618324, -0.00826438516, 0.0235854648, 0.00621012878, 0.00861366745, -0.0234552249, 0.00351058762, -0.00681397365, -0.0167182107, 0.00412331242, 0.00154513214, 0.0124439374, -0.00699157501, -0.00375626958, 0.015924925, 0.0142554715, 0.00258706021, 0.00899847, 0.011934814, -0.00713957613, -0.0216200091, 0.00512972, -0.00806310307, 0.000670075242, -0.0096911164, 0.0155578824, 0.0219041724, -0.00803942326, 0.0175114982, -0.0133556249, -0.00454955548, -0.0280136596, 0.00428907387, -0.0257640425, 0.00706261536, 0.0117276125, -0.0166471712, -0.0026063004, -0.00450515514, -0.0231118612, 0.00394867081, -0.0104074413, -0.0314709656, -0.00660677161, 0.0119407335, -0.00149333174, 0.00118104927, 0.0112007279, 0.0191217493, 0.0121242553, 0.00828214455, -0.0135687469, 0.00285938242, 0.00581644569, -0.0284635834, 0.00615092833, -8.70894364e-05, 0.00520372065, 0.0117039317, -0.00429203361, -0.00581644569, 0.00142229116, -0.0134740258, 0.0102890404, 0.0105436025, 0.0210043248, 0.013024102, -0.0118400929, -0.000878386898, 0.0253377985, -0.0186836664, 0.00203057588, 0.00619828841, 0.0163748488, -0.0276110973, 0.00677845301, -0.0235025845, -0.0098095173, -0.0176772587, -0.0220462531, 0.0103364009, 0.00516524073, -0.00482779788, -0.0128938612, -0.014740916, -0.00654757116, -0.0198795162, -0.0327733755, 0.00985687692, 0.00449923519, -0.0209332835, 0.00648245076, -0.00171089347, 0.0136279473, 0.00272618141, 0.0135805868, -0.0279899798, 0.012917541, -0.0176299, -0.0183639843, -0.00643509068, -0.00331522594, -0.0135095464, 0.00893335, -0.0225553773, 0.0137463482, 0.0186718274, -0.00565364445, 0.0105909631, -0.000363157858, -0.0195716731, 0.00535468198, 0.0101824803, -0.0129412217, 0.0102298399, -0.00748885889, -0.0201636776, -0.0117808925, -0.00267586089, -0.00456139585, 0.00252785976, 0.00724021671, 0.00046583364, 0.003924991, 0.0220107324, -0.0127162598, 0.000566104427, -0.0196782351, -0.00573060475, -0.013663467, -0.00324714556, 0.00992199779, -0.013237224, -0.0337205827, 0.011295449, 0.00140749104, 0.00624564895, 0.0234433841, -0.00305474387, -0.0219752118, -0.00107818842, -0.0209924839, -0.00396939134, 0.0176654179, 0.00995751843, -0.00482779788, 0.0148948366, 0.00232953834, 0.016351169, 0.00251601962, 0.0205780808, -0.0284162238, 0.0134977056, -0.00172717357, 0.0238577873, -0.001533292, 0.00340106664, -0.00510604028, -0.0143975532, -0.0133911455, 0.012586019, -0.0150013976, 0.0136516271, -0.0029689034, -0.0271611735, 0.0206964817, -0.00477451738, 0.00490771839, 0.00822886452, 0.0109580057, 0.0119703338, -0.00966743566, 0.0274216551, 0.0169313326, 0.00305474387, -0.00295410329, 0.0016872132, 0.0168010909, 0.0334837809, -0.00847158674, 0.0270427726, 0.0307132, 0.00484259799, 0.0163038075, 0.00528660137, -0.0022185375, -0.00555892382, 0.0154513214, -0.00771382032, -0.00697973464, -0.00285938242, -0.00860774796, 0.0261192452, -0.017760139, -0.00512972, 0.0175825376, -0.00431867409, 0.0188612677, -0.00314058457, 0.0106679238, 0.00796838291, 0.00132683036, -0.00792102236, -0.000158731244, 0.0173575766, -0.000186018966, -0.0356860384, 0.0154158007, -0.00110556872, 0.00859590713, -0.0176535789, -0.0225672163, -0.0281794202, -0.0300738364, -0.00734677771, 0.00379178976, 0.0103127211, 0.00385395018, 0.0156407636, -0.0114434501, -0.00241093896, -0.0130714625, 0.00981543679, 0.0152855599, 0.000266402087, 0.0227448177, -0.00207793619, -0.0265928488, -0.016244607, 0.00996343791, -0.00383915, -0.0114612095, 0.00816966407, 0.0271374937, 0.000984207727, 0.00718101626, -0.00569212483, -0.0369884484, -0.00858998764, -0.0177364592, -0.0103008812, -0.00562996417, -0.0279663, -0.0250773169, 0.0160078052, -0.00308138411, 0.0146580348, 0.0216318499, 0.00101232796, -0.0210990459, -0.0131188231, 0.0106087234, -0.0108100045, 0.00962007511, -0.00895703, 0.0221172944, -0.0147172352, -0.0369884484, 0.00957863498, 0.00998711865, 0.0164932497, -0.000328192575, 0.0151789989, -0.000811786391, 0.00346618728, -0.00896887, -0.00236505852, 0.00823478494, 0.00800982304, 0.0282031018, -0.0170023739, 0.0110586472, 0.00957863498, -0.0157236438, 0.0188257471, 0.0151079586, -0.00663045188, 0.0106856842, -0.0127873, -0.016883973, -0.00111740874, 0.0158775654, -0.0239406675, 0.0225316975, 0.0202939194, 0.032276094, 0.000112850888, -0.00150665187, -0.0102772005, -0.00691461423, -0.0194295924, 0.0363490842, 0.0125031378, -0.0208385643, -0.00131869037, -0.0106442431, 0.0211464055, -0.00861366745, -0.00425651344, 0.02173841, -0.0301922373, -0.00781446137, 0.0194295924, 0.0190033484, 0.0183521435, -0.0152618801, 0.00889190938, 0.0145869944, 0.00862550735, -0.000937587349, -0.0246510729, -0.0248168353, -0.00783222169, 0.0275163762, -0.0130833024, 0.00487515843, -0.00716917636, -0.00355498795, -0.0174996573, -2.20614238e-05, -0.0146817155, 0.00460875593, -0.0270427726, -0.0206964817, 0.00888599, 0.017097095, -0.0205780808, 0.00140675099, -0.00778486114, 0.0153329205, -0.0174641367, -0.00616276823, -0.005487883, -0.0110941669, 0.00321754534, 0.0271848533, -0.0101469597, 0.00910503138, -0.00636997, -0.0145988343, -0.0137345074, -0.0151197985, 0.00505276, 0.00113294891, 0.00308138411, 0.0139357895, 0.0115736909, 0.00692645414, -0.00585196586, -0.0032708256, 0.00686725369, 0.0282741413, 0.0280610193, -0.0412035249, 0.0250536371, -0.0114493696, 0.00578388525, -0.00950759463, -0.00286826259, -0.00537540205, 0.00517116068, 0.00672517298, 0.0101469597, -0.000876166858, 0.000143653626, 0.0305000786, 0.000657125143, 0.02431955, -0.0057779653, 0.00380363, -0.0158420447, 0.00347210723, 0.00701525481, -0.0131425029, -0.00346914725, 0.0119584939, -0.00425059348, -0.00294226315, -0.00999895856, -0.0300975163, 0.0158420447, 0.0225435365, -0.013770028, 0.00880902912, -0.00960231572, -0.00417363271, -0.0148237962, 0.0045554759, -0.0091227917, -0.0163038075, 0.0131780235, -0.00948391482, -0.00599404704, -0.016670851, -0.00145929144, -0.00565068424, 0.0188139081, -0.00795062259, -0.00525996136, 0.00273950142, -0.00352242752, -0.00122618966, 0.00146299147, 0.00396347092, -0.00152737193, 0.0216910504, 0.00625748886, -0.0189559888, -0.00742373802, -0.0181035027, -0.0207556821, 0.00895703, 0.0022510977, 0.00683765346, 0.0341941901, 0.00416179281, 0.00278390176, -0.00224073767, 0.023123702, 0.0324418545, 0.00207053614, 0.00228069793, -0.00330634601, 0.00527772121, 0.0105436025, 0.000187961472, 0.0031524247, -0.00119732937, -0.00575724524, -0.00740597816, -0.0160314851, 0.0134385051, 0.013770028, 0.00195509545, 0.00584604591, -0.00719877658, -0.00123580964, 0.0185534246, 0.0260955654, 0.0136753069, -0.00351058762, 0.0120176943, -0.00938919373, -0.0025071397, -0.00828214455, 0.0143028321, -0.0119762542, -0.00534876203, 0.0128701814, -0.0146580348, 0.00645877048, -0.0172391757, 0.0217502508, 0.0041588326, 0.0111711277, -0.0108573651, 0.0111119272, -0.00920567196, 0.010431122, -0.00236505852, -0.00177157391, -0.00104414823, 0.00182929437, 0.00300590368, -0.0161143672, -0.001789334, 0.000190551495, 0.010709364, -0.0095845554, -0.0336021818, -0.000111833375, 0.00874982867, 0.00976807624, -0.00835910533, -0.013450346, 0.0266638901, 0.00195805542, -0.00572764501, 0.0231710616, -9.99007825e-05, 0.00209717639, 0.0202583987, 0.0215608086, 0.0121005746, 0.0237157065, -0.0267112497, -0.00483667804, -0.00103526807, -0.016149886, 0.00956679508, -0.0173812564, 0.0153921209, -0.00527476147, 0.0159841254, 0.0183047839, 0.0146817155, 0.00411443226, -0.0011588491, 0.00530436169, 0.00823478494, 0.0176891, 0.00533100171, 0.0122071356, -0.00207645632, -0.024745794, -0.00402563158, 0.0010404482, -0.0181508623, 0.00671925256, 0.0367042869, 0.0228158589, 0.00255598, 0.00469459686, 0.0104429619, 0.00612724805, -0.0176417381, 0.0247694738]
07 Jul, 2022
Difference between Couchbase and MariaDB 07 Jul, 2022 1. Couchbase : Couchbase Server is an open-source, distributed multi-model NoSQL document-oriented database software package that is optimized for interactive applications. It is also known as Membase. It was developed by Couchbase, Inc. and initially released on August 2010. 2. MariaDB : MariaDB is an open source relational database management system (RDBMS) that is a compatible drop-in replacement for the widely used MySQL database technology. It is developed by MariaDB Foundation and initially released on 29 October 2009. MariaDB has a significantly high number of new features, which makes it better in terms of performance and user-orientation than MySQL. Difference between Couchbase and MariaDB : S.NO. Couchbase MariaDB 1. Developed by Couchbase, Inc. and initially released on August 2010. Developed by MariaDB Foundation and initially released on 29 October 2009. 2. Couchbase is written in C++, Erlang, C and Go languages. MariaDB is written in C, C++, Perl and Bash languages. 3. The primary database model for Couchbase is Document Store. The primary database model for MariaDB is Relational DBMS. 4. The secondary database model for Couchbase is key-value store. The secondary database model MariaDB is Document Store and Graph DBMS. 5. Couchbase supports Map Reduce method. MariaDB does not supports Map Reduce method. 6. There is no Foreign Keys in Couchbase and hence no Referential Integrity. MariaDB provides the concept of Referential Integrity and have Foreign keys. 7. Couchbase is Data Schema free. In MariaDB the data schema supports dynamic columns. 8. Couchbase only supports Declarative query language (N1QL) that extends ANSI SQL to JSON. MariaDB has many queries similar and the working is also similar to SQL i.e it supports SQL. 9. Server operating systems for Couchbase are Linux, OS X and Windows. Server operating systems for MariaDB are FreeBSD, Linux, Solaris, Windows. 10. Famous companies like Lockwood Publishing, Code Weavers, MSLGROUP, The Doyle Group, etc uses Couchbase. Famous companies like CUNY, Accenture, Docplanner, Grooveshark, Northrop Grumman, uses MariaDB. 11. CouchBase only supports sharding. MariaDB supports horizontal partitioning and sharding. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB
https://www.geeksforgeeks.org/difference-between-couchbase-and-mariadb?ref=asr10
Languages
Difference between Couchbase and MariaDB
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0293291118, -0.0167393964, -0.0241478682, 0.0367610268, 0.0115229879, -0.0156843923, -0.0069395816, -0.0080238916, -0.0510621928, 0.0132461609, 0.0389882587, -0.0526095331, -0.00512556126, -0.0145473331, -0.0162118953, -0.00686338684, 0.005160728, -0.00346686039, -0.011435071, 0.0165518411, 0.0265392121, -0.00677547, 0.0214634705, -0.0213228036, 0.0195879079, -0.00387420901, 0.0357998, -0.00607799506, -0.00236057141, -0.00368372235, 0.0288602207, -0.0107082902, 0.0069395816, 0.00020825339, -0.0206780788, -0.0268439911, -0.0142308315, -0.0308764502, -0.00938953552, -0.0134688839, 0.0288133305, 0.0150279459, -0.013773663, -0.00534242298, -0.0198692419, 0.00996978767, -0.0318845659, -0.0363624692, -0.0315563418, -0.0441460572, -0.0025305443, 0.00644724676, 0.0205725785, -0.00175540941, 0.00551532628, 0.00187556259, -0.0270549916, 0.0248980932, -0.00225800159, -0.00268879486, -0.0293056667, -0.00682822, -0.00706852693, -0.0332677923, -0.0277817715, 0.0515310839, -0.0120973792, 0.0200567972, -0.0114878211, -0.044239834, -0.0209359676, 0.0409107096, 0.018474292, -0.0263047665, 0.00300090015, -0.0162353385, 0.0399963744, 0.000696742209, 0.0210649129, 0.0407466, -0.00169093697, -0.00460685091, -0.0227411967, -0.00379508385, 0.00558566, -0.0581893325, -0.0196582414, -0.0535473153, 0.0284382179, 0.00538638141, -0.00453944784, -0.0247808713, 0.00831108727, 0.00762533443, 0.00311226165, -0.01975202, 0.0132930502, 0.00732055539, 0.00872722734, 0.0323769, -0.0192010719, -0.000813232269, 0.0413796, -0.0122263236, 0.01282416, -0.0172434542, 0.0193182956, 0.0376988091, 0.012660048, 0.0388241485, 0.00790666882, 0.0169621203, -0.0264219884, 0.0457637273, -0.0228584204, -0.00763119571, 0.023456255, -0.00480612926, -0.013492329, -0.0535942, -0.0391758159, 0.00546550658, -0.0507339686, -0.0116226273, -0.0471938439, 0.0335725732, 0.0092840353, -0.00512556126, 0.00869792141, 0.0308061168, 0.0176654551, -0.00274301041, -0.0158719495, -0.0071505825, 0.0248277597, 0.0418016, 0.047662735, 0.0699116, -0.0129296603, -0.00482078223, 0.0159188379, -0.0363390259, -0.00032181284, -0.0477096252, 0.0148521122, 0.0140901646, 0.0383787, 0.0124959359, 0.00116783078, 0.0103976503, -0.0284851082, -0.0541099831, 0.0553759858, 0.0157781709, -0.0332677923, -0.00509332493, 0.000238108536, -0.0136564402, -0.0199747421, -0.00311519229, -0.0312984511, -0.0105559006, 0.0488584079, 0.00269905198, 0.0184508469, 0.0539693162, -0.0262813214, -0.0172903426, -0.0428800508, 0.0202795211, -0.0296573341, 0.0199981872, -0.0155085586, 0.0273597706, -0.0285085514, 0.0228584204, 0.0310874507, -0.0171027873, 0.0302903373, 0.0106496792, -0.00352547155, -0.0438412763, -0.00474751787, -0.0526095331, 0.0323065668, -0.00306830322, 0.0225184746, 0.0157664493, 0.000793450919, -0.00304485881, 0.00143304712, 0.00217301515, 0.0287664421, -0.0252028722, 0.00802975241, -0.000693445327, -0.0165987294, 0.0431379415, 0.0228935871, -0.0233624764, 0.0127655482, -0.0452010594, -0.00893822778, 0.0290008876, 0.0593146682, -0.00806491915, 0.030384114, -0.0336663499, 0.0339242406, 0.00462443428, -0.0658791363, 0.0307357833, 0.0100635663, -0.0203615762, 0.0323300101, 0.0113354316, -0.0307357833, -0.0327051245, -0.000427496416, -0.000626408611, 0.038730368, -0.0192596838, 0.011212348, 0.0124842143, -0.0178530123, -0.0144652771, 0.0134454397, -0.00017913089, 0.011517127, 0.00684580347, 0.0642380193, 0.0248512048, -0.0113061257, 0.010848958, -0.0105148731, -0.0224129744, 0.0656915829, -0.0346275754, -0.05124975, 0.0292353332, 0.00612488436, 0.051999975, -0.00221843901, -0.0119391289, 0.020197466, -0.00427569682, 0.0116050439, 0.00655274699, -0.00865103304, -0.0270549916, -0.0382614769, -0.0410748236, -0.0179702342, 0.0266564339, -0.0357294679, -0.0198340751, 0.0172669, 0.00999323186, 0.0318376757, -0.00676374789, -0.0167393964, -0.0296573341, -0.0223309174, 0.0426924936, 0.0130703272, 0.0588926673, -0.0208773576, -0.0167628415, -0.00810594764, -0.000521640875, 0.0189666264, -0.00474458747, 0.0128358817, 0.00295840693, 0.00509332493, -0.0210297462, -0.0503119677, 0.0171496756, 0.0259999875, 0.0230342541, 0.0114819603, -0.0189900715, 0.0301731136, 0.00218327204, -0.00863931049, 0.00269905198, 0.00658205245, 0.00125574775, 0.0169152301, -0.00756672304, -0.0577673279, -0.0381208099, 0.0167393964, 0.0228115302, 0.00243530096, -0.0301027801, 0.0225301962, 0.0240775347, -0.0131172165, 0.0228935871, -0.029633889, -0.0197637416, -0.016610451, -0.0406059325, -0.0243354253, -0.025484208, -0.00451893359, 0.0276645496, 0.00323241507, -0.0198223535, 0.00121178932, -0.0366906933, -0.0211000796, 0.00337308226, 0.025038762, 0.0421298258, -0.000629705493, -0.028742997, -0.00224334886, -0.009682592, 0.0403480418, 0.0230459757, -0.0384959243, 0.0036280416, 0.00451307278, -0.0697240382, -0.0314156748, 0.0294228885, -0.000659011188, -0.00718574924, -0.0275707711, -0.0479440689, 0.0130117163, -0.000690881105, 0.006816498, -0.0518124178, 0.00725608319, 0.00963570271, -0.00224627927, 0.0262578763, -0.0133516612, 0.00454237824, -0.040394932, 0.01282416, 0.0402542651, 0.0298917796, -0.0302200038, -0.0133399395, 0.0409576, -0.038871035, 0.000722384662, 0.0038214589, -0.00747294491, 0.014828667, 0.00256278063, 0.0374878086, -0.00145356101, -0.0389648154, -0.0478268489, 0.0722091645, -0.00336429058, -0.0231866427, 0.00514607504, 0.0028353231, 0.020197466, -0.00334084593, 0.0147700561, -0.0103449, 0.0224598628, 0.0200685207, 0.00922542345, 0.0168683417, 0.0287898872, -0.0202795211, -0.0198223535, 0.0111537362, -0.00408814056, 0.0204788, 0.0241713133, 0.00306830322, 0.00726780528, 0.00148946047, -0.0298448913, 0.0556573197, 0.025484208, -0.0460685082, 0.0580017753, -0.00536879804, -0.0243588705, -0.0149810566, -0.0347448, -0.0177592337, 0.0127889924, 0.00154440862, -0.0340180174, -0.0365031362, 0.0115874605, 0.00479440717, 0.00365441665, -0.0245229807, 0.0183922369, 0.0305482261, -0.0523750857, 0.0255779848, -0.0226943083, -0.00943642482, 0.0123904357, -0.0326816775, -0.0163760055, 0.0307592265, -0.0477565154, -0.0217565261, -0.0182984583, 0.00750811165, 0.00458633667, 0.0283209961, 0.0156257804, 0.00674616452, -0.0124138799, 0.0450603925, -0.00260820426, 0.010684846, -0.0119332671, -0.0219440833, 0.0108137913, 0.0332677923, 0.00468890648, 0.0150865568, 0.00845175423, 0.0190252382, 0.00993462093, 0.014383221, 0.0126483254, -0.0202678, 0.00702163763, -0.065222688, 0.0160126165, 0.00614246773, 0.00149092579, 0.00920197926, -0.0107962079, 0.0339711271, 0.0234210882, -0.0192010719, -0.0598304495, 0.0341821276, -0.0315563418, -0.01355094, 0.00689855404, -0.0342290178, -0.00578493858, 0.0152506689, -0.0136681627, 0.0168097299, -0.00986428745, 0.0170441754, 0.0271956585, 0.0207249671, 0.0379332528, 0.0129531045, 0.00136710936, 0.00536879804, 0.00976464804, -0.0169386752, 0.00385369523, 0.00771911256, 0.0176654551, 0.0061131618, -0.00529260328, 0.0052720895, 0.0321893431, -0.0131406607, 0.0309467837, -0.0191893503, -0.00350788818, 0.0183922369, 0.0197754633, 0.00733227795, 0.0133751063, 0.0359873585, -0.00547722913, 0.0378629193, -0.010432817, 0.0234210882, -0.009682592, 0.0028954, -0.0184508469, 0.00637691282, -0.0243823137, -0.0100752879, 0.0151803354, 0.00118834479, -0.0116988216, -0.048436407, 0.0090906173, -0.0260234326, 0.00783047359, 0.00943642482, -0.00848106, 0.043067608, -0.0200099088, 0.000309541094, -0.0202912427, 0.0211000796, -0.0432317182, 0.0244057588, -0.00542154815, 0.036057692, 0.00173636072, -0.000222906223, -0.00466253143, 0.0150982793, 0.00649999687, 0.011353015, -0.0124842143, -0.000537392683, 0.0380504765, -0.00314156734, -0.0195527412, 0.0187439043, -0.00574684097, 0.0289539974, 0.0107610403, -0.00335256825, 0.0350495763, -0.0271253251, -8.965702e-05, -0.00436361367, 0.0267971, -0.0400432609, -0.010573484, -0.000192684762, 0.0222371388, 0.00462150341, 0.00399436243, 0.0017041245, 0.0276879929, 0.0275707711, 0.00626555132, 0.0164580625, -0.0148052229, 0.0176068451, 0.00169679814, 0.00893236697, -0.0288133305, 0.0114292102, -0.00252614846, -0.00331740151, 0.0244995374, -0.0016733536, 0.00887961686, 0.0206077453, 0.0369720273, -0.00602524495, 0.0230225306, 0.0227294751, 0.0171965659, -0.00471821241, 0.019505851, -0.0282741077, 0.0257420968, 0.0450838357, 0.0337366834, 0.0197051298, 0.00146894658, -0.020338133, -0.0064824135, -0.00811766926, -0.0128593268, -0.00944228563, -0.00885031093, 0.0129999937, 0.0133164944, -0.0216041375, 0.023315588, 0.00485008769, -0.0332677923, 0.000461197924, 0.0283209961, 0.0211586915, 0.00338773499, -0.000730443746, 0.00281920517, -0.00958881434, 0.0478268489, 0.00739088887, -0.00363683328, 0.0149458898, -0.00221550837, -0.0209945794, 0.0246636495, 0.00460978132, -0.0029950391, -0.011657794, -0.00860414375, 0.000333901437, 0.00812353101, 0.0130234379, 0.00982325897, 0.0015942282, -0.0150631126, 0.00240599527, -0.0114936819, -0.00263018347, 0.00290419161, -0.00117149402, 0.00956536923, -0.0140549978, -0.0340180174, 0.0310405623, -0.0120270457, 0.00448083645, 0.0148872789, -0.015274113, -0.0216861926, -0.0194237959, 0.034275908, 0.00766050117, -0.0289774425, 0.00647069095, 0.0152037796, 0.0128358817, -0.0195644628, 0.00727952737, 0.0148638338, 0.0225419179, -0.027265992, -0.0168683417, -0.00423759921, -0.0195644628, -0.0382614769, 0.00581131363, -0.0278286599, -0.000703336, 0.0223543625, -0.0140315527, -0.0359639153, -0.000893090153, -0.0155202812, -0.0185563471, -0.0194120742, 0.0252028722, 0.0446383916, 0.0470531769, 0.00311812293, 0.0241713133, 0.0047270041, 0.00421415502, 0.0188259594, 0.0173255093, -0.0195996296, 0.0075315563, 0.0125779919, -0.00221257773, -0.0265392121, -0.0184391253, 0.0233742, 0.0126248812, -0.0186032373, 0.0328692347, -0.00466253143, -0.015942283, 0.0140549978, 0.0071974718, 0.0117808776, -0.0209008, 0.0125076585, 0.0245698709, -0.0179819576, 0.0298448913, -0.0116519332, -0.0266095456, -0.00520468643, 0.00341117964, 0.0104152337, -0.011100986, -0.0157898925, 0.0115288496, 0.000576222665, -0.00842831, -0.0275004376, -0.00458340626, 0.024288537, -0.0133164944, -0.0394805931, -0.00404711254, 0.0160126165, -0.0138674416, 0.00372181972, -0.0272425469, -0.00632416271, -0.0122497687, 0.0155202812, 0.0434427187, -0.00369544444, -0.0224598628, -0.000853527512, -0.000759016781, -0.00676960871, -0.0150631126, 0.0553291, -0.00511383871, 0.00288074696, 0.0120387673, -0.00496144919, 0.0281334389, -0.016000893, -0.0249449834, -0.030688893, 0.0240306463, -0.000851329591, -0.00104914291, 0.000298551488, -0.0240306463, -0.0368782505, -0.0235617552, 0.0028822124, 0.0027840382, -0.00547429826, 0.0170793422, 0.00417898782, -0.0135626625, 0.0223426409, -0.00250270381, 0.00908475649, 0.000131509179, 0.00453358656, 0.0347682424, 0.0119801564, -0.000748759776, -0.0264688786, -0.00866275467, -0.00621866249, -0.00836383738, -0.0495617427, -0.000990531524, 0.0326582342, 0.0171027873, 0.008375559, 0.0136681627, 0.00539224269, 0.0174896214, -0.0106145125, 0.0207366887, 0.0157078374, 0.0153561691, 0.0426456071, 0.00808250252, 0.0088385893, 0.00935436878, 0.0227294751, 0.0287664421, -0.0150748352, -0.0320252329, -0.0136564402, -0.013855719, -0.0113647375, 0.017501343, 0.0109837642, -0.0244995374, 0.00628313469, 0.0243823137, -0.0140198311, 0.0152389463, -0.00539810397, -0.0316501185, -0.0190721285, -0.0297980011, -0.00851036515, -0.00212612608, 0.0138205523, 0.00207337597, 0.0312750079, -0.0120973792, 0.0261406545, 0.0231045876, -0.00988187082, -0.00332033192, -0.0205843, 0.0266095456, 0.00953020249, 0.0304544494, 0.00253494014, 0.0150279459, -0.0022301611, -0.0185915139, 0.0178999, 0.0315329, 0.0244057588, 0.0019356393, 0.0113823209, 0.0142659983, 0.0231280327, -0.00779530732, 0.00992876, -0.00080151, -0.000987601, -0.0309467837, -0.0463732854, -0.0134337172, 0.0337132402, -0.0285554416, 0.0309233386, -0.0297980011, 0.0120504899, -0.0203498546, -0.000612854725, -0.00375698647, -0.0275473259, 0.0167862866, -0.0240540914, -0.0075960285, 0.00302141416, 0.0597366691, -0.0147583336, 0.0302434471, -0.0116460714, 0.0298214462, 0.0277583264, -0.00927231275, 0.0044573918, -0.0107434569, -0.00760775106, 0.00386834797, 0.00795941893, -0.00127626176, 0.0275707711, 0.0116871, 0.0648006871, -0.00443687802, 0.01505139, -0.0271956585, -0.0258827638, -0.000627507572, -0.0402073748, 0.00826419797, 0.0369251408, 0.00248072459, 0.0235031452, 0.014160498, 0.0197989084, -0.0140667195, -0.00236350205, -0.00665238639, 0.0156375039, -0.0067051365, 0.017137954, -0.0164580625, -0.00298478222, -0.0153444465, 0.0325410105, -0.00555049302, -0.0111537362, -0.0115991831, 0.0196934082, -0.0236086454, -0.0059402585, -0.0432317182, 0.0133516612, -0.00159129768, 0.0301496703, -0.00589336967, 0.00620107912, 0.0250622053, 0.0070861103, 0.0124607692, 0.0070509431, -0.0291181095, -0.00331154023, -0.0323769, -0.00641208, -0.0179233458, 0.0239720345, 0.0151803354, -0.00662894174, 0.0249215383, 0.0119977398, 0.0263516549, 0.0343696848, -0.0301496703, 0.0490459614, 0.0354481339, -0.0071974718, 0.00320310937, 0.0414968245, 0.0350495763, -0.0376284756, -0.0521875322, -0.0105148731, 0.0147817777, -0.00563841034, -0.0168448966, -0.0122732129, -0.0399963744, -0.00190633361, -0.0123669915, 0.00814697519, 0.0232804213, 0.00404125126, -0.0260468759, -0.00260087778, -0.000401121302, -0.00986428745, 0.00754913967, 0.00494679669, -0.0241947584, 0.0171731208, -0.0167862866, -0.00564427115, -0.0248980932, -0.0132344393, 0.0414499342, -0.000400755, -0.00537172845, 0.00311226165, 0.0578142181, -0.0102569833, -0.000835211482, -0.00663480302, 0.0453182831, 0.0212524701, 0.037980143, 0.00903786719, 0.0235734787, 0.0186266806, 0.00705680437, -0.0151803354, 0.00305071985, 0.0131406607, 0.00548309, 0.00374819478, -0.011212348, 0.00361631927, -0.0115054045, 0.0076429178, -0.019447241, -0.00410865434, 0.0344869085, -0.0146997226, -0.0287195537, -0.00952434167, -0.0167159513, 0.0106789852, -0.00883272756, -0.00268293382, 0.0329395682, -0.0158367828, 0.013855719, -0.0106027899, 0.0182164013, -0.0311577842, 0.0050493665, 0.029376, -0.0373940319, 0.0220026951, -0.0453651696, -0.0154499477, -0.00192977814, -0.00873308815, 0.00669341441, 0.00433430821, 0.0236086454, 0.00098540308, 0.0156257804, -0.0059373281, 0.0201388542, 0.00270051719, -0.00168214529, -0.0287664421, 0.0209359676, -0.00770739047, 0.0047768238, 0.051109083, 0.0381677, -0.00596663356, -0.0244760923, 0.010989625, 0.00727366656, 0.000802975264, 0.0049028378, 0.0261172093, -0.0157664493, -0.0139729418, 0.025038762, 0.0152623914, 0.0260234326, 0.0142894424, -0.0139729418, -0.0323534571, 0.0191072952, -0.0170910638, 0.00729125, 0.00801803, -0.00226972392, -0.0121325459, 0.0362218022, -0.0113119874, -0.00247632875, -0.0216627494, -0.0411217101, -0.0103859277, -0.0420829356, 0.00838728156, 0.0113412924, 0.00228730729, 0.015942283, 0.00727952737, -0.0102335382, -0.043348942, 0.0232921429, -0.0128944935, -0.00919611845, -0.00713299913, -0.0390820354, 0.0123318247, 0.014383221, -0.0113295708, -0.000370716676, -0.00177592342, 0.000978809199, -0.00740847224, 0.00243676617, -0.00732055539, -0.0393399261, 0.00503471354, 0.0179350674, 0.0369016938, -0.0154265026, 0.013937775, 0.0184625704, 0.0131641049, -0.0149576124, 0.0161181167, -0.00392109808, -0.0263985451, 0.0194706842, -0.0286257751, -0.0371830277, -0.00454530865, 0.00120666076, -0.0145356106, 0.000116398442, -0.00537172845, 0.00828764215, -0.0255545415, -0.0403246, 0.000198545895, 0.00160008937, -0.0129062152, -0.00733813876, -0.000557906635, -4.61106356e-05, -0.0300793368, -0.0105265956, 0.00177592342, -0.0126366038, -0.0312046744, -0.00400022324, -0.00856311526, 0.0360342488, -0.0254138745, -0.0273128804, 0.0171965659, 0.00409986265, -0.0343931317, 0.0184391253, 0.0043431, 0.0211586915, 0.0069278595, -0.00797114149, -0.00921370182, -0.00523985317, -0.00407934887, -0.0337835737, -0.0292822216, -0.0276176594, -0.00987014826, 0.0155320028, -0.0177709553, -0.0033584293, -0.0367610268, 0.0305247828, 0.0248980932, 0.0245229807, 0.0203733, 0.0104797063, 0.00255252351, -0.00147041178, -0.0301965587, -0.0353778, -0.0163291171, 0.007039221, 0.000791253, 0.0163408387, -0.0030565809, -0.0275473259, 0.00755500095, 0.0424814932, -0.0184039585, -0.00286755944, 0.0108079296, 0.0027840382, -0.013046883, 0.0123904357, 0.0132813277, 0.0304075591, -0.00371888909, -0.00937781297, 0.0223426409, 0.014160498, 0.0125428252, -0.0404183753, 0.00850450434, 0.0104855672, 0.0121442685, -0.00766636245, -0.0187087376, -0.0234914217, 0.00902614556, 0.00686338684, 0.0119801564, -0.0271018799, 0.0027723161, -0.00574977184, -0.00989945419, -0.00611902308, -0.0121911569, 0.0219909716, -0.00692199823, -0.00604282832, -0.0264923219, -0.00962984189, 0.00966500863, 0.00176273577, -0.0214986373, 0.00730297202, -0.00239573815, -0.0435365, 0.00520468643, 0.00832280889, 0.0156257804, -0.0210649129, 0.0191307385, 0.0355419107, -0.0381677, 0.0148403896, 0.00498489384, 0.0174779, -0.0208773576, 0.0236789789, 0.0146411108, 0.0127538256, -0.0123669915, 0.0453651696, 0.0192831289, -0.000461564254, 0.0286726635, -0.010684846, 0.00654102489, 0.0255779848, -0.0152975582, 0.00608385634, -0.00242943969, -0.00860414375, -0.0134806065, 0.00920197926, -0.00994634349, -0.0135861067, 0.00631244062, 0.00652930234, 0.0106027899, 0.00415847404, 0.0037394031, -0.00897925626, 0.0119508505, -0.00804733578, -0.009459869, -0.00796528, -0.000875506783, 0.0118629336, 0.016692508, 0.00579959154, -0.0118160443, 0.0240306463, -0.00800044648, 0.0328223445, 0.0377222523, -0.0079770023, 0.0136447186, -0.0209359676, 0.0108137913, -0.00956536923, 0.00579666067, 0.00128139032, 0.0142073873, 0.0110306526, 0.006593775, 0.00385076459, -0.000139842974, 0.00212612608, -0.00422294671, -0.00463908678, -0.0267033223, 0.0308295619, -0.00887961686, -0.0127889924, 0.0123787131, 0.0118570728, -0.0283678845, 0.00814111438, 0.0219558049, 0.00740261143, -0.0235969219, 0.0165635627, -0.0221785288, 0.0207953, -0.0080238916, -0.033385016, 0.0241009798, 0.014605944, -0.0192596838, 0.0226943083, -0.000675495598, 0.00429035, 0.00805905834, -0.0060018003, 0.0210531913, 0.0131289382, 0.00657033036, 0.000287195522, 0.0113295708, 0.00152975577, -0.00873308815, -0.0192831289, 0.00720919389, 0.00270491303, 0.0483426265, 0.00591681385, 0.0104445396, 0.0185329039, -0.00882100593, 0.00345513807, 0.00485008769, -0.0198223535, -0.00442222506, 0.00104621227, -0.017278621, -0.0101925107, 0.00308002555, 0.00987014826, -0.00448376685, 0.0362218022, -0.0134806065, -0.00852208771, -0.00021759457, 0.00750811165, 0.0156843923, 0.0173255093, 0.0110247917, -3.55789089e-05, -0.00356649957, -0.0277348831, 0.000508087, -0.0184391253, 0.0102745667, -0.0330099, 0.0271487702, 0.000630438153, 0.0132109942, 0.0269143246, 0.00310053956, -0.00548602082, -0.0037599171, -0.00716816587, 0.0279224385, -0.0142777208, -0.00257743336, 0.0165870078, -0.0177826788, 0.00863345, 0.000678426179, -0.0215806924, -0.0101573439, -0.0016630966, 0.0104445396, 0.012660048, 0.026515767, 0.00877997745, 0.00321190106, -0.000601498818, -0.0249684285, 0.00672858115, 0.00480026798, 0.0170441754, 0.0215455256, -0.00460978132, 0.0134806065, 0.0156257804, 0.0101632047, 0.0129765486, -0.0150162233, -0.000568163581, -0.00996392686, -0.0338773504, 0.0104152337, -0.00612488436, 0.00832867064, -0.00330860983, 0.0301496703, -0.00405004295, -0.0114116268, 0.0224715844, -0.0313453414, 0.00595491147, -0.0113647375, -0.0105559006, -0.0192362387, -0.00572046591, 0.0125897145, -0.00510211661, 0.0214869138, -0.0120973792, -0.00841658749, 0.00300090015, 0.0126014361, -0.000991264125, -0.00152975577, 0.00364562497, 0.0327051245, 0.0288602207, 0.0220964719, -0.0121442685, -0.0103800669, 0.00894995, -0.021146968, -0.0101221772, 0.00440757209, -0.00175101357, 0.00189754192, 0.00536000635, -0.0193300173, 0.00197813241, -2.88477659e-05, 0.012519381, -0.0323065668, 0.00481785135, 0.00682822, -0.0111478753, -0.00369544444, 0.0200216305, -0.0235852, 0.00475044874, -0.0129179377, 0.0236438122, 0.0182164013, -0.0139494976, -0.0159188379, -0.00266388501, 0.0257420968, 0.0188376829, 0.0106203733, 0.0128007149, 0.0239251461, -0.0181929581, 0.000935583375, -0.0302200038, 0.00661135837, -0.0127186589, 0.0360342488, -0.00301262247, 0.0244526472, -0.0165401176, -0.00024580129, 0.00178911095, -0.00882686675, -0.00970017537, 0.00233566156, -0.0213345252, 0.00326758181, -0.0149224456, -0.0569233261, 0.0346744657, -0.00146601594, -0.0183805134, -0.00448376685, 0.0100870105, 0.00601352286, 0.0106789852, -0.00319431769, 0.0156257804, 0.0169855636, -0.0087917, -0.0103038726, -0.00413209898, -0.004618573, 0.0150982793, 0.00360166631, -0.00381266722, -0.0346041322, 0.0168214533, 0.0363390259, -0.0174192879, 0.0113999043, -0.031603232, 0.00838142075, 0.0251325388, -0.0115816, 0.0127186589, -0.0057790773, 0.0010593998, 0.00579959154, -0.0205022451, -0.0214869138, 0.0119567122, -0.016305672, 0.000300199928, -0.00226093223, -0.00436361367, -0.0197637416, -0.00207923702, 0.00584355, -0.00392402895, -0.000225104144, 0.00835211482, 0.0341586843, -0.00750225037, 0.00786564127, -0.0157547258, -0.00981153734, -0.0172317326, 0.00647069095, 0.0165283959, 0.00362218032, 0.00361338863, 0.00740847224, -0.0135157732, -0.0086920606, 0.0120504899, 0.0130586047, -0.0221668053, -0.0192596838, 0.0222488623, -0.0191307385, 0.0114995437, 0.0209476911, -0.0224598628, -0.0159071162, 0.0132344393, 0.0117750168, -0.000572559482, 0.0292353332, -0.0101690665, -0.0305482261, -0.0108196521, -0.0132461609, -0.00726780528, 0.00146601594, 0.0145473331, -0.0157078374, -0.00413209898, 0.00350495777, 0.0130117163, 0.00175540941, -0.00412623771, -0.00497317174, 0.029188443, -0.0175247882, 0.0136681627, -0.028742997, 0.00316208135, 0.0118336277, -0.0399260409, 0.00026558261, -0.00931334, 0.0088972, -0.00424053, -0.0440053903, 9.68918612e-05, -0.0134571623, 0.0154616693, -0.014219109, 0.00566185452, 0.0119684339, 0.00291005266, -0.00358408294, -0.0154851144, -0.0064824135, -0.0144887213, -0.00348151312, -0.00849864352, -0.00478268461, -0.029376, -0.00596077275, -0.0313218944, -0.00613660645, 0.000446545077, 0.0115347104, -0.00527502, 0.0124256024, 0.0275238827, 0.0109251523, 0.0235383119, 0.00669341441, -0.00096488907, -0.00536293676, -0.0166807845, -0.0231983662, -0.0197168514, 0.0136447186, 0.0142777208, -0.025929654, -0.0434427187, 0.00904372893, 0.00492042117, -0.000564134098, 0.00993462093, 0.00544206239, -0.014523888, 0.0361280255, -0.0165166743, -0.0295635555, 0.00717988843, -0.0217916928, 0.0180522911, 0.00175540941, 0.0129179377, -0.0504995249, 0.0110834027, -0.0372768082, 0.0176654551, 0.0156961158, -0.0264454335, 0.0159774497, 0.0435365, 0.0281334389, 0.00310933124, 0.0308998954, 0.00617177319, -0.0172551759, -0.0264688786, -0.00510504702, -0.0133047728, -0.010878263, 0.00335256825, 0.0177123453, -0.00460978132, 0.0147348894, -0.0153444465, 0.0290243328, -0.0234445333, 0.00540689565, -0.0211118013, 0.00221990421, -0.0116636548, -0.025179429, -0.00602524495, 0.00292470539, 0.00515193632, -0.0362218022, -0.0245698709, 0.00720333261, 0.00693372078, 0.00431379396, 0.012519381, 0.00975292549, 0.00899684, 0.00705680437, -0.00227705017, -0.0108606797, -0.00388593134, 0.00459805923, 0.000251845573, -0.011769156, 0.00546550658, 0.0101514831, 0.0179233458, -0.0162587836, -0.00115317793, 0.00652344152, -0.0230694208, 0.0156609472, 0.0265392121, 0.0440757237, -0.00630071806, 0.00642380212, 0.00928989612, 0.0318376757, -0.0322362334, 0.00370423612, -0.0193182956, -0.0149341673, 0.00632416271, -0.0075315563, -0.0327754579, -0.0214869138, -0.0158485044, 0.0205374118, -0.00641794084, 0.00370423612, 0.00473286491, 0.0274301041, -0.00301262247, 0.0010982299, -0.0234679785, 0.0135157732, -0.00142205751, -0.0145121664, -0.00339945732, 0.0057146051, -0.00160155469, -0.00843417086, -0.00345806871, -0.0123083796, -0.00451600319, 0.0124021582, 0.0271018799, -0.00654688571, 0.0210766345, -0.00491749076, 0.0182164013, -0.0143714985, 0.00961225852, 0.00849278178, -0.00729125, 0.0188376829, 0.0127538256, 0.00804733578, -0.0184977371, 0.00887961686, -0.00403245958, 0.00796528, -0.0267736576, -0.0180874579, -0.0161298383, 0.00122864009, 0.0021158692, -0.017278621, -0.014523888, 0.00870964397, 0.0046156426, 0.00652344152, -0.00366613897, 0.0181929581, -0.00182134716, -0.00651758024, 0.00845761504, 0.0195761845, -0.010684846, 0.0187087376, -0.0170910638, 0.0148990005, 0.00315328967, 0.00676374789, -0.00210707751, -0.0026111349, -0.0155202812, 0.00915509, 0.0086451713, 0.00551532628, 0.00157224899, -0.0169738419, -0.0101456214, 0.00344634638, 0.00128432084, 0.0191072952, -0.0136564402, -0.00645896886, 0.00292470539, -0.00443101674, 0.00465080934, -0.0107903462, 0.0133047728, 0.000986135681, -0.0209945794, 0.0149341673, -0.00256278063, 0.00712127704, -0.0138205523, 0.00883272756, 0.00227558496, 0.0110189309, 0.00807664171, -0.000417605741, 0.00661135837, -0.0165401176, -0.0235031452, 0.0164932292, 0.00801803, 0.00410572393, 0.00598421693, 0.00917267334, 0.0222019721, 0.00895581208, 0.0343931317, 0.026070321, 0.0126248812, 0.00113632716, -0.00716230506, -0.0231280327, -0.00683408137, 0.00756672304, 0.000418704702, -0.0125897145, -0.0324003436, 0.013632996, -0.00746122282, 0.000320347579, 0.00107551797, -0.0159305595, 0.00231221714, -0.0103917895, 0.0127655482, -0.0336663499, 0.0191307385, -0.00795941893, -0.0123318247, -0.0298683345, 9.38697121e-05, 0.0224364176, 0.0168917868, 0.0184977371, -0.00989359338, 0.0108841248, 0.0379567, -0.00416433532, -0.021006301, -0.0268674344, -0.00428741891, 0.0005293336, -0.0227060299, 0.00773669593, -0.00699819298, 0.0321893431, -0.0289305542, -0.0130117163, 0.0109134298, 0.000284631271, -0.00762533443, 0.021897193, -0.0152858356, -0.000181237236, -0.0118043227, -0.00311812293, 0.000300383079, 0.0170910638, 0.0142659983, -0.0204319097, 0.0435599424, -0.00446325308, -0.00508453324, 0.00298478222, 0.00526036695, -0.0186266806, 0.0023400574, 0.0022594668, 0.0106027899, 0.00235177972, -0.0131523833, 0.0126717705, 0.0260937661, 0.011323709, 0.00822317, -0.01318755, 0.00756086176, 0.00588750839, -0.017888179, 0.0207366887, 0.0143714985, -0.0245698709, 0.00200304226, 0.00290565682, -0.023456255, -0.017278621, -0.0157898925, 0.00992289837, -0.0143128876, -0.0112006254, -0.000360093371, -0.010989625, 0.0113119874, -0.00271956576, -0.0131641049, -4.39012638e-06, -0.00451893359, 0.0020074381, 0.00320017873, 0.00683994265, -0.0120973792, 0.0126952147, -0.00800044648, 0.00500540761, 0.00053043256, -0.0302434471, -0.0022243, 0.00720919389, -0.0102628442, -0.0170324538, 0.0414733775, 0.019669963, 0.0126717705, -0.00880928338, -0.00832867064, 0.015719559, -0.0168683417, 0.00384490332, 0.0137619413, -0.00227998081, -0.0361280255, -0.00639449619, -0.0243354253, 0.00618935656, -0.00206458429, -0.0210649129, 0.00615419, 0.0124607692, 0.0107551794, -0.0185563471, 0.0035489162, 0.00379801425, 0.00509918574, 0.0141253313, -0.0227763634, 0.00212173024, -0.00666410848, -0.00325879012, -0.0237375889, -0.00911992323, -0.0057146051, 0.0180757344, -0.00961811934, 0.00971775874, -2.0147645e-05, 0.0136916069, 0.0113705983, -0.011657794, 0.00496731047, 0.0145121664, -0.0123669915, 0.0130351605, -0.0173489545, -0.0163760055, 0.00159715884, -0.00929575693, -0.00545085408, 0.0274535473, -0.0101632047, 0.0146762775, -0.0151686128, -0.00658791373, 0.0295166671, -0.00626555132, -0.000984670362, -0.00328809582, 0.00275766314, 0.0204905216, -0.000574024743, 0.0147583336, 0.00437826663, -0.0046156426, -0.00461271172, -0.0261406545, 0.0193769075, -0.00988773163, 0.00328516518, -0.00245434954, -0.0132461609, -0.0341586843, 0.0359170251, -0.0160595048, 0.0116343498, -0.02197925, 0.00841658749, -0.00989945419, -0.00131216121, 0.00645896886, 0.0177123453, 0.025038762, -9.89982072e-05, -0.0215220805, -0.012296658, 0.0376519188, 0.0354481339, 0.025484208, 0.00988773163, 0.00187849323, 0.0296104457, 0.0034873744, -0.0105676232, -0.00974706467, 0.0208890792, 0.0308061168, 0.0138674416, -0.00636519073, -0.00777186267, 0.0037100974, -0.00049123622, -0.00142718595, 0.000143689351, 0.0119098229, 0.014301165, 0.00243090512, 0.0199278537, 0.00774255721, -0.0111595979, -0.011657794, -0.0105617624, -0.00834625401, 0.00688097067, 0.00940125808, 0.00640621874, -0.000659011188, -0.0149576124, 0.0166573413, -0.00417898782, -0.0144652771, 0.032611344, -0.0203498546, 0.00686338684, 0.00691613741, 0.0192362387, -0.0149107231, 0.00162939506, -0.0213228036, -0.0128007149, 0.00689269276, -0.00209535519, 0.000554243394, -0.0270549916, -0.00968845375, -0.0144535545, -0.0102452608, 0.00165870076, -0.0104679838, 0.00918439589, -0.00623038458, -0.00466253143, -0.0210180245, -0.0126483254, -0.00603696704, -0.00535707595, 0.0110013476, -0.00621280121, 0.0122614903, -0.00777186267, 0.0228232536, 0.00640621874, -0.00873308815, 0.00370716676, 0.00669927523, -0.00334670721, 0.000767075806, 0.0189080164, 0.00719161052, -0.0131641049, -0.0258124303, 0.0150631126, -0.00862172712, 0.0154733919, -0.0111654587, -0.0288836639, -0.00497610215, -0.0162939504, -0.0156961158, 0.0270315465, -0.00389179238, 0.0200919639, 0.00134439743, -0.00451014191, 0.00123010529, 0.0446852818, 0.0280162171, -0.000251845573, 0.0149341673, -0.00204846612, 0.0112592373, -0.00715644378, 0.0241244249, -0.0186735708, -0.00810008589, 0.0125545477, 0.014828667, 0.00193270866, 0.000863784517, -0.00255105831, 0.0201271325, 0.00243383553, 0.00531897834, 0.00100664969, 0.0266329888, 0.00974706467, 0.00712127704, 0.0139612192, 0.00382732, -0.00375112519, 0.0129531045, -0.0391523689, 0.00519882515, -0.00341117964, 0.00760189, -0.00035991022, -0.00142572063, -0.00364269433, 0.0166338962, 0.0151100019, 0.0017744581, -0.00155173498, 0.0101573439, -0.00470942073, 0.033385016, 0.0146997226, 3.87613218e-05, 0.0156843923, 0.00139421702, -0.0200216305, 0.0278052166, 0.00678133126, 0.00577028561, -0.0298448913, 0.0127889924, 0.00385955628, 0.0110189309, -0.00793597475, -0.00712127704, -0.0145356106, -0.00766636245, 0.0125897145, 0.00671099778, 0.0286492202, -0.0026096697, -0.00392109808, -0.0161181167, 0.0109603191, 0.00378043088, -0.00867447723, 0.00877411664, 0.0172434542, 0.00459805923, 0.0199278537, -0.0268439911, 0.00653516361, -0.00831694808, 0.00887375604, -0.0152506689, 0.00326465117, 0.00403245958, -0.00138176221, 0.00767222326, 0.0213696919, 0.00306537258, 0.0357294679, -0.00326465117, 0.00388593134, -0.010016677, 0.00339359627, -0.00441050297, -0.00301262247, 0.00137003988, 0.0309936721, 0.0033291236, 0.00877411664, 0.00096562173, -0.00403832085, -0.00989359338, -0.0059871478, 0.0121442685, -0.00928989612, -0.0176420119, 0.00736158341, -0.00470942073, -0.000251479243, -0.0406293757, -0.000870378281, 0.000390131696, 0.0086920606, 0.0144535545, 0.00331447087, 0.00853381, -0.00704508228, 0.00645896886, -0.00466839271, -0.00347272144, -0.00588750839, -0.0267033223, 0.00635932945, -0.0147700561, -0.00853967108, 0.0183570702, 0.00681063673, 0.00758430641, -0.00974706467, -0.000352950126, 0.0202443544, 0.00620107912, 0.0164697841, -0.0168917868, 0.0339007936, -0.0141722206, 0.016692508, -0.0197871868, -0.00121765048, 0.0162705053, 0.0200919639, 0.0101573439, 0.00165430491, 0.0166456178, 0.013046883, 0.0111068478, 0.00490869908, 0.00903200638, -0.00474458747, 0.0285788849, 0.00519882515, -0.0242650919, -0.0027224964, -0.00370716676, -0.00160595053, 0.00224481407, -0.0287898872, 0.00568236876, -0.0105617624, 0.0112064872, 0.00492628245, -0.0157430042, 0.000805905845, 0.0240306463, 0.0135861067, -0.0137033295, 0.0112064872, -0.00176127057, -0.0167628415, -0.0286492202, 0.0108313747, 0.0245698709, 0.00475044874, 0.0272894371, 0.000598568236, 0.0309702288, 0.0285788849, -0.00818800274, -0.0287195537, 0.00562082697, -0.00342876301, 0.0131289382, -0.0057146051, -0.0130351605, 0.0258358754, -0.00665238639, -0.00189754192, 0.0141018862, 0.000637764577, -0.0303137805, -0.0107375961, -0.0108430963, 0.00352840219, -0.00426983554, -0.00692199823, 0.0128944935, 0.00992289837, 0.00502592186, -0.0253435411, 0.0104504, 0.00796528, -0.0153327249, -0.0142308315, -0.0139260525, 0.00110116042, -0.00701577635, 0.0120504899, 0.00537758972, -0.0214283038, 0.0223426409, 0.00090920832, -0.000556441315, 0.0202326328, -0.0182164013, 0.00649999687, 0.0071505825, -0.000942909799, 0.0042844885, -0.00218180683, -0.0165049508, 0.0142659983, 0.000696009549, -0.00788322464, -0.00155173498, 0.0156023372, 0.0192948505, 0.0206898, -0.0228935871, -0.016165005, -0.0109251523, -0.00372181972, -0.00632416271, 0.0143363317, -0.00631830189, 0.0347213522, -0.00682822, -0.00620694, 0.00195908383, 0.0088972, -0.0149224456, -0.00308295619, 0.0143246101, -0.00845175423, 0.00743777817, 0.00713299913, 0.0120387673, 0.0259062089, -0.00568529917, 0.0147114443, 0.0119215455, -0.018028846, -0.00260234321, -0.000556075, 0.0129413819, -0.00985256489, 0.0137971081, -0.0134571623, 0.00136417872, -0.00537758972, -0.00138835597, -0.00777186267, 0.0241478682, 0.0107082902, 0.00364855537, -0.00638863537, 0.0185563471, 0.0116519332, 0.0148755563, -0.0129531045, 0.0221550837, -0.0214869138, -0.0236320887, -0.00724436063, -0.0180054, -0.00383318122, 0.0049526575, 0.00620107912, -0.0238079242, 0.0255779848, 0.00249098171, 0.0161181167, -0.000278220657, 0.00325292908, -0.00100518437, 0.0453651696, -0.00472114282, 0.0159774497, -0.0109603191, -0.00598128652, 0.00827005878, -0.0162236169, 0.0339007936, -0.0263751, 0.0144066652, 0.0190721285, -0.00754327839, 0.0153913358, 0.0232569762, -0.00940711889, 0.00240013399, 0.0194237959, -0.00642380212, 0.0190486833, 0.0327051245, -0.00856897701, -1.33936055e-05, -0.00689855404, 0.0154030584, 0.000861586595, 0.00209388975, 0.00987601, -0.000937048695, -0.00218034163, -0.0279693287, 0.0103390394, -0.00777186267, 0.00774841802, 0.00572632719, -0.0216393042, -0.0190252382, 0.0246870928, -0.0102804275, 0.00715644378, -0.00841658749, -0.00709783239, -0.0126834922, 0.007484667, 0.0158367828, -0.0119860172, 0.0101866499, 0.0047914763, -0.00212319545, -0.0188259594, -0.0270784348, -0.0167628415, -0.032494124, 0.00239427295, -0.0135861067, -0.00815869775, -0.0257420968, 0.0108665414, -0.00365148601, -0.00210561207, 0.0136916069, -0.00409986265, -0.00162499922, -0.00541275647, 0.0136564402, -0.0268674344, 0.0150982793, 0.007039221, 0.00844003167, -0.00367786107, -0.0129882712, 0.00834039226, -0.0196582414, 0.00292763603, 0.00572339678, 0.0143246101, -0.000479880284, -0.0106614018, 0.00483543472, -0.00402659876, -0.00740261143, -0.016165005, 0.0115933213, -0.0157430042, 0.0368782505, 0.00206165365, -0.0203146879, -0.0106145125, -0.0135040507, -0.0084693376, 0.0149810566, 0.0155320028, -0.0127889924, -0.00852794852, -0.00316208135, -0.0104855672, -0.0174661763, 0.0169621203, 0.00988773163, -0.00951261912, -0.0175951216, 0.00236203661, 0.00458340626, -0.0102276774, 0.0123201022, 0.00835797563, -0.00587285543, 0.00345220743, 0.00187409739, -0.0103390394, -0.00352254114, -0.00338187395, -0.00366613897, -0.005064019, 0.0329395682, 0.00863345, -0.00996392686, -0.00982912071, 0.00768394582, 0.00364269433, -0.0208890792, -0.000929722271, -0.0214751922, -0.0101573439, -0.0168097299, -0.00854553189, 0.00226532808, 0.0151803354, 0.000425298495, 0.00687510939, -0.0127889924, -0.010989625, 0.00685166474, -0.000253310864, 0.0188259594, 0.00671099778, -0.000295620906, -0.00556514598, 0.00626555132, -0.00468597608, -0.0153796133, -0.0181460679, -0.0215455256, 0.00625382923, -0.00354598556, -0.00403832085, -0.0422704928, 0.0232218094, -0.00897339545, 0.0115581546, -0.0174896214, -0.0160946716, 0.000480979244, -0.00102936151, 0.0195644628, 0.00562375737, 0.0046654623, -0.0225419179, -0.0017451524, 0.0256014299, 0.00088942697, -0.00763705652, 0.00785391871, 0.011546433, 0.0108958464, -0.00773669593, 0.00454530865, -0.0122732129, -0.0178412888, -0.00188728492, 0.00624210713, 0.014746611, -0.0282741077, -0.0107434569, 0.00743191689, -0.0252028722, -0.000351851166, -0.0203733, 0.0275238827, 0.00368079171, -0.0249449834, -0.0142659983, -0.0196113512, -0.0167980082, 0.0054449928, 0.0130820498, -0.0200919639, 0.00798286311, 0.00828178134, -0.0260234326, 0.016833175, -0.027852105, 0.00696302624, -0.0147231668, 0.00702163763, -3.18470156e-05, -0.00984084234, -0.00656446908, -0.020396743, -0.0334787928, -0.00960639771, 0.00426397426, 0.0109720416, 0.00758430641, 0.00999323186, -0.00967086945, 0.0369251408, 0.00434016902, -0.0281803291, 0.00610730099, -0.0133399395, 0.0101866499, -0.00858656, -0.0214048587, 0.00691027613, 0.00170852034, 0.000587212271, -0.00559445191, -0.0119098229, 0.0241713133, -0.00506988028, -0.0129882712, -0.0118570728, 0.0278989952, -0.00231368234, -0.00241185632, 0.0109954858, -0.000621646468, -0.0152506689, -0.015274113, 0.00904372893, -0.00542447902, 0.0134454397, 0.0106496792, -0.00756086176, 0.00342290173, -0.0164697841, 0.00814111438, 0.0192948505, -1.88597994e-06, 0.00484422687, -0.0139260525, -0.0127303815, -0.00339359627, -0.0128944935, 0.000278953317, -0.0209008, 0.0127186589, 0.0167980082, -0.00408520969, -0.0281099956, -0.0107024293, 0.00984670408, 0.0219909716, 0.0273832139, -0.00583182741, 0.0109310132, -0.00395333441, -0.00859828293, -0.00953606423, 0.0247574262, 0.00637691282, -0.00468597608, -0.00509332493, -0.00425225217, 0.00914336834, -0.0049995468, 0.0012506193, -0.00344048534, -0.00107332, -0.0111654587, -0.0115581546, -0.00727366656, -0.00314742862, -0.0011685635, -0.00787150208, -0.0118277669, 0.0248043165, 0.0161884502, -0.00209535519, 0.0177592337, -0.0187907927, -0.0178178456, 0.0187204592, 0.0125662694, -0.00981739815, -0.00204553548, -0.0202209093, 0.0191424619, 0.00924300682, -0.00161620753, 0.0135978293, -0.00390644511, 0.0131992726, 0.0140081085, 0.00783047359, 0.00146088749, 0.0123904357, 0.0255779848, 0.0293291118, -0.0280631054, -0.00436068326, -0.00376870879, -0.0131406607, -0.0127069373, 0.0150865568, -0.0163760055, -0.000785391836, -0.00438412791, 0.00932506286, -0.0197637416, 0.00421122415, 0.00248365523, 0.0297980011, 0.0238548126, 0.00123157061, -0.00749052828, -0.00148653, -0.00446618348, -0.00555049302, -0.0156023372, -0.00469183736, 0.018333625, -0.00943056308, 0.00458926754, 0.00585234165, 0.016165005, -0.00999323186, 0.00238255062, 0.0146997226, -0.00770739047, -0.0108665414, 0.00317087304, -0.00550067378, -0.0133164944, -0.016000893, 0.0265626553, 0.0212993585, -0.00889133941, 0.0263751, -0.0204670765, -0.000160540105, -0.0142777208, 0.0176654551, -0.039761927, 0.00518417219, -0.00908475649, -0.0109661799, -0.00635346863, -0.00443394715, -0.0136564402, 0.00102423306, -0.0144066652, -0.0122497687, -0.000611023162, -0.00687510939, 0.000291591394, 0.00535707595, 0.0114995437, 0.0129296603, 0.00639449619, 0.00924300682, -0.0211821347, -0.0133868288, 0.0123669915, -0.0271956585, -0.0140549978, 0.00202062563, 0.00156492263, 0.00668755313, -0.00727952737, -6.8135676e-05, 0.0173020661, -0.0182046797, 0.00437533576, 0.00340531836, 0.0069747488, 0.00841658749, -0.0223191958, 0.00054911495, 0.0242650919, -0.0218151379, 0.00584648037, 0.0143363317, 0.0126248812, -0.0144535545, 0.00331740151, -0.0200333539, -0.0151803354, -0.00552411797, -0.0248277597, 0.0194355175, 0.00790666882, -0.00736158341, -0.0237375889, -0.023010809, 0.00631830189, -0.0222019721, -0.0317907855, 0.00383318122, 0.00320897042, -0.000250380283, -0.0105148731, -0.0169386752, 0.00727366656, 0.0100811496, 0.00848692097, -0.0114174876, 0.00848692097, -0.0106614018, -0.0130937714, -0.0185797922, 0.00534535339, 0.00330567919, 0.0242182035, -0.0109134298, 0.0161063951, 0.0296573341, -0.0219909716, -0.00661135837, -0.00958881434, -0.0170910638, 0.018169513, 0.0210414678, -0.00760775106, 0.0167862866, -3.85781641e-05, -0.00961811934, -0.00272542704, -0.00018865522, 0.00150777656, 0.00665238639, 0.0040119458, -0.000955364725, 0.00215250114, 0.00487939361, -0.0104972897, -0.00282653142, -0.021006301, -0.00768980663, -0.0203850213, 0.00942470226, 0.0110130692, -0.015801616, -0.0266095456, 0.0125076585, -0.012882771, 0.00951848086, 0.0127889924, -0.0134454397, -0.0248980932, -0.00875067152, -0.020783579, -0.00917267334, 0.0125779919, -0.00690441485, -0.0114409318, 0.0221668053, 0.00652344152, 0.00695130415, -0.0197989084, 0.0126952147, -0.00124329294, 0.00825833715, -0.0137267737, 0.00638863537, 0.00586699462, 0.00863345, -0.0253200959, -0.00905545056, -0.0223426409, 0.00257157232, -0.00911992323, 0.00790080801, -0.0044486, -0.00415261276, 0.0203146879, -0.000527135679, -0.00509332493, 0.000331886666, 0.0130820498, -0.0120973792, -0.0123904357, 0.0264219884, 0.00961225852, 0.0216041375, 0.00888547767, -0.0022301611, 0.0202326328, 0.0216275826, 0.0228115302, 0.0189314596, 0.0284616631, -0.000180596166, 0.0162118953, -0.00941298, -0.00635932945, -0.0111068478, 0.00513142208, 0.00836969819, -0.0250622053, 0.00253494014, -0.0148521122, 0.0209008, -0.0200216305, -0.00325585948, 0.0262813214, -0.0045072115, 0.0171614, -9.21754763e-05, 0.0104679838, -0.00293789315, 0.0165518411, -0.00453651696, 0.00107332, 0.026070321, 0.00848106, -0.0125897145, 0.0155906146, -9.7532924e-05, 0.0146176666, 0.00755500095, -4.51261476e-05, -0.0185680706, -0.0304544494, -0.00370423612, 0.0120739341, 0.00371888909, -0.000496364722, 0.005064019, -0.00569995213, 0.00246314122, 0.00700991554, 0.0111889038, 0.0213110801, -0.00542447902, 0.0270549916, -0.00335549889, -0.0306185596, -0.0114819603, 0.0086158663, -0.000463029515, -0.00910820067, 0.00931334, 0.00643552421, 0.000345440552, -0.0244760923, -0.00608385634, -0.0236438122, -0.0194355175, -0.0200802423, -0.0193300173, -0.00351081882, -0.0383083671, -0.0393164828, 0.011071681, -0.0144301103, 0.013269606, 0.027406659, 0.00478854589, -0.00810008589, -0.00557979895, 0.0197989084, -0.00234152284, 0.000331520365, 0.000532264181, -0.000991996843, -0.0149810566, -0.0273597706, -0.000835211482, 0.0127538256, 0.00238401606, -0.000857190753, 0.0193182956, 0.00334670721, 0.0153444465, 0.0172200091, 0.00156638783, 0.0232335329, 0.0208773576, 0.0156961158, -0.00654688571, -0.00463029509, 0.0103742061, -0.0132344393, 0.0173137877, 0.00412037689, -0.00014139984, -0.00308295619, -0.0165283959, -0.0184274036, 0.00207630638, 0.0118043227, -0.0102862893, 0.0146645559, 0.0127538256, 0.0300324466, 0.00930747949, 0.0119098229, -0.00696302624, -0.0150748352, -0.0113002649, 0.0340649076, 0.0077542793, -0.0246402044, 0.00907889567, -0.00487939361, 0.00365441665, 0.000797846762, -0.00821730867, 0.0213696919, -0.0249449834, -0.0023092865, 0.0117222667, 0.0273597706, 0.0124256024, -0.00529553369, 0.0110775419, -0.00704508228, -0.00645896886, 0.0107551794, -0.00806491915, -0.0178647339, 0.00289246929, 0.0253200959, -0.00538638141, 0.00210707751, -0.00490576867, 0.00783633534, 0.000689782144, -0.00364269433, -0.013996386, 0.0153913358, -0.0261875428, -0.0116988216, -0.00210414687, 0.0134337172, -0.0113940435, -0.00606041169, -0.00149458903, 0.0116050439, -0.0160829499, -0.0116460714, 0.00801216904, -0.00403245958, 0.0163291171, 0.0285788849, 0.00831108727, 0.0157664493, 0.00481199054, -0.00862758793, -0.0067051365, -0.0219909716, 0.0212759133, 0.00639449619, -0.00948331319, 0.00729711074, 0.011546433, -0.0135978293, 0.00577321649, 0.00700405426, 0.0126483254, 0.0196347963, 0.0086920606, -0.00905545056, 0.0197871868, -0.00709783239, 0.00136344612, 0.00226093223, -0.0192479622, -0.00631244062, 0.0150162233, -0.012214602, 0.0150045007, -0.00120519556, 0.00426397426, 0.0318376757, -0.00916681252, 0.0174075663, -0.0176889, -0.00669927523, -0.00154880446, 0.00852208771, 0.0163525622, -0.00472407322, 0.00237668958, 0.00575270224, -0.00903786719, -0.00477975421, 0.00207630638, -0.0197754633, -0.00339652668, 0.0136212735, -0.00321190106, 0.012519381, 0.00338187395, 0.000956097385, -0.00621866249, 0.00982912071, -0.0201623, -0.00449255854, 0.00422880752, -0.0124724917, -0.0169738419, -0.00913164578, -0.0136916069, -0.00403245958, 0.00502885226, 0.0054918821, -0.00132241822, 0.00907303393, 0.00129384513, -0.0118219061, 0.00336429058, -0.00249684276, 0.00488232402, 0.00237815478, 0.00635932945, 0.000402220263, -0.00571167422, -0.0156375039, -0.0267502125, -0.00739088887, -0.0177357886, -3.47775822e-05, 0.0234679785, 0.000779530732, 0.015801616, 0.0154382251, 0.0200450756, 0.0345572419, 0.0210649129, -0.00394747313, -0.00165577012, 0.0229287539, 0.025179429, -0.00557393767, 0.00768980663, 0.00299210846, 0.00179790263, -0.0123435464, 0.0128124375, 0.0164815076, 0.0124724917, 0.0176068451, -0.0029437542, -0.0116812382, 0.000296903047, 0.00862172712, 0.0188142378, -0.0174192879, 0.00852794852, 0.0202795211, -0.0153561691, -0.0228349753, -0.036057692, 0.0170090087, 0.00301555311, 0.000232064252, 0.00282653142, 0.00423759921, -0.0198223535, -0.0019576184, 0.0124724917, 0.00520761684, 0.00237522437, 0.00533949258, 0.0177357886, 0.0035196105, -0.00151363772, -0.0140432753, 0.00865103304, 0.00727952737, -0.00904959, 0.00325585948, 0.00277964235, -0.00248072459, 0.00475337915, 0.00590802217, 0.0121794352, -0.0283913296, -0.000950968883, 0.0073733055, -0.0101514831, -0.00204260484, -0.0149458898, 0.0192479622, 0.00701577635, -0.00352840219, 0.0205139667, 0.00465667, -0.00671099778, 0.0367610268, 0.0174661763, -0.0103566227, 0.025624875, -0.0187907927, -0.00828178134, 0.0064824135, -0.0101514831, 0.00546550658, -0.00698060961, 0.0183805134, -0.00888547767, 0.00576149393, 0.019447241, 0.0143246101, 0.0162705053, 0.00257889857, 0.00199571578, -0.00427569682, 0.0195527412, -0.00386541733, 0.00434896071, -0.0145707773, -0.0365734734, -0.00173196488, -0.00116563286, -0.000391230657, 0.000270527933, 0.0403011516, 0.00132388342, 0.00278257299, -0.0079770023, 0.0214400254, -0.00416433532, -0.0286726635, 0.00800630823]
09 Jul, 2020
Difference between RDBMS and Couchbase 09 Jul, 2020 1. RDBMS : RDBMS stands for Relational Database Management Systems. It is most popular database. In it data is store in the form of row that is in the form of tuple. It contain numbers of table and data can be easily access because data is store in the table. This Model was proposed by E.F. 2. Couchbase : Couchbase Server is an open-source, distributed multi-model NoSQL document-oriented database software package that is optimized for interactive applications. It is also known as Membase. It was developed by Couchbase, Inc. and initially released on August 2010. Difference between RDBMS and Couchbase : S.No. RDBMS Couchbase 1. RDBMS is a relational database. It is a non-relational and document-oriented database. 2. RDBMS is column-based. Couchbase is field-based. 3. It has a predefined schema. It has a dynamic schema. 4. It is slower in comparison with Couchbase. Couchbase is faster than RDBMS. 5. It supports SQL query language only. It supports JSON query language. 6. RDBMS does not provide JavaScript client for querying. It provides a JavaScript client for querying. 7. RDBMS is not suitable for hierarchical data storage. Couchbase is suitable for hierarchical data storage. 8. It centers around ACID properties. It also centers around ACID properties. 9. RDBMS is vertically scalable. Couchbase is horizontally scalable. 10. It supports complex joins. It doesn’t support for complex joins. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase
https://www.geeksforgeeks.org/difference-between-rdbms-and-couchbase?ref=asr10
Languages
Difference between RDBMS and Couchbase
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0217697769, -0.0160300788, -0.0298334584, 0.041161526, 0.0278445613, -0.00104173901, -0.00705301855, -0.0042399182, -0.0397563279, -0.00363189937, 0.0552999899, -0.0518842749, 0.00237127347, -0.00557755958, -0.0318007357, 0.00573969819, 0.0104038781, 0.010117434, -0.000624570472, 0.0155977104, 0.0308062881, 0.00475605857, 0.0282769296, -0.0151329134, -0.00663145911, 0.0169056263, 0.0380052328, -0.0152518153, -0.0106741088, 0.0232830681, 0.0165056847, -0.000482699426, 0.0109335305, -0.00983639434, -0.0561214909, -0.0147654, -0.0324925259, -0.0156085193, -0.0106308721, 0.00142546638, 0.0314980783, 0.0268501118, -0.0339193456, -0.0145167876, -0.0125711281, -0.00118833908, -0.0315629356, -0.0299199317, -0.0195430778, -0.0399076566, -0.00752322, -0.00584779028, 0.0352380723, 0.00278337533, -0.00794477947, 0.0180189759, -0.0261583216, 0.0149923936, 0.0114469687, -0.00137006911, -0.00963101909, -0.00411290955, -0.0125278905, -0.0460905321, -0.0339409634, 0.0575915463, -0.0131980628, 0.000639770937, 0.00188891194, -0.05599178, -0.0214995462, 0.0433449894, 0.0328600407, -0.00995529536, -0.0139222806, -0.00759348, 0.0203753877, 0.0272392444, 0.0206239987, 0.0346759893, 0.000992421876, 0.0303955376, -0.0214238819, 0.0187431946, 0.00150113099, -0.0428477637, -0.0479497164, -0.0396049954, 0.0685737208, -0.00612342544, 0.00663145911, -0.0229155552, 0.0275202841, -0.0167326797, 0.00732865417, 0.000199295071, 0.0209266581, 0.0162246451, 0.0108578652, 0.0154463816, 0.0119009558, 0.0187864322, 0.0253800582, -0.0214455, 0.0213157907, -0.0098580122, 0.0159327965, 0.0499818511, -0.00271716877, 0.0343300961, -0.00150923792, 0.0244072285, -0.0140736094, 0.0488576926, -0.0258340463, 0.00243072421, 0.0231317393, -0.017997358, -0.0184837729, -0.0288822465, -0.0528787225, -0.00261988561, -0.0497656688, 0.0193701293, -0.0284066405, 0.0397130884, 0.0103282137, -0.0120630944, -0.0234560166, 0.0291632861, 0.0229587927, -0.0211752709, -0.0222021472, -0.00282931444, 0.0145924529, 0.0271527711, 0.050933063, 0.0366648883, 0.0137277143, -0.0231749769, 0.0121603776, -0.0578077324, 0.0055397274, -0.0352164507, 0.033292409, 0.0230885036, 0.0297037475, 0.0127116479, -0.00662064971, 0.00686385715, -0.0282336939, -0.0367946, 0.0781723112, 0.0212833621, -0.0572888888, 0.00824203342, -0.0178892668, 0.00373458699, -0.00990665425, 0.00977694336, 0.0043290942, -0.0140519915, 0.015640948, -0.0138466163, 0.00907974783, 0.0539164096, -0.0131223984, -0.0207104739, -0.0441448726, 0.0176190361, -0.0351299793, 0.0161057431, -0.0140952282, 0.057159178, -0.00679359725, 0.0279742721, 0.0269582048, -0.0254449137, 0.0226345155, 0.017878456, 0.00609099772, -0.0599263385, 0.000683345657, -0.0448366627, 0.0244937018, 0.000302489381, 0.017759556, 0.0193593204, -0.0145275975, 0.0183756817, -0.0046587754, -0.00607478386, 0.0304820128, 0.0112415934, -0.00647472544, -0.0236289632, -0.0158463232, 0.0351948328, 0.0323844366, -0.0188837145, 0.00345624937, -0.0250990186, 0.0115550607, 0.0179216936, 0.0649850518, -0.00563160563, 0.0355839655, -0.02799589, 0.0162138361, 0.0212076977, -0.0524463542, 0.0236722, 0.0021145544, -0.00880411267, 0.017640654, -0.00389132067, -0.0276283771, -0.0382430367, 0.00941483397, -9.49185e-05, 0.0195430778, -0.0146356896, 0.0160408877, 0.00172947592, 0.0017794685, 0.00200105761, -0.00145248952, 0.0156625658, -0.0170353372, 0.00749619678, 0.0447934233, 0.0300280247, -0.0278445613, -0.0194241758, -0.0323844366, -0.0363622308, 0.0432585143, -0.0234776344, -0.0558188334, 0.015986843, -0.00863657054, 0.0352380723, -0.0123873707, 0.003469761, 0.0406859182, 0.037637718, 0.00521815289, 0.0310224723, 0.0124738449, -0.0339409634, -0.0305901039, -0.0410318151, -0.0252719652, 0.0389780626, 0.00706923241, -0.0334221199, 0.0266339276, 0.00952833146, -0.00150113099, -0.0163759738, -0.00858252402, -0.0274554286, -0.00646932051, 0.017878456, 0.0144195054, 0.0411831439, -0.00256854179, -0.0337031595, 0.00750700617, 0.0156841837, 0.0159760341, -0.0107389642, -0.0145384064, 0.00750160171, 2.83742138e-05, -0.0118577192, -0.0166462045, -0.00182946119, 0.0312602744, 0.00743674627, 0.0216400661, -0.00133358804, 0.0314764604, 0.0166462045, -0.000945131527, 0.0276716147, 0.014473551, 0.00442097289, 0.00758807547, 0.0129602598, -0.0513654314, -0.0502412729, -0.00679900218, 0.0295091812, 0.0295524187, -0.0120847123, 0.0130143054, 0.00765293045, 0.000733000517, -0.00890139583, -0.0115766786, -0.0122360419, -0.00207672222, -0.0249476898, -0.0245801751, -0.0179216936, -0.00900408346, 0.00409669615, 0.00686926208, -0.0100093419, 0.0221264809, -0.0361676626, -0.0546514355, -0.00416695606, 0.027174389, 0.0447501875, 0.00230912049, -0.0246882681, -0.00929593295, 0.00480199791, 0.0159652233, 0.0193809383, -0.0607910752, 0.0178568382, 0.0187215768, -0.0357352942, -0.0268717315, 0.0303306822, -0.0066692913, 0.0202889144, -0.0272392444, -0.0613531545, 0.00620989921, 0.00311305653, 0.00541001651, -0.0415290408, -0.00424262043, -0.011879337, -0.0193809383, 0.0302442089, 0.0161814094, -0.000410412729, -0.0417019874, -0.0215644017, 0.0221048631, 0.0275635216, -0.0172515213, -0.0142033203, 0.0381349437, -0.0195430778, 0.000658687088, 0.00817177352, -0.0275851395, 0.0107659874, 0.013997945, 0.0130359242, -0.0057883393, -0.0534408055, -0.0591913126, 0.0613099188, 0.00234425045, -0.0258124266, -0.0226345155, 0.0289038662, -0.000289653428, -0.0155760916, 0.0147870183, 0.0280391276, 0.0323628187, 0.0386970229, 0.0213482175, 0.0315845534, 0.0413128547, -0.00711246952, -0.0333140269, -0.0108470563, -0.00822041463, -0.00433720136, 0.0247963592, -0.0045804088, 0.00998231862, -0.00650715269, -0.0287741553, 0.0393888131, 0.0223750938, -0.055386465, 0.0505871698, -0.00773940468, -0.0132845361, 0.0128845954, -0.0147762094, -0.0226777531, 0.0144303143, -0.017165048, 0.00192539301, -0.0361460447, -0.0024239684, 0.00735567696, -0.00481821178, -0.0420695, 0.0258989017, 0.0158679411, -0.0559053086, 0.0138466163, -0.0147654, 0.00233614352, -0.0109497439, -0.0164408293, -0.00733405864, 0.0118901469, -0.0345030427, -0.0257043354, -0.0118252914, 0.00219157012, 0.0302442089, 0.0246450305, -0.00182000315, 0.0227642264, -0.0171974748, 0.0287741553, -0.00542893261, 0.0056207967, -0.0100633875, -0.00798261166, -0.0193160828, 0.0603587069, -0.0249693077, 0.00646932051, -0.0143438401, 0.0201916303, 0.0389348269, 0.0127981212, 0.00394806918, -0.00807449, 0.0135115301, -0.0652877167, 0.0155977104, 0.0122360419, -0.00436692638, 0.0277797058, 0.00192539301, 0.0524463542, 0.0234560166, -0.0208401848, -0.0377025753, 0.0265258364, -0.0178352203, -0.0104795424, -0.0128845954, -0.0169380549, 0.0130359242, 0.000237465138, -0.0157922767, 0.0219643433, -0.00260907644, 0.0188620966, 0.00829608, 0.00474254694, 0.0169921, -0.015640948, 0.02047267, 0.00974451564, -0.0119658113, -0.00872304384, 0.00766914431, 0.0151437232, 0.0298983138, 0.00299415505, -0.00971208792, 0.00854469184, 0.00254827458, -0.0326438583, 0.0144843599, -0.025531387, -0.0314548425, 0.00713949231, 0.0511924848, -0.00750700617, 0.0111335013, 0.0356920585, 0.00738810468, 0.0463067144, 0.00435881969, 0.0274554286, -0.0197376441, 0.0121928044, 0.000499251066, -0.00110524322, -0.0143114123, -0.0164300203, 0.0410750508, 0.00999312755, -0.0147654, -0.0488144569, -0.000767454912, -0.0221805274, 0.0063990606, 0.0281688385, -0.00549919298, 0.0343733318, -0.0140628, 0.00386159541, -0.0429990925, 0.0222886205, -0.0329032764, 0.014235748, -0.0173271857, 0.0282336939, -0.0230885036, 0.0102633582, -0.00885275472, 0.0110254083, -0.0184945818, 0.0339842, -0.0203753877, -0.0173488054, 0.0105173746, -0.0119009558, -0.00787992403, 0.00608559325, -0.00154707022, 0.0106849177, -0.00252935849, -0.0200511105, 0.0350867398, -0.0393671952, 0.0260934662, -0.00509384694, 0.0319736861, -0.0533975661, 0.00716651557, 0.00395347364, 0.0173271857, 0.000340321654, -0.0151221044, -0.00757726608, 0.0300280247, 0.0353894, 0.00245099165, 0.0156301372, 0.00748538785, 0.0246234126, -0.0123333251, 0.0024239684, -0.0119874291, -0.00482902071, -0.0160084609, -0.00452095782, 0.0018672935, 0.0132412994, 0.0359514803, 0.0260502305, 0.0377890468, -0.0145708341, 0.0179325026, 0.0112524023, 0.00628556404, -0.0294659454, 0.0183756817, -0.00557755958, 0.0212185066, 0.0483388491, 0.0160733163, 0.0237370562, 0.0200835392, -0.019651169, 0.0206888542, 0.014938348, -0.0228939373, -0.0124197984, 0.00230641826, -0.00496413605, 0.00705301855, 0.0025550304, 0.0197052155, -0.00742593687, -0.0249909256, -0.015522046, 0.0191107076, 0.0211428422, 0.00656660367, 0.00119239255, 0.00208077556, 0.00149167294, 0.0442097262, 0.018581057, -0.00129845808, -0.00889058691, -0.000297084771, -0.0298983138, 0.0241910443, 0.01587875, 0.00338328723, -0.00774480915, 0.000976208074, -0.000986341736, -0.00244964031, 0.00693952199, -0.00132615666, -0.0109065073, 0.000108936714, 0.0069989725, 0.00685845269, 0.0217481591, -0.00792856608, 0.00906353444, 0.0135763856, -0.00845821761, -0.00995529536, 0.0401022211, -0.0246017948, 0.0105606122, 0.0200835392, -0.000512087, -0.0101985028, -0.0166786332, 0.0341571495, 0.000747187645, -0.0119766202, 0.00127143494, 0.0172407124, -0.0112524023, -0.0223967116, 0.00733405864, 0.0122684697, 0.0203105323, -0.0136844777, -0.035173215, 0.00200646231, -0.00334545481, -0.0485550351, 0.00764212152, -0.0136736687, 0.0143978866, 0.0111226914, -0.0154355718, -0.0577212572, 0.00140655029, -0.0233911611, -0.0306765772, 0.00175379659, 0.0314548425, 0.0463067144, 0.0397347063, -0.00264961109, 0.0203537699, 0.0235424899, 0.0231533572, 0.0199214, 0.000101505371, -0.00357515085, 0.00397509197, 0.0112091657, -0.00923107751, -0.0246450305, -0.010295786, 0.00970668346, 0.0265474543, -0.0164732579, -0.00736108143, -0.0187972412, 3.99012388e-05, 0.0186567213, 0.0110470271, 0.00164840673, -0.0197484531, 0.0173488054, 0.0238235295, -0.0014133061, 0.0258556642, -0.0226561334, -0.052921962, 0.00325898104, -0.00897706, 0.0144303143, -0.0161381718, -0.00941483397, 0.014581643, 0.00749079231, -0.0275202841, -0.0338977277, -0.010474138, 0.038351126, 0.00204294338, -0.0111659281, 0.000359744503, 0.00888518244, -0.0158030856, -0.00483442564, -0.0356488228, -0.00338058476, -0.0115766786, 0.0110470271, 0.0269365869, 0.00726379873, -0.00301036891, -0.0215860214, -0.0143870777, 0.00972289685, -0.0174460877, 0.0352380723, -0.00681521604, 0.0161273628, -0.00792316161, -0.0257259533, 0.04846856, -0.0111983558, -0.0202024393, -0.0120306667, 0.0142897945, 0.000102603182, -0.023520872, 0.00247936579, -0.02940109, -0.0125278905, -0.0176622719, -0.0141060371, -0.00412642118, 0.000711382076, 0.0270014424, 0.00867440272, -0.0143546499, 0.0275851395, 0.00666388683, 0.00793397054, 0.019997064, 0.00223075366, 0.0331843197, 0.00919865, 0.0037291823, -0.0046587754, 0.00623692246, 0.00729082152, -0.0107822008, -0.0268068761, 0.0105498023, 0.0453555062, 0.0154139539, 0.00148761948, 0.00991746318, 0.000461418764, 0.00629637297, -0.0194674134, 0.0254881512, 0.0152518153, 0.0243856087, 0.0233263057, -0.00248206803, -0.00488036452, 0.00168623892, 0.0157274213, 0.022699371, -0.0070097819, -0.0265690722, -0.0178352203, -0.00893382356, -0.0113604944, 0.0140195638, -0.00744215073, -0.0128629766, 0.0160516985, 0.0454852134, -0.0174568966, 0.0185702462, -0.0123657528, -0.0372269675, -0.0527490154, -0.0346327536, 0.0126467925, 0.00149302406, 0.0194457937, 0.0316061713, 0.0588886514, -0.0190782808, 0.0348705575, 0.0371188745, -0.00590183632, -0.00511276303, -0.0391942449, 0.0235424899, 0.0153815262, 0.0292497613, 0.016819153, 0.0167975351, -0.0214887373, -0.0318223573, 0.0159760341, 0.0158679411, 0.0430423319, -0.0106254676, -0.00319142337, 0.0297902208, 0.0398428, 0.00194025575, -0.0049290061, -0.00990124885, 0.0142033203, -0.0142141301, -0.0527057759, -0.0271311533, 0.0274338108, -0.0181270689, 0.0196295511, -0.00501548, 0.0186675303, -0.0144951697, -0.000203010743, -0.0200294927, 0.00191323261, 0.00823662896, -0.0122900875, -0.00355083, -0.0186999571, 0.0444475301, -0.0163327381, 0.025163874, -0.00833391212, 0.0353894, 0.0577644929, 0.0254016761, -0.0109767672, -0.0257475711, 0.00289687212, -0.0185702462, -0.00485874619, -0.0100093419, 0.0107497731, 0.0255746245, 0.0700870082, 0.00580995809, 0.0223534759, -0.0169056263, 0.0100850062, -0.00406156573, -0.0373782963, 0.00339139416, 0.0242775176, -0.00630718237, 0.0469120331, 0.00173623161, 0.012344134, -0.0272392444, -0.00527760386, 0.00623692246, 0.0215860214, -0.000110878995, 0.0297686029, -0.01587875, 0.00112821278, -0.00679900218, 0.0280607454, -0.0123333251, -0.0240397137, -0.017521752, -0.0016092232, 0.00729622645, -0.0156625658, -0.0135007212, -0.0162895, 0.0207212828, 0.0343733318, -0.00964723248, -0.00549919298, 0.0501548, -0.0038805115, -0.00606937939, -0.00557215512, -0.0294227079, -0.00429126201, -0.0322979614, -0.026460981, -0.0129710687, 0.0177379362, 0.0107497731, 0.00502358703, -0.000409399363, 0.000327316811, 0.036708124, 0.0348489396, -0.0370756388, 0.0361676626, 0.0379619934, -0.017067764, -0.000246416545, 0.0558620691, 0.0463499539, -0.0357569121, -0.0385456942, -0.00924188644, -0.0151869599, 0.00630177744, -0.0132845361, -0.00955535378, -0.0257475711, 0.00928512309, -0.00362109, 0.0071881339, 0.0180622134, 0.00910136662, -0.0210023224, -0.00146059645, -0.00773940468, -0.0117712449, -0.0252287295, 0.00441827, -0.0165705401, 0.0217697769, -0.0308711436, 0.0127440756, -0.0260286108, -0.00101133808, 0.0268717315, -0.0152734341, 0.0120630944, 0.00615044869, 0.0422424488, -0.00797180273, -0.00724758487, -0.0126251737, 0.0246666502, 0.0182351619, 0.0133493915, 0.0195430778, 0.017067764, 0.0363838486, -0.0044912328, -0.00257124426, 0.0105984444, 0.0118036726, 0.0012430608, -0.00728541706, -0.00448582787, 0.00425343, -0.00648013, 0.0107227499, -0.00468850089, -0.0054505514, 0.0141276559, -0.0179108847, -0.0234776344, -0.00309954491, -0.0335950702, 0.00891761, -0.0140087549, -0.00809610914, 0.0226561334, -0.00578293484, 0.0272608642, -0.0136844777, 0.0221372917, -0.0272176266, -0.00114442664, 0.0114685865, -0.0252287295, 0.0260502305, -0.0484253243, -0.0113496855, -0.0163975935, -0.028103983, 0.00777723687, 0.00564241502, 0.0225048047, 0.0412263796, 0.0142573668, -0.0113064488, 0.0126684103, 0.00889599137, 0.0100201508, -0.0116847716, 0.0286228247, 0.0151869599, 0.000928917725, 0.0334005021, 0.0400157459, -0.0109335305, -0.00737189082, 0.0353245437, 0.00235911319, -0.00383997685, 0.0104471147, 0.0194566026, -0.00074921432, -0.0132737271, 0.00817717798, 0.0240397137, 0.0230236482, 0.0157058034, -0.00623151753, -0.0497224294, 0.0210347492, -0.0297902208, -0.00204969919, -0.00637744227, 0.00954994932, -0.0331843197, 0.0253584404, 0.00867440272, 0.0191431362, -0.00138087838, -0.02799589, 0.000545865798, -0.0392807201, -0.00234695268, 0.0115766786, 0.00918243546, -0.0108740795, 0.0139438994, -0.000113412403, -0.0419614092, 0.0315629356, -0.0164840668, -0.0321250148, -0.00938781071, -0.0489874035, 0.00877168495, 0.0155869015, 0.0199322086, 0.0135007212, 0.00395617587, -0.00552351354, 0.0116307251, 0.00411831448, -0.00557755958, -0.0367297418, 0.0130467331, 0.0241478067, 0.0277364682, -0.0102633582, 0.0144951697, 0.00548027642, 0.00670712348, -0.0166678242, 0.00253476296, -0.00254151877, -0.0068206205, 0.0132629182, -0.0118036726, -0.0340274386, -0.000806638331, 0.00237397593, -0.01671106, 0.0149923936, 0.0132953459, 0.00605857, -0.015284243, -0.0305468682, -0.0130034965, -0.016235454, -0.0195755046, -0.00688547594, 0.0102039073, 0.010879484, -0.0326870941, -0.0184513461, 0.0182783976, -0.00749079231, -0.0278661791, -0.014700545, 0.00177406392, 0.0190674718, -0.0275851395, -0.0138358073, 0.00705301855, -0.00992827211, -0.0390429161, 0.00751241064, 0.0144303143, 0.0216184482, 0.00564781949, 0.0035454256, 0.00647472544, -0.00878249481, -0.00946888048, -0.0390213, -0.0203970056, -0.0241694245, -0.0298118405, 0.00657741306, -0.00203618756, 0.0177163184, -0.0195755046, 0.00298604812, 0.0235641077, 0.0254232958, 0.013997945, 0.00595588237, 0.00453987392, 0.00329951569, -0.0322763436, -0.0350435041, -0.00563160563, 0.00737729529, 0.0153490985, 0.0207320917, 0.00048168606, -0.0116199162, 0.0147545906, 0.0436692648, -0.0210131314, -0.00239018979, 0.00217940984, 0.00805287156, -0.0103660459, 0.00522355735, 0.00959318597, 0.0333356485, 0.00119914825, -0.00316980504, 0.0265474543, 0.00438584248, -0.0207861383, -0.0335950702, 0.0151545322, 0.0236722, 0.0190458521, -0.0107930107, -0.0266771652, -0.0095013082, 0.00605316553, 0.00142816873, 0.0166462045, -0.0112307835, 0.0220400076, 0.00705301855, -0.023758674, -0.0050181821, -0.0164840668, 0.0252287295, -0.000730298227, -0.00174028508, -0.0100147463, 0.00348597486, 0.0112091657, 0.00249557965, -0.0109443394, -0.00885275472, 0.000178014408, -0.035173215, 0.00124508748, 0.0212509353, 0.0123765618, -0.0180297866, 0.0267852582, 0.00795558933, -0.047647059, -0.00119104143, 0.00361298327, 0.0222670026, -0.02799589, 0.0127116479, -0.00588562246, 0.0147654, -0.0163867846, 0.0124846539, 0.0106957275, -0.00475605857, 0.0355623476, -0.021402264, -0.0056099873, 0.0325573832, -0.00891761, 0.016462449, 0.00226993696, -0.00683142943, -0.00107214, -0.00638825167, -0.0180081669, -0.021294171, 0.00031110298, 0.010938935, 0.0144195054, 0.014224939, -0.00455068331, -0.00858792849, 0.026698783, 0.00329951569, -0.00237802928, -0.0202456769, -0.00359406695, -0.0106633, -0.0160733163, 0.00245369389, -0.00243883114, 0.00636122841, -0.0342652388, 0.0296821296, 0.0291632861, -0.000184770179, 0.0319953039, -0.0289903395, -0.00245774724, -0.0200835392, 0.0282120742, 0.0051992368, 0.0145384064, 0.0208618026, 0.00963101909, -0.00240370119, 0.0130467331, -0.00276175677, 0.000302658271, 0.0143006034, -0.0252935849, 0.0139222806, -0.00274013821, -0.0104038781, -0.000923513086, 0.0115982974, -0.00722596655, 0.00475605857, 0.00224696752, 0.00980937108, -0.0362757556, 0.0224831868, -0.0215644017, 0.00674495567, 0.0103930691, -0.0214671195, 0.010057983, 0.0154139539, -0.0125278905, 0.0135223391, 0.0137925697, 0.00611261604, 0.000368189183, -0.0105768256, 0.00353191397, 0.0131980628, 0.0108902929, -0.0113929221, 0.00650174823, 0.0197808798, -0.00349408179, -0.0276067592, 0.00279688672, 0.00139844336, 0.0148410648, -0.0165164936, 0.0173812322, 0.00476416573, -0.0129278321, 0.00619909, -0.00291308598, -0.00018730358, -0.0131440163, 0.000733000517, -0.0241910443, -0.0252287295, 0.00582076702, 0.00571267493, -0.0238667671, 0.0239100046, -0.0417884588, -0.0165705401, -0.00556675065, 0.0173812322, 0.00227939524, -0.00763671705, 0.0144951697, -0.013414247, 0.0186351016, -0.00952292606, -0.00840957649, -0.0143546499, -0.0169596728, -0.0388267338, 0.0271311533, -0.00673414674, 0.00941483397, 0.012344134, 0.00749079231, -0.00428045262, -0.0149059203, -0.00548838358, 0.0107443687, -0.0195863135, -0.000255199033, 0.0231749769, -0.0278229434, -0.00225372333, 0.0111010736, -0.0306549594, -0.0174568966, -0.0124522261, 0.0136088133, 0.00238073152, 0.0185486283, 0.00169839931, -0.00489657838, -0.00399400853, -0.0274121929, -0.00718272943, 0.0106362766, 0.0164516382, 0.0079609938, 0.00854469184, 0.00913919881, 0.00350489095, 0.00976613443, 0.0089122057, -0.00965804141, -0.00179298, -0.00337788253, -0.0294659454, 6.88665823e-05, -0.00976613443, -0.000300462649, -0.00348057016, 0.0247098859, 0.00973370671, -0.014462742, 0.013414247, -0.035173215, -0.00674495567, -0.0293146167, -0.00354812783, -0.025531387, 0.00507222861, 0.0110254083, 0.00222534896, 0.0311954208, -0.00775021361, 0.00716651557, -0.00326168328, 0.0070800418, -0.00125589676, 0.00385078602, 0.000259759167, 0.0279310346, 0.00740972301, 0.0184729639, 0.0105552077, -0.0244288463, 0.0145708341, -0.0162462629, -0.00896084681, 0.0140844192, 0.00902029779, 0.0150248213, 0.00417506276, -0.00877168495, 0.00854469184, -2.13439944e-05, 0.00559917791, -0.0212833621, 0.00384808378, 0.0142789846, -0.0268933494, -0.0143330311, -0.0171001926, -0.0340706743, 0.00780425966, -0.0163759738, 0.0247315057, 0.00710706506, 0.00424262043, -0.00634501455, -0.00747998292, 0.0226561334, -0.00152274943, 0.00765833538, 0.0246017948, -0.00104984595, 0.0032805996, -0.00229425775, -0.0155544737, -0.00962020922, -0.00672874181, 0.0240829512, 0.0148518737, 0.0184729639, -0.012581937, 0.00625313632, 0.0201375838, 0.00203753868, -0.00884194579, 0.00328600407, -0.00522085512, 0.00392104592, -0.000260434754, -0.0453122668, 0.0310873277, -0.0098580122, -0.0213806462, -0.0127224568, -0.000927566551, 0.00425343, 0.00963642355, -0.00527760386, 0.00653958041, 0.0116955806, -0.00688547594, -0.000841092726, 0.00678819278, 0.00183486578, 0.0215427838, 0.00551270414, 0.00158355129, -0.0295091812, 0.00137479824, 0.0338761099, -0.00811232254, 0.00976613443, -0.0133818192, -0.0069287126, 0.0374431536, -0.00615044869, 0.0166462045, -0.0112415934, -0.000972830167, 0.0160841253, -0.0195214581, -0.0317142643, 0.0127873123, -0.0124306073, -0.00790154282, -0.00819879677, -0.00858252402, -0.0155004272, -0.0164084025, 0.00702059129, 0.00339139416, -0.0180946421, 0.00010750111, 0.00860954728, -0.00291038351, -0.00498575484, -0.0112632113, -0.0102903815, -0.00704220962, 0.0262664147, 0.0109281251, 0.00512627466, 0.0240829512, 0.0315413177, 0.0129926875, 0.00208077556, 0.0123117063, 0.0128521677, -0.0032805996, -0.0151653411, 0.018581057, -0.0181919243, 0.0120630944, 0.0169596728, -0.0169921, 0.00292119291, -0.00518572517, 0.00740431855, 0.00042696434, 0.0259421375, -0.014473551, -0.0284066405, -0.0133602014, -0.0118252914, -0.00982018, -0.000376633892, 0.0103282137, 0.00151329138, -0.00687466655, -0.00206185947, 0.0096094, -0.00539920758, -0.00925810076, -0.0132845361, 0.017532561, -0.0199214, 0.0167651065, -0.0313251317, 0.00866899733, 0.0142141301, -0.0155004272, 0.00148356601, 0.0156625658, 0.00597209623, 0.000722866855, -0.0384159833, -0.00684223883, 0.00128629769, 0.018818859, 0.0047506541, 0.000743809738, 0.0156949926, -0.00645310665, -0.00217400515, -0.0103228092, 0.00429936871, 0.0133710103, -0.00811232254, -0.00269555021, 0.0113388766, -0.0254881512, -0.0273473375, -0.0345679, -0.0295740366, -0.00291038351, 0.00932836067, -0.00970668346, -0.00327249267, 0.0157706589, 0.00359676941, 0.0132953459, 0.00359406695, -0.0046695848, -0.0274338108, -0.00827446114, -0.0164840668, -0.00229831133, 0.0197268333, 0.0392374843, -0.0200511105, -0.0380484685, 0.0223750938, 0.0110308127, -0.0137709519, -0.00489928061, 0.0274121929, -0.00152139831, 0.0371188745, -0.0249476898, -0.0257259533, -0.00304549886, -0.00110524322, 0.0333788842, 0.00315088872, 0.0164732579, -0.0530084334, 0.0254449137, -0.0347624645, 0.016700251, 0.0042183, -0.0161597896, 0.0244720839, 0.0200835392, 0.0211752709, 0.00742593687, 0.0108740795, 0.00140519917, -0.00912298542, -0.0244937018, -0.00739350915, -0.0129062133, -0.0136088133, -0.00242667086, 0.0167867243, 0.00192539301, 0.0140087549, -0.0144195054, 0.0215644017, -0.0233911611, -0.00376431225, -0.0176622719, 0.0128413578, -0.0156733748, -0.0224399492, -0.000831634679, -0.00162273482, 0.00573969819, 0.000463107688, -0.0169812907, 0.00274419179, 0.00957156811, -0.00380214467, 0.00624232693, 0.0156301372, -0.00397779467, 0.00151734485, -0.0263961256, -0.00795018394, -3.5388598e-06, -0.00209428719, 0.00133629038, -0.0181270689, 0.0128089301, 0.0166029688, 0.0102795726, -0.0238667671, 0.00428856, 0.00875547156, -0.0199105907, 0.0165597312, 0.024817979, 0.0586724691, -0.0139438994, 0.0199322086, -0.00331572955, 0.0370756388, -0.0185486283, 0.00308603351, -0.00569105661, -0.0186459124, 0.0121711865, 0.0038048469, -0.0288822465, -0.0132412994, -0.00320763723, 0.00612342544, -0.00858252402, 0.0271527711, -0.0239532404, 0.0236073453, -0.00287525356, -0.00671252795, -0.0253584404, -0.00376971695, -0.00632880069, -5.35816616e-05, -0.0192512274, 0.0049290061, -0.0140736094, -0.00543163531, 0.00198349264, -0.0155112362, 0.00229425775, 0.00580995809, 0.0213914551, -0.00843119435, 0.022937173, -0.00689628487, 0.0169704817, -0.00418857438, 0.00102552515, 0.0219102968, -0.0100687919, 0.00356163946, 0.0121387588, 0.0046695848, -0.0172623303, 0.00756645668, -0.00278607756, 0.00679359725, -0.0289038662, -0.0301361177, 0.00177136157, -0.00800423, 0.0177163184, -0.0130143054, -0.0160300788, 0.0183864906, -0.00313467509, -0.00284282584, 0.0187648125, -0.00158490252, -0.00374539616, 0.00839876756, 0.000702599587, -0.00453987392, 0.00559377344, 0.0121603776, -0.00548568135, 0.00722596655, 0.012354943, 0.0231965948, -0.00731244031, -0.00964182802, -0.0212617442, -0.00179027778, 0.005439742, 0.0140303727, 0.00430207141, -0.0116523439, -0.0173920412, 0.0129818786, 0.00212266133, 0.015997652, -0.0229587927, -0.00788532943, 0.00997691415, -0.00607478386, 0.0165597312, -0.0202024393, 0.0228074621, 0.0130683519, -0.0188945234, 0.00659903139, -0.00912839, 0.00608018879, 7.3891184e-05, 0.0137493331, -0.00872304384, 0.00417776499, 0.00210374524, -0.0106633, -0.00282661221, -0.0211536512, -0.021521166, 0.0235857274, -0.00637744227, -0.0109281251, -0.00058065803, 0.0106849177, 0.0123981796, 0.000508709112, 0.0204942897, 0.0299415514, -0.000411426096, 0.00504790759, -0.00112348376, -0.0262015592, 0.00523436675, 0.00813934579, -0.00611261604, -0.0189701878, -0.0337680168, 0.00867980719, -0.00932836067, 0.00252800738, -0.00827446114, -0.00993908197, 0.00238208286, -0.0199862551, 0.0214455, -0.0211320333, 0.0207969472, -0.00978234783, -0.0153382886, -0.0135331489, -0.00790694728, 0.0205050986, 0.0193917472, 0.0239316225, -0.0163975935, 0.00482361624, 0.0408804864, 0.000539785658, -0.0276716147, -0.00835012551, 0.00119104143, -0.00220102817, -0.0122468509, 0.0214563105, -0.00189837, 0.0302442089, -0.0218886789, -0.0171434302, 0.0157058034, -0.0101606706, -0.0111659281, 0.0215535928, 0.00404535234, -0.00966344681, -0.0121928044, -0.00418317, -0.00247801468, 0.0211644601, 0.0116955806, -0.0185162015, 0.047647059, -0.019175563, -0.0192188, 0.0126792202, 0.00192674424, -0.00809070468, -0.000799882575, 0.0128305489, 0.00777183194, 0.00606937939, -0.0171110015, 0.0183864906, 0.0259205196, 0.00878249481, -0.00458581327, -0.0136304321, 0.0082096057, 0.00396158081, -0.0183864906, 0.023412779, 0.0167326797, 0.00817177352, -0.00119306811, 0.0248395968, 0.000409737142, 0.000412777241, -0.0157814678, 0.00704220962, -0.0085500963, -0.0113713033, 0.0022591278, -0.00226183026, 0.00658281753, -0.00616125762, -0.0215644017, 0.00212131022, 0.00627475465, 0.0180838313, 0.00242261728, 0.0281904563, -0.00946347602, 0.0133061549, -0.0032805996, 0.0101606706, -0.0122468509, -0.0320817754, 0.000185276862, -0.00145924522, -0.00413452834, -0.00851226412, 0.0337680168, 0.0135331489, 0.0109119117, -0.0166462045, -0.0145384064, 0.0142789846, 0.00419668108, 0.00755024282, 0.0158679411, 0.00380754913, -0.00362649467, 0.0147437816, -0.0193052739, 0.0123333251, -0.00547487196, -0.00864737947, 0.00974451564, 0.0010505215, 0.00503980089, -0.0136628589, -0.00397779467, -0.0020388898, -0.00489928061, 0.015057249, -0.00990665425, -0.00986882206, -0.00762050319, 0.00437503355, -0.0307198148, -0.00759348, -0.014700545, 0.0303523019, -0.00381835853, 0.0181486867, -1.33954154e-05, 0.0229804106, 0.00157139101, -0.00231047161, 0.0013498019, 0.0149059203, -0.000507695717, 0.0218346324, -0.0113064488, -0.0113713033, -0.00341841718, 0.00493441103, -0.00915000867, 0.0140628, 0.0103065949, 0.000690777, -0.0212725531, -0.00481550954, 0.0227209888, -0.00274419179, 0.00689088041, 0.0051100608, 0.0119874291, 0.0128954044, 0.00557755958, -0.00455608778, -0.00400481746, -0.00212131022, 0.00628015911, -0.0203753877, 0.0132304905, -0.00963642355, 0.0126792202, 0.00491279224, -0.0252503473, -0.0203213412, 0.0333356485, -0.00369135, 0.0126035549, 0.00128899992, 0.0137709519, -0.0051803207, -0.0123657528, 0.0146897351, 0.0167434886, 0.0159544144, -0.00434801029, -0.0265258364, -0.00976613443, 0.0405778289, 0.0491603501, 0.0280607454, 0.00221994449, 0.0112740211, 0.0229155552, 0.00319682807, -0.0190242343, -0.01587875, 0.0083879577, 0.0111875469, 0.00810151361, 0.00104511681, 0.000986341736, -0.0134250559, -0.00566403335, 0.00521815289, 0.00743674627, -0.0116847716, -0.00538569596, -0.00271041295, 0.00698275864, -0.00540731428, -0.00260367175, -0.0101552662, -0.0188620966, -0.0120522846, 0.0154247629, 0.00256448844, -0.00822041463, -0.00141465722, -0.00778264133, 0.0152410064, -0.0227858443, -0.0191215184, 0.0224399492, -0.0177919827, 0.0234776344, 0.0126035549, 0.0157274213, 0.000183756812, -0.00442907959, -0.00880411267, -0.0092472909, -0.00521274842, 0.00487496, 0.00594507344, -0.00837714877, -0.0202132482, -0.00421289494, -0.00908515323, -0.00297523895, -0.01128483, -0.00195782073, -0.00685845269, -0.00335085951, -0.0221372917, -0.0142681757, -0.00430477364, -0.00194701145, 0.0142465578, -0.0138574252, 0.0204078145, -0.0130034965, 0.0115874885, 0.00908515323, 0.00512357242, 0.00274284068, 0.000103363207, -0.00602614228, -0.0119225746, 0.00462905038, 0.00902029779, -0.0107497731, -0.0168083441, 0.020829374, -0.00593966851, 0.0245801751, -0.0131548261, -0.0247747414, -0.0109011028, -0.00334815728, -0.0316926464, 0.00499386154, -0.0199754462, 0.0175109431, 0.000995799783, 0.00247125886, 0.00314818649, 0.0408588685, 0.0164840668, 0.00436152192, 0.0159760341, 0.0144951697, 0.0129062133, -0.00290227658, 0.0120630944, -0.0211644601, -0.0198349264, 0.0103282137, 0.0160949342, 0.00850145519, -0.000100745347, -0.00257664872, 0.0255962424, 0.00440475903, 8.79093932e-05, -7.5284559e-05, 0.0201700125, -0.00286174216, -0.0165273044, 0.0119117647, -0.000577955681, -0.000975532457, 0.00321844639, -0.0190782808, 0.0259637572, 0.000541474554, 0.0108524607, -0.00110456755, -0.0151761509, 0.00725298934, 0.0181486867, 0.0131007796, -0.0046587754, -0.00170515513, -0.00536137493, -0.00340490555, 0.0154896183, 0.0265474543, -0.0161381718, 0.00775021361, -0.00915541314, -0.0213157907, 0.0240397137, -0.00645851158, -0.00369675457, -0.0176622719, -0.0015646352, 0.00530732889, 0.00478308182, -0.0155544737, -0.0311521832, -0.00980937108, -0.0043290942, 0.0159327965, 0.0142897945, 0.0165489223, -0.00914460327, 0.00394536695, -0.0146681173, 0.0151761509, 9.4834053e-05, -0.000164587327, 0.0135439578, 0.0249476898, 0.00730703538, 0.0188620966, -0.0179865491, 0.0158679411, -0.0161057431, 0.0258340463, -0.00773940468, -0.00064956682, -0.0083014844, 0.000354677672, 0.00920945872, 0.00373999146, -0.00339409639, 0.0188080501, 0.00710706506, 0.00274284068, -0.0192728471, 0.00205645477, -0.00198484375, -0.00447501894, 0.00233073905, 0.0257691909, -0.0205915719, 0.0250125453, -0.00366973155, 0.0117388172, -0.00565862888, -0.00576131651, 0.013414247, -0.0144843599, 0.000960669771, -0.00170650624, -0.00376161, -0.0120522846, -0.0317791179, 0.008641975, 0.000401630241, 0.011998239, 0.0126792202, 0.00501277763, -0.00406426843, 0.000680643308, 0.011879337, 0.00045972981, -0.00178352196, 0.0014822149, -0.0228939373, 0.00396698527, -0.01671106, 9.23006373e-05, 0.00569105661, 0.0132088717, 0.00311305653, -0.00722056162, -0.00318872114, 0.0213374086, 0.00692330813, 0.00173623161, -0.00784749631, 0.021758968, -0.00537488656, 0.00478308182, -0.00892841909, -0.0141276559, 0.00344814244, 0.0214346908, 0.0159219876, 0.0041507422, 0.0100417696, 0.0193052739, -0.00183756812, 0.0103336181, 0.00357244862, -0.0147870183, 0.0328384228, 0.00583698088, -0.0351299793, 0.0245369393, -0.00410480285, -0.0092472909, -0.0128305489, -0.00690169, -0.000180716714, -0.0164408293, 0.00951211713, -0.0064909393, -0.00867980719, -0.00174839201, 0.0308711436, 0.0159652233, -0.0062207086, 0.017521752, 0.000138662072, -0.00401562685, -0.0321466327, 0.0099498909, 0.0133493915, 0.0109011028, 0.0211752709, 0.0111335013, 0.0185270105, 0.0180730224, -8.16603133e-05, -0.0188404769, 0.0046587754, -0.00428315485, 0.0250990186, -0.00628015911, -0.0221805274, 0.032579, -0.00274419179, -0.000592142809, 0.0199322086, 0.0102255261, -0.0274121929, -0.0110091949, -0.00844740868, 0.00730163092, -0.00987963099, -0.0199430194, 0.011998239, 0.00647472544, 0.00455608778, -0.0230236482, -0.00383997685, 0.00567484275, -0.016462449, -0.0152734341, -0.00773940468, -0.00902029779, -0.00609640218, -0.00446150731, 0.0177055094, -0.0238667671, 0.0227209888, -0.00587481353, -0.0151221044, 0.0211536512, -0.00324546965, 0.0023401971, 0.0107713919, 0.00196863, 0.00115591136, 0.00522355735, -0.0258556642, 0.0165921599, -0.0201808214, 0.00933376513, 0.000351975352, 0.0179108847, 0.0178676471, 0.00922567304, 0.0120414756, -0.00849064533, -0.0215319749, -0.0114145409, -0.0118901469, 0.0234560166, -0.0154788094, 0.0311738029, -0.0111010736, 0.000651255774, 0.00546406256, 0.0113172578, -0.00926891, 0.00186999573, 0.0147329727, -0.00182000315, 0.00357244862, 0.0123333251, 0.00635041902, 0.0116955806, 0.0074475552, -0.00373458699, 0.00930133741, -0.0189161431, -0.0134682935, 0.00573429326, 0.00463445485, -0.000305867259, 0.0102309305, -0.00417236052, -0.0136196222, -0.000799882575, 0.0172082856, -0.0170461461, 0.0129170232, 0.00870142505, 0.00413182611, -0.0101822894, 0.0143114123, 0.0158463232, 0.0137277143, -0.00173082703, 0.022937173, -0.0145167876, -0.0216076393, -0.0113604944, -0.032579, -0.0089122057, 0.00844200421, 0.0235857274, -0.00605857, 0.0250774, -0.00918243546, 0.0207645204, -0.0122900875, -0.01065249, -1.35326418e-05, 0.0339625813, -0.00278607756, 0.0135007212, -0.00837714877, -0.0192620382, 0.00124643871, -0.0133385826, 0.0241261888, -0.0119658113, 0.0100201508, 0.0118469093, -0.0124738449, 0.00700437743, 0.0211212244, 0.0053586727, 0.0180622134, 0.0262880325, -0.0212833621, 0.0168407708, 0.0206348095, -0.0364487022, -1.46304537e-05, -0.0160300788, 0.003204935, 0.00598831, -0.00546136033, 0.0151437232, -0.0076096938, -0.0135871945, -0.0425018705, 0.0189809967, 0.00352380704, 0.011295639, 0.000760023599, -0.00999312755, -0.0114037311, 0.0255097691, -0.0143654589, -0.00343463104, -0.0110145994, -0.0214779284, -0.00985260773, -0.00392915308, 0.0115118241, 0.00503439596, 0.0231317393, -0.00987422653, -0.00713408785, -0.00529381773, -0.0186134838, -0.00315629342, -0.0317575, -0.00187810266, 0.000667469576, -0.0135115301, -0.041874934, 0.0110794548, 0.00403724518, 0.00193349994, -0.00199295068, -0.0173488054, 0.00126467925, 0.00537218433, 0.00301847584, -0.0250774, 0.0154355718, 0.0139763271, -0.00779885519, -0.0130143054, -0.0195755046, 0.00989584439, -0.0169488639, 0.013057543, 0.00790154282, 0.00739891408, -0.00236992235, -0.019175563, -0.00144978717, 0.000801233749, 0.00369675457, -0.0067395512, 0.00391564146, -0.0238019116, 0.0335085951, 0.00970127899, -0.02047267, 0.000284417707, -0.0242775176, -0.000106825537, 0.0143222222, 0.00138898531, -0.0123873707, -0.0124306073, -0.00568024721, -0.0202132482, -0.0228290819, 0.0207969472, 0.0159652233, -0.00122684694, -0.013760142, -0.0121711865, 0.0188945234, 0.00613423483, 0.00235641096, 0.010463329, -0.0125278905, 0.00121063308, 0.0147870183, -0.00707463734, -0.0102417395, -0.0190566629, 0.00354272313, -0.0116631528, 0.0307198148, 0.000706653052, -0.00683683436, -0.0211212244, 0.00210644747, 0.00388321374, -0.00765833538, 0.0127548845, -0.0116523439, -0.0220183898, -0.0162462629, 0.00292659737, -0.00907434337, 0.00621530367, 0.0106200622, -0.00766374, -0.0104417102, -0.00717192, 0.00904191565, 0.0135763856, 0.0272608642, 0.0126467925, -0.00954454485, -0.00831769779, 0.00650715269, -0.0154571906, -0.00483442564, -0.0128521677, 0.0028644444, 0.0129278321, -0.0114793964, -0.00659903139, -0.0313035138, 0.0133926291, -0.0103336181, 0.00911758095, -0.00827446114, -0.0250774, 0.0113604944, 0.016235454, 0.0125711281, 0.014938348, -0.000559039589, -0.0283850227, 0.00116401829, 0.0178352203, 0.00483983, -0.00739350915, -0.00878249481, 0.00874466263, 0.00180243817, 0.00938781071, 0.00328330183, -0.0185378194, -0.0057883393, 0.00161733013, 0.00360487634, 0.00820420124, -0.025163874, -0.00889058691, 0.0234560166, -0.0210671779, 0.00100796018, -0.0153058609, 0.00809070468, -0.00929593295, -0.0153923351, -0.00872304384, -0.0105281845, -0.0259421375, -0.0134574836, 0.0154896183, -0.0208834205, 0.025163874, 0.0121387588, -0.0217913967, 0.00952292606, -0.0195538867, 0.0148302559, -0.00114915567, 0.0236722, 0.00785830617, -0.00243612891, 0.0096094, -0.0244288463, -0.0326438583, -0.00324276718, -0.0102201216, 0.0036346016, -0.000544852461, 0.00487766229, -0.0147870183, 0.0405994467, 0.00979856122, -0.0105443979, -0.00521274842, -0.0125062726, -0.0069989725, -0.0144195054, -0.0156301372, 0.0152518153, 0.00657200813, 0.0204078145, -0.00594507344, -0.014235748, 0.012700838, -0.00789073389, -0.0182243511, -0.00665307743, 0.0013099428, -0.0169488639, 0.00738810468, 0.00632339623, -0.0017348805, -0.015295052, 0.0115550607, -0.00685845269, -0.00643148832, -0.0035454256, -0.000459392031, -0.00663686357, 0.00717192, -0.020829374, -0.0133277737, 0.00939862058, 0.00217130291, 0.0046587754, -0.00751241064, -0.0117712449, 0.000674563169, -0.0104849478, -0.00187810266, -0.0208726116, 0.0213482175, 0.00122684694, -0.0110362181, -0.0308495257, -0.00699356804, 0.0144086955, 0.00803665817, 0.0209807046, 0.0156085193, 0.0151221044, 0.00475605857, -0.000287288916, 0.00602073781, 0.030935999, -0.00797180273, -0.00734486757, -0.0153490985, -0.00599371456, 0.00757726608, 0.00412371894, -0.000327485701, -0.00479929568, -0.02047267, 0.00394266471, -0.0032805996, -0.00507493084, -0.00281580281, 0.00936619285, -0.0130683519, -0.00959859136, 0.0212833621, 0.0129170232, -0.00115928927, 0.00706382794, -0.0207320917, -0.0091608176, 0.016462449, 0.00363189937, -0.00494522, 0.00263745058, -0.0185270105, 0.0128521677, 0.0095175216, 0.00672874181, 0.015640948, -0.00910136662, 0.016354356, 0.00020081512, 0.0199214, -0.00289416965, -0.00316980504, 0.00830688886, 0.0063990606, -0.008820327, -0.0080312537, -0.00425883429, -0.00806908589, -0.0165164936, 0.0199322086, -0.0129818786, -0.00495062442, -0.00404264964, 0.0179541204, -0.0196944065, -0.00612883, -0.00315629342, 0.0225048047, 0.0135331489, 0.00285363523, -0.00984720327, -0.0093229562, -0.0157814678, -0.00387510681, -0.00208212668, -0.00747998292, 0.0181270689, -0.0070800418, 0.00660984032, 0.000793802377, 0.00317791197, -0.0181270689, -0.000273608486, 0.00814475, -0.0114469687, -0.00181324733, 0.00746376906, 0.0113713033, -0.0100741973, -0.0127332658, 0.0232830681, 0.0225048047, -0.0183973, 0.0255962424, -0.00698275864, 0.00576131651, -0.0169596728, -0.00479389075, -0.0197376441, 0.0108362474, -0.0122144232, -0.0123981796, 0.0180946421, -0.00947968941, 0.00131804973, 0.0113172578, -0.023045266, -0.00235505961, -0.00523706898, -0.00531003112, 0.00248341914, -0.00484253233, 0.0100525785, 0.0122036142, 0.011522633, 0.0102039073, -0.0163327381, -0.0209482759, 0.0130791608, -0.0183108263, -0.019294465, 0.00064145989, 0.0070908512, -0.000664091727, -0.0138249975, 0.00572888879, 0.00243072421, -0.019402558, -0.00390753429, 0.0162678827, 0.0114145409, 0.00835553, -0.0305036306, 0.011533442, 0.0214238819, -0.00987963099, -0.0253152028, 0.0126359826, 0.00644770218, -0.0126359826, 0.00841498096, -0.0256178603, -0.0032751949, 0.000109021159, -0.011760436, 0.018926952, 0.0219211057, -0.00894463342, -0.0276283771, -0.0193377025, 0.00505331205, -0.012700838, -0.0206780452, -0.0182351619, 0.00658822199, -3.22376654e-05, -0.0079609938, -0.00177811738, -0.000231553844, -0.00551270414, 0.0050181821, -0.00247531221, -0.0057180794, 0.000628623937, -0.0148843015, -0.0206888542, 0.00914460327, 0.000531340949, 0.0138358073, -0.00508574, 0.0192404184, 0.0090689389, -0.0231317393, -0.0142033203, 0.00414804, -0.0219643433, 0.0175866075, 0.0118469093, 0.00858252402, -0.00120860641, 0.0114577776, 0.00187404919, -0.0186891481, -0.00817717798, 0.00408858899, -0.0015646352, 0.00428856, -0.0139222806, -0.0118361, -0.00028644444, -0.0115766786, -0.0128737856, -0.0266339276, 0.00282120751, -0.00471552415, 0.00771778589, 0.00421019271, -0.0306765772, -0.0125387, 0.00982018, -0.0239316225, 0.0153382886, 0.0257908087, -0.0316277891, -0.0217481591, -0.00973370671, -0.01671106, -0.0109875761, 0.0107659874, 0.00526409224, -0.0153058609, -0.00320223253, 0.0143870777, 0.00880411267, -0.0222670026, 0.0154788094, -0.00310765184, 0.0179649312, -0.0133926291, 0.00132548111, -0.0120955221, 0.0115550607, -0.0222453829, -0.00858792849, -0.0227858443, -0.00886896811, -0.00220778398, -0.00225372333, 0.00944185723, -0.0042183, 0.00713949231, -0.014116847, -0.00451014889, -0.00331572955, 0.0167651065, -0.0170137193, -0.0189593788, 0.025531387, 0.000724893587, 0.0151329134, 0.00403994741, 0.00298604812, 0.0241478067, 0.00863657054, 0.0276716147, 0.0192728471, 0.0109929806, 0.00683683436, 0.00583157642, -0.0108902929, -0.0218022056, -0.0111443102, 0.00278067286, 0.0054586581, -0.0236722, -0.00255638151, -0.031649407, 0.0210671779, -0.0181486867, -0.00227399054, 0.00941483397, -0.0164948758, 0.0199105907, -0.00655039, -0.00306171272, -0.0246666502, -0.00209023361, -0.00312927039, 0.00035535323, 0.0191215184, 0.0149599658, 0.00139303878, 0.0181486867, -0.00505331205, 0.00260637421, -0.00205510366, 0.00918784086, -0.00780425966, -0.0275419038, 0.00134777511, 0.0080474671, 0.0024239684, -0.0130034965, -0.0056099873, -0.00273878709, 0.000735702808, -0.000941753678, -0.00346705853, 0.0181378778, -0.00573429326, 0.0135331489, 0.0176190361, -0.0164192114, -0.0254449137, 0.00475605857, -0.00328330183, -0.00238748733, 0.0125170816, 0.00379674, 0.000565795344, -0.0278229434, -0.00662605418, -0.0290119573, -0.0231533572, -0.0227426067, -0.0223318562, 0.00436692638, -0.0502412729, -0.0299199317, 0.0135655766, -0.00763671705, 0.0030157736, 0.00686926208, 0.0107822008, 0.00795018394, -0.00362379244, -0.000358731137, -0.00447772117, 0.000899867911, -0.00680440664, 0.0122036142, -0.00936619285, -0.0279742721, -0.00219967705, 0.0162570737, 0.00617206702, 0.0027144663, 0.0126143647, -0.00877709, 0.0158463232, 0.0205699541, -0.00342922634, 0.016700251, 0.00578293484, 0.0276283771, 0.00611261604, -0.0129926875, 0.00794477947, -0.0128954044, 0.0125495093, 0.00815555919, 0.00559917791, -0.00162813941, -0.0179000758, -0.0112091657, 0.0164840668, 0.0128089301, -0.019651169, 0.00836634, 0.0270014424, 0.0211212244, -0.00262799254, -0.00994448643, -0.0125387, -0.0231965948, -0.0119225746, 0.0222670026, 0.00704220962, -0.0264825989, 0.00721515715, -0.0196727887, 0.00359406695, -0.00531813828, -0.0168299619, 0.0207537096, -0.0211644601, -0.00680440664, 0.005880218, 0.0076096938, 0.00647472544, -0.00696654478, 0.0103228092, -0.0212076977, 0.00112415932, -0.00632880069, -0.0168407708, -0.0111226914, 0.00268339, 0.0168515798, -0.00747457845, 0.00096337212, -0.0143870777, -0.00630718237, -0.00616666256, -0.000403994753, -0.0178460293, -0.00418046722, -0.0109119117, 0.00436152192, 0.00313197263, 0.00379403774, -0.00697735418, -0.00214968435, -0.00772859529, 0.0103011904, -0.0124954628, -0.00874466263, 0.00231992966, -0.00971208792, 0.025877282, 0.0295308, 0.0111335013, -0.00229966245, 0.000577280123, -0.0103336181, -0.0138249975, -0.020105157, 0.0151004856, -0.00061409903, -0.00030569837, 0.000927566551, 0.0128845954, -0.0161165539, 0.000673549774, 0.0180189759, 0.00950671267, 0.0213266, 0.0149707757, -0.0201267749, 0.0116955806, -0.00390753429, -0.00318331644, -0.0165273044, -0.0166786332, -0.017640654, 0.00708544627, 0.00583157642, 0.0182027332, 0.00369405234, -0.0107876053, 0.0322547257, 0.00966885127, 0.00504790759, -0.0111335013, -0.0155869015, 0.00178081973, -0.00188215612, 0.0294227079, -0.0177379362, -0.00845821761, -0.00937700178, -0.00655579427, -0.00577212591, 0.013879044, -0.0263096523, -0.0121928044, 0.0178568382, 0.0108362474, 0.00425343, 0.0125170816, 0.000976883573, -0.00711787399, 0.0141384648, -0.00621530367, 0.00299685728, 0.00257394649, -0.00613423483, -0.0159219876, -0.0296172742, -0.0346111357, 2.94298025e-05, 0.00770157203, 0.00237397593, -0.00409129122, -0.00688547594, 0.000684359, -0.0162570737, 0.000224798088, -0.00381295383, 0.0181270689, -0.00470741699, 0.0125278905, 0.0135547668, -0.000173960958, -0.0289903395, -0.00846902747, -0.00964182802, -0.0113821132, 0.00164300203, 0.0273041, -0.0141817024, 0.00812853687, -0.00764752598, 0.0217157304, 0.0362325199, 0.00155652827, 0.008641975, -0.0031049496, 0.0244937018, 0.0165164936, -0.0121819954, -0.00143627566, 0.00117212522, 0.00634501455, -0.0165813491, 0.0180730224, 0.0247531235, 0.00671252795, 0.0117280083, -0.00658822199, -0.0193485115, 0.000234593943, -0.0160300788, 0.0420695, -0.0264177434, 0.00170785736, 0.0208618026, -0.00784749631, -0.0164732579, -0.0238451492, 0.0144303143, 0.00922026858, -0.0070908512, 0.00246180082, -0.00273338263, -0.0106903231, -0.00435611745, -0.000292693527, 0.00878249481, 0.000596196274, -0.00253746542, 0.00736648636, 0.0102471448, 0.00868521165, -0.00666388683, 0.00466418033, 0.00233614352, -0.000640446553, 0.0115442518, -0.00498845708, 0.00078772218, 0.00823122449, 0.00910677109, -0.000489792961, -0.03411391, 0.000937700213, 0.0114037311, -0.000801909307, -0.00324006495, -0.0135871945, 0.0166353956, 0.0149167292, 0.00876628049, 0.0127656935, 0.00712327892, -0.00979856122, 0.0413128547, 0.0215103552, 0.0173920412, 0.0183864906, -0.0203970056, -0.0196944065, 0.000509046891, -0.0114469687, 0.00469390536, -0.00182946119, 0.0302874465, -0.0111226914, 0.0173596144, 0.0104795424, 0.0187756214, 0.0223967116, -0.0120414756, -0.00643689279, -0.0107713919, 0.0124197984, -0.00169299473, 0.0123981796, 0.00107078871, -0.0302874465, -0.0103984736, -0.00055633724, 0.00731244031, -0.00447231671, 0.0249044523, 0.0046803942, -0.0022145398, -0.0133710103, 0.00512897689, -0.00065260689, -0.0213698354, 0.0076096938]
14 Jul, 2020
Difference between Couchbase and Redis 14 Jul, 2020 1. Couchbase : Couchbase Server is an open-source, distributed multi-model NoSQL document-oriented database software package that is optimized for interactive applications. It is also known as Membase. It was developed by Couchbase, Inc. and initially released on August 2010. 2. Redis : Redis stands for Remote Dictionary Server which is an in-memory data structure project implementing a distributed, in-memory key–value database with optional durability. Redis is developed by Redis labs and initially released on May 10, 2009. It is written in ANSI and C languages. Redis offers memory efficiency, fast operating speed, high availability and provides some features like tenability, replication, clustering, etc. Difference between Couchbase and Redis : S.No. COUCHBASE REDIS 1. It was developed by Couchbase, Inc. and initially released on August 2010. It developed by Redis labs and initially released on May 10, 2009. 2. It is written in C++, Erlang, C and Go languages. It is written in ANSI and C languages. 3. The primary database model for Couchbase is Document Store. The primary database model for Redis is Key-Value store. 4. It supports secondary indexes without any restrictions. It supports secondary indexes only with RediSearch module. 5. It supports Declarative query language (N1QL) that extends ANSI SQL to JSON. It do not have SQL support. 6. The Server-side scripting in Couchbase is via the Functions and timers in JavaScript. The Server-side scripting in Redis is through Lua. 7. It does have Triggers. It does not have Triggers. 8. It supports Map Reduce method. It does not support Map Reduce method. 9. It supports Master-Slave Replication and Master-Master Replication. It supports Master-Slave Replication and Multi-Master Replication. 10. Server operating systems for Couchbase are Linux, OS X and Windows. Server operating systems for Redis are BDS, Linux, OS X, Windows. 11. Famous companies like Lockwood Publishing, Code Weavers, MSLGROUP, The Doyle Group, etc uses Couchbase. Famous companies like Snapchat, Craigslist, Digg, StackOverflow, Flickr, etc uses Redis. Feeling lost in the vast world of Backend Development? It's time for a change! Join our Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule. What We Offer: Comprehensive Course Expert Guidance for Efficient Learning Hands-on Experience with Real-world Projects Proven Track Record with 100,000+ Successful Geeks
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis
https://www.geeksforgeeks.org/difference-between-couchbase-and-redis/?ref=next_article
Languages
Difference between Couchbase and Redis
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0193023477, -0.00188966561, -0.0277720354, 0.0464907587, -0.00466544554, -0.0207542945, 0.0139002521, -0.0118290931, -0.0439284965, 0.0124127185, 0.052725587, -0.0295798499, 0.000540921232, -0.0236866567, -0.00476864772, 0.00835580938, -0.00163966755, 0.0220069531, 0.00349463592, 0.0130319316, 0.0480850525, -0.0248823762, 0.00846257061, -0.0235158391, -0.0159144718, 0.0428181849, 0.0302061811, 0.005206367, -0.014789925, 0.0290104598, 0.0244410988, -0.0144340564, 0.0206973553, 0.00299286027, -0.0206404161, -0.0173806529, 0.0126831792, 0.00440210244, -0.00522771897, -0.00879708771, 0.0389178582, 0.00364232156, -0.0181208607, -0.0119927935, -0.00736649334, -0.00648037856, -0.00527754053, -0.0559995845, -0.0131813968, -0.0114661064, -0.0035782652, -0.0102490336, 0.0273307581, 0.00264410838, 0.00320994039, 0.0116298068, -0.0232453793, 0.0022046098, -0.000759336, 0.0125977714, -0.0282844864, -0.00464053499, 0.00573661225, -0.0155728376, -0.00356758898, 0.0511028208, -0.0107543683, 0.00304268184, 0.0167400893, -0.0397434756, -0.0237862989, 0.045978304, 0.0506188385, 0.0111031197, -0.00596436858, 0.013003462, 0.00919566117, 0.00150621659, -0.00507113663, 0.0335086472, 0.0019697363, -0.0186617821, -0.0286830608, 0.0062241531, 0.0330816023, -0.0525547676, -0.0347897746, -0.0466046333, 0.0745901912, -0.00756578, 0.000804264448, -0.0495369956, 0.0245265085, -0.0250958987, -0.029067399, 0.0252382457, 0.0186617821, 0.00868320931, -0.00385050522, 0.0308894496, -0.00492523, 0.024825437, 0.00807111431, -0.0462345295, 0.0412238911, -0.00147329865, 0.0247969683, 0.0189037733, 0.00738072814, 0.026006924, 0.0107828379, 0.0434160456, -0.043444518, 0.0422772653, -0.0320282318, -0.00177756685, 0.0377790779, -0.0060391007, -0.0300353635, -0.030006893, -0.0262916181, 0.0300638322, -0.0252097771, 0.00891096517, -0.0440423749, 0.053238038, 0.028554948, -0.00307471026, 0.0133593315, 0.0415655263, -0.00187187223, 0.00576508138, -0.0184482615, 0.0068220133, 0.0395157188, 0.0307471026, 0.058277145, 0.0686685294, 0.0011236571, 0.015074621, 0.0246119164, -0.0308609791, -0.00822769664, -0.0329961963, 0.0163699854, 0.0238290038, 0.0271599405, 0.00298930146, 0.00441633724, -0.0111600589, -0.0245692115, -0.0203984249, 0.0582486764, 0.0332524218, -0.0313164927, -0.0157436542, -0.00972946454, 0.00747325411, -0.0054127709, 0.000664585794, 0.0101351561, -0.0116796279, 0.0141707128, -0.0101849772, -0.00343591743, 0.0418217517, -0.0201706681, -0.0306616928, -0.0678713769, 0.0275727492, -0.0160425846, 0.016583506, -0.00655155256, 0.0644550323, -0.0159144718, 0.0169536099, 0.0428181849, -0.0380922444, 0.0152596729, 0.0101138037, 0.0117436843, -0.0415655263, 0.0134589747, -0.0302631203, 0.022661753, -0.0283271912, 0.0220069531, 0.0115728676, 0.0103557948, -0.000648126821, 0.00141280086, 0.0208824072, 0.0252097771, 0.0160710551, -0.000544924755, 0.00728108454, -0.0304054674, 0.0369819291, 0.0171101931, 0.000250220561, 0.022661753, -0.0617219582, -0.00046663353, 0.0199429113, 0.0340780392, 0.000209073172, 0.0360139683, -0.0340780392, 0.0514159873, 0.00171262072, -0.065423, 0.013615557, 0.00720991055, 0.000363209052, 0.0414231792, 0.0171671323, -0.0233734921, -0.0411100127, 6.29443675e-05, -8.23503651e-05, 0.0106831947, 0.0112668201, 0.00363342487, -0.00871167891, -0.0174660627, 0.000622771156, -0.00818499271, 0.0525263, 0.0344481431, 0.00396438316, 0.05870419, -0.00906754844, -0.0257364623, -0.0211955719, -0.0249108467, -0.0270745307, 0.0294375028, -0.0372950956, -0.0571383648, 0.0415085889, 0.00220638933, 0.0588750057, -0.0362417214, 0.00702485861, 0.00821346231, 0.028882347, 0.0157863591, 0.0296652596, 0.0103059728, -0.0331100747, -0.0304624066, -0.0256368201, -0.0146902818, 0.0132027483, -0.038063772, 0.0055835885, 0.0274446346, 0.00190390041, 0.0245692115, -0.0110817682, 0.00821346231, -0.0216795541, -0.0175087657, 0.0241137, -0.00757289724, 0.0333663, 0.00374018564, -0.0195158683, -0.00140123512, 0.0196724515, 0.0317150652, 0.00546971, -0.0145265823, 0.016156463, -0.00183628523, 0.002261549, -0.0158005934, -0.00146084325, 0.0386616327, 0.0143913515, 0.0212098062, -0.0106191384, 0.0442986041, 0.000373885123, 0.000576953, 0.014789925, 0.0054127709, -0.0181493312, -0.00316189812, 0.011636924, -0.060583178, -0.0398004167, 0.00268503348, 0.0359285586, 0.00919566117, -0.0220781267, -0.00175443536, -0.00218681642, -0.0143628819, -0.00403555715, -0.00617789, -0.0271599405, 0.0160425846, -0.0222916491, -0.0258930456, -0.023601247, -0.00632379623, 0.0161706973, -0.00354089891, -0.0394872501, -0.00304090255, -0.0355584547, 0.00730955414, -0.00423484389, 0.0231172647, 0.031942822, 0.00495369965, 0.00894655287, -0.0226475187, -0.00771524478, 0.0385192856, 0.00240033795, -0.0670172945, 0.0223485883, 0.0272595827, -0.0318858847, -0.0215372052, 0.0407399088, -0.00930954, 0.00957999937, -0.0338787511, -0.0487683192, -0.00582913822, 0.0100070424, 0.0227613971, -0.0380922444, -0.00629888568, -6.65586704e-05, -0.00420993287, 0.00771524478, 0.0128967008, 0.00818499271, -0.0416794047, 0.0141137736, 0.048996076, 0.0215656757, -0.0355015136, 0.00866897497, 0.0414231792, -0.0324268043, 0.00125710806, -0.00816364, -0.0434160456, 0.0317150652, 0.0114376368, 0.0273022875, 0.00114678859, -0.0295513812, -0.0391740836, 0.0440423749, -0.000772236264, -0.0236297175, -0.0395726599, 0.0216083806, 0.00180959504, -0.0108895982, 0.00953729544, -0.0028878788, 0.029352095, 0.0479142331, 0.0194304604, 0.0216653198, -0.00419569807, -0.0152454376, -0.0103344424, -0.000494213426, -0.00788606238, -0.00158450776, -0.000277578016, -0.0044092196, -0.0127401184, 0.00804264471, -0.00714941276, 0.0437007435, 0.0368680544, -0.0322559886, 0.0253236555, -0.0258645751, -0.00181760208, -0.0200567897, -0.0525832362, -0.0394872501, 0.000687717285, 0.00254446501, -0.0126902973, -0.0244838037, 0.000796702225, 0.012910936, -0.0123201925, -0.0477434173, -0.0144127039, 0.0217507277, -0.0315442495, 0.000625440152, -0.0301777106, -0.014932273, -0.00447327644, -0.0302061811, -0.0133664487, 0.00928818714, -0.0421918556, -0.0110888854, -0.0460067764, 0.0199429113, -0.00205870345, -0.00110764301, 0.00373306824, 0.0268183053, -0.0201849025, 0.0294375028, -0.0301777106, -0.00316011882, 0.0191884693, -0.00617077248, -0.0102561517, 0.00490743667, -0.0184055567, 0.0288396422, -0.0061387443, 0.0109038334, 0.0145550519, 0.00374018564, 0.00815652311, -7.32312183e-05, -0.00769389281, -0.0413662381, 0.0106547251, -0.000768677564, -0.0154162552, 0.0123201925, 0.00874726567, 0.0157294199, -0.00347150443, -0.0322844572, -0.0387755111, 0.0244126301, -0.0283983648, -0.0146902818, 0.0165265668, -0.0224055275, -0.00366189447, -0.00626329845, -0.0204980671, 0.0161279943, -0.00400708755, -0.00903196074, -0.00296083209, 0.0225905795, 0.0423911437, 0.018989183, -0.000605867361, 0.00330424588, 0.00047375093, -0.0273592267, -0.0261777416, 0.0147756906, -0.00476508914, 0.00213343604, -0.0300638322, 0.0109465374, 0.00220105122, -0.0365833566, 0.054604575, -0.00507113663, -0.0218076669, 0.0061102747, 0.0224197619, -0.00413520029, -0.0253236555, 0.00945188664, 0.00891808327, 0.0243841596, 0.00736649334, -0.0188895389, 0.0131813968, 0.0170247834, 0.00498572784, 0.0098219905, 0.00789318, -0.0138646653, 0.0204695985, -0.0118219759, -0.0176226441, -0.0513590463, -0.00625974, -0.0241991077, 0.00627397466, -0.0227186922, -0.0131031051, 0.0383484699, -0.00824904907, 0.0107828379, -0.00611739233, 0.0183201488, -0.0045373328, 0.0117650367, -0.0142845912, 0.0520423166, -0.033594057, -0.00583981397, -0.00309784175, 0.0219215453, -0.025110133, 0.0256510545, -0.0212525111, -0.0136867305, -0.00533447973, 0.0222631786, -0.0173237137, 0.0120710842, -0.000355424389, 0.00706756301, 0.0139144873, -0.0104981428, 0.0185194351, -0.0249250811, 0.0154447248, -0.00904619601, 0.0262204446, -0.0621205345, -0.00167525443, 0.00615653768, 0.00474729575, 0.00871167891, 0.00345193152, 0.006430557, 0.0135372654, 0.0322275162, 0.0310317967, 0.012391367, -0.0219357796, 0.0242845174, 7.40096802e-05, 0.0145906387, -0.033736404, 0.0007362045, -0.00629888568, 0.00312453182, 0.0144127039, 0.004594272, 0.0231599696, 0.0325406827, 0.0503910854, -0.00255514099, 0.0125194797, 0.013757905, 0.0126974145, -0.0193023477, 0.0251813065, -0.0265478455, 0.0134162698, 0.0328823179, 0.0246119164, 0.00367257046, 0.0137721393, -0.0198290329, 0.00246439455, -0.00403911574, -0.0115515152, -0.0172810107, 0.0097721694, -0.000906576868, 0.00881132204, -0.0213806238, 0.00719211716, 0.00938071311, -0.0181350969, -0.00853374414, 0.0202845465, 0.010412734, -0.00608536368, -0.00661916798, 0.00400708755, -0.00283093983, 0.010270386, 0.0146618122, -0.00469035655, 0.00913160481, 0.0192881133, -0.0181778, 0.0237862989, -0.00748748891, 0.00559426425, -0.005135193, -0.0188895389, -0.00230781198, 0.00672592875, 0.00308538624, 0.00231670868, -0.000564497546, -0.0134447394, 0.0264766719, 0.0107686026, -0.00113166415, -0.0104696732, -0.0098219905, -0.00918854401, -0.0107686026, -0.00400708755, 0.0153735513, -0.033679463, 0.00614942051, 0.0232880823, 0.00551953167, -0.0188753046, -0.024213342, 0.0157294199, -0.00671169395, -0.0191172957, -0.00942341704, -7.04509876e-05, -0.00926683471, -0.0161849335, 0.00335050886, 0.0100639816, 0.0280994345, -0.0179642793, -0.0515298657, 0.00355157489, -0.0145408167, -0.0339926295, -0.0145621691, -0.0181208607, 0.00108006317, 0.0348751843, -0.026334323, -0.0270460621, 0.0256652888, -0.0131458091, -0.015644012, -0.0155301336, 0.0412523635, 0.0475441292, 0.0731097758, -0.00483982172, 0.00940206554, -0.00302666775, 0.0140568344, 0.0154874288, -0.0142205348, -0.00462274114, 0.0222916491, 0.0163557492, 0.00777218398, -0.0134803262, -0.0246119164, 0.0153308464, 0.002297136, -0.00958711747, 0.0132810399, -0.00854797941, -0.0137792565, 0.00911737, 0.0219642483, 0.0156724807, -0.0422203243, 0.0278289746, 0.029779138, -0.00316011882, 0.0376652, -0.0298930164, -0.0225336403, 0.00102045503, 0.00224909349, -0.00914583914, -0.0108468942, -0.0104056168, 0.0115016941, 0.0120710842, -0.0340211, -0.039202556, -0.01262624, 0.0197009202, -0.000748659892, -0.0308894496, -0.0107543683, 0.0175372362, -0.0262773838, -0.000410806533, -0.0219784845, -0.00347506301, -0.0178361665, 0.0402844, 0.0210674591, 0.0136511438, -0.0362986624, -0.00467968034, -0.0170817226, -0.0147045171, 0.00948747341, 0.0715154782, -0.0119999107, -0.00369036407, 0.00666898955, -0.0108397771, 0.0237720646, -0.00664052, -0.00662272656, -0.0289819911, 0.0205265377, -0.00962270424, -0.000897235295, -0.0133450963, 0.00916007441, -0.0370104, -0.0137294354, -0.00617433107, -0.0127757052, -0.00854797941, 0.0101992125, -0.0109180678, -0.0161137581, 0.0378360152, -0.00619212445, -0.00393235497, -0.010647607, 0.00140390417, 0.0190603565, -0.0134233879, -0.0014403807, -0.01417783, 0.00971523, -0.000860758708, 0.00289143762, -0.0487398505, 0.00753731048, 0.0375228524, 0.012298841, 0.00714585418, 0.0170817226, 0.0144127039, -0.005747288, 0.00297506689, 0.0262631495, 0.0162276365, -0.0138077261, 0.0389463305, 0.0182774439, 0.00848392211, 0.0022188446, 0.0105337296, 0.0227044579, -0.00802841, -0.0302346498, -0.0316296592, -0.00324908621, -0.0135301482, 0.0302061811, -0.00265834318, -0.00369392266, 0.0320567, 0.0425334908, 1.63477434e-05, 0.00600351393, -0.0160141159, -0.0224339962, -0.035529986, -0.00714585418, -0.00469747372, -0.00648037856, 0.0409107283, 0.0212240405, 0.0543483496, -0.0214517973, 0.0125479493, 0.0300638322, 0.00753731048, 0.00139233842, -0.0338787511, 0.00294837658, 0.00535227312, 0.0439854376, 0.000518234563, 0.00280958763, -0.00609248132, 0.00280247023, 0.0161849335, 0.0413947105, 0.026619019, 0.00407114392, -0.0156297777, 0.0228325706, 0.0186902527, 0.00305513735, -0.0235443078, -0.0209251102, 0.00364765967, -0.0293236244, -0.0435868651, -0.0431598201, 0.034391202, -0.0278859138, -0.00814228784, -0.0173521843, 0.00535227312, -0.0312310848, 0.00413875934, -0.0279001482, -0.0152739072, 0.0296937283, -0.0102775032, -0.00694656745, -0.00383982901, 0.0552024357, -0.00471526757, 0.00499640405, 0.000163811055, 0.026334323, 0.0297221988, -0.00197151559, 0.0207400583, -0.00812093634, 0.00744478451, -0.0207969975, -0.00674016308, -0.00172774517, 0.0111315893, 0.00293592107, 0.0375228524, 0.00814228784, 0.0045373328, -0.0144909956, -0.00742343208, 0.0130105792, -0.0162845757, 0.00747325411, 0.0518715, -0.0102917384, 0.0487967879, 0.0264909063, 0.0232311431, -0.0226475187, -0.00392879639, 0.00735225854, 0.0179073401, 0.00481846929, -0.0189607125, -0.000725973223, 0.00673304591, -0.019601278, 0.0261208024, -0.0211101621, -0.0166404452, -0.0179358087, 0.0203414857, -0.0256795231, -0.00483626267, -0.00668322435, -0.00795723591, 0.00743054971, 0.0418786928, 0.0114447549, -0.00901060924, 0.0256510545, 0.00723126298, 0.0117436843, -0.00806399714, -0.0350744724, 0.004594272, -0.028554948, -0.0177934617, -0.0221208315, 0.0099073993, 0.0121636102, -0.00205514487, -0.0137365526, -0.000754442764, 0.0174233578, 0.0207258239, -0.0200283211, 0.019031886, 0.0166404452, -0.0277293306, 0.00518857362, 0.041736342, 0.0214233287, -0.0224482305, -0.0200425554, 0.00272773765, 0.026903715, -0.0230318569, -0.0057330532, -0.0364694782, -0.0282844864, 0.00700350665, -0.0172525402, 0.0180212185, 0.016441159, -0.0116226897, -0.00799282268, -0.00178468425, 0.0164126884, -0.00125532877, 0.000120217075, 0.0157863591, -0.0213806238, 0.00180158799, -0.0238574743, 0.0243983939, -0.0209962856, 0.00352310552, 0.0308325104, -0.0153166121, -0.0212667454, 0.00642344, 0.0548038632, -0.01262624, 0.0148183946, -0.0120853195, -0.00171351037, 0.0343342647, 0.026006924, 0.0137365526, 0.0336225256, 0.0201564338, 0.0160710551, 0.00158450776, 0.0154874288, -0.00495014107, -0.0122846058, -0.00234695757, 0.00521704275, 0.041736342, -0.0168112628, -0.0172240715, -0.0187614262, -0.00406402675, 0.0196866859, -0.0209678151, -0.033167012, 0.0127472356, -0.0041174069, -0.0216937885, -0.0195728075, -0.0193308163, 0.00578287523, -0.015829064, 0.0127258841, 0.00808534864, -0.00566187967, -0.0451811589, 0.0125621837, 0.0154162552, -0.0276581571, 0.0120212631, -0.0657077, -0.0281848442, 0.0070141824, -0.0213663895, -0.00430601789, 0.0213094503, 0.0148041602, 0.0155728376, 0.00468323892, 0.0262916181, 0.0274019316, 0.0070568868, 0.0120212631, -0.0156297777, 0.0358146802, -0.0128967008, 0.0172240715, 0.0511028208, 0.0374374427, 0.0161706973, -0.011259703, -0.0128326444, -0.0215372052, -0.00965117384, 0.00695724366, 0.0303200595, -0.00866185687, -0.0266332533, 0.0055693537, 0.0209962856, -0.00210674596, 0.0195301045, -0.0191172957, -0.0476295389, 0.0348751843, -0.0152739072, -0.0110319462, 0.0147614563, 0.0059038708, -0.0096867606, 0.0262062103, 0.00696436083, 0.00857644901, -0.00560138188, -0.0237578303, 0.00632735481, -0.0299499556, 0.0146333426, 0.00407470251, 0.0160568208, 0.0208966415, 0.0234019607, -0.00719211716, -0.0300353635, 0.0409676656, -0.0195158683, -0.0171813667, 0.00249108463, -0.0464622863, 0.0121280234, 0.0222347099, 0.00489676045, 0.00068326894, -0.00918142591, -0.00357648591, -0.00660493318, 0.00747325411, -0.0067793089, -0.0246546213, 0.0166404452, 0.0203414857, 0.0209820494, -0.0203130152, -0.000241101399, 0.0259357505, 0.000356091652, -0.0193023477, 0.00211742194, -0.0103842644, -0.0254660025, 0.0327399708, -0.0215799101, -0.0510174148, -0.00676151551, 0.00382915302, 1.88082449e-05, 0.00599639677, 0.0117436843, 0.00330958399, -0.00624194648, -0.0364979506, -0.0108397771, 0.00150799588, -0.0148041602, -0.00602842495, -0.000927929, 0.00554800127, -0.0287115294, 0.00827040058, 0.0125123626, -0.00373306824, -0.0168254972, -0.0108041903, 0.0134589747, 0.0140710697, -0.0354161076, -0.0360993743, 0.0060533355, -0.0107543683, -0.0286972951, 0.0219500139, 0.010975007, 0.0151457945, 0.00951594301, -0.00983622577, 0.0203557201, -0.00493590627, -0.00517433882, -0.00766542321, -0.015971411, -0.0208966415, 0.00259072799, -0.00809246674, -0.0237293597, -0.00609604, -0.040426746, 0.0189607125, 0.0233592559, 0.0379498936, 0.0227471609, -0.00361029338, -0.0151315602, -0.0133379791, -0.0275442787, -0.00757289724, -0.0047579715, 0.0114376368, 0.000815830193, 0.0128112929, -0.0104412036, -0.00418146374, -0.0192169379, 0.0720279366, -0.007185, 0.0166404452, 0.00567611447, 0.00655155256, -0.0125550665, 0.0225763451, 0.00111920875, 0.0469462685, 0.00797858834, -0.000302488857, 0.00931665674, 0.000317835715, -0.0143913515, -0.0397719443, 0.0179358087, 0.00780065358, -0.00523127755, -0.0206261817, -0.0131813968, -0.0185906086, 0.0224197619, -0.0131742787, -0.00682913046, -0.0117579196, 0.0150176818, -0.00771524478, -0.0286830608, -0.0217791963, -0.0051921322, 0.028782703, -0.0123771317, 0.0116298068, -0.0183486175, 0.00259784539, -0.00558714708, 0.014889569, 0.00583625538, 0.00764407124, 0.00465832837, -0.0230745617, 0.00677219173, 0.0108611295, 0.0329107866, -0.000629443733, 0.00579711, 0.00551597308, -0.0389463305, 0.000284695387, 0.0133023923, 0.0157863591, -0.0264054965, 0.00380424201, -0.0321705788, 0.00854086131, 0.00536294933, 0.0302346498, 0.00340566854, -0.00453377422, 0.0350460038, -0.0271030013, 0.00571526, 0.0291812774, -0.0144482907, -0.00723838, -0.00159874256, -0.016156463, -0.0068220133, -0.00545903388, -0.0326260924, -0.0183059126, -0.00277044205, 0.0215087365, 0.0136867305, 0.0251386035, -0.000917252968, -0.00536294933, 0.00936647784, -0.00645546801, -0.0138219614, -0.00586472498, 0.0025462443, -0.00207827636, 0.000631667906, 0.00669745915, -0.0114661064, 0.00500708027, -0.00256403792, 0.0176938176, 0.0123842489, 0.00819922704, 0.012341545, -0.0327969082, -0.000165590405, 0.00380424201, -0.00168059242, 0.00758001488, 0.00563696865, 0.0129607571, 0.0052206018, -0.00455512619, -0.00148219534, -0.00328645227, -0.0117508024, 0.0068647177, -0.0107614854, 0.0262204446, -0.00560138188, 0.00579711, 0.0100853341, 0.03137343, -0.0214090925, -0.00214055344, 0.0264482014, 0.0108255418, -0.00756578, 0.00990028214, -0.0282987207, -0.0146475779, -0.00279713213, -0.0261919759, 0.0126689449, 0.0196582172, -0.0169251412, 0.00885402691, 0.0128895836, 0.000193837521, -0.00170016522, -0.023601247, 0.0151173249, -0.00859068334, 0.0124411881, -0.0295798499, 0.0277862698, 0.00782200601, -0.000324063411, -0.0315727182, 0.0150176818, 0.0100497473, 0.0413093, -0.0121280234, 0.00812805351, 0.0130248144, -0.0288254078, 0.0111031197, -0.0104910247, -0.0381491818, -0.0190034173, 0.00238966197, -0.0176511146, -0.026619019, -0.0129749924, 0.00312987, -0.00891808327, 0.0295513812, -0.0156155424, -0.00335228816, -0.0215514414, -0.00726684975, -0.0149892122, -0.0107330158, 0.0247115605, -0.00340744783, -0.00887537841, -0.0236439519, 0.00306225475, -0.0175657049, 0.00655155256, -0.00314944284, 0.0239855871, -0.0211955719, -0.0048006759, 0.0299784243, -0.0174375921, 0.0035640304, -0.0320282318, -0.011259703, 0.00806399714, -0.0128967008, -0.000137565701, 0.0137721393, -0.0274161659, 0.0148610994, -0.00361207267, -0.0165408012, -0.0070568868, -0.0182205047, 0.00376153784, 0.00664407853, 0.023885943, -0.00966540817, -0.0110390633, -0.00534515595, -0.0194162261, 0.00808534864, 0.00762271881, 0.0172952451, 0.0137934918, -0.00460494775, 0.00730243651, 0.00581490342, 0.0251813065, 0.00124376302, -0.0122205494, 0.00548038632, 0.0102490336, -0.0211671013, 0.0206973553, 0.00618856587, -0.0146191083, -0.0189322438, 0.0209962856, 0.00560494047, 0.012910936, 0.0270318277, -0.0188753046, 0.00597504433, -0.0227186922, -0.0289108157, -0.0240140557, -0.00140924216, 0.0052633062, 0.00762271881, 0.016441159, -0.005818462, 0.00233806088, 0.0110817682, 0.0219357796, 0.000747770246, 0.00766542321, -0.022334354, 0.0113593461, 0.0228468049, 0.00572949462, 0.00334517076, -0.0110461814, 0.0218361355, -0.0196724515, -0.0260496289, 0.0150888553, 0.00688962825, -0.00415655272, -0.000418146345, -0.00356758898, 0.0057899924, -8.95789562e-05, 0.0019092384, -0.0316865966, 0.00357648591, 0.0107401339, -0.00274908985, -0.0164553933, -0.00250354013, -0.0351598822, 0.000644568179, -0.0115799848, 0.0388039798, 0.0131956311, -0.0194589291, -0.0154731944, -0.00585760782, 0.00364054227, 0.00798570551, 1.30740236e-05, 0.000866096758, 0.0118860323, -0.0167827923, 0.00478999969, -0.0181350969, -0.00698571326, -0.000673927367, 0.0352168195, 0.0115728676, 0.000292702432, -0.000343858643, 0.00234873686, 0.00915295631, 0.00629176805, -0.00300175697, -0.00724549778, -0.0178931057, 0.0287684686, -0.00362630747, -0.0280709658, 0.0173806529, -0.00597504433, -0.0174233578, 0.00115746469, 0.00430957647, -0.000937715406, 0.0142347692, 0.0013095988, 0.00249998132, 0.0251670722, -0.0160568208, -0.00482202834, 0.00827040058, -0.0312026143, 0.0151315602, 0.0122134322, 0.00844121817, -0.0120568499, -0.00907466561, 0.0411100127, -0.00328467297, 0.00732378894, -0.0249962546, 0.00696436083, 0.0270460621, -0.00189322431, 0.0309748575, -0.0152881425, -0.0149749778, 0.00920989551, -0.0163699854, -0.0235016048, 0.0149180386, -0.00837004464, 3.39465878e-05, 0.0220638923, 0.00244482164, -0.0345050804, -0.00784335751, 0.00933089107, 0.00439142622, -0.00927395187, 0.000989316497, 0.0107187815, -0.00250887801, -0.0101565076, -0.016441159, -0.0147329867, -0.000508448167, 0.021152867, 0.0169963147, 0.00589675317, 0.0352168195, 0.00957999937, 0.0235870127, 3.78111072e-05, 0.00744478451, -0.0042882245, -0.0142134177, -0.0236866567, 0.0239713509, -0.0205265377, -0.0099928081, 0.0219927188, -0.0197009202, -0.0125621837, -0.015359316, -0.00406046817, -0.00113967119, 0.0477434173, -0.0153735513, -0.0138290785, -0.0108753638, 0.013665379, -0.00860491768, -0.0118789151, -0.00931665674, -0.00478288252, -0.0131031051, -0.0212952141, 0.00767965801, 0.00621347688, -0.00649461336, -0.00392167876, 0.0286545902, -0.00627041608, -0.0129251704, -0.0182489753, -0.0212525111, 0.00726329116, 0.00188254821, 0.0225621089, 0.00922413077, 0.0173521843, 0.00337897846, -0.0365548879, -0.0138931349, -0.00879708771, 0.0071565304, -0.00745901931, 0.00800705794, 0.00846968777, 0.00777930161, -0.0231457353, -0.00225621089, -0.00745901931, 0.0110817682, -0.000919921964, 0.0181635655, 0.0233165529, -0.0201991387, -0.00620280067, -0.0426758379, -0.0117223328, -0.00631312, 0.0334232375, -0.0264339671, -0.00123308692, 0.0198290329, 0.00609959848, 0.0203414857, 0.014889569, 0.0133095095, -0.00257827272, -0.00273485505, -0.0190603565, -0.00862627, 0.0114518721, 0.00822057948, -0.0223201178, -0.0247115605, 0.0225051697, 0.0147329867, 8.70767544e-05, -0.0098219905, -0.005206367, -0.00648393761, 0.0198147986, -0.0124910101, -0.0362417214, 0.0123130754, -0.0176938176, 0.033167012, -0.00935936067, 0.0174660627, -0.0450103395, 0.0385762267, -0.0362417214, 0.0190461222, 0.0120782014, -0.0262204446, 0.0231457353, 0.0461206511, 0.0187187213, 0.00623482885, 0.0102063296, 0.00252311281, 0.01295364, -0.00718144095, -0.00528109958, -0.0124127185, -0.00333983288, -0.00728820171, 0.00853374414, -0.00299286027, 0.00768677564, -0.0102419164, 0.0202276073, -0.0210247543, 0.00155158981, -0.0270318277, 0.0122561362, -0.0228468049, -0.0188183654, 0.0116440412, 0.00839851424, 0.00410673115, -0.0391740836, -0.0259926897, -0.00141724921, 0.0165265668, 0.00146351219, 0.006501731, 0.0136226742, 0.000342079293, 0.00385406381, -0.0206831191, -0.0197720937, 0.00481846929, 0.00928818714, -0.00216190564, -0.0156582464, 0.00573661225, 0.0131742787, 0.0314873084, -0.0193735212, -0.00566187967, 0.0232026745, -0.00805687904, 0.0232596137, 0.0158148296, 0.0299784243, -0.0236581862, 0.00303378515, -0.00470815, 0.0381207131, -0.00984334294, 0.00415299414, -0.0112027638, -0.0181635655, 0.0291812774, 0.000323173736, -0.0209535807, 0.00314766332, -0.00094750186, 0.000216301763, 0.00315122213, 0.0158432983, -0.00831310544, 0.0106547251, -0.000391233742, -0.0028807614, -0.0128112929, 0.0140354829, 0.0171813667, 0.00164589519, 0.00050355494, -0.0127401184, -0.0104981428, 0.00914583914, -0.0209251102, -0.0130461659, -0.0106262555, 0.00743054971, 0.0271172356, -0.0258930456, 0.0180639215, -0.00362096936, 0.0164838638, -0.0242418125, -0.00970811304, 0.0207400583, -0.0242418125, -0.00200888189, 0.0316581279, -0.00655867, -0.0223058835, 0.0105764335, -0.000204068769, -0.00311919395, -0.0181778, -0.0157294199, -0.00945900381, 0.000838072039, 0.0140497172, 0.00120372768, -0.0114732245, 0.0100995693, -0.00130781939, -0.000314721867, 0.00124287326, 0.0149607426, -0.00855509657, -0.0098575782, -0.0115016941, 0.0097437, -0.00175977335, 0.0197436251, -0.0178219303, 0.0105266124, 2.40350746e-05, 0.00672592875, -0.0183201488, -0.00792164914, -0.0131244576, 0.0108184246, 0.0119216191, -0.00233628158, 0.0104412036, -0.0145336995, -0.0199713819, 0.0125977714, 0.0119856754, 0.0055124145, -0.0134945614, 0.00157294201, 0.00250531943, 0.0107686026, 0.0217080228, -0.0108468942, 0.0111600589, 0.00734514091, -0.0222347099, 0.0127116488, -0.00661560893, 0.01295364, -0.00593945757, 0.00437007425, 0.00791453198, -0.00647682, 0.00662272656, 0.0118646799, 0.00171617942, -0.000415922172, -0.032455273, 0.0236297175, 0.00590031175, -0.00182382984, -0.0149607426, 0.0114803417, 0.00561917527, -0.002297136, 0.0259357505, 0.0398288853, 0.00334339147, -0.00274908985, -0.00861915294, -0.0166404452, 0.00171351037, -0.00340922736, -0.00186475483, -0.0251955427, -0.0308040418, -0.00894655287, -0.00469747372, 0.00448751124, 0.00441277865, -0.0231172647, 0.00254980312, 0.000637895602, 0.0210959278, -0.0286545902, 0.00942341704, -0.0174091235, 0.00792164914, -0.0022473142, -0.0016174257, 0.00217791973, 0.0123557802, 0.00495725824, -0.00434516324, -0.011259703, 0.0345335491, -0.00696791941, -0.0213521533, -0.00877573527, 0.00109518762, -0.00499284547, -0.00181137444, 0.00420993287, -0.00245371833, 0.0253236555, -0.0261208024, -0.00662628515, 0.00587184215, -0.00262631499, -0.00511384103, 0.03137343, 0.00313698733, -0.0012989227, -0.0097437, 0.00203379267, 0.00366901187, -0.0031868089, 0.0044803936, -0.00123130751, 0.0318289436, -0.00578287523, -0.014135126, -0.00878285244, -0.00407826155, -0.00284517463, 0.0176226441, 0.00139500736, 0.00149731978, 0.0094661219, 0.00787182711, -0.000538252236, 0.0140924221, 0.00362096936, -0.0103771472, -0.0208112337, 0.0090889, 0.0036067348, -0.00235051638, 0.0160852894, 0.00354623701, -0.0181350969, -0.00308716553, 0.0160141159, -0.0125977714, -0.00544835813, -0.0191599987, 2.44382081e-05, -7.46213336e-05, 0.00164233649, -0.0233450215, -0.009800639, -0.00481135212, -0.0122205494, -0.0248539075, -0.0121209063, 0.00252667163, 0.0016049702, -0.00135052379, 0.0195158683, -0.0192311741, 0.0171101931, -0.0097721694, 0.00930242147, 0.00765118841, -0.0196724515, -0.0200425554, 0.00502131507, 0.00192169391, -0.00218147831, 0.0390032679, 0.0199998505, 0.0116796279, -0.0235727783, -0.00825616624, 0.0137863746, -0.0109892422, -0.00536650792, 0.0161137581, 0.00249642273, -0.0317435339, 0.0052490714, -0.0188895389, -0.00925971754, 0.00120016898, -0.00394659, -0.00172151742, 0.0101565076, 0.0098219905, -0.0150319161, -0.00400352897, 0.005206367, 0.00349285663, -0.0192881133, -0.0227613971, -0.00153112737, -0.00270816498, -0.00989316497, -0.0200994946, -0.0122561362, -0.0064732614, 0.031800475, 0.0185194351, -0.0154447248, -1.27403964e-05, 0.0180639215, 0.00644123321, -0.0095230611, -0.00287542352, 0.00847680494, 0.00826328341, 0.00881843921, -0.0103913816, -0.00398929417, -0.0179500449, 0.0115088113, 0.00399997039, 0.0174945313, 0.00432737, 0.0259357505, -0.0142845912, -0.00750884088, 0.0134162698, -0.00132472324, 0.0058611664, 0.00493590627, 0.0235443078, 0.0196582172, 0.00636294205, 0.00822057948, -0.00886114407, 0.000475975103, -0.0106974291, -0.0022829012, 0.00585760782, -0.00950170867, -0.00259072799, 0.00975081697, -0.00382915302, -0.026946418, 0.0317435339, -0.0157863591, 0.00469391514, 0.00188432762, -0.0113237593, 0.00265656388, -0.0136297913, 0.00850527454, 0.0206261817, 0.0161279943, -0.00772236241, -0.0242987517, -0.00439498527, 0.0327684395, 0.029779138, 0.0166973844, 0.00754442764, 0.0243699253, 0.0300923027, 0.00470815, -0.0104910247, -0.00622771168, 0.00519569078, 0.0054554753, 0.000636116252, -0.00782912318, -0.0178788695, -0.0176653489, -0.0106618423, 0.00349285663, 0.0161706973, 0.00149998884, -0.00523839518, -0.00274908985, 0.0191030614, -0.00264588767, 0.00345549034, -0.0111814113, -0.0213806238, -0.00375797902, 0.019643981, 0.00410673115, -0.00848392211, 0.0139216045, -0.0355015136, -0.00163788814, -0.00260852138, -0.0103415595, 0.0328823179, -0.0156724807, 0.0183059126, 0.000784691656, -0.00142436661, 0.006359383, -0.00692165643, -0.0173806529, -0.0201991387, 0.0113593461, -0.00967964344, 0.0243556909, -0.0125550665, -0.0114661064, -0.013523031, -0.0133735659, -0.0122632543, -0.00753731048, 0.0227756314, -0.0041174069, 0.0135301482, -0.013992778, -0.00720635196, -0.00402488094, 0.00569746643, -0.0152454376, 0.00217791973, 0.00469747372, -0.00578287523, 0.0278289746, 0.00772947958, 0.00854086131, -0.00716720661, 0.00335762626, -0.0195728075, -0.00595369237, 0.0190888252, 0.00793588348, -0.017764993, -0.0219784845, 0.00681133708, 0.00185229932, 0.0282133128, -0.0231172647, -0.0261777416, -0.00978640374, -0.00525263, -0.00493234769, 0.0221635364, -0.0120497327, 0.0132241007, 0.00612095091, 0.0225763451, -0.0201422, 0.0138290785, 0.0323983356, 0.00967964344, 0.00807823148, 0.0170817226, 0.00759424968, -0.0060818051, 0.0148183946, -0.00703553483, -0.00136920693, 0.0242275782, 0.0241564028, 0.00211386336, 0.00230603269, -4.31213412e-05, 0.0247257948, 0.00322061661, -0.00492523, 0.0160283502, 0.0156582464, 0.0113522289, 0.003521326, 0.0175657049, 0.00671881111, -0.00366189447, 0.00165479199, -0.0282560177, 6.7726367e-05, 0.00241991086, 0.00376509642, -0.000369436748, -0.013238336, 0.000181826937, 0.016868202, 0.0255087074, 0.0179500449, 0.0125621837, 0.00688962825, -0.00722770393, 0.0240709949, 0.0279143825, 0.00252133352, -0.00163432944, -0.00497505208, -0.00219927193, 0.0204553641, -0.00886826124, 0.0041174069, -0.0185621399, 0.0133023923, -0.0108895982, 0.00530956918, 0.0013167162, -0.0351029411, -0.0102347992, -0.00734514091, 0.0231172647, 0.0049287891, 0.0138290785, -0.00339677185, -0.000174709552, -0.0199856162, 0.0035070912, 0.012861114, 0.00753019284, 0.0212952141, 0.0288111735, 0.00420637429, 0.0143486476, -0.0173521843, 0.0153877856, -0.00780777121, 0.0263912622, -4.60683841e-05, -0.00115123694, -0.00406758534, -0.00842698384, 0.0108682467, 0.00829175301, -0.0102988556, 0.0306901634, -0.00116547174, 0.00565476203, 0.0112454677, 0.0143272951, 0.0041031721, -0.0100497473, -0.000128446554, 0.0176511146, -0.00487540849, -0.00633803103, -0.00496081728, 0.00972234737, -0.00635582441, -0.0145906387, 0.00734514091, -0.0168539677, -0.0257506985, 0.00748037128, 0.00249820203, -0.0126547096, -0.0219357796, 0.0106903119, -0.023273848, 0.0053985361, 0.00782200601, 0.0104412036, -0.0123201925, -0.00368324667, 0.00834869221, -0.00457647815, 0.0142845912, -0.000356758916, -0.00436295662, 0.0041885809, -0.0149892122, 0.00832734, -0.000209295598, 0.00919566117, 0.00680422, 0.00619924208, 0.00263699098, 0.0104554379, 0.0115159284, -0.00102668279, -0.0279713217, 0.01017786, -0.00953729544, 0.0127258841, -0.00992163457, -0.0185621399, 0.0195728075, 0.0104412036, 0.0125337141, -0.00147062959, 0.0161849335, 0.0296367891, 0.00569746643, 0.00383627042, 0.00642344, -0.0103913816, 0.0123344278, 0.00400708755, -0.0140995393, -0.00274197245, 0.00625618128, 0.0194589291, -0.00687539345, -0.0210389886, 0.00803552754, -0.0176653489, 0.00787894521, 0.00407826155, 0.00186653412, -0.0029590528, 0.0339072198, 0.00932377391, -0.017480297, 0.0339356884, -0.00124821137, -0.0180212185, -0.00480423449, 0.00992875174, 0.0179500449, 0.0134945614, 0.00740208, 0.0045800372, 0.036127843, 0.0188753046, 0.00289321691, -0.0257649329, -0.0055408841, -0.0130105792, 0.0319143534, 0.00207827636, -0.0200140849, 0.0134945614, -0.0116582764, -0.0112454677, 0.0222204756, -0.00485405652, -0.0255087074, -0.012910936, -0.00349641521, -0.00719211716, 0.0163557492, 0.00113255379, 0.0150319161, 0.00797858834, 0.0016120876, -0.0289392862, 0.0046263, 0.0201422, -0.0185336694, -0.00960135181, -0.0191457644, -0.0106049031, 0.010412734, -0.0042028157, 0.00353734, -0.0287115294, 0.0213948581, -0.0203272514, -0.00216902304, 0.000345415581, 0.00245727715, 0.0116796279, -0.00443413062, 0.00561561668, -0.00174464891, 0.0121849626, -0.024170639, 0.0195870418, -0.0100711, -0.0159856454, -0.0067366045, 0.0123344278, 0.0112881726, 0.0110604158, 0.0108041903, 0.00189322431, -0.0212809797, -0.00792876631, -0.0143059436, -0.0055266493, -0.0274446346, 0.0214660317, 0.00241457275, -0.00206048298, -0.00908178277, 0.00287008542, -0.00194660469, 0.00950170867, -0.000544035109, -0.00486473227, 0.00324196881, 0.0198290329, 0.000246439449, 0.0019092384, -0.00782200601, 0.000794478052, 0.0106120203, -0.00748748891, -0.00485049747, 0.0121920798, 0.00401064614, -0.0100924512, 0.0164696276, 0.00969387777, 0.000558714673, -0.0105266124, 0.00251243683, -0.0179927479, 0.00403199857, -0.00686827628, 0.00119305158, -0.00729531934, 0.0260923319, 0.0245976821, -0.000671258371, -0.0218646061, 0.0339356884, -0.0181778, -0.0258076377, 0.000352310541, -0.0337648727, 0.000198508307, 0.0122276666, -0.00683268951, -0.0170817226, 0.0236866567, -0.0107472511, 0.0124910101, -0.0137152, 0.00117169949, 0.0112169981, 0.0331385434, 0.000113377711, -0.00108718046, 0.00284873322, -0.00451242179, 0.00508181285, -0.0231030304, 0.029779138, -0.0386046953, -0.00535227312, 0.0245976821, -0.00473306095, 0.00788606238, 0.0228468049, -0.00115123694, 0.00591454655, 0.02874, -0.00277933874, 0.0262773838, 0.0284837727, -0.0142917084, -1.86414309e-05, -0.0032152785, 0.0202845465, 0.0120782014, 0.0188041311, 0.00795011874, -0.01172945, -0.0108113075, -0.0146475779, 0.0164696276, 0.00140034547, -0.00326332077, 0.00459071295, -0.0014439394, -0.00636294205, 0.0120710842, -0.00797147118, 0.00792876631, -0.0122561362, -0.0130604012, 0.00581490342, -0.00471526757, 0.010932303, -0.0187898949, 0.0158575326, -0.00537718413, -0.0105906688, -0.0156724807, -0.0215372052, -0.00309250364, -0.0247257948, -0.00287542352, -0.0142347692, -0.0117579196, -0.0151600298, 0.0107828379, 0.0096867606, -0.00258005201, 0.00922413077, -0.00552309072, -0.0134020355, -0.00654087635, 0.0187614262, -0.0255514104, 0.0209678151, 0.00485049747, -0.00879708771, -0.00857644901, -0.0121849626, 0.0180212185, -0.015871767, -0.00374730304, 0.00456224382, 0.00660137413, 0.00454800902, -0.0124269538, -0.000373440271, 0.00356936851, -0.00440566102, -0.00571170123, 0.00424552, -0.0175941754, 0.039145615, 0.0067081349, -0.0150034465, 0.00108362187, -0.00094750186, 0.00433804607, 0.0174375921, 0.016583506, -0.0178361665, -0.0276581571, 0.0019127971, -0.00795723591, -0.00925971754, 0.0106049031, 0.0130319316, -0.00681489566, -0.00630600285, 0.00970099494, 0.0067081349, 0.00204446865, -0.00872591324, 0.014889569, -0.00592166418, 0.00697503705, 0.00668678293, 0.016441159, 0.00242169015, -0.0172810107, 0.00796435308, 0.00113967119, 0.0318574123, 0.0114732245, -0.00527398195, -0.00278289733, 0.00266901916, -0.00841986574, -0.0114162853, 0.00830598827, -0.0129963448, -0.0124483062, -0.0201564338, 0.00410673115, 0.0174233578, 0.0344481431, 0.00102579303, 0.00501419744, -0.00714941276, -0.013473209, 0.0054554753, -0.00740919728, 0.00882555731, 0.00296794949, -0.0166262109, 0.0104910247, -0.000461740332, -0.00620635925, -0.0124483062, -0.00587184215, -0.0131458091, 0.0298076067, -0.000642343948, -0.00124999066, -0.0295513812, 0.0320851691, -0.0246119164, 0.0194304604, -0.012249019, 0.00406758534, -0.000190834879, -0.000179269133, 0.009800639, 0.030006893, -0.00132205419, -0.0243129861, 0.0063878526, 0.0252951849, -0.00396438316, -0.0351029411, -0.00126066676, 0.00977928657, 0.0128326444, 0.00928107, 0.00368324667, -0.00825616624, -0.0219215453, -0.00870456174, 0.00123931456, 0.00706756301, -0.0191030614, 0.00701062381, -0.000591632619, -0.00601774873, -0.00308894506, -0.00271706167, 0.0203984249, -0.0230460912, -0.0259642191, -0.0231884401, -0.031288024, -0.0100070424, -0.0112027638, 0.0259926897, -0.0112169981, 0.000993764843, 0.0186048429, -0.00764407124, 0.00372950966, -0.0123984842, 0.00882555731, -0.0256225858, 0.00985046, 0.00771524478, -0.0173806529, 0.00106493873, -0.000348751841, -0.032512214, -0.00038923198, 0.00100710988, 0.0198432691, 0.0102775032, 0.00307826884, -0.00301777106, 0.0203414857, -5.64386346e-06, -0.0344481431, -0.0098291086, -0.0188326, -0.00208717305, -0.00282916031, -0.0203557201, 0.0189749468, -0.016156463, 0.00659781555, -0.0142418863, -0.0235158391, 0.0255371761, -0.013615557, -0.00254802383, -0.0158860032, 0.00889673084, -0.0259784535, -0.0106049031, -0.00329356967, 0.00141546992, -0.0171386618, 0.00474729575, 0.0122846058, -0.0102134468, -0.00147151924, 0.00959423464, -0.000186275298, 0.00757289724, -0.0100426301, 0.00637717685, 0.0183486175, 0.00807111431, 0.00156137627, -0.00510316482, -0.00680422, 0.00328823179, -0.0430174731, 0.000102924052, -0.0257791672, 0.0182774439, 0.00557647087, 0.00101333763, -0.0194019899, 0.00613518571, 0.0160710551, 0.0205550063, 0.0139500741, 0.00330958399, 0.0138931349, -0.000626329856, -0.0188753046, 0.00456224382, 0.0277008619, -0.0109892422, -0.00187365152, -0.00922413077, -0.00308004813, 0.0180496871, -0.00142436661, -0.0048860847, 0.0022900186, -0.00992875174, -0.00671525253, 0.0130461659, 1.61948301e-05, -0.00632023765, 0.00445904164, -0.0118290931, 0.000702841731, 0.0174945313, 0.0100497473, -0.00179447059, 0.00901772641, -0.0250816643, -0.0146191083, 0.00693233265, 0.0112881726, -0.0124340709, 0.0115515152, -0.0152739072, 0.0159287062, 0.0071422956, 0.00132294383, 0.0194446947, -0.0137934918, 0.00641276361, -0.00918142591, 0.00224553491, -0.0125479493, 0.00894655287, 0.0231599696, 0.0164980981, -0.0218646061, -0.0107045462, 0.00735225854, -0.005206367, -0.0185194351, 0.0167970285, 0.00557647087, -0.00554444268, -0.00654087635, 1.38177347e-05, -0.0212667454, -0.00419569807, 0.00516722118, 0.033024665, 0.00655511115, -0.00765118841, -0.0177792273, -0.000791364233, 0.00109696691, -0.00170995167, -0.0214802679, -0.00953729544, 0.0171386618, 0.00405690912, 0.0140995393, -0.00029225761, 0.0290389303, -0.0218219012, 0.00150443718, 0.0201279633, 0.0019768537, -0.00762271881, 0.0159856454, 0.0049287891, -0.00671525253, -0.0167400893, 0.0224909354, 0.013473209, -0.00161297736, 0.0151457945, -0.00341634476, 0.00466900459, 0.00113166415, 0.00176600111, -0.0279570874, 0.000104202962, -0.00645190943, -0.00337008154, 0.0181635655, -0.014932273, 0.00169571687, 0.0099643385, -0.0139785437, 0.0140781868, 0.00516722118, -0.00441633724, 0.000331625633, 0.00112988485, 0.0245122723, 0.018092392, -0.0022757838, -0.00530245155, -0.0109038334, -0.0268040709, 0.0157863591, -0.0238717087, -0.0171386618, 0.00570102502, 0.0279997922, -0.00714941276, -0.00684336526, -0.000141235607, 0.00788606238, -0.0144838775, -0.010270386, 0.0109394202, 0.00235229568, -0.00421349192, -0.0274019316, -0.000103090868, 0.0207542945, -0.011024829, -0.0116084544, 0.00423484389, -0.00969387777, -0.00150710624, 0.015074621, -0.0282844864, -0.0170674883, -3.28066963e-05, -0.0158860032, 0.0137792565, 0.00380424201, -0.00338431634, -0.0143272951, -0.0106191384, 0.00975793414, -0.00581134483, -0.024170639, 0.00601419, 0.00775794918, -0.0029305832, -0.0095515307, -0.00445904164, 0.00869032647, -0.000609870884, 0.00772947958, -0.00900349207, -0.00370815746, 0.00455868477, -0.0207258239, 0.000101867568, 0.00464765215, 0.0011058636, 0.0101636257, 0.00539497752, 0.0180639215, 0.0174375921, -0.0153735513, 0.0061529791, -0.0161849335, -0.0208112337, 0.018092392, 0.0016049702, -0.00712094316, -0.00011587992, 0.0012918053, 0.00558002945, -0.000159585106, -0.00875438284, 0.0138860177, -0.00837716181, 0.00482558692, -0.0011200984, 0.0061956835, 0.00217080233, -0.00130781939, -0.0172240715, -0.0168397315, -0.0147329867, -0.00479355874, 0.00391812, 0.0106831947, -0.00154536217, -0.000743766723, 0.0114162853, -0.0230745617, 0.0238574743, 0.0161137581, -0.0206546504, -0.00970099494, -0.0130746355, -0.0229037441, -0.00750172324, 0.0019697363, -0.00503555, -0.0180781577, 0.00740208, 0.0211386327, 0.0125977714, -0.0411384851, 0.00706044585, -0.00914583914, 0.0176795833, 0.00355157489, -0.0167543236, -0.00227222499, 0.00523839518, -0.0142205348, -0.00869744364, -0.00771524478, -0.0048576151, 0.00972946454, -0.0131386919, 0.00174109021, -0.012861114, 0.0343627334, -0.0193592869, -0.000479533803, 0.00570102502, 0.00138966937, -0.0129963448, -0.00117792713, 0.0262489151, 0.0146475779, 0.020825468, 0.00827040058, -0.00581134483, 0.00415299414, 0.0136369094, 0.0119643239, 0.0198432691, 0.00997857377, -0.00348395971, 0.0142347692, -0.0165123325, 0.000379000732, -0.0190745909, 0.00484693889, -0.0032437481, -0.0345050804, 0.0117650367, -0.0141208917, 0.0164269246, -0.00866185687, -0.00770812761, 0.0172667746, 0.00115123694, 0.0248112027, -0.00858356617, 0.00876861811, -0.0178646352, 0.0202276073, -0.00461206539, 0.0060391007, 0.0184909645, 0.00565120345, -0.0152881425, 0.0259926897, 0.0120639671, 0.00262809428, -0.00106582837, -0.0051778974, -0.0155158984, -0.016256107, -0.0104269683, -0.000670368667, 0.0126689449, -0.00780777121, 0.000293814548, 0.00150087848, 0.00142703566, 0.00020773866, 0.00851239171, 0.0224197619, 0.0111315893, 0.0216937885, 0.0110177118, -0.0143059436, -0.0146618122, -0.00840563141, -0.00768677564, 0.00824193191, 0.00108895986, -0.00253556832, -0.00189322431, -0.0108468942, 0.00396794174, -0.0418217517, -0.0293805636, -0.0174518265, -0.0226332825, -0.0134518575, -0.0253378898, -0.0487683192, -0.00199642638, 0.0107543683, -0.00419925712, 0.00528109958, 0.00387185719, 0.0265763141, 0.00646258518, 0.0108255418, -0.00870456174, -0.00284161582, 0.0106831947, -0.0188610703, -0.0103415595, -0.0207542945, -0.0178931057, 0.0269748885, 0.0153023768, 0.00112098805, 0.0104839075, 0.00839139614, 0.00210852525, 0.0222489443, 0.00082072342, 0.0283698961, 0.0143557647, 0.0219927188, 0.00437007425, -0.0261208024, 0.00590742938, -0.0155586032, 0.0245122723, 0.000178157032, -0.00193592859, -0.00529177533, -0.0234873686, -0.0200567897, -0.00168593053, 0.017480297, -0.0185763743, 0.00722770393, 0.012014145, 0.0120995538, -0.000736649323, 0.0113949329, 0.00149554049, -0.00987893, -0.00364765967, 0.0353591666, 0.0181493312, -0.0122703714, -0.00191813521, -0.0184340272, 0.00457291957, -0.00790741481, 0.00850527454, 0.000144460661, -0.0310602672, -0.00170817238, -0.0166973844, 0.0248112027, 0.0101422733, -0.015644012, 0.0590458252, -0.0146191083, 0.0002422135, 0.00876150094, 0.00363342487, -0.0164980981, 0.00269393018, 0.0353876352, -0.00383627042, -0.00849104, 0.00301421247, 0.00298930146, 0.00207471754, -0.00825616624, -0.00923836511, 0.00144304975, -0.0192596428, 0.00209251116, 0.00632735481, 0.00529889297, -0.0152596729, -0.0136297913, 0.00346972514, -0.000957288255, -0.00678642653, -0.00817075744, 0.0173521843, -0.0147614563, 0.00472594332, 0.0308040418, 0.0109963594, -0.00111920875, 2.52722766e-05, 0.00841274858, -0.00559426425, -0.0143913515, 0.019643981, -0.00460138917, 0.00443057204, -0.000883000554, 0.0203557201, -0.00253556832, 0.00865474, 0.0124981273, 0.00447683502, 0.0057757576, -0.00805687904, -0.0065444354, 0.0131244576, -0.00335050886, 0.0106120203, -0.00890384801, 0.00432381127, -0.0406260304, 0.0203272514, -0.0131813968, 0.0363271311, 0.00937359594, -0.00344125554, 0.0390317366, -0.00525618857, 0.0193592869, -0.00594301615, -0.00762983644, -0.000859869062, -0.00362986629, 0.0165692717, 0.0116155716, 0.0116582764, -0.0160852894, -0.00292880391, -0.00541633, -0.00504978467, -0.0165550373, -0.0045800372, 0.0249820203, -0.00671881111, 0.0120212631, 0.0189037733, -0.0114589892, -0.00241991086, 0.0227329265, -0.00940206554, 0.00465121074, 0.0161849335, -0.0174945313, -0.0187187213, -0.000536917709, -0.022377057, 0.00393235497, 0.00546971, 0.0206404161, 0.00511384103, -0.000348084606, -0.0159002375, -0.00675795693, -0.00815652311, 0.00120194838, 0.0186760183, 0.0017713391, 0.000171150867, 0.0235443078, 0.00271884096, -0.015501664, -0.00767254084, 0.00633447245, -0.0176226441, -0.00281848432, 0.00551597308, -0.0133023923, 0.00962270424, 0.00420637429, 0.0176226441, 0.028882347, 0.0186902527, 0.00343947625, 0.0180781577, 0.0216226149, 0.0250674281, -0.00427754829, 0.0216368493, 0.00799282268, -0.0051494278, -0.0146333426, 0.0110532986, 0.0246830899, 0.0386901, 0.0148183946, 0.00309072435, -0.0132525703, 0.00940206554, -0.0106689595, 0.0203984249, -0.0234019607, 0.014277474, 0.0183486175, -0.0106120203, -0.0232169088, -0.0304624066, 0.0106831947, 0.0233592559, 0.00557647087, 0.00265656388, 0.00790741481, -0.0026174183, 0.00587896, 0.00142525625, 0.00471526757, 0.0111458246, 0.00851239171, 0.00218503713, 0.0117579196, -0.003556913, -0.00844833534, 0.00604265975, 0.0113949329, -0.00266190176, -0.00287186471, 0.0181635655, -0.00147151924, 0.00998569094, -0.00301243318, 0.000309383817, -0.0326545611, -0.0019305906, 0.0128895836, -0.0204411279, -0.0102917384, -0.00210496644, 0.0135087958, 0.00527042337, 0.0125621837, 0.0118077416, 0.0166119765, -0.0301777106, 0.0406545028, 0.0107614854, 0.0103344424, -0.0108753638, -0.00402488094, -0.012768588, 0.015871767, -0.00256403792, 0.0634870678, 0.00165746093, 0.0217080228, -0.000547593809, 0.00916719157, 0.00182027114, 0.0213806238, 0.0160568208, -0.00608536368, 0.00529533438, -0.00243058684, -0.00617077248, -0.000502220471, 0.00305513735, 0.000448395236, -0.0134874443, -0.0107472511, 0.00799994078, 0.0137152, -0.00898214, 0.0168112628, 0.0199144427, -0.00599995535, -0.00596080953, 0.00995010417, 0.0039537074, -0.0175657049, 0.00577219902]
26 Jun, 2020
Difference between Couchbase and IBM Db2 26 Jun, 2020 1. Couchbase : Couchbase Server is an open-source, distributed, JSON document database that is enhanced for interactive applications. It is also known as Membase. It was developed by Couchbase, Inc. and initially released in August 2010. It is written using C++, Erlang, C, Go languages and its server is designed to provide us with easy-to-scale key-value or JSON document access with high sustained throughput and low latency. 2. IBM Db2 : IBM Db2 is a family of data management products, including database servers, developed by IBM. It is a Relational Database Management System (RDBMS) which supports object-oriented features and non relational structure with XML. Db2 is designed to store, analyze and retrieve the data efficiently. It was initially released in 1983 and is written in C, C++, Java and Assembly language. Difference between Couchbase and IBM Db2 : SR.NO Couchbase IBM Db2 1 It is developed by Couchbase, Inc. in 2010 It is developed by IBM in 1983. 2 It is written in C++, Erlang, C and Go languages. It is written in C, C++, Assembly language, Java languages. 3 The primary database model for Couchbase is Document Store. The primary database model for Db2 is Relational DBMS. 4 Server operating systems for Couchbase are Linux, OS X and Windows. Server operating systems for Db2 are AIX, HP-UX, Linux, Solaris, Windows and z/OS. 5 It does not have the concept of Foreign keys. It has the concept of Referential Integrity and Foreign keys. 6 It supports Map Reduce method. It does not support of Map Reduce method. 7 Famous companies like Lockwood Publishing, Code Weavers, MSLGROUP, The Doyle Group, etc uses Couchbase. Famous companies like JPMorgan Chase, Bank of America, Scotiabank, Citi, etc use Db2. 8 It has free Data Schema. It has fixed Data Schema. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2
https://www.geeksforgeeks.org/difference-between-couchbase-and-ibm-db2?ref=asr10
Languages
Difference between Couchbase and IBM Db2
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0112725627, -0.00739292707, -0.0274577271, 0.0437209681, 0.0221967977, -0.0194582324, 0.0206713695, 0.000974413, -0.050975766, 0.0185453761, 0.0438170582, -0.0415829644, 0.000579167681, 0.00320700486, -0.0333432443, 0.0183652081, 0.00963903219, 0.0273856595, -0.0204431545, 0.0149299894, 0.0252476577, -0.0164434072, 0.0147978654, -0.0357935391, -0.0175604541, 0.0280102454, 0.0283705834, -0.00877422187, -0.0202509761, -0.00162151933, 0.0214761235, -0.00791541673, -0.016575532, -0.0131883575, -0.0424237512, -0.0246951394, -0.0353371091, -0.0149299894, -0.00783133786, -0.0127439415, 0.0169118457, 0.015854856, -0.0132844476, -0.0234219469, -0.0109963035, 0.0073628989, -0.0362259448, -0.0280102454, -0.00379555649, -0.0280582905, -0.0153984288, -0.0300761815, 0.0323342979, 0.0110383425, 0.0169478804, 0.0308689233, -0.0129841659, 0.037619248, 0.0250314549, -0.00439311657, -0.00414088, -0.0278180651, 0.0148098767, -0.032382343, -0.0181369949, 0.0718273, -0.00820969231, -0.00120262685, 0.00579843298, -0.0548193641, -0.0288990792, 0.0372348875, 0.0327426791, 0.014869933, -0.00475345412, -0.0207194146, 0.00236471579, 0.0235180371, 0.0209956728, 0.0315415561, 0.00628188625, 0.00768119749, -0.0211037751, -0.0175364316, 0.0154584842, -0.0360577852, -0.0491981, -0.0491981, 0.0412706695, 0.00654613366, -0.00876821578, -0.050975766, 0.0102335885, -0.0279381778, -0.0160230137, -0.0147978654, 0.0114587368, 0.000858804677, -0.000847544172, 0.0388924405, 0.0193261094, 0.00402076729, 0.0169598907, -0.0276018623, 0.0173922963, -0.0118070636, 0.0327426791, 0.0433846526, 0.00182871346, 0.0262806248, -0.000776227331, 0.0268571656, -0.0278180651, 0.0534741059, -0.0274337046, 0.00348026096, 0.0408142433, -0.0171760935, -0.0202749968, -0.0317817777, -0.0398293212, -0.00147738436, -0.0331510641, 0.0117650237, -0.0223169103, 0.032382343, 0.0174403414, -0.0160470363, -0.00107801007, 0.033103019, -0.0163593292, 2.31779686e-05, -0.0099933641, -0.00572336279, -0.00093762856, 0.0287309214, 0.0543869622, 0.074469775, 0.00642001536, -0.0171160381, 0.0116208885, -0.0273376144, 0.00561526138, -0.00371448044, 0.031709712, 0.0306287, 0.0231456868, 0.0193140972, 0.000660243677, 0.010347696, -0.0392047353, -0.0500629097, 0.0528014749, 0.0174043085, -0.0237342399, 0.0175003987, 2.93478115e-05, -0.0133084701, -0.0292834379, 0.011554827, 0.00210347096, -0.0309409909, 0.0231937319, -0.00714669656, 0.00947688, 0.0486215577, -0.0376432724, 0.000109508859, -0.0578942485, 0.0165635198, -0.0148819443, 0.0201789085, 0.000330872514, 0.0432405174, -0.00846192893, 0.0230736192, 0.0258001741, -0.0383399241, 0.0233258568, 0.00435708277, 0.011464742, -0.0355773345, 0.0117109735, -0.0268331431, 0.0177646447, -0.0105999317, 0.0249113422, 0.0288029891, -0.00754306791, -0.00709264586, -0.0152542936, 0.000765342149, 0.0385801494, -0.000393743947, 0.0139330551, -0.0137288636, -0.0203230418, 0.0437209681, -0.00195783447, -0.0316616669, 0.0136928298, -0.0345443673, 0.00841388386, 0.00673831394, 0.0431204028, -0.019037839, 0.0345203467, -0.0337516256, 0.0308208801, 0.0179448146, -0.0494383238, 0.0284186285, 0.00466937525, -0.0211157855, 0.0315655768, -0.00133399991, -0.00970509369, -0.0222088099, 0.00560925575, -0.00225661439, 0.0279141553, -0.0025328733, 0.0236861948, -0.00908050872, -0.0156506654, -0.017512409, -0.0124316486, 0.00843790639, 0.0132364025, 0.00493362267, 0.054242827, 0.0100233918, -0.0304845646, -0.00519787055, -0.0135006504, -0.0271214135, 0.059431687, -0.0373309776, -0.0534741059, 0.0300761815, 0.0220166296, 0.0303884745, -0.00390065485, -0.00398473348, 0.0143654607, 0.0373069569, 0.00495464262, 0.0341600068, 0.00401476165, -0.0118731251, -0.00768119749, -0.0470600948, -0.00455526821, 0.0466757342, 0.0223529451, -0.00584948109, 0.029691821, 0.0190258268, 0.0181249827, -0.0176325217, 0.00253587612, -0.0196384, -0.017380286, 0.0309409909, 0.00940481201, 0.0258722417, 0.00364541565, -0.0153744062, -0.00654613366, -0.00472943159, 0.024094576, 0.0119211702, 0.00172061217, 0.0274337046, 0.0172962062, -0.00387963513, -0.0385801494, -0.00324303866, 0.0462193079, 0.0214641113, 0.0193861648, 0.00217703986, 0.0491981, 0.00314995158, 0.0124316486, -0.0132964589, 0.00514382, -0.0113206077, 0.0312052388, -0.025487883, -0.0445857756, -0.0315175317, 0.0005787923, 0.0442734845, -0.0122094406, -0.0175844766, -0.00408382667, 0.024322791, 0.0052309013, -0.00115308049, -0.0228574183, -0.00768119749, -0.00402076729, -0.0481170863, -0.0185093433, -0.0277700201, 0.00281063351, 0.00158698705, 0.00608069776, -0.00414088, 0.00390365766, -0.0552998148, -0.0344963223, -0.00996333547, 0.0440572798, 0.0413187146, -0.00891835615, -0.0139570776, -0.00978917256, 0.0091946153, 0.0285867862, 0.0286588538, -0.0627948418, 0.0425198413, 0.0366583504, -0.0525132045, -0.0304605421, 0.0348806828, -0.00966906, 0.0122514796, -0.0563568063, -0.0465316, 0.0113686528, 0.0151221696, 0.00292774336, -0.0283705834, -0.00765116932, 0.00369946635, -0.0173322409, 0.024767207, 0.0205032118, 0.0230015516, -0.0456667915, -0.0168758128, 0.0263526924, 0.0113986805, -0.0230616089, -0.0203590766, 0.0361538753, -0.0493422337, 0.000788989302, 0.0100233918, -0.0189297367, 0.0226051807, 0.0114887645, 0.00527294073, -0.00971109886, -0.0602965, -0.0603925884, 0.0651490465, -0.00485554943, -0.00947688, -0.00657616183, 0.0280582905, 0.0046003107, -0.0290672369, -0.0040357816, -1.41929866e-06, 0.022076685, 0.045330476, -0.00510178041, 0.0512640327, 0.0153143499, -0.0259923544, -0.00417991681, 0.00660619, -0.00219805958, 0.00345023279, 0.0360577852, 0.000824272342, 0.00215902296, -0.0196384, -0.0317577571, 0.046988029, 0.0137408748, -0.033367265, 0.0120953331, -0.0119331814, -0.0249353647, 0.00382258184, -0.0128280194, -0.0073628989, 0.00817365851, -0.0147017753, 0.0126598626, -0.0205993019, 0.0181730278, 0.00249383668, 0.00697853882, -0.0350728631, 0.0266409628, 0.0462913737, -0.0558763556, 0.00477147102, -0.0233618896, -0.00974713266, -0.0183531977, -0.0327667035, -0.00726680923, 0.0215722136, -0.0416790545, -0.0337276, -0.0125637725, 0.0237942953, 0.0272415262, -0.00119887339, 0.00636596512, 0.036418125, 0.00211848505, 0.039685186, 0.00462133, -0.00345924124, -0.0142813819, -0.0282504708, -0.0133324927, 0.0453544967, -0.0025148564, 0.00187375571, -0.000546887459, 0.0154344616, 0.0473243445, 0.0186414663, 0.00298179383, 0.0152663048, -0.00808357447, -0.0443935953, 0.0161911715, 0.00836583879, -0.025704084, 0.0135486955, 0.0066242069, 0.0330069289, 0.0131883575, -0.0245389938, -0.0550115444, 0.035241019, -0.0218845066, -0.0147017753, 0.00146086887, -0.0306287, 0.00567231514, 0.00808357447, -0.0100714369, 0.0243948586, -0.0086841369, 0.0079574557, 0.00345623842, 0.00759111298, 0.0344002321, -0.00630590878, 0.0153383724, 0.0129120983, 0.00953693595, -0.0188696813, -0.0111704664, 0.0334633552, 0.0269772783, -0.0152182598, -0.0172001161, 0.0252236351, 0.00521889, -0.0241306107, 0.0311812162, 0.00778329279, -0.0293074604, 0.0198906381, 0.0539545566, -0.00243528187, -0.000854300451, 0.0287789665, 0.00936877821, 0.0362019204, 0.0101194819, -0.003594368, -0.00107425661, 0.00952492468, -0.00385261, -0.00481651304, -0.0255839713, -0.00598761, 0.0255119056, 0.0126118176, -0.0196263902, -0.0370667316, -0.000275320461, -0.0159149114, -0.00817365851, -0.0033931795, -0.0118731251, 0.0348326378, -0.0345443673, 0.00401476165, -0.0175604541, 0.0086481031, -0.0291873477, -0.00589452311, -0.0213439986, 0.0293314829, -0.0253197253, 0.0050116959, -0.0144135058, 0.00547412923, -0.00450422056, 0.0122574857, -0.0314214416, -0.0312773064, 0.0072908313, 0.0022235834, -0.00132724363, 0.0127439415, 0.000288270123, 0.0201188512, -0.00369946635, -0.00760913, 0.0289951693, -0.0263286699, 0.0262085572, -0.00867813174, 0.0201789085, -0.0354812443, 0.0147017753, 0.00948288571, 0.0278661102, -0.0209115949, 0.00084904558, -0.00694851065, 0.0220166296, 0.033103019, 0.000143290512, 0.0146417189, -0.00413487433, 0.0320940726, -0.00903246365, 0.0204912, -0.0099933641, 0.00787337776, -0.0118971476, 0.00307337986, -0.00204491615, 0.0111704664, 0.0327907242, 0.0330069289, 0.0207554474, -0.00915257633, 0.0187015235, 0.009987358, 0.00855201297, -0.0166716222, 0.0104978364, -0.00756709045, 0.0238783732, 0.0330549739, 0.0243948586, 0.00996333547, 0.0151942372, -0.0190618616, -0.00511979731, 0.0188336466, -0.033631511, -0.016575532, -0.00768720312, -0.000807756849, 0.0143414382, -0.0176085, 0.00333612598, -0.000195182889, -0.0247191619, -0.00825773738, 0.0153864175, 0.0124917049, 0.000650859845, -0.00631191442, 0.0229174737, 0.0171760935, 0.0480690412, 0.0126718739, -0.0148218879, -0.000192555424, 0.0220886972, -0.00438711094, 0.0256800614, 0.017512409, -0.0217764042, -0.0105338702, -0.0135486955, 0.010209566, 0.0119932378, 0.0203951094, 0.00332411472, -0.0308929458, 0.000817516, 0.00593356, 0.0029022193, -0.000451923464, 0.00694250502, 0.00229715253, -0.00423697, -0.0187495686, -0.0232658, 0.0413187146, -0.0156746879, 0.0209836625, 0.0261364896, 0.00263647037, -0.0276739299, -0.0151221696, 0.034304142, 0.00623984681, -0.0274577271, -0.00467538089, 0.00806555711, -0.01388501, -0.022076685, -0.00508976914, 0.0191939846, 0.0252957027, -0.0108701857, -0.0537623763, -0.00341720181, -0.0269532558, -0.0368985757, 0.00888832845, -0.0126358401, 0.00894237868, -0.00747700594, -0.0199026484, -0.0386522189, -0.0155545743, 0.00271003926, -0.0308689233, -0.00307788397, 0.0365142152, 0.0288029891, 0.0539545566, -0.000782232964, 0.0201428737, 0.00805955194, 0.018809624, 0.0181490052, -0.00512880553, -0.00660619, 0.00826974865, 0.0258241966, -0.0118430974, -0.0377633832, -0.00222808775, 0.00589452311, 0.00591554306, 0.0118010575, 0.0434086733, 0.00300131226, -0.0217163488, 0.0164434072, 0.0110383425, -0.00890634488, -0.0195903555, -0.0072427867, 0.0170439705, 0.00711066276, 0.00822170358, -0.00817966461, -0.0365382358, 0.000900844112, -0.0215481911, 0.0253437478, -0.0143894833, -0.0183892306, 0.017824702, 0.000889583549, -0.019350132, -0.0323583186, -0.0092967106, 0.0325985439, -0.0190498494, -0.0380036086, -0.000671504182, -0.000917359546, -0.0161791593, 0.0109842923, -0.00304335169, 0.00739893271, -0.0147618316, 0.0121493842, 0.027721975, 0.0129961772, -0.0159629565, 0.00548313791, -0.00155245466, -0.0155065292, -0.00814363081, 0.038748309, -0.0106419716, 0.00631191442, -0.00658216747, -0.0211277977, 0.0345443673, -0.00996333547, -0.00655814493, -0.0217884164, 0.00993330777, -0.00599361584, 0.00628188625, -0.00487356633, -0.0177286118, -0.0209596399, -0.019037839, -0.00168307708, -0.0080355294, -0.00655814493, 0.0197585132, -0.0114467256, -0.0188696813, 0.0284186285, 0.00522489566, 0.00890634488, 0.00479249051, -0.00696652755, 0.031973958, 0.0233618896, -0.00303284172, -0.0237822849, -0.0126118176, -0.00900243502, -0.0105098477, -0.0453785211, 0.00613174541, 0.0527053848, 0.0138970213, 0.0258482192, -0.00387062668, 0.0162752494, 0.00314394594, -0.0178607348, 0.0340639167, 0.00449220929, 0.0268571656, 0.0456667915, 0.00916458759, -0.0162872616, 0.00240825652, 0.0342080519, 0.0306767449, -0.00381057058, -0.0241546333, -0.00708664, -0.0197945479, -0.00791541673, 0.0146417189, -0.00980118383, 0.00219805958, 0.0180288926, 0.0406701081, -1.63160694e-05, 0.0338236913, -0.0171760935, -0.0350488424, -0.0123355584, -0.0350968875, 0.00891835615, 0.00690046558, 0.0360097401, 0.0237822849, 0.0459790826, -0.0225211028, 0.0367304161, 0.020419132, -0.00430603465, 0.00760913, -0.0235420596, 0.0120592993, 0.0182571076, 0.0273856595, 0.0102576111, 0.00408382667, -0.0103537012, -0.0343281664, 0.021271931, 0.015182226, 0.0281303581, 0.00536302524, 0.00758510735, 0.0262325797, 0.0290191919, 0.000306287, -0.0122694969, -0.0148098767, 0.0118310861, -0.0441053249, -0.0399013869, -0.0262806248, 0.0219085291, -0.0165394973, 0.0241786558, -0.0149179781, 0.0242267, -0.0470600948, 0.000245855364, -0.00638398202, -0.00455526821, 0.0110743763, -0.0263526924, -0.0111644613, -0.00348926941, 0.0599121377, -0.011596866, 0.029379528, -0.0199266709, 0.0315896, 0.0505914055, 0.0086120693, -0.00346524687, -0.0236982051, 0.0124556711, -0.015986979, 0.0224730577, 0.0190738719, 0.0149900457, 0.0233618896, 0.0473964103, -0.00980118383, 0.0292834379, -0.0287068989, 0.00286768703, -0.0143414382, -0.0471321642, 0.00666624634, 0.0198906381, 0.00948889088, 0.0219805967, 0.003672441, 0.0194942653, -0.0192900747, -0.00316196284, -0.000745073135, 0.0209356174, 0.00962702092, 0.0288990792, -0.0191819742, -0.00437509967, 0.000144416568, 0.0398052968, -0.0261845347, -0.0435528085, -0.00503571844, 0.0173562635, -0.00339918514, 0.00118160713, -0.0208635498, -0.0112845739, 0.00733287074, 0.0491981, -0.0106840106, -0.0150741246, 0.0288270116, 0.00652811676, -0.00382558466, -0.00243528187, -0.00838986132, 0.0131042786, -0.0121974293, -0.0101314932, -0.0223169103, 0.0169478804, 0.030989036, -0.00797547307, 0.00806555711, 0.0133565152, 0.0119752204, 0.0131763462, -0.0296197534, 0.0255839713, 0.0360577852, -0.0155425631, 0.013836965, 0.054242827, 0.0399254113, -0.0391807109, -0.0440813042, -0.00338417105, 0.00346524687, 0.00652211113, -0.0066782576, -0.0365862809, -0.0198065583, -0.00547412923, -0.0111764725, 0.00277159689, 0.0149179781, 0.0135486955, -0.0190858841, -0.00664822944, 0.00063734717, -0.00771723082, -0.0122875134, 0.00723077543, -0.0258001741, 0.0203831, -0.0210437179, -0.000910603208, -0.027097391, 0.00673230831, 0.0427360423, -0.00782533269, 0.0053029689, 0.00405079545, 0.0410544686, -0.0218724944, -0.00705060642, -0.0118310861, -0.00512580294, 0.0198546033, 0.0358175598, 0.0353611335, 0.0371628217, 0.0299560688, -0.00174913893, 0.00211848505, 0.0232537892, 0.00120863249, 0.00830578245, -0.00766918622, -0.00077247381, 0.026064422, -0.0117470073, 0.0120412828, -0.0177766569, -0.00509277172, 0.0143534495, -0.0167316776, -0.0298599787, 0.00548914354, -0.0198666155, 0.00836583879, -0.00348626659, -0.0149059668, 0.0269532558, -0.0211758409, 0.0135366842, -0.00559123885, 0.00589152053, -0.0398052968, 0.00927869417, 0.0249593873, -0.043672923, 0.0278661102, -0.0586629659, -0.0180409048, -0.00560325, -0.0403818376, 0.00664822944, 0.00979517773, 0.0214641113, 0.0265929177, 0.0271694586, 0.00201038364, 0.0154584842, 0.00692448812, 0.0153744062, -0.0230736192, 0.0322141834, -0.00932673924, 0.00759111298, 0.0325505, 0.0319979824, -0.00362139335, -0.0101074707, 0.0119451927, 0.00584347546, -0.0254398379, 0.00437810225, 0.0175724663, -0.00867212564, -0.0322382078, 0.0260404, 0.0295236632, 0.0192540418, 0.0218484718, -0.00710465712, -0.0461232178, 0.0222088099, -0.0210437179, -0.00363340462, -0.0017055982, 0.0163353067, -0.02077947, 0.0377153382, 0.0111044049, -0.00331810908, -0.00867813174, -0.033103019, 0.000966155261, -0.0413907841, -0.00472943159, 0.00523390435, 0.00783133786, 0.00433606282, -0.00465135835, -0.00614976231, -0.0414148048, 0.0482371971, -0.0163353067, -0.0338236913, 0.00372048607, -0.0378114283, 0.0198065583, 0.00227012718, 0.0122995246, -0.00732085947, 0.00142933929, -0.00315896, -0.00645004353, 0.0017611502, -0.0152783161, -0.0372589119, 0.00800550077, 0.0268811882, 0.0185213536, -0.0224250127, 0.0124556711, 0.0010449792, 0.0161671489, -0.0141852917, 0.00685242051, 0.00691848248, -0.00857003, 0.0249593873, -0.0142933931, -0.0423516817, 0.00831779372, -0.00745898904, -0.00187825994, 0.00884028338, 0.0204791892, 0.00708664, -0.0179448146, -0.0260163769, -0.00684040925, 0.00705661206, -0.00378354522, -0.00705661206, 0.0112965852, 0.0176685546, -0.017512409, 0.0104978364, 0.017152071, -0.0092967106, -0.0334873758, 0.00122514798, 0.0127559528, 0.0231336765, -0.0264487825, -0.0235780925, 0.0098192, -0.00405980414, -0.0258001741, 0.00246981415, 0.00863008667, 0.00902045239, 0.002933749, -0.0137528861, -0.00393368583, -0.00589152053, -0.0102275833, -0.0344242565, -0.00819768105, -0.028754944, -0.0102876397, 0.00845592283, -0.0225331131, -0.00208695559, -0.0268571656, 0.0120713105, 0.0286108088, 0.0214040559, 0.00976515, 0.0122094406, -0.00267100264, 0.00203140336, -0.0205752794, -0.0427840874, -0.0150260795, 0.0211878531, 0.000901594816, 0.021632269, -0.00305536296, -0.0158188231, -0.000771723106, 0.0525132045, -0.0247191619, 0.00477447361, -0.00279862224, -0.0170679931, -0.0167677104, -0.00941081811, 0.00770522, 0.0212238859, 0.00442314427, 0.00994531903, 0.0168878231, 0.0092306491, -0.0251755901, -0.0266890079, 0.016575532, 0.0170079358, 0.0234820023, -0.0103416899, 0.00140456611, -0.0295717083, 0.0121493842, -0.00195483165, 0.00699655572, -0.013032211, 0.0112245176, -0.0119632091, -0.0236501601, 0.010930242, -0.00702057825, 0.0263526924, 0.00690647122, -0.00446518371, -0.0114887645, -0.00717672473, 0.00200137519, 0.0136808185, -0.00820969231, 0.0129000871, -0.00457628816, -0.0285147186, 0.0162512269, 0.00807156321, 0.0282504708, -0.0341359861, 0.0199146606, 0.0217523817, -0.0369466208, -0.00400275039, 0.00260343938, 0.0093027167, -0.0181129724, -0.00551917125, -0.00482852431, 0.0065101, 0.0157347433, 0.0446578451, 0.00742896087, -0.0024187665, 0.0321180932, -0.0196504127, -0.00309590087, 0.0286828764, -0.0195783451, -0.000418892509, -0.0019278063, -0.0322141834, -0.0115067819, -0.020419132, -0.019842593, -0.0218484718, 0.011644911, 0.0202509761, 0.00430603465, 0.0208875723, 0.0128880758, 0.00151567021, 0.0184132531, 0.00339618232, 7.08476364e-06, -0.0130562335, -0.0147017753, 0.0110263312, 0.0137889199, 0.000791992119, -0.00670828577, -0.000541632529, -0.0135006504, 0.0172001161, 0.0400455222, -0.0147978654, 0.0161551367, -0.0298119336, 0.00246981415, -0.0110383425, 0.0168758128, 0.00717071909, 0.020287009, 0.0153023386, 0.00932073314, 0.00500268769, 4.25555e-05, 0.00959699228, -0.0240345206, 0.0237222277, -0.0217764042, 0.0211037751, -0.000117954274, -0.00101194822, -0.00162151933, 0.0312773064, -0.0192059968, 0.0190498494, 0.01321238, 0.0309409909, -0.0265448727, 0.0202749968, -0.0236982051, 0.00238573551, -0.00546211796, -0.0394209363, 0.0214400887, 0.0120713105, -0.0235420596, 0.00421294756, 0.0080355294, -0.0136808185, 0.00816765334, -0.0038916464, -0.000978166587, -0.00277610123, 0.00213950477, -0.0124676824, 0.0142573593, -0.012407626, 0.0156266429, -0.0187735911, -0.00407181541, -0.0169118457, 0.0354091786, -0.00263947318, 0.0113446303, 0.00944685191, -0.0099933641, -0.00327606965, 0.0119451927, -0.0234099347, -0.00568132335, -0.0145095959, -0.0170079358, -0.020202931, 0.00454025436, 0.00880425, 0.00139856047, 0.025704084, -0.0144014945, -0.00955495331, -0.00787337776, 0.012767964, -0.000362965104, 0.0135246729, 0.0114046866, 0.00717071909, 0.00152618007, -0.0266649853, 0.0013324985, -0.00493662572, -0.00493662572, -0.028442651, 0.0124796936, -0.00835382752, 0.00719474163, 0.0146657415, 0.00521588745, -0.00725479797, -0.0177166, -0.00542908721, 0.0191819742, -0.0143414382, 0.00758510735, 0.0152663048, -0.0403097719, -0.00814363081, 0.000936877856, -0.00215001451, -0.0192180071, -0.00464234967, 0.0175844766, 0.00936277304, 0.0257761516, 0.0104317749, 0.0109782871, -0.014197303, -0.0216683038, -0.00445617549, 0.0201188512, 0.0237702727, 0.00790941156, -0.0100714369, 0.0200107507, 0.00366943819, 0.0117109735, 0.0140771903, -0.0200828183, 0.0155065292, -0.00991529, -0.0254638605, 0.0191339292, -0.00442915, -0.0114407204, -0.00147588295, 0.0244308915, -0.00212899479, -0.0174163189, 0.0185573883, -0.0497746393, 0.00257941685, -0.0258241966, -0.0134766279, -0.01818504, -0.00117184804, 0.0129961772, -0.0111824777, 0.0126718739, 0.00100819464, -0.00643803226, -0.0102275833, 0.014017134, -0.00395470578, 0.00905648619, -0.0123715922, 0.00212148787, 0.0214280784, 0.00208845688, 0.00108701852, -0.011554827, 0.0113506354, -0.0355052687, -0.00392768, 0.0105939265, -0.0101374984, 0.0032130105, 0.00881025475, -0.012767964, -0.0147858541, -5.52705387e-05, 0.0258482192, -0.0238543507, -0.000655739452, 0.00220406521, -0.020335054, -0.0140411565, -0.0093387505, -0.0409583785, 0.0018722543, -0.0174883865, 0.0328868143, 0.0109662758, -0.0140531678, -0.0112785678, -0.00352530321, -0.000327119022, 0.0135607067, 0.00873218197, 0.021271931, 0.014377472, -0.011194489, 0.00632392569, -0.0270253234, -0.00503872149, -0.00234219455, 0.0244789366, 0.0186654888, 0.0200948287, -0.0104197636, 8.93806282e-05, 0.000934625743, -0.00355232856, -0.00686443178, -2.51016445e-06, -0.0194221977, 0.0145216072, 0.00312592904, -0.0265688952, 0.0219805967, 0.00744097214, -0.0151101584, 0.00936277304, 0.00262145628, 0.000999937, 0.0101615209, -0.0093387505, 7.91171e-06, 0.00034982778, -0.0194101874, -0.00419493066, 0.00726680923, 0.00675032521, 0.0160950813, 0.00443215296, -0.00964503735, -0.0194702428, 0.0046303384, 0.0329588838, 0.00204942026, 0.0147017753, -0.0279141553, -0.00259443093, 0.0267130304, 0.00719474163, 0.0234339572, -3.51892231e-05, -0.0125157274, -0.00308689242, -0.0230135638, -0.0122394683, 0.0129841659, -0.0281543806, -0.00498467078, 0.02077947, 0.00437810225, -0.0158788785, -0.00917659886, 0.00741694961, 0.00445017, -0.000710165419, 0.0111284275, 0.0271214135, -0.00845592283, -0.00717071909, -0.0144014945, -0.0104557974, -0.000927869405, 0.0217043366, 0.0230856314, -0.00311391777, 0.00942883454, 0.0127439415, -0.00462433323, -0.00666624634, 0.0102876397, 0.0238303281, -0.0149059668, -0.0102516059, 0.0258482192, -0.0309650134, 0.0130562335, 0.0172601733, -0.0216803141, -0.0115908608, -0.00686443178, 0.016299272, -0.0023151692, 0.0344963223, -0.00654012803, -0.0217043366, -0.00995733, 0.00677434774, 0.00196684292, 0.0024052537, -0.0156386532, -0.00292624184, -0.0033391288, -0.00687644305, 0.0218364615, -0.000477072026, -0.00942883454, -0.0043630884, 0.0078613665, -0.0112004951, -0.000732686545, -0.0393008254, 0.00024510466, 0.00991529, -0.025704084, 0.00884028338, 0.0185814109, 0.00707462896, -0.00857003, -0.0398293212, -0.00212449068, 0.00771723082, 0.0114467256, 0.00100594258, -0.00139105343, 0.00093237363, -0.0048675607, -0.0157587659, -0.0124676824, -0.00160350243, 0.00516483933, -0.000237034605, 0.00245780288, 0.00631792, -0.016215194, -0.0128760645, -0.0413907841, -0.0212959535, -0.00678635901, 0.0102395946, -0.00905048, 0.0104257688, 0.0238903854, 0.0113266129, 0.0265448727, 0.00826974865, -0.00451923441, -0.0163353067, -0.0172241386, -0.0147498203, -0.0174403414, 0.0120352767, 0.0324544087, -0.00990928523, -0.019614378, 0.0293555055, 0.0101855434, -0.0174403414, -0.00681038154, 0.0085820416, -0.0126838852, 0.0235660821, -0.0167677104, -0.0172841959, 0.00423997268, -0.0226772483, 0.0363220349, -0.00272655487, 0.0222928878, -0.0242987685, 0.0282504708, -0.0478768609, 0.0254158154, 0.00896640122, -0.0285627637, 0.00473543722, 0.035697449, 0.00381057058, -0.00764516369, 0.0183772203, -0.00490659755, 0.00348026096, -0.0273376144, 0.000513481151, -0.013656796, -0.0128160082, 0.00321901613, 0.00481651304, 0.00650409423, 0.0225451253, -0.0200828183, 0.0263046473, -0.0274096821, 0.0187375564, -0.0312532857, 0.00211247941, -0.0086541092, -0.0208755601, -0.00174163189, -0.00571735715, 0.0122154457, -0.0280342679, -0.0188456587, -0.00234970171, 0.0161551367, 0.0105098477, -0.000542383234, 0.0214040559, 0.000963903149, 0.00458529638, -0.0121794119, -0.0111044049, -0.000556271232, 0.00362139335, 0.0136808185, -0.0212839432, 0.0197825357, 0.0118130688, 0.0170439705, -0.0104317749, -0.00352830603, -0.000454926252, -0.0223769676, 0.0278661102, 0.0407181531, 0.0516003482, -0.0152542936, 0.0164193846, -0.00517985364, 0.0173682738, -0.023469992, 0.00982520636, -0.0237582624, -0.0137168523, 0.0137528861, 0.00816765334, -0.0311331712, -0.00098417222, -0.0128880758, 0.0016695644, -0.00311992341, 0.0115848547, 0.00767519185, 0.0157347433, 0.000208883226, -0.00427600648, -0.015230271, -0.0118731251, -0.00496365083, 0.00257641403, -0.0180889498, 0.00796946697, -0.0072067529, -0.0142813819, -0.0140892016, -0.0161911715, -0.00214400887, 0.00927869417, 0.021812439, -0.0167557, 0.0200107507, -0.0144855734, 0.0131403124, -0.00950090215, -0.000584797934, 0.0170800034, -0.00451923441, 0.0184012428, 0.0249113422, 0.00652211113, -0.0228454061, 0.00995733, -0.00189927965, 0.0145816626, -0.0354812443, -0.041606985, -0.0101795383, -0.0042009363, 0.010389735, -0.0161791593, -0.0127799744, 0.00711666839, -0.00183021487, -0.00841388386, 0.010299651, 0.00609871466, -0.00597860198, -0.000943634193, -0.00975914393, 0.0255119056, 0.00635395385, 0.0346164368, -0.0147618316, 0.00238873833, 0.00570534589, 0.0233979244, 0.000792742823, -0.00239624525, -0.0132364025, 0.0117470073, 0.0138009312, 0.00673230831, -0.00569333462, -0.00530597148, -0.00814363081, 0.00189927965, 0.000646731, 0.0164193846, -0.0177886672, -0.00411986047, 0.0086541092, -0.00451322878, 0.0011936184, -0.0202749968, 0.00368445227, 0.0067142914, -0.0202269536, 0.0138009312, -0.00754907355, -0.00463934708, 0.00809558574, 0.0214761235, 0.00770522, 0.00855201297, 0.00757309608, 0.00313493749, 0.00309590087, -0.0102756284, -0.0222568549, 0.0182210729, 0.00882827211, -0.0103116622, -9.14450575e-05, 0.0154704954, 0.0132964589, 0.00771723082, 0.0269292332, 0.027361637, 0.00265598856, 0.00304335169, -0.0112365289, -0.0201548859, -0.00505073275, 0.0161191039, -0.0039817309, -0.00592755433, -0.0285387412, 0.00575038791, -0.008690143, -0.00513781421, 0.00434206845, -0.00174013048, 0.00117184804, -0.0241306107, 0.0139450664, -0.0198906381, 0.0230495967, -0.00784935523, -0.0166476, -0.0216562916, 6.45135733e-05, 0.00707462896, 0.00573237101, 0.0283705834, -0.0059035318, 0.0115368096, 0.0289711468, -0.00138129422, -0.00912254769, -0.021632269, -0.00242327061, -0.0110863876, 5.8695623e-05, 0.0217523817, -0.00900844112, 0.0277459975, -0.0132484138, -0.0168998353, 0.0139931114, 0.00864209794, -0.00950690825, 0.0174283311, -0.00155545748, 0.00217553857, 0.00240225089, 0.00121388736, 0.00753706228, 0.0161551367, 0.0143534495, -0.00292474055, 0.0395890959, -0.0118370913, -0.0144495396, -0.00825773738, 0.00879223831, -0.0297638886, 0.00822170358, 0.0161191039, 0.0137769086, -6.52642775e-05, -0.00131072814, 0.0182931405, 0.00724879233, 0.0181249827, 0.016527487, -0.0158188231, 0.00896039605, 0.0038916464, -0.0145576401, 0.0134766279, 0.0143174157, -0.015722733, -0.0123836035, 0.0162512269, -0.0130442223, -0.0108221406, -0.0131883575, 0.00968707725, -0.00385861541, -0.0169118457, -0.0153263612, -0.0113566415, 0.00280913222, 0.00356133701, -0.0138489762, -0.00209446251, -0.00547713228, -0.00390365766, 0.00608069776, 0.031709712, 0.00272955769, 0.00968707725, -0.0117109735, 0.00964503735, -0.00357334828, -0.0358896293, -0.011194489, 0.0135246729, -0.00529996585, -0.00757910172, 0.031037081, 0.0145336185, 0.00873818807, -0.0141252354, -0.0178126898, 0.00722477, -0.00288870675, -0.00162151933, 0.00794544443, -0.00338717387, -0.0212839432, 0.014689764, -0.0153744062, 0.000332749274, -0.00827575475, -0.0131162899, 0.00998135284, -0.00496064825, 0.00660619, -0.00898441859, 0.00576540222, -0.00274607306, -0.011734996, 0.00899042375, -0.0136928298, -0.00132048735, -0.0138729988, 0.0142453481, -0.0297638886, -0.0156386532, -0.00202840054, 0.0320940726, -0.00235720864, 0.00853399653, -1.66796908e-05, 0.000460556534, 0.0139570776, -0.000558147964, -0.00460631633, 0.0224490352, -0.00233919173, 0.0168878231, -0.0181490052, -0.0225811582, -0.00065161055, -0.000144885751, 0.00378354522, 0.00890634488, -0.00685242051, -0.00453725131, -0.0144975847, -0.00732085947, 0.015050102, 0.00711066276, 0.00067488238, -0.0146657415, 0.00760913, 0.0147378091, -0.000334250682, 0.00358836236, -0.00766318059, 0.00227613281, -0.00112230156, -0.00442915, 0.0107260505, -0.0241185986, -0.000420393917, -0.00123040285, -0.0373790227, -0.0310611036, 0.0249834098, -0.0142693706, 0.00022558638, -0.0149780344, 0.0199506935, -0.0107861068, -0.0129481321, 0.017824702, 0.00944685191, 0.0188336466, -0.00299680792, -0.0101495096, -0.0165635198, 0.0384119935, 0.0289951693, 0.00573237101, 0.0168397781, 0.0208995827, 0.0285147186, 0.0028977152, -0.0157587659, -0.00777128153, 0.0133445039, 0.0190138165, 0.00182270783, -0.00281063351, 0.00149915472, -0.0141612692, -0.00723678106, 0.00548914354, 0.0144014945, 0.00476846797, 0.00286018, 0.0111104101, 0.0124917049, -0.0126238288, 0.000641476072, -0.0112665566, -0.0138609875, -0.0169839133, 0.0159149114, 0.00345323561, -0.00673230831, 0.00578041608, -0.00442314427, 0.00801150687, -0.000385110849, -0.0121073443, 0.0174883865, -0.0227733385, 0.0159389339, 0.00383159029, 0.00706862332, -0.0167196672, -0.0049035945, -0.0274337046, -0.021992607, -0.000499593094, 0.00448920624, 0.00870815944, -0.0185934212, -0.00566931209, -0.00695451628, -0.0092306491, -0.000924115884, -0.0241065882, 0.00441413606, -0.00280763069, -0.00249383668, -0.0165635198, -0.0146176964, -0.00409884052, 0.000461307238, 0.000250171899, -0.00722477, 0.0106479768, -0.00953693595, 0.0211037751, 0.0116268946, -0.00420694193, -0.00539005036, 0.0111284275, 0.000896339887, -0.00245029596, -0.00172361499, 0.0149059668, -0.00342621026, -0.0177406222, 0.0332471542, -0.0137168523, 0.0134405941, -0.0181369949, -0.0238063056, 0.00213049632, -0.00415589428, -0.0212839432, 0.0160710588, -0.0050297128, 0.0181369949, 0.0114767533, -0.00310190651, -0.00308088679, 0.0267130304, 0.0223529451, 0.00395170273, 0.00782533269, -0.00239474396, -0.00272655487, -0.0103777237, 0.0158428457, -0.0144975847, -0.00248632976, 0.00845592283, 0.0285387412, 0.00912254769, 0.00244579162, -0.014197303, 0.01101432, 0.00477747666, -0.00699055, -0.000829527271, 0.0168517902, 0.00446218112, 0.0066602407, 0.0173442513, 0.011464742, -0.0111644613, -0.00107650866, -0.0354812443, 0.0130922673, -0.00338116824, 0.0153503837, 0.000197435, -0.00448320061, 0.00179418118, 0.0128760645, 0.0137288636, 0.00663621817, 0.000309102121, 0.00585248368, -0.00344122434, 0.0221967977, 0.0226051807, -0.0141492579, 0.0128880758, -0.00654012803, -0.0142093142, 0.0288510341, -0.00778929843, 0.00165755313, -0.0126238288, 0.0121734068, -0.00825773738, 0.00249383668, 0.00548013486, -0.0259202868, -0.0159389339, -0.00705661206, 0.0294996407, 0.00897841249, 0.0288029891, -0.00302383327, 0.00226862566, -0.0208034925, 0.0203470644, 0.00755507918, 0.0123475697, 0.00939880684, 0.0273376144, 0.00505373534, 0.0119091589, -0.0230135638, 0.00396971963, -0.0103356848, 0.020287009, -0.00597259635, -0.00962702092, 0.00204191334, 0.00371147762, 0.0108581744, 0.0129601434, -0.00503571844, 0.023241777, 0.0065161055, 0.011554827, -0.00709865149, 0.00132874504, -0.0059515764, -0.00548614049, -0.00516784238, 0.0157467555, -0.00190978951, 0.0162632391, -0.00521889, 0.00415589428, 0.00896640122, -0.00361538772, 0.00536602782, -0.0161911715, -0.00463634403, -0.00107200444, -0.0086481031, -0.0072608036, -0.0288510341, 0.00414088, -0.00422495883, 0.00804153457, 0.0147738429, 0.00453725131, 0.0117710298, -0.00762714678, 0.00273856614, 0.00568732899, 0.00292173773, 0.00219355547, -0.0281543806, 0.00640800409, -0.01800487, 0.00702057825, 0.00804754067, 0.0129000871, -0.00643202662, -0.00674431957, 0.0141372466, 0.0214160662, 0.00383759593, 0.00207794714, -0.0154464729, 0.0356734246, -0.00559724448, 0.00612273719, -0.00123265502, -0.0050297128, 0.0136087518, 0.0156626757, 0.00290372083, -0.00413787737, 0.0240585431, 0.0307488125, -0.00793943927, -0.00416790554, 0.0104197636, -0.0149420006, 0.0210437179, -0.00212899479, -0.0214040559, 0.00678035337, 0.0156146307, 0.000844541355, -0.00339618232, -0.0250795, 0.00870215427, -0.0125517612, 0.0128160082, -0.00549514918, -0.00432104897, -9.03659238e-05, 0.0203710869, 0.00620981865, -0.0235300474, 0.0256560389, -0.000888832845, 0.00753105665, -0.0164313968, 0.0072728144, 0.0100414092, 0.00241726497, 0.0275778398, 0.00771723082, 0.0274817497, 0.0122154457, -0.00852799, -0.0226171929, 0.0202149414, -0.00388864358, 0.0202509761, -0.00605066959, -0.000972160895, 0.018809624, -0.013392549, -0.00708664, 0.0155065292, 0.0106479768, -0.0374510922, -0.00757309608, 0.00247581978, 0.0100354031, 0.00316496566, -0.0139690889, 0.0164073743, -0.00111929874, 0.00762114115, -0.020647347, 0.00927268807, 0.0100594256, -0.0200828183, -0.00990928523, -0.017872747, -0.0117650237, -0.000710165419, 0.00392467761, 0.00963302609, -0.0274337046, 0.0193381198, -0.011242534, -0.0142333368, 0.0131523237, 0.0072427867, -0.00099768478, -0.00780731533, -2.91601355e-05, 0.00713468529, 0.0098192, -0.0269772783, 0.0165635198, -0.0128880758, 0.0180409048, -0.00864209794, 0.0243468136, 0.0129361209, 0.0107620843, -0.00934475567, -0.0119331814, -0.0190498494, -0.0129841659, -0.00821569841, 0.00615576794, -0.013392549, 0.00878022704, -0.0121493842, 0.00225961721, 0.00584948109, 0.00800550077, -0.00563327828, 0.00525192125, 0.0177045893, -0.0116389059, -0.0022190793, 0.0148098767, 0.00599962147, 0.0150981471, -0.00844991766, 0.00810759701, 0.010750073, -0.0171760935, -0.00777728716, -0.00081151037, 0.000984922866, -0.00672630267, 0.00936877821, -0.00508376351, -0.00257491274, 0.00255689584, 0.00715870783, -0.0121433781, 0.0118010575, 0.0128039969, 0.00700256135, -0.0188456587, 0.0243828464, 0.0238783732, 0.00952492468, -0.00231817202, 0.0363460556, -0.00474444544, -0.0286108088, -0.00820368715, -0.0243948586, -0.00445017, 0.0142333368, -0.00248783105, -0.0112365289, 0.0182571076, -0.0226171929, 0.0244789366, -0.00383159029, -0.00255989865, 0.00782533269, 0.0428321324, -0.0155906081, 0.011062365, -0.013836965, -0.0113506354, -0.000873818761, -0.0138249537, 0.0304605421, -0.0355533138, 0.0137769086, 0.01182508, 0.00218004268, 0.00708664, 0.0193381198, -0.00106224534, -0.000502971292, 0.00117785367, -0.002351203, 0.0236261375, 0.0317817777, -0.019169962, -1.28206066e-05, -0.00546211796, 0.00774125336, -0.00327006401, 0.00619780738, 0.00649208296, -0.0137408748, -0.00992730167, -0.0335114, 0.0210677404, 0.00449821493, 0.0202509761, 0.00193381193, -0.00510478299, -0.00336915697, 0.0207194146, -0.00894838478, -0.00386762386, -0.00959699228, 0.00201638928, -0.0098852627, 0.0140051227, 0.0196624231, -0.0139690889, 0.0177045893, -0.0104678087, 0.00778929843, 0.00296527846, -0.0181009602, 0.00356433983, -0.0259683318, -0.0132724363, 0.00430002902, -0.0100654317, -0.0288029891, 0.00471742032, -0.00991529, -0.0004864558, 0.0118971476, -0.0201068409, -0.0066242069, 0.00673831394, 0.0143054044, -0.0216562916, 0.0236141272, 0.0107260505, 0.000226337084, -0.0151461922, 0.00301782764, 0.0167316776, -0.00548914354, 0.00900844112, 0.0179328024, 0.00784935523, -0.00950690825, -0.0246470943, 0.023157699, 0.0099212965, -0.00652811676, -1.07268479e-05, 0.000887331436, -0.00343822152, 0.0349527523, 0.0167316776, -0.00655814493, -0.0148939556, -0.018317163, 0.000843790651, 0.0224610455, 0.00711066276, -0.0146417189, -0.0151461922, -0.0101735322, -0.00528795458, -0.0243107788, 0.0230856314, 0.00115082832, -0.00828776602, -0.00510178041, -0.00540806726, 0.00851597916, -0.0124556711, 0.00475045107, 0.0125277387, 0.00117109728, 0.0118611138, 0.00422495883, -0.0164554194, 0.00316496566, -0.0149660232, 0.00317097129, -0.0104858251, 0.0407662, 0.0216562916, -0.00846192893, -0.00628188625, 0.0072908313, -0.00357334828, -0.00878022704, -0.00939280074, -0.0214641113, -0.0224970803, -0.0109182307, 0.00418291939, 0.00860005803, 0.00596058508, 0.0103717186, 0.0103116622, -0.0155185405, -0.0244429037, 0.000691397814, -0.000386236905, 0.0303164069, 0.0160710588, -0.00810159091, -0.00535401655, 0.00700256135, -0.0072427867, -0.0101915495, -0.0182210729, -0.00975313876, 0.00958498102, -0.000440287549, -0.0066782576, -0.0316856913, 0.0186054334, -0.00381057058, 0.0200587958, -0.0144375283, -0.00557322195, 0.00694851065, -0.00125142257, 0.0116629284, 0.0158788785, -0.00109902979, -0.0266169403, -0.00291873491, 0.0309650134, 0.00237372424, -0.00351629476, 0.0104257688, 0.00362739898, 0.0145456288, -0.00907450262, 0.0100594256, -0.0267370529, -0.00772924209, -0.0173682738, 0.00927268807, 0.0211758409, -0.0308929458, 0.0103717186, 0.00647406606, -0.0124676824, -0.00103822281, -0.0299560688, 0.00699655572, -0.00640800409, -0.0113986805, -0.00115833536, -0.0171040259, -0.0196384, -0.0222328324, 0.0251515675, -0.0291873477, 0.0195062775, 0.0138249537, -0.0201188512, -0.00040838265, -0.0202389639, 0.00561826443, -0.00691848248, 0.0145216072, -0.000765717472, -0.00634794822, -0.00953093078, -0.0231216643, -0.0169238579, -0.00111404387, 0.00346524687, -0.00228664256, -0.000854300451, 0.0175844766, -0.0165394973, 0.0387002639, 0.00501770154, -0.0130562335, -0.0148459105, -0.0176925771, 0.0047204229, -0.00867212564, -0.0136688072, 0.000246418407, 0.000895589183, 0.00597259635, -0.0026604929, -0.012407626, 0.0123235472, -0.00403878419, 3.81803056e-06, -0.0136327744, 0.0176205095, -0.0159749687, 0.00137003371, 0.00551016303, 0.00824572612, -0.0221367422, -0.00351629476, 0.0014128238, -0.0122394683, 0.000609946495, 0.0126118176, -0.00311992341, 0.00602064142, -0.00506874919, -0.0109602697, 0.00227162847, 0.000196308945, 0.0148218879, 0.00124391553, -0.00780731533, 0.00590953743, -0.0135847293, -0.00635395385, -0.0177166, 0.0132844476, 0.0176325217, 0.000317922881, -0.0313253514, -0.00796946697, 0.0198546033, 0.0109782871, 0.0346404575, 0.00834782235, 0.00649208296, 0.00867813174, -0.00618579611, -0.0049216114, 0.0295236632, -0.0066782576, -0.0168638, -0.0110563599, -0.00939880684, 0.0150621133, 0.00179868541, -0.00196233881, 0.00762714678, -0.0184132531, -0.00495464262, -0.0137889199, -0.00550115481, -0.00616777921, -0.0136447856, -0.0078913942, -0.00236471579, 0.0270493459, 0.0200587958, -0.00477147102, 0.0137769086, -0.0244909488, -0.021812439, 0.0144495396, 0.00987325143, -0.0113085965, -0.00831779372, -0.0123956148, 0.00120863249, 0.00313193467, 0.0115608322, 0.0230736192, 0.00445017, 0.0114947706, 0.00310190651, 0.00873818807, -0.00543809542, 0.0119031528, 0.000615576806, 0.00710465712, -0.0225811582, -0.00722477, -0.00835382752, -0.0155785969, -0.0145576401, 0.0270013, -0.0093327444, 0.000676008407, 0.000886580732, 0.0161431264, -0.0205392446, -0.0032850781, 0.00646205479, 0.0214160662, 0.0128880758, -0.0120232655, -0.0196984578, -0.00155395607, 0.00428801775, -0.00536002219, -0.0191819742, 0.00231216662, 0.0187495686, -0.00394269451, -0.00609270902, -0.0107320556, 0.0167677104, -0.00193831616, -0.00522189308, 0.0280582905, -0.0168397781, 0.0015599617, -0.00416790554, 0.00687043741, -0.00414088, -0.0182330851, 0.0256800614, 0.0185093433, -0.0108101293, 0.0159029011, -0.0046483553, -0.00157497579, -0.00355533138, 0.00208095, -0.0264487825, 0.00748301158, -0.0140051227, -0.0109002134, -0.00206143153, -0.00278210687, 0.00538104214, 0.00451623183, -0.0213920437, -0.00342621026, -0.00197284855, 0.000947387714, 0.0129120983, -0.00253887894, 0.00740493834, 0.0126838852, 0.00942282937, 0.00681038154, -0.00759111298, -0.0206233244, 0.0126838852, -0.0093387505, -0.012852042, 0.00129496341, 0.012407626, 0.00389765203, -0.00414388301, 0.00417090813, 0.00086481031, -0.0205872897, -0.0105458815, -0.0028661855, 0.00113806641, -0.00427000085, -0.022076685, 0.00100143836, 0.0128760645, -0.00694851065, -0.0120713105, 0.0133565152, 0.00386161823, -0.00814963598, 0.00753105665, -0.0276979525, -0.021860484, -0.00150365895, -0.00790340547, 0.0112905791, 0.0113626467, -0.00954294205, -0.0153143499, -0.00901444629, 0.0132844476, -0.0193020869, -0.0346164368, -0.00404178724, -0.00179868541, 0.00759111298, -0.00939880684, -0.00754306791, 0.0106419716, -0.00900243502, 0.00848595146, -0.00821569841, 0.00284066168, 0.00342921307, -0.0159629565, -0.0380036086, 0.00950690825, -0.00141507597, 0.0177166, -0.00133024645, 0.0262806248, 0.0209836625, -0.0309650134, -0.00810159091, -0.00567231514, -0.028082313, 0.0230015516, 0.00981319509, -0.00652211113, 0.00282114348, -0.00234669889, 0.00353130884, -0.00704460079, -0.00840787776, 1.64216362e-05, -3.97169024e-05, 0.0136928298, -0.00275358, -0.0187015235, 0.00138279563, -0.00835382752, 0.000784485077, -0.019169962, -0.00573237101, -0.00990928523, -0.00259593246, 0.00905048, -0.012852042, -0.0161311142, 0.00960299838, -0.0164674297, 0.0259202868, 0.0200708061, -0.0282024257, -0.0209716503, -0.00724879233, -0.0172241386, -0.00300881919, 0.00267250417, -0.0116809448, -0.00571435457, 0.0150861358, 0.0137168523, 0.00908651389, -0.00848595146, 0.0243588239, -0.0027881125, 0.0135486955, -0.0116329, -0.0140291452, 0.00935676694, 0.0113806641, -0.0125637725, -0.00560625317, -0.0135486955, -0.00543209, 0.00611673156, 0.00869614817, -0.00817365851, -0.0161791593, 0.0293314829, -0.0154464729, -0.018809624, -0.00601463579, 0.0078974, -0.00622183, -0.0191339292, 0.0190978944, 0.0033391288, 0.0240825657, 0.000428651634, 0.00298629818, 0.0227613281, 0.0105578927, 0.040622063, 0.022437023, 0.0261364896, 0.00452223746, 0.00368445227, -0.0120953331, -0.0222328324, -0.0201068409, 0.0130081885, 0.000896339887, -0.0113446303, 0.0010659988, -0.0362499654, 0.0239384305, -0.0143894833, 0.00162752497, 0.0134045603, -0.00171911076, 0.0153984288, -0.0217523817, 0.00741694961, -0.0126478514, 0.0103837298, 2.86674858e-05, -0.00231366791, 0.0165635198, 0.0106659941, -0.00975914393, 0.0199627057, 0.00631792, 0.00675633084, 0.0080355294, 0.0102576111, -0.00177166, -0.0402377024, -0.00825173222, 0.00306437141, 0.00679837028, -0.00860005803, -0.00707462896, -0.0107680894, 0.0073628989, 0.011062365, 0.00959098712, 0.0208635498, -0.0106539829, 0.0220286399, -0.00193080911, -0.0294515956, -0.0161671489, 0.00336315134, 0.000389990426, 0.00947688, 0.0166115649, -0.00245179725, 0.00609270902, -0.0291393027, -0.0173082184, -0.0334873758, -0.0197825357, -0.0228814408, -0.0148579217, 0.00125517615, -0.0400695466, -0.0336074904, 0.00890034, 0.00757910172, 0.00357034546, 0.0142333368, 0.00643803226, 0.0107861068, -0.0127799744, 0.00715270219, -0.00621582428, 0.00506574661, 0.00503872149, 0.00442314427, -0.0167436879, -0.0248632971, 0.000449671352, 0.0270013, -0.000306287, -0.00116509164, 0.0112905791, 0.00401175907, 0.0160590466, 0.0297158435, -0.00011185481, 0.0302683618, 0.00776527589, 0.0099513242, -0.00308989524, -0.00979517773, -0.000224460324, -0.0186654888, 0.024274746, 0.00959699228, -0.00518585928, -0.0085820416, -0.0275057722, -0.000651985931, 0.00827575475, 0.0113146016, -0.00947688, 0.0120172603, 0.017872747, 0.0277940426, -0.00347125251, -0.00293825311, -0.00650409423, -0.0211878531, -0.00344422716, 0.0298840012, 0.0119872317, -0.0273376144, 0.0211518183, -0.0156987105, 0.00227913563, 0.00469940342, -0.00487957196, 0.0181610174, -0.0274096821, -0.02077947, 0.00581044424, 0.00481050741, 0.00880425, -0.00295026437, 0.00991529, -0.00145861669, -0.00158248283, 0.00819768105, 0.00206743716, -0.00132724363, 0.00613474846, 0.0246470943, -0.00105098472, -0.00105023407, -0.00714669656, -0.0116268946, -0.0035763511, -0.0145816626, -0.0085760355, 0.00663021253, -0.0146056851, -0.00017585227, -0.0115608322, 0.0117950523, -0.00410784921, -0.00115533255, -0.00136027462, 0.00622183, 0.00146987732, 0.00615576794, 0.0157587659, -0.00948288571, 0.0233739018, 0.0294756182, -0.00125667755, 0.0110083148, 0.00458829943, 0.00488858065, 0.00256740558, -0.00447719498, 0.0258001741, -0.00280462787, -0.00781332143, 0.0100414092, 0.0175003987, -0.00424898136, 0.000326368317, 0.0129361209, 0.0139090326, 0.0179688372, 0.00256590429, -0.00411385484, 0.00447719498, -0.00351329194, 0.018677501, -0.00464535272, -0.0272415262, -0.0269532558, 0.00838385522, -0.00738091581, 0.0244669262, 0.00683440361, 0.012852042, 0.0342801213, 0.00374150579, 0.00114257063, -0.017019948, -0.000398623524, 0.0139450664, 0.0144615509, 0.0133204814, -0.00649808859, -0.00849195663, -0.00525492383, -0.0114106918, -0.00814963598, -0.00459130201, -0.043000292, -0.0149420006, 0.00895439, 0.00479549356, 0.0268571656, 0.0184012428, -0.0109422533, -0.00125442538, 0.0105338702, -0.000527744472, 0.00784935523, 0.00597259635, -0.0157827884, -0.00366343255, -0.0163713396, -0.0219205394, -0.000816014595, 0.00290372083, 0.0103116622, 0.00420994451, 0.00381357339, -0.00684641488, -0.00666624634, -0.000965404557, -0.0165995546, 0.00811360218, -0.0140051227, 0.0240104981, 0.00902045239, 0.00644403789, -0.0230255742, -0.0112545453, -0.00708063459, -0.0147378091, -0.00120863249, 0.0263046473, -0.0103717186, 0.0173562635, 0.00130622392, 0.00769921439, 0.0371628217, 0.00744097214, -0.0113266129, 0.00538104214, 0.037355002, 0.022413, -0.000299155305, 0.0101014655, 0.00508976914, -0.00454926258, -0.016791733, 0.0185093433, 0.0209596399, 0.00660018437, 0.0222568549, 0.00143609557, -0.00228514127, 0.0124676824, -0.00765717495, 0.0343521871, -0.019842593, 0.0245029591, 0.0120653054, -0.00791541673, -0.0281543806, -0.021007685, 0.0114106918, 0.012185418, -0.00690046558, 0.00724879233, 0.00227613281, -0.0126358401, 0.00531798275, -0.0049216114, 0.0100594256, 0.00714669656, -0.00712867966, 0.0116509171, -0.0118190749, -8.04660231e-05, -0.0181730278, 0.0141732804, 0.00389464921, -0.00972311, 0.00739893271, -0.00298779947, -0.000654238043, 0.00711666839, 0.008690143, 0.00741694961, -0.0116208885, 0.00660619, 0.00382258184, -0.00589152053, 0.00455526821, -0.0147257978, 0.0212959535, 0.0213680211, 0.0113025904, 0.0144255171, 0.00811360218, 2.08906677e-05, 0.0186054334, -0.00584647804, -0.00500869332, -0.00153518852, -0.014377472, -0.0137648974, -0.00103371858, 0.00893637352, 0.0136688072, -0.0109122247, 0.0204912, -0.0243107788, 0.0134285828, 0.0119932378, 0.0226892605, 0.0338717364, -0.00855201297, -0.00155695889, -0.00363340462, 0.0144615509, 0.0181249827, 0.00264698, 0.00483453, -0.0220646746, 0.00204491615, -0.0046663722, 0.00188426557, -0.00759111298, 0.0182450954, -0.00309289806, -0.0171881057, -0.00843790639, 0.0155665856, -0.00330009218, -0.0266409628, 0.00969908759]
10 Jan, 2023
Difference between MS SQL Server and IBM DB2 10 Jan, 2023 1. Microsoft SQL Server : It is relational database management system (RDBMS) developed by Microsoft Corporation and initially released on April 24, 1989. It is written in C and C++ languages. It is platform-dependent and it is both GUI and command based software. It supports a variety of transaction processing, analytics applications, and business intelligence in corporate environments. 2. IBM DB2 : It is Relational Database Management System (RDBMS) product from IBM. It is made to analyze, store, and retrieve the data efficiently. DB2 product is increased with the support of Object-Oriented features and non-relational structures with XML. It is written in C and C++ languages. Difference between Microsoft SQL Server and IBM DB2 : S.NO. Microsoft SQL Server IBM DB2 1. Developed by Microsoft Corporation. Developed by IBM. 2. MS SQL Server was initially released on April 24, 1989. IBM DB2 was initially released in 1983. 3. For MS SQL Server, Server operating systems are Linux and Windows. IBM DB2 Server operating systems are AIX, HP-UX, Linux, Solaris, Windows, z/OS. 4. APIs and other access methods include ADO.NET, JDBC, ODBC, OLE DB, Tabular Data Stream (TDS). APIs and other access methods include ADO.NET, JDBC, JSON style queries, ODBC and XQuery. 5. MS SQL Server supports C#, C++, Delphi, Go, Java, JavaScript (Node.js), PHP, Python, R, Ruby, Visual Basic programming languages. IBM DB2 supports C, C#, C++, Cobol, Delphi, Fortran, Java, Perl, PHP, Python, Ruby, Visual Basic programming languages. 6. Secondary database models are Document store and Graph DBMS. Secondary database models are Document store and RDF store. 7. In MS SQL Server tables can be distributed across several files (horizontal partitioning) and sharding is done through federation. IBM DB2 supports Sharding Partitioning methods. 8. Famous companies like Bank of America, UPS, etc uses MS SQL Server. Famous companies like Wells Fargo, Citi, JPMorgan Chase, Bank of America, etc uses IBM DB2. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2
https://www.geeksforgeeks.org/difference-between-ms-sql-server-and-ibm-db2?ref=asr10
Languages
Difference between MS SQL Server and IBM DB2
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, Difference between MS SQL Server and IBM DB2, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[0.00596261397, 0.00949348416, -0.0227000769, 0.0366299264, 0.00859937631, -0.0295681879, 0.0090264976, -0.0046584704, -0.0327801406, 0.0237821173, 0.0335318744, -0.0297732055, 0.0336685516, -0.0167773273, -0.0525757894, 0.0346025229, -0.00138743257, 0.0344430655, -0.0231556725, 0.00248015136, 0.00859368127, -0.00662322855, -0.00616763253, -0.00149207725, -0.0363793485, 0.0100914538, 0.0153649785, -0.010894442, -0.0501611307, 0.00013463221, 0.0208321325, -0.0226089563, 0.00500301458, -0.0254678223, -0.0246705301, 0.00083715783, -0.069934, -0.0231670626, 0.0260145385, 0.000884853071, 0.00146075501, 0.0271079689, 0.00892398879, -0.000338849612, -0.0103875911, 0.0033657162, -0.0591363758, -0.0179277062, -0.0125630628, 0.00317208795, -0.0182238445, -0.0193172749, 0.0210941, 0.0637379, 0.0214699674, 0.0131667275, 0.0100458944, 0.0357187353, 0.00806405116, -0.0203765351, 0.00861646142, -0.0388167873, 0.00847408734, -0.0349897817, 0.00823489949, 0.0336457714, -0.00358497188, 0.00821781438, -0.00215696287, -0.0223811585, -0.0198981594, 0.0232923515, 0.0163103398, 0.0120846871, -0.0181213357, -0.000666309323, -0.0223925486, -0.00206726743, 0.021925563, 0.00520518562, -0.00469263969, 0.0112646138, -0.036197111, -0.00124078756, 0.0055839, -0.00849117246, -0.0281330589, -0.0384978727, 0.0381106138, 0.00368178613, 0.0300465636, -0.0268118307, 0.0305705, -0.0269257296, 0.00723828329, -0.0398874395, 0.0171759725, 0.00734648714, -0.0135995438, 0.0375411175, 0.0254450422, 0.011799939, 0.0243060533, -0.0210941, 0.00841144286, -0.0354453772, -0.0148410434, 0.051254563, -0.00486633601, 0.0326434597, -0.0310944337, 0.0152396895, -0.0208435226, 0.0589541346, -0.0225861762, -0.0244199522, 0.0230303835, -0.0403202549, -0.0223811585, -0.021208, -0.0319600664, -0.0208093524, -0.0398874395, 0.00795015227, -0.0184630323, 0.0341469273, 0.00609359797, -0.0431449525, 0.00576329092, 0.00683394168, -0.0159116946, 0.019203376, -0.0238276757, -0.0244882908, -0.0210827105, 0.026857391, 0.0377005786, 0.0518012792, 0.0306388382, 0.00475813169, -0.0105926096, -0.0387484506, -0.00566078164, 0.0159230847, 0.0431449525, 0.0106837284, -0.00438511232, 0.0436005481, 0.0152852498, -0.0060822079, -0.0248299874, -0.064102374, 0.0402519144, 0.00405195775, -0.00367039605, 0.0296365265, 0.00846839231, -0.00293005258, -0.031527251, -0.0218800027, -0.0157408454, -0.0327801406, 0.0233948603, -0.0243516117, -0.000331908872, 0.0319372863, -0.0028275433, 0.0136337131, -0.02931761, 0.0143284975, -0.0135084242, 0.032415662, 0.00624736166, -0.0131895076, 0.0056550866, 0.0168342758, -0.0091574816, -0.0552182496, -0.0112361386, -0.0246021897, -0.0109456964, -0.0233720802, -0.0363793485, -0.0320739672, 0.0212307777, 0.0270624086, 0.0183605235, 0.0215952564, -0.00815517, 0.0161622725, -0.0124263838, -0.00869619101, 0.0575873479, -0.0152624696, 0.02801916, 0.00888412446, -0.0451951325, 0.0473819971, 0.000249866, -0.0744444057, 0.0175404493, -0.0156269465, 0.00820073, 0.0304110404, 0.0415959246, -0.00570349395, -0.00244740536, 0.00338280108, 0.0340102501, 0.0341697074, -0.00769957434, 0.0387940072, 0.00467840256, 0.0099775549, 0.0348303206, -0.00140736485, 0.0277230237, -0.00927138049, -0.00586010516, -0.0146360248, 0.0125972321, -0.0234176405, 0.0273357667, 0.0021199456, -0.0631911829, -0.0577240251, -0.0127794705, -0.0385206528, -0.0157066751, -0.0145221259, 0.0418692827, 0.021663595, -0.017517671, -0.0120960763, -0.0163331199, 0.000774513406, 0.0663347915, 0.00128990645, -0.0784536526, 0.0196248032, 0.0367666073, 0.00933402497, 0.0119935675, 0.00283893314, -0.00748316618, 0.00300978171, 0.0482931882, 0.00534471171, -0.00200462295, -0.00309520611, -0.0108488826, -0.0440105833, -0.0177112985, 0.0383839719, 0.0191464256, -0.0130528286, 0.0354225971, 0.033736892, 0.01115641, -0.0335546546, -0.00883286912, -0.00316069811, 0.0124036036, 0.0431449525, 0.0412770063, 0.054762654, 0.0182238445, -0.00624736166, 0.00536749186, 0.0239871349, 0.0238276757, -0.0267434921, 0.00964155234, 0.0181327257, -0.00728953769, 0.00864493661, -0.0521201938, 0.0130642187, 0.0412086695, 0.0120846871, 0.00775082875, -0.00242747297, 0.0461291075, -0.00589427445, 0.0177682489, -0.00703326473, -0.0157864057, 0.0141690392, -0.0108261025, -0.00236198097, -0.0264245737, 0.0109969508, 0.0197956506, 0.03735888, 0.004604368, -0.00419433182, -0.00816656, 0.0203081965, 0.0065662791, 0.025809519, -0.0074717761, -0.0167887174, 0.0186338816, -0.0483387485, -0.0200348385, -0.0286569949, -0.0011646176, -0.0145904655, 0.0155927772, -0.0100515895, -0.0305932779, -0.0283836368, -0.0338507891, -0.00478660641, 0.0412770063, 0.0518468358, -0.0137476129, -0.0332585163, -0.0135198142, 0.0128592, 0.0244882908, 0.0328712575, -0.0701162443, 0.0472908765, 0.0615510345, -0.0434866473, -0.036834944, 0.000378002384, -0.0293631684, 0.011799939, -0.0323473252, -0.0331446156, -0.0183263533, 0.00157180661, 0.0213902369, -0.0289531332, 0.0253994837, -0.00165153586, -0.0306388382, 0.037085522, -0.000775937107, 0.0405708328, -0.0323701, -0.0137134427, 0.0145449061, 0.023087332, -0.0234631989, -0.00467840256, 0.0223356, -0.025946198, 0.000667021202, 0.00531338947, -0.00290157762, 0.00392097421, 0.00833740924, -0.0122897048, -0.0150574511, -0.0411858894, -0.0343063883, 0.0427349135, 0.0129047595, -0.0206612833, -0.0257867388, 0.0136564933, -0.0176657382, -0.0592274927, 0.012973099, 0.00933972, 0.033736892, 0.0115379719, -0.0286569949, 0.0366754867, 0.0439194664, -0.0101085389, -0.00430538319, -0.0249894466, -0.0136564933, 0.0180757754, 0.0223583784, 0.0150346719, 0.000366968423, 0.0128478101, -0.0410492085, 0.0497055352, 0.00380138, -0.0598653294, 0.02931761, -0.00603664853, -0.0373133197, 0.0232581813, 0.0252400246, 0.0294998474, -0.0096301632, -0.0175062809, -0.00462714816, 0.00115678704, 0.0146815842, 0.00314930803, 0.0103648119, -0.0338507891, 0.057222873, 0.0396596417, -0.0514823608, 0.0177226886, -0.0390673652, -0.0122441454, -0.00690228119, 0.00881578494, 0.0166862067, 0.0233948603, -0.0752189159, -0.0541703776, -0.0208890811, 0.00824629, 0.00585441, 0.0110140359, -0.0021526916, 0.031891726, -0.00528491475, 0.0140779195, -0.00380138, 0.000530342339, -0.00875883549, 0.00738635194, 0.0181213357, 0.046835281, 0.0191008672, -0.0120505169, 0.00549278036, 0.0229734331, 0.0124036036, 0.00562376436, -0.00734648714, 0.0156269465, 0.00589996949, -0.0328940377, 0.0265840329, 0.0016600783, -0.00775652379, -0.00804127101, 0.00368748093, 0.0415959246, 0.0468808413, 0.00618471717, -0.0591819361, 0.0357642956, 0.00528776227, 0.0102281328, 0.00736926682, 0.00326035963, 0.00201601279, 0.00737496186, 0.0135084242, 0.0208321325, 0.00211282703, -0.00694214553, 0.00672573736, -0.00607081829, 0.0422337577, 0.0112076644, 0.0211054906, 0.0231670626, 0.0167887174, -0.0147499237, 0.0205018241, 0.0347847641, 0.002269438, -0.0265156943, -0.00967002753, -0.00364192133, 0.0136109339, -0.0113329533, 0.0219483431, 0.0259917583, -0.0108431876, 0.0165039692, 0.0663803518, 0.00518810051, 0.00607651332, 0.01115641, 0.028269738, 0.0521201938, 0.00866202079, -0.00012564486, 0.00832032412, 0.0285886563, 0.033212956, -0.00400070334, -0.036197111, 0.00162590866, 0.0101882676, 0.0101654883, -0.0201715175, -0.0297504254, 0.0022637432, -0.0105356602, 0.00364192133, 0.0283380784, -0.00786472764, 0.0222786497, -0.0268346108, 0.00996047, -0.0297732055, 0.021800274, -0.021663595, 0.00900371838, 0.00454741856, 0.0245338511, -0.00761984475, 0.0117429895, 0.00762554, -0.00931124575, -0.0159344748, 0.0279736016, -0.0414364673, 0.00744330138, 0.00195621583, -0.00119309232, -0.0139868008, 0.0127908606, 0.0302515812, 0.0132122869, -0.0154447081, 0.00209004711, 0.0139070712, -0.0548537709, 0.0463341251, -0.0172443129, -0.0134514747, -0.0118568884, 0.0101996576, 0.0240782537, 0.0166748185, -0.0328940377, -0.0157750156, 0.0161622725, 0.032165084, 0.00637834566, 0.00510552386, 0.0427576937, -0.0278369226, 0.00677129719, -0.0253767036, -0.00132834737, -0.00394090638, 0.0111791892, 0.00495460769, -0.00731801242, -0.0248983279, 0.00480084401, 0.0256272815, 0.0178479776, 0.0168798361, -0.0144537864, 0.00802988186, 0.00953904353, -0.00580030773, 0.00175974, 0.00129916077, -0.00586579973, 0.0236454383, 0.0346025229, 0.0132008968, 0.0161850508, 0.0213788468, -0.0191008672, -0.0093625, 0.0233493, -0.0144651765, -0.0162306111, -0.0169140063, -0.0099775549, 0.0100231143, -0.0302515812, -0.00794445723, 0.00436802767, -0.00191919855, -0.0081210006, 0.0314133503, 0.00755720027, -0.00685102632, 0.00863354653, 0.0193742253, 0.0229506548, 0.0201829076, -0.00523650786, -0.00873036, 6.92737449e-05, 0.00302686659, -0.00201458903, 0.0432132892, 0.0230645537, 0.0252400246, 0.0221647508, -0.0196931418, 0.0177568588, 0.00831462909, 0.0079900166, 0.0079387622, -0.000523223658, -0.00153906061, 0.00811530557, 0.0164925791, -0.00102437939, 0.0114867166, 0.000940378814, -0.0133147966, 0.0124149937, -0.00394375389, 0.0360604338, -0.00978962146, 0.00494891265, 0.0306388382, 0.00488342065, -0.018280793, 0.00580885028, 0.0436688885, 0.0110937655, -0.0166634284, -0.00784194842, 0.022050852, 0.00429399312, -0.0056807138, -0.00150204345, -0.0125630628, 0.0213788468, 0.00772235403, -0.0434410907, -0.00658905879, -0.0257639606, -0.00860507134, 1.27357798e-05, 0.00251289736, -0.00538172899, -0.0249666665, 0.000571630721, 0.00549562788, -0.0385662094, -0.00595691893, -0.000785191427, -0.00177967234, 0.00918026175, 0.033099059, 0.0690228119, -0.00356219197, 0.0180074368, 0.00545576354, 0.0401835777, 0.00972128194, 0.0108773569, -0.0247160885, 0.0172670931, 0.0102907773, -0.0151144005, -0.0333040766, -0.00923151616, -0.01867944, -0.0242377128, 0.0322562046, 0.0344430655, -0.0123580443, -0.00612207269, 0.0166520383, 0.00147214497, -0.0263790153, -0.00520803314, -0.00516816834, 0.048520986, 0.00700479, 0.00808113627, -0.0227342453, -0.0276091248, -0.00722689321, 0.0155586069, 0.0470175184, -0.0181441158, -0.0126883518, 0.0126086222, -0.00787042268, -0.00761984475, -0.0249438863, 0.00336856372, 0.0283152983, -0.0287025552, -0.00885564927, 0.00446768943, 0.00482647121, -0.0132692363, -0.0132578472, -0.0213105083, -0.0055839, -0.0148638226, -0.00457019825, 0.0211054906, 0.0185883213, -0.0123694343, -0.0196703617, 0.00577468053, -0.00900371838, -0.0129047595, 0.0564939156, -0.0100572845, 0.00687380647, -0.00851395261, -0.0253311433, 0.0161622725, -0.0070845196, 0.0063441759, 0.00111051556, 0.0092884656, -0.00972697698, -0.00453318143, 0.00933402497, -0.0411631092, -0.0108659668, 0.0114582423, 0.0105470503, -0.0114753274, -0.0015817727, 0.0268801711, 0.00625875173, -0.00925429631, 0.0065662791, 0.0115721412, 0.013098388, 0.0169367846, -0.00165580714, 0.0314361304, 0.00322903739, -0.00346822548, -0.00615624245, 0.00584871508, -0.0194767341, -0.0282241795, -0.00869049598, -0.0235315394, 0.024397172, 0.00966433249, 0.034511406, 0.0235087592, 0.00910053216, 0.015569997, -0.0293859486, 0.040229138, -0.000644597283, 0.0426210165, 0.0279280413, -0.0113215633, 0.00722689321, 0.0287708938, 0.0387028903, 0.00782486331, 0.0165836979, -0.0302515812, 0.0249666665, -0.0197956506, -0.0169253945, -0.00162163738, -0.00571773108, 0.0171418041, 0.00645237975, 0.0489310212, -0.000693360344, 0.0125744529, -0.00797862653, -0.00334578403, -0.0343063883, -0.0221761409, 0.00192774099, 0.024123814, 0.028793674, 0.0492499396, 0.0290898122, -0.0110083409, 0.0279052611, -0.0039038891, -0.00397222862, -0.0323017649, -0.021788884, 0.044488959, 0.0302288011, -0.00306103635, -0.00242889673, 0.00779638859, -0.0231328923, -0.0253767036, 0.01517135, 0.0046584704, 0.0277913623, -0.00230503152, 0.0216408148, 0.0243516117, 0.0134514747, 0.0106894234, 0.0143740568, 0.000812954328, -0.00934541505, -0.0393407233, -0.050206691, -0.0193742253, 0.0110539, -0.0101427082, 0.00308951107, -0.0172443129, 0.0286114365, -0.0407986306, -0.00233208248, -0.0038583295, -0.00981240161, 0.00334578403, -0.00261113513, 0.00168997678, -0.0074205217, 0.0589996949, 0.0116006155, 0.0275863446, -0.0148638226, 0.0179277062, 0.0318233892, 0.00903788768, 0.00745469145, -0.00740343658, 0.0245794095, -0.0104445405, 0.00394944893, 0.0369260646, 0.0079900166, 0.00567786628, 0.0285658762, -0.0136564933, 0.00662322855, -0.0374955609, -0.00179248594, -0.0317322686, -0.0574962273, -0.00563515443, 0.00184231671, 0.0294087287, 0.00370456581, -0.029067032, 0.00294713723, -0.00492328545, -0.00664600823, -0.00128136401, 0.024784429, -0.00887842942, 0.0279736016, -0.0289759133, -0.00383554981, 0.0246249698, 0.0284519773, -0.0257639606, -0.0261284374, 0.0443067215, -0.00768818427, 0.0177454688, 0.0172329228, -0.011287394, -0.00799571164, -0.0110595953, 0.0392723829, 0.0257639606, 0.00997186, 0.0293403901, 0.0238960162, 0.0224381089, 0.0139298514, 0.0168228857, 0.0365160294, -0.0355137177, 0.0114981066, -0.0198412109, 0.0210827105, 0.0243060533, -0.00722689321, 0.0140209701, -0.00637265062, 0.00703326473, 0.0161622725, -0.0279508214, 0.018417472, 0.00910053216, -0.0127680814, -0.00420287391, 0.0341924876, 0.056175, -0.0441472642, -0.0574962273, -0.00944223, 0.00683963671, 0.0163559, 0.0189186279, -0.0046584704, -0.0168114956, 0.00158746773, -0.0367438272, -0.00013917037, 0.0138387317, -0.00419433182, -0.0108659668, -9.19200756e-05, 0.00877022464, -0.00168143434, -0.033212956, 0.027244648, -0.0392268263, 0.0193742253, -0.0176657382, 0.00554118771, -0.0200462285, -0.0113443434, 0.0380650535, -0.00893537886, 0.0111108497, -0.00870188605, 0.0309121963, -0.00498593, -0.024397172, -0.0137020526, 0.00270937313, 0.0138842911, 0.0423476584, 0.0153421992, 0.0301376823, 0.025422262, -0.0135539845, -0.00125858421, 0.0289531332, 0.0168228857, 0.00339419092, -0.00829184894, -0.00742621673, -0.0112703089, 0.00634987094, 0.000374798983, 0.0156155564, 0.00210428447, 0.00560952723, -0.0386117697, -0.0115721412, -0.0446939766, 0.0201942977, 0.0142259886, -0.000430324755, 0.00387541438, 0.0179163162, -0.019590633, 0.00749455579, 0.00309805362, -0.0112190545, -0.00995477475, 0.0329851583, -0.010763458, -0.0298643243, 0.00688519608, -0.0441928208, -0.0146360248, -0.0109400013, -0.0431221724, 0.0243060533, -0.00530484738, 0.00353656476, 0.0348531, 0.0272674263, 0.0170962438, 0.0100515895, 0.00355364964, -0.000781632087, -0.0201829076, 0.00938527938, 0.0108431876, 0.00749455579, 0.032939598, 0.00740913162, -0.011799939, -0.0179504864, 0.0182124544, 0.0110140359, -0.00815517, -0.0157750156, 0.00847978238, 0.00892968383, -0.0168114956, 0.02801916, 0.0398874395, -0.0084171379, 0.0116177006, -0.0271079689, -0.0310944337, 0.0271763075, -0.00978962146, 0.00201316527, -0.000665241503, 0.0131781176, -0.0286114365, 0.0183035731, 0.00731801242, -0.0118568884, -0.015046061, -0.00381846493, -0.00552979764, -0.0410264283, -0.00648654951, 0.0104787108, 0.00438226527, 0.0022566244, -0.0139640206, 0.00104217615, -0.02567284, 0.011799939, -0.00214272551, -0.0286797751, -0.0182466246, -0.0209460314, 0.00125716056, 0.0211510491, 0.00969850179, -0.00188075763, 0.00680546695, -0.00914039649, -0.0136564933, 0.000402917794, -0.000875598751, -0.0230417736, 0.00668017799, 0.0156725068, 0.0163672902, -0.0164128505, -0.00261255889, -0.00421426399, -0.00382985477, 0.00260544033, -0.00108417636, 0.0204448756, 0.00960738305, -0.00512260897, 0.0064352951, -0.017380992, 0.0265612528, -0.0132122869, -0.000315179961, -0.00781916827, 0.0372905433, 0.0105356602, 0.00768248923, -0.0473819971, -0.00570634147, 0.00904358272, 0.00684533175, 0.00456165615, 0.00145577197, 0.00126356736, -0.00744330138, 0.00383554981, 0.00956751872, 0.00176685862, -0.0241693743, -0.000747462385, -0.0122555355, 0.0294315089, 0.00388395693, -0.00564369699, -0.0103306416, 0.0193058848, -0.0140437502, 0.00437657, -0.0180416051, 0.0220280718, -0.00826337468, -0.0218116641, 0.00579461316, 0.00165153586, -0.0137362229, -0.0397735387, -0.0279508214, 0.00224096328, -0.0239643548, 0.0222103111, -0.0210257601, -0.0151144005, -0.0127794705, -0.0132920165, 0.0274041053, 0.0257411804, -0.00882717501, -0.0045787408, -0.0114126829, -0.0173354317, -0.019453954, -0.0430082716, -0.00850825757, 0.00619610725, 0.00293289986, -0.0022637432, 0.0143512776, 0.00634987094, -0.00906066783, 0.0522113144, -0.0213446785, -0.0204220954, -0.00262252521, -0.0251489058, -0.0111962743, -0.0136564933, 0.0028346621, 0.0128478101, -0.00377575285, 0.0110595953, 0.00851964764, -0.0115778362, 0.00370741333, -0.00380422757, 0.011799939, 0.013235067, 0.0157977957, 0.0171076339, -0.00247872761, -0.0319145061, 0.0230076034, 0.00662322855, 0.0166520383, 0.00632139621, 0.0161622725, 0.00677699223, -0.00275208522, 0.00287879794, -0.000230467558, -0.00906636287, 0.0136792734, 0.000683038204, -0.00107136276, -0.000138102565, 0.00480369153, 0.0156269465, -0.0177454688, -0.00528776227, 0.00471542, -0.026470134, 0.00111834612, -0.0114924116, 0.0412086695, -0.0121302465, 0.0225520078, 0.0183491334, -0.0179163162, 0.00447338447, -0.0158319641, 0.00447338447, -0.000221391238, 0.0124149937, -0.0131553374, -0.00326890219, 0.00346253044, 0.0203651469, 0.00552695, 0.000169068866, 0.00208577584, -0.00329737691, -0.00058515626, 0.0353998169, -0.00521942275, 0.0213105083, -0.00596830901, 0.00126641477, -0.0165836979, -0.00263533881, 0.0121188564, -0.00854242686, 0.0198753811, 0.0232354011, 0.00784764253, 0.000649936323, 0.00135326281, 0.00940236449, 0.0221533608, 0.0221078, 0.0233265199, 0.00273927161, -0.0254450422, -0.0101711834, -0.00888412446, -0.00132407621, -0.0179390963, -0.00118810928, -0.00232496392, 0.0102850823, 0.0353770368, -0.0195109025, -0.00846839231, -0.0147271445, -0.00431677327, -0.00326890219, 0.00577752804, 0.0379967168, 0.0287025552, 0.00752303051, 0.0113955978, -0.00012644571, 0.00950487424, -0.0137590021, -0.0384750925, 0.0395457409, -0.0200576186, 0.0226203464, 0.0039295163, -0.0115778362, -0.0125288926, 0.0302060228, 0.00252428721, 0.0167545471, 0.0135653745, 0.0465163626, -0.0303199217, 0.012973099, 0.00307812123, 0.0178479776, -0.0141690392, -0.024784429, 0.00141661917, 0.00999464, -0.012198586, -0.00980670657, 0.000184196077, -0.0145449061, 0.0193514451, 0.00200035167, -0.0132464571, -0.0262423363, -0.0163900703, -0.0099775549, 0.0229050945, 0.003502395, 0.00541305123, -0.00361629413, -0.00149634841, -0.0142259886, 0.0144765666, -0.0012265502, 0.0142829381, 0.00197045319, 0.0177226886, -0.00814947579, 0.0109627815, -0.00499732, -0.0197045319, -0.00843991805, -0.00730662281, -0.0103021674, -0.00423134863, -0.00243032048, 0.00306957867, 0.0361743309, -0.0353770368, 0.000421782344, 0.00791598205, 0.0239643548, 0.0209802017, 0.0242832731, -0.0241010338, 0.0202968065, 0.0147385336, -0.00534471171, 0.00355934468, -0.0144651765, 0.000153318775, -0.0322334245, -0.00359351421, 0.00732370745, 0.00510552386, -0.0111848842, 0.0126655716, 0.000353976822, 0.00855951197, -0.0100117242, 0.00619610725, 0.00147499237, 0.00758567499, -0.0116233956, -0.00988074, 0.023087332, 0.00673712743, 0.00600247877, -0.0167659372, -0.00316639291, 0.0188958477, 0.0153535884, 0.0121871959, 0.00433101039, 0.0180529952, 0.00268516946, -0.0302743614, 0.0131325582, 0.0176999085, 0.0272218678, -0.0099775549, -0.0154105388, 0.0276319031, -0.00744899642, 0.00244313409, 0.0223469883, -0.0205701645, -0.00583732501, 0.000991633395, -0.046835281, 0.0233948603, -0.0247616488, -0.000240967624, -0.00337425875, 4.72058091e-05, 0.00746608106, -0.0209574215, -0.0216977652, -0.0493866168, -0.00697631529, -0.0205018241, 0.00617902214, 0.00201743655, -0.000931836432, -0.00819503516, -0.00403772062, -0.0066004484, 0.00689658616, -0.0200462285, -0.00847408734, 0.0196134131, -0.000473036896, 0.0177340787, -0.0123694343, 0.00265954225, 0.0127794705, -0.00539596658, 0.00277913618, -0.00599108869, 0.0057205786, -0.0432816297, -0.00521657523, 0.030479379, -0.0102053527, 0.0073806569, -0.0175062809, -0.00681685656, -0.00744330138, -9.97172629e-06, 0.0133945253, -0.00622458197, -0.00547569571, 0.0132122869, -0.0239871349, -0.000139259355, 0.00371880317, -0.0246933084, 0.0148410434, -0.0121302465, 0.00207153847, 0.0265612528, -0.00496030273, -0.0284975357, 0.00351093756, 0.011031121, 0.0183149632, 0.00795015227, 0.0405024923, 0.0135312043, -0.0111336298, 0.000797293207, -0.0159800332, 0.0212193895, -0.00296991714, 0.016868446, 0.0119707873, 0.0154447081, -0.0236454383, -0.0150916213, 0.0180985555, 0.000185619821, -0.0200462285, -0.00617902214, -0.0238276757, 0.0186111014, 0.0229050945, -0.0287253354, 0.0197387021, -0.00379283749, 0.00301547674, 0.0033002242, -0.00861646142, -0.00482931873, 0.0285658762, -0.00513115106, -0.00716424873, -0.0128250308, -0.0287708938, -0.00470118225, 0.0111848842, 0.000664885563, -0.00747747114, -0.0164925791, -0.0041003651, -0.0155586069, -0.00779069355, 0.00299839186, -0.00142160221, -0.00623597158, -0.0137703922, -0.0152624696, 0.00365900621, 0.00479799649, 0.0272674263, -0.0305705, 0.0160255935, -0.00883286912, -0.0227570254, -0.0119480081, 0.00351378508, -0.0181099456, -0.00314076571, 0.00408043247, -0.00202028407, 0.00115251576, 0.00769957434, 0.0159344748, -0.00398077117, -0.00167716318, 0.00258408417, 0.0120505169, -0.0115094967, -0.0131325582, -0.00658336375, -0.00600247877, -0.00645237975, 0.046425242, 0.0404797159, -0.00347961532, 0.0202968065, 0.00902080256, -0.0148638226, -0.00328598684, -0.0133717461, 0.00992060546, -0.0275635645, 0.0240099151, 0.00933972, -0.022574788, 0.00439650239, 0.0275635645, -0.0028474757, -0.00808683131, 0.00707312953, -0.00495176, -0.00179533346, 0.0198184308, -0.00734648714, -0.00840574782, -0.0126086222, 0.00187933398, 0.00586579973, 0.0272218678, -0.0197614804, -0.000395443174, 0.00419433182, -0.0209915899, 0.00697062025, -0.0142145986, 0.00567501923, -0.0125744529, -0.0203537568, -0.00376721029, -0.00274211913, -0.0139298514, 0.0319600664, 0.00266238977, -0.0362882316, 0.0202284679, 0.0324612223, 0.0198184308, 0.00537603395, -0.0251261257, -0.00418863678, -0.0018394693, 0.0111507149, 0.0171418041, -0.00609929301, 0.00329168187, -0.016868446, -0.0103591168, -0.0147271445, 0.0136792734, -0.0051767109, 0.0185769312, -0.00265954225, 0.00280049234, -0.0206612833, 0.00397222862, -0.0318233892, -0.0171076339, -0.00765970955, 0.00516816834, -0.0106894234, 0.0109172221, 0.00219255616, 0.000155276415, 0.0139070712, -0.00687950104, -0.0139526306, -0.023736557, -0.00849117246, -0.000975972274, -0.00974406209, 0.00398361869, 0.0160255935, 0.0134286955, -0.0271990877, 0.0327801406, 0.00554118771, -0.00318347779, 0.0067314324, 0.00830893405, -0.017517671, 0.0193514451, -0.00151485705, -0.0177340787, -0.0155927772, 0.00499162497, 0.0319828466, 0.00557251, 0.0220964104, -0.0307527371, 0.0246933084, -0.019328665, 0.0102395229, 0.00896385312, -0.0341924876, -0.0027620513, 0.0243516117, 0.0160255935, 0.00504857441, 0.0201259572, -0.00212279311, -0.00554688275, -0.0254678223, -0.0122213652, -0.0119593982, -0.01634451, 0.0153535884, -0.000731801265, 0.0183491334, 0.00921443105, -0.0373816602, 0.0287253354, -0.0240326952, -0.00242462545, -0.0317094885, -0.000971701054, 0.0219597332, -0.0171759725, 0.0211624391, -0.0134286955, 0.00152339949, -0.0269485097, -0.0124036036, -0.0172784831, 0.0205473844, 0.0041259923, 0.00154617929, 0.0255133826, -0.00105570164, 0.017517671, 0.0001471789, -0.0091062272, 0.000846412149, 0.00212136935, 0.0127794705, -0.0057205786, 0.0120277377, 0.0118796686, 0.0149549423, -0.0355137177, 0.00414877199, -0.00232069264, -0.0187477805, 0.0253311433, 0.0332812965, 0.0649224445, -0.0141690392, 0.0139070712, -0.00589427445, 0.0150574511, -0.0100401994, -0.0157977957, -0.0259234179, -0.0323928818, -0.0153991487, -0.0281330589, -0.010632474, 0.00392097421, -0.00162306114, 0.00191635115, -0.0149549423, 0.00431962078, -0.00496315025, 0.0176999085, 0.0141007, -0.0114525473, -0.014271548, -0.00804696605, -0.0114810215, 0.00450755423, -0.0122783147, -0.00536749186, -0.0142943282, -0.0157636255, 0.0104388455, -0.0160028134, 0.00447623199, -0.00294998474, 0.00153621309, 0.00912900735, 0.0222444795, -0.0211852193, -0.0104388455, 0.00596261397, -0.0107577629, 0.0153991487, 0.00575474836, 0.0060081738, 0.00931694079, 0.012973099, -0.00650363462, 0.0142145986, -0.00234489632, 0.0192261562, -0.0179960467, -0.0338507891, -0.0073407921, -0.0187705588, 0.0123694343, -0.00669726264, -0.00863924157, -0.00133973733, -0.0204334855, -0.00423704367, 0.0139298514, -0.013360356, 0.00574905332, 0.00158746773, -0.00937958527, 0.015945863, 0.00886134431, 0.0162647814, -0.00535610178, 0.0122099761, -0.00375297293, 0.0248072073, 0.0207068436, 0.0158091858, -0.00966433249, -0.0100117242, 0.00531623699, 0.0136451032, -0.00845700316, 0.00849117246, -0.00479799649, -0.0141007, -0.0130642187, -0.00386687205, -0.018804729, -0.00459582591, -0.00371595565, -0.000499732, -0.000373019313, -0.0130300485, -0.00210713199, -0.00403772062, -0.02699407, 0.0100117242, -0.00220109872, 0.00710160425, -0.00014308565, 0.00478375936, -0.00612207269, -0.0022836756, 0.0231898427, 0.0167887174, 0.0274952259, -0.00537033891, 0.00377860013, 0.0100743687, 0.00867341086, -0.00501155714, 0.0107463729, 0.0110026458, 0.0046186056, 0.00139882241, 0.0306843985, 0.0239871349, 0.00915178657, -0.000906921, -0.01764296, -0.0282241795, -0.00451894384, 0.000912616, -0.021139659, -0.00248299888, -0.00670865271, 0.00259689777, -0.0291125905, -0.0183719136, -0.00206869119, 0.0143626677, 0.0106210839, -0.0212421678, -0.00611068262, -0.0180871654, 0.0391357057, -0.00911761727, -0.00176828238, 0.0108374925, 0.0110823754, 0.00716994377, 0.0119480081, 0.0231442824, -0.0134059153, 0.0247388687, 0.0356048346, 0.00623027701, -0.0157066751, -0.0137134427, 0.00367324357, -0.00918595679, -0.00270225434, 0.0333040766, -0.00846269727, 0.0197956506, -0.0213560667, -0.0306388382, -0.017380992, 0.0145904655, -0.0180302169, 0.0144423964, 0.00711868936, -0.00901510846, 0.0207410119, -0.00278767874, 0.00916887168, 0.00949348416, 0.0116404807, -0.0125744529, 0.0280875, -0.0103648119, -0.00631000614, 0.0215838663, 0.0290214717, -0.0376550183, -0.00432531536, 0.0106723392, 0.00338849612, -0.0128933694, -0.0117429895, 0.0185883213, 0.00128065224, 0.0226089563, 0.0109513914, 0.000575546, 0.00161594246, -0.00918595679, -0.0191919859, 0.00881578494, 5.70385e-05, -0.0184288621, -0.0144196171, 0.0044221296, -0.0202512462, -0.0040747379, 0.00696492568, 0.0150574511, -0.0213218983, -0.017392382, -0.0168342758, -0.00906636287, 0.0135198142, 0.00964724738, 0.0122897048, -0.0133147966, -0.000534969498, 0.00111763424, 0.0136906635, 0.0220850222, -0.00247018505, -0.00476667425, 0.00493182801, 0.00980670657, -0.000257518579, -0.0534869842, -0.0175518394, 0.0138729019, 0.00461575808, -0.00339703844, 0.0390901454, -0.00870758, 0.01283642, -0.00687950104, -0.0170620736, -0.000536393258, 0.00203167391, 0.0182010643, -0.00625305669, -0.000385477033, -0.0206840634, -0.00127282168, 0.00128278777, -0.00381846493, 0.00589996949, 0.00216265768, -0.0017284177, 0.00546715315, 0.0100572845, 0.00611068262, 0.0186224915, 0.00290442514, -0.012061907, 0.0243516117, -0.0214699674, -0.00403772062, 0.00335147884, -0.00206299615, -0.00718133384, -0.0129047595, 0.0022181836, 0.0179277062, -0.00359351421, 0.0170392953, -1.91314775e-05, 0.0231784526, -0.00343405572, 0.0226886868, -0.000807971228, 0.0362882316, -0.01765435, 0.0235543195, -0.00468694512, 0.0028346621, 0.0097155869, -0.0101256231, -0.0121758059, 0.00469548721, -0.0148979928, -0.0240099151, -0.0280875, -0.019328665, 0.0323017649, -0.00100729452, 0.000983802835, 0.00492613297, -0.0153877586, 0.00615624245, -0.00866771583, -0.00649224455, -0.00761984475, -0.00753442058, -0.00424273871, -0.00982379075, 0.0236909986, -0.0336685516, 0.0029841545, -0.0029585273, -0.0215496961, -0.0156269465, 0.0293859486, -0.00903219264, -0.00552979764, -0.0247388687, 0.0235315394, 0.00212136935, -0.0207410119, 0.00875883549, 0.0120960763, 0.0140665295, 0.00255845697, -0.00900941342, -0.0251489058, 0.0266751517, 0.00823489949, 0.00101156568, 0.00443636719, 0.0293403901, 0.0177112985, 0.00213987799, -0.00676560216, 0.0100686736, 0.00493182801, 0.0123124849, -0.00888412446, 0.0183035731, 0.0118341092, -0.00655488903, 0.00106424408, 0.00860507134, 0.0215496961, 0.0207182337, 0.0104217613, 0.00260544033, 0.00713007897, -0.0217547137, 0.00710729929, -0.000368748093, -0.00837157853, -0.0155813871, 0.00586010516, -0.00149207725, -0.001151092, -0.00657197367, 0.00655488903, 0.00933972, 0.000358603982, -0.0196475815, 0.00615054742, -0.0195109025, 0.0113215633, -0.00122014328, 0.00380707509, -0.0217547137, -0.0035422598, -0.0351948, -0.0145790754, 0.00202455511, 0.0074717761, 0.0082861539, -0.00894676894, 0.00254279585, -0.00955612864, -0.0195564628, 0.000203416537, -0.0107292887, -0.0193058848, 0.0190780871, -0.0102167428, -0.00776221883, 0.0133147966, 0.0175860096, -0.00565793412, 0.0101427082, -0.00369317597, 0.0178024173, 0.0120960763, 0.0210257601, 0.0168456659, 0.00581454532, -0.00275066146, 0.00343405572, -0.00239899824, -0.00290157762, 0.0177112985, -0.0122555355, -0.0253311433, -0.000549918739, 0.0185085926, -0.0276091248, 0.0112816989, -0.0238504559, -0.0110709853, 0.0143854469, -0.0240099151, -0.0361515507, 0.00796154235, -0.00257696537, 0.00984087586, -0.0125061134, 0.00769387931, -0.0018295031, 0.0147271445, -0.00315785059, 0.000644241343, -0.00933402497, -0.00069514, -0.00826907, -0.0113044782, 0.00408897502, -0.00892968383, -0.00731801242, -0.025422262, 0.0170506835, -0.00158604397, 0.00492328545, -0.0133375758, 0.0189641882, -0.00108488824, -0.0184516422, 0.00453602895, 0.00296706962, 0.0120163476, 0.00133973733, 0.0153991487, 0.000189179162, -0.0228709243, -0.00583732501, -0.0189527981, 0.00961877313, -0.0270851888, 0.00244882912, 0.0213674568, 0.00723828329, -0.00390673662, 0.0164925791, 0.018804729, -0.0108317975, 0.00276489882, 0.000672716124, -0.014396837, 0.00272645801, 0.021538306, -0.0173468217, 0.00161594246, -0.00781347323, 0.000531410158, 0.00566932419, -0.00372734573, -0.00937958527, -0.00154048437, 0.00366470125, 0.0132692363, 0.000391527894, -0.00169709546, -0.0102110477, -0.0139981909, -0.00276632258, 0.0324612223, 0.0204448756, 0.0138273416, -0.00380992237, 0.013235067, -0.0192375463, 0.0125630628, -0.00637265062, -0.0100458944, 0.0196817517, 0.0133034065, 0.0307982974, 0.00591135956, -0.0225292277, -0.00927138049, -0.0113101732, 0.0164925791, 0.00463569025, 0.0115038017, 0.00669726264, -0.0105185751, 0.0123010948, -0.0103306416, -0.0101996576, 0.0119935675, -0.0127566913, 0.022062242, -0.021925563, -0.00542728882, -0.00296706962, 0.0155813871, -0.00935680512, 0.00251432112, -0.00539311906, 0.0312538929, 0.00904927775, 0.00744899642, 0.00966433249, -0.00295567978, 0.0065662791, -0.0101028439, -0.00648085447, -0.0188502893, 0.0131211681, 0.0195564628, -0.00855951197, 0.0347392038, -0.0093625, 0.0117543796, -0.0108488826, 0.0130186584, -0.00744330138, 0.0142487679, 0.00365900621, -0.00410321262, 0.00265669473, -0.00168570562, -0.0203993153, 0.0138501218, -0.00279337354, 0.0063954303, 0.00359920925, 0.00672573736, -0.00780208316, 0.00301832426, 0.0173468217, -0.00169567182, 0.00633278582, -0.00439935, -0.00966433249, 0.0214927457, -0.0202968065, 0.00545576354, -0.00226801448, 0.00569779892, 0.0116461758, 0.019453954, 0.0102167428, -0.000352197152, 0.0168456659, 0.0359237529, -0.0148866028, -0.00118170236, -0.00454172352, -0.00106210844, 0.00993199553, 0.00302117178, -0.0185199827, 0.00589427445, 0.0104046762, 0.0115038017, 0.015820574, -0.0291353706, 0.0243743919, -0.00761415, 0.00521657523, -0.0120732971, -0.0177682489, -0.00164584094, 0.0184288621, 0.00664600823, -0.0146474149, 0.0131097781, -0.00284178066, 0.0194197837, -0.0200917888, 0.00818934, 0.0012130246, 0.00846839231, 0.0299098846, 0.00899232831, 0.0241921525, 0.00429684063, -0.0170848537, -0.0112019693, 0.0260600969, -0.0160711519, 0.0312083326, 0.000464850396, 0.0108431876, 0.034260828, -0.0319600664, -0.00468694512, 0.00800710171, -0.00657766871, -0.0170392953, -0.00468125, 0.0110766804, -0.00116532948, -0.00763123482, -0.00084498839, -0.00222103111, -0.00995477475, 0.0153421992, -0.0203309767, -0.00947070401, -0.0107235936, -0.0237137768, -0.0270624086, -0.0110652903, 0.0011873974, -0.0063441759, 0.0177568588, 0.00736357225, -0.0108887469, 0.0183833037, 0.00804127101, 0.0145562952, -0.00562661188, -0.00468979264, -0.0075116409, 0.0012130246, -0.0172443129, 0.00233777752, 0.00341697084, -0.0296593066, 0.0183946937, -0.0117885489, 0.017255703, -0.000233137078, 0.0195336826, 0.00174123142, 0.0074319113, -0.00237621856, -0.00716424873, -0.00276774634, -0.0123010948, -0.00819503516, 0.00164299342, 0.000953192473, 0.00740913162, -0.00768248923, 0.0105926096, 0.0114069879, 0.0163331199, 0.00890120864, -0.0069535356, 0.0253311433, -0.0196134131, 0.00775082875, 0.00986365601, -0.00587149477, 0.0264245737, 0.00129061833, 0.00363907381, 0.0123808244, -0.00597400405, -0.0148524335, -0.0116860401, 0.00267235585, -0.0194881242, -0.00119807536, -0.0200576186, -0.00384693965, 0.0065662791, 0.00245167664, 0.0133034065, -0.00421711151, -0.0220280718, -0.00380138, -0.0247160885, 0.00124078756, 0.00328598684, 0.0231101122, 0.0142259886, 0.0335774347, -0.0053988141, -0.0107292887, 0.0022110648, -0.0115265818, -0.014533516, 0.0347392038, -0.00588858, 0.000184729986, 0.00571488356, -0.0057604434, 0.0282925181, 0.0157294553, -0.00266666105, -0.00241893064, 0.0141007, -0.0205018241, 0.0137020526, -0.00442782464, -0.00768248923, 0.00208719959, -0.0116290906, 0.0103363367, -0.0280647203, -0.0115607511, -0.0141007, 0.00322618987, 0.00836588349, 0.0106666442, -0.00204164, -0.00779069355, -0.0163786802, 0.0078590326, 0.0321423039, 0.0214927457, -0.0127680814, -1.08504391e-05, -0.0131439473, 0.0200348385, -0.00467270752, 0.00866771583, 0.00310374843, -0.00777360843, -0.00972128194, -0.0284519773, 0.0062644463, 0.00539311906, 0.0173468217, 0.0090264976, -0.00687950104, 0.00584871508, 0.00996616483, -0.00874744542, -0.0157864057, 0.0138956811, -0.0116120055, -0.00512260897, 0.0191008672, 0.00898093823, -0.0217661038, 0.018542761, 0.00193913095, 0.0146815842, 0.00466986, -0.0260373168, -0.00798432156, -0.0182238445, -0.00209147087, 0.0163217299, 0.00797293149, -0.022050852, 0.00582878292, -0.00859368127, 0.00373588805, 0.0179277062, -0.0195792429, -0.0148296533, 0.00855381694, -0.00863924157, -0.0214813557, 0.0384750925, 0.00969280675, 0.000490477658, -0.000379782083, 0.0118454993, 0.00677699223, -0.0017056379, 0.0153649785, -0.000205552147, 0.00233493, -0.0151257906, -0.0239415746, 0.0055241026, -0.0151144005, 0.000320518971, -0.0026709321, -0.00918026175, 0.00388395693, 0.0215155259, 0.0153421992, -0.0147385336, -0.0038583295, -0.00751733594, 0.000921870233, 3.13444798e-05, 7.30110551e-05, 0.00225377711, -0.00320056267, -0.00530769443, -0.0156611167, -0.0122099761, 0.0306843985, -0.00771665899, -0.00901510846, -0.0186452717, 0.0122783147, 0.0134856449, -0.011025426, -0.000685529783, 0.0243060533, 0.00781916827, 0.0194995143, 0.00930555072, -0.0283836368, 0.0134514747, 0.00573481619, 0.0262195561, -0.0109343063, 0.0268346108, 0.0184060819, -0.0142145986, -0.00391527917, 0.00152339949, 0.00508274417, 0.00985226594, -0.00203879247, -0.0259006396, -0.0188275091, -0.0018494355, 0.00235628616, -0.000789462647, 0.014134869, 0.00801849179, 0.0104957949, -0.0236454383, -0.0093625, 0.00280618737, -0.00443351967, 0.0157750156, 0.0144196171, -0.00214272551, -0.0141120898, 0.0131553374, -0.00853673182, -0.000376222713, -0.00167146826, -0.00605373317, -0.00730662281, 0.00237764209, -0.00455880864, -0.0257867388, 0.00760276, -0.00613346277, 0.021800274, -0.0190439168, -0.00772804907, -0.00953904353, 0.00194482587, 0.01400958, -0.00353656476, -0.00804696605, -0.0181782842, 0.00809252542, 0.0157864057, -0.000144509395, -0.00169424806, 0.0187591705, -0.0151371807, 0.00917456672, -0.00136536453, 0.0107862381, -0.0334179737, -0.00380992237, -0.0282014, 0.000604376721, 0.0178024173, -0.0385662094, 0.0061733271, 0.00690797577, -0.00603095349, -0.00474674208, -0.0233493, -0.00227370928, -0.00086136139, -0.016606478, -0.00056059676, -0.00917456672, -0.0116575658, -0.0281558391, 0.018941408, -0.0212535579, 0.0264017936, 0.00193058851, -0.000154119625, -0.00653780438, -0.0212421678, -0.00363053149, 3.12777411e-05, 0.0116518708, -0.00711868936, -0.0028930353, -0.00383270229, -0.0157066751, 0.00180245214, -0.0067314324, 0.00386687205, -0.0103021674, -0.00449616415, 0.00178536726, -0.0104103712, 0.0113158682, 0.00714146905, 0.00879300479, -0.0117202103, -0.0177682489, 0.00480084401, -0.0205473844, 0.00758567499, 0.0041914843, 0.00309520611, 0.029841546, -0.00893537886, 0.000199323302, 0.00288876402, 0.0105185751, -0.00476382673, -0.0150118917, -0.000598325802, -0.0128592, 0.0130756088, -0.000329595321, 0.00811530557, -0.00842283294, -0.00750594586, -0.0133147966, -0.000994480914, 0.0134514747, 0.0126427924, -0.0209574215, -0.0111051556, 0.00162021362, 0.00129844889, 0.0203537568, -0.00669156807, 0.0264245737, 0.00638973527, -0.00887842942, 0.0138387317, -0.0267890505, -0.0163103398, -0.0167659372, -9.82379133e-05, 0.00674282247, 0.000464850396, -0.0209574215, -0.000789462647, 0.0227000769, 0.00119309232, 0.0269485097, 0.00959029794, 0.00519664306, 0.00993199553, -0.00466416497, -0.0272218678, 0.0137817822, -0.00735218218, -0.0118113291, -0.0244882908, -0.0173582118, -0.00013596697, 0.00772804907, 5.39685607e-05, 0.019066697, 0.00779638859, -0.00820642523, -0.00149350101, 0.00414307695, -0.00444490975, -0.0221191905, -0.00436802767, -0.0188161191, 0.0239415746, 0.0223469883, 0.00101512508, 0.0168228857, -0.0148866028, -0.0181099456, 0.0181896742, 0.012460554, -0.00105285412, -0.0107349837, -0.0069535356, 0.00472111488, -0.00420856895, 0.0238504559, 0.0119821774, 0.00281757722, 0.0129958792, -0.00702757, -0.00143726333, 0.0119252279, 0.00378999021, -0.000608647941, -0.00457019825, -0.0303882603, 0.00114397332, -0.00153051817, 0.00488057313, -0.00876453053, 0.00133261865, -0.0137248328, -0.00860507134, -0.0050058621, 0.0217433237, -0.000659190642, -0.0145790754, -0.00618471717, 0.000475172506, 0.0182124544, -0.00287025538, -0.00939666945, -0.00865063071, -0.00110695616, -0.013098388, 0.00918595679, -0.0050457269, 0.0170848537, -0.0151599608, -0.00449331664, 0.000718631665, 0.0160597637, -0.00575474836, -0.00507704914, 0.0160028134, -0.00777360843, 0.000712936744, -0.0128250308, 0.00180102838, 0.00528206723, -0.0117771598, 0.00982948579, 0.0174493305, -0.00363907381, 0.0203423668, 0.00648085447, -0.0134286955, -0.00384693965, -0.000181437586, -0.0217433237, 0.00837157853, 0.0110709853, -0.0119593982, 0.00805835612, 0.00557820499, 0.00557820499, -0.00291154394, -0.00711868936, -0.02699407, -0.00642390503, 0.0119821774, 0.0069934004, -0.018725, 0.00114254956, 0.015820574, 0.0116518708, 0.0135198142, -0.0106438641, -0.0230987221, 0.00411744975, -0.00415731454, -0.00616763253, -0.00257554185, 0.00566647667, 0.00149492477, -0.0122441454, -0.00058159692, -0.0177910272, -0.0133717461, -0.0171759725, 0.0265156943, 0.00506850658, 0.013235067, -0.00222672592, -0.00296137482, -0.000847124, -0.00987504609, -0.0120505169, 0.0131553374, 0.00521942275, -0.0245566294, -0.00851964764, -0.0196703617, -0.0240326952, -0.0109229162, 0.00746038649, 0.0132806264, 0.0229164846, -0.00587719, -0.0146474149, -0.000775225228, -0.00304395147, -0.0133717461, -0.0343519449, 0.0276546832, -0.00849117246, 0.00229791296, -0.0142032085, 0.00358212437, 0.0239643548, -0.00420002639, 0.0028674081, -0.02464775, 0.0184060819, -0.0054244413, -0.0104844058, -0.0253311433, 0.0123466542, -0.00842852797, 0.00911761727, -0.00972128194, 0.0209232513, 0.00675421208, -0.021276338, 0.0045929784, -0.00601956341, -0.00842283294, 0.0124491639, 0.017380992, 0.00438511232, 0.00280618737, -0.0194881242, -0.00162306114, -0.0247616488, -0.0262423363, -0.0166862067, -0.00326320715, 0.00993769057, -0.0162306111, -0.0161622725, -0.00300123938, -0.00437657, -0.000756716647, -0.00727245305, 0.0128022507, -0.00869049598, -0.0126655716, -0.00152624701, -0.0123466542, -0.00525359251, 0.00279764482, -0.00748886121, 0.0166520383, 0.00457589328, -0.0233493, -0.0222900398, 0.00263676257, 0.000265883049, -0.00338849612, -0.00254137209, -0.0180188268, -0.00028955267, 0.0156041663, 0.0182466246, 0.00845700316, -0.000519664318, 0.0255133826, -0.0115208868, 0.00431392575, -0.00433101039, -0.00929416064, -0.00289161154, 0.00292435754, -0.00791028701, 0.0156725068, -0.00460721552, 0.0105641345, -0.0067314324, 0.00507420162, -0.00483501377, -0.0285658762, 0.0151941301, -0.0165609177, -0.0163217299, 0.00618471717, -0.00625875173, 0.0138045624, -0.0200803988, 0.0126200123, 0.0132692363, 0.0170392953, -0.00777930347, -0.00841144286, 0.016731767, 0.0103249466, 0.024260493, 0.0238960162, 0.0214357972, 0.0139184613, -0.00360775157, -0.00658905879, -0.01997789, -0.0196589716, 0.026857391, -0.00157038285, -0.000378714263, -0.00707312953, -0.0417781621, 0.0139868008, -0.00557820499, -0.00173411274, 0.0207182337, -0.0292037111, 0.00129702513, -0.0104957949, 0.0168342758, 0.00807544123, -0.00175831618, 0.000895531091, -0.00519094802, -0.00159031514, 0.00385548198, -0.000800140668, 0.0108090173, 0.0052934573, 0.00319486763, 0.0016244849, 0.00142231409, -0.0082519846, -0.0340785906, 0.00672004279, 0.00840005279, -0.0109343063, -0.00780208316, -0.0125972321, -0.0112532238, -0.0159572531, -0.0263106748, 0.00612776773, 0.0199095495, -0.0128933694, 0.0240099151, 0.0141234789, -0.0240326952, -0.0199437197, 0.0200803988, 0.00445629936, -0.0018266557, 0.0224153288, 0.00556681491, 0.00500016706, -0.0115607511, -0.0285886563, -0.0184516422, -0.015308029, -0.0159800332, -0.0182580147, -0.0111108497, -0.0358098559, -0.0271763075, 0.0198981594, 0.0140665295, 0.019590633, 0.0130414385, 0.00316069811, -0.0116177006, -0.0150688412, -0.00345968292, -0.0143626677, 0.00344259804, 0.0113557326, 0.0191464256, -0.0222330894, -0.0180757754, -0.00256557553, 0.0239187963, -0.0117885489, 0.00641821, 0.00333724148, -0.0053333221, 0.00215411535, 0.0138045624, -0.00441928208, 0.0175974, 0.0088442592, 0.0116860401, -0.000924005872, -0.00554403523, -0.00654349895, -0.0349442214, 0.0279736016, 0.000479799637, -0.00124648248, -0.00820642523, -0.0266068131, 0.0176999085, 0.0283380784, 0.0133375758, -0.0193400551, 0.0132008968, 0.0318233892, 0.0253767036, -0.0117202103, -0.00611068262, -0.00282611954, -0.0151144005, 0.00191065622, 0.0132806264, 0.0010471592, -0.0144765666, 0.00473819952, -0.00185085915, 0.00926568545, -0.00260544033, -0.00273215282, 0.0223014299, -0.016993735, -0.0341469273, 0.00883856416, -0.017392382, 0.0188161191, -0.00429114606, 0.00867341086, 0.00231642136, -0.000768106547, -0.00056949514, 0.000307883311, -0.0053333221, 0.0179846566, 0.0199551098, 0.016731767, 0.00467840256, -0.0324840024, -0.00644099, -0.00328598684, -0.0135767637, -0.0124149937, -0.00157465402, -0.00993199553, 0.00945931394, -0.0139070712, 0.000756716647, 0.00273215282, -0.00028261196, -0.0100231143, 0.00450470671, -0.00305249402, 0.00421995902, 0.00749455579, -0.00276347506, 0.0127908606, 0.0220166817, -0.00996047, 0.0109969508, 0.00423134863, 0.00666309288, -0.0145676853, 0.00820642523, 0.034967, 0.000978107913, 0.0125858421, 0.0204790458, 0.0115778362, -0.00900371838, -0.00908914208, 0.00367039605, 0.0132806264, 0.0292948298, 0.0101711834, -0.0340785906, -0.00162875606, -0.00747747114, 0.0151257906, -0.00429684063, -0.0280419402, -0.0169026162, 0.0178707577, -0.00598539365, 0.0254906025, 0.00983518083, 0.0182694048, 0.0348075442, 0.00407758495, -0.00607651332, -0.00384124462, 0.00951056834, 0.00323758, 0.000678767043, 0.0075515057, 0.000827191689, -0.00719841849, -0.00796154235, -0.00710160425, -0.0080697462, -0.00229506544, -0.0426437967, 0.0078590326, 0.00423419615, -0.00596830901, 0.0257411804, -0.0102964723, -0.00705604488, -0.0172898732, 0.00418863678, 0.00390958413, -0.00739774201, 0.00235771, -0.00677129719, 0.00162163738, -0.0235770978, -0.0141804293, 0.00607651332, 0.0168456659, 0.00518240593, -0.00510267634, 0.00462714816, 0.00417724671, -0.00739774201, 0.0105413552, -0.00959029794, 0.0269485097, -0.00616193749, 0.0203993153, -0.000814378, -0.00597969908, -0.018725, -0.00673712743, 0.00158746773, -0.00620180182, -0.00542728882, 0.0190097485, 0.00836018845, 0.0038383971, -0.000393663504, 0.00323758, 0.0210371502, -0.00455026608, -0.00135255093, 0.00247160881, 0.0254906025, 0.0125288926, -0.00829754397, 0.00243032048, -0.000654563482, -0.00826337468, -0.00587149477, 0.000644241343, 0.0114240721, 0.00731801242, 0.010376201, 0.00236055744, 0.0180643853, 0.00671434775, 0.00324327475, 0.038133394, -0.00320341019, 0.0102566071, 0.0125402827, -0.00754581066, -0.00502009969, -0.013098388, 0.0219141729, 0.00675990712, 0.00287452666, 0.0155586069, -0.00226516696, -0.0016344511, -0.00607651332, -0.00379568501, 0.00429114606, 0.0229962133, -0.0079045929, 0.00960168801, -0.0170962438, 0.00411460223, -0.0165495295, 0.0113101732, 0.02101437, 0.00900941342, -0.00998894498, -0.00682824664, -0.00783625338, 0.0123922145, 0.0238048974, -0.00635556551, -0.0105584394, 0.0231784526, 0.0209232513, 0.00297845947, 0.00840005279, -0.0297504254, 0.0291125905, 0.0157522354, 0.0155130476, 0.0192147661, 0.0101484032, 7.57250527e-05, 0.00116675312, -0.0159572531, 0.0178593677, 0.00665170327, -0.000676987343, -0.0155244377, -0.00703896, -0.00158319646, 0.0206726734, -0.0172329228, -0.00324896979, -0.0112418337, -0.00468125, 0.0179618765, 0.0312311128, 0.00615054742, 0.0130642187, 0.00210286072, -0.00891829375, 0.0246249698, 0.0090720579, 0.00595122436, 0.0140893096, -0.0166520383, -0.00458728336, -0.00217547151, -0.000711157045, 0.00291581498, 0.0146701951, 0.0153991487, -0.0215952564, 0.00625875173, 0.0153877586, 0.00909483712, -0.0149093829, 0.0118227191]
30 Jun, 2020
Difference between IBM DB2 and MongoDB 30 Jun, 2020 1. IBM DB2 : IBM DB2 is a relational database which was developed by IBM in 1983. It is considered as a family of database management products which are build for AI. It has enhanced capabilities for performing transactions. It works on the principle of ACID and has high flexibility and performance. It has efficient backup facilities and is considered very secure. It is extremely reliable and is supported by Linux, Unix and Windows operating systems. It has a commercial license and has high scalability. 2. MongoDB : MongoDB is a document oriented Database model which is a open source software. It was developed by MongoDB Inc. in 2009.It is implemented in C++ language. MongoDB uses the documents like JSON. It can be used as a standalone program and provides backup facility. It has a high ranking and is very popular among databases. It also consists of user defined java script functions. In MongoDB the scaling is done horizontally by the use of sharding. Difference between IBM DB2 and MongoDB : S.NO. IBM DB2 MongoDB 1. IBM DB2 is a relational database model. MongoDB is a document oriented database model. 2. Pessimistic Locking model is there in IBM DB2. Optimistic Locking model is there in MongoDB. 3. It has more efficient backup functionality as compared to Maria DB. It has comparatively less efficient backup functionality. 4. It was developed by IBM in 1983. It was developed by MongoDB Inc. in 2009. 5. It is a commercial software. It is a open source software. 6. It involves in place updates. It doesn’t involve in place updates. 7. It uses triggers for insert, update and delete events. It doesn’t use triggers for insert, update and delete events. 8. It is implemented in C and C++ languages. It is implemented in C++ language. 9. It cant be used in standalone program. It can be used in standalone program. 10. It is considered less than MongoDB in terms of ranking. It is considered better than IBM DB2 in terms of ranking. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2/Difference between IBM DB2 and MongoDB
https://www.geeksforgeeks.org/difference-between-mongodb-and-ibm-db2?ref=asr8
Languages
Difference between IBM DB2 and MongoDB
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, Difference between IBM DB2 and MongoDB, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, Difference between MS SQL Server and IBM DB2, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[2.07641897e-05, -0.00740101794, -0.0223038234, 0.0468022, 0.0124395322, 0.000780269969, 0.000900634448, -0.00491255149, -0.0394571647, 0.0437343046, 0.0444956794, -0.00886218715, 0.0179259144, 0.0148804123, -0.0238489676, 0.0305445939, 0.00287475251, 0.0257300138, -0.0252149664, -0.0121596148, 0.0148020359, -0.00827995874, 0.0165151302, 0.0170189813, -0.0414725728, -0.00184605573, 0.0329854749, -0.0086102616, -0.0343066864, -0.00818478689, 0.0034709766, 0.000172061773, -0.00398602476, -0.00933244824, -0.0358742215, -0.0193814859, -0.0221134797, -0.0251925718, 0.028708335, -0.0184521601, 0.0258867685, 0.0447420068, -0.0161568355, -0.0109895598, -0.0168734249, 0.00452346634, -0.0459960401, -0.0164703447, -0.0167054739, -0.00570191909, -0.0129209906, -0.00946121, 0.0232891329, 0.0161456391, 0.00959557109, 0.0345754065, -0.0236922149, 0.0209826138, 0.00977471843, -0.018217029, 0.0157537553, -0.0237370022, -0.00124633254, -0.0436447337, -0.00894616265, 0.0585363396, -0.0147572486, -0.00133310701, 0.00942202192, -0.04819059, -0.0279917475, 0.0451674834, 0.0254165065, -0.0262898486, -0.00768093532, -0.0120924348, -0.000639961334, 0.00957877561, 0.0164591465, 0.0147460522, -0.00528204255, 0.00492094923, -0.0244535897, -0.0212401375, 0.0193031095, -0.0224829707, -0.037934415, -0.0419652276, 0.0502955727, -0.0212065484, 0.0108999861, -0.0463095456, 0.0108384043, -0.000235305619, -0.0050665061, -0.0209042374, -0.00676840451, -0.00729464926, 0.0089965472, 0.0148356259, 0.0297608245, -0.00448427768, 0.019717386, -0.0112806745, 0.00338420225, -0.0141302338, 0.0207698755, 0.0404200815, -0.00219735224, 0.0278126, -0.0161344428, 0.028573975, -0.038740579, 0.0601486675, -0.0169965886, 0.0244759843, 0.0319105908, -0.0209266301, -0.0222030543, -0.0258419812, -0.031619478, 0.0183401927, -0.045257058, 0.0189896, -0.0257524066, 0.043152079, 0.00853188429, -0.0164815411, 0.00109377748, 0.0250582118, -0.0378896296, 0.00834713876, -0.0263122413, -0.0224493816, -0.00759696029, 0.0231099855, 0.0472500697, 0.0459064655, 0.0142422011, -0.00943321828, -0.0168622285, -0.0418308675, -0.0150483632, 0.00352975936, 0.0126410732, 0.0424354896, 0.0116557637, 0.0282828603, -0.00385446358, 0.00339259976, -0.00808401685, -0.0493550487, 0.0554012656, 0.00321625173, -0.00247167121, 0.0301191192, -0.00286075659, -0.0164367538, -0.0457721055, -0.0225949381, 0.0186089128, -0.0422115549, 0.03195538, -0.0056347386, 0.0193031095, 0.045391418, -0.0234234948, -0.00318546081, -0.0392108373, 0.0241400823, -0.0476083644, 0.0048733633, 0.000707491417, 0.0216992032, -0.00812880322, 0.0193143059, 0.00384046766, -0.0200644843, 0.00796645135, -0.00702033, 0.0252149664, -0.0179930944, 0.0238265749, -0.0157201644, 0.0207810737, 0.0168846212, 0.0242296569, 0.0339036025, 0.00250106258, 0.0192135349, -0.0221134797, 0.00822957326, 0.0483697392, -0.00612459425, 0.0281708948, 0.0230204128, -0.026670536, 0.040711198, -2.63734746e-05, -0.0385166444, 0.00615258608, -0.0318434127, 0.0168174412, 0.0367027782, 0.0421667695, -0.0220351033, 0.0104185287, -0.0473396443, 0.0547742508, 0.0164367538, -0.0273871254, 0.0250806045, -0.0105137005, -0.00405320479, 0.0367475636, 0.0116333701, 0.0180938654, -0.0392108373, 0.00988108665, -0.00691396138, 0.0114262309, -0.0103681432, 0.000867744151, -0.0202436317, -0.0360085815, -0.0433536172, -0.0266257506, -0.0158993118, 0.00544999307, -0.0129209906, 0.0315746889, 0.044114992, -0.0119916648, 0.00110637385, -0.00888458081, 0.0106368642, 0.0629702359, -0.000142320539, -0.077839449, 0.042681817, 0.01149901, 0.00729464926, -0.0102225859, -0.0148692159, 0.00455705635, 0.0355383232, 0.00843671244, 0.0320001654, 0.0158321317, 0.00377888582, 0.0131337279, -0.0266257506, -0.0125738932, 0.0335453078, 0.0201764517, -0.0185081437, 0.0516839623, 0.038740579, -0.00321345264, -0.0133128753, -0.00125612959, -0.00701473188, -0.0304102339, 0.0477875099, 0.0196614023, 0.0373969749, 0.020019697, 0.00891257264, 0.00937723555, -0.00434991764, 0.00873342529, -0.0202436317, -0.0108775925, 0.0275214855, 0.0072554606, 0.0118796974, -0.0248790644, 0.0213633012, 0.0478770845, -0.00106438622, 0.0170861632, -0.00074248109, 0.0523109771, -0.00474460097, 0.00183485902, -0.0238489676, 0.0127642369, -0.00693075638, 0.00859906431, -0.0162464101, -0.0271855853, -0.00834713876, 0.0091980882, 0.0401065759, -0.0148580195, -0.0476083644, 0.00330862449, 0.0417636856, 0.019415075, 0.0354487486, -0.013637579, -0.0052036657, 0.00631493796, -0.0301863, -0.0169406049, -0.0457497127, 0.0171197522, -0.0102225859, 0.023960935, -0.017948309, -0.0289994497, -0.0575062446, -0.0248566717, -0.00758576347, 0.0526244827, 0.0414949656, -0.0063933148, -0.0380687751, 0.00712110056, -0.00046956155, -0.00286215614, 0.0127418432, -0.0709422827, 0.0445404686, 0.0151155433, -0.0670010448, -0.0298727918, 0.00486216648, -0.00082575652, -0.000993707, -0.0803027228, -0.0421667695, 0.00350736594, 0.0280813202, 0.00589506188, -0.0239385422, 0.002289725, -0.00278237974, -0.00466342503, 0.0185977165, 0.00934364554, 0.0347993411, -0.0253045391, -0.0138727101, 0.0280589275, -0.0131225307, -0.0349337, 0.000152292603, 0.0117005501, -0.0269616507, 0.000643810199, -0.00531283347, -0.00147796422, 0.034888912, -0.0105248969, -0.0021525654, 0.00586707, -0.0498924889, -0.0523109771, 0.0514152423, -0.030746134, -0.0118685011, 0.0189784039, 0.0129769742, 0.00365852122, -0.0343290791, 0.00454585953, 0.0128090233, 0.00873342529, 0.0313955434, 0.00246607279, 0.035695076, 0.0202996153, -0.0298056118, -0.0210274011, 0.0251253918, -0.00158293324, 0.00955078378, 0.0250134245, 0.0159664918, 0.00714909239, 0.00614138925, -0.0554012656, 0.0428833552, 0.0125291059, -0.0219343323, 0.0239161495, -0.0196278132, -0.00792726316, 0.0321121328, 0.019650206, -0.00455145817, 0.00137229543, -0.0233339202, 0.0341051444, -0.0380687751, 0.020355599, -0.00661724899, -0.0053772144, -0.0348441266, 0.0519974679, 0.0177243743, -0.0363220908, 0.013234498, -0.0293353517, -0.0106424624, -0.00410918845, -0.0257524066, 0.00264941878, -0.000111004774, -0.0631941706, -0.03208974, -0.019851746, 0.0309028886, 0.0177355707, -0.00249686372, 0.00103289541, 0.0592529289, -0.0237146076, 0.0565657206, -0.00207698764, -0.00444788858, 0.0099762585, -0.0257971939, -0.0169853922, 0.0505195037, -0.0147460522, -0.0230204128, -0.0134920217, 0.0281932876, 0.0509225875, 0.0146340849, 0.00762495166, 0.0217775796, -0.00358854188, -0.0289322697, 0.00945561193, 0.0148132322, 0.0122491885, 0.00794965588, 0.0193031095, 0.051773537, 0.0275662728, -0.00380687765, -0.0497581288, 0.0241176896, -0.0199413206, -0.015574608, -0.0263346359, -0.0202660244, -0.00135550031, 0.0179259144, -0.00275018904, 0.00932685, 0.0119356811, 0.000458014954, 0.0439134538, -0.00458224909, 0.0563865751, 0.0163695738, 0.0163359828, 0.0227181017, 0.010692847, 0.0063205366, 0.0174668506, 0.0161456391, 0.0380911678, -0.00224353862, -0.00838632695, 0.0071826824, 0.0225837417, -0.000703292666, 0.00997066, 0.0325823948, -0.0275886655, -0.00959557109, 0.0528932065, 0.00163191883, 0.0113366572, 0.0334109478, 0.00368371396, 0.0446972214, 0.0187544711, 0.00154514448, 0.00262282672, 0.0184297655, -0.00554516492, -0.0025318535, -0.0115326, -0.00817359053, -0.00947800558, 0.00342059159, -0.0238937549, -0.0305669885, 0.00400282, -0.0150371669, 0.00168930192, 0.00414837711, 0.0059286519, 0.0292233843, -0.0272079781, -0.0114598209, -0.0143877575, 0.0177355707, -0.00808401685, 0.0150595596, -0.0165263265, 0.00106158701, 0.00894056354, 0.0106368642, -0.0162016228, 0.0125067122, 0.000660255319, 0.0216208249, -0.0194262732, -0.0056151445, 0.00754657481, 0.0275214855, 0.00996506214, 0.01380553, 0.0147460522, 0.00655006897, -0.00441989675, 0.0254612938, 0.0163695738, -0.0222030543, 0.017612407, -0.0231547728, -0.00397202885, -0.0293353517, -0.0110791335, 0.00569632044, 0.0094948, -0.00745140295, -0.00988668483, -0.0124731222, 0.0210497938, 0.00333101791, 0.022527758, 0.0139846765, -0.0219679233, 0.0182842091, -0.0391436592, 0.032783933, -0.00423795031, -0.008722228, -0.000372990035, -0.000888737966, -0.0031686658, 0.00727225607, 0.0279693529, 0.018217029, 0.0179595053, -0.020422779, 0.00462143729, 0.011263879, 0.013268088, -0.011364649, -0.00488176057, 0.0163247865, 0.0130105643, 0.0400393941, -0.00658365898, 0.0124171386, 0.028775515, -0.00173688785, -0.0181946363, 0.020288419, -0.00382927107, -0.00942762, -0.0131561207, 0.00226593181, 0.00400002068, -0.0125626959, -0.00150035764, -0.00592305372, -0.00822957326, 0.00965155475, 0.00962356292, 0.0279917475, -0.0133800553, 0.0019552235, 0.0165935084, 0.0155186243, 0.051236093, -0.0165823102, -0.0274990927, -0.0221134797, 0.0141638238, -0.0122603849, 0.0417412929, 0.0201428607, 0.00510849385, 0.0173660796, -0.0107488306, 0.0095451856, 0.0138167264, 0.0107376343, -0.00417916803, -0.00989228301, -0.0251477864, 0.0129545806, 0.015574608, 0.0119580748, 0.0193814859, 0.00600702874, -0.000107243381, -0.00994826667, -0.0267153233, 0.0338812098, 0.00454026135, 0.000534642371, 0.0253717192, 0.00775371399, -0.0251029991, -0.00661724899, 0.0316866562, -0.00189784041, -0.0198629443, -0.0220351033, 0.00708751054, 0.0170077849, -0.0110399453, 0.0105864787, -0.00887338351, 0.0293353517, 0.00469421595, -0.0325823948, 0.00726105925, -0.010995158, -0.0255732592, 0.00969074294, -0.00651647849, 0.00483137555, -0.0131001379, -0.0161904264, -0.0223150216, -0.0118461074, -0.0175788179, -0.0131337279, -0.00531283347, 0.0159888864, 0.036165338, 0.0508778, -0.00920368638, 0.0392780192, 0.00235410593, 0.0205459427, 0.0196278132, -0.00395243475, -0.0193702895, -0.00542200124, -0.0062029711, -0.00760815665, -0.040375296, -0.00961236563, -0.0186760928, -0.00417356938, 0.0255956538, 0.0367251709, -0.00555076357, -0.00313227647, 0.0112190926, 0.0106816506, -0.00864945, -0.0222702343, -0.00408679526, 0.0208482537, 0.0194598623, 0.0134472353, -0.017377276, -0.0647169203, -0.00653327396, -0.0182954054, 0.0420995876, -0.0180378817, -0.0421891622, 0.00731144426, -0.0184969455, -0.00927646458, -0.0244535897, 0.0171533432, 0.0121260248, -0.003333817, -0.0252373591, -0.00871103164, -0.00844231062, -0.0356726833, -0.00839192607, -0.0227404945, -0.00705951871, -0.0181722417, -0.00212597311, 0.0369267128, 0.0169294085, -0.0120364511, -0.0262226686, 0.0128538106, -0.00956198107, -0.00678519951, 0.0234011, -0.0278349929, -0.0133912517, -0.0245207697, -0.0286187623, 0.0289546624, 0.00138209248, 0.0120700411, -0.0166718848, -0.000496503606, -0.0214416776, 0.0131225307, -0.00747379661, -0.0170973595, -0.00953398924, -0.0151939206, -0.027140798, -0.00414557755, 0.0022575343, 0.0259987339, 0.00543599715, -0.0069083632, 0.0319105908, 0.0280813202, 0.0186537, -0.0127642369, -0.0131897116, 0.0275886655, 0.026065914, -0.00338700134, -0.00457385136, 0.0141302338, -0.0125403022, -0.0151827233, -0.019851746, 0.00273759291, 0.0498477034, 0.0111911008, 0.0112246908, 0.00880620349, 0.0208706465, 0.0197509769, -0.0223374143, 0.0240729023, -0.00204899581, 0.0233563129, 0.0256404411, -0.00477819098, -0.0242072623, 0.00566552952, 0.0267601106, 0.00228412659, 0.0111127235, -0.0317762308, 0.00457665045, -0.00841431879, 0.00538561214, 0.00838072877, 0.0191015676, -0.023960935, 0.0260211285, 0.0247223116, 0.00811200868, 0.042681817, -0.0221022833, -0.0149811832, -0.0181386527, -0.0458616801, 0.013570399, 0.0185977165, 0.0263794232, 0.0261778813, 0.0293353517, -0.0382255279, 0.0413158201, 0.00595664373, -0.0175340306, -0.010328955, -0.0267601106, 0.0215984322, 0.0170525722, 0.019952517, 0.00980830844, 0.0359414034, -0.00502731791, -0.0226621181, 0.0174332596, 0.00336740725, 0.0367475636, 0.00240868982, 0.00480058463, 0.0359414034, 0.0255284738, 0.00633173296, 0.00513368659, -0.00969634112, 0.0177691616, -0.0457945, -0.0316866562, -0.0337916352, -0.000896435697, -0.0194262732, 0.0376209095, -0.00171449455, 0.0226845127, -0.0365684181, -0.0175004397, 0.00386006199, -0.0160896555, -0.0102393813, -0.00975792296, 0.00727225607, -0.0220463, 0.0545055307, -0.00918129273, 0.0260211285, -0.0103065614, 0.0222814307, 0.03208974, 0.00721067423, -0.00627574977, -0.0402857214, 0.0171197522, -0.00231631706, 0.0401961468, 0.027073618, 0.00451506861, 0.0298280064, 0.0433536172, -0.0130889406, 0.028573975, -0.0298056118, -0.00446748268, -0.00688596955, -0.0558043458, 0.0198965333, -0.0202660244, 0.022393398, 0.0187208802, -0.00513088703, 0.00475019962, -0.00408399571, -0.010995158, -0.000316656631, 0.0218671523, 0.024028115, 0.0318881981, -0.0168174412, -0.00496573607, -0.00255984534, 0.035829436, -0.031283576, -0.0338812098, 0.0416293256, 0.00137789373, 4.92042418e-05, -0.0176571943, -0.0103065614, -0.0125291059, 0.0215984322, 0.028641155, 0.00510849385, -0.0026522181, -0.00511969067, 0.0231995601, 0.0294473171, -0.0109391743, -0.0131337279, 0.0122827785, -0.0079048695, -0.0296936445, -0.0309700686, 0.0246103443, 0.0309476759, 0.0145557085, 0.0186201092, 0.00721067423, 0.0190567821, 0.0218335632, -0.0459960401, 0.0390093, 0.0344634391, -0.00866624527, 0.00062316627, 0.0373074, 0.0273423381, -0.0385390371, -0.0527588464, 0.00276698428, -0.00261862786, -0.00047900877, 0.00937163644, -0.0266929306, -0.0230652, 0.005497579, 0.000127624866, 0.00342618977, -0.00911971088, 0.0213185139, -0.0288650896, 0.0137047591, -0.00994826667, 0.0197733697, 0.00877261348, 0.0365908109, -0.013402448, 0.0259091612, -0.0177915543, -0.00164031633, -0.0401513614, 0.00240449095, 0.0259091612, 0.00822397508, 0.0168398358, 0.00923727639, 0.00987548847, -0.0280365329, -0.0309028886, -0.0204563681, -0.0116669601, -0.00349057093, 0.0449883342, 0.0209602211, 0.0282380749, 0.0137607427, -0.0165599175, -0.0290666297, 0.0147460522, 0.0144437412, 0.0080168359, 0.00131281291, 0.0119356811, 0.00819038507, -0.00700913323, 0.0127754332, 0.00353815686, -0.000309133844, 0.0194598623, -0.00983070116, -0.0110007562, -0.0270512234, 0.00721067423, 0.0123723522, -0.00818478689, -0.0180266853, 0.0149587896, -0.0348441266, 0.0100994222, 0.0105640851, 0.00519526843, -0.0199749097, 0.0276558455, 0.030678954, -0.0238041822, 0.0158433281, -0.033119835, -0.00721627241, 0.00485936739, -0.0401513614, 0.0114150345, 0.00467742095, 0.0290218424, 0.00134990201, 0.0246551316, -0.0298504, 0.0355383232, 0.000303710462, 0.0216096286, -0.0391436592, 0.00934364554, 0.0137271527, -0.00221694633, 0.0356055, 0.0157873444, -0.00122044014, -0.00311268237, 0.0190791748, 0.00347657502, -0.026670536, -0.0246775243, 0.0238713622, -0.0100994222, -0.0192023385, 0.0124283358, 0.0171309486, -0.0343738645, 0.00325544016, -0.0321121328, -0.0312611833, 0.0170525722, -0.00786568131, 0.0089965472, 0.00443949085, 0.000427224033, -0.0239833295, 0.0243864097, 0.00624775793, -0.0167166721, -0.0183961764, 0.00500212517, -0.00741781294, -0.0341051444, -0.00610779924, -0.01383912, 0.0230428055, -0.00984189846, -0.00378168491, -0.0123051722, -0.0334557369, 0.0342395045, -0.0289994497, -0.0163023937, -0.000608120696, -0.0406216234, 0.00531283347, 0.0242072623, 0.000819458393, -0.00579429185, -0.0134584317, -0.0193926822, 0.00482017873, -0.00677960133, -0.010396135, -0.0231995601, 0.0137383491, 0.0224157907, 0.00802243501, -0.0207586791, 0.013570399, 0.000365292304, 0.0156529844, -0.0165151302, 0.0192695186, 0.0243864097, -0.00805602502, 0.0107376343, -0.0335005224, -0.0235802475, 0.0195382386, -0.0181946363, 0.00239609345, 0.0117341401, 0.0167614575, 0.0285963695, -0.0190231912, -0.0452794507, -0.00816239323, 0.00323584606, 0.00323584606, -0.0055787554, 0.0123723522, 0.00469141686, 0.00802803319, 0.00436951173, 0.0142645938, -0.00312387897, -0.0160560664, -0.0116445664, 0.00831354875, 0.0293577444, -0.0129769742, -0.0180714726, 0.0106536588, 0.0147460522, -0.0059454469, 0.00284536113, -0.00756896846, 0.0187768638, -0.00194262725, -0.00577749638, -0.0195046496, -0.0125179095, -0.0103849377, -0.037329793, -0.0127306469, -0.00816799141, 0.000382437254, 0.00630934, -0.0279469602, -0.00563753769, -0.0183289964, 0.0123835485, 0.0193366986, 0.0214976612, 0.0050665061, 0.0193255022, -0.00565993134, -0.00234710798, -0.0319329835, -0.0560730658, -0.0101777995, -0.000756476948, -0.0070987069, -0.0034541816, 0.0139510864, -0.00640451163, 0.0124171386, 0.0508330129, -0.0237817876, 0.00571031636, -0.00838072877, -0.0136599727, -0.00852628611, -0.0189784039, 0.0149252, -0.00956198107, -0.00600702874, 0.0222142506, 0.00738422293, 0.00815679505, -0.017914718, -0.0298951864, 0.0157201644, 0.00800564, 0.020019697, 0.0090413345, -0.00660045398, -0.022359807, -0.0031434733, 0.00932685, 0.0189784039, -0.0171197522, 0.00448147859, -0.00769213215, 4.03912163e-05, 0.00716588739, 0.00104269257, 0.0203444, 0.00381807424, -0.0130217606, -0.00658925716, -0.00502731791, -0.00189364166, -0.00182646152, -0.00872782711, -0.0173436869, -0.000177397698, -0.0240057223, 0.0184745528, 0.0125291059, 0.0313955434, -0.0301191192, 0.00199161284, 0.0106312651, -0.0187768638, 0.0156305917, -0.0172653086, 0.0107320361, -0.0108999861, -0.000293738383, -0.00425754488, 0.00364732463, 0.021990316, 0.0236026403, 0.0020154058, -0.000856547442, 0.0160224754, -0.0242520496, -0.0104633151, 0.025035819, -0.0236250348, 0.00814559869, 0.00255144783, -0.0238265749, -0.030746134, -0.0150035759, -0.0110735353, -0.0309700686, 0.0174780469, 0.00860466342, 0.00100280438, 0.0372402184, 0.00579429185, 0.00944441557, 0.0167950485, 0.0146564785, 0.0263570286, -0.0176571943, -0.0171309486, 0.00335621042, 0.0208258592, -0.00244367961, -0.0153170843, 0.00551997265, -0.0108328061, 0.00018107162, 0.0363220908, -0.0231995601, 0.00873342529, -0.0184745528, -0.0278797802, -0.00824077055, 0.00579989, 0.0295368917, 0.0204563681, 0.0179371107, 0.0272751581, 0.0132121043, 0.00876141712, 0.000927226618, -0.0232667401, 0.0213073175, -0.0228748564, -0.0010902785, -0.00114206329, -0.0132904816, 0.000291639, 0.042010013, -0.017679587, 0.0292905644, 0.0131225307, 0.0387853645, -0.0234234948, 0.0162128191, -0.0247447044, 0.0255060792, -0.0151379369, -0.0320673436, 0.00698114187, 0.00973552931, -0.0289546624, 0.00864385162, 0.0028775516, -0.00873342529, -0.00484257238, -0.00887338351, -0.0104801105, -0.0211617611, -0.0123051722, -0.0107880197, 0.0348217338, -0.00429393398, -0.00624775793, -0.0249238517, 0.00444788858, -0.013234498, 0.0270288307, 2.04142943e-05, -0.0001302491, 0.00586707, 0.00573271, 0.00398602476, 0.0040308116, -0.0394123793, -0.007787304, -0.0232219528, -0.0143765612, -0.024028115, -0.000733383757, 0.00943321828, -0.000886638591, 0.0294025317, -0.033119835, 0.000326978596, 0.00194542645, 0.0200980734, 0.00872782711, 0.000273969228, 0.0128090233, 0.0230652, -0.0163359828, -0.0121260248, -0.00483977282, -0.00267461152, -0.0268496834, -0.022225447, 0.0122155985, -0.000267846015, 0.011364649, -0.00156193948, 0.028641155, -0.00454306044, 0.00569911953, 0.00480338372, 0.0209714174, 0.00359414029, 0.00238769595, 0.0053408253, -0.0080168359, 8.56372499e-05, 0.0027124004, -0.0154626407, -0.00527644437, 0.0127754332, 0.0251925718, 0.0239833295, 0.0147572486, 0.00357454619, 0.00690276502, -0.0183737818, -0.0169070158, 0.00642690528, 0.00368651305, 0.0117565338, -0.0120364511, -0.00247307075, 0.0257524066, -0.0125962859, 0.00166970771, 0.0245431643, -0.00890137535, -0.00175088376, -0.0344410464, -0.0210385974, 0.0230428055, -0.000823657145, -0.00345138251, -0.000874042278, 0.0233115274, 0.00186565, -0.0229532328, 0.0176012106, -0.0513704531, 0.00573830819, -0.00533522712, -0.0103401514, -0.0076137553, 0.00395803293, 0.000986709, -0.00439750357, 0.00741781294, 0.00415397529, -0.000651857816, 0.000860046421, -0.00171589409, -0.0101833977, 0.00819038507, -0.0216432195, -3.85979947e-05, 0.015473838, 0.0091533009, -0.00317706331, 0.00331422291, 0.0096291611, -0.0244088043, 0.00162492087, 0.022091087, 0.0104409214, 0.0175676197, 0.015641788, -0.00807841774, -0.0129433842, -1.66200989e-05, 0.0166718848, -0.0142757911, 0.00636532344, 0.00500212517, -0.0430177152, -0.0244088043, -0.00029531293, -0.0482801646, 0.0134248417, -0.0134808253, 0.00761935348, 0.0292233843, -0.0205011554, -0.00764734531, 0.0209602211, 0.00774811534, 0.0156641807, 0.0118573038, 0.0156305917, 0.0296488591, -0.0102169877, 0.0207474828, -0.0308357086, 0.0174556542, -0.00654447032, 0.0149587896, 0.0175228342, 0.00796085317, -0.0258195866, -0.0168846212, 0.0117901238, 0.00378168491, -0.00824077055, -0.00744580477, -0.0146564785, 0.0215424486, 0.0098195048, -0.0183625855, -0.000517147535, 8.50686702e-05, -0.0166606884, -0.00569352135, -0.000788667472, 0.00062316627, 0.0136599727, -0.0209602211, 0.000417077041, 0.0158881154, -0.0185865201, 0.0166494902, 0.00642690528, 0.00585587369, -0.00200980739, 0.00645489665, 0.0108719943, 0.00581108686, -0.00525964936, 0.0216992032, 0.0192695186, 0.0161344428, -0.0173212923, -0.00452626543, 0.0339931771, 0.011364649, 0.0294025317, -0.00627015112, 0.00847030245, -0.0115997801, -0.0202212371, -0.00448707724, -0.00769213215, -0.017444456, -0.000453816203, 0.0197733697, -0.00236250344, -0.0125626959, 0.0125962859, -0.00527924346, -0.00499932608, 0.0128314169, 0.00695874821, 0.0200308934, -0.00581668504, -0.00869423617, -0.00447588041, -0.00701473188, -0.00893496536, 0.00284256181, 0.0300295465, 0.000482857635, 0.00847590063, 0.0189000275, 0.00545279216, 0.000898535072, -0.00155774073, 0.0210497938, -0.0109167816, 0.0198965333, 0.0169294085, -0.0201988444, 0.0135256117, 0.0140294638, -0.00812320504, -0.00828555692, 0.00326103857, 0.0102281841, -0.0134136453, 0.015305887, -0.0154290507, -0.00976352114, -0.0102169877, -0.0279469602, 0.000932825, 0.00682998635, -0.0147908395, 0.000821557769, -0.00446748268, -0.0166382939, 0.00193562929, 0.00274179154, -0.0120140575, -0.00603502057, -0.000644160085, -0.0100770285, 0.0185081437, -0.026670536, 0.0268048961, 0.00250246213, -0.0190007985, -0.00103849382, 0.0179930944, 0.0194374695, -0.0113702472, -0.0351128466, 0.0116109764, 0.0109895598, 0.0213521048, 0.00368651305, 0.0080616232, -7.41343911e-06, -0.0225725453, -0.0168286376, -0.0115885837, 0.0164479502, -0.00636532344, -0.00803363137, 0.0111071253, 0.00807282, -0.00156613823, -0.0185193401, -0.0366579928, -0.0122155985, -0.000739681942, 0.0227516927, 0.00470821187, 0.00894056354, 0.0148692159, 0.00428553624, 0.0187880602, 0.00411198754, -0.0236250348, -0.0062197661, -0.0106760524, -0.0118125174, -0.00245067733, -0.0123051722, 0.0279917475, 0.010161004, -0.0205235481, 0.0214080885, 0.00394683611, -0.0114262309, -0.00710430555, 0.00655566715, -0.00953958742, 0.0317762308, 0.00181526481, -0.00137089577, -0.0103681432, -0.0141862174, 0.0408007689, 0.00392724201, 0.0195158459, -0.0233115274, 0.00772572216, -0.026536176, 0.0119356811, 0.00398322567, -0.0397258885, 0.00614698743, 0.0403081141, 0.00022060996, -0.0289546624, 0.0140742501, -0.00852068793, -0.000182996053, -0.022527758, -0.000336775702, -0.0202324353, -0.0123835485, 0.000453816203, 0.010328955, 0.017679587, 0.0185305364, -0.0187992565, 0.0259987339, -0.0322017074, 0.000753677799, -0.03256, -0.000534992258, 0.0166942775, -0.0108775925, 0.00752418162, 0.000519946683, -0.00530723529, -0.0224717744, 0.000335376128, 0.00744580477, 0.0306565613, -0.0065948558, -0.00376768922, 0.00832474511, -0.00784888584, 0.0068075927, -0.0042043603, -0.0111743053, -0.0114878127, 0.00629814295, 0.00457945, -0.0221134797, 0.0219679233, 0.000801963557, 0.0161904264, -0.0105584869, 0.00750738662, 0.00159692916, -0.0241624769, 0.034060359, 0.0388749391, 0.048996754, -0.00458504818, 0.0279917475, 0.00689156819, 0.00202940172, -0.0192023385, 0.00145277171, -0.0173660796, -0.0213633012, 0.0110847317, -0.00839192607, -0.0194598623, -0.0104969051, 0.00384326675, -0.00984189846, 0.00502451835, -0.00713789556, -0.00470261369, 0.0144325448, 0.0184073728, -0.00197061896, 0.00174248626, -0.0107656261, -0.0125626959, 0.0134808253, -0.00500772335, 0.00202240376, -0.0206131227, -0.0211057775, 0.00556475949, -0.0328063257, 0.00807841774, -0.00929326, 0.0122267948, 0.00801123772, 0.0197509769, -0.0226509217, -0.0116893537, -0.00292513752, -0.0160560664, 0.00855427794, 0.0054276, 0.00824077055, 0.0240729023, 0.0142422011, -0.0100658322, 0.00322464923, -2.40991449e-05, 0.0379568078, -0.0177243743, -0.0388973318, -0.0107376343, -0.0121148285, 0.0116445664, -0.015339477, -0.00917009637, 0.00179846969, -3.35463592e-05, -0.00120294536, 0.00108118122, -0.00131281291, 0.00191183633, 0.00756337, -0.0119132875, 0.0251925718, 0.0169965886, 0.0160672627, -0.0132792844, 0.0141638238, -0.0139846765, 0.0293801371, -0.0110007562, -0.0135480054, -0.011196699, 0.0110847317, 0.00969074294, -0.0047725928, 0.00150315685, 0.00433592172, 0.000265046867, -0.0124171386, -0.0171869323, 0.0191799458, -0.0119244838, -0.0184185691, 0.00221694633, -0.00303710462, 0.00740661612, -0.0172541123, 0.00765294349, 0.000566133065, -0.0267825034, 0.012965777, -0.00270120357, 0.00793845952, -5.17409935e-05, 0.00596224191, -0.00453186361, 0.00606301241, 0.0160000827, 0.00906372722, 0.00984189846, -0.0133128753, -0.0113814445, 0.024565557, -0.000269770448, -0.0088174, 0.00288035069, 0.00490135467, 0.00343178818, 0.00393843884, 0.0306565613, 0.0151267396, 0.0104017332, 0.00832474511, -0.0174108669, -0.0389197245, -0.00581668504, 0.00909171905, -0.0116109764, 0.000792866223, -0.027073618, 0.0114150345, -0.00424914714, 0.00235270639, 0.000447518047, -0.0137159564, -0.0049097524, -0.0179707017, 0.00607980741, -0.0314403288, 0.0249462444, 0.00152694981, -0.0178811271, -0.0139398901, 0.00268580811, 0.0144661348, -0.0024464787, 0.0128985969, -0.00804482773, 0.00923167821, 0.0247894917, 0.0107376343, -0.0182618164, -0.0255732592, -0.000766973884, 0.00169210113, -0.00309308805, 0.0313059688, -0.00053814135, 0.0309252813, -0.0237817876, -0.0298951864, -0.00904693268, 0.00601262739, -0.0125626959, 0.0097019393, 0.00147796422, 0.000631213887, 0.010692847, -0.0103457496, 0.00337020634, 0.013536809, 0.00335621042, 0.0013617985, 0.0255508665, -0.0145109212, -0.0035829437, -0.00187404745, 0.00261163, -0.034888912, -0.00289994502, 0.0152946906, -0.0012533305, -0.00352416094, -0.00292233843, 0.0183178, -0.00131281291, 0.0112526827, 0.0292905644, 0.0101106185, 0.00521486253, -0.00641011028, -0.0193590913, 0.019952517, 0.00429113489, -0.0044087, -0.0186760928, 0.013268088, -0.0217439886, -0.00122113992, -0.00515608, 0.0217999723, -0.00672921585, -0.026939258, -2.18794867e-05, -0.00730024744, 0.00520086661, 0.00765854213, 0.0171757359, -0.0150707569, -0.00438070856, 0.00161232462, 0.000768373429, 0.0407559834, 0.00799444318, 0.00909731817, -0.00263822218, 0.013335268, 0.0119468775, -0.038606219, -0.00657806033, 0.015574608, 0.0031798624, -0.00947800558, 0.0357174687, -0.00891817082, 0.0069251582, -0.00816799141, -0.00913650636, 0.00473340461, 0.0159440991, -0.00396643067, -0.00922608, 0.0163359828, -0.0201540571, 0.0180938654, -0.0102281841, 0.00506370701, 0.00984749664, 0.00452626543, -0.000438070827, 0.000297237362, 0.0164255574, 0.00351296435, 0.00357454619, 0.0113478545, -0.0160000827, 0.00910291635, -0.00884539168, -0.00325264107, -0.00593425054, 0.00496293651, -0.0234011, -0.0158433281, -0.00543039897, 0.0261554886, -0.00807841774, 0.0122491885, -1.79103445e-05, 0.0127530396, 0.00995946396, 0.00430793, -0.0113422563, 0.0209938101, -0.00568232452, 0.0241400823, -0.00942762, -0.0117117474, 0.00824077055, 0.00157033699, -0.00202940172, 0.00145417126, -0.00311828055, -0.00831354875, -0.0222142506, -0.00900774449, 0.0253269318, -0.0164255574, -0.00174808456, -0.0102225859, 0.00635412661, 0.00753537845, -0.00738982111, -0.00459344545, -0.0215648413, -0.0011504608, -0.00476419553, -0.00217495882, 0.00758016529, -0.0268048961, 0.000389085297, 0.000625965418, -0.0322464928, -0.0179259144, 0.0268944707, -0.00628134795, -0.0210721865, -0.013503219, 0.0191575512, 0.00804482773, -0.0146004949, 0.0125179095, 0.00560114859, 0.0112862727, 0.0122715821, -0.0136487754, -0.0213297121, 0.0277902056, 0.0174668506, -0.00222254475, 0.0199973043, 0.0107376343, 0.0207810737, 0.0133800553, -0.000983210164, -0.00907492451, 0.00707631372, 0.00951719377, -0.0126074832, -0.0105416924, 0.0102113895, -0.00952839106, -0.00200141, 0.0097019393, 0.017142145, 0.0019524243, 0.00914770272, 0.0107264379, 0.00626455294, -0.015305887, -0.00469141686, -0.00818478689, -0.0140406601, -0.00875581801, 0.00431352807, 0.0117677301, -0.00620856928, -0.00591745554, -0.00141708215, 0.00234990707, -0.00756896846, -0.000301261171, 0.0112862727, -0.020086877, 0.0154850343, -0.00157173665, 0.00971313659, -0.0257748011, -0.0116333701, -0.0205347463, -0.0141526274, 0.00312387897, -0.00125822902, 0.0161680337, -0.00643810164, -0.00130371563, -0.0137383491, -0.0329854749, -0.0104017332, -0.0229532328, -0.0111463135, -0.00625895476, -0.000762075302, -0.00495733833, -0.0042239544, 0.00556475949, -0.015742559, -0.00328343199, -0.00825196691, 0.0208146628, 0.0063933148, 0.0254165065, 0.0178587344, 0.00107418327, 0.00684678135, 0.00573830819, -0.00821277872, -0.0204003844, -0.00525685027, -0.00466622412, -0.00336180883, 0.00206159218, 0.0279469602, -0.00441989675, -0.00523165753, -0.00965715293, -0.00923167821, -8.30567587e-05, -0.0143989548, -0.0260435212, 0.0284844022, -0.000611269788, 0.0130105643, -0.0124955159, -0.00507490383, 0.00418476621, 0.0141862174, 0.0085654743, -0.00284256181, -0.000665853673, 0.00514208386, 0.00272779586, -0.0217104, 0.00894616265, -0.00876141712, -0.0039300411, 0.0070987069, 0.0198629443, 0.0112414854, -0.00552557083, -0.0175564233, 0.011095929, -0.00186285074, -0.00487896148, -0.00408959435, 0.0182394218, 0.0176459979, 0.000496853492, 0.019784566, 0.0178699307, -0.0137159564, -3.95000734e-06, -0.0303430539, 0.022393398, -0.022561349, 0.0297384318, 0.0160000827, -0.000329777773, -0.000878241088, 0.00807282, 0.0071826824, 0.00171029579, -0.0135815954, 0.00441429857, -0.017310096, 0.0127978269, 0.0177355707, -0.0190007985, 0.00289154751, -0.00159552961, 0.0091589, 0.0177691616, -0.00681319134, -0.00363332871, -0.0108775925, 0.00115535932, -0.000889437739, -0.00889017899, 0.00679639634, -0.0143989548, -0.0128874006, 0.000251225923, 0.0222366434, 0.00144297455, 0.0146788722, 0.000624215929, 0.00591745554, -0.0165711138, 0.0229532328, 0.00147236593, 0.0174108669, 0.0105976751, 0.017612407, 0.00357174687, -0.00193702884, -0.0371282548, 0.00013322322, -0.0190119948, 0.024431197, 0.00128692063, -0.00533802621, -0.00550037809, -0.00304550212, 0.0164367538, 0.00387685699, -0.017310096, 0.00289154751, 0.00289154751, 0.00538561214, -0.00442269584, 0.0220686942, -0.00773132034, 0.00201960444, -0.0122379921, 0.00966275111, -0.00237230049, 0.0241624769, -0.00699793687, -0.00471940869, 0.000591675576, -0.00548918173, 0.0190903712, -0.000118789976, 0.00226593181, -0.00531003438, 0.00816239323, 0.0046186382, -0.017948309, 0.00463263411, -0.00397482794, -0.00878381, -0.00527364528, 0.00558995176, 9.20228704e-05, 0.00289154751, 0.00959557109, 0.00177607639, -0.00438910583, -0.00755777163, -0.0114318291, 0.00562914042, -0.00772572216, -0.000344298489, 0.00374529581, 0.00641570846, -0.0063037416, 0.00135270122, 0.0164927375, 0.019650206, -0.00133310701, 0.00365852122, -0.0181386527, 0.0386733972, -0.00717708375, 0.00750738662, -0.00515887886, 0.0026438206, 0.0104577169, 0.0107040443, 0.00633733161, -0.00942202192, 0.0222142506, 0.0317762308, -0.0062029711, -0.000744580466, 0.00776491081, 0.00417077029, 0.015675379, -0.00164591474, -0.0342842899, 0.0106088724, 0.012965777, 0.00321625173, 0.00586147187, -0.0257524066, 0.024968639, -0.0307909213, 0.0046354332, -0.000424774771, -0.00862705614, 0.00129461836, -0.00625895476, 0.0220127106, -0.00423795031, 0.0159105081, -0.00433312263, 0.00703712506, -0.0205123518, 0.0128314169, 0.00342618977, 0.00431912672, 0.0255060792, 0.0117677301, 0.0346649811, 0.01146542, 0.00342059159, -0.0117565338, 0.0219119396, -0.0231771674, 0.0218783487, -0.00159972836, -0.00324144424, 0.0210721865, -0.0166047048, -0.00405320479, 0.00986429118, 0.00539401, -0.0192919113, -0.0068075927, 0.0174108669, 0.00293073594, 0.00293633435, -0.00844231062, 0.00312667806, -0.0190567821, -0.00178307423, -0.00489575649, -0.0111463135, -0.00500492426, -0.02059073, -0.0122939749, -0.0112526827, -0.0131449243, -0.0047474, 0.000644160085, 0.0146228885, -0.00847590063, 0.0144325448, -0.00789367221, -0.00114346284, 0.00969074294, 0.000416027353, -0.008722228, -0.0139958737, -0.0113534527, 0.0139286937, 0.00434991764, -0.0318210162, 0.0228972491, -0.0168286376, 0.0187208802, 0.0131225307, 0.0191687476, 0.00847590063, 0.00451506861, -0.0206131227, -0.0314627253, -0.0230875928, -0.0122827785, -0.010026644, 0.0217775796, -0.00808401685, 0.0188104548, -0.0194934532, 0.0051672766, 0.0122155985, 0.0147124622, 0.00860466342, 0.00848709792, 0.0196837969, -0.0154626407, 0.00848709792, 0.0104353232, 0.0142757911, 0.013503219, 0.00487616239, 0.00964595564, 0.0108216098, -0.0218111686, -0.0146116922, -0.00749059161, 0.00511689112, -0.00471660914, 0.0149028059, -0.00854868, -0.00994266849, 0.0105640851, 0.00299511687, -0.0143877575, 0.00556475949, 0.0104969051, 0.00756896846, -0.011095929, 0.0105696833, 0.00853188429, 0.0117341401, -0.00220574974, 0.0354935341, -0.00713789556, -0.0453242362, -0.0197509769, -0.0117789274, -0.00579989, 0.0219791196, -0.00826316327, 0.000909032, 0.000994406757, -0.0314627253, 0.0105081014, -0.00189364166, 0.000762775133, -0.017142145, 0.024095295, -0.0218671523, 0.017847538, -0.00472220778, -0.00336460792, -0.0122603849, -0.00868304, 0.0287307296, -0.0305445939, 0.0147012658, -0.000529044, -0.00346537819, -0.0165487211, 0.0192247313, -0.00545839081, -0.00748499297, -0.0127082532, 0.00691956, 0.0279693529, 0.0256404411, -0.0170861632, -1.19839669e-05, -0.00336180883, 0.00138419191, -0.000179322131, 0.00719387876, 0.0103681432, -0.00110147521, -0.015641788, -0.0312611833, 0.026737716, -0.00458784727, 0.01383912, -0.00256824284, -0.0152163133, -0.0101554058, 0.0062197661, -0.00201120693, -0.00450387225, -0.00764174713, 0.00480618281, -0.00216656132, 0.00901334267, 0.00754097663, -0.0221694633, 0.0161792301, -0.00653327396, 0.0165935084, -0.00770332897, -0.015876919, 0.00668442901, -0.028641155, -0.0120812384, 0.00436951173, -0.0100378403, -0.033590097, 0.0121036312, -0.00292233843, -0.00750178797, 0.00683558453, -0.0255732592, -0.00826876238, 0.000865644775, -0.00993147213, -0.0297832191, 0.0333437696, 0.0204787627, -0.000560884655, -0.00971873477, -0.00839752425, 0.00542480079, -0.0140966438, 0.00568512361, 0.0103065614, 0.00291394093, -0.0127754332, -0.024431197, 0.0107824206, -0.00288874819, -0.00882859714, 0.00808401685, -0.00108747941, 0.000231281811, 0.028977057, 0.0110567398, 0.000591325632, -0.019952517, -0.0186425038, -0.00450667134, 0.0207026955, 0.00482577737, -0.0125738932, -0.0145557085, -0.015305887, -0.0147236586, -0.0140182665, 0.038606219, -0.00293353503, -0.0157761481, -0.00939962827, 0.000975512376, 0.0128762033, -0.00435831491, -0.00868863799, 0.0168958176, 0.0157537553, 0.0142422011, -0.00328903017, -0.00314067397, -0.00984749664, -0.00345978, 0.00950039923, -0.0219119396, 0.0244535897, 0.0122603849, -0.00873902347, -0.0142086111, 0.00940522738, -0.00469981413, -0.00787687767, -0.00412878254, -0.00319945673, -0.0182618164, -6.55181793e-05, 0.017847538, 0.0132456943, 0.00591745554, 0.022527758, -0.00043002321, -0.0167950485, -0.0234234948, 0.00921488274, 0.00227432954, 0.0185417328, 0.0180266853, -0.00423235213, -0.012965777, 0.00409799162, -0.00600143056, 0.0036277303, -0.00904693268, -0.00339259976, 0.00619737292, -0.0046186382, -0.00264102127, -0.0194262732, 0.0154626407, 0.00964595564, 0.00579429185, -0.0143317748, 0.00293633435, 0.0145781022, 0.00792726316, 0.0216096286, 0.0261330958, 0.00430793, -0.0281485, 0.00423235213, 0.0165599175, -0.00134850247, -0.0033058254, 0.00414557755, -0.00574950501, 0.00952839106, -0.00920928456, 0.0152275106, -0.0414053909, -0.000302135915, -0.0183513891, 0.00215116586, 0.0165599175, -0.017847538, -0.00262282672, 0.020422779, -0.0148804123, -0.000768373429, -0.0280365329, 0.00260603172, 0.00616378291, -0.0157873444, 0.000875441881, -0.0100098485, -0.00824077055, -0.022158267, 0.0210833848, -0.0181722417, 0.00890137535, 0.00922048185, 0.0149363959, -0.00800004136, -0.0171869323, -0.00286915409, -0.00548918173, 0.0210385974, -0.0146004949, -0.00833034422, -0.0148804123, -0.0337468497, -0.0308581013, 0.00362213212, -0.00825756509, 0.0142310038, 0.00653327396, 0.000181421507, -0.0117341401, 0.0149252, 0.00429953216, -0.00147796422, -0.0259987339, -0.0208034664, 0.00328063266, -0.0174332596, -0.00859906431, -0.00927646458, -0.00250806054, 0.0359190106, 0.00478099054, -0.00691396138, -0.00551997265, 0.0102113895, 0.000116953015, -0.0102001922, 0.00486496557, -0.0186872911, 0.00152974902, 0.00756896846, -0.00764734531, -0.0106032742, 0.00204619672, -0.00492654741, -0.0194934532, -0.00548638264, -0.00151015481, -0.0240057223, -0.00311828055, 0.00194262725, -0.00901334267, 0.013603989, -0.0178363416, 0.0171645395, 0.0123275658, -0.0163247865, 0.00109657669, -0.0200085, -0.0137607427, -0.00674041267, 0.0174332596, 0.0102561759, 0.00207698764, -0.0278126, -0.0113702472, -0.00759696029, 0.0134584317, 0.0134808253, 0.000674951, 0.00992027484, 0.0128762033, -0.00144437409, 0.00323024765, 0.012999367, 0.000987408916, -0.0187880602, -0.0214304812, -0.0180042908, 0.00929885823, 0.00908052269, -0.00467742095, 0.0231995601, -0.0195494369, 0.00627015112, -0.0153506743, -0.00636532344, -0.00628694659, -0.0147348559, -0.0076137553, 0.00166970771, 0.0231323801, 0.0246103443, 0.00611899607, 0.0106536588, -0.0120252548, -0.0162911974, 0.0185417328, 0.00197901647, -0.00766414031, -0.0211169738, -0.0162576064, -0.00968514476, -0.0115214027, 0.0188552402, 0.0265809633, 0.0133800553, 0.0156865753, 0.000799864181, 0.0133912517, -0.00370330806, -0.0035913412, 0.00166550896, 0.0113086654, -0.00679639634, 0.00146816717, -0.0133240717, -0.0153618706, -0.00600143056, 0.0229084454, -0.00606861059, -0.00495453924, -0.00834713876, 0.00931005459, -0.00709310872, -0.0211841539, -0.00141848181, 0.0155858044, -0.000495104, -0.0099762585, -0.0125738932, 0.00337300543, 0.00197481783, -0.00809521321, 0.00198321533, 0.00868863799, 0.017377276, -0.00624775793, -0.0129769742, -0.00669002766, 0.0147572486, 0.00766414031, -0.0149811832, 0.0144213485, -0.00973552931, -0.0015073556, 0.00820718054, 0.0119020911, -0.013570399, -0.0119580748, 0.0139286937, 0.0369043201, -0.00907492451, 0.0271631908, -0.00119944639, -0.00810641, -0.0168286376, -0.00996506214, 0.00133240712, 0.0194598623, 0.00553396856, -0.0176683906, 0.00221414724, 0.00412878254, 0.00203360035, -0.00282156817, -0.00583907822, -0.0141302338, -0.000483557436, 0.00145277171, 0.0103121595, -0.00655006897, -0.00225893408, 0.00117145455, 0.00116515649, 0.00609100424, -0.00266201515, -0.0119020911, 0.000316306745, -0.0153618706, -0.0017872731, -0.00614138925, 0.00170609693, -0.00512808794, -0.00128482119, -0.00114696182, -0.0108104125, -0.0214080885, -0.0123051722, 0.0104801105, 0.00190063962, 0.00340379635, -0.00710990373, 0.0102841677, 0.0139510864, -0.0142533975, -0.00980270933, -0.0070819119, 0.00763614848, -0.022695709, -0.00241708732, -0.0163807701, -0.0297384318, -0.0102785695, -0.00461304, 0.0016529127, 0.00264801923, -0.0206131227, -0.0319329835, -0.00945001375, 0.00334781292, -0.0133576617, -0.0346873738, 0.00977471843, -0.00788807403, -0.00578309502, -0.0139286937, -0.00342898909, 0.0121820085, 0.00190203916, -0.00370330806, -0.00839192607, -0.00444788858, -0.0171533432, -0.0132233016, -0.0351576358, 0.00404760661, -0.00483977282, 0.00532962848, -0.0123611558, 0.00799444318, 0.0093548419, -0.02293084, -0.00807841774, 0.00129041949, -0.0127754332, 0.0138727101, 0.013032957, -0.0142198075, 0.0125738932, 0.00222394429, 0.000733383757, -0.0126074832, -0.0109559698, -0.000234430874, 0.00774251716, 0.00752418162, 0.00273619336, -0.0280141402, 0.00294753094, -0.00140028715, -0.00187404745, -0.0214304812, 0.00748499297, -0.00134220428, -0.0115549928, 0.0097019393, -0.00838072877, -0.00172289205, -0.0017956706, -0.00522326, 0.0186089128, 0.0226509217, -0.0147684459, -0.024565557, -0.00238909549, -0.0224493816, 0.00464663, -0.00115535932, -0.0100154467, -0.018015489, 0.0259091612, 0.0184073728, 0.00270540244, -0.00740101794, 0.0471157096, 0.00844231062, 0.0149699859, 0.00160392711, -0.00148356264, -0.00445628632, 0.0142198075, -0.0174892433, 0.00524565345, -0.00553956674, -0.00539121032, 0.000890837342, 0.00374529581, -0.0132568916, -0.00595664373, 0.0262002759, -0.000404130842, -0.0122827785, -0.00525125163, 0.00993147213, -0.00815679505, -0.0259763412, 0.0260435212, 0.0117005501, 0.0130217606, -0.015675379, 0.00645489665, 0.019952517, 0.0143429711, 0.013603989, 0.00532123121, 0.0207810737, 0.0231547728, -0.00701473188, -0.017914718, -0.0076305503, -0.0188776348, 0.00362493121, 0.00201960444, -0.00524285436, -0.0176683906, -0.031082036, 0.00766414031, -0.00360533712, -0.0120028611, 0.00996506214, -0.00235970435, -0.000697344425, -0.0254836865, -0.00160952541, -0.0073562311, -0.000464663, 0.00106088724, -0.010961568, 0.00797764771, 0.00538561214, -0.00597903738, 0.0297384318, 0.00356055028, -0.0117565338, -0.00518127251, 0.0150595596, -0.00905812904, -0.0358070433, 0.00677960133, 0.0015843329, 0.0181050617, -0.00976911932, -0.00600702874, -0.0238041822, -0.00782649219, -0.0127082532, 0.000449617422, 0.0179707017, -0.0228748564, 0.0365684181, 0.00592305372, -0.0253269318, -0.0298727918, 0.00918129273, -0.00593425054, 0.0136263827, 0.0264466032, 0.0252149664, 0.0205347463, -0.0132456943, -0.0136711691, -0.0398154594, -0.0193143059, -0.0200644843, -0.0184969455, 0.00456825318, -0.0352472067, -0.0276558455, 0.0251029991, 0.0150483632, 0.00522326, -0.0110567398, 0.0128650069, 0.0128650069, -0.0130217606, -0.00236530253, -0.00260183285, 0.0166494902, 0.0126970569, 0.0102225859, -0.00712110056, -0.0252373591, -0.00257943943, 0.019650206, 0.00053569203, 0.0112918708, 0.0110231498, 0.00409519253, 0.0109391743, 0.0225949381, -0.0175564233, 0.0182730127, 0.00945561193, 0.0242744423, -0.00783768948, -0.00141848181, -0.00431352807, -0.0356502905, 0.029044237, 0.00421835622, -0.00718828058, 0.00113856432, -0.0230428055, -0.00564873451, 0.01611205, 0.0236250348, -0.008722228, 0.0085654743, 0.0122939749, 0.0331646204, -0.0127866296, -0.0214752685, -0.00500212517, -0.0179259144, -0.00398602476, 0.0382255279, 0.00751858344, -0.0249238517, 0.0136487754, -0.0173436869, 0.0186089128, -0.018217029, 0.000784468721, 0.0169294085, -0.0358070433, -0.00806722138, 0.00394963566, -0.000777470763, 0.020355599, -0.00510569476, 0.010127414, -0.00716588739, 0.00475299871, 0.0031966574, -0.00716588739, 0.0178027507, 0.00887898169, 0.0213521048, 0.0101162177, 0.00216656132, -0.0166718848, -0.0142086111, -0.000296012731, -0.0091533009, -0.0271631908, 0.00471660914, -0.0141862174, -0.00317706331, -0.017142145, 0.00738982111, -0.0169853922, -0.00822397508, 0.000483557436, -0.015541018, 0.00705392, 0.00591745554, 0.00687477319, -0.00971873477, 0.0191239621, 0.0302086938, -0.0124171386, 0.00788807403, -0.00611339742, -0.00139188964, 0.000383486942, 0.00122323935, 0.015473838, -0.00149475934, 0.00807841774, 0.0285515822, 0.0149699859, -0.00758576347, -0.0111183217, 0.0213633012, 0.0154962307, 0.0194262732, 0.0148804123, -0.0229756255, -0.00367531646, -0.0137719391, 0.000275018916, -0.0143877575, -0.0191239621, -0.00781529583, -0.00467742095, -0.000219035413, 0.0197509769, 0.00976911932, 0.00438910583, 0.0275438782, 2.34430881e-05, 0.00413438119, -0.00311828055, 0.00853188429, 0.0097019393, 0.00890697353, 0.00730024744, -0.00843111426, -0.0162016228, -0.00836953241, -0.0156529844, -0.00553956674, -0.000206789031, -0.0307909213, -0.00046781206, 0.0113534527, 0.00660605216, 0.0151939206, 0.00148496218, -0.00411758618, -0.0177355707, 0.00182226277, -0.00154514448, -0.00303430529, 0.0121596148, -0.0176907834, -0.00245207711, -0.0234011, -0.0125962859, 0.000961516518, 0.00812320504, 0.0124283358, -0.00815679505, 0.00441989675, -0.00259903376, -0.0114430264, 0.00589506188, -0.00352975936, 0.00166550896, -0.00136109872, 0.0235802475, 0.00490135467, -0.00374249648, -0.0289098769, -0.0157201644, -0.000976912, -0.00679079769, 0.00560114859, 0.0276334528, 0.00369770988, 0.0194486659, -0.015238707, 0.00651088031, 0.0221470706, 0.00852068793, -0.00961796381, -0.00442829449, 0.0315970853, 0.00850949064, 0.00426034397, -0.00386566017, 0.0140854474, 0.00544719398, -0.00482017873, -0.0057718982, 0.0224157907, -0.00405600434, 0.0307237413, 0.0119244838, 0.000163664241, 0.00660605216, -0.0042239544, 0.0451674834, -0.0153954607, -0.00216376199, 0.0150259696, -0.00135759974, -0.0106088724, -0.0112470835, 0.0223822016, 0.0072386656, -0.00885099079, 0.0104353232, 0.00654447032, -0.0183961764, -0.0155858044, 0.00187964586, -0.0031434733, 0.0125403022, -0.0252373591, 0.0124731222, -0.0160112791, 0.000755077403, -0.00258223875, 0.0146788722, 0.0106984461, -0.00538001396, 0.00212037493, -0.00593984872, 0.000470961153, -0.0119580748, 0.00631493796, 0.00345138251, -0.00986989, 0.0117341401, -0.000548288343, 0.00648288848, -0.00769213215, -0.00375089399, 0.0177691616, 0.011331059, 0.0111463135, 0.0189784039, 0.0063205366, 0.0150147732, 0.00515048159, -0.0256404411, -0.00215536449, 0.00884539168, -0.00867744163, -0.00867184345, -0.00944441557, -0.00740661612, 0.0170637686, -0.0199973043, 0.000258748711, -0.0117117474, -0.00857667159, 0.0226733144, 0.0213968921, 0.0400617868, 0.00229252409, -0.00606861059, -0.00213856949, 0.0167726539, 0.00783768948, 0.0073394361, 0.0097467266, -0.0394571647, -0.0227852818, 0.0130665479, -0.00540240714, -0.00941082556, 0.0400393941, 0.00611899607, -0.00440310175, -0.0104521187, 0.0232443474, 0.0157873444, -0.00971873477, 0.0250806045]
29 Jun, 2020
Difference between SQLite and IBM DB2 29 Jun, 2020 1. SQLite : SQLite is a software library that provides a relational database management system (RDBMS). It was designed by D. Richard Hipp on August 2000. The design goals of SQLite were to allow the program to be operated without installing a database management system (DBMS) or requiring a database administrator. The lite in SQLite means light weight in terms of setup, database administration, and required resource. 2. IBM Db2 : IBM Db2 is a family of data management products, including database servers, developed by IBM. It is a Relational Database Management System (RDBMS) which supports object-oriented features and non relational structure with XML. Db2 is designed to store, analyze and retrieve the data efficiently. It was initially released in 1983 and is written in C, C++, Java and Assembly language. Difference between SQLite and IBM Db2 : SR.NO SQLite IBM Db2 1. It is developed by D. Richard Hipp in 2000. It is developed by IBM in 1983. 2 SQLite server operating systems are server-less. Db2 server operating systems are AIX, HP-UX, Linux, Solaris, Windows and z/OS. 3 The primary database model for SQLite is Relational DBMS. The primary database model for IBM Db2 is Relational DBMS. 4 It is written in C language. It is written in C, C++, Assembly language, Java languages. 5 Famous companies like Adobe, Google, Bosch, Facebook, Dropbox, etc uses SQLite. Famous companies like JPMorgan Chase, Bank of America, Scotiabank, Citi, etc use Db2. 6 It provide in-memory capabilities. It do not provide in-memory capabilities . 7 It is a open source software framework. It is a commercial databases. 8 It supports Secondary indexes. It supports the secondary indexes without any restrictions. 9 It supports C, C#, C++, Matlab info, ColdFusion info, R info, Dart info, Delphi info, Erlang, Java, JavaScript, PHP, Python, Ruby. It supports C, C++, Cobol, Java, Perl, PL/1, Python, R, Ruby. 10 It do not provides access rights for users and roles. It provide fine grained access rights according to SQL-standard. Dreaming of M.Tech in IIT? Get AIR under 100 with our GATE 2026 CSE & DA courses! Get flexible weekday/weekend options, live mentorship, and mock tests. Access exclusive features like All India Mock Tests, and Doubt Solving—your GATE success starts now!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2/Difference between IBM DB2 and MongoDB/Difference between SQLite and IBM DB2
https://www.geeksforgeeks.org/difference-between-sqlite-and-ibm-db2?ref=asr10
Languages
Difference between SQLite and IBM DB2
PHP | IntlChar::isUWhiteSpace() Function, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, PHP | IntlChar::isspace() Function, Difference between IBM DB2 and MongoDB, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, AngularJS angular.isDefined() Function, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, PHP IntlChar::charName() Function, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, PostgreSQL – Drop Procedure, Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, Mongoose Queries Model.replaceOne() Function, Angular PrimeNG Form Calendar Touch UI Component, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, MongoDB insertOne() Method – db.Collection.insertOne(), Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, Mongoose Query.prototype.limit() API, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, PHP | IntlChar::forDigit() Function, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, Top 10 Python REST API Frameworks in 2025, Difference between SQLite and IBM DB2, Top 10 JavaScript Frameworks to Use in 2025, How to Get All Keys of an Associative Array in PHP?, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Top 10 Deep Learning Tools You Must Know [2025], 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, Mongoose Document Model.count() API, Languages, Mongoose Document Model.estimatedDocumentCount() API, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, Tensorflow.js tf.Tensor Class, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, Difference between MS SQL Server and IBM DB2, PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[0.00540962489, -0.00294316071, -0.0247882288, 0.0332204625, 0.0431357548, 0.0169350915, 0.0417233221, -1.31036415e-06, -0.0211865194, 0.00225989544, 0.033107467, -0.0295481328, 0.0303673465, -0.0219351109, -0.0312148072, 0.0473165624, -0.00822743215, 0.021017028, -0.0267656371, -0.0182910282, 0.0246611089, -0.0225565825, -0.00382416695, -0.0288984142, -0.017048087, 0.0201413184, 0.0216949973, 0.0120056951, -0.0262995344, -0.0258193053, 0.0287006721, 0.0017752538, -0.0122669954, 0.0128107825, -0.0186441373, -0.00532841, -0.0209746547, -0.0133263208, -0.0131356427, -0.00153337442, -0.00302790687, 0.00916670077, -0.0111723579, -0.00466456544, -0.00499648787, 0.00588279031, -0.0338701829, -0.026892757, 0.00202507828, -0.014985932, -0.0289266631, -0.0189125, 0.0417233221, 0.0410736, 0.0301131066, 0.0275424756, -0.00159693393, 0.0394916721, 0.00507770246, -0.00257239677, -0.00740822, -0.0312430542, 0.0103390217, -0.0373165235, 0.011207669, 0.0511866324, -0.00778957736, -0.00532134762, -0.0120480675, -0.0321752615, -0.029463388, 0.043305248, 0.0385312177, 0.00329097291, -0.00343751279, -0.00469987653, -0.0273447353, 0.0194351, 0.00420552446, 0.0354803577, -0.0244492441, 0.0168927182, -0.0507346541, -0.0031126528, 0.0123446789, -0.0244068708, -0.0185876396, -0.0458476283, 0.0379944928, 0.00416315114, -0.00468575209, -0.0451414138, 0.0413843356, -0.0033209871, -0.0161158796, -0.0139972279, 0.00831217784, -0.00178231602, -0.0383899733, 0.0203673076, 0.0245904885, -0.00360170845, 0.0347176455, 0.00915257633, -0.0078531364, -0.01231643, 0.0139266057, 0.0284746829, -0.00620058831, 0.0299153663, -0.0108757466, 0.00851698127, -0.0337571874, 0.0464126021, -0.033050973, -0.0111511722, 0.0152260456, -0.0327119865, -0.0391526893, -0.0073022875, -0.0422318, -0.0121681243, -0.0377967507, 0.00177348824, -0.0327402353, 0.0211159, 0.0225707069, -0.0154379113, 0.0176695585, 0.0239548925, -0.0310453139, 0.000734024623, -0.0110452389, -0.013333383, 0.00119792111, 0.040254388, 0.0320905149, 0.0457346365, -0.00764127169, 0.0130085237, -0.0152119212, -0.00595341204, -0.010826312, 0.0186865106, 0.0123305544, -0.0127825337, -0.0152825434, -0.0018697104, -0.00421258621, 0.0151977967, -0.0259323, -0.0218786132, 0.050000187, 0.0221469756, -0.0174859408, 0.0237289034, -0.0176413096, -0.0103672706, -0.0236017834, -0.0260735434, 0.00149894634, -0.0371470302, -0.000745942059, -0.0548024662, 0.0127684092, 0.0283051915, -0.0110593634, 0.00754946331, -0.0373165235, 0.0368645452, -0.0254379492, 0.0318927765, 0.00638773572, 0.00484112, 0.00771189341, -0.00388066424, -0.0118927, -0.0485312566, 0.00735172257, -0.0364690647, -0.00972461235, -0.032288257, 0.018601764, -0.0263136588, 0.0203390587, 0.0178531744, 0.0477685407, 0.0365255624, -0.00573448464, 0.0150706777, -0.0246469844, -0.0113559747, 0.0544069856, 0.0205509253, 0.000966635, -0.00264125294, -0.040028397, 0.030000113, -0.000168388695, -0.0180085413, 0.0137006165, -0.0259181764, 0.000131974361, 0.025522694, 0.0288136676, -0.0111652957, 0.00783195067, -0.00431498792, 0.0509888902, -0.000805529126, -0.0375142656, 0.0423165448, 0.00407487387, -0.0117585184, 0.0116384616, 0.0112217935, 0.0177543033, -0.0448306762, 0.00409606053, -0.00462925481, 0.00735172257, 0.0195480958, 0.0175989363, -0.00282133836, -0.0477120429, -0.0437854752, -0.0279803313, -0.00194562878, 0.0016437209, 0.0209746547, 0.0741810724, 0.0134393163, -0.0163842421, 0.0128460936, -0.0122104976, 0.00574507797, 0.072316654, -0.0192232355, -0.0677968636, 0.0376272611, 0.0242091306, 0.015522657, -0.00269068801, 0.0062570856, -0.00223694346, 0.0174859408, 0.0197740849, 0.0329097286, 0.00720694801, 0.0236300323, -0.00132239203, -0.039971903, -0.00486583728, 0.0314690433, 0.00920201186, 0.000261521112, 0.0362148248, 6.23457527e-05, -0.0050671096, -0.021906862, 0.0212571416, -0.0328532308, -0.00126854284, 0.0237147789, 0.00710807741, 0.0340961739, 0.0206780434, -0.033333458, 0.00852404349, 0.00286371121, 0.0300848577, -0.0410171039, 0.0161441285, 0.0249012224, -0.0153249167, -0.00850991905, -0.0513278767, 0.0118856374, 0.037429519, 0.0295198839, 0.00358228735, 0.00130561925, 0.0340679251, -0.000219368754, 0.03542386, -0.014731694, -0.0224859603, 0.0138136111, 0.00800850429, -0.0324295, -0.0287571698, 0.0232769232, -0.00550143328, 0.0407911129, 0.00152454665, 0.00596753648, -0.00516244862, 0.00629945844, 0.00930794422, -0.00540256267, -0.0202966854, -0.00908901729, 0.0168220978, -0.0279520825, 0.000795818691, -0.0414690822, 0.00251060259, -0.00437148521, -0.00443857582, -0.000247176067, -0.0222175978, -0.0311300606, -0.0600002259, -0.0329662263, 0.0383617245, 0.0345764, -0.0213842615, -0.025776932, 0.0137006165, -0.00426202174, 0.0231639296, 0.0483900122, -0.0557629205, 0.035649851, 0.0657064617, -0.032514248, -0.0178249255, 0.00957630668, -0.0238983948, -0.00631358288, -0.064972, -0.0518928505, -0.0294916369, 0.0167797245, -0.0158757661, -0.0126624769, 0.021144148, 0.00453038421, -0.0025776932, 0.0226130784, -0.0185735151, 0.0282486938, -0.00586160412, -0.0107415654, 0.00886302721, 0.0058792592, -0.0196328424, 0.00617233943, 0.0211582724, -0.0182486568, 0.00129237771, 0.00694917841, -0.0118856374, 0.00411371607, -0.00735878479, -0.033559449, -0.00789551, -0.0631075799, -0.0258758031, 0.0393504314, -0.00227755099, -0.011617275, -0.0127825337, -0.000106098123, 0.00092337915, -0.0121116275, 0.000666934, 0.0228108205, 0.0401413925, 0.0372600257, -0.0244492441, 0.018446397, 0.0232345499, -0.019717589, -0.0148729375, -0.00309499749, 0.0176554341, 0.00583688635, 0.0422318, 0.0136935543, -0.00463631703, -0.00011194648, -0.0464691, 0.0279520825, 0.00457628816, -0.0461018682, 0.0370340385, -0.02768372, -0.00961161777, 0.0256356895, 0.0284323096, 0.0187430084, 0.000143229699, -0.042796772, 0.0122599332, -0.0216667484, 0.0237854, -0.00373942079, 0.0198164582, -0.0393786803, 0.0536725186, 0.019618718, -0.0535030253, -7.49252431e-05, -0.00909607951, 0.00245587085, -0.00764127169, 0.0125282956, 0.00595341204, 0.0112429801, -0.0481640212, -0.0319492742, -0.0474578068, 0.0110452389, 0.0232769232, 0.0144421449, -0.016412491, 0.042570781, 0.00417727558, 0.043277, -0.00872178376, -0.0108969333, -0.00227931654, 0.00787432306, 0.0150000565, 0.0169068426, -0.0162147507, -0.00561442785, 0.0159746371, 0.00215572841, 0.0344916545, 0.016666729, 0.00611937325, 0.014731694, -0.011617275, -0.0338419341, 0.0035840529, 0.0127189746, -0.0124506112, -0.00654663472, -0.0146469474, 0.0242373794, -0.00966105331, -0.0117514562, -0.0350001305, 0.0361865759, -0.00731641147, 0.00725285197, 0.00736584701, -0.0207910389, -0.00578392, 0.0265820213, -0.00723872753, 0.00537078269, 0.00691386778, -0.0156215271, 0.0371470302, -0.00168962497, 0.0369775407, -0.00378532498, 0.0108969333, 0.0290114079, 0.00168168009, -0.029237397, 0.0163983665, 0.0501131825, 0.0130438339, -0.024731731, -0.0163277443, 0.00446329359, -0.0116808349, -0.0050317985, 0.0432487503, 0.0114336591, -0.0293786414, 0.0340961739, 0.0580793135, -0.00300318934, -0.0344916545, 0.0247599799, 0.0383617245, 0.0434747376, 0.0263136588, -0.0328532308, 0.0242091306, 0.0266950149, -0.0172175784, -0.00113965827, -0.0181780346, -0.0175848119, 0.011207669, 0.0360170826, -0.0431640036, -0.0215113796, -0.0359888338, -0.0225142092, -0.00936444197, 0.00218397705, -0.00970342662, 0.0737290904, -0.0251978338, -0.0175000653, -0.0481357723, 0.0350283794, -0.0181497857, 0.005413156, -0.00279132393, 0.0314972922, -0.0123658655, 0.0156356525, -0.00205332693, -0.00739409542, -0.031017065, 0.00857347809, -0.00533194095, -0.0099788513, -0.00336336019, -0.00479168445, 0.00292727095, 0.00480934, 0.00819212105, 0.0263701547, -0.0304803401, -0.00975992344, 0.0285029318, -0.00746471714, 0.0392374359, -0.0285311807, -0.00405015657, -0.0102754626, 0.0117302705, 0.0171045847, 0.0226130784, -0.0177401789, -0.00834748894, 0.0150706777, 0.0386724621, 0.00448448025, -0.00208334113, 0.039435178, -0.00962574221, 0.0304238424, -0.0300566107, 0.00930794422, 0.00891246274, -0.00939975306, -0.00908195507, 0.0161723774, -0.00728110084, 0.0404521301, 0.0479945317, 0.0392374359, 0.0163701177, -0.00697389618, -0.00778957736, 0.0136582432, -0.0160876308, -0.0224294625, -0.00744353095, 0.0146893207, -0.00632417621, 0.0218927376, 0.0214972552, -0.000873943965, 0.0342656635, -0.0122175599, -0.00654310361, 0.0144280205, -0.0140396, -0.00818505883, 0.00208510668, 0.00201625051, 0.00549437106, -0.0374577679, -0.0136088077, 0.0102472138, -0.0276272222, -0.00804381538, 0.0136653055, 0.0269916262, -0.0152684189, -0.000762714713, 0.0220057331, 0.013714741, 0.0434747376, -0.0127119124, -0.0072034169, 0.00290078763, 0.025113089, -0.00982348341, 0.0290396567, 0.0222458467, 0.00779663958, 0.0152260456, -0.0165961068, 0.00334570464, 0.0227684472, 0.00113612716, -0.00810737535, -0.0213560127, -0.00365114375, 0.0283758119, 0.0289125387, 0.0297176261, 0.0212571416, -0.0125141712, -0.00202154717, -0.0121681243, -0.0368927941, 0.0557911694, 0.0176978074, -0.00218927371, 0.0247458555, 0.0119562596, -0.0094633121, -0.0177401789, 0.05231658, 0.0299153663, -0.0296046305, -0.0154661601, 0.0102825249, -0.0290679056, -0.0177684277, 0.0116384616, 0.00762008503, 0.00119350734, -0.0148446886, -0.0336441956, 0.00222281902, -0.00971048884, -0.0112359179, 0.0197599605, 0.00552968169, -0.0175424386, -0.0146469474, -0.00659253867, -0.0277402177, -0.00404662546, 0.00739409542, -0.00845342129, 0.03155379, 0.0205226764, 0.0370340385, 0.0749720335, -0.0164266154, 0.00980935898, 0.00952687208, 0.0479662828, 0.0121751865, 0.00556499278, -0.0316102877, 0.0120692542, 0.0224012136, -0.000331701449, -0.0286159273, -0.0135946842, -0.0114830937, -0.0252967048, 0.0209746547, 0.0447459295, 0.000167726612, 0.0048481822, 0.00867234915, 0.0125918556, -0.0118503273, -0.0151977967, 0.00482699554, 0.0336441956, 0.0255791917, 0.0206497945, -0.0157486461, -0.0290961545, -0.0119421352, 0.00909607951, 0.0303390976, -0.0220481046, -0.0131356427, 0.00915963855, 0.00890540052, -0.00162429991, -0.0455651432, -0.016158253, 0.0158898905, -0.0216949973, -0.012761347, -0.0141102225, -0.0137641756, -0.00465397211, -0.0146751963, -0.0143362116, 0.00232168939, -0.0150848022, -0.00214866619, 0.0257345606, 0.0256639384, -0.028827792, 0.00244351197, -0.00119439012, -0.00290431874, 0.00126059796, 0.0293786414, -0.0134816887, -0.00129061216, -0.00376766943, -0.00240467, -0.00217514951, 0.00159163738, -0.00618646387, -0.00345869944, 0.00278426195, -0.013333383, 0.00214160397, -0.0046257237, 0.000639568083, 0.0102684, 0.00147864257, 0.00423377287, -0.0107415654, -0.00872178376, 0.0232204255, -0.000963103899, -0.0287995432, 0.0143362116, 0.0236582812, 0.00226872321, 0.0122458087, -0.0277967136, 0.0534182787, 0.0149435587, 0.00272599887, 0.00546612218, 0.00271540578, 0.0167091023, -0.0156074036, -0.0173446983, -0.0394069292, 0.045621641, 0.00316208811, -0.00871472154, -0.00860878918, 0.0129379015, 0.0147034451, -0.0389267, 0.0303108487, 0.0145339528, 0.0198164582, 0.0596047416, -0.0195057224, -0.0127754714, 0.0245198663, 0.03847472, -0.00025335548, 0.00742940651, -0.0436442308, 0.0112359179, -0.00655722804, 0.00461866148, -0.00286724232, 0.00124735641, 0.00156691973, 0.0301696043, 0.0554239377, -0.0178390499, 0.0285029318, 0.000551732315, -0.00521188416, -0.0228955653, -0.0188701265, 0.0231639296, -0.00709395297, 0.0334464535, 0.0449436717, 0.0561866499, -0.0300283618, 0.0263136588, -0.0112924157, -0.0149576832, -0.0242091306, -0.0293221436, 0.0178390499, 0.0219633598, 0.0158616416, 0.00512007577, 0.00971048884, -0.0015192501, -0.028983159, 0.00961161777, -0.00564267673, 0.0137076788, -0.0135028753, 0.00877121929, 0.0566103831, 0.0277967136, 0.0148164397, 0.00138948264, -0.00733759813, -0.00304556219, -0.0477685407, -0.0488137417, -0.0450284183, 0.0123870522, -0.00050671096, 0.0210735258, -0.0190254953, 0.0168503448, -0.033333458, -0.0233051721, -0.0162006263, -0.0355933532, 0.000614409102, -0.00681852829, 0.00416668225, 0.0040254388, 0.0549437106, 0.00770483119, 0.0114195347, -0.0146328229, 0.0161300041, 0.0266385172, 0.031779781, -0.0147175696, 0.0125636067, 0.0285453051, -0.0137006165, 0.0308193248, 0.0403673835, 0.0172458272, 0.0127472226, 0.0331922136, 0.00441385852, 0.0134887509, -0.0253814515, 0.00638420461, -0.0181780346, -0.0319210254, 0.0164548643, -0.00401837658, 0.0182062835, 0.0107133174, 0.0129449638, 0.014350336, -0.00444563804, -0.0138559844, -0.0130438339, 0.00681499718, 0.00592516363, 0.0126201035, -0.00224047457, -0.0052895681, 0.00643364, 0.0283758119, -0.0242373794, -0.0367233, 0.0307910759, -0.00405368768, -0.00910314173, 0.0141102225, -0.0138206733, -0.0221046023, 0.00635242509, 0.0371752791, 0.0210311525, -0.0165819824, 0.00627474114, 0.0169915892, -0.00496117678, 0.00595694315, 0.00866528694, 0.0284181852, -0.0229944363, -0.0109463688, -0.0427685231, 0.0323165059, 0.01771193, -0.0168079734, 0.0206780434, -0.00494352123, 0.0160170086, 0.00547671551, -0.0319492742, 0.0063806735, -0.00274895108, -0.0398871563, -0.0107486276, 0.0388702, 0.0357063487, -0.0359888338, -0.0620906278, 0.0126059791, 0.0135523109, 0.00170374929, 0.0112429801, -0.0276695956, -0.0204520542, -0.0210594013, -0.0253532026, -0.00140802085, 0.0121186897, -0.0060734693, -0.021906862, 0.00472106272, 0.00276837195, -0.017048087, -0.00762714725, 0.0087359082, -0.0249577202, 0.0245622396, -0.0154661601, 0.0060381582, -0.0167091023, 0.00346752722, 0.0273729842, 0.00271540578, 0.0139619168, -0.00359994289, 0.0311865583, -0.0244633686, -0.019745836, 0.0162288751, -0.0211159, -0.00295198848, 0.0461583659, 0.00608053152, 0.0318080299, 0.00919495, -0.0160593819, -0.00830511563, 0.0127119124, 0.0127472226, 0.0100565348, -0.00605934486, 0.00555439945, 0.0290114079, -0.00178408157, -0.0128743425, -0.000416668219, 0.00416668225, 0.00176289503, -0.0278532114, -0.0122669954, -0.0255933162, 0.00491174171, 0.0121540008, -0.0168785937, -0.00836161338, 0.0183899, -0.0383899733, 0.0503956676, 0.00971048884, 0.000149960833, -0.0281356983, 0.003603474, -3.67177854e-05, -0.0242373794, 0.0281780716, -0.0690963045, -0.0124435499, -0.0177401789, -0.0409323573, 0.0275848489, -0.0259464253, 0.0166384801, 0.0326554887, 0.0223729648, 0.00579451304, 0.0440397151, 0.010635633, 0.0168079734, -0.0449154228, 0.0236865301, -0.00962574221, 0.0128814047, 0.0184887704, 0.0178814232, 0.0110099288, -0.0238277726, -0.0175989363, -0.0227543227, -0.00851698127, 0.00773308, 0.0217232462, 0.00497177, -0.0287430454, 0.0055967723, 0.0109039955, -0.00865822472, 0.0142020304, -0.0280509535, -0.0281498227, 0.0158898905, -0.0047846227, 0.00698802061, -0.010508514, 0.0179661699, 0.0027860275, 0.0524295755, -0.0112782912, -0.0219351109, 0.00574507797, -0.0136017464, 0.000473165623, -0.0243644975, -0.00263242517, 0.00366173685, 0.0188983753, 0.00763420947, 0.00455510197, 0.00170374929, -0.0239548925, 0.031779781, -0.0269210041, -0.0205509253, -0.000338763639, -0.0208051633, 0.0168220978, -0.00425495952, 0.0053142854, -0.00646895077, 0.0101059703, -0.00319386786, -0.00459747482, 0.0160170086, -0.00538843824, -0.0326554887, 0.0155932792, 0.0192797333, 0.0152260456, -0.0256780628, 0.0024682295, 0.0119774463, 0.0265537724, 0.00954099651, -0.00793082081, 0.0216385, -0.000513331732, 0.00620411942, -0.0100565348, -0.0345481522, 0.0216808729, -0.000768011378, 0.0066384431, 0.00973167457, 0.0326554887, 0.0106073841, -0.00737997098, -0.0275283512, -0.00548730884, 0.0154237868, -0.0042478973, -0.00481993333, 0.00577685796, 0.00542374933, 0.00513773132, 0.0102825249, 0.0133192586, -0.00242585666, -0.00867941137, -0.0100494726, 0.0045904126, 0.034830641, -0.00883477926, -0.0142020304, 0.00907489285, 0.00234817271, -0.0253390782, 0.0175989363, 0.0129096527, -0.00464691, -0.000633388699, -0.0083828, 0.0100989081, -0.00152542943, 0.00406781165, -0.0251413379, -0.010699193, -0.0161723774, -0.00614762213, 0.00994354, -0.0219916087, -0.00129855715, -0.0200565718, 0.00242232555, 0.0209887791, 0.0274577308, 0.00416668225, 0.00643364, -0.00597813, 0.00275248219, -0.0184322726, -0.0477685407, -0.00135505456, -0.0162006263, 0.00150071189, 0.0167373512, 0.00227578543, -0.000618822931, -0.0116313994, 0.0722601563, -0.0176695585, -0.00651485473, -0.0154802836, -0.0303108487, 0.00794494525, -0.0162006263, -0.00802262872, 0.00327684847, -0.00658194581, 0.00310559082, -0.00300495466, -0.00621118164, -0.00210982421, -0.0335876979, 0.029237397, 0.0145339528, 0.022062229, -0.00149453245, -0.0156921484, -0.0285029318, 0.0117655806, 0.0134534407, 0.00783901289, 0.0119421352, 0.0154379113, -0.0227543227, -0.0230650585, 0.0100141615, -0.00265184604, 0.00693858555, 0.0157486461, -0.000994000933, 0.014096098, -0.0101483427, -0.00328567624, 0.00478815334, -0.00387007091, -0.015113051, 0.000130650209, -0.0263842791, 0.0019032557, -0.0147034451, 0.0359323397, -0.0212995149, 0.0113842236, 0.0167938489, -0.00667728484, -0.00697742729, -0.00351519673, 0.0134675642, -0.01237999, 0.0126201035, -0.0201978162, -0.0149011854, 0.0380792394, 0.0368080474, 7.74080399e-05, 0.0028160417, 0.016031133, -9.25806817e-05, -0.0118715139, 0.0330227241, -0.0251413379, 0.00587572809, -0.00469987653, -0.0123870522, -0.0113842236, -0.0215396285, -0.0128955282, -0.0193362311, 0.000893364951, 0.0073870332, 0.0126201035, 0.0246893577, 0.00011939487, 0.00627827225, 0.0390396938, 0.027302362, 0.00296434737, -0.00520129083, -0.0187571328, 0.0118785752, 0.0124153011, -0.00611231104, -0.024223255, -0.00584747968, -0.00130561925, -0.00253708567, 0.0172317028, -0.00144156616, -0.00355580426, -0.0373730212, -1.78485407e-05, -0.028728921, -0.0135664353, 0.0101695294, 0.0261017922, 0.00444210693, 0.0378532484, 0.00761302281, 0.0122599332, 0.0106709441, -0.0288701653, 0.0396046676, -0.0284746829, 0.0154802836, 0.00298729935, -0.0158333927, -0.00932913087, 0.0189407486, -0.00650779298, 0.012761347, 0.0185876396, 0.0327402353, -0.0110452389, 0.028319316, 0.0149153098, 0.0177684277, -0.000377164193, -0.0420905538, -0.00533900317, 0.0250848401, -0.0261300411, -0.0106144464, -0.00424083509, 0.0166384801, 0.0139619168, 0.00143450394, -0.0126554146, -0.00773308, -0.0246752333, -0.0241243839, 0.0266243946, 0.00527191255, -0.000201492629, -0.0106780063, 0.0154944081, -0.0151695488, 0.012288182, -0.0136229321, 0.00441385852, -0.0083686756, 0.0155650303, -0.0121681243, 0.0128955282, -0.0160735063, 0.000938386307, -0.00291667762, -0.0117302705, -0.00442445185, -0.0165678579, 0.00505651627, -0.00641598459, 0.0345764, -0.0167656, -0.0128319692, -0.00826980546, 0.0105367629, -0.00280721392, 0.0275566, 0.000700479315, 0.0263984036, -0.00372882746, -0.00695624063, -0.011525467, -0.0111723579, -0.0329379775, -0.019717589, -0.00161988602, 0.000130429515, 0.00709748408, 0.0161865018, -0.00329273823, -0.00111317507, 0.0232627988, 0.00718576135, -0.000396585179, -0.0100989081, -0.0111087989, -0.00316208811, -0.027048124, -0.0110946745, -0.00582629303, 0.00370057882, -0.00555086834, -0.00750709046, 0.011970384, 0.0197317116, 0.0407063663, -0.00582629303, 0.00636301842, -0.00746471714, -0.0339549296, 0.0108404364, 0.0106426952, 0.0314690433, -0.016511362, 0.000344280939, 0.0209464058, -0.0187006351, 0.00935031753, 0.0262854099, -0.0170057137, 0.00831217784, 0.00354697648, -0.0229944363, 0.0163701177, -0.0109251821, -0.0252967048, -0.00594988093, 0.00444916915, -0.0178672988, -0.0217514932, -0.00441032741, -0.0422318, 0.0120410053, -0.0167091023, 0.00454097753, 0.0117585184, -0.0156215271, 0.000516862841, -0.00892658718, 0.0086441, -0.00179997145, -0.0165254865, -0.0025671, -0.00122352154, -0.0123729277, -0.0040854672, -0.0181639101, 0.00134887511, 0.032062266, -0.00912432838, -0.00395128597, -0.0108969333, 0.00977404788, -0.0398306586, 0.00777545292, 0.0150424289, -0.0176554341, 0.00546965329, -0.00614409102, -0.00299789268, 0.00367939239, -7.21665856e-05, 0.0199859515, -0.0366103053, -0.00705158, 0.0181215368, -0.0267797615, -0.00855229236, 0.00186441373, -0.0366103053, 0.017457692, 0.00455157086, 0.0244351197, 0.0259181764, 0.0045656953, -0.0143573983, 0.0121257519, -0.0125777312, -0.00201448495, 0.00108845753, 0.0112782912, 0.0157910194, -0.0154520357, 0.0155367814, -0.0125918556, 0.0220763534, 0.00156868529, 0.0110664256, -0.00952687208, 0.0331922136, -0.012062192, -0.0217514932, 0.0115607781, -0.000247396762, 0.00766952, -0.00410312274, -0.0298306197, 0.0258758031, 0.014223217, -0.0249012224, 0.0137853622, 0.00658194581, 0.00377473165, 0.0205650497, 0.0192938577, -0.0072034169, 0.00239584222, -0.00582982413, -0.0362430736, 0.0150565533, -0.0195339713, 0.0023146274, 0.00812856201, 9.26358553e-05, -0.00791669637, -0.0180509146, 0.0140254768, -0.0170904603, -0.0105861975, 0.0282628182, 0.00908195507, -0.00367939239, -0.0109110577, -0.0251978338, -0.0136017464, 0.00547671551, 0.0167514756, -0.0176271852, 0.00766952, 0.00534253428, -0.0285876784, 0.00277719973, 0.00089380634, -0.0094986232, -0.00912432838, 0.0317515321, 0.0132557, -0.0193362311, -0.0204520542, 0.0128107825, 0.0197317116, 0.00850991905, 0.0207910389, 0.0179661699, -0.0113347881, -0.0229944363, -0.0118644517, -0.0182769056, 0.000188692444, 0.0256356895, 0.0227119494, -0.00803675316, 0.014604575, 0.000658989069, 0.000280059321, -0.00139213097, -0.0266950149, -0.000301245833, -0.0182062835, 0.0136299944, 0.0205650497, -0.0217514932, 0.0152684189, 0.0263560303, -0.0172175784, -0.00329273823, 0.00675143767, 0.00699508283, 0.014413896, 0.0341526717, 0.00430086348, 0.00951274764, -0.00824155658, -0.000813474122, 0.00897602271, 0.00119703833, -0.0291244034, 0.0172034539, 0.0142797148, -0.0301978532, 0.0191949867, -0.0247176066, 0.0116243372, -0.0140890358, -0.00757771218, 0.00597813, 0.00438560965, -0.0200000759, 0.00911726616, 0.00105226389, -0.00158280961, 0.00578392, 0.0120904408, 0.00567798736, -0.00751415268, -0.0230368096, -0.00569917401, -0.0094138775, 0.00121028, 0.0246893577, 0.00733053591, -0.0115184048, -0.0245057419, 0.0170057137, -0.018827755, -0.0033810155, -0.00915257633, -0.00576626463, 0.0158051439, 0.0113277258, -0.0254520737, -0.0135664353, -0.0303390976, -0.0102048405, -0.0292938948, 0.0104943896, 0.00382769806, 0.0106850686, -0.00482699554, 0.00807912648, 0.0403108858, -8.4249521e-05, -0.0037429519, -0.0210594013, -0.00392303709, 0.00679028, -0.00878534373, 0.0160593819, 0.0274859797, 0.0070445179, -0.0340679251, 0.0263560303, 0.0051553864, -0.0154520357, 0.0027171711, 0.0125424201, 0.000662961509, 0.019081993, -0.0109675555, -0.0104943896, -0.0103037106, 0.00171787373, 0.0366668031, -0.00535312761, 0.0311865583, -0.0237854, 0.0219492353, -0.0258758031, 0.00545199774, -0.00681499718, -0.0382487327, -0.00411724718, 0.023432292, 0.0142655903, 0.00646541966, 0.0022810821, -0.00764833391, 0.000260196946, -0.0239125192, -0.00971048884, -0.0151695488, -0.00696683396, 0.00869353581, 0.00837573782, 0.00483052665, 0.0199294537, -0.0129943993, 0.0143715227, -0.0264831502, -0.000505828182, -0.0311300606, -0.00340573303, 0.0124929845, -0.0175706875, 0.0137924245, -0.0218221154, 0.0228249449, -0.0181497857, -0.00978817232, -0.0185452681, 0.0301131066, 0.00384182227, 0.00328214513, 0.0234464165, 0.00872884598, 0.0112571046, -0.00377120054, -0.0187712573, 0.00114495482, -0.0073870332, 0.0150000565, -0.000125574268, 0.0203531832, 0.0133121973, 0.0115819648, -0.0195904691, 0.00120056944, 0.000859378197, -0.010190716, 0.0360735804, 0.0418363139, 0.0375425145, -0.00918788742, 0.0273729842, 0.00757771218, 0.0121751865, -0.00940681528, 0.00125618407, -0.0132839484, -0.0234746635, 0.00527191255, -0.0096963644, -0.0112288557, 0.0155791547, -0.000682823884, -0.00322388206, 0.00517304195, -0.00467515877, 0.0106144464, -0.00460806815, 0.000400778343, -0.0118856374, -0.00918788742, -0.015113051, 0.00125177018, 0.00132592302, 0.00972461235, -0.00177878491, -0.00701626949, -0.013460502, 0.00350107253, -0.00602403376, 0.0114830937, -0.0123234922, 0.00910314173, 0.000961338344, 0.0152825434, -0.0370905362, -0.00413490273, -0.00270128134, -0.0228673182, 0.0184605215, 0.00828392897, 0.00694917841, 0.00212571421, 0.016243, 0.00706923567, 0.0164972376, -0.00310205971, 0.00772601785, -0.0223588403, -0.034887135, -0.00145215937, -0.00382063584, 0.0069456473, -0.00846048351, 0.00605581375, 0.00207627891, -0.0204238053, 0.00316208811, -0.00821330771, -0.00377826276, 0.00403603213, 0.00692093, -0.00338454661, 0.00604168931, 0.00286547677, 0.016511362, -0.0222599711, 0.00695977174, 0.000570270524, 0.032062266, 0.00231639296, 0.000963103899, -0.00908901729, 0.00377473165, 0.00807206426, -0.000834660605, -0.0236724056, 0.0157627705, 0.0068856189, -0.0153531646, -0.00335453241, -0.00557911675, -0.0047493116, 0.00270128134, 0.00661019422, 0.00463984814, 0.00093750353, -0.0156639013, 0.000259755558, -0.00099841482, -0.0141243469, 0.00506357849, -0.0171752051, -0.00271187467, 0.00568504957, -0.00168521109, 0.0043432368, -0.00497177, 0.0120410053, 0.00791669637, 0.0174859408, 0.010381395, -0.0136582432, 0.0171469562, -0.000971931615, -0.00407487387, -0.00571329845, 0.0145904506, 0.000116305171, 0.000417109608, 0.0277684666, 0.0352543704, 0.00963280443, 0.00691739889, -0.0130579583, -0.0182345323, -0.00913845282, -0.000342736108, -0.0140678491, -0.000459041272, -0.012761347, 0.00768364454, -0.0111017367, -0.00681852829, -0.0105155762, -0.00661725644, 0.000568946358, -0.00951274764, 0.00285841478, -0.0241243839, 0.0359040909, -0.0081356233, -0.017556563, -0.0145198284, 0.00709748408, 0.00819212105, 0.00975286122, 0.0136582432, -0.0118997619, 0.021017028, 0.0278814603, -0.000442489312, -0.0198447071, -0.0154237868, 0.00918788742, -0.0107910009, -0.00151571899, 0.0296046305, -0.00086158514, 0.011299477, -0.0274859797, -0.0204520542, -0.00351519673, 0.0156639013, -0.0175706875, 0.0146893207, 0.00512007577, 0.00283546257, -0.00491880393, 0.00277896528, 0.00341456081, -0.00601344043, 0.0170057137, 0.0113489125, 0.0266243946, -0.0104096439, 0.00852404349, 0.0138701089, 0.00411018496, -0.0323447548, 0.0101695294, 0.0052507259, -0.00216279062, -0.00287077343, 0.0081215, 0.00683265273, 0.00273482664, 0.0295763817, 0.0108545609, -0.00406781165, 0.00401131436, 0.00192973891, -0.0335029513, -0.00573801575, 0.00990116689, 0.00529309874, -0.0101554049, 0.0134534407, -0.0181639101, 0.0023252205, 0.0103672706, -0.000302790693, -0.0205509253, -0.00609112438, 0.00894071162, -0.0117020216, -0.00425495952, -0.0019032557, 0.0194633491, -0.0209464058, -0.0195480958, 0.010127157, 0.00454097753, 0.0172175784, 0.00755652552, -0.00845342129, 0.0224718358, 0.0121045653, 0.0116949594, -0.0379944928, -0.0242373794, 0.0139124813, -0.00056497386, -0.00122352154, 0.0298588686, -0.00109463686, 0.0074859038, -0.0136441188, -0.0194209777, 0.0131073939, 0.00844635908, 0.0178390499, -0.00919495, -0.00872178376, -0.0269775018, 0.00526485033, -0.0151836732, -0.0113559747, 0.00524719479, -0.00855935458, 0.00122705265, -0.00244880863, 0.0166384801, 0.0101977782, 0.00802969094, 0.0127825337, -0.00841104891, 0.0140607869, -0.0188136306, -0.00760596059, -0.011525467, -0.00334040797, -0.00543081155, -0.0138983568, -0.0144068338, 0.0359605886, -0.0108121876, 0.0185452681, -1.18760381e-05, 0.00665256754, -0.00107874698, -0.00681499718, 0.00614409102, 0.00810031313, -0.0149153098, 0.0235594101, 0.00413843337, -0.00923026074, -0.00224753679, -0.00406075, 0.00415962, 0.00432205, -0.00531781651, -0.0131850773, -0.0184322726, -0.0109958043, 0.0245904885, -0.00611231104, 0.00862997584, 0.0023252205, 0.0137359276, -0.00315326033, -0.00550143328, 0.00715045072, -0.0206074212, 0.00388772646, 0.00210276223, 0.00798025634, -0.00175759837, -0.0298306197, -0.0143856471, -0.00155897473, -0.0243927464, 0.00531781651, 0.033050973, -0.000873061188, 0.00521894591, -0.0113559747, 0.021807991, 0.000872619799, 0.0014548077, -0.0112429801, -0.00634183176, 0.0134816887, 0.00445976248, -0.00956218317, -0.0126201035, 0.0438419729, 0.00983054563, 0.013587622, 0.0147458185, 0.040028397, 0.0258193053, -0.0137783, -0.00910314173, 0.00772601785, 0.00170551485, 0.0187995061, 0.00819918327, -0.0123446789, 0.00734466035, -0.0152966678, 0.00908195507, 0.0140042901, 0.00563561451, 0.00856641587, 0.00648660632, 0.0138065489, 0.00914551411, -0.0336724445, -0.000667375396, -0.00680793496, 0.00491527282, -0.011525467, 0.00509535801, -0.000250927842, 0.00793788303, -0.000954276184, 0.00409606053, -0.0104237683, 0.00305615552, -0.0175283141, -0.00520129083, -0.018192159, 0.0252967048, -0.00409606053, 0.0196328424, 0.00470340764, -0.0162006263, -0.0216808729, -0.025522694, -0.0127825337, -0.00355227315, 0.0139548546, 0.000279617932, 0.000501855684, -0.0137218032, -0.0345199034, -0.00574860908, -0.0177825522, 0.0146893207, 0.00704098679, -0.000899985724, 0.0056320834, 0.0168503448, -0.00870766, -0.00643717125, 0.00774014182, -0.00749296602, 0.0374577679, 0.00661372533, 0.0121328142, 0.00350283808, 0.00577332685, 0.00882065482, 0.0101412814, -0.0327402353, -0.00945625, 0.0166384801, -0.00391244423, -0.0114689693, 0.00474578049, -0.00531781651, -0.00725991419, 0.00588632142, 0.000297494058, -0.0143150259, 0.00500354962, -0.0109039955, -0.020381432, 0.0110311145, 0.000393274793, -0.000757418107, 0.00366879907, 0.00737290923, 0.00647248188, 0.0192797333, -0.00776132848, -0.00216455618, 0.00608759327, -0.00739409542, -0.00733053591, -0.00487643061, 0.00337925, 0.00222811569, -0.0103672706, 0.00183439953, 0.0041490267, -0.00811443757, -0.000806853292, -0.00337748439, 0.0098658558, 0.00138506875, -0.0213701371, -0.0112217935, 0.00305085885, -0.00236759358, -0.00182910287, 0.0156497769, 0.0100282859, -0.0130579583, -0.0108616231, -0.0120763164, 0.0111723579, -0.0383617245, 0.00108669198, 0.00654663472, 0.00786726084, -0.00528603699, 0.014604575, -0.00619352609, 0.00275071664, 0.0172740761, 0.0115678404, -0.0143220872, 0.0102684, 0.0107203797, -0.0123093678, -0.00463984814, -0.00289196, 0.0109251821, 0.0180085413, -0.00139742752, -0.0201554429, 0.00686796382, -0.00462925481, 0.00386654, -0.012697788, 0.00568151847, -0.00637361128, -0.00549084, -0.0169350915, 0.0321752615, 0.0148446886, 0.0217232462, 0.0111723579, 0.0113489125, -0.0191949867, 0.017556563, 0.0047140005, -0.000960455567, 0.0138771711, 0.0127472226, 0.00694211666, -0.00580510637, -0.0222175978, -0.00642657792, 0.00583688635, 0.00886302721, 0.00302084466, 0.00478109159, 0.00843223464, -0.00793082081, 0.0118150162, 0.00848167, -0.0134463785, 0.0141737824, 0.00282310392, 0.0140396, -0.0111017367, 0.0255791917, -0.00553674391, -0.00461866148, -0.00838986225, 0.00583335524, 0.0106144464, 0.010889871, 0.00713632628, 0.00814974774, 0.00576273352, -0.0109393066, 0.0188418794, -0.0259181764, 0.00737997098, -0.00768364454, 0.0136229321, -0.00463984814, -0.0241526328, 0.0172317028, -0.0120833786, 0.00998591352, 0.0101765916, 0.0102895871, -0.00450566644, 0.00366879907, 0.0115466537, -0.010444954, 0.00702333124, -0.0120339431, -0.00439620297, -0.0018467583, -0.0156639013, 0.00269951578, -0.0039654104, 0.000549525372, -0.0204379298, -0.0129802749, 0.0162994955, -0.00481993333, 0.017048087, -0.0156639013, -0.00979523454, 0.0231780522, 0.00636301842, 0.0103460839, 0.0027966206, -0.00158280961, 0.0114054102, 0.000624561, -0.00786726084, -0.0129237771, 0.0267373882, 0.0317232832, -0.0235594101, -0.0117302705, 0.000515097287, -0.0060381582, 0.00106991932, 0.00406428101, -0.0193786044, 0.0167373512, 0.0157486461, 0.00867941137, 0.0168785937, -0.0156074036, 0.0238560215, -0.028983159, 0.00860172696, 0.00571329845, -0.0236159079, 0.000906606496, 0.0144562693, 0.0133828185, -0.00814974774, 0.00484465109, -0.00355933537, 0.00877828151, -0.0155932792, 0.0105438251, -0.00617233943, 0.0120763164, 0.0224859603, 0.00192267669, 0.0375425145, -0.00124029419, -0.0225000847, -0.00924438518, 0.00869353581, -0.0199153293, 0.0149718076, -0.00443504471, 0.000762714713, 0.0312148072, -0.0150141809, 0.00423024176, 0.0231780522, 0.0083686756, -0.0183899, -0.00995060243, 0.0146328229, -0.00373235857, -0.00491527282, -0.00571329845, 0.00791669637, -0.0057556713, -0.000925144705, -0.0173305739, 0.00340220192, -0.00711513963, -0.0241385084, -0.0139619168, -0.0106144464, -0.00968224, 0.00944212545, 0.0207062922, 0.000456834328, -0.0198588315, 0.0163277443, 0.00283193146, 0.00285311812, -0.00615115324, 0.00664550532, 0.00516951084, -0.0134110674, 0.00360523956, -0.00276307529, 0.0185452681, -0.0290396567, 0.00164195534, 0.00166843843, 0.0149011854, 0.00181850966, 0.0127684092, 0.0108192498, 0.000761831936, -0.00212924532, 0.0147034451, -0.0187147595, -0.0145480772, -0.00351343118, 0.00944212545, -0.00501767406, 0.0164689887, -0.0219351109, -0.00526131922, 0.00852404349, 0.014604575, -0.00362995709, -0.0228108205, 0.0119845085, -0.0101342192, 0.00633476954, 0.000576449907, -1.12001653e-05, 0.0166243557, -0.00191561459, 0.00628533447, 0.00757065, -0.0294068903, -0.00593222585, -0.00151307066, 0.0149718076, -0.0134816887, 0.00665256754, -0.0140396, -0.0180226658, 0.0172599517, 0.00843929686, 0.0121116275, 0.00477049826, -0.00493645901, -0.000354653515, -0.0295481328, 0.00502120517, 0.0126907257, 0.0224718358, 0.0101483427, 0.0340114273, 0.00704098679, -0.0168927182, -0.0122458087, -0.0275001023, -0.02768372, 0.00691033667, -0.0102048405, 0.00339337438, 0.00647248188, -0.00859466475, 0.016257124, 0.0173446983, 0.00138859986, -0.00135593733, 0.0346329, -0.00541668711, 0.00292727095, -0.0035204934, -0.00106550544, -0.018192159, 0.00599578535, 0.00668434706, -0.0217656177, -0.0214690063, -0.00627474114, 0.0158051439, -0.00486230617, 0.00246293307, 0.000425275241, -0.010317835, -0.0195480958, 0.0102048405, 0.0336441956, 0.00641598459, -0.0279520825, -2.00416762e-05, -0.0200565718, 0.0275989734, 0.00118467957, 0.0128107825, -0.00849579461, -0.00491174171, 0.00305262441, -0.0178955477, 0.00586866587, 0.0109604932, 0.0193362311, 0.0019632841, -0.00216808729, 0.00320446119, 0.00888421386, -0.0215678774, -0.00923026074, -0.0165537335, -0.00169139053, -0.0103107728, 0.000144443518, 0.0138489222, -0.0124576734, 0.0118220784, 0.0123658655, 0.00901133288, -0.0024541053, -0.00555086834, -0.00769776898, -0.0322600082, -0.00682559051, 0.00516244862, -0.0101836538, -0.0109887421, 0.00755652552, 0.000872178411, -0.0145339528, 0.00803675316, -0.00926557183, -0.00493999, 7.89528931e-05, -0.00554380612, -0.00599578535, 0.0394916721, 0.00148658745, -0.00425142841, -0.0116525861, 0.000639568083, 0.00931500643, 0.0025671, 0.00831924, 0.0233899187, 0.0180932879, -0.0120763164, -0.0320905149, 0.00212747976, 0.000497883244, -0.00549790217, 0.0171328317, -0.0138983568, 0.0122811198, 0.0224859603, 0.00826980546, -0.00872884598, -0.0229803119, 0.00590750808, 0.00495058345, -0.0100141615, -0.00609112438, -0.000411371613, 3.5476387e-05, -0.007079829, -0.00241526333, -0.0111935446, 0.0338419341, 0.00250530592, -0.017937921, -0.0184746459, -0.00729522528, 0.0248023532, -0.0101554049, -0.0126624769, 0.0264407769, 0.0120268809, 0.0214690063, 0.00759183662, -0.0154802836, 0.00496117678, -0.00437854743, 0.00923732296, -0.00626414781, 0.0299436152, 0.0191808622, -0.0161017552, 0.0072034169, -0.00336689106, 4.86352e-05, 0.00751415268, -0.00870059803, -0.0193362311, -0.0213560127, -0.00815681, 0.00112553383, 0.0139477924, 0.00982348341, 0.023969017, 0.00584394857, 0.000329715229, -0.0182062835, 0.00081479823, 1.85933786e-05, 0.0177260544, -0.000960455567, -0.0173588227, -0.00770483119, 0.0178955477, -0.00328037958, 0.00140007585, 0.00106727099, 0.00486936839, 0.00551908836, -0.00176377781, -0.00100459415, -0.0241808817, 0.0261159167, -0.0123729277, 0.0120268809, -0.0226837, 0.000159229938, -0.00684677716, 0.0122316843, 0.00283899368, 0.0168220978, -0.00581923081, -0.00544493552, 0.00339514, 0.0269210041, -0.00977404788, -0.00590044586, 0.00271540578, 0.00425495952, -0.00656075915, -0.00492939726, -0.000467869, -0.0487572439, 0.00510242, -0.00778251514, 0.0196469668, 0.0163983665, -0.0322035104, -0.00697742729, 0.00721401, 0.00144509727, 0.00449507358, -0.0051553864, 0.00239584222, -0.0261300411, -0.010508514, -0.016243, -0.0124929845, -0.00691386778, -0.0299718641, 0.0372600257, -0.0281780716, 0.0117726428, -0.00563914562, 0.0106003219, 0.00510595134, 0.00899014715, 0.00655016582, -0.0178249255, 0.00939975306, -0.0158192683, 0.0109463688, -0.00153072609, -0.0120692542, -0.0126130413, -0.002563569, 0.00479874667, -0.00829805341, -0.00243115309, -0.0141879059, -0.00167991454, 0.00742940651, -0.00357875647, -0.00207627891, -0.0117232082, -0.0188842509, 0.00670553371, -0.0197317116, -0.0156215271, 0.0208475366, 0.00127207395, 0.0187006351, -0.00439267186, -0.00449860422, -0.00532841, 0.0165537335, 0.00249824394, -0.00415962, 0.0139548546, -0.0204520542, 0.0095339343, 0.00855229236, 0.0142373415, -0.0116031505, -0.00839692447, 0.0044668247, 0.00584747968, 0.00702686235, 0.0208051633, -1.64830017e-05, -0.00777545292, -0.00773308, -0.0101200948, 0.0122175599, -0.00429733237, 0.0131709529, -0.000979876611, 4.22902813e-05, 0.00332804932, -0.0736725926, -0.0136864921, -0.00507770246, 0.0191102419, 0.036384318, -0.0074505927, -0.0247458555, -0.000320887513, 0.0252543315, 0.00971048884, 0.0201836918, 0.00949156098, 0.0197740849, 0.0209605303, 0.000468751765, -0.0156780258, 0.00571329845, -0.00157574739, -0.0122316843, -0.0155085325, -0.0115325293, 0.0017867299, -0.00763420947, 0.00321328896, 0.0176413096, -0.0116102127, -0.000728728, -0.0035840529, 0.00826274324, -0.0138347978, -0.0150706777, -0.0179802943, -0.00480580889, 0.0198305827, 0.02228822, -0.000995766488, 0.00862291362, -0.0122952443, -0.0057556713, 0.0179802943, 0.00790963415, -0.0039654104, -0.0182345323, -0.0155650303, -0.0150000565, 0.0121257519, 0.0176413096, 0.00631005177, 0.0208899081, 0.0184605215, -0.0106709441, 0.0167373512, 0.00973167457, -0.00753533887, 0.00615115324, 0.000312501186, -0.0318645276, -0.006444233, 0.0081215, -0.013396943, -0.00980935898, 0.00987291802, -0.00188913138, 0.00834042672, 0.0103743328, 0.0193786044, -0.00866528694, -0.00792375859, -0.00507064071, 0.0290396567, 0.00517657306, -0.017302325, -0.00586513523, 0.0111935446, -0.00622883672, -0.00891246274, 0.0107203797, -0.00406781165, 0.024858851, -0.010826312, 0.0197599605, -0.0124717979, -0.00471047, -0.00269598467, -0.0122034354, 0.00850285683, -0.0023746558, 0.00445976248, 0.00522247702, -0.0161158796, 0.00699508283, -0.00148747023, 0.00307381107, 0.00884184148, 0.00400425214, 0.00384182227, 0.00505298516, -0.00074903178, -0.00368645461, -0.00849579461, 0.00291138096, 0.0113418503, 0.0096963644, -0.0157486461, 0.00795907, -0.0153814135, 0.0197034646, -0.00268186023, 0.000233713799, 0.00767658232, 0.00473871827, 0.00937150419, 0.0107839387, -0.0174011961, -0.00105667766, 0.0119986329, 0.00934325531, 0.0193079822, 0.00878534373, -0.0106426952, -0.00467162766, -0.00453391531, -0.000169823194, -0.00963986665, 0.00882771704, -0.00453391531, -0.0104308305, 0.00179644034, -0.0196893401, -0.0148164397, -0.011716146, 0.0206497945, -0.0134322541, -0.0109816799, -0.00379944919, -0.00533547206, 0.00942094, -0.00550496439, -0.0111794202, 0.00486936839, -0.00200212607, -0.0171893295, 0.0106215086, 0.00173199805, -0.0268503837, -0.00542728044, 0.00375707634, 0.00806500204, 0.0160593819, -0.0101342192, 0.00100547692, -0.0213560127, 0.000216720451, -0.0277119689, -0.033559449, 0.0184605215, -0.00578038907, -0.00216808729, -0.0168503448, 6.17940168e-05, 0.00429027, 0.00382063584, -0.0110734878, -0.0309605673, 0.0118008917, 0.00214513508, -0.0128107825, -0.0186582617, 0.0154379113, -0.0275142267, 0.0167373512, -0.00973167457, -0.00563914562, 0.0168503448, -0.0140113523, -0.0203108098, -0.0172740761, -0.0072034169, 0.00954099651, 0.0286724232, -0.0140890358, 0.00109993352, -0.0176554341, 0.0045268531, -0.0139266057, -0.0172175784, -0.00574860908, 0.000315811572, 0.0156356525, 0.00674790656, -0.00130297104, 0.0138136111, -0.00323977205, 0.000798466965, -0.0119845085, 0.00137094443, -0.0128390314, 0.00867941137, -0.00669847149, 0.000718134746, 0.0129590882, 0.0051342, -0.00532841, 0.0185735151, 0.00963280443, -0.0121822488, -0.0283758119, 0.00618999498, -0.00245057419, -0.00633476954, -0.00722813467, -0.0161865018, 0.00691386778, 0.00299789268, 0.0177825522, 0.00742234429, -0.00429380126, 0.0259887986, -0.0250565913, 0.0254803207, 0.0157910194, -0.00274718553, -0.00428320793, -0.00800144207, 0.00916670077, 0.00549790217, 0.00452332199, 0.000543346, 0.00239054579, 0.00899014715, -0.0149153098, -0.018983122, 0.0152825434, -0.0197317116, -0.0130650206, 0.00451272866, 0.00945625, -0.00580157526, -0.0200000759, 0.0154802836, 0.0197740849, 0.0232204255, -7.87322e-05, -0.00533900317, 0.00388066424, 0.0108192498, 0.00716457469, 0.014858813, 0.0256356895, 0.0213418882, -0.00461866148, -0.00135858555, -0.019491598, -0.0162288751, 0.0271046218, -0.00571682956, -0.00185735163, 0.00590397697, -0.0174153205, 0.00872884598, -0.00792375859, -0.00942094, 0.0119845085, -0.0165819824, 0.00842517242, -0.0111582335, 0.0147881908, 0.00766952, -0.00877828151, -0.00533900317, -0.00788138527, 0.00843223464, -0.00606993819, 0.00586866587, 0.0271611195, -0.00280191726, -0.00187853817, 0.00225283322, 0.00465750322, -0.00827686675, -0.0186865106, -0.00308440416, 0.0058792592, 0.00286547677, -0.0063559562, -0.00975286122, -0.0015722164, -0.00341985747, -0.013714741, 0.0146751963, 0.0112641668, -0.0124294255, 0.0296046305, 0.0158051439, -0.0108969333, -0.0137288654, 0.0261441655, -0.00845342129, 0.0117373317, 0.0203955565, 0.00931500643, 0.00536372047, -0.0202260651, -0.0151554244, -0.0301413555, -0.0258616786, -0.0195904691, -0.0224718358, -0.00169403886, -0.034378659, -0.0278955847, 0.0122669954, 0.0250000935, 0.0061370288, -0.00835455116, 0.00547671551, -0.0110876122, -0.0183757748, -0.0128390314, -0.0258758031, 0.00689974334, 0.00766952, -0.00611584214, -0.00337042217, -0.0195339713, 0.00812856201, 0.0319492742, -0.00483052665, -0.0110311145, 0.00614409102, -0.00313030835, -0.00155456096, 0.00343927834, -0.0120692542, 0.00538490713, 0.00259005208, 0.0131144561, -0.00596400537, -0.0027860275, -0.00237289025, -0.0183616504, 0.021172395, 0.00644070236, -0.0173870716, 0.00227578543, -0.0226554517, -0.00197034632, 0.0226413272, 0.0182769056, -0.00141773128, 0.00483405776, 0.0136864921, 0.0184181482, -0.00546259107, -0.0184181482, 0.00477049826, -0.0126271658, -0.0223729648, 0.0361865759, 0.00400425214, -0.0233899187, 0.00142302795, -0.0149435587, 0.0171469562, 0.0141667202, -0.0041490267, 0.0233616699, -0.0223729648, -0.023587659, -0.00341985747, -0.00323447539, 0.00883477926, -0.00719635468, 0.0640680343, 0.0118644517, 0.0108969333, 0.00409959164, -0.00110523019, -0.00398306595, 0.000652809627, 0.0360735804, -0.00332628377, 0.000651485519, -0.000500531518, -0.00156250584, 0.000205354765, -0.0126695391, -0.0168220978, -0.0157203972, -0.0182769056, -0.000817887951, -0.00752121443, -0.00253885123, 0.0016657901, 0.00910314173, 0.00278955838, -0.0075847744, -0.00504945405, -0.00444916915, -0.0137924245, -0.00973167457, 0.010826312, 0.00195622211, -0.00175759837, 0.00689621223, -0.00176819169, 0.0200000759, 0.00494352123, 0.00745765492, 0.0292938948, -0.017556563, 0.0125989169, 0.0222317223, -0.0012438253, -0.00462219259, 0.00154838152, 0.00965399109, 0.00450566644, 0.0111017367, 0.00200742274, -0.0283334404, -0.00392303709, -0.00810031313, 0.00867234915, -0.00882771704, -0.0104590785, -0.0138912946, 0.0156780258, -0.0230085608, 0.0205791742, 0.0111723579, 0.00934325531, 0.0426555276, 0.00226166099, -0.0129732126, -0.00121645932, 0.00172758417, -0.0107415654, -0.00148923579, -0.00661372533, -0.000961338344, -0.019491598, -0.00244174642, -0.00975286122, -0.00730934925, 0.0106780063, -0.0331922136, -0.00571329845, 0.00637008, -0.00787432306, 0.0256356895, 0.00182027521, -0.0290114079, -0.0222740956, 0.00910314173, 0.00304026576, -0.0124082388, 0.0111511722, -0.0119774463, -0.00016209895, -0.0133404452, -0.0190961175, -5.71594646e-05, 0.0107910009, 0.0135452487, 0.00583688635, 0.00682912162, 0.00388066424, -0.00711160852, 0.00583335524, 0.00524366368, 0.0107274409, 0.0064195157, 0.0185452681, -0.00624649227, 0.000984290382, -0.0158051439, 0.00227225432, 0.0243644975, -0.0068220594, -0.00139919308, 0.0227401983, -0.00954099651, 0.0160028841, -0.0108545609, 0.0207345411, 0.028728921, -0.00334040797, -0.00280897948, -0.00193150446, 0.0181356613, 0.0136441188, -0.0164972376, 0.00309676304, 0.0249577202, -0.00804381538, -0.010826312, 0.00241173222, 0.0017152254, 0.0104096439, 0.0368645452, 0.00453744642, 0.00175141904, 0.0163559932, -0.000844371098, 0.0417798162, -0.000228858553, -0.00250883703, 0.00160752726, 0.00983054563, -0.00954099651, 0.00235346938, 0.0174011961, 0.0119774463, -0.00249647838, 0.00709748408, -0.00372529635, 0.0163418688, -0.00131003314, -0.0183757748, 0.00819918327, 0.0141455336, -0.00151748455, -0.00581923081, -0.0125141712, 0.00879946817, -0.0062959278, 0.00210276223, -0.0138701089, 0.00983054563, -0.0157062728, 6.92975736e-05, -0.0041490267, -0.00896189827, 0.0207486656, 0.0183192771, -0.00394422375, 0.000894247729, 0.00740115764, -0.00411018496, -0.00655722804, -0.0249294713, 0.0115042804, 0.0107486276, 0.0172458272, 0.00616880832, -0.00318150921, -0.0048481822, 0.017937921, -0.0199294537, 8.84426845e-05, -0.00871472154, -0.0151554244, 0.00590397697, 0.0118008917, 0.00929382, 0.0668364093, -0.00600284757, -0.000220030837, -0.00987998, -0.00182380632, 0.0259181764, 0.0190961175, 0.0190537442, -0.00527897477, -0.000831570942, 0.00182910287, 0.00992941577, 0.00612290436, 0.00514832418, 0.0181780346, -0.00596753648, -0.012161063, -0.00262183184, 0.00931500643, -0.0159605127, 0.0201413184, -0.00655369693, 0.00227048877, -0.00164725189, 0.00937856641, -0.00381357362, -0.0381922349, 0.0162147507]
10 Dec, 2017
Things one should know before choosing Computer Science as their major 10 Dec, 2017 So it’s time for you to go to college and your dream of studying computer science and engineering is finally getting closer. Computer scientists are the people that will play major part in the upcoming age of human advancement. They are the ones who solve the problems by writing plenty of lines of codes, use their creativity and develop apps, software and also the web pages which we see every day in our digital devices. But the world is competitive out there; the companies are looking for the people who have a versatile set of skills. The upcoming engineers need to saturate themselves from the usual computer techies to the real computer technocrats. Computer science is a field that requires dedication and lots of passion. Here are some things that I think I should have known before coming to college. I think these 5 points will be helping every computer science fresher a lot. 1. It’s not necessary for you to have a computer science background from your school. Such kind of uncertainty has been observed among lots of freshers that they cannot perform like those guys who have CS background from their schools. I want you guys to know that it’s merely a rumor. It all depends on how much and how often you practice your skills rather than having a past experience. There are plenty of friends of mine who are performing extraordinarily inspite of not having computer science in their school. If you are ready to learn new things and have interest in them, nothing can stop you from mastering them. 2. Problem solving skill is preferred over number of programming language you know If you think that learning numerous of program languages will lead you to the ultimate mastery of computer programming than let me be very frank, you are terribly wrong here. A good computer programmer is the one who understands the problem carefully and then tries to solve it step by step, with proper dedication and patience, and then codes it in a particular language. Problem solving attitude is very important to study computer science. If you are good in solving problems and you have mastery in one language only, then you can be hired by any of the top IT companies anywhere in the world. The one with an extraordinary problem solving skills will always be in demand. 3. Attitude toward learning new things always comes first A computer technocrat is the one who keeps on learning throughout his life. Therefore, one must not give up his learning attitude. As we all know the technology is advancing at a very high rate and new things keep on coming every time. So, from time to time you will have to keep on updating yourself with the new things. You always need to be ready to learn new technologies that are in demand and familiarize yourself with them. 4. Never hesitate to use your creativity It has been observed that most people do not think of the word “creative” when they hear computer science. However, being a computer science student let me tell you that I enjoy computer science not just because it has math, coding, algorithm or data structure but also because I can use my creativity while developing my own apps, and web pages both at frontend and backend. Moreover, the projects that we do in college can be made unique by applying our creativity. And that’s how computer science can be a fun. 5. You don’t have to be genius to write a code This myth is one of the myths that suppress the skill of coding of a lot of freshmen students. Programming is not an exceptional skill, it isn’t meant for geniuses. Writing codes is fun. It’s just like removing the bricks from a dark room, one by one and at the end what you find is light! As the Bill Gates said,”Everyone in this world should learn how to write code, because it teaches us how to think.” Anyone can be a master in coding, what it takes to succeed has a lot more to do with creativity, common sense, dedication and hard work than it does with raw brain power. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2/Difference between IBM DB2 and MongoDB/Difference between SQLite and IBM DB2/Difference between MySQL and IBM Db2/SQL Tutorial/How to SQL Select from Stored Procedure using SQL Server?/SQL Query to Rename Stored Procedure/Basic Query in PL/SQL procedure/How to Write a Normal Select Procedure in PostgreSQL?/PostgreSQL – SELECT INTO/How to Select Dates Between Two Dates in PostgreSQL?/How to Select Row With Max Value in PostgreSQL/PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows/PostgreSQL – IS NULL operator/PostgreSQL – NOT LIKE operator/SQL LIKE Operator/SQL Server Max Function Takes Two Values Like Math.Max in .NET/SQL Server NULL Values/NULL values in SQL/How to Set a Column Value to Null in SQL?/SQL IS NOT NULL Operator/SQL | NULL functions/SQL – SELECT NULL/SQL Query to Exclude Null Values/How to Filter Null Values to Last While Sorting Ascending in SQL?/How to Insert Rows with NULL Values in SQL?/SQL Query to Insert Multiple Rows/SQL Query to Add Email Validation Using Only One Query/SQL Query to Add an Agent Parameter in a Database/SQL Query to Get First and Last Day of a Month in a Database/SQL Query to Convert Date Range to Per Day Records/SQL Query to Check if Date is Greater Than Today in SQL/SQL Query to Get a Financial Year Using a Given Date/How to Group by Day, Date, Hour, Month or Year in SQL Server/SQL Query to Convert DateTime to Date in SQL Server/SQL Query to Convert Date Field to UTC/SQL Query to Convert Rows to Columns in SQL Server/SQL Query to Count the Number of Rows in a Table/SQL Query to Delete Duplicate Rows/SQL Query to Find Duplicate Names in a Table/How to Query Two Tables For Duplicate Values in SQL?/SQL – SELECT from Multiple Tables with MS SQL Server/How to Update Two Tables in One Statement in SQL Server?/Find all Tables that Contain a Specific Column Name in SQL Server/Copy Tables Between Databases In SQL Server/List All Databases in SQL Server/Top 10 SQL Databases To Learn in 2025/Top 10 Reasons to Learn Java in 2025/Top 5 Reasons to Learn Game Development/10 reasons to learn Python in 2019/Top 7 Reasons to Learn Golang/Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter/Is it Worth to Learn Python in 2020?/Python vs Java – Who Will Win the Battle in 2020?/How to Become a Freelance Programmer in 2020?/4 Personality Traits of a Great Programmer/Why Learning Web Development is a Great Career Move in 2025?/30+ Web Development Projects with Source Code [2025]/Top 10 Golang Project Ideas with Source Code in 2025/Top 10 Vue.js Project Ideas for Beginners in 2025/Top 10 Docker Projects Ideas for Beginners [2025]/Top Gen AI Project Ideas for Beginners in 2025/Top 12 Spring Project Ideas For Beginners [2025]/Top 10 R Project Ideas for Beginners in 2025/Top 10 Rust Project Ideas With Source Code in 2025/Top 10 C# Project Ideas for Beginners in 2025/Top 10 GoLang Projects Ideas for Beginners in 2025/The Future of Golang in 2025 [Top Trends and Predictions]/The Future of 3D Modeling in 2025 [Top Trends and Predictions]/The Future of Robotics in 2025 [Top Trends and Predictions]/10 Essential Skills for a Successful Career in Robotics Engineering/Software Testing Career Path – Skills, Salary and Growth/Why Non-Linear Career Paths are a Great Option to Achieve Career Success?/How to Build a Great Product from Scratch?/UI Design Process: 6 Easy Steps To Create Great UI/Content Improvement League 2024: From Good To A Great Article/Rank Improvement Course for GATE Exam: Crack GATE Now!/GATE DA 2025 Answer Key (Now Available) Download PDF/GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence/200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025/How To Ace Hackathons/How to Use the STAR Method To Ace Your Job Interview?/Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation/10 Ways to Find and Get Your Dream Internship/How to land your Dream Job: Three 90 Challenge/10 Tips For Landing Your Dream Internship/2-Page Resume Ship or Sink Your Dream Job Opportunity!/Things every final year student should do to get a job in their dream company/Things one should know before choosing Computer Science as their major
https://www.geeksforgeeks.org/things-one-know-choosing-computer-science-major?ref=asr9
Languages
Things one should know before choosing Computer Science as their major
PHP | IntlChar::isUWhiteSpace() Function, Difference between MySQL and IBM Db2, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, SQL procedure, 4 Personality Traits of a Great Programmer, GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence, SQL – SELECT NULL, PHP | IntlChar::isspace() Function, 2-Page Resume Ship or Sink Your Dream Job Opportunity!, Difference between IBM DB2 and MongoDB, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, PostgreSQL – NOT LIKE operator, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Write a Normal Select Procedure in PostgreSQL?, How to Select Row With Max Value in PostgreSQL, Top 7 Reasons to Learn Golang, Why Learning Web Development is a Great Career Move in 2025?, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, SQL Server Max Function Takes Two Values Like Math.Max in .NET, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, NULL values in SQL, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, 10 reasons to learn Python in 2019, Top 5 Reasons to Learn Game Development, SQL Query to Convert Date Range to Per Day Records, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, Software Testing Career Path – Skills, Salary and Growth, AngularJS angular.isDefined() Function, SQL Query to Convert Date Field to UTC, Content Improvement League 2024: From Good To A Great Article, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, List All Databases in SQL Server, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, How to Group by Day, Date, Hour, Month or Year in SQL Server, PHP IntlChar::charName() Function, Why Non-Linear Career Paths are a Great Option to Achieve Career Success?, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, Top 10 Vue.js Project Ideas for Beginners in 2025, Find all Tables that Contain a Specific Column Name in SQL Server, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, Top 10 Golang Project Ideas with Source Code in 2025, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, Copy Tables Between Databases In SQL Server, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, The Future of Robotics in 2025 [Top Trends and Predictions], PostgreSQL – Drop Procedure, Top 12 Spring Project Ideas For Beginners [2025], Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, PostgreSQL – SELECT INTO, Mongoose Queries Model.replaceOne() Function, GATE DA 2025 Answer Key (Now Available) Download PDF, Angular PrimeNG Form Calendar Touch UI Component, SQL Query to Rename Stored Procedure, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top Gen AI Project Ideas for Beginners in 2025, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, The Future of Golang in 2025 [Top Trends and Predictions], How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, SQL Query to Check if Date is Greater Than Today in SQL, MongoDB insertOne() Method – db.Collection.insertOne(), The Future of 3D Modeling in 2025 [Top Trends and Predictions], Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, SQL Query to Get a Financial Year Using a Given Date, Mongoose Query.prototype.limit() API, How to Use the STAR Method To Ace Your Job Interview?, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, Things one should know before choosing Computer Science as their major, PHP | IntlChar::forDigit() Function, Python vs Java – Who Will Win the Battle in 2020?, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], Top 10 C# Project Ideas for Beginners in 2025, 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, 10 Ways to Find and Get Your Dream Internship, Top 10 Python REST API Frameworks in 2025, UI Design Process: 6 Easy Steps To Create Great UI, Difference between SQLite and IBM DB2, Top 10 JavaScript Frameworks to Use in 2025, How to Query Two Tables For Duplicate Values in SQL?, How to Get All Keys of an Associative Array in PHP?, 30+ Web Development Projects with Source Code [2025], Top 10 Reasons to Learn Java in 2025, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, SQL Query to Find Duplicate Names in a Table, How to land your Dream Job: Three 90 Challenge, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation, Top 10 Deep Learning Tools You Must Know [2025], How to Build a Great Product from Scratch?, 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, SQL Query to Insert Multiple Rows, How to Update Two Tables in One Statement in SQL Server?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, SQL Tutorial, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Top 10 SQL Databases To Learn in 2025, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How to Filter Null Values to Last While Sorting Ascending in SQL?, How to Become a Freelance Programmer in 2020?, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, SQL Query to Delete Duplicate Rows, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, How To Ace Hackathons, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Basic Query in PL, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, SQL Query to Add an Agent Parameter in a Database, Mongoose Document Model.count() API, SQL Query to Get First and Last Day of a Month in a Database, Languages, Mongoose Document Model.estimatedDocumentCount() API, PostgreSQL – IS NULL operator, PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows, Is it Worth to Learn Python in 2020?, 10 Essential Skills for a Successful Career in Robotics Engineering, Things every final year student should do to get a job in their dream company, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, SQL IS NOT NULL Operator, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, SQL Query to Convert Rows to Columns in SQL Server, Tensorflow.js tf.Tensor Class, SQL LIKE Operator, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, SQL Query to Exclude Null Values, How to SQL Select from Stored Procedure using SQL Server?, SQL Server NULL Values, SQL | NULL functions, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, Top 10 GoLang Projects Ideas for Beginners in 2025, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, How to Insert Rows with NULL Values in SQL?, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, SQL Query to Add Email Validation Using Only One Query, SQL – SELECT from Multiple Tables with MS SQL Server, Top 10 R Project Ideas for Beginners in 2025, 200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025, Difference between MS SQL Server and IBM DB2, SQL Query to Count the Number of Rows in a Table, Top 10 Docker Projects Ideas for Beginners [2025], PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, How to Select Dates Between Two Dates in PostgreSQL?, SQL Query to Convert DateTime to Date in SQL Server, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Rank Improvement Course for GATE Exam: Crack GATE Now!, 10 Tips For Landing Your Dream Internship, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, Top 10 Rust Project Ideas With Source Code in 2025, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, How to Set a Column Value to Null in SQL?, Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[0.00814144872, 0.00108911202, -0.012040738, 0.0304413531, 0.02777908, 0.00380180776, -0.00814817101, 0.00269756909, -0.0134659959, 0.00676325103, 0.00424888125, -0.0563111231, 0.0604524389, -0.0190258455, -0.0142660225, 0.0260311216, 0.0021647783, 0.0187031459, -0.0405526161, -0.0196981374, -0.00354969851, -0.0266092923, -0.0410097726, -0.01271303, -0.025789097, 0.0230864845, -0.00484722061, 0.0112944953, -0.0242831632, -0.00391945848, 0.0360348187, 0.0187031459, 0.0044774604, -0.0512017086, 0.00249924324, -0.014252577, -0.0390466824, -0.0613667555, -0.00902887341, 0.0292312279, 0.0137281893, 0.000183094351, 0.0212578531, -0.0203569829, 0.0195905697, -0.022373857, -0.0368415676, -0.0588389412, 0.0101852138, -0.0399341062, -4.37777235e-05, 0.0226427726, 0.0904097408, 0.0200880654, -0.0023479776, 0.025479842, 0.0230730399, -0.0731453, 0.0144139268, -0.00162862579, 0.00548589742, -0.00358331297, -0.0659921169, -0.0508252271, 0.0130357295, -0.00234629679, -0.035927251, 0.0282631293, -0.0143063599, -0.00543883722, -0.0328347087, 0.00415139925, -0.0163097885, 0.0184073374, -0.00770445913, -0.0272950288, 0.0479747131, 0.0243503936, -0.00873306487, -0.0120743532, -0.000990789384, 0.0088675227, 0.0218763612, -0.0185821336, 0.0124172214, 0.00179837935, -0.00856499188, -0.0497495607, 0.0173585638, 0.0332380868, 0.0126995835, -0.00576153677, 0.0258563254, -0.0380785838, -0.0186628085, 0.0365995429, -0.0231671613, 0.00723385485, -0.0103263957, 0.020020837, 0.0164039098, -0.0149114225, 0.00326733594, -0.0473024212, 0.00113617245, -0.0559884235, -0.0331843, 0.0253453851, 0.00606406806, 0.00609095953, -0.00538505381, 0.0155433761, -0.0117718214, 0.0212578531, 0.0131970793, 0.00543211401, -0.0241487063, -0.0742747486, 0.0178560577, 0.0174392387, 0.00855154637, 0.00109667529, -0.00367743382, 0.0348246917, -0.0403105915, 0.0323775522, -0.0132643087, -0.0246462021, 0.0525194, -0.0272950288, 0.0301455446, -0.00277152122, -0.02542606, 0.0296346042, 0.0234495234, -0.0214326493, 0.063087821, 0.0442905538, 0.0168072842, -0.0149920974, 0.00183703611, -0.0145214936, -0.00497831777, -0.0246596467, -0.0235974267, 0.0202225242, -0.00229923637, 0.0364113, -0.0383474976, 0.0671753511, -0.0522504859, 0.0205721166, -0.00462200306, 0.0106423721, 0.00804060511, -0.00935157295, 0.0301993284, 0.0381323658, -0.0133920442, 0.0108104451, -0.0219301451, -0.0367608927, -0.0248613339, 0.0247134306, -0.0109516261, -0.0111936508, 0.0026908461, -0.0236243177, -0.0614743233, 0.0251033604, -0.00847759377, 0.0140777808, 0.00609095953, 0.0372180492, -0.00419845944, -0.00265891245, 0.0137618044, 0.00616491167, -0.0245117433, 0.000104677863, -0.0458502695, -0.0119667863, 0.013022284, 0.00117987138, 0.0472486354, 0.000244125797, 0.0477326885, 0.00469931681, 0.0192140881, 0.0127533674, -0.00457158126, -0.033507, 0.0288009625, -0.0170762, 0.0500991531, -0.0407139659, -0.0265824012, 0.0299035199, 0.0189720616, 0.0233688485, -0.0387239829, -0.0251705889, 0.00290429872, 0.0519277863, 0.00869272742, -0.0242697187, -0.0118592195, 0.00156307744, 0.0381861478, -0.0292850118, -0.0233822931, 0.0109919636, -0.0121146906, -0.0245117433, -0.0163635723, -0.0273219217, -0.00806749612, 0.012907994, -0.0235974267, -0.0341792926, 0.00529093295, -0.0112877721, 0.019294763, 0.00451107509, -0.0306564867, -0.0273219217, 0.0251840353, 0.00488419691, 0.00433291774, -0.0234495234, 0.0119130034, 0.0247134306, -0.00607751403, -0.00509596849, -0.0162828974, 0.00735486764, 0.0135601172, 0.0144946016, -0.026797533, 0.040633291, 0.0221049394, 0.000681535399, -0.0284513701, -0.0481360629, -0.0243100561, 0.00590607943, 0.00908938, -0.0207065735, 0.0077649653, 0.025089914, 0.00249083946, -0.0242831632, 0.01036001, 0.0441829897, 0.00476654572, -0.00473965425, -0.0212713, 0.0102927806, -0.0110524697, 0.00544556, 0.0177484918, 0.0210696105, 0.0049278955, 0.00779858, -0.00614810456, 0.000734478293, 0.0147097353, 0.0125113418, 0.00224209181, -0.0337221362, 0.0348515846, -0.0401223488, 0.0494268611, -0.000358625432, -0.0150727723, -0.0351205021, 0.0213788655, 0.0114222299, -0.0105751436, 0.0330498442, 0.0302800033, -0.0231537148, 0.0484049767, 0.0228175689, 0.00488755805, -0.0336414613, -0.0415476076, -0.000558001804, -0.0496419929, -0.0141181182, -0.00688426336, -0.0201956332, -0.00862549804, 0.0231806058, 0.0382130407, 0.0163097885, -0.0262328088, 0.00529765617, -0.0384819582, -0.00527748698, 0.0299035199, -0.0334263258, 0.00769101316, 0.00354969851, -0.0180443, 0.00244545983, 0.00192947616, -0.0185149033, 0.0412249081, 0.000678594108, 0.0152879059, -0.0245655272, -0.0107297702, -0.0356852263, 0.0148173021, 0.0310598612, 0.0178560577, -0.00691787805, -0.0506100953, -0.0368953496, -0.00681031169, -0.0198863782, -0.00841708761, -0.00352952955, 0.0186090246, -0.00584893487, -0.0174526833, 0.0336145684, -0.0121819191, -0.0369491316, -0.0166190434, -0.0133180916, -0.0464687794, 0.0222662892, 0.0315170176, -0.0112877721, -0.0116306404, 0.0367608927, -0.0112676034, 0.00322699849, 0.00102356356, 0.000591196236, -0.0542404689, -0.0164039098, 0.0124911731, -0.0279404297, 0.0209217072, -0.00771790463, 0.0126054632, -0.0266361833, 0.00106306071, 0.00832296722, 0.00884063169, 0.00514302915, 0.0194023289, -0.00868600421, 0.0277521871, -0.0177350454, -0.0261252429, 0.0230461471, 0.0201149583, -0.00416148361, 0.0129348859, 0.0323775522, 0.039423164, -0.0762647316, -0.0251033604, 0.015570268, 0.0685737208, 0.0094053559, -0.00369760254, 0.0175736956, 0.0193351, -0.0509327948, -0.0368684568, 0.0204645488, -0.0304682441, 0.0361961685, -0.0447208211, 0.00648761168, 0.0251974799, 0.0026656352, 0.0135063333, 0.0470066108, 0.0107163247, -0.018259434, 0.0240680315, -0.0203435365, -0.0252512638, 0.040687073, -0.0627651215, 0.0274294876, -0.00778513402, 0.00944569334, -0.00587582635, 0.0129214404, -0.0177753828, 0.0104474081, 0.0173182264, -0.0357121155, -0.012376884, 0.0399341062, -0.0224948693, 0.00428585755, -0.0166459344, -0.0369491316, -0.000692039903, -0.0324313343, -0.0160274263, 0.0121483048, -0.0202225242, -0.0303337872, -0.0119130034, 0.0388046578, 0.044129204, 0.043188, 0.00743554253, 0.0423274636, -0.00129752234, -0.00619852636, 0.0250092391, 0.0167400558, -9.5749e-05, 0.00536488509, 0.0214864314, 0.001123567, -0.0163635723, 0.0069582155, -0.0187703744, -0.018622471, -0.0688964203, 0.0156374965, -0.0086725587, 0.0164845847, 0.026743751, -0.037917234, 0.0351473913, 0.0110860849, -0.0209620446, 0.0279404297, -0.0104877455, -0.0255605169, -0.00170846039, -0.0123298233, -0.035873469, -0.00280849729, -0.0612591878, 0.0227906778, 0.0107163247, -0.0179098416, -0.0286933947, -0.00478671445, -0.0211502872, 0.01206763, 0.0340986177, -0.0277252961, -0.0195636787, 0.00607079081, 0.019348545, -0.0153551344, 0.00808094256, 0.0100642014, -0.00784564, 0.0470603965, 0.00669602212, 0.0229923651, -0.018958617, -0.0528421029, -0.00152610138, 0.0260311216, -0.0210696105, -0.0614743233, -0.0187972672, 0.0268916544, 0.00802715868, 0.00942552462, -0.00371104828, -0.0107432157, -0.017694708, -0.0361154936, 0.0161618851, 0.0403643735, 0.0266227387, -0.054159794, 0.00726074679, 0.0273757037, 0.00680695, 0.00125046191, 0.00774479657, -0.0225486532, -0.0473562032, 0.0275639463, 0.00725402404, -0.01859558, 0.0111869285, -0.0238528978, -0.0205452237, -0.0367608927, -0.00299673877, 0.0423812494, -0.0363575183, 0.0131634651, 0.00779185677, 0.0508252271, -0.0382937156, 0.0252647102, -0.0253991671, 0.0374331847, -0.0141450102, 0.00567077752, 4.96340108e-05, 0.0231537148, -0.0262865927, 0.0611516237, -0.00083826331, 0.057709489, 0.0058724652, 0.0275101624, -0.020410765, 0.000686997722, -0.0088608, 0.0109314574, 0.000761790143, 0.00810111128, -0.00852465443, -0.0327271447, 0.0141181182, -0.0163366795, -0.0400416739, -0.0132643087, -0.0292043369, -0.0126659693, -0.0234360769, -0.0170896463, 0.00106390112, 0.00548925903, 0.0321086347, 0.0202763081, 0.0208141413, -0.00341860158, -0.0421661139, 0.0409022048, -0.0208948161, -0.0099431891, 0.00255302642, 0.00481024478, 0.0313825607, 0.000816834, 0.0244982969, 0.0121012442, 0.00121012446, 0.018313216, 0.012544957, 0.00524387276, -0.0315439105, 0.00911627058, -0.00341860158, -0.0128743798, -0.00931123551, -0.0427577309, 0.00717334868, -0.0225620978, 0.00446401443, 0.0202090777, 0.00200678967, -0.000311565032, 0.0141719021, 0.00728763826, 0.0153820263, -0.0191871952, -0.0180039629, -0.0123836072, -0.00989612844, -0.000804648735, 0.0126592461, 0.0123096546, 0.0161887761, -0.0378634483, 0.0237856694, 0.000188766804, 0.00338330632, -0.0069582155, -0.0020286392, -0.0126726925, 0.0109717948, -0.0232074987, -0.00430602627, 0.00621869508, -0.026743751, -0.0184745658, -0.0218091328, 0.0459847301, -0.0346364528, 0.0019193918, -0.00300514232, 0.0257353131, 0.016269451, -0.0234226305, -0.00353289116, -0.0085381, -0.00489428127, 0.00883390848, 0.0294194706, 0.00458838837, -0.0074489885, 0.000190447536, -0.00622877944, 0.00384550658, -0.0187165923, -0.00490436563, 0.0239470191, -0.0131029589, -0.000832380727, -0.0255067348, -0.0205855612, -0.0019210726, 0.00705233635, 0.0116239181, -0.00107986806, 0.0292312279, 0.00395643478, 0.007462434, -0.0336683504, -0.0217956863, 0.00766412169, 0.0415207148, -0.0273488127, -0.0071800719, 0.0121079674, -0.0388853326, -0.00269756909, -0.0113079408, -0.0318397172, 0.00581195904, -0.024390731, 0.00863894448, 0.0132374167, 0.0377289914, -0.0174526833, -0.0182997715, -0.0254932884, -0.0221856143, 0.0195905697, 0.1466133, -0.00921711419, 0.0173182264, -0.00292950962, 0.00898853596, 0.0082154, -0.0599683896, 0.018985508, 0.00136979367, -0.000824397313, 0.0162560046, -0.0235839803, 0.0209217072, -0.0230730399, -0.00267403899, -0.00624894816, 0.0239604637, -0.025815988, -0.027469825, 0.0176812634, -0.007630507, -0.013412213, -0.0107297702, 0.0148173021, 0.0205586702, -0.0224948693, 0.0237856694, 0.00155803526, -0.0180174094, 0.014198794, 0.0462805368, -0.0176274795, -0.0166190434, -0.00435308646, 0.0154089183, -0.0121079674, 0.00457158126, -0.0109449038, -0.0225755442, 0.0418971963, 0.0170762, 0.00585901923, 0.00165047531, -0.0275639463, 0.0444250144, -0.0080338819, 0.0258832183, -0.010669264, 0.0118323276, 0.0177484918, 0.00684056478, 0.000106726256, -0.0128071504, -0.0191603042, -0.0226158816, -0.0164845847, -0.0241352599, 0.00962049, 0.00641702116, -0.03399105, 0.00805405062, 0.00059455767, 0.0466032363, -0.000195909903, 0.0197788123, -0.0122020887, 0.00520353531, 0.00162526441, 0.00478335284, -0.0123365466, -0.0120877987, -0.00397996465, -0.0211099479, 0.0266227387, 0.00610776711, -0.0125987399, 0.000484890159, -0.000825237657, 0.019348545, -0.0127197523, -0.0161215477, -0.0282631293, -0.00240176101, -0.00356986723, 0.0261252429, -0.00697166147, -0.0140374433, 0.049453754, -0.0222797357, 0.0337221362, -0.0157181714, -0.0232747272, 0.00462536467, 0.00606406806, 0.00190594606, -0.0148173021, 0.0409559906, 0.00775151933, 0.018985508, -0.00685064914, 0.0387508757, -0.0133315381, -0.00525395712, -0.00210091053, 0.00810111128, 0.0038656753, 0.0117516527, 0.0149786519, -0.00364045775, 0.0286665037, -0.0167669468, -0.00527748698, -0.00524051115, -0.000894147495, -0.0127735361, 0.00683720317, 0.0387239829, 0.0357390083, 0.0411711223, -0.00394971156, 0.000899189676, 0.0360079259, 0.0106087578, -0.033937268, -0.000854650396, 0.00396651914, -0.0125382338, 0.0110457474, -0.0238663442, 0.051497519, 0.0215536617, -0.0121617503, 0.0190796293, 0.00456485851, -0.0290429872, 0.0122491485, -0.0110860849, 5.04218515e-05, 0.0129886689, -0.0310867522, 0.00497831777, -0.00798682123, 0.0239201263, 0.0202763081, 0.0221318323, 0.0164442472, 0.0139029855, -0.0175064672, 0.0258966628, 0.0171299838, 0.0325657949, 0.0053985, -0.0381861478, -0.0103196725, -0.000363877713, -0.0286127198, -0.0572792254, 0.0202225242, -0.0224679783, 0.0012286125, -0.000885743881, 0.0197250284, -0.0320010707, 0.0156778339, -0.0269454382, -0.0302531123, 0.0275370535, -0.000369129964, -0.0026908461, -0.0053312704, 0.0498571284, 0.0270126667, 0.0218360238, 0.0207469109, 0.018649362, -0.0185283497, 0.0403374806, 0.025815988, -0.0308985114, 0.021701565, -0.00547917467, -0.0301993284, 0.0396383, 0.012739921, -0.0173585638, 0.0158795211, 0.000231730432, 0.0230058096, -0.0418703072, -0.0180443, 0.0235436428, -0.00814817101, 0.0147769637, 0.00337826414, -0.00962721277, 0.0143870348, -0.00438670116, 0.0216477811, 0.00140004675, -0.00432619499, 0.0129819466, 0.0150189893, 0.0162560046, -0.0293925777, 0.00622205669, 0.0209351536, 0.00603717659, 0.021365419, 0.00927089807, -0.0528152101, 0.0283975881, -0.0192544255, 0.0273084752, 0.0069111553, -0.0250226837, 0.00228579063, -0.043188, -0.00481360639, 0.0181384217, -0.00612457423, 0.00593969412, 0.0303875692, -0.0490772687, -0.0241487063, -0.0225620978, -0.00777168805, -0.024027694, -0.00613802, -0.0128407646, -0.0080338819, 0.0186897, -0.0296883862, -0.0229654722, 0.0154358093, -0.0211637318, 0.0163904633, 0.0205990076, 0.00963393506, -0.00363037339, 0.00899525825, 0.0190392919, -0.0178157203, 0.00187569286, -0.0212847441, -0.0030925402, 0.00140088715, -0.0146693978, 0.0103398412, 0.0178022757, 0.00693804678, -0.0122827636, 0.0228847973, 0.0308985114, 0.0115903029, 0.0135802859, -0.0242159348, 0.0156106055, -0.00958015211, 0.0176543705, 0.00127147103, 0.000765992, 0.0141046727, -0.0285858288, 0.0191468578, 0.00626911689, 0.0146693978, 8.73978788e-05, 0.00272109918, 0.0286127198, -0.0341255106, -0.00286396127, 0.0169282965, -0.000571447657, -0.0113482783, -0.0069582155, 0.0124373902, -0.00920366868, 0.0271605719, 0.013190357, -0.0166190434, 0.0113886157, -0.0347440168, 0.0074960487, 0.00808766484, -0.00265218946, -0.00185048196, -0.00157484249, 0.00910954829, 0.022736894, 0.0244982969, 0.00951964594, 0.0048304135, -0.00807421934, -0.0099431891, 0.0268782079, -0.0479478203, 0.00131685066, 0.00216141669, 0.00827590656, -0.00575817563, 0.0114760138, -0.0441829897, -0.00434636371, -0.00363037339, 0.0122491485, -0.00871289615, -0.00790614635, -0.0183938909, -0.00431274902, 0.00756327808, -0.00820195489, 0.00248915888, -0.00937174167, -0.0249151178, -0.0299573038, -0.0109180119, 0.0194695573, 0.00820867717, 0.0125651257, -0.000429426116, 0.00752966339, 0.0174257923, 0.00562035572, -0.00194292201, -0.0200073905, -0.00894819852, -0.000658425328, 0.0101583228, -0.000765151635, 0.0235570893, -0.0136878518, 0.00602373062, -0.0160946548, 0.00540858414, -0.0287202876, 0.0385357402, 0.00185384345, 0.000110507892, -0.0124642821, -0.0157585088, 0.000164501296, 0.0212847441, -0.0659383386, 0.0475982279, -0.0200746208, -0.0168072842, 0.0361692756, -0.0253722761, -0.0137550812, 0.023691548, -0.0202225242, -0.0261790249, 0.0170089714, -0.000555480714, 0.0523849428, -0.0245655272, -0.00685401028, -0.0302262194, -0.0263403766, 0.00211099489, -0.016995525, 0.00901542697, 0.00411778456, 0.0459309444, 0.00953309145, -0.0108104451, 0.0306564867, -0.0257622059, -0.0241621509, 0.00695149275, -0.0292581208, 0.03719116, -0.00699855294, -0.00443712296, 0.0192140881, -0.0102121057, -0.00542539125, 0.0150324348, 0.0029093409, 0.025937, -0.0166728254, 0.0052337884, 0.022400748, 0.00778513402, 0.0272546913, 0.0141853476, -0.00542202964, 0.0019462835, -0.0267840885, 0.0157854017, 0.0146290604, 0.0133382604, 0.0195367876, 0.00524051115, -0.0624424219, 0.0120071238, 0.00277320179, 0.0279404297, 0.00816834, -0.0249957927, 0.0194561128, 0.0164039098, -0.0119600631, -0.0342599675, 0.00790614635, -0.00917677674, 0.0107432157, 0.00104373239, -0.00983562227, -0.0121079674, 0.00233621243, 0.00689770933, -0.00695149275, -0.019012399, -0.0240142476, 0.00257823733, 0.0172106586, -0.0199670531, -0.0233150646, 0.008316244, 0.00548925903, 0.0160274263, 0.0307909437, 0.0157719553, -0.00906248763, -0.0148173021, -0.0225486532, 0.00423207413, -0.00717334868, -0.0085851606, -0.00898181275, 0.00891458336, 0.00302194967, -0.0253453851, 0.00855826866, -0.00690443208, -0.0265824012, 0.00315472716, -0.000280051376, 0.0117785446, 0.0300110858, -0.0234764144, -0.0237991139, -0.0153147969, -0.00793976057, 0.00318161887, 0.0160408728, -0.0217553489, 0.00116054295, 0.00536488509, 0.00168913207, 0.000608843868, 0.0220511574, -0.00669938326, 0.0657769889, -0.00626239413, -0.0154761476, -0.027805971, 0.0183266625, 0.00970116444, -0.00465897936, 0.00696493872, 0.022710003, -0.011845774, 0.00399677223, 0.00570439221, 0.00660526287, 0.0118793882, -0.00941207912, -0.0279673208, -0.013385321, -0.0107297702, 0.0154089183, -0.00133113691, -0.00617835764, -0.000433627923, 0.0159601979, 0.00512286043, 0.0163635723, 0.0109112887, 0.00512958318, 0.0158257391, -0.0308716185, 0.0117180385, 0.0282362364, -0.00845070276, 0.0188107118, 0.0114961825, 0.0250495765, 0.035873469, 0.0133113693, 0.00564388605, -0.00931123551, -0.0166997183, -0.0300379787, -0.0178291667, 0.00342196296, 0.00674644392, -0.00382533786, 0.00575481402, -0.00844398, 0.00383206084, 0.0196174625, 0.00468587084, 0.0218225773, 0.0140643353, 0.00568086188, -0.0311405361, 0.00976839382, 0.00972805638, 0.0191737488, -0.00350936083, 0.00664560031, 0.00186392781, 0.016605597, -0.00178829499, 0.00203368138, -0.0260042306, 0.0053312704, -0.00172022555, -0.0217419025, 0.00762378424, -0.0198729336, 0.0143601438, -0.00285723829, 0.0220780484, -0.0128676565, 0.000288455019, -0.00712628849, -0.0129147172, -0.0152475685, 0.0135668395, -0.00806077383, -0.0289085284, -0.0112541579, 0.0111129759, -0.00421190541, 0.011899557, -0.000778177229, -0.0170762, -0.00477663, 0.0269319918, -0.00911627058, -0.0054657287, -0.0135197798, -0.00246226718, -0.00467578648, -0.0117583759, 0.00789270084, 0.00413123053, 0.0323506594, 0.0343675353, -0.00190426526, 0.000775236, -0.0226831101, 0.00417829072, 0.0266765207, 0.0060069235, 0.0260714591, -0.0161215477, 0.025815988, -0.00081347255, -0.00724730082, 0.0342599675, 0.0141584566, 0.0255739633, -0.000734898495, 0.0125315115, 0.000396231713, 0.0040740855, 0.0125046195, -0.00554640358, -0.00128407648, -0.0199267156, -0.0120205693, 0.0291774459, 0.00782547146, -0.0347171277, 0.00319842622, -0.0105953123, -0.00379844615, 0.0198863782, 0.0118054366, -0.0025311769, 0.0160812102, 0.0282093454, 0.00040043355, 0.0296883862, -0.0370835923, -0.0128205959, 0.00550606614, 0.0116104716, 0.0130021153, 0.000984906801, -0.018313216, 0.0232343897, 0.00360012031, 0.00830279849, 0.00257823733, 0.0206931289, -0.0162828974, 0.00636323774, 0.0147904102, 0.0051497519, -0.0142929144, -0.00507579977, -0.0101515995, -0.00703889038, -0.0147366263, 0.00121936842, 0.0117785446, -0.01624256, -0.0040740855, 0.0071800719, 0.0124911731, 0.014615614, -0.00172106584, 0.000178052171, 0.00287404563, 0.00160845707, -0.0123634385, 0.00182695175, 0.00144374568, -0.00126726925, 0.00561699457, 0.00691787805, 0.0130357295, -0.00917005446, 0.00765067572, -0.0124508357, 0.0520353504, 0.0126726925, 0.0203973204, -0.000379004254, 0.00555648794, -0.000811791804, -0.00989612844, 0.00882718526, -0.0224410854, -0.0116171949, -0.0360348187, 0.000282572466, -0.0133180916, 0.0281017795, 0.0149114225, -0.0103667332, -0.00464553339, -0.017277889, 0.000728595769, 0.0334532186, -0.00893475208, 0.028505154, -0.0151937846, 0.00777841127, -0.0160408728, -0.00640693679, 0.000812632206, 0.0225889906, -0.00757000083, -0.00599347753, -0.0119600631, 0.00330431201, -0.00458502723, 0.0171434302, 0.00703889038, 0.0173989013, 0.0241352599, 0.015933305, 0.0105146365, -0.00509933, -0.0201821867, 0.00990957487, 0.00454469, 0.00200174749, 0.0221452769, 0.00193283765, 0.009855791, 0.00265387027, -0.000887424627, -0.00431947224, 0.0140105523, 0.00565397041, 0.0115230735, 0.0110928072, -0.030522028, 0.0106356498, 0.00612457423, -0.00850448571, 0.0226562191, 0.00177484925, 0.0182325412, -0.0309522953, 0.0140239978, 0.0188779421, 0.0086725587, 0.0146828433, -0.00939191, -0.00730780698, 0.0219435897, -7.43853616e-06, -0.000890786061, -0.00668593775, -0.00956670567, 0.00128659757, -0.00431947224, -0.00881374, 0.0102524431, -0.0148576396, 0.00347574637, -0.00209418754, -0.00779858, 0.0121012442, -0.00977511611, -0.0104339616, -0.0169551875, 0.0121146906, -0.0253453851, 0.00299841957, 0.0206527915, -0.00316481153, 0.000890786061, -0.0140105523, -0.0170358624, 0.000132147266, 0.00748932594, 0.0379441231, 0.0100709246, 0.00968771894, -0.00148996571, 0.0139298774, 0.0058354889, 0.0326464698, -0.029795954, -0.0135735627, -0.00663215434, -0.0248747803, -0.0054657287, -0.0122289797, -0.0411442332, -0.00755655486, -0.00478335284, 0.000250638637, -0.0161753297, 0.00453796657, -3.32731688e-05, -0.00258159894, -0.0088675227, -0.0075834468, -0.0152744595, 0.0308447275, -0.00379508478, 0.00767084444, 0.0239739101, 0.0177350454, 0.017277889, 0.0306295939, -0.0195502322, -0.0100910934, 0.015624051, -0.0322699845, 0.000144962833, -0.0130424527, 0.000425854552, 0.00783219468, 0.0134659959, -0.037917234, -0.00657837093, -0.0300110858, -0.0123163778, -0.00641702116, 0.00450771349, 0.00261017121, 0.00601700787, 0.0148710851, -0.0041110618, 0.00558674103, 0.0527345352, -0.0201821867, -0.0119600631, 0.00783891696, 0.00731453, 0.01100541, 0.0133584291, -0.00262865913, -0.00714645721, 0.0112944953, -0.00228915201, 0.00178157212, 0.0259504467, -0.0168610681, 0.0113482783, -0.011146591, 0.00919694547, 0.0041077, -0.0262865927, 0.00176812627, 0.0112272659, 0.0224948693, 0.031274993, -0.00538841542, -0.000356944685, 0.0402568057, -0.00549262064, 0.0187838208, 0.00747588, 0.00328078191, 0.0151265562, -0.000463040691, 0.00391609734, 0.021365419, 0.00997008104, 0.0278866459, -0.0275639463, -0.00132021215, -0.00945241656, 0.0221183859, -0.00152862247, -0.0300648697, -0.0225889906, -0.0125315115, -0.00390937412, -0.0161349922, 0.0377289914, 0.0165518131, -0.00719351741, -0.0209485982, 0.00413459167, 0.0249016713, 0.00169669534, 0.0349591523, 0.0117247617, 0.0218898077, -0.000310724659, -0.00123113359, -0.014897977, 0.014615614, -0.0125046195, 0.0162291136, -0.0416013896, 0.0320010707, -0.0187300369, 0.0107297702, 0.0132105257, -0.0139971059, 0.0186762549, -0.0307371616, -0.00349255372, 0.0216074437, -0.00912971701, -0.00920366868, -0.0427846238, -0.00106138, 0.0134794414, 0.0165787041, 0.00262193638, -0.0246462021, -0.00764395297, -0.00305052218, 0.00611449, 0.022373857, -0.0107432157, -0.0266092923, 0.00360012031, -0.0180308539, -0.00265723164, -0.00983562227, 0.00823556911, -0.00868600421, -0.00314632361, 0.00202359702, -0.0286933947, 0.0223604105, 0.00198325957, 0.000145593105, -0.0259235557, -0.000139185315, -0.00219503138, 0.00760361552, -0.0418165214, -0.00703889038, 0.0213250816, 0.00734814443, 0.0160408728, -0.020975491, 0.00505563105, -0.0102860583, -0.00380516914, -0.0088608, -0.023718439, -0.00196813303, 0.0096742725, -0.0149383144, -0.0252243727, -0.00568422349, 0.0168745127, 0.0178695042, -0.0173720084, -0.00750277145, -0.0078523634, 0.00232780888, 0.000320388848, -0.0121953655, -0.0129214404, -0.00577162113, 0.0132105257, 0.0067397207, 0.00488419691, 0.0105953123, -0.0085381, -0.0115163513, -0.0191468578, -0.0133584291, 0.00855826866, -0.00646408135, 0.00475646136, -0.0352818519, -0.00707250508, 0.000944569358, 0.0138223106, -0.00385895232, -0.00441023149, 0.00733469892, 0.00960704405, 0.0342868604, 0.0203300901, 0.00823556911, -0.015261014, 0.00806077383, 0.0164039098, -0.0133584291, -0.0136139, 0.00644391263, 0.0239335727, -0.0023496584, 0.00255302642, 0.0112407114, 0.00716662593, 0.0116104716, 0.026434496, 0.0316245854, -0.0146425059, -0.00326397456, 0.0215267688, 0.0198729336, -0.00199166313, -0.00827590656, -0.0149114225, -0.016995525, -0.00273454515, 0.0231133774, -0.00466234051, -0.00692460127, -0.0066892989, 0.0142929144, -0.0112608802, -0.00871289615, -0.011200374, -0.000150215099, 0.0255067348, 0.00193115696, -0.0150189893, 0.0211233944, 0.00228410983, 0.00297152787, -0.00236982713, -0.0176543705, -0.0262731463, 0.0104272394, 0.00180846371, 0.00269588828, -0.00162106252, 0.007462434, 0.0220780484, -0.00189754239, 0.0208679233, -0.00111012114, -0.00705905911, -0.00159080944, -0.0160946548, -0.00490100402, 0.0174392387, 0.0170493089, 0.0120205693, 6.77018397e-05, -0.0109852413, -0.00526404148, 0.000840364199, -0.0194292199, -0.00129416084, 0.000147483923, 0.0158257391, -0.00116894662, 0.0179367345, 0.00266395463, -0.0140777808, 0.0319472849, -0.00200174749, -0.00441023149, -0.00663215434, -0.0108171683, 0.00559010264, 0.0082154, 0.00917677674, 0.00441695424, -0.00426905, -0.00875995681, -0.00152273988, -0.0167131629, 0.012739921, -0.00857171509, 0.00300514232, -0.00112188619, 0.000800026697, -0.00503882393, 0.00926417485, 0.00126306736, -0.00392954284, -0.0216343366, -0.0140643353, -0.0168207306, -0.000684476632, 0.00598003156, -0.00807421934, 0.0144946016, -0.00663887709, 0.00530774053, 0.00676661264, -0.000502117618, 0.0144542642, 0.00502201635, -0.0179501791, 0.003731217, -0.00289085298, -0.0018118252, -0.00234293542, 0.0038152535, -0.0272009093, -0.0143332519, 0.0286933947, -0.000180258125, 0.00939191, -0.00197821739, -0.00645399699, 0.00493461872, 0.00818850845, 0.0182056502, -0.0110726384, -0.00535143912, -0.00697166147, -0.0142929144, -0.029849736, 0.00626911689, 0.00808766484, 0.00291774445, -0.0170762, -0.0245520808, 0.0115835806, -0.0114625674, -0.0119667863, -0.0403912663, -0.00122525101, -0.0046959552, -0.0119936783, -0.0100642014, -0.000764311233, -0.024081476, 0.0032774203, -0.0040102182, -0.0031177511, -0.00993646681, 0.0247672144, -0.00366398785, 0.00477663, 0.00919694547, -0.0154627012, 0.00880701654, 0.000706746301, -0.0054186685, 0.0169014055, -0.0182056502, 0.0138357561, -0.0212981906, 0.00427241158, 0.0156509429, 0.0148845306, 0.00665232306, -0.0163635723, 0.0174392387, -0.0108440593, -0.00137063407, -0.00350263808, -0.040633291, -0.00237654988, -0.000385096908, 0.0104810223, 0.00491445, 0.0110726384, -0.00480688317, -0.00356314424, -0.00875323359, -0.0164442472, 0.0196712445, -0.00124794082, 0.0150996642, 0.0200073905, 0.0361692756, 5.24702409e-05, -0.00320851058, 0.00644727424, -0.015624051, 0.00855154637, 0.0149383144, 0.0016017342, -0.022427639, -0.00122272992, -0.00225721835, 0.00921711419, 0.0188241582, 0.00583885051, 0.00342700514, -0.01859558, -0.00859188382, -0.00953309145, 0.0166997183, 0.00255470723, -0.00396315753, -0.00849776249, -0.00629937, -0.00403710967, 0.0190661829, 0.0180577468, -0.0015210592, -0.0169148501, -0.000617247482, -0.0108507825, -0.00356986723, 0.0112272659, -0.0147231808, -0.00621869508, -0.00894819852, 0.00752966339, -0.0153954718, -0.00568086188, -0.00777841127, -0.000354213524, 0.00816161744, -0.0192678701, 0.00424552, 0.00441023149, -0.0451779813, -0.0208410323, 0.0137281893, 0.0378903411, -0.00196141, 0.0235436428, 0.0208544787, -0.00265891245, -0.0119130034, -0.000198010821, 0.0132374167, 0.00597667042, -0.00559346424, 0.0222125072, 0.00853137765, -0.0174795762, -0.019294763, 0.00430266466, -0.015906414, -0.00128407648, -0.0114491219, 0.00575145241, 0.0216208901, 0.0256008543, -0.01153652, -0.0022135193, 0.00698510744, -0.00769773591, -0.00253958069, -0.00884063169, -0.0109180119, -0.0208679233, -0.000958855555, -0.000380474899, -0.0033866677, -0.00342868594, 0.0406063981, 0.00716662593, -0.0132777542, -2.26504417e-05, 0.00697166147, 0.0162291136, 0.0228847973, 0.00409761583, -0.00720024062, 0.000673131726, 0.0113751702, -0.0186897, -0.00721368613, 0.00366062648, 0.00791287, 0.020975491, 0.00568422349, -0.00339843286, 0.0174526833, 0.000476066314, -0.0177619383, -0.00675316667, -0.0212175157, 0.00268412335, -0.0055531268, -0.0126726925, 0.0258428808, 0.00110003678, 0.00257991813, -0.00606742967, -0.0143332519, -0.000942888611, -0.0106759872, 0.0349053666, -0.0158526301, 4.10728e-05, -0.00185048196, -0.0104137929, -0.000410728, 0.0194157753, -0.00798009895, 0.00800699, -0.00753638614, 0.0170089714, 0.0184342284, -0.00388920563, 0.0116978697, 0.0163097885, 0.0265286174, -0.00607415242, -0.0212578531, -0.00820867717, 0.00269756909, -0.00978856254, 0.00209250697, -0.00867928192, 0.0295270365, 0.0100776479, 0.00470603956, 0.0107096015, 0.013022284, 0.0115230735, -0.0218091328, 0.00824229233, -0.0128743798, -0.0147366263, 0.00510941446, -0.0043799784, -0.0144408187, 0.00399677223, -0.0108507825, -0.00169753574, -0.00288581057, -0.011704593, -0.0217822399, -0.00233621243, 0.00277152122, -0.00102776545, -0.0226158816, -0.0282093454, 0.00566405477, 0.01036001, 0.0135130566, -0.00709939701, -0.00692460127, -0.00627920125, 0.0085381, 0.0155299306, -0.0108709512, 0.0263403766, -0.00466234051, 0.0223066267, 0.0102793351, -0.00593969412, -0.0392618142, 0.00744226528, -0.0119331721, 0.0148441931, 0.0147366263, -0.00654811785, -0.00361356605, -0.00534471637, -0.0212175157, -0.0243100561, -0.0268244259, -0.00350936083, -0.00501865521, -0.0143063599, -0.00430266466, 0.00245386339, -0.00633298466, -0.012376884, -0.0170896463, -0.00206057308, 0.00869272742, 0.0111533133, -0.00920366868, -0.00188913872, -0.0219570361, -0.013862648, 0.0019210726, 0.00494134147, 0.00702544488, 0.0258563254, -0.0024841167, -0.0111802053, -0.0271740165, -0.0108709512, 0.00544892158, -0.0078658089, -0.0228713527, 0.00510605285, 0.00889441464, -0.000584053108, -0.00227570627, 0.0230327025, -0.0111398678, -0.00931795873, -0.00338162552, 0.0125718489, -0.03248512, 0.00327237812, 0.0107701076, 0.013049175, 0.0068237572, -0.009855791, -0.00135466713, -0.00305052218, -0.0127869816, 0.00390601275, 0.0159198586, -0.00124457944, -0.0153147969, 0.014897977, -0.00274799089, 0.0187031459, 0.0306564867, -0.0102121057, 0.0187703744, 0.000322489766, 0.0385088511, -0.0102389976, -0.00605734531, 0.0171703212, -0.00265387027, -0.014615614, 0.0170896463, -0.0353356339, 0.00448418362, -0.00128659757, 0.0031177511, 0.0318935029, 0.00349591509, -0.0205586702, -0.00123701605, -0.00531446328, 0.0111869285, 0.0184880123, -0.000218494693, 0.0129819466, 0.0173720084, 6.4550477e-05, 0.010023864, -0.0210696105, -0.0113886157, -0.0137550812, 0.00715990318, 0.0266092923, 0.0049648718, 0.00423879689, -0.000926081382, -0.0149652055, -0.0153551344, 0.0108440593, -0.00672291359, -0.00328582409, -0.00690443208, 0.0112407114, 0.0116844242, -0.00602709223, 0.00153114356, 0.00520353531, -0.00436317082, 0.00449762912, -0.00376147, -0.00486738933, 0.00699183, 0.0241755974, -0.0281286705, -0.00541194528, -0.0192409791, -0.00882718526, 0.0207065735, 0.0300110858, -9.11926509e-06, -0.00315472716, -0.00248075509, -0.0259235557, 0.00199502474, 0.00882718526, 0.0036807952, 0.0283169132, -0.000439510477, 0.00327237812, -0.0105079142, -0.00715318, 0.0301724356, 0.0162022226, -0.00636996049, -0.0164980292, -0.00295135914, 0.00465225615, 0.0072271321, 0.00638340646, -0.0109919636, 0.00769773591, -0.00352616818, -0.000999193, 0.00448082201, -0.00549262064, -0.00505226944, -0.0122962091, -0.0222259518, -0.0238797888, -0.00738175912, 0.00847087149, -0.00666576903, 0.00697166147, -0.0201956332, -0.0127869816, -0.0101314308, -0.0243503936, 0.00812128, 0.0128407646, -0.00391609734, -0.00430938788, -0.0135466708, -0.0114760138, -0.00997008104, 0.0094793085, -4.98178415e-05, 0.000175636116, 0.00299841957, -0.02777908, 0.00557665667, -0.0112743266, -0.0290698782, 0.0113482783, -0.00393626606, 0.0068607335, -0.01859558, 0.00671619084, -0.0164173543, -0.00646744296, -0.0271202344, -0.00883390848, 0.00447409926, 1.72668588e-05, -0.0068607335, 0.00405391678, -0.014198794, -0.0109180119, -0.00241688755, 0.00317489589, -0.0138357561, 0.0139433229, 0.00310262456, 0.0146021685, -0.0109986868, -0.00204208493, -0.00473629264, 0.0232343897, 0.0197922569, -0.0025311769, -0.0141450102, 0.0131365731, 0.00923728291, -0.00291942526, 0.00422199, 0.0252512638, 0.00414131489, -0.0149652055, -0.0138492025, 0.00502201635, 0.0103398412, 0.000431947206, 0.00612793583, 0.00503882393, 0.0218225773, -0.00540522253, 0.0218091328, -0.0343944244, -0.00224041101, -0.0158795211, -0.000873978774, -0.0131836338, -0.0205721166, -0.00367743382, -0.00409425423, 0.00732797571, 0.018367, -0.0155164851, -0.00577162113, -0.0175064672, 0.0207469109, 0.00285555748, 0.0152341221, -0.00172946951, -0.00563044, 0.00742209656, -0.000682375743, -0.0116239181, -0.000609684212, -0.0121079674, -0.00304547977, -0.00450435234, -0.00500857085, -0.0213519745, -0.00266059302, 7.9992169e-05, 0.0193888824, 0.0137012983, 0.0208141413, 0.00685737189, 0.0196712445, 0.0259907842, -0.0103532868, 0.0176274795, -0.00147736026, 0.0094793085, 0.000465561781, -0.00986251421, -0.0193754379, -0.0289085284, -0.0220914949, -0.0109112887, -0.00856499188, 0.0167669468, 0.00412114616, 0.00197317521, 0.0140508898, 0.0184745658, 0.00323540228, -0.00793976057, -0.0128878253, 0.000220175425, -0.00593633298, 0.0370029174, -0.0169014055, -0.0078523634, 0.00648761168, -0.00482032914, 0.000968939916, 0.00158072507, 0.0171837676, -0.000649601512, 0.00254462287, 0.0103465645, 0.0117987134, -0.0200611744, -0.0120743532, 0.0147904102, 0.00732797571, -0.0163904633, -0.00951292273, 0.00500857085, -0.0248209964, 0.00403374806, -0.00925072934, -0.0141181182, -0.0158391837, 0.0226696655, 0.00941207912, 0.0116037494, -0.00654139509, -0.0277252961, -0.0117113153, -0.00972133316, 0.0102927806, 0.00727419276, 0.0102188289, 0.00257655676, 0.0237991139, -0.011704593, -0.00301690749, -0.00838347338, -0.00593969412, 0.00160677638, 0.0220511574, 0.0274294876, -0.0273353662, 0.0071800719, -0.010501191, 0.0281286705, -0.0050623538, 0.0108978432, -0.0242024884, 0.0160677638, -0.0244041774, -0.0085381, -0.00454805093, 0.00204208493, -0.0088608, -0.00837002788, -0.0114087844, -0.0163366795, -0.0154089183, -0.00254798424, -0.00923728291, -0.00715990318, 0.0290429872, -0.000615986937, 0.0162828974, 0.00663215434, -0.00510605285, 0.01559716, 0.0125987399, 0.0150324348, -1.19161023e-05, 0.0131970793, 0.0296614952, 0.00627247849, -0.00480352202, -0.0223066267, -0.00453796657, -0.0117113153, -0.0189317241, -0.00951292273, -0.0144677097, -0.0146021685, 0.0260714591, 0.0040740855, 0.014924868, 0.0288278535, -0.0133651523, 0.00334464945, 0.0122625949, 0.017694708, -0.00968771894, 0.019294763, -0.00440014713, -0.00450099073, 0.0187031459, -0.00604053773, -0.00390601275, -0.0228310153, -0.00804060511, 0.000222696515, 0.00340347504, -0.00139668526, -0.0158526301, 0.0162022226, -0.00752294, 0.0403374806, 0.0208544787, -0.00568086188, 0.0200611744, -0.00458502723, -0.0129214404, -0.023691548, 0.000598339306, -0.000517664361, 0.0216074437, 0.0118054366, -0.00400685659, -0.00641029794, -0.0101112621, 0.00817506295, -0.00125550409, -0.00736831315, 0.00818178616, 0.00225721835, 0.0056875851, 0.0195771251, 0.00955326, -0.0168072842, -0.0122357029, 0.00620524911, 0.00108659093, -0.0051497519, -0.00308245583, -0.0282900203, -0.024081476, -0.0053985, 0.0119197257, 0.0110860849, 0.0106289266, -0.0178560577, 0.00295135914, -0.00292782881, -0.0215133242, 0.00556321116, -0.0174392387, -0.0125584025, -0.00689770933, 0.0191603042, 0.0100642014, -0.0099431891, -0.00179501798, 0.0135332253, 0.00800026767, -0.00968771894, -0.0016008938, 0.010165045, 0.0137618044, 0.00505899265, 0.00860532932, 0.0221990608, 0.0174930207, -0.0031194319, -0.00138996239, 0.0407139659, -0.00339843286, 0.0019210726, -0.00680358848, 0.00116138335, 0.014588723, -0.0113617238, -0.0230058096, 0.00193283765, -0.00908938, 0.0261790249, 0.00657500932, 0.0041110618, -0.00356986723, -0.0127533674, 0.00740192784, -0.00754310889, -0.0110726384, -0.00530774053, 0.0103196725, -0.00589935668, 0.013607177, 0.00599011593, -0.0153416889, 0.00819523167, 0.00298833521, 0.022400748, -0.00441359263, 0.00378163904, 0.0123836072, -0.015570268, 0.0159736425, 0.00750277145, -0.0215133242, 0.00554976519, -0.00100591592, -0.0296077114, 0.00951292273, -0.0049648718, -0.00804060511, 0.00978856254, -0.0148441931, 0.000132882589, -0.0136475144, -0.00381861487, 0.0153954718, -0.0325657949, 0.00863894448, 0.0124575589, 0.0117382072, -0.00204880792, 0.0179636255, -0.0219570361, -0.00970116444, -0.00450771349, 0.00625903253, 0.0323775522, -0.0275639463, -0.00394635042, -0.0110255787, -0.00170509901, -0.00656156382, -0.00607079081, -0.00147483917, -0.00429930305, -0.014588723, -0.0198594872, -0.00667249179, 0.00496151, -0.00519345095, -0.000208935555, -0.0116642555, -0.0229654722, 0.00609095953, -0.00692460127, 0.0161753297, 0.00404047128, -0.00380853051, -0.0118323276, -0.0153954718, -0.00640357519, -0.0060035619, -0.0238797888, 0.00188409653, 0.0119130034, -0.00143366132, 0.0121146906, -0.00782547146, 0.0119533408, 0.000815573439, -0.0117382072, -0.00450099073, 0.0144273723, -0.00621869508, -0.0121415816, -0.00899525825, -0.0241487063, -0.0108440593, 0.000610944757, 0.0191737488, -0.0197653659, 0.0196981374, 0.006188442, -0.011731484, -0.00106222031, 0.000316607213, 0.0187838208, 0.0180308539, 0.013916431, -0.00222528446, -0.0100709246, -0.000526488177, 0.00162442401, -0.00118659425, 0.0133046461, 0.000851288962, -0.00609432114, 0.0261655804, 0.00961376633, -0.000763050688, 0.0179501791, -0.0241755974, 0.00366398785, 0.00422535138, -0.00873306487, 0.00847759377, 0.00561699457, -0.00204040436, 0.036707107, 0.00849104, -0.0183938909, -0.00492453435, 0.0164442472, -0.00431274902, -0.00663887709, 0.00929106679, 0.0121751968, 0.0086725587, 0.00351272244, -0.00160005339, -0.00730780698, -0.00697838422, -0.00168408989, -0.00581195904, -0.0160274263, -0.0116575323, -0.0032538902, -0.0173989013, -0.00634979177, -0.0153013514, -0.0164308, 0.00411442295, 0.00816161744, 0.0152744595, 0.0102121057, -0.00162274332, 0.00860532932, -0.00392954284, -0.000862213667, -0.0268647633, 0.00516319787, 0.00239167642, -0.0108709512, 0.0187569298, 0.00570775382, 0.00814817101, -0.0137685267, 0.0064573586, 0.00292950962, 0.00871961936, -0.012739921, -0.00698510744, 0.00137987803, 0.000604642031, 0.00429594191, -0.012376884, 0.0134592727, -0.00570775382, 0.00987596, -0.00952636823, 0.0168341752, 0.00904904213, -0.00073153706, -0.0102457209, -0.00272782217, 0.00170173752, -0.0111331446, 0.00568086188, -0.00441695424, -0.0102591664, -0.0111129759, 0.0140374433, -0.00450099073, 0.0171568748, -0.00362365041, -0.00771790463, -0.00193283765, 0.00185552414, 0.00679686572, 0.0088608, -0.00441359263, 0.014225685, 0.00467578648, -0.00142021547, -0.00887424592, 0.0268513169, 0.00284883473, 0.00361020467, -0.00661198562, 0.00620524911, -0.019012399, 0.0243772846, -0.00830279849, 0.0383206084, 0.015570268, -0.0345557779, -0.00594305573, -0.0133382604, -0.014897977, 0.0104070706, -0.0206258986, 0.00829607528, 0.011899557, 0.00310094398, 0.0210561659, 0.0128676565, -0.0207469109, 0.00296480488, -0.00094793085, -0.00834985916, -0.0197519194, 0.0123499921, 0.0121684736, -0.00355305988, 0.00699183, 0.0237722229, 0.00241520675, 0.02777908, 0.000558842206, 0.0165249221, -0.0136609608, 0.0185149033, -0.0170224179, 0.00107062398, 1.12858288e-05, -0.0114356764, 0.00645399699, 0.00506907701, -0.000485730503, -0.0234629679, -0.0336414613, 0.0114289531, 0.00510605285, 0.0115634119, -0.000847507326, 0.00644727424, -0.0107432157, 0.000597919105, -0.00318329968, 0.00855154637, 0.019294763, 0.0160139799, -0.0215267688, 0.0117382072, 0.0119533408, -0.021674674, -0.0161081012, -0.00613129744, 0.0181115288, 0.00354969851, 2.40291647e-05, 0.01036001, -0.00501865521, -0.0194830038, -0.0131769106, -0.0015975323, -0.00339507149, -0.0149652055, 0.0113281095, 0.00455813529, 0.034528885, 0.0189182796, -0.00348246936, -0.0234629679, 0.00761706103, 0.00420518266, 0.000348751142, 0.00291270227, 0.00185720494, -0.0102053825, -0.0134996111, 0.00984906871, -0.0199132711, -0.00920366868, -0.00118323276, -0.0151265562, -0.00728091551, 0.0114356764, -0.00618171925, 0.0182728786, 0.0125247883, 0.00628592446, 0.0161484387, 0.0114827361, -0.015207231, 0.000692039903, -0.0168610681, 0.00140676973, 0.0146559514, -0.00132693513, 0.0181787591, -0.0150458803, 0.0080473274, -0.00558338, -0.0212175157, 0.0111869285, 0.00698510744, -0.00484722061, -0.00441695424, 0.0157316178, 0.00724057807, -0.0199267156, 0.00301690749, -0.0160139799, -0.00365390349, -0.0168476216, 0.0122625949, -0.00586574199, 0.0107768308, 0.00568086188, 0.00204880792, -0.000664728112, -0.0100104185, 0.0172509961, 0.00238663424, -0.0227503404, 0.00299337739, 0.000476486515, 0.000947090448, 0.00873306487, -0.0107902763, -0.0167266093, -0.011032301, -0.0110457474, 0.0238932353, -0.0243235, -0.00689098658, -0.00349927647, 0.0188107118, -0.0108440593, 0.0011739888, 0.00227402546, -0.018649362, 0.00352616818, 0.0102255512, 0.000242024893, 0.0169820804, 0.000615566794, -0.0131567419, 0.00959359761, -0.0132105257, 0.00857171509, -0.034528885, -0.0206527915, -0.0236781016, -0.0128273191, 0.0160005353, -0.0150727723, 0.0141853476, -0.0117449304, 0.0196174625, 0.000971461, 0.00882718526, -0.00175636122, 0.00675989, 0.0235839803, -0.010528083, -0.0106490953, 0.0057850671, 0.000240134075, 0.0114827361, 0.0147097353, -0.0148173021, 0.0126323551, -0.00452788221, -0.00171518337, -0.00206393446, -0.00736831315, 0.0231940523, -0.0103465645, -0.0143735893, 0.0074960487, 0.00101179851, -0.00289253355, 0.00847759377, -0.00171938515, -0.0125315115, 0.00667585339, 0.00286900345, 0.00419173669, -0.0129012717, -4.07576626e-05, 0.000626491499, 0.00527412584, -0.0153147969, -0.0275101624, 0.0115768574, 0.0130088376, 0.000169018254, -0.00120760337, -0.00868600421, 0.00793976057, -0.0113213863, -0.0192544255, -0.00326733594, -0.00579851307, 0.0111667598, 0.00941207912, 0.00642710552, 0.00657500932, -0.0161618851, 0.00968771894, 0.0103129493, -0.0184611212, -0.0028253044, -0.00110171747, -0.00512286043, 0.000995831564, -0.0104406849, -0.00700527616, -0.0197788123, 0.0118054366, 0.0150727723, -0.0111129759, -0.00406400114, 0.00256311079, 0.0112676034, -0.0196309071, -0.0122357029, -0.00775824254, 0.0198594872, -0.0082154, -0.0109650725, -0.0112407114, 0.0105348052, -0.00375474733, 0.00665232306, 0.0161215477, -0.0122020887, 0.0105146365, 0.0171972122, -0.00362701202, -0.0201015119, -0.00187569286, 0.00568422349, 0.00752966339, -0.00640357519, 0.00279505132, 0.0172375515, -0.000183094351, 0.019321654, -0.00161013787, -0.00650105765, -0.0283438042, -0.00582540454, 0.0038387836, 0.00299673877, -0.00876667909, -0.00634306902, 0.0162828974, 0.0209082607, -0.0100507559, 0.00801371317, 0.022373857, -0.0203704275, -0.010023864, 0.00260680984, 0.0363306254, -0.00973477867, -0.00414803764, -0.00345557765, 0.0160946548, 0.00567750074, -0.000264294533, -0.00775151933, 0.00284547312, 0.00607415242, 0.0269857757, -0.0101448763, -0.0152744595, -0.00552959647, -0.0143198064, -0.0059565017, 0.00427913433, -0.018958617, 0.0132306945, -0.00179333717, -0.0205721166, -0.00907593314, 0.00336817978, 0.00485730497, 0.00491108838, 0.0104877455, 0.00694477, 0.0212040693, -0.0162560046, 6.66513879e-05, -0.0154089183, -0.00262865913, 0.0449359566, 0.0175199136, 0.00546909031, -0.020383874, 0.00635315338, -0.0136609608, 0.0174661297, 0.00569094624, -0.0110591929, 0.000236772612, -0.00865239, 0.00699183, 0.00168493018, 0.0130155608, -0.0153685808, 0.00599347753, -0.00229419419, -0.00243537547, -0.000832380727, -0.00421190541, -0.0153820263, -0.00935157295, 0.0163904633, -0.0128071504, 0.0115634119, 0.0140374433, 0.00619516475, -0.0309791863, 6.57059791e-05, 0.00969444122, 0.0224410854, 0.0121348593, -0.0374331847, -0.0074489885, -0.011845774, 0.00532454764, -0.00740865106, 0.011368447, 0.0150458803, -0.00379508478, -0.01388954, 0.00199670531, -0.00845070276, -0.012013847, -0.0026925269, -0.0153820263, -0.035308741, 0.0112272659, -0.000742461765, -0.0120877987, 0.00897508953, 0.013721467, 0.0106087578, 0.00289925653, 0.0060069235, -0.0197250284, 0.00331439637, 0.00441023149, 0.0049648718, -0.0171165373, -0.00261353259, -0.00832296722, -0.00130676629, -0.0271202344, -0.0192678701, 0.0147097353, -0.019321654, -0.000713049, -0.00503546232, 0.013439104, 0.00957342889, -0.0201284029, 0.00526740262, -0.0103869019, 0.00627247849, -0.0157181714, -0.0167938378, 0.0121348593, -0.00941880234, -0.0205586702, 0.00131096819, -0.0126592461, 0.00132021215, -0.00955998339, 0.0310329702, 0.00986923743, 0.0219973736, 0.0125920177, -0.0055531268, -0.0127533674, 0.0067262752, 0.0170627553, 0.0192006417, 0.0126458006, 0.0227906778, -0.00472957, 0.00945241656, 0.00242697191, 0.0078658089, -0.027079897, 0.0208410323, 0.0102591664, 0.00639685243, -0.00528084859, 0.0103532868, 0.000344549335, 0.0234226305, 0.00479679881, 0.00146475481, 0.0117449304, 0.0109381806, 0.00492453435, 0.00657500932, 0.0266092923, 0.0164576918, 0.00330263143, -0.000267866097, 0.00969444122, 0.000311985204, -0.00171266228, -0.00814144872, 0.00555984955, 0.00408417, 0.017277889, -0.00143114023, 0.0324044451, -0.0232612807, 0.0141046727, 0.0128273191, 0.00563380169, -0.0192006417, -0.0104742991, 0.00815489423, 0.00672963634, -0.000390979432, 0.000941207923, -0.00151349592, 0.0125247883, -0.00229419419, -0.000525647833, 0.00207401882, 0.0225889906, -0.00567077752, 0.00837002788, 0.0249285642, -0.00857171509, -0.00652794912, 0.00600020029, 0.0109045664, -0.0233419556, -0.0158929676, 0.0158795211, -0.00891458336, -0.0180980843, 0.0106827095, 0.0248882268, -0.015207231, 0.00957342889, -0.00952636823, 0.0159736425, 0.0184745658, 0.00826246105, 0.0115029048, 0.0330767334, -0.00378163904, -0.00920366868, -0.00476654572, -0.00817506295, -0.00707250508, -0.00878012553, 0.0051497519, 0.0170224179, -0.0141719021, 0.00671282923, 0.00855826866, -0.00396651914, 0.00310934754, -0.0121751968, -0.0213788655, -0.0243235, -0.0310598612, 0.0154895931, 0.0232747272, -0.0056371633, -0.0204376578, -0.00445729168, -0.0126726925, -0.0125718489, -0.0069111553, 0.0126659693, -0.017694708, -0.0188644957, 0.0023967186, -0.0121886423, -0.00408080872, 0.00200342829, 0.00470267795, 0.0169014055, 0.00919694547, 0.0134659959, 0.00455477415, -0.0298766289, 0.00478671445, -0.00577498274]
01 Oct, 2024
Why Developers Should Have a YouTube Channel? 01 Oct, 2024 YouTube… The most addictive platform for all age groups. Whether you want to watch movies or you want to make ice cream or you want to learn something everyone prefers to get everything through online videos sitting at home and definitely free of cost (jokes apart…). On YouTube, information is overloaded, and being a developer or starting your programming journey you might have definitely taken the help of YouTube videos to understand the concepts in a better way and there is a possibility that you might have been inspired by those YouTubers as well. If you are a passionate developer we suggest you not only watch the videos of renowned programmers/developers on YouTube but also start your own YouTube channel and there are multiple benefits to doing that. Let’s discuss this in detail… 1. Learning and Social Exposure When you teach something to others it helps you to get knowledge about a specific topic in detail and also clear all your doubts. You do research, you go through the documentation, you watch some other tutorials, you build projects and when you make videos after learning all the things you need to write code again, you need to look at the whole application, again and again, you redo few things and a lot of things are repetitive so eventually it makes your concepts more clear and helps you to remember everything in-depth for a long time. “If you can’t explain it to a six-year-old, you don’t understand it yourself.” — Albert Einstein It also helps in personal development and removes social anxiety. A lot of developers don’t talk much, do not have social skills, and love to isolate themselves from others. Being on camera, explaining things to others, and talking gives them an opportunity to communicate, to share their opinion which eventually helps them to remove social anxiety and learn how to deal with other people. 2. Online Presence No matter in what field you are working, an online presence is very important in this technical era of the 21st century. Everything is running online and for professional growth online presence matter a lot for everyone whether it’s a LinkedIn account, personal blog, personal website, or your own youtube channel. It creates a brand that is really helpful in making connections, getting feedback from others, and for professional growth as well. 3. Helps in Promoting Business Online activity and the internet is the best source to promote any kind of business and make a profit from it especially when you are doing it through videos. You can showcase your services and products through your channel. When you showcase your services, your projects, or your portfolio, you can get potential clients and customers all over the world. It can help you in freelancing or any other business. Your services can reach from one person to two, two people to four, four to eight, and so on. Also Read: How to Create Your Personal Branding as a Software Developer? 4. Helps in Getting a Lot of Jobs/Career Opportunities It’s hard to get a job as a developer when you have no computer science degree and you are a self-taught programmer. At that time you really need to do something which can help you to showcase your talent or your interest in programming to the recruiters. So what’s the best solution….definitely YouTube. Suppose you want to become a python developer and if you make videos on python, a recruiter visiting your channel can watch your coding skill. They can also check your knowledge and interest in programming which can help you in landing a job. 5. Side Income One of the toughest things is to generate side income through a YouTube channel. It needs a lot of patience and consistency if you want to generate money through YouTube. A lot of YouTubers give up on making YouTube videos and continuing because they find difficulty in getting subscribers and generating side income. Initially, you won’t make anything but as we have said that you need to stick with making videos, and making good content if you put in a lot of effort then you can definitely get viewers and subscribers and you can start making money. You can generate money through affiliate marketing, promoting someone else content or product, and sponsorship, and a lot of options are out there. We agree that starting a youtube channel and maintaining it is difficult. You make one video, then another video, then another one and you spend your time but you may become sad because you don’t get any subscribers or views on your video. Also, let us tell you if you’re having a passion for sharing your knowledge and expertise through your videos but are still not ready for starting your own YouTube channel because of any reason like not having time to manage the channel, difficulty in understanding copyright & other policies of YouTube, etc. – no worries, GeeksforGeeks has a solution of it for you! You can apply for GeeksforGeeks Video Freelancing opportunity where you will be selected as a freelance video contributor for GeeksforGeeks and what you do is contribute videos that will be published on the GFG website. You can opt to create and contribute content from various domains including Programming Languages, DSA, Machine Learning, Android Developments, etc. You’ll not only get to connect with your audience and share your knowledge with them by making videos – but you’ll get the appropriate remuneration as well for your videos. Conclusion: So, these all are the reasons people quit but you need to accept that you will have to go through this phase when you start your own YouTube channel. Remember that people who have thousands of subscribers also started from nothing but they didn’t quit and that’s the reason they are successful. We would like to share the name of a few popular developers who started their journey making YouTube videos from nothing but now they have thousands of subscribers and they love making videos and helping others. Striver Gaurav Sen Rachit Jain Keerti Purswani Nishant Chahar Love Babbar, and many others! So now if you are telling yourself to start your channel and make videos even if it’s just for 5-10 minutes then do it but a quick tip is here be genuine, be consistent, and do not fake anything in your youtube videos. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2/Difference between IBM DB2 and MongoDB/Difference between SQLite and IBM DB2/Difference between MySQL and IBM Db2/SQL Tutorial/How to SQL Select from Stored Procedure using SQL Server?/SQL Query to Rename Stored Procedure/Basic Query in PL/SQL procedure/How to Write a Normal Select Procedure in PostgreSQL?/PostgreSQL – SELECT INTO/How to Select Dates Between Two Dates in PostgreSQL?/How to Select Row With Max Value in PostgreSQL/PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows/PostgreSQL – IS NULL operator/PostgreSQL – NOT LIKE operator/SQL LIKE Operator/SQL Server Max Function Takes Two Values Like Math.Max in .NET/SQL Server NULL Values/NULL values in SQL/How to Set a Column Value to Null in SQL?/SQL IS NOT NULL Operator/SQL | NULL functions/SQL – SELECT NULL/SQL Query to Exclude Null Values/How to Filter Null Values to Last While Sorting Ascending in SQL?/How to Insert Rows with NULL Values in SQL?/SQL Query to Insert Multiple Rows/SQL Query to Add Email Validation Using Only One Query/SQL Query to Add an Agent Parameter in a Database/SQL Query to Get First and Last Day of a Month in a Database/SQL Query to Convert Date Range to Per Day Records/SQL Query to Check if Date is Greater Than Today in SQL/SQL Query to Get a Financial Year Using a Given Date/How to Group by Day, Date, Hour, Month or Year in SQL Server/SQL Query to Convert DateTime to Date in SQL Server/SQL Query to Convert Date Field to UTC/SQL Query to Convert Rows to Columns in SQL Server/SQL Query to Count the Number of Rows in a Table/SQL Query to Delete Duplicate Rows/SQL Query to Find Duplicate Names in a Table/How to Query Two Tables For Duplicate Values in SQL?/SQL – SELECT from Multiple Tables with MS SQL Server/How to Update Two Tables in One Statement in SQL Server?/Find all Tables that Contain a Specific Column Name in SQL Server/Copy Tables Between Databases In SQL Server/List All Databases in SQL Server/Top 10 SQL Databases To Learn in 2025/Top 10 Reasons to Learn Java in 2025/Top 5 Reasons to Learn Game Development/10 reasons to learn Python in 2019/Top 7 Reasons to Learn Golang/Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter/Is it Worth to Learn Python in 2020?/Python vs Java – Who Will Win the Battle in 2020?/How to Become a Freelance Programmer in 2020?/4 Personality Traits of a Great Programmer/Why Learning Web Development is a Great Career Move in 2025?/30+ Web Development Projects with Source Code [2025]/Top 10 Golang Project Ideas with Source Code in 2025/Top 10 Vue.js Project Ideas for Beginners in 2025/Top 10 Docker Projects Ideas for Beginners [2025]/Top Gen AI Project Ideas for Beginners in 2025/Top 12 Spring Project Ideas For Beginners [2025]/Top 10 R Project Ideas for Beginners in 2025/Top 10 Rust Project Ideas With Source Code in 2025/Top 10 C# Project Ideas for Beginners in 2025/Top 10 GoLang Projects Ideas for Beginners in 2025/The Future of Golang in 2025 [Top Trends and Predictions]/The Future of 3D Modeling in 2025 [Top Trends and Predictions]/The Future of Robotics in 2025 [Top Trends and Predictions]/10 Essential Skills for a Successful Career in Robotics Engineering/Software Testing Career Path – Skills, Salary and Growth/Why Non-Linear Career Paths are a Great Option to Achieve Career Success?/How to Build a Great Product from Scratch?/UI Design Process: 6 Easy Steps To Create Great UI/Content Improvement League 2024: From Good To A Great Article/Rank Improvement Course for GATE Exam: Crack GATE Now!/GATE DA 2025 Answer Key (Now Available) Download PDF/GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence/200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025/How To Ace Hackathons/How to Use the STAR Method To Ace Your Job Interview?/Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation/10 Ways to Find and Get Your Dream Internship/How to land your Dream Job: Three 90 Challenge/10 Tips For Landing Your Dream Internship/2-Page Resume Ship or Sink Your Dream Job Opportunity!/Things every final year student should do to get a job in their dream company/Things one should know before choosing Computer Science as their major/Why Developers Should Have a YouTube Channel?
https://www.geeksforgeeks.org/why-developers-should-have-a-youtube-channel?ref=asr10
Languages
Why Developers Should Have a YouTube Channel?
PHP | IntlChar::isUWhiteSpace() Function, Difference between MySQL and IBM Db2, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, SQL procedure, 4 Personality Traits of a Great Programmer, GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence, SQL – SELECT NULL, PHP | IntlChar::isspace() Function, 2-Page Resume Ship or Sink Your Dream Job Opportunity!, Difference between IBM DB2 and MongoDB, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, PostgreSQL – NOT LIKE operator, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Write a Normal Select Procedure in PostgreSQL?, How to Select Row With Max Value in PostgreSQL, Top 7 Reasons to Learn Golang, Why Learning Web Development is a Great Career Move in 2025?, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, SQL Server Max Function Takes Two Values Like Math.Max in .NET, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, NULL values in SQL, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, 10 reasons to learn Python in 2019, Top 5 Reasons to Learn Game Development, SQL Query to Convert Date Range to Per Day Records, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, Software Testing Career Path – Skills, Salary and Growth, AngularJS angular.isDefined() Function, SQL Query to Convert Date Field to UTC, Content Improvement League 2024: From Good To A Great Article, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, List All Databases in SQL Server, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, How to Group by Day, Date, Hour, Month or Year in SQL Server, PHP IntlChar::charName() Function, Why Non-Linear Career Paths are a Great Option to Achieve Career Success?, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, Top 10 Vue.js Project Ideas for Beginners in 2025, Find all Tables that Contain a Specific Column Name in SQL Server, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, Top 10 Golang Project Ideas with Source Code in 2025, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, Copy Tables Between Databases In SQL Server, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, The Future of Robotics in 2025 [Top Trends and Predictions], PostgreSQL – Drop Procedure, Top 12 Spring Project Ideas For Beginners [2025], Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, PostgreSQL – SELECT INTO, Mongoose Queries Model.replaceOne() Function, GATE DA 2025 Answer Key (Now Available) Download PDF, Angular PrimeNG Form Calendar Touch UI Component, SQL Query to Rename Stored Procedure, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top Gen AI Project Ideas for Beginners in 2025, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, The Future of Golang in 2025 [Top Trends and Predictions], How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Why Developers Should Have a YouTube Channel?, SQL Query to Check if Date is Greater Than Today in SQL, MongoDB insertOne() Method – db.Collection.insertOne(), The Future of 3D Modeling in 2025 [Top Trends and Predictions], Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, SQL Query to Get a Financial Year Using a Given Date, Mongoose Query.prototype.limit() API, How to Use the STAR Method To Ace Your Job Interview?, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, Things one should know before choosing Computer Science as their major, PHP | IntlChar::forDigit() Function, Python vs Java – Who Will Win the Battle in 2020?, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], Top 10 C# Project Ideas for Beginners in 2025, 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, 10 Ways to Find and Get Your Dream Internship, Top 10 Python REST API Frameworks in 2025, UI Design Process: 6 Easy Steps To Create Great UI, Difference between SQLite and IBM DB2, Top 10 JavaScript Frameworks to Use in 2025, How to Query Two Tables For Duplicate Values in SQL?, How to Get All Keys of an Associative Array in PHP?, 30+ Web Development Projects with Source Code [2025], Top 10 Reasons to Learn Java in 2025, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, SQL Query to Find Duplicate Names in a Table, How to land your Dream Job: Three 90 Challenge, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation, Top 10 Deep Learning Tools You Must Know [2025], How to Build a Great Product from Scratch?, 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, SQL Query to Insert Multiple Rows, How to Update Two Tables in One Statement in SQL Server?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, SQL Tutorial, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Top 10 SQL Databases To Learn in 2025, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How to Filter Null Values to Last While Sorting Ascending in SQL?, How to Become a Freelance Programmer in 2020?, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, SQL Query to Delete Duplicate Rows, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, How To Ace Hackathons, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Basic Query in PL, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, SQL Query to Add an Agent Parameter in a Database, Mongoose Document Model.count() API, SQL Query to Get First and Last Day of a Month in a Database, Languages, Mongoose Document Model.estimatedDocumentCount() API, PostgreSQL – IS NULL operator, PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows, Is it Worth to Learn Python in 2020?, 10 Essential Skills for a Successful Career in Robotics Engineering, Things every final year student should do to get a job in their dream company, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, SQL IS NOT NULL Operator, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, SQL Query to Convert Rows to Columns in SQL Server, Tensorflow.js tf.Tensor Class, SQL LIKE Operator, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, SQL Query to Exclude Null Values, How to SQL Select from Stored Procedure using SQL Server?, SQL Server NULL Values, SQL | NULL functions, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, Top 10 GoLang Projects Ideas for Beginners in 2025, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, How to Insert Rows with NULL Values in SQL?, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, SQL Query to Add Email Validation Using Only One Query, SQL – SELECT from Multiple Tables with MS SQL Server, Top 10 R Project Ideas for Beginners in 2025, 200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025, Difference between MS SQL Server and IBM DB2, SQL Query to Count the Number of Rows in a Table, Top 10 Docker Projects Ideas for Beginners [2025], PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, How to Select Dates Between Two Dates in PostgreSQL?, SQL Query to Convert DateTime to Date in SQL Server, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Rank Improvement Course for GATE Exam: Crack GATE Now!, 10 Tips For Landing Your Dream Internship, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, Top 10 Rust Project Ideas With Source Code in 2025, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, How to Set a Column Value to Null in SQL?, Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0367262773, 0.00892856065, -0.0149941221, 0.0182699244, 0.0260466281, 0.013016656, 0.01575315, 0.0116717126, -0.0391232073, 0.00459078467, -0.0226243455, -0.00944789499, 0.028337026, -0.0139421364, 0.00866889302, 0.0127236973, 0.0030893751, -0.000509763544, -0.0282038637, 0.0254873447, 0.00229872135, -0.0396824889, -0.0812825263, -0.0372056626, -0.0240758192, 0.00876210723, 0.00371524, 0.0160461068, -0.0444230847, -0.0168317668, 0.02910937, 0.0031892471, 0.00603560032, -0.0475390889, -0.0258069355, 0.00881537236, 0.00308271684, -0.00810961, -0.0264993813, 0.00523662381, 0.0367795415, -0.000882203, -0.000100860358, -0.00494699506, 0.00962766446, -0.000412596361, 0.0198412444, -0.0288164131, -0.00541639375, -0.0629060715, 0.0130233141, 0.0298018157, 0.0569403768, 0.0232768431, 0.0140353506, 0.0225045, 0.0651432052, -0.0907104462, 0.00243687769, -0.000379721809, 0.0162858013, -0.0134161441, -0.024715, -0.00610551052, 0.00856902078, 0.00729731703, -0.0378448442, 0.0373388268, -0.0429849252, 0.00711754709, -0.016552126, 0.0187359937, 0.00978080183, -0.00157464913, 0.0186827295, -0.00774341216, 0.0325716026, 0.0224778671, 0.0219851639, 0.013402828, -0.0184563529, -0.0323319063, 0.0126770912, -0.0160327908, 0.0202407334, 0.0138888713, 0.00592241203, -0.0648768768, 0.0205869563, -0.0151539175, -0.0264061671, -0.0153003968, 0.013402828, -0.0400553457, -0.0262330547, 0.00889527, 0.00956108328, -0.00109193427, -0.0112722237, 0.0414402373, 0.00541972276, 0.0143549414, 0.0213726163, -0.0198146123, -0.019281961, -0.0363534205, 0.00232868316, -0.00150806783, 0.0228640381, -0.0139021883, 0.0233700573, -0.00946786907, -0.0386438221, -0.00367862, 0.0100404685, 0.0548630394, -0.0227841418, -0.0784594715, 0.0217721052, 0.00241690339, 0.046420522, -0.020839965, -0.0287098829, 0.0479385778, -0.0305741597, 0.0264993813, -0.0340630226, -0.0249546934, 0.0509480573, -0.00343226898, 0.00737721473, -0.0101336828, 0.00422791624, 0.0155800385, -0.00789654907, -0.0114852842, 0.0400819778, 0.0583785363, 0.00262330566, -0.0054763169, 0.0055462271, -0.0268988684, 0.0077167796, -0.000870551274, 0.000375352422, 0.0138755552, 0.0172445718, 0.0246750526, 0.00121094845, 0.0183764547, -0.0466868505, 0.0353147537, -0.0365132168, 0.011019215, 0.0400020815, -0.0133162718, 0.0135493064, 0.0187626276, -0.0279908031, -0.00659155473, -0.0213726163, -0.0621603578, -0.0100737596, 0.0363001563, -0.0399754494, -0.0194950216, 0.045248691, -0.0237029642, -0.0632256567, 0.0373388268, -0.0425321721, -0.0014864289, 0.00193252391, 0.0315063, -0.0361936279, -0.0205070581, 0.00142650562, -0.0182965584, -0.0331575163, -0.0375252552, -0.0359539352, -0.00876876526, -0.0262463726, 0.0129301, 0.0446894094, 0.0336901695, 0.0717480704, 0.00441101519, 0.0034489145, -0.0131697925, 0.00998720434, -0.0324917026, 0.0104466155, 0.0360870957, 0.0155800385, -0.0212927181, -0.0262863208, 0.0179769676, 0.0211329237, 0.0173910502, -0.027910905, -0.0092881, 0.00119596766, 0.0300415102, 0.00419462565, -0.00554289808, -0.0122642862, 0.0407211594, 0.0371524, -0.000503937656, -0.0043777246, 0.00357208983, -0.0222781226, -0.00777004473, 0.0153802941, -0.0151139684, -0.00757030072, 0.0180968139, -0.0168584, -0.0413070768, -0.0158197302, -0.00536978664, -0.00415800605, 0.00494033704, -0.0245418884, -0.00537644466, 0.00470397295, -0.00641511381, 0.000243230024, -0.0106463591, 0.0296686534, 0.0584318, -0.00930141564, 0.0149275409, -0.00607222, 0.0188158918, 0.00529654697, 0.0163390655, -0.00321088615, 0.023623066, -0.0133295879, -0.0040115267, -0.0459677689, 0.00915493723, 0.00189091056, -0.0143815735, 0.0139820855, 0.0315861963, -0.00954776723, 0.0116251055, -0.0474591926, -0.0443165526, -0.0134694092, -0.0118248491, -0.0673270673, 0.0159528945, 0.0218386855, -0.0384041294, 0.0141285649, 0.0189357381, 0.019281961, -0.011838166, -0.000821031397, 0.0292425323, 0.00634520361, -0.00715749618, -0.000657074794, 0.0117116608, -0.0155267734, -0.00670807203, 0.0379513763, -0.0342760831, 0.0697772652, -0.0122443121, -0.0181367621, -0.0111656943, -0.0184563529, 0.0139554525, 0.0167385545, 0.0258069355, 0.0596036315, -0.0354212821, 0.0388036147, 0.00666146493, 0.0269920826, -0.0175108984, -0.0140886158, -0.0131431604, -0.0539309, -0.0134494342, -0.0024385422, -0.0277244784, 0.0266059116, 0.0180568639, 0.0481250063, 0.0147411134, -0.0247283168, 0.0164455958, -0.0121577559, 0.0110591641, 0.00404148828, -0.0250612237, -0.00925480854, -0.0120112775, -0.0356609747, 0.0215590447, -0.0159795266, 0.00429116841, 0.0321188495, -0.0276445802, 0.0343559831, -0.0219851639, -0.012996681, -0.0237029642, -0.00986735709, 0.0409874842, 0.0602960773, 0.0243820939, -0.041280441, -0.0108327875, 0.0195882358, 0.00860897, -0.00362868397, 0.0359006673, 0.0217987373, -0.0122776022, 0.00320089888, -0.0012492328, 0.00459078467, -0.0312399734, -0.00667478144, -0.0152870798, 0.00094961666, 0.0166453402, 0.0380312726, -0.0125306118, -0.0076368819, 0.0109126847, 0.0085290717, -0.0122842612, -0.0174176842, -0.0323319063, 0.00367196207, -0.0217854213, 0.0340896547, -0.00882203, -0.0214791466, 0.0710556284, 0.0213459842, -0.0279908031, 0.00102951424, 0.00606223289, 0.00797644723, 0.027964171, 0.0025983376, -0.00745711243, -0.00515006809, 0.0267923381, 0.00613214308, 0.023210261, 0.027178511, -0.0104199825, 0.0229439363, 0.0273782555, 0.00519001717, -0.0413070768, -0.0320922136, -0.0343826152, 0.0538776368, -0.0442632884, 0.000518502318, -0.0233567413, 0.000100704303, -0.0161526371, -0.00103117875, 0.0294822268, -0.0188158918, 0.0219319, -0.0363267884, 0.0293224305, 0.00681793131, 0.0173910502, 0.0253808144, 0.0337168, -0.00186927163, 0.0217854213, 0.00182765827, -0.00425122, 0.0105065387, 0.00398822362, -0.0317459926, 0.0266724918, 0.00711754709, -0.00862228591, -0.0085756788, 0.0270053986, -0.00820948184, 0.00655826367, 0.0253408644, -0.0398689173, 0.0179769676, 0.0194950216, 0.0131098693, 0.0248614792, -0.0148343267, -0.00171280548, -0.00922817644, 0.0123242093, 0.00265659625, -0.00822279789, 0.00532650854, -0.0228906721, -0.0685521662, 0.0150473872, 0.0313997678, 0.0430648215, 0.034249451, 0.0280174352, 0.0132829808, 0.0278842729, 0.0388568826, 0.014940857, -0.0344358794, -0.00408143736, -0.0138622392, 0.00747042848, 0.0372322947, 0.00771012157, -0.00650499901, -0.0215989929, -0.0310801789, 0.00106280495, -0.00472061848, 0.00185429084, 0.0312133413, -0.0478320494, 0.0272184592, 0.0148210106, -0.00652164407, 0.0181500781, 0.00841588341, -0.024821531, 0.0323319063, -0.0213726163, -0.0277511105, 0.00791652407, -0.0476722531, -0.0286299847, -0.00692446157, 0.00229372783, -0.0183897708, -0.00461075921, -0.0511611179, 0.0138356062, 0.0136225466, -0.0274315197, -0.0272983573, 0.012617168, -0.00287298555, -0.0179237016, 0.0282837618, 0.025553925, 0.0241557173, 0.0152870798, -0.00795647223, 0.0161659531, 0.00854238868, -0.0521997847, 0.00954776723, -0.0328645594, -0.00704430789, -0.0351815894, 0.0273782555, -0.0150873363, 0.0136292046, -0.0317992568, 0.00900845788, -0.011838166, 0.00492369151, -0.0383774973, 0.0494832657, 0.0692978799, 0.0390433073, -0.0247549489, -0.0048870719, -0.00175608334, 0.00280473987, 0.0349685289, 0.00602228381, -0.00351549569, -0.0412271768, 0.013389511, 0.000160523501, -0.0240625031, 0.00943457894, -0.0301480386, -0.0479652099, -0.0483647, 0.00781665184, 0.00517337164, -0.0177905392, 0.0117915589, -0.0334504731, 0.0324384384, -0.0265925955, -0.0168717168, -0.0266059116, 0.0569403768, 0.00585250137, -0.00451088697, 0.00838259328, 0.0521198884, 0.00286965654, 0.0343027152, -0.0294023287, -8.65557668e-05, -0.00946786907, 0.0375252552, -0.0166053902, 0.0102934781, -0.0209598113, 0.0140619827, 6.05474233e-05, -0.0066082, -0.0209864452, -0.00282138516, -0.00294123148, -0.0124041075, 0.0231569968, -0.0138622392, -0.00809629355, -0.00840256736, -0.00756364223, -0.0151006524, -0.0162192192, -0.00300115487, 0.00997388735, 0.0132097416, 0.0144481547, -0.0141019318, -0.0540906973, 0.0385905541, -0.0199078266, -0.00747042848, -0.0290294718, 0.0162192192, 0.0054663294, -0.0458346084, 0.00310269138, 0.0475923568, -0.029908346, 0.00928144157, 0.0260865763, 0.00607222, -0.02596673, -0.00229705684, -0.0228773542, -0.00733726565, -0.0343293473, -0.0471662357, 0.00444430579, -0.0135959135, 0.0202939976, 0.00158879766, 0.0110391891, -0.0158330481, 0.00613214308, 9.70631372e-05, -0.00285301125, 0.0202141013, -0.0213726163, -0.0467667468, 0.00824277196, -0.00782996789, 0.00453086151, 0.0351549573, 0.0147144804, -0.0127170393, 0.0420794189, 0.0150873363, -0.0154601913, 0.0300415102, -0.0100271525, 0.0240758192, 0.00567939, -0.012617168, 0.00286466302, 0.0100005204, -0.00493367855, 0.00446095085, -0.0195482876, 0.0247016847, -0.0178038552, 0.00438771164, 0.0092881, -0.0165254939, -0.00326581579, 0.0286299847, 0.0159262605, -0.0105531458, -0.0108061545, -0.0150873363, 0.0416266657, -0.00591575354, 0.0199078266, -0.0135692814, 0.00278143631, -0.0295887552, -0.00358873536, 0.00736389821, -0.00266824802, -0.0167385545, 0.0219452158, -0.0099605713, -0.00090051291, -0.0293756966, -0.000239484827, 0.0438105352, -0.00828272104, 0.0219585318, -0.0117116608, -0.00777670275, 0.00443098927, -0.00852241367, -0.0066082, 0.0226509776, -0.01811013, -0.000394702627, 0.00640512677, -0.0398156531, 0.00984072499, -0.01653881, -0.00197080825, -0.0289229434, 0.011811533, -0.00736389821, -0.0131365024, 0.0289495755, -0.0146079501, -0.0240092389, -0.0142883593, 0.00346223079, 0.0110791381, 0.152231619, -0.011032531, 0.0290827379, -0.0023053796, 0.0196148679, -0.0115585243, -0.0282837618, 0.0118514821, -0.0143016763, 0.00806966051, 0.00890858565, -0.0331042521, -0.0261531584, 0.00646837894, -0.00569936447, 0.000555538223, 0.00454084855, -0.0155800385, 0.0173511021, 0.0238228105, -0.0117449518, -0.0214125644, -0.000977913733, 0.013795658, 0.0113055147, -0.0144215226, -0.00450422894, 0.00753700966, -0.0393096358, 0.00672804657, -0.0012192711, 0.00936799683, -0.0159528945, -0.0291892681, 0.00551959453, 0.0205336921, 0.0293490626, -0.016911665, -0.0179636516, 0.0171513576, -0.0156066706, -0.0182566084, -0.00649168249, -0.0197613481, 0.0237961784, -0.0233833734, 0.00788323302, -0.0148875918, 0.0179503337, 0.00967427157, -0.0093613388, 0.00996722933, 0.02125277, 0.00621537, -0.0204271618, -0.000217637818, -0.00553624, -0.00199411181, -0.0176440608, 0.00124340691, -0.00828937907, -0.0013657501, 0.0219452158, -0.00821614, -0.00211062911, -0.0333173126, -0.0185895152, 0.0303611, 0.0168850329, -0.00822945591, -0.0104732476, 0.000929642236, -0.00910833, -0.013376195, 0.0108128125, 0.00334571325, -0.00906172302, 0.0118448241, 0.00102368835, -0.00862228591, 0.00256171776, -0.0156732518, 0.0210397094, 0.0127303563, 0.024715, -0.00553956907, -0.0225444473, 0.0358474031, -0.0136225466, 0.00119763217, -0.0203206316, -0.0213859323, -0.00175608334, 0.00824943, 0.012204363, -0.00610551052, 0.0318791531, -0.0216522589, 0.0168051347, -0.00803637, 0.0302545689, -0.00837593526, -0.0171913076, 0.0284435563, 0.0105131967, -0.000981242745, 0.00323086046, 0.00802305341, 0.00543969683, 0.00122176798, -0.0292957984, 0.00852241367, -0.00764354, -0.0018809234, -0.00206735125, 0.0197480321, 0.00719744479, 0.0543037578, 0.0245818384, -0.00587580493, -0.00995391328, 0.036566481, 0.00492036249, -0.0306007937, 0.0167918187, 0.00974085275, -0.0190689, 0.0341961868, -0.0113920709, 0.0158330481, -0.0149941221, -0.00485045183, 0.0026000021, 0.00819616579, -0.0242222976, 0.00464737881, 0.0106863081, -0.00134744029, -0.0328645594, -0.0155400895, -0.00734392414, -0.00294788973, 0.00611549802, 0.046820011, 0.0254074465, -0.00321754417, 0.0150607033, 0.0004086431, 0.0206269044, -0.00659821276, 0.0133628789, -0.0015863009, 0.00227042427, -0.0125705609, -0.00999386236, -0.00930141564, -0.0392031036, 0.0294289608, -0.0260998923, -0.00146895123, 0.020067621, -0.00711754709, -0.0227042437, -0.0111790104, -0.0304676294, -0.00526658539, 0.0136158876, -0.00816953275, -0.013409486, -0.0155400895, -0.0229173042, 0.00944123697, 0.000954610237, 0.0542504899, -0.00246850401, -0.0113720959, 0.0499892831, -0.00786325894, -0.0246883687, 0.0244886242, -0.012597193, -0.00674469164, 0.0183231905, 0.0237828624, -0.00337401032, 0.040614631, -0.00126671034, 0.0231170487, -0.0330509879, -0.00898848381, 0.024715, -0.0124773467, 0.0164589118, -0.00374520151, -0.0388302505, 0.0368328094, 0.0237562284, -0.0140753, 0.00110192155, 0.00445096381, 0.0199877247, 0.00262663467, 0.0185628831, -0.0074770865, 0.0266724918, 0.024022555, -0.00435775, 0.0257004052, -0.00627862196, 0.00597567717, 0.03307762, -0.0225977134, 0.00157464913, -0.00616543368, -0.0154202431, 0.00458745565, -0.0237695444, 0.036646381, 0.00168950204, -0.0123175513, -0.015366978, 0.0264328, -0.0245418884, 0.00526658539, -0.0349685289, -0.0353413858, -0.04018851, -0.00693777762, -0.00754366815, 0.0268855523, 0.0275114179, -0.0260998923, 0.0153137129, -0.0064583919, -0.0282304958, -0.0168051347, 0.000927145418, 0.031106811, -0.0140753, 0.0154868243, -0.00749040302, -0.0126371421, -0.00693777762, -0.0130366301, -0.0367529094, -0.0103001362, 0.00588912144, -0.00310269138, 0.0110058989, 0.00152970676, -0.025607191, 0.0215190947, 0.0117249778, 0.0177239571, 0.00799642131, -0.0112722237, 0.0183365066, 0.0042878394, 0.025980046, -0.0136624947, -0.00960103236, 0.0141418809, -0.019321911, 0.0215324108, 0.00440102769, -0.00799642131, -0.00699770078, -0.0208266489, -0.00761690736, -0.0213593, 0.00694443565, 0.0194550734, 0.0147810616, 0.00160960434, 0.0121444399, 0.023196945, -0.0377383158, 0.0178438034, 0.00526658539, -0.0279908031, 0.0150207551, -0.00961434841, -0.00335403602, -0.00337567483, 0.0010062108, -0.0135825975, 0.00300281937, 0.0356343426, 0.0243687779, 0.0140353506, -0.00258668582, -0.0162192192, -0.00189423969, -0.0576860905, 0.0349685289, -0.03307762, 6.99104276e-05, 0.0157265179, 0.0128701767, -0.0177905392, -0.00252509816, -0.0637583062, 0.00521332026, -0.0186161473, -0.000207026416, -0.0190422684, -0.0205736402, -0.0186827295, -0.00926812552, -0.00151139684, -0.0243155118, -0.0134893833, 0.000212020022, -0.0170315113, -0.0037784921, 0.0251544379, 0.0196015518, 0.0164855439, -0.0136891278, 0.00985404104, 0.00926146749, 0.0222381745, 0.0160327908, -0.0309470166, -0.0218520015, -0.000212228086, 0.000683291175, -0.0159928426, -0.0308138523, 0.026019996, -0.0183897708, 0.00184430368, -0.0210263934, -0.018496301, -0.0419196226, 0.000942958519, -0.0351016931, -0.0238228105, 0.00506684138, -0.0178837534, -0.013769025, -0.00687119644, -0.0548630394, 0.00924149249, -0.00381844095, -0.0245818384, -0.0025017946, -0.0179103855, -0.0161526371, -0.00584917236, -0.00270986138, -0.0111457193, 0.000184763267, 0.0124706887, 0.0145946341, -0.0237562284, -0.0104133245, -0.0458878726, -0.0132563487, 0.00505019631, 0.00412804447, 0.0391498394, 0.0090018, 0.0295621231, 0.00439769868, 0.00971422065, 0.0237828624, -0.0186827295, 0.00681127328, -0.00691114506, -0.0136491787, 0.0126105091, -0.00723073585, -0.0285767186, -0.00241190963, 0.0136225466, 0.00473393453, 0.00419795467, -0.00866223499, 0.0266325437, -0.0300415102, 0.00973419473, 0.0101469988, -0.0176041108, -0.0126105091, 0.000614629185, 0.012983365, 0.00198745355, -0.00537977368, 0.00707759848, -0.0215190947, 0.0135892555, -0.0117915589, 0.0126438, -0.046820011, 0.00769680506, 0.00394494552, 0.0035987224, -0.00475058, -0.0485511273, 0.0384573936, -0.0157797821, -0.0194950216, -0.0332640484, 0.0122509701, -0.000198599708, 0.0184696689, -0.0104998806, -0.0120845167, -0.0117516099, 0.00591575354, -0.00548630394, 0.00484712282, -0.019308595, -0.0200276729, 0.0143682575, 0.00902177393, -0.00902177393, -0.0137024438, -0.00419795467, -0.00837593526, 0.00168117927, 0.0103933504, -0.00118847727, -0.0106530171, -0.00786325894, -0.00635186164, 0.02125277, -0.0152071826, 0.0204537939, -0.0465536863, -0.0265526455, -0.0174975805, -0.0266325437, -0.00916825328, -0.00868886709, -0.0288164131, -0.00499027269, -0.00930141564, 0.0372056626, 0.00709757302, -0.0188691579, -0.0246617347, -0.00868886709, 0.0257803015, 0.0159662105, -0.0196015518, -0.0189357381, 0.00802971236, -0.0109459758, -0.0105398288, 0.00628528045, 0.0219052676, -0.00287465029, 0.045009, -0.00113687676, 0.00378182111, -0.025593875, -0.0158197302, -0.0278576408, -0.0167518705, -0.00945455302, -0.00242522592, -0.027178511, 0.0176573768, -0.0137423929, 0.00735724, 0.00633521611, -0.0252742842, -0.013382853, -0.00270986138, -0.00683124736, -0.0171779916, -0.000815621635, -0.0237562284, -0.0130366301, 0.00543636782, 0.0113720959, 0.0413070768, -0.0373121947, -0.02203843, 0.0123042352, -0.0515073389, -0.00946786907, -0.00375851779, 0.0159395766, 0.0142084621, 0.00234366395, 0.00833598617, 0.000491453684, 0.00237196102, -0.0116450796, 0.00139487942, 0.00191754312, 0.00386837707, -0.0407211594, 0.00124423916, 0.000248431694, -0.0221849084, 0.00558284717, -0.011418703, -0.00211895187, -0.0204005279, -0.0090018, -0.0166852884, -0.0116184475, 0.0108461035, 0.00330243539, -0.00624866039, 0.0187359937, 0.010206922, 0.020853281, 0.011425361, -0.0210397094, 0.0039382875, 0.000296703191, 0.031932421, -0.012623826, 0.0325449668, 0.0148076946, -0.024408726, 0.00751703558, -0.00221549463, 0.0085756788, -0.00284635322, 0.0227841418, -0.0203872118, 0.0172978379, 0.0104599316, -0.00781665184, -0.016964931, 0.0152737638, 0.0127769625, -0.00864891894, 0.00759693328, 0.0317992568, 0.00671473, 0.0187892597, -0.00143482827, -0.02203843, -0.0231703129, 0.0266059116, -0.0206668545, -0.0155134564, 0.00331908069, -0.00665147789, -0.00820282381, 0.00159795268, 0.0245552044, -0.00181933562, 0.00664482, 0.0403216705, -0.0269920826, -0.0175641626, -0.00286466302, 0.000170718762, 0.0192420129, 0.00410474092, 0.0345956758, -0.00917491131, 0.0210663415, 0.00391831296, 0.0015530102, 0.0336102694, 0.0010303465, -0.00946121104, 0.00235698023, 0.00802971236, 0.0245818384, -0.00719744479, 0.018123446, 0.0225710813, 0.0258468837, 0.00285134674, 0.000442766031, 0.0298817139, -0.0121244658, -0.031106811, -0.0126304841, -0.0222115424, 0.00167368888, 0.0175375305, 0.0111856684, 0.00558950519, -0.0110857962, -0.00488041341, 0.00533316704, 0.0240758192, -0.0217188392, 0.00645506289, -0.00651831506, 0.00225377898, 0.0165920742, 0.00601562578, -0.0235831179, 0.0227042437, 0.00572932605, -0.00401818519, -0.0213459842, -0.000158026698, -0.0333972089, -0.0119913025, -0.00499360217, 0.0048870719, 0.00224878546, -0.00240691612, -0.000920487277, -0.0137423929, -0.00208233204, -0.0351815894, 0.0247549489, -0.0199344587, 0.00112938636, -0.00176440598, -0.00634520361, 0.0280440692, 0.02282409, -0.00382842822, -0.00553624, 0.0136225466, -0.00739053078, 0.00482714875, 0.00689782901, -0.0166719723, -0.00227375352, 0.00962100644, -0.0141152479, -0.00532983802, 0.00880871341, -0.0206934866, 0.0179103855, -0.0153936101, 0.016139321, 0.00950116, -0.0154069262, 0.0138888713, 0.00827606302, -0.010246871, -0.00677465321, -0.0143149924, -0.0112123005, -0.0185762, 0.00680461479, 0.0285500865, -0.00955442525, -0.0149275409, -0.00131997548, -0.0202274173, 0.000752785476, 0.00214891345, 0.00365531654, 0.00668809749, -0.00314264023, 0.0227974579, 4.83235e-05, 0.0127170393, -0.00319091161, 0.00265826075, 0.00152471312, -0.0110857962, -0.00817619078, 0.0037784921, -0.0178304873, 0.0116850287, 0.0132297156, 0.00601895479, -0.000301696797, 0.0343027152, 0.0152204987, 0.00948784407, 0.00838259328, -0.00688451249, 0.00257836306, -0.00249846559, -0.00944789499, -0.020893231, 0.0160194747, 0.0202407334, -0.0157265179, -0.0120845167, 0.00848912355, 0.0135493064, 0.00436107907, 0.0329710878, -0.0352881216, 0.0143283084, 0.0166453402, -0.0239160247, 0.0379247405, 0.0108394455, 0.0127236973, -0.0459944047, -0.00790320709, 0.0252476521, 0.0268988684, 0.0328379273, -0.0128568606, -0.00600230973, 0.0283902921, 2.95714872e-05, -0.0164189637, 0.00717081223, -0.00212061638, -0.00596568966, -0.0261931065, -0.0132829808, 0.0218653176, 0.0108527616, 0.0172312558, 0.00540307723, -0.0162991174, 0.0153936101, -0.0238361266, -0.0125106378, 0.00241523888, 0.0225045, 0.000539725123, 0.000269654498, -0.00454750704, 0.0277244784, 0.00280806888, -0.0143416245, -0.0154069262, -0.0048404648, 0.0124440556, 0.0260998923, 0.00886863749, -0.000808547367, -0.0102202389, 0.0257004052, 0.0373654589, -0.00654827664, -0.0297219194, -0.0117183188, -0.0384307615, -0.0302812029, 0.000518918445, -0.0358474031, -0.0352614895, 0.00969424564, -0.00512010651, 0.00977414381, -0.00373854325, 0.0113121727, 0.0100404685, 0.0143549414, -0.00207068026, -0.0042079417, -0.015366978, 0.0446894094, -0.021266086, 0.0367529094, -0.00423457427, 0.00832932815, -0.0052332948, -0.00130749145, -0.00143482827, -0.0238494426, -0.0152604477, -0.0111790104, 0.0125639029, 0.000452753244, -0.00564277032, -0.00411805697, 0.0155400895, -0.0460743, -0.00453751953, -0.0196548179, -0.0126371421, -0.0122842612, 0.0190422684, 0.00544635532, 0.00906838104, -0.00978746, 0.0266991258, -0.0157265179, 0.0393362679, -0.0348353684, 0.00181267748, 0.0126770912, 0.0143682575, -0.00368860736, -0.0226642955, 0.0117050027, 0.00863560196, -0.0237562284, 0.00672804657, -0.0119846445, 0.0292957984, 0.000987900887, 0.00601562578, -0.0122709442, 0.0168584, -0.00287298555, -0.034249451, 0.0105598038, -0.00778336078, 0.024035871, 0.0253142323, -0.0240625031, 0.0212128218, 0.0142217781, -0.0112189595, -0.0109326588, -0.000380346028, 0.0124307396, -0.00194417569, 0.00828937907, 0.00886863749, 0.0315861963, 0.0151938666, 0.0219452158, -0.0368328094, 0.00362202595, 0.00844251644, 0.00858899578, 0.00501357624, -0.0134361181, -0.0243554618, -0.00494699506, -0.0099339392, -0.0255672429, 0.0389101468, 0.0349685289, -9.59707904e-05, 0.0140753, 0.0274315197, 0.00370858167, -0.00230704411, 0.0182965584, 0.00760359131, 0.0319590531, -0.0136292046, -0.0116117895, -0.0263129529, -0.00154635205, 0.00456748111, 0.00464737881, -0.0135892555, 0.00884866249, -0.0129700489, -0.00851575565, 0.0166320242, -0.0115318913, 0.00525326934, -0.00921486, 0.00390832592, 0.0222514905, -0.00900845788, -0.0156865679, -0.0166453402, 0.0143016763, 0.00540640624, -0.00217887503, -0.01653881, 0.0272584092, -0.0165121779, -0.00660487078, 0.0124240816, -0.0170980934, -0.0233966894, -0.0190289523, 0.0226776116, 0.0068512219, 0.011425361, -0.0178171713, -0.00838259328, -0.00544968434, -0.0252476521, 0.00522663677, -0.00049436657, -0.0053498121, 0.00451754546, -0.0123242093, -0.013795658, -0.0237429123, -0.00709757302, 0.00498694368, -0.0206135884, -0.0237695444, 0.0153137129, -0.00189423969, 0.00845583249, -0.00417465111, 0.00923483446, 0.00584584335, -0.0123774745, -0.0093613388, -0.0129167838, 0.00992728, 0.02675239, -0.0116317635, 0.0133628789, 0.00944123697, 0.0214658305, 0.0165787581, -0.0352881216, -0.00438771164, -0.00719744479, -0.0255805589, 0.000136907925, -0.0156333037, -0.00381511194, -0.0146612152, 0.00839590933, 0.00505685434, 0.000441101496, 0.0136491787, -0.0131098693, 0.00513342302, 0.0159528945, -0.016924981, 0.0116983447, 0.000284427253, 0.00459078467, -0.0330243558, -0.0041347025, 0.00445429282, 0.0138888713, 0.00422791624, -0.00864891894, 0.0074770865, 0.00602228381, 0.00774341216, -0.000401984958, -0.0215723608, -0.00826940499, -0.00811626762, 0.03390323, -0.0325183347, -0.0133961691, 0.00016666147, 0.0101270247, 0.00310269138, -0.000290669239, 0.0237695444, 0.0132829808, 0.0190689, -0.00128918153, 0.0359006673, 8.65557668e-05, 0.00515672611, 0.0228640381, -0.00686453795, 0.00807631854, -0.0154069262, -0.0183764547, -0.0137423929, 0.0210663415, -0.000683291175, 0.0124307396, 0.0135493064, -0.0133562209, -0.00958771538, -0.00443098927, -0.0151938666, -0.00480717421, 0.0074770865, 0.013782341, 0.00475723809, 0.000853073667, 0.0215723608, -0.0050734994, 0.00235531549, 0.00932139065, -0.00918822736, -0.02596673, 0.00970090367, 0.0233567413, -0.0212927181, -0.00533316704, -0.000373687886, 0.0118514821, 0.000613380747, 0.0345690399, -0.0185096171, 0.00470730197, -0.013795658, -0.0152338147, 0.00642510131, 0.0190156363, 0.0135093573, 0.00691114506, 0.0145014198, -0.0035021794, -0.00890858565, -0.00909501407, -0.0101403408, 0.0104865637, -0.014980806, -0.0167918187, 0.0134893833, 0.0221050121, 0.016964931, 0.00294622523, 0.0222914387, -0.00905506499, -0.00802305341, -0.0278576408, -0.00942792092, -0.000742382137, -0.00810295157, -0.0133162718, -0.00638515223, -0.000528073404, -0.00969424564, -0.0151805496, 0.0177772231, 0.00473393453, -0.0151805496, -0.0117849009, 0.00734392414, -0.00755032618, -0.000489373, -0.0130432881, -0.013782341, 4.28357416e-05, -0.0115185753, -0.00713086361, -0.00741716335, -0.00463739177, 0.00711088907, 0.0101270247, -0.0012417424, 0.0087088421, 3.23803874e-06, 0.00552625302, -0.0149009079, 0.0182965584, 0.0168450847, 0.00570269348, -0.011818191, -0.00239193533, 0.00469398592, -0.0213060342, -0.0141285649, -0.00846914854, -0.0127503304, 0.0130499462, 0.0280973334, 0.00733726565, 0.019321911, -0.0147277964, 0.0212261379, 0.00396824908, 0.0250479076, -0.0136025716, -0.011445336, -0.0095677413, -0.00778336078, -0.0159262605, -0.00156549423, 0.0063418746, -0.00205736398, -0.00612215605, -0.0185495671, -0.00141318934, -0.00186594261, 3.52738152e-06, -0.0206934866, -0.0152471317, -0.0269255023, 0.00550294947, -0.0210929755, -0.000420710974, -0.0328645594, 0.00827606302, -0.0103334272, 0.00758361677, 0.0130832372, 0.00187759439, 0.00503688, -0.00358873536, -0.018123446, -0.00560615025, 0.00632855808, 0.010246871, -0.00959437434, 0.00182599376, 0.0103667174, 0.0201608352, 0.00743713789, -0.0223180708, 0.0148476427, 0.00752369361, -0.00550960749, -0.00714417966, -0.00222215289, -0.0139021883, -0.00533316704, -0.020879915, -0.0300681423, -0.00665147789, -0.0159662105, 0.0247549489, 0.0226509776, -0.00314763375, 0.00667145243, 0.00421792921, 0.01811013, -0.0151006524, -0.00521332026, 0.0282038637, -0.0243021958, 0.0328645594, 0.0396558568, 0.0138222901, -0.00332407444, 0.00301780016, -0.00438771164, 0.00407810835, 0.00492369151, 0.000927977671, -0.0241690334, 0.0185096171, 0.013795658, 0.012597193, 0.00399155263, 0.00414801855, 0.00697772624, -0.0140619827, -0.00491037546, -0.000520583, 0.00935468078, 0.00340064289, -0.0151139684, -0.000163124336, 0.00721741933, -0.00789654907, 0.0195216537, 0.025234336, 0.0113720959, -0.000456914568, 0.0057892492, -0.00681127328, -0.0183365066, 0.0151805496, -0.0148076946, -0.00175441883, 0.0130499462, -0.00966761354, -0.00361869694, -0.0204005279, -0.00443764776, -0.00136158883, 0.0156466197, -0.0238627587, 0.00128668477, 0.00276479102, -0.02993498, -0.0270986129, 0.0254074465, 0.0210530255, -0.01418183, 0.0183231905, 0.00525326934, -0.00172112812, -0.00367196207, -0.00446428033, 0.00319257611, 0.00119097403, 0.0190689, 0.0317459926, 0.00475723809, -0.0116650546, 0.00641844282, 0.00942792092, -0.0107728643, -0.0134893833, -0.0119513543, 0.00559616322, 0.00445762184, 0.00780333532, -0.00014668706, 0.00570269348, 0.0212794021, -0.0201208871, -0.00860897, -0.0168850329, 0.00113521214, 0.000744878955, -0.0097541688, 0.00703099137, -0.00670807203, -0.00214225519, 0.0180169158, -0.00496031111, 0.0227708258, -2.61123769e-05, 7.32395e-05, 0.0100138364, 0.0181500781, 0.0195083376, 0.0209198631, 0.00528988894, 0.00391831296, 0.00931473263, 0.0152338147, 0.00187260075, -0.000944623, 0.0287897792, 0.0242755637, -0.00368527835, 0.0304143652, 0.00506351236, -0.0208266489, 0.00048854074, -0.00609219447, 0.00583918532, 0.000243854229, -0.0241424013, 0.0196415018, -0.00033041, 0.0027964171, -0.00583585631, 0.00575928763, -0.0155933546, -0.010626385, 0.00538976118, -0.00333073246, -0.0237029642, 0.00761690736, -0.0104466155, -0.0160327908, -0.000922151841, 0.00253175618, 0.00533982506, -0.000306898466, 0.0120046195, 0.0323319063, -0.00214059069, 0.00568937697, 0.0102535291, -0.00353214121, 0.000640013313, -0.00317925983, -0.0182033442, 0.0137157599, -0.0074770865, 0.00134494342, 0.00556287263, 0.0104266405, 0.0211861879, 0.014168513, 0.0046007717, 0.0121111488, 0.0138222901, 0.00803637, 0.0169782471, -0.00808297656, 0.0215057787, -0.0152471317, 0.00727068447, 0.00885532051, -0.0143416245, -0.00233867019, 0.00334737776, -0.0140353506, 0.0164855439, 0.00946121104, 0.00160793983, 0.00577260368, 0.00150557095, -0.00945455302, 0.00168700516, 0.00220384309, 0.0108527616, 0.0237961784, -0.0191221666, -0.016139321, -0.00226210174, 0.0111656943, 0.012996681, -0.0132097416, 0.0018809234, -0.0142084621, 0.0146612152, 0.00388169335, 0.0169382971, -0.0172712039, 0.0064217723, -0.00840256736, 0.020480426, -0.00822279789, -0.0157797821, 0.00205070595, -0.0175508466, 0.00552292354, -0.0235431679, -0.0209598113, 0.00169865694, -0.00371524, -0.0014065312, -0.000739469193, 0.0144082066, 0.0235698018, -0.00459744269, -0.0294289608, -0.00408143736, 0.0148609597, 0.0178571213, -0.0178171713, 0.00992728, 0.00402484322, 0.0142350942, -0.00611216901, 0.00925480854, -0.010226897, 0.0328112952, -0.0165787581, -0.0213593, -0.000923816347, -1.72045184e-05, 0.0222648066, 0.00692446157, -0.00235365098, 0.0062253573, 0.00590576651, -0.0055462271, -0.00379846664, 0.0191088505, -0.0141285649, -0.00172778626, -0.0294555929, -0.00883534644, -0.0190023202, 0.0138489231, -0.00398822362, 0.0225843973, 0.00351882493, -0.014581318, -0.0081562167, -0.00826940499, -0.0206402205, -8.21343492e-05, -0.000152200824, -0.00165205, -0.0301214065, 0.0207334347, 0.00687785447, 0.0223580208, 0.0278576408, 0.0149009079, -0.00476722512, -0.00922817644, 0.026379535, 0.00615544664, 0.00549629098, -0.00874879, 0.00769680506, -0.00737721473, 0.00623534434, -0.0425854363, -0.00229539233, -0.00421792921, 0.00633854559, 0.0243687779, -0.0120245935, -0.0201475192, -0.00978080183, 0.00413137348, 0.00735724, 0.0381378, 0.0132164, -0.010226897, 0.00543969683, 0.0054663294, 0.0151406014, -0.0235431679, -0.0118847722, -0.0090018, 0.0257669855, 0.00098623638, 0.0148476427, 0.000826441101, 0.0065749092, -0.000178417235, -0.0180302318, 0.00762356585, -0.00399821065, -0.00465736631, -0.000322087319, 0.0382709652, 0.00637183618, -0.00985404104, 0.0134560931, -0.00457746862, -0.0208000168, -0.0164855439, 0.0132563487, -0.00393162947, -0.0112189595, 0.0233034752, 0.0107595474, -0.0191754308, -0.00989399, -0.00915493723, 0.0308671184, 0.00486376835, 0.00112272822, 0.00463739177, -0.00917491131, -0.0101603158, 0.0106530171, 0.0115452074, -0.0074038473, 0.0101270247, 0.0170448273, 0.0075569842, -0.0105797779, -0.00448092539, 0.0302812029, 0.0039382875, 0.00152720988, -0.0151406014, -0.00850909762, 0.0182432923, 0.011804875, -0.0102135809, -0.00622202782, -0.00151805498, 0.00506018335, 0.0117050027, 0.0021089646, 0.00536978664, 0.00886197854, 0.0033041, -0.0372589305, -0.0254740287, -0.00924149249, -0.00447759638, -0.00327247381, 0.00161626248, -0.00739718881, -0.0111856684, -0.00965429749, -0.00510679046, -0.00410474092, -0.00737721473, 0.0128169116, 0.0198279284, -0.0167252365, -0.0168584, -0.00913496222, 0.00338399759, 0.00161043659, -0.00051933463, 0.000752369349, -0.0252077021, 0.00923483446, 0.00383841526, -0.0155267734, 0.0138222901, -0.00102701748, 0.00782331, 0.0148210106, 0.0085756788, -0.00902177393, -0.00359539338, -0.0212394539, 0.00294788973, 0.0097275367, -0.0133429049, -0.000975416915, 0.00682458933, 0.00256671151, 0.00845583249, -0.0165254939, 0.00108943752, 0.0145147359, 0.0211995039, 0.000686620246, 0.0264461152, -0.0128901508, -0.00503022177, -0.00571933854, 0.00133495627, 0.0200276729, -0.0075569842, -0.0133029558, 0.0078566, -0.00739718881, -0.0184164047, -0.0158064142, 0.0124107655, 0.00616876315, -0.00530320546, 0.00875544921, -0.00102535298, 0.019308595, 0.0159795266, 0.00591242453, -0.000299408042, 0.0348353684, 0.000245934905, -0.00399821065, -0.0210530255, 0.00539974822, 0.00470397295, -0.0149142249, -0.0170581434, -0.0280174352, 0.000284011097, -0.00123508426, 0.0053597996, -0.00370192365, -0.00621537, -0.0175907947, 0.000826025, 0.0326515, 0.0183897708, 0.00478387065, 0.00196581474, -0.0104532735, -0.0136491787, -0.00443098927, -0.00626863493, 0.00512010651, -0.0220117979, -0.0112722237, -0.00812292565, -0.00999386236, -0.0182566084, 0.00218053954, -0.00689117052, 0.0116184475, 0.0182965584, 0.0122975772, -0.00900845788, 0.0288963094, 0.0225577652, 0.00828272104, 0.00455416506, 0.0241290852, 0.00197080825, 0.00655160565, 0.00810961, -0.00892856065, -0.015366978, -0.0182699244, -0.0138489231, -0.00540307723, 0.00460743, 0.00222048839, 0.010659676, -0.0127969375, 0.0132164, -0.0186294653, -0.0087155, 0.00735058216, -0.00737721473, -0.00651498605, 0.00901511591, -0.0101936059, 0.00181101297, -0.00603227131, 0.00480717421, -0.00410141191, -0.00431780098, 0.0111790104, 0.00094961666, -0.0146612152, 0.0287098829, 0.00745711243, -0.000387628359, 0.0146212662, 0.00342894, 0.0121377818, -0.0215856768, -0.000260499568, -0.00644174637, 0.00166120497, 0.00552292354, -0.00378515036, 0.00130998821, -0.0158064142, 0.00380179565, -0.00566940289, 0.00756364223, -0.00205237046, 0.00176607061, -0.0147943776, -0.0132230576, -7.07947111e-05, 0.0141019318, -0.00804968644, -0.0168450847, 0.0221449602, -0.00502023427, -0.00980743393, 0.000926313165, -0.0124706887, 0.00316927279, 0.0152204987, -0.00413137348, -0.0126704322, 0.0151805496, -0.00201575062, 0.00864226, -0.00484712282, -0.0178571213, -0.02046711, 0.0119979605, -0.0273516215, 0.00541639375, 0.00861562788, -0.0055562146, -0.0268855523, -0.00667478144, -0.00572599703, -0.0206801705, -0.0274315197, -0.011032531, 0.00051933463, -0.0310801789, -0.00251011713, -0.00490038795, 0.0130033391, -0.0140619827, 0.00383508625, 0.00707759848, 0.00572932605, 0.0203605797, -1.17167583e-05, 0.0209864452, 0.0258602, 0.000520999136, 0.00282471417, -0.0118781142, 0.00532650854, 0.00531319249, -0.00107861799, -0.00586248888, 0.010233555, -0.0125306118, 0.0126105091, -0.00767683052, 0.0167119205, 0.01732447, -0.0141418809, 0.00889527, 0.0201874673, -0.000921319588, 0.000621287327, -0.0129567329, -0.0136292046, -0.00936799683, 0.00347554707, -0.00454417756, -0.00787657499, -0.0121777309, -0.0156066706, -0.00839590933, -0.00224878546, 0.00399488164, -0.0113121727, 0.0210397094, 0.00833598617, 0.00296453503, 0.0182566084, -0.0123375263, 0.0341429226, 0.0151006524, 0.0022055076, -0.0186827295, 0.0147144804, 0.00580922375, 0.0257403534, -0.0073239496, 0.0101736318, 0.0144614717, -0.00178937404, -0.00223214016, -0.00604891637, -0.0190156363, 0.00627529295, 0.00958771538, -0.0150074381, 0.0230904147, 0.0118248491, -0.00643841736, -0.0167918187, -0.00906172302, 0.00904840697, -0.0169382971, -0.00125589094, -0.0262863208, -0.0266458597, -0.0257403534, 0.0164056476, -0.000102993043, -0.00901511591, -0.00992062222, 0.00284135947, -0.00193252391, -0.0191754308, -0.0131032113, -0.010639701, -0.024408726, 0.00183265191, 0.00555954361, -0.00331741618, -0.00901511591, 0.0280440692, 0.00722407736, 0.000825192721, -0.00422125822, 0.00407145033, 0.00517337164, 0.0245818384, 0.00705762394, -0.0229705684, 0.0126637742, -0.0171513576, 0.00476722512, 0.00594238611, 0.0131831095, -0.00518335868, 0.0161659531, -0.00587580493, -0.00172612176, -0.00922817644, -0.00651831506, -0.00561946677, 5.82066714e-05, -0.0294023287, 0.0114786262, 0.0133495629, 0.00934136473, -0.00222714641, 0.0237828624, -0.000690365443, 0.00656825118, -0.00455083605, -0.0178571213, 0.0376317836, 0.00717747072, 0.000225752417, -0.00639846874, 0.00733060762, 0.0215324108, -0.0105864359, 0.0173644181, 0.000476889, 0.00507017039, 0.0107262572, 0.0143948896, -0.00573598407, 0.0271385629, -0.0214791466, 0.00748374499, -0.0170714613, -0.0188158918, -0.00719744479, -0.0171247255, -0.0123907905, 0.0115851564, -0.0290561058, -0.0115385493, 0.0224911831, 0.00388502236, 0.0151272845, -0.0135160163, -0.0168051347, 0.00707094045, 0.011838166, 0.00266991253, 0.00636850717, -0.017737275, -0.0130432881, 0.0100005204, 0.0146745313, 0.015766466, -0.024808215, -0.00455749407, 0.0081562167, -0.00442100223, -0.0099605713, 0.00126171671, 0.000808963494, -0.012197705, -0.00153969391, -0.0336901695, 0.0233966894, -0.00660487078, 0.00970090367, -0.00350883766, -0.00170032145, -0.0190023202, 0.00277311355, -0.0041713221, 0.00285800477, -0.00445762184, -0.00554289808, -0.00591908302, -0.0112389335, -0.0184164047, 0.00582919782, -0.041706562, 0.0118581401, -0.00804302841, -0.00383841526, 0.0176041108, -0.0022071721, 0.000791902, -0.022451235, -0.0240491871, -0.00908169709, 0.00635186164, 0.00744379591, -0.0145014198, -0.00948118512, 0.0126304841, -0.0200143568, 0.0033673523, -0.0171247255, 0.0196681339, 0.00595237361, -0.00662151631, -0.00273982296, 0.0121444399, -0.00313431746, 0.0143416245, 0.017710641, 0.0116251055, -0.00199910533, 0.00194417569, -0.00427452335, 0.00808297656, 0.00617209217, 0.0331575163, -0.0129301, 0.0115385493, 0.0270986129, -0.00017810514, -0.0109726079, 0.0195482876, 0.0129101258, -0.00395826204, 0.00935468078, -0.00680794381, 0.0108594196, 3.45650878e-05, -0.00349885039, 0.0108527616, 0.0049569821, -0.0134694092, -0.00370858167, 0.0078566, 0.00274981023, -0.00904840697, 0.0074038473, 0.0204271618, 0.0147677455, 0.0122443121, -0.00269321608, -0.0222248584, -0.0175242145, -0.0118514821, -0.00904840697, -0.01575315, -0.00781665184, 0.00575928763, -0.00451421598, 0.0122576281, 0.00889527, -0.0101203667, 0.0135825975, -0.00983406696, 0.0215989929, -0.00361869694, -0.00511344848, -0.000215973283, -0.0189224221, -0.0141152479, -0.0228507221, -0.00275313924, -0.0105131967, 0.00323252496, 0.00598233519, 0.0197480321, 0.0042146, 0.00560615025, 0.00683124736, -0.00228207605, -0.000385547697, 0.0062619769, -0.0097275367, -0.00915493723, -0.0084758075, -0.00326248654, 0.0128035955, -0.0113920709, 0.0073239496, 0.00727068447, -0.00694443565, 0.00402817223, 0.00566940289, 0.0016512177, 2.97795541e-05, 0.00323918322, 0.00684456388, -0.0176440608, 0.000389292894, 0.0108461035, -0.016964931, -0.0166719723, -0.011032531, -0.0138089741, 2.22501385e-05, 0.00228041154, 0.0024218969, 0.0310269129, 0.0225178152, 0.00639513973, 0.0117849009, -0.011012557, 0.00298783858, 0.0207334347, 0.0036619748, -0.000865557697, 0.0277777426, 0.0073705567, 0.000283178844, 0.00793649815, -0.00274814549, -3.71139067e-05, 0.000623784086, 0.0126371421, 0.00772343762, 0.00083559606, -0.0187626276, 0.00918822736, 0.00855570473, -0.00260998937, 0.023196945, -0.023623066, 0.00194916932, 0.017337786, 0.00496031111, -0.00149059016, 0.00299616111, -0.0123907905, 0.0108327875, 0.0135692814, -0.0143283084, -0.0178038552, 0.00581588177, -0.00128252339, 0.0132563487, -0.0104932226, 0.010633043, -0.0323319063, 0.00347554707, -0.00963432249, 0.00560282124, -0.0121178078, 0.0280707013, 0.000244062292, 0.0157398339, 0.0184030868, -0.00434110453, -0.00791652407, -0.0014972483, -0.0187493116, -0.0287897792, -0.0286033526, 0.00828937907, 0.0020623575, -0.00805634446, 0.00524328183, 0.0123641584, 0.00353214121, -0.0170181952, -0.0303877331, 0.0156599358, -9.26937355e-05, 0.0240491871, -0.0215190947, 0.00123591651, 0.0197480321, -0.000722407771, -0.000306898466, -0.0122776022, 0.0101137087, -0.0105531458, -0.0130299721, -0.0160594247, 0.0146079501, -0.0213992484, -0.00858233683, 0.00569270644, -0.00250845263, -0.0141418809, -0.0143416245, -0.00501024723, 0.0189623702, -0.00145979633, 0.00372855621, -0.012976707, 0.00922151841, 0.00822279789, 0.00539974822, 0.00124091, 0.000935468124, 0.00039948817, -0.0107195992, -0.0123242093, -0.0120112775, 0.0125639029, -0.00465070782, -0.0059856642, -0.00422458723, -0.00709091499, -0.0195616037, 0.0281239655, 0.0187626276, -0.00221715937, 0.0156998839, 0.0166053902, -0.00775007, -0.00707759848, -0.0355278142, 0.0182832405, 0.000839341257, 0.00510679046, 0.0151938666, -0.000492702064, -0.00646837894, -0.0135759395, -0.00858233683, -0.00137324049, 0.000788156816, -0.00150557095, 0.0102002639, 0.0108261295, -0.0130765792, -0.0160461068, 0.00256671151, -0.00644174637, -0.0211462397, -0.00593572808, 0.00986069907, -0.00958771538, 0.00412138598, 0.0108594196, 0.0109792659, -0.0405879952, -0.00974085275, 0.00191088498, 0.0248348471, -0.00320422789, 0.0166719723, -0.0175508466, 0.0160993729, -0.0289495755, -0.00319923437, -0.00989399, 0.0210530255, -0.0118914312, -0.00380845368, -0.0206269044, 0.0078566, -0.0108061545, 0.00430115592, 0.0156466197, -0.012983365, 0.0104133245, -0.00902177393, 0.0415734, 0.00352548296, 0.020893231, 0.0190955345, 0.016139321, -0.0215723608, -0.00207068026, -0.0246084705, -0.0137024438, -0.0197080821, -0.00221549463, -0.00800973736, 0.0182699244, 0.0201208871, 0.00231370213, 0.01732447, 0.00799642131, 0.0298018157, -0.00183764554, -0.00503022177, -0.0109726079, -0.011405387, 0.00341895269, -0.00735058216, 0.00520000421, -0.000354337681, 0.00270986138, 0.00499360217, 0.00842254236, -0.013009998, 0.00759693328, 0.0102135809, -0.0100537855, -0.0099339392, -0.00507682888, 0.0174176842, -0.0115452074, -0.00806300249, 0.0101137087, 0.0182299763, -0.00366863282, -0.00550627848, -0.00119763217, -0.0138489231, 0.0353680179, -0.00501024723, 0.000146166887, -0.00370192365, -0.00202573789, -0.00628528045, -0.00151056459, -0.00534315407, -0.00799642131, 0.0130699212, 0.00137407274, -0.0113321478, -0.0321987458, -0.0148609597, 0.00393162947, -0.0108394455, -0.0166852884, -0.010639701, -0.0215324108, 0.00361869694, 0.00804302841, 0.00195749197, 0.00957439933, -0.00762356585, 0.0053964192, 0.00322087319, -0.0390699431, -0.0159662105, 0.000192253676, -0.0271918271, -0.00892856065, -0.0127769625, -0.00233367668, -0.0226110294, 0.014940857, 0.00380845368, 0.00882868841, -0.00286466302, -0.00301447115, -0.0071641542, -0.0117715839, -0.00890192762, -0.00641511381, 0.0210929755, -0.0224911831, 0.0122176791, -0.000257794687, 0.0188824739, -0.00941460393, -0.0109193427, 0.00259167934, -0.00647836644, -0.00743048, 0.0125306118, -0.0148476427, -0.0136225466, 0.00414136052, -0.0104066664, 0.00116767059, 0.00598899322, 0.0108993687, 0.0112389335, 0.00330243539, -0.0164589118, 0.0204005279, -0.00940128788, -0.0113388058, -0.00317593082, 0.0161925871, -0.00904174894, -0.0068146023, -0.00157964276, 0.00176440598, 0.0111057712, 0.000650000526, -0.0060655619, 0.0137423929, -0.0230904147, -0.0037784921, -0.00126171671, 0.0182432923, -0.0222781226, 0.0148609597, -0.011798217, 0.00675467867, 0.0234366376, -0.0254607126, -0.00912164617, -0.000440269243, -0.0208266489, 0.0194950216, -0.00416799309, -0.0132363746, -0.0209065471, -0.00986069907, -0.0303611, 0.011425361, -0.0089685088, 0.0227308758, 0.0127703045, -0.0109260008, -0.00175608334, -0.0149142249, -0.00601229677, -0.0219452158, 0.00974085275, 0.00313598197, 0.0058325273, -0.0195749197, 0.00524994032, 0.00898182578, -0.0132430326, 0.0410673842, 0.0256737713, 0.0219052676, 0.000724488404, 0.017697325, -0.00791652407, 0.00140819571, 0.00688451249, -0.0183098745, -0.0245152563, -0.0284701884, 0.0026798998, -0.00924149249, 0.00994059723, -0.00826940499, 0.00719744479, -0.000359123194, -0.0173777342, -0.014554685, -0.00166370173, 0.0061354721, -0.0152471317, 0.0145280529, 0.0131365024, 0.0201874673, -0.000349552138, -0.0257137213, -0.0348353684, 0.00418463862, 0.00381844095, 0.0230238345, -0.0167651866, -0.0267790221, -0.00737721473, -0.0100604435, -0.00497695664, 0.0111723524, 0.0106530171, -0.0241424013, -0.0112455916, -0.0104599316, 0.0138888713, -0.0234499555, 0.0130566042, 0.00077400828, -0.00134161441, -0.0151406014, 0.0217721052, 0.00264827348, -0.00072032708, 0.00764354, 0.00202407339, 0.000797727902, 0.00865557697, -0.000569686759, -0.0205336921, -0.0126371421, -0.0101802899, -0.0138622392, -0.00622202782, -0.0144215226, -0.00784994196, -0.00841588341, 0.00411139894, -0.0254873447, -0.00307605881, -0.0144082066, -0.00129334291, 0.00284968223, 0.0177905392, -0.000473143795, -0.00524661131, 0.0139155043, -0.00856902078, 0.017431, -0.0237562284, -0.00428451039, 0.0077633867, -0.000289837, -0.0296420213, 0.0156865679, 0.00305109075, -0.000259043096, -0.00029399831, 0.0297219194, 0.000612132368, 0.0222381745, 0.00774341216, 0.00264827348, 0.000725320657, 0.00806966051, 0.0228640381, 0.0210929755, 0.0136624947, -0.0014639576, -0.00437439512, -0.00368860736, -0.0064950115, 0.00765685644, 0.00948784407, 0.0222381745, 0.0264860652, -0.00492036249, 0.0115252333, 0.00170614733, -0.00183931, 0.000746127334, -0.012197705, 0.0174842644, -0.0062619769, 0.00982740894, 0.0357142426, -0.00761024933, 0.0125439279, 0.0132829808, -0.021625625, -0.00749706104, 0.0118448241, -0.00700435881, -0.0150207551, 0.00273482944, -0.0104199825, 0.0259534139, 0.0266325437, -0.0304143652, 0.0234366376, 0.000125048115, 0.0241823494, -0.000626280904, 0.0035987224, -0.0180435479, 0.000242397757, 0.00180601934, 0.00470730197, 0.0035454575, 0.0194284413, 0.012990023, -0.00895519275, -0.00694443565, -0.0173511021, -0.0120911747, 0.0372056626, 0.00550294947, 0.0109659499, 0.0144348387, -0.00367196207, -0.0290561058, -0.0174443163, 0.00137740187, -0.0219851639, -0.00414136052, 0.0192952771, 0.00407810835, 0.0148875918, 0.00350550865, 0.0100071784, 0.000258210843, 0.00864891894, 0.00190422684, 0.0241157692, 0.0221050121, 0.00711088907, 0.01575315, 0.00529987598, 0.0128834927, -0.00434443355, 0.00491703348, -0.0203206316, -0.0250212755, 0.0083160121, 0.00327913184, 0.0163390655, -0.00477388361, -0.0136624947, 0.00400819769, 0.0117183188, 0.0200409889, -0.0110991122, 0.00396824908, -0.0199078266, -0.0063418746, 0.0258069355, 0.00860231183, -0.0205736402, -0.014980806, 0.00226043724, -0.0275114179, -0.0144348387, -0.00313764648, 0.0243554618, -0.0001552178, -0.00289296, -0.018536251, -0.0122576281, 0.0196415018, 0.00229372783, -0.00274981023, 0.0203472637, 0.0280174352, -0.00689782901, 0.00389168039, -0.0199610908, 0.0105198547, -0.00217554602]
11 Sep, 2020
Why Golang is so Popular Among Developers? 11 Sep, 2020 Golang, also known as “Go, ” is a compiled language, fast and high-performance language intended to be simple and is designed to be easy to read and understand. Go was created at Google by Rob Pike, Robert Griesemer, and Ken Thompson, and it first appeared in Nov 2009. The syntax of Golang is designed to be highly clean and accessible. Go was invented in 2007 at such a time when multicore CPU architectures were common everywhere, and no programming language simplified the development of multi-threaded applications. The responsibility of managing different threads safely and efficiently was a huge responsibility on developers. Go is different from other languages; it is young yet so powerful. Goroutines revolutionized competitive programming on the other level. It is tested and proved that applications that are written on Go are highly performant and scalable. Golang is a very efficient language, just like C/C++, handling parallelisms like Java, and has easy code readability like Python and pearl. Golang has indisputable architectural advantages over its predecessors. Go is used by some of the big brands such as BBC, Uber, Novartis, Basecamp, and Soundcloud. Uber has reported better throughput, high performance, latency, and uptime. BBC, the house name in broadcasting the world news, uses it for backend, including crawlers and web scrapers. The build and deployment system of Soundcloud is in Go. Why Go? It is effortless to learn for programmers with C++ experience, and also converting legacy code to Go is pretty straightforward and fairly simple. Being a compiled, statically typed language, it’s much faster than interpreted options and also offers most of the performance benefits. Go as a language is more similar to C, however in addition to C features, Go offers memory safety, garbage collection, structural typing, and CSP-Style concurrency. Go fits really well for general performance-oriented cloud software. The popular DevOps tools are written in Go, such as Docker, and even the open-source container orchestration system Kubernetes is built on go. Vitess, a Google built distributed database system and a MySQL backend built with Golang, has been in use by YouTube since 2011. Golang ranked in the 5th position in the Stack Overflow Survey that was conducted in 2018. According to the Q2 GitHub report in 2018, Golang had a growth rate of almost 7% overall with a 1.5 change from the previous Quarter. And by Q4 of 2019, Golang has grown to an 8% overall increase. Reasons Why Golang is so Popular? Go is a statically typed, compiled language; hence you can easily catch problems early on. Go compiles instantly to machine code, so it makes the edit/refresh cycle relatively fast, and still reasonably efficient machine code is produced. Go is designed in such a way that it makes it easy to write highly concurrent, networked programs. Go comes with a lot of built-in infrastructure to support testing; you can effortlessly define and test modules; this further strengthens engineering discipline. Go’s cross-platform hallmarks make porting code very easy, and this is the most significant advantage of Go. Go gives opinionated formatting, linting & vet tool as a default part of the package, and the Go compiler even enforces things like unused variables. This makes it a professional language. Go’s native support for concurrency and parallelism is what makes it so special. This makes Go a perfect language for applications that require heavy concurrent and/or parallel processing, networking, massive computing, etc. Go is the best for cloud compatibility. Go is featured with a better garbage collection facility, good network package & solving the problem of unused variables, multi and cross-culture compilers. Practical Cases 1. SendGrid moved to Go SendGrid, a customer communication platform, decided to move to Go as its primary development language long back in 2014. The SendGrid team needed to make a fundamental shift in their development language, and it boiled down to a competition between Scala, Java, and Go. The biggest challenge that SendGrid faced in development then was concurrent programming. Having the idea of concurrent asynchronous programming as part of the language was one of the most compelling reasons why Go was chosen at SendGrid. 2. Hexac switched from Python to Go Tigran Bayburtsyan, the Co-Founder and CTO at Hexac, writes an exclusive article where he shares why his company moved from Python to Go. Based on their code base statistics, after rewriting all their projects in Go, they got 64% less code than they had earlier. They saved a lot of resources (Memory, CPU) because of the built-in language features of Go. Go gave their development team huge flexibility, single language for all use cases, and for all of them, it worked very well. At Hexact Inc, they got about 30% more performance on their backend and API services. Now they can handle logging real-time, transfer it to the database, and make streaming with Websocket from single or multiple services. This is an outstanding outcome from using Go language features. 3. Salesforce ditched Python for Go Before launching Einstein Analytics in 2017, Salesforce renewed the backend and entirely rebuilt it on Google’s popular Go language. Salesforce principal architect Guillaume Le Stum stated that ‘Python fails to do multi-threading well, while Go, is built for heavy applications suitable for Google’s production systems, the language has been tested and approved by Google, so Salesforce chose to shift Einstein Analytics, the vital part of Salesforce, from a hybrid C-Python application to a completely Go application. 4. Containerum chooses to Go over others Containerum, a container management platform been using Go as their primary language for about four years now, and despite certain challenges, the engineering team thinks it is a good choice. The main reason to choose Go at Containerum Platform is that it consists of a group of smaller services that communicate with other components of the system. To ensure this, it is highly necessary to secure interface compatibility and write code that is too simple, easy to read and maintain. Go enables adding patches and allows using ready components in the code base, e.g., image names parsing validation, key object models, etc. and this is one of the reasons Containerum chose Go. Containerum considered Go over other languages because of its many Pro features/facts such as static typing, minimalism, standard library, fantastic performance, super-fast compilation, and much more. 5.  Popular DevOps tools are written in Go The giant company Google considered writing Kubernetes in other languages, including but according to Joe Beda, co-founder of Kubernetes, none of these languages were as effective as Go. There were many reasons why Kubernetes is written in Go. Some of them include – great libraries, fast tools, built-in concurrency, garbage collection, type safety, etc. According to Joe, the patterns and tools in Go have encouraged the Kubernetes team to make well-factored and reusable code that will give them both a high degree of flexibility and velocity at the same time. Docker has been the biggest user of Go. The team at Docker liked to Go because it offered them many benefits: static compilation with no dependencies, neutral language, a full development environment, extensive strong standard library, and data types, strong duck typing, and the ability to build for multiple architectures with minimal nuisance. Istio, part of the Kubernetes ecosystem, is also written in Go. Since Kubernetes was also written in Go, it was a perfect approach for Istio to write in Go. That is not just one reason, among many, Go’s suitability for decentralized, distributed networking projects was one of the main reasons to choose Go at Istio. If you’re programming your applications in GoLang, how hard is it to practice CI/CD? Pretty hard, isn’t it? Well, not now. With the latest innovations in Go, like Go Center GOPROXY, the path to quality CI/CD is much clearer. GoCenter is a central public collection for immutable Go modules. It allows you to search for modules and versions, also you can easily add your modules to it to be shared publicly. Unlock the potential of GoLang, a top choice for backend development. This course will teach you everything from Go’s syntax to advanced features for building robust applications. Get hands-on experience to boost your skills. Start learning today and become a proficient Go developer!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2/Difference between IBM DB2 and MongoDB/Difference between SQLite and IBM DB2/Difference between MySQL and IBM Db2/SQL Tutorial/How to SQL Select from Stored Procedure using SQL Server?/SQL Query to Rename Stored Procedure/Basic Query in PL/SQL procedure/How to Write a Normal Select Procedure in PostgreSQL?/PostgreSQL – SELECT INTO/How to Select Dates Between Two Dates in PostgreSQL?/How to Select Row With Max Value in PostgreSQL/PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows/PostgreSQL – IS NULL operator/PostgreSQL – NOT LIKE operator/SQL LIKE Operator/SQL Server Max Function Takes Two Values Like Math.Max in .NET/SQL Server NULL Values/NULL values in SQL/How to Set a Column Value to Null in SQL?/SQL IS NOT NULL Operator/SQL | NULL functions/SQL – SELECT NULL/SQL Query to Exclude Null Values/How to Filter Null Values to Last While Sorting Ascending in SQL?/How to Insert Rows with NULL Values in SQL?/SQL Query to Insert Multiple Rows/SQL Query to Add Email Validation Using Only One Query/SQL Query to Add an Agent Parameter in a Database/SQL Query to Get First and Last Day of a Month in a Database/SQL Query to Convert Date Range to Per Day Records/SQL Query to Check if Date is Greater Than Today in SQL/SQL Query to Get a Financial Year Using a Given Date/How to Group by Day, Date, Hour, Month or Year in SQL Server/SQL Query to Convert DateTime to Date in SQL Server/SQL Query to Convert Date Field to UTC/SQL Query to Convert Rows to Columns in SQL Server/SQL Query to Count the Number of Rows in a Table/SQL Query to Delete Duplicate Rows/SQL Query to Find Duplicate Names in a Table/How to Query Two Tables For Duplicate Values in SQL?/SQL – SELECT from Multiple Tables with MS SQL Server/How to Update Two Tables in One Statement in SQL Server?/Find all Tables that Contain a Specific Column Name in SQL Server/Copy Tables Between Databases In SQL Server/List All Databases in SQL Server/Top 10 SQL Databases To Learn in 2025/Top 10 Reasons to Learn Java in 2025/Top 5 Reasons to Learn Game Development/10 reasons to learn Python in 2019/Top 7 Reasons to Learn Golang/Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter/Is it Worth to Learn Python in 2020?/Python vs Java – Who Will Win the Battle in 2020?/How to Become a Freelance Programmer in 2020?/4 Personality Traits of a Great Programmer/Why Learning Web Development is a Great Career Move in 2025?/30+ Web Development Projects with Source Code [2025]/Top 10 Golang Project Ideas with Source Code in 2025/Top 10 Vue.js Project Ideas for Beginners in 2025/Top 10 Docker Projects Ideas for Beginners [2025]/Top Gen AI Project Ideas for Beginners in 2025/Top 12 Spring Project Ideas For Beginners [2025]/Top 10 R Project Ideas for Beginners in 2025/Top 10 Rust Project Ideas With Source Code in 2025/Top 10 C# Project Ideas for Beginners in 2025/Top 10 GoLang Projects Ideas for Beginners in 2025/The Future of Golang in 2025 [Top Trends and Predictions]/The Future of 3D Modeling in 2025 [Top Trends and Predictions]/The Future of Robotics in 2025 [Top Trends and Predictions]/10 Essential Skills for a Successful Career in Robotics Engineering/Software Testing Career Path – Skills, Salary and Growth/Why Non-Linear Career Paths are a Great Option to Achieve Career Success?/How to Build a Great Product from Scratch?/UI Design Process: 6 Easy Steps To Create Great UI/Content Improvement League 2024: From Good To A Great Article/Rank Improvement Course for GATE Exam: Crack GATE Now!/GATE DA 2025 Answer Key (Now Available) Download PDF/GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence/200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025/How To Ace Hackathons/How to Use the STAR Method To Ace Your Job Interview?/Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation/10 Ways to Find and Get Your Dream Internship/How to land your Dream Job: Three 90 Challenge/10 Tips For Landing Your Dream Internship/2-Page Resume Ship or Sink Your Dream Job Opportunity!/Things every final year student should do to get a job in their dream company/Things one should know before choosing Computer Science as their major/Why Developers Should Have a YouTube Channel?/Why Golang is so Popular Among Developers?
https://www.geeksforgeeks.org/why-golang-is-so-popular-among-developers?ref=asr10
Languages
Why Golang is so Popular Among Developers?
PHP | IntlChar::isUWhiteSpace() Function, Difference between MySQL and IBM Db2, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, SQL procedure, 4 Personality Traits of a Great Programmer, GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence, SQL – SELECT NULL, PHP | IntlChar::isspace() Function, 2-Page Resume Ship or Sink Your Dream Job Opportunity!, Difference between IBM DB2 and MongoDB, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, PostgreSQL – NOT LIKE operator, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Write a Normal Select Procedure in PostgreSQL?, How to Select Row With Max Value in PostgreSQL, Top 7 Reasons to Learn Golang, Why Learning Web Development is a Great Career Move in 2025?, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, SQL Server Max Function Takes Two Values Like Math.Max in .NET, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, Benefits of Using Modern Learning Apps, NULL values in SQL, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, 10 reasons to learn Python in 2019, Top 5 Reasons to Learn Game Development, SQL Query to Convert Date Range to Per Day Records, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, Software Testing Career Path – Skills, Salary and Growth, AngularJS angular.isDefined() Function, SQL Query to Convert Date Field to UTC, Content Improvement League 2024: From Good To A Great Article, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, List All Databases in SQL Server, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, How to Group by Day, Date, Hour, Month or Year in SQL Server, PHP IntlChar::charName() Function, Why Non-Linear Career Paths are a Great Option to Achieve Career Success?, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, Top 10 Vue.js Project Ideas for Beginners in 2025, Find all Tables that Contain a Specific Column Name in SQL Server, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, Top 10 Golang Project Ideas with Source Code in 2025, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, Copy Tables Between Databases In SQL Server, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, The Future of Robotics in 2025 [Top Trends and Predictions], PostgreSQL – Drop Procedure, Top 12 Spring Project Ideas For Beginners [2025], Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, PostgreSQL – SELECT INTO, Mongoose Queries Model.replaceOne() Function, GATE DA 2025 Answer Key (Now Available) Download PDF, Angular PrimeNG Form Calendar Touch UI Component, SQL Query to Rename Stored Procedure, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top Gen AI Project Ideas for Beginners in 2025, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, The Future of Golang in 2025 [Top Trends and Predictions], How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Why Developers Should Have a YouTube Channel?, SQL Query to Check if Date is Greater Than Today in SQL, MongoDB insertOne() Method – db.Collection.insertOne(), The Future of 3D Modeling in 2025 [Top Trends and Predictions], Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, SQL Query to Get a Financial Year Using a Given Date, Mongoose Query.prototype.limit() API, How to Use the STAR Method To Ace Your Job Interview?, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, Things one should know before choosing Computer Science as their major, Why Golang is so Popular Among Developers?, PHP | IntlChar::forDigit() Function, Python vs Java – Who Will Win the Battle in 2020?, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], Top 10 C# Project Ideas for Beginners in 2025, 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, 10 Ways to Find and Get Your Dream Internship, Top 10 Python REST API Frameworks in 2025, UI Design Process: 6 Easy Steps To Create Great UI, Difference between SQLite and IBM DB2, Top 10 JavaScript Frameworks to Use in 2025, How to Query Two Tables For Duplicate Values in SQL?, How to Get All Keys of an Associative Array in PHP?, 30+ Web Development Projects with Source Code [2025], Top 10 Reasons to Learn Java in 2025, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, SQL Query to Find Duplicate Names in a Table, How to land your Dream Job: Three 90 Challenge, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation, Top 10 Deep Learning Tools You Must Know [2025], How to Build a Great Product from Scratch?, 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, SQL Query to Insert Multiple Rows, How to Update Two Tables in One Statement in SQL Server?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, SQL Tutorial, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Top 10 SQL Databases To Learn in 2025, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How to Filter Null Values to Last While Sorting Ascending in SQL?, How to Become a Freelance Programmer in 2020?, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, SQL Query to Delete Duplicate Rows, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, How To Ace Hackathons, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Basic Query in PL, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, SQL Query to Add an Agent Parameter in a Database, Mongoose Document Model.count() API, SQL Query to Get First and Last Day of a Month in a Database, Languages, Mongoose Document Model.estimatedDocumentCount() API, PostgreSQL – IS NULL operator, PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows, Is it Worth to Learn Python in 2020?, 10 Essential Skills for a Successful Career in Robotics Engineering, Things every final year student should do to get a job in their dream company, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, SQL IS NOT NULL Operator, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, SQL Query to Convert Rows to Columns in SQL Server, Tensorflow.js tf.Tensor Class, SQL LIKE Operator, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, SQL Query to Exclude Null Values, How to SQL Select from Stored Procedure using SQL Server?, SQL Server NULL Values, SQL | NULL functions, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, Top 10 GoLang Projects Ideas for Beginners in 2025, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, How to Insert Rows with NULL Values in SQL?, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, SQL Query to Add Email Validation Using Only One Query, SQL – SELECT from Multiple Tables with MS SQL Server, Top 10 R Project Ideas for Beginners in 2025, 200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025, Difference between MS SQL Server and IBM DB2, SQL Query to Count the Number of Rows in a Table, Top 10 Docker Projects Ideas for Beginners [2025], PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, How to Select Dates Between Two Dates in PostgreSQL?, SQL Query to Convert DateTime to Date in SQL Server, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Rank Improvement Course for GATE Exam: Crack GATE Now!, 10 Tips For Landing Your Dream Internship, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, Top 10 Rust Project Ideas With Source Code in 2025, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, How to Set a Column Value to Null in SQL?, Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0561104901, -0.0133686624, -0.0212185308, 0.0237390548, -0.0020757257, -0.00361604616, 0.0174130332, 0.00991735607, -0.0244309623, -0.00501221884, 0.0128085455, 0.00391875627, 0.0322725922, -0.0451058522, -0.0178907793, 0.0424041115, -0.0158727132, -0.0253040846, -0.026654955, -0.00903599709, 0.0356168188, -0.010757531, -0.0188627467, -0.0148183759, -0.00725268479, 0.0177260395, 0.026276052, 0.0362098813, -0.0425029546, 0.00143015035, 0.0177425127, 0.0151066706, 0.014357103, -0.00981851202, 0.00990088284, -0.0113505954, -0.00191407453, -0.00717443321, -0.0265396368, -0.000685216044, 0.0151478555, 0.00275733811, 0.034233, 0.0216798019, -0.00783339329, 0.0118860016, -0.00997501519, -0.0176601429, 0.0042214659, -0.0420746319, -0.0304934, -0.0011243514, 0.0359463, -0.00478158239, 0.00167623092, -0.00781280082, 0.0268032216, -0.0246945471, 0.0101891775, -0.0115894685, 0.0100491485, -0.00689849351, -0.00892891549, -0.0284670964, 0.00965377223, 0.0256829876, -0.0456989147, 0.0206913613, -0.0243156441, -0.0220422316, -0.0225694, 0.0131627368, 0.0106422128, 0.00826171786, 0.0054528988, 0.0275280774, 0.0198347121, 0.012437881, -0.0428324379, 0.000735667709, -0.00820817705, -0.0146124503, 0.00872299075, -0.032437332, 0.0257983059, -1.69888262e-05, 0.0320090093, -0.0448752157, 0.0236566849, 0.0211691074, 0.0198347121, 8.60381115e-05, 0.0371324271, -0.0197688174, -0.00687790103, 0.00517284032, -0.0154032027, -0.011877764, 0.00187083019, 0.0875758603, -0.0326679684, 0.00100388518, 0.0233931, -0.0271821227, 0.0117871566, 0.00671727909, -6.84138149e-06, 0.0338705741, -0.010938745, 0.0291095823, 0.0321902223, -0.0043409029, -0.0218610168, 0.0168199688, -0.0263584219, 0.00727327727, -0.0168858636, -0.0537711829, -0.0135581139, -0.0169188119, 0.0110540632, 0.0246121772, -0.0357156619, -0.00847588, -0.0556162708, 0.0460942909, -0.0195381809, -0.0258312542, -0.000916367047, 0.0237225797, -0.0307899322, 0.0188297983, -0.00620658463, 0.0143406289, 0.052618, -0.0238708463, 0.031877216, 0.0359792449, -0.00202012598, 0.00716207782, 0.000146592982, -0.053672336, 0.0243321192, -0.0303121861, -0.0224376079, -0.000631675473, -0.000549305405, 0.060591422, -0.0124296434, 0.0254029296, -0.0297685433, -0.020295985, 0.0598006696, -0.0114329653, 0.0352873392, 0.00119436602, 0.00911836699, -0.00251640566, 0.00310329231, -0.00452623516, -0.0506740659, -0.0351226, 0.0117871566, 0.00987617113, -0.0158150531, 0.0377584398, 0.0303780828, -0.00855001342, -0.0687954798, 0.0540677123, 0.00164225325, 0.00457977597, 0.0139699643, 0.00968672056, -0.0234589968, 0.00811345223, 0.0223222896, -0.00143117993, 0.0260124672, 0.0257983059, 0.000164482728, -0.0118036307, 0.0016391644, 0.00272439, 0.0268526431, 0.0394058414, 0.0428653844, 0.0103292065, 0.0170176569, -0.00551879453, -0.0125202509, -0.00494632265, 0.0398671143, 0.00675434573, 0.00452623516, 0.000472083455, -0.0524203144, 0.0202630367, -0.0444468893, -0.000444798381, -0.0417451523, -0.0154855736, 0.00309093692, 0.0107328203, 0.0326185487, -0.00115524023, -0.0111446707, 0.0331621915, 0.0202465635, -0.00995854102, -0.0380220227, 0.0195381809, -0.0333104581, -0.00523049943, 0.0340023637, 0.00932429172, 0.000108882938, -0.00843057688, -0.0366052575, -0.00353367603, -0.0357486121, 0.0517943, 0.00103065546, 0.0118860016, -0.0204277765, -0.045270592, 0.00658136839, -0.0198017657, 0.0468850434, 2.48236356e-05, 0.029554382, 0.0354850255, -0.00021969642, -0.0091925, -0.0175283514, -0.00418439973, -0.00400524447, -0.00798989646, -0.0392411, 0.0558139607, 0.0127838347, 0.00506164087, -0.0516954549, -0.0350896493, 0.00928310677, 0.00397847453, 0.00713324826, 0.0379890762, -0.00851706509, 0.0181708373, -0.0361769348, -0.0133357141, 0.00793223735, 0.00848411676, -0.030773459, 0.0210867375, 0.0200653486, -0.00377666764, 0.0348590128, -0.000684701197, 0.0132698184, 0.0036263424, -0.0428653844, 0.013278055, -0.015378492, -0.0183685254, 0.00875593815, 0.00904423371, -0.03677, 0.0157244466, 0.0399989076, -0.0347272232, 0.0113670696, 0.0141099934, 0.00510694413, 0.0134592699, -0.0195381809, -0.00881359726, 0.0649405643, 0.0235248916, 0.0215315372, 0.000281602668, 0.0341671035, 0.0331621915, -0.0266220067, -0.0442492031, -0.0021416219, -0.0422064252, -0.00983498618, -0.00537464721, -0.0212844256, 0.0318936929, 0.00111508486, 0.0302627645, 0.0223881844, 0.0361110382, -0.000744419522, 0.0272809677, -0.00744625414, 0.035452079, 0.0134757431, -0.00986793451, 0.00844293181, 0.00258230162, -0.0250075534, -0.00450976146, -0.000830393285, 0.0217621718, 0.00665550167, -0.0343647934, 0.0558469072, -0.0313335732, -0.0114000179, -0.00504928548, 0.0357156619, 0.0582850613, 0.0296532251, -0.00618187385, -0.0436561368, -0.0253040846, 0.0509047024, 0.00929958094, -0.0446775258, 0.00679553067, 0.0392081551, 0.0218610168, -0.00665550167, 0.00663490919, 0.00337717286, 0.00204895553, -0.000317896978, -0.0468850434, 0.000454579829, -0.00530051393, 0.0147854276, -0.0434255, -0.0459954478, 0.01565855, 0.0392081551, 0.0072115, -0.0205595698, -0.0200653486, -0.0190604348, -0.0118118683, 0.017478928, -0.0604925789, -0.00833173282, 0.0284341481, 0.0255347211, 0.0232613087, 0.00164843106, 0.0282199867, 0.0128826788, 0.00843469519, 0.00678729359, 0.00791988242, 0.00318360329, -0.0153702553, 0.0225035027, 0.0357156619, 0.061909344, -0.0253040846, -0.0250899233, 0.0484336, -0.00904423371, -0.00216839206, -0.0169188119, -0.0347601697, 0.0330633447, -0.0207902063, -0.021976335, 0.0281046685, 0.0105433688, -0.00743389875, -0.0408885032, -0.00251640566, -0.00837703608, 0.00990088284, -0.0189945381, 0.000387396722, 0.00721973646, 0.0377254933, 0.00172050484, 0.00482276781, 0.036835894, 0.0178907793, 0.0353861824, 0.00512341829, 0.0363416746, 0.0124873025, -0.0370006338, 0.00681612315, -0.0182532072, 0.00587710459, -0.0279893503, -0.0033874691, 0.0147195319, -0.00829054788, 0.01719887, -0.0278246105, 0.0229812488, -0.00273056771, 0.0344636366, 0.0440515131, -0.030954672, 0.00160312746, 0.0170506053, 0.00353161665, 0.0130721303, -0.0399989076, -0.0201312453, -0.0301968679, -0.0479393825, 0.0131792109, 0.0293896403, 0.0282364599, -0.0137310904, 0.0435902402, 0.0120342672, 0.006828479, -0.00273056771, 0.0011758327, 0.026094839, 0.00784574915, 0.0077510234, 0.00649488, 0.0373630635, 0.0285988878, -0.0106339762, -0.0114329653, -0.00353367603, 0.00865709409, 0.0361110382, -0.0259630457, 0.0118365791, -0.0227341391, 0.0433266573, 0.0339035206, 0.0160209779, 0.0224211328, -0.0263913702, 0.0038054972, 0.0236237366, -0.038713932, -0.0608550087, -0.0109305084, -0.0635896921, -0.0124214068, -0.0199665055, -0.0481700152, -0.0420416854, 0.0227341391, -0.0446775258, 0.014077045, 0.00697262632, -0.0131709743, -0.00045071874, 0.028895421, 0.0276928172, 0.0051810774, 0.0100820968, 0.012717939, -0.00252670189, 0.0101809409, 0.0142006, 0.0192087, -0.00978556462, -0.0287142061, -0.0147277685, -0.00381785282, -0.000547761, -0.00244845031, 0.064050965, 0.0189615898, -0.0105927913, 0.0142912073, 0.0293402188, -0.00882183481, -0.000353419076, -0.0302792378, 0.0375278033, 0.0281046685, -0.00292207813, -0.0624035634, -0.00131998037, -0.0153702553, 0.0300321281, 0.0139123052, 0.0395046845, -0.00239490974, -0.0148430867, 0.00850882847, -0.0244968589, -0.0150901964, 0.0109881675, -0.0055929278, -0.0214656405, -0.0157985799, -0.00413703686, 0.00639603613, -0.0225035027, 0.00396200037, -0.018516792, 0.0316465795, -0.0553856343, 0.0103868656, -0.0099997269, 0.0963400304, -0.0381867662, -0.00798989646, -0.0281211417, 0.0247439686, -0.0200982969, 0.0441174097, 0.0122484295, 0.0172482934, -0.00559704611, 0.0322067, 0.0129815228, 0.00563823152, 0.00855001342, -0.0158315282, 0.019735869, 0.0128991529, 0.00975261629, -0.00334010622, 0.0319266394, -0.00984322373, 0.028516518, -0.019076908, 0.00474863453, -0.00246080593, -0.032256119, 0.0270338561, -0.015197278, -0.0341012105, 0.00777985295, 0.0100244377, -0.00853353925, 0.0212514773, -0.0173636116, 0.00345954299, -0.0433925539, 0.0115482835, -0.0235578399, 0.0194063876, 0.00689025642, -0.0077345497, 0.00846764352, 0.00831114, -0.00702204835, 0.0296038035, 0.0180719942, 0.0192745961, -0.00574943097, -0.0111693814, -0.00656489469, -0.0366382077, -0.0257653575, -0.00768512767, 0.016556384, 0.00934076589, 0.022915354, -0.0163669325, -0.00161342369, -0.00892891549, 0.0139946751, -0.0272644926, 0.0138052236, -0.0104857096, 0.0148513233, -0.023376625, 0.00781692, -0.0165728573, 0.0173636116, 0.00714148488, 0.00347395777, -0.0205595698, -0.0258971509, -0.0130062336, -0.00820817705, 0.0104445247, -0.00160209788, 0.0171494484, 0.0159468465, 0.00297150039, 0.000881874585, -0.0095878765, -0.00288707088, -0.0165399108, 0.00194599293, -0.00872299075, -0.0250405017, -0.0150325382, -0.00782515667, 0.00654430222, 0.00209940714, 0.00408761483, 0.00344924675, -0.00768924598, 0.0164904874, 0.00054364244, 0.0297685433, -0.0160704013, -0.0450399555, 0.00436149538, 0.00558057241, -0.00516460324, 0.0285494663, 0.00339158764, 0.0125861466, 0.036835894, 0.0618434474, 0.0122401929, -0.0213503223, -0.0308558289, -0.000613142212, 0.02815409, -0.0133768991, -0.00189965975, 0.00404848903, 0.0348590128, 0.0104609989, -0.00319595868, 0.0134098474, 0.0247274954, 0.012199007, -0.0225199778, -0.0135334022, -0.00911836699, -0.0156420767, -0.0151560931, -0.0222234447, -0.0249416567, -0.0145547912, 0.0226188209, -0.00109655154, -0.00995854102, -0.027775187, -0.0197523423, -0.0105104214, 0.0292249, -0.0222893413, 0.122830249, -0.00584003795, 0.0322725922, -0.0450399555, 0.025337033, -0.00032201549, -0.00307446276, -0.00395376328, -0.0122237187, 0.0112929363, 0.0297850166, -0.014398288, -0.0105433688, 0.0312182568, -0.0362098813, -0.0137310904, 0.0112929363, 0.00155164616, -0.0220587049, 0.0237225797, -0.0127014648, 0.00380137865, -0.0406578667, 0.00980203878, 0.00458389428, -0.0101644667, 0.0517613515, -0.0140852816, -0.00479393825, -0.0302462894, 0.00466626463, -0.0177260395, -0.021976335, 0.0150078265, 0.0191592779, 0.0035933943, 0.0271821227, -0.00616539968, -0.0215644836, 0.00557233533, 0.0137887495, -0.0320090093, -0.0166717023, -0.0391093083, -0.0194887593, -0.0134757431, 0.0099997269, -0.0344965868, -0.0109716933, -0.003729305, 0.00598418573, 0.0237061065, -0.00249993172, -0.0208561011, -0.0278575569, 0.00167931977, -0.0496856272, 0.0185826886, -0.00360369054, -0.00450152438, -0.003484254, -0.00214368105, 0.00982675, 0.00333598792, -0.00707558915, -0.0105351321, -2.35848674e-05, 0.0180719942, 0.00244433177, 0.0169682335, 0.0173965581, -0.00214985874, -0.0027264494, 0.01879685, -0.0034204172, -0.0209549461, 0.0158315282, -0.0197688174, 0.0159715563, -0.00487630814, -0.0374948569, -0.0338705741, -0.0103044957, 0.0147360051, 0.00434913952, -0.0329150818, -0.00791164488, 0.0355179757, -0.0503775366, 0.00131380267, 0.0054693725, 0.00906894449, -0.0218280684, 0.00473627914, -0.00690673059, -0.00299415202, -0.0128250197, 0.0276269224, -0.0226682425, 0.0204607248, 0.00742978044, 0.00385080068, -0.0397023745, 0.0341012105, 0.0201971419, 0.00216839206, -0.0195711292, 0.0173636116, 0.00560116488, 0.0219433866, -0.0320584327, -0.0334093, -0.0107328203, -0.00772631261, 0.00901128538, 0.00491337478, 0.0175283514, 0.0369676873, -0.0118201049, 0.00193363742, 0.00012786666, 0.0278410837, -0.0231295153, -0.0358474553, -0.00654430222, 0.00682436, 0.0116059426, 0.0409873463, 0.0350896493, 0.0340353139, 0.00625188835, 0.015057249, 0.00788693409, 0.00542818755, -0.0292084273, -0.0282529332, -0.00323920301, -0.0112023298, 0.00733505469, -0.0117294984, 0.00424617715, -0.00100645935, -0.00276557519, 0.0411850363, 0.00795283, 0.00534169888, 0.0393728949, -0.0176107213, 0.0156750251, -0.0064989985, 0.0172482934, 0.0216139071, -0.0144559471, 0.0084923543, -0.0304110292, 0.00360780908, -0.0304110292, 0.0326844454, -0.012297851, -0.00847588, 0.0143076815, 0.0139534902, -0.0235084184, -0.0226517692, -0.0431289673, -0.0048392415, 0.0321572758, 0.00171329745, -0.0266384799, -0.0120260306, 0.0449740589, 0.0378902331, -0.00420705136, 0.0149419308, 0.0082164146, -0.00960435, 0.0182532072, 0.000932326249, -0.00964553561, 0.00925839599, -0.00516872201, -0.0164575409, 0.0285494663, 0.0219269134, -0.0149501674, 0.0273303892, 0.0209549461, -0.00949726906, -0.00384256383, -0.0370665304, 0.03677, -0.0296367519, 0.00551467622, 0.0687954798, 0.0168858636, 0.0271162279, 0.0247604437, 0.0117212608, -0.00784986746, 0.000740301, -0.00589769706, -0.00366134965, 0.0116800759, -0.0171823967, 0.0062271771, 0.0108234268, -0.00242991699, 0.00450976146, -0.0123884585, -0.0113588329, 0.022256393, 0.0159056596, 0.0106422128, -0.0142006, -0.00787869748, -0.000592549681, 0.0293566938, 0.0164904874, -0.0135663506, 0.0185497403, -0.0114988619, 0.00701381126, 0.0177095644, -0.0353532359, -0.0133768991, 0.0214326922, -0.0202136151, -0.00555174286, -0.0223717112, 0.00576590467, 0.0280058235, -0.0158644747, 0.00297767809, -0.013418084, 0.009398425, -0.0254523512, 0.0122813778, 0.0411850363, -0.00808462221, 0.00607891101, 0.00292413752, 0.00679964945, -0.0201477185, -0.0288295243, -0.0176601429, -0.00445622066, 0.00423794, -0.0183191039, 0.0200324, -0.0401636474, -0.0318277963, -0.00110787747, 0.0325526521, 0.0208890494, 0.0246451255, -0.00216221437, 0.000682127138, 0.00700557465, 0.0202795118, -0.0288295243, -0.000899893, 0.0197688174, -0.0119766081, 0.00445210235, 0.0151478555, 0.00425853254, -0.0140688084, -0.0152878854, 0.0208561011, 0.00125511398, -0.0137558021, 0.0117542092, 0.0309711471, -0.019735869, -0.0173141882, 0.0258806758, 0.00870651659, 0.0284176748, 0.015016064, 0.00478570117, 0.0179731492, -0.0150325382, 0.0030785813, -0.0146042136, 0.0169517603, -0.0121001629, 0.0143653406, 0.0129238637, 0.0058812229, 0.00146515761, -0.00796930399, -0.0264572669, -0.0210373159, -0.0316630565, 0.0123719843, -0.0360780917, -0.0116965501, 0.00506987795, 0.00170094194, 0.00505340379, -0.0372642204, -0.0069108489, -0.00837703608, 0.0181708373, 0.00554350577, 0.0164740141, 0.00238255435, 0.00502045592, -0.00362222386, 0.0160786379, -0.0274786558, -0.0121001629, -0.018385, -0.026935013, -0.0342659503, -0.0084923543, 0.0175118763, 0.026654955, 0.00947255827, 0.0192910712, 0.00803931896, 0.0377584398, 0.0155020468, -0.00397023745, -0.0167787839, 0.00558057241, -0.00304357405, 0.0037663714, -0.0405590236, 0.00536229135, -0.00557233533, 0.0101479925, -0.0156750251, -0.0208561011, -0.0467862, 0.0201971419, -0.00464567216, 0.00693967845, 0.00693555968, -0.0413168259, 0.00238873204, -0.00858296175, -0.0287636276, 0.00952198, 0.00213132566, -0.0209878944, 0.0267702732, -0.0233107302, -0.0153620178, 0.0185497403, -0.00994206779, 0.0117212608, 0.0023846135, 0.00737623964, 0.015016064, -0.0242662225, -0.0317948461, 0.00691496721, -0.00480629364, -0.0303780828, -0.00584827503, 0.0462260842, 0.0392740481, 0.00129115081, 0.0197523423, -0.0123390369, 0.032635022, -0.0309052505, -0.0624035634, -0.00548584666, -0.038153816, 0.0267043766, 0.00991735607, -0.0170011818, -0.0176601429, -0.0276269224, -0.0102468366, -0.00298591494, -0.00483100442, 0.000509407429, -0.00189760048, 0.0292249, 0.0252546631, -0.0098102754, -0.0125284875, 0.0118365791, 0.0240520611, -0.0130391819, -0.00264613843, 0.00384256383, -0.0135169281, -0.00462096091, -0.00564646814, -0.00300032971, -0.0513330288, 0.00247522071, 0.00363252, 0.0118530532, -0.00192128192, -0.00934076589, 0.0113094104, -0.0187639017, -0.0234589968, -0.0271821227, 0.0101397559, -0.00621894049, -0.0127508864, 0.00631366577, -0.00666373875, 0.0147607168, 0.00439032493, 0.00267908652, -0.00235784333, -0.0126849907, 0.0139946751, 0.00677905697, 0.0224211328, -0.00689849351, -0.0205595698, 0.0283682514, -0.00520990696, -0.00347807631, 0.0185991619, 0.0195381809, -0.0198511872, 0.00388580817, 0.0053169881, 0.0163669325, -0.025995994, 0.00668433122, -0.0246451255, 0.00299003348, -0.000704264094, -0.0133274775, -0.0156420767, -0.00113670691, 0.00418028096, -0.0128497314, 0.0147195319, 0.02039483, 0.0121084, -0.0198182389, -0.0303780828, -0.0129238637, -0.0159138981, 0.0120342672, -0.000200648341, -0.0074627283, -0.00135189877, 0.00580709, 0.0187309533, 0.00177713425, 0.0259465724, 0.0032783288, 0.0793388486, -0.00888773054, -0.00202836306, -0.0130309453, -0.0153867295, -0.000499883376, 0.0241179559, -0.00610774057, 0.00611597765, -0.0206584129, 0.0290436875, 0.00460448675, -0.00971966796, 0.00334422477, -0.00246492424, 0.00550643913, 0.00394964498, -0.0169682335, 0.0120754521, -0.0480382256, -0.0152055146, 0.0167787839, 0.00839762855, -0.0131133152, -0.000175808615, -0.000890626397, -0.0258147791, -0.0164822508, -0.0405260734, -0.0118448157, 0.0188627467, 0.00226311758, 0.00166696426, -0.00676258281, 0.0136075355, 0.00561352028, -0.00433678413, 0.0102386, -0.0433266573, -0.0178413577, 0.015197278, -0.00610362226, -0.0204936732, 0.0299003348, -0.0076686535, -0.00943961, -0.00813404471, 0.0163998809, 0.0194228627, -0.0032906842, -0.0110293524, -0.00877241232, -0.00244433177, 0.00470744958, -0.0121001629, 0.0509047024, 0.0164657775, 0.0211361591, 0.00216427352, 0.0112352772, 0.00768512767, 0.000173620661, 0.0105763171, -0.00368606066, -0.00633425824, 0.01257791, -0.0209878944, -0.00365929026, -0.00365517195, -0.000878785679, 0.00296532246, 0.0104115773, 0.00025238705, 0.00585239334, 0.00938195083, -0.0105268946, -0.0169682335, -0.016935287, 0.0272480194, -0.000914307777, 0.027495129, 0.0228659306, 0.0111940922, 0.0166717023, -0.0252711382, -0.0199829787, -0.0101891775, -0.0116059426, 0.00217045145, -0.0325032286, 0.0183026288, -0.0122896144, -0.0139534902, 0.000739786192, -0.0158397648, 0.00733917346, 0.0230800938, 0.017857831, -0.00911836699, -0.00646605063, -0.0125614358, -0.00076861569, -0.00191922265, -0.018516792, 0.0234919433, -0.0028664784, 0.021976335, 0.00180905266, -0.0034142395, 0.0156997349, 0.0133851366, -0.0211196858, 0.023096567, -0.00137043209, 0.0428653844, -0.014217074, 0.0431619175, 0.00727739558, 0.0303451344, 0.0107492944, -0.0310699902, 0.010938745, 0.00775926048, -0.0096208239, -0.0032783288, 0.00243609492, 0.00323920301, 0.00936547667, 0.00323302532, 0.0089701, 0.011638891, 0.014217074, -0.0268032216, -0.00148060196, -0.0037993195, -0.0155597059, -0.00831937697, 0.0187474284, 0.00721973646, 0.0400977507, -0.0167046506, 0.0297026467, -0.0117459716, -0.00356456474, -0.0140358601, -0.00884654559, -0.00408967398, 0.00428324379, 0.00661843503, -0.00616539968, -0.00199026684, -0.006569013, 0.0197852906, -0.0129321013, 0.0130391819, -0.0135004548, 0.0309711471, -0.0299827047, 0.0185826886, -0.0130391819, -0.000261524983, 0.0254688263, 0.0199500304, -0.0174459815, 0.0116141802, -0.0191922262, -0.0207737312, 0.0089042047, -0.00176066021, 0.0150243007, -0.00213544397, -0.00198923727, 0.00401965948, -0.00243815407, -0.0046992125, 0.00343277259, -0.00223428826, 0.0126190949, 0.0232448336, 0.00278410828, -0.0137805128, -0.00464979047, -0.00820817705, 0.0171659235, 0.006569013, 0.00772219384, -0.00499574468, 0.00462507922, -0.00680788606, 0.0203783549, -0.0224376079, 0.00237843581, -0.00160106819, -0.00574943097, 0.0215480104, 0.00749155786, -0.00699733756, -0.0122813778, -0.0157079715, 0.0106257387, -0.0142335482, -0.00724032894, -0.00294678914, 0.00409173314, -0.0125449616, -0.00803108141, -0.0291260574, 0.0115894685, 0.000846352486, -0.0254523512, -0.00596359326, -0.00035238947, 0.00699733756, 0.0231130421, 0.0323549621, 0.0168693904, 0.0203454066, -0.038153816, 0.0149007458, -0.00519755157, -0.021976335, -0.00681612315, 0.00534581766, -0.0190604348, 0.0190604348, -0.0308558289, 0.00728563266, 0.00758628361, 0.0215480104, 0.0121413479, 0.00959611312, 0.00712089241, 0.029455537, 0.0110623008, 0.0384832956, -0.00776749756, 0.0193734411, -0.0335081443, -0.0257488843, 0.0210208427, 0.0304439776, 0.0190604348, 0.00326597318, 0.0135828247, -0.00236196187, -1.44791138e-05, -0.0043573766, 0.00176992686, -0.000142474484, 0.000114674585, -0.0174954031, -0.0107245827, 0.00365105341, -0.0291425306, -0.00445622066, -0.00597594865, -0.0178907793, 0.0164987259, -0.0170670785, -0.0091925, 0.00713736657, 0.0153537812, 0.013656958, 0.00242373929, -0.0256335661, 0.0134675065, -0.0268691164, 0.00406084443, -0.00621482171, 0.0104033398, -0.0089865746, 0.0353202857, 0.0161939561, -0.00817934796, -0.0202465635, 0.00785398576, 0.0122319553, 0.0116471276, -0.0146206878, -0.0202630367, -0.0175283514, 0.051991988, -0.00915131439, -0.0210208427, -0.010518658, -0.0117212608, 0.0284012, -0.00315065519, -0.00264613843, 0.00478981948, 0.00223222887, -0.00948079489, 0.00446445774, 0.016556384, -0.0136075355, 0.0219598599, 0.0237720031, -0.00519343279, -0.0193734411, -0.00141367631, -0.00229812507, -0.00160827558, 0.00689849351, -0.0228659306, -0.00208396278, 0.00474451622, 0.00566706061, 0.00892067887, 0.00252464274, 0.00393523, -0.00772219384, -0.0413168259, 0.01089756, 0.00794459321, -0.0137805128, -0.0102386, 0.00473627914, 0.0171659235, -0.0111364331, 0.00763158686, 0.011597706, -0.000413137372, 0.0344306901, 0.00191304483, 0.0023475471, -0.0102221258, -0.00571236433, 0.0139205419, -0.0172318183, -0.00610362226, -0.00749155786, -0.0366052575, 0.00235578394, -0.0121742962, -0.00795694906, -0.00226723612, 0.00457565719, -0.0253535081, 0.00102293328, -0.00653194636, -0.0174624547, -0.00632602116, -0.0124461176, 0.0141923632, 0.0253699813, -0.026094839, 0.000837085827, 0.0194887593, -0.0176436696, -0.002454628, -0.0103703914, -0.00840998441, -0.00764806103, 0.00524285482, 0.0127838347, 0.0213997439, 0.00219722162, 0.00667197583, -0.0231459904, 0.0121495854, 0.00193054846, 0.0302133411, 0.0035233798, -0.029554382, -0.00768100889, 0.00393523, -0.0333104581, -0.0208396278, 0.0484006517, 0.0255347211, -0.00218898454, -0.000872607925, 0.0120425038, -0.00219516247, -0.00455094641, 0.0303121861, 0.00855001342, 0.0133851366, 0.0284176748, -0.0259465724, -0.0233931, -0.0148595609, -0.00971143134, -0.0180390459, -0.0182532072, 0.000372981973, 0.00236402103, 0.0131050786, 0.00832761452, -0.00223428826, 0.0235578399, -0.00519343279, 0.0082164146, 0.0263419487, -0.0154608618, 0.0084058661, -0.0224376079, 0.00337099517, -0.0160209779, 0.00237019872, -0.014423, -0.0153537812, -0.00466626463, 0.0071167741, 0.00825348124, -0.00924192183, -0.00274498248, -0.0179731492, 0.0168611538, -0.00783751253, 0.0137558021, 0.00487219, -0.0145053696, -0.0173965581, 0.00018867894, 0.00768924598, 0.022157548, 0.0216798019, 0.00632190285, 0.0205925182, 0.0164081175, 0.0151066706, -0.0115482835, -0.00230430276, -0.00952198, -0.0200488754, 0.0178413577, 0.00743389875, 0.0160456896, -0.0201477185, 0.024776917, -0.0117212608, 0.0168693904, -0.000321758096, -0.013656958, 0.00209631817, 0.0243321192, -0.00623541418, -0.00691908598, 0.0135251656, 0.00586063042, 0.00638779905, -0.0161692444, -0.000159978124, 0.00146103906, -0.0099997269, 0.0193734411, -0.00658548716, -0.0123802219, -0.0107163461, 0.0174954031, 0.0142829698, -0.00690261181, 0.0166717023, -0.0118612899, -0.0109799299, -0.0103292065, -0.0282858815, 0.0306416657, 0.0138216978, -0.0129156271, -0.0107740052, -0.0164575409, 0.0105680795, -0.0040114224, 0.00229606568, 0.0317948461, -0.0191592779, 0.00350484648, 0.0297685433, 0.0134510323, -0.0125696724, 0.00810521469, -0.00489690062, 0.0362428315, -0.0191428047, 0.00534169888, 0.00256376853, 0.0100656226, -0.00188421539, -0.00693144137, 0.0123884585, 0.00016692809, 0.00816699211, 0.018137889, 0.0454353318, 0.00684907148, 0.0268032216, 0.0283353049, 0.0191098563, 0.0203618817, -0.00207984424, -0.014258259, 0.00123761036, -0.00581532717, 0.00894539, 0.00833585113, 0.00242785783, -0.00313418126, -0.00766041642, -0.00738447672, -0.00999148935, 0.0282529332, 0.0337717272, 0.0236072615, 0.0180225708, -0.0062107034, 0.0217786469, 0.0214326922, 0.00942313578, 0.017676618, -0.00973614212, -0.0170835517, -0.00122525485, 0.00400524447, -0.0140605709, -0.0123555101, 0.00626424374, 0.0199335571, 0.00667197583, 0.0302792378, -0.0102468366, 0.0216633286, -0.0345624797, -0.00681612315, -0.000390228204, 0.0267537981, 0.0117212608, -0.00395582244, -0.0126849907, -0.000248654658, 0.00845940597, -0.00320213637, -0.00337923202, -0.00107184052, -0.0205760431, -0.0151808038, -0.00214985874, 0.00321861054, 0.0138628827, -0.00973614212, 0.0292249, -0.0121907704, 0.0192087, -0.00826583616, -0.0144394729, 0.00204689614, -0.00542818755, -0.00548172835, 0.00530463271, -5.33474922e-05, -0.0209878944, -0.0169188119, -0.00418851804, 0.00538288429, -0.00678729359, -0.009398425, 0.00964553561, -0.0111034857, 0.0095878765, 0.00651135389, -0.0328656584, 0.0163669325, 0.0133851366, 0.0261113122, -0.0141923632, 0.00240932452, -0.00182243786, -0.00933252927, -0.0150984339, -0.00368400128, 0.023854373, -0.00306210737, -0.000643001345, 0.016935287, -0.0014528021, -0.0140688084, -0.0130144712, -0.00558057241, 0.00223222887, 0.0062271771, -0.0126273315, 0.00200982974, -0.0218939651, 0.0150243007, 0.0395046845, 0.0040381928, 0.0217456985, -0.0286977328, 0.00115318096, 0.0135251656, 0.00394346705, -0.00845940597, -0.00261319056, -0.00489278231, -0.00628071791, -0.00502457423, 0.010098571, 0.00617363676, -0.0104692355, -0.00405878527, -0.00320419576, -0.0107740052, 0.0102221258, 0.00575766806, -0.0430630744, -0.0096208239, 0.00573707558, -0.0215644836, -0.00644133938, 0.00987617113, -0.00688201934, -0.00432442874, -0.00815051887, 0.00499986345, 0.00620658463, 0.00762746856, 0.0163916443, -0.00137660978, 0.0141594149, -0.00986793451, -0.00663490919, 0.0200818237, -0.00327626965, 0.00220134016, 0.00126232137, -0.00677082, -0.010617502, -0.0187474284, -0.0110623008, 0.00112229225, 0.0136487205, -0.00251228712, 0.00151972775, -0.00457977597, 0.0152878854, -0.0208231546, -0.0242826957, -0.00567941647, 0.0111693814, 0.0175118763, 0.0262595788, 0.00493396726, -0.0100820968, 0.00706323329, 0.00239285058, 0.00176992686, -0.0097608529, 0.0220751781, -8.23700684e-05, 0.0334422477, 0.0202465635, -0.0141841257, -0.00186774135, 0.0142006, -0.0144806579, 0.00317330705, 0.00464155339, 0.00817934796, -0.0169682335, 0.029076634, -0.0032515584, 0.00691908598, 0.0219598599, -0.00865709409, -0.0123719843, 0.0174459815, -0.00458389428, -0.00241550221, 0.00591005245, -0.00110067008, -0.000981233432, -0.0067049237, -0.0201806668, 0.00362428301, 0.00850059092, -0.00310329231, -0.00318566244, -0.00992559362, 0.00896186382, -0.00234136917, 0.000896289304, 0.014777191, -0.0228329841, 0.0146618728, -0.0209219977, 0.00698498217, 0.00414939225, -0.0136651946, 0.00244227261, -0.0255676694, 0.000715075177, -0.0174954031, -0.00203145179, 0.00744213583, -0.0352873392, -0.0234095734, 0.0141017558, -0.00278616766, -0.0022116364, 0.0344306901, -0.00144147617, -0.00313624041, 0.00491337478, 0.0167540722, 0.0100738592, -0.0161198229, 0.00348013546, 0.0168529171, -0.00205410365, -0.0125614358, -0.00708794454, 0.00698910048, -0.0020891109, -0.0217292253, -0.0164987259, -0.00771807553, -0.0104445247, 0.013138026, 0.00815875549, -0.00336275809, 0.0133604249, 0.00479393825, 0.0173141882, -0.00642898399, -0.00144147617, 0.0138464086, -0.00379520096, -0.00758628361, 0.00285618217, -0.00306004821, 0.0201641936, 0.0111940922, -0.00607067393, -2.11073311e-05, -0.00436561368, 0.00837703608, -0.000234111183, -0.00120466226, 0.0184508953, 0.0060542, -0.00252464274, -0.00954669155, 0.0143735772, -0.00476510869, -0.01571621, 0.0284835696, 0.0195711292, -0.0100162, 0.00097454089, -0.00153723138, -0.0126932282, -0.0170341302, 0.0030271, -0.00049885374, 0.0152302263, -0.00714560365, 0.0255841445, -0.0033874691, 0.0247933902, 0.0158727132, 0.00374989747, 0.0146536352, 0.0042173476, 0.00577002345, -0.0199665055, 0.000896289304, -0.00307034445, 0.0142088374, -0.0170506053, 0.013418084, -0.0363416746, 0.0347272232, -0.00576590467, 0.00855001342, 0.0222399198, -0.0168034937, -0.00969495717, 0.00860767253, 0.00989264529, 0.0281046685, -0.0200818237, -0.00630542869, 0.0193075445, 0.0205430947, -0.0178084094, -0.0279069804, 0.0263913702, 0.0248757619, -0.000982777914, -0.00668844953, 0.0273303892, 0.0195876025, 0.00657313177, 0.00953021739, -0.0164163541, 0.0113588329, 0.00581944548, 0.00420087343, -0.012058978, -0.0181049407, -0.0177260395, 0.023376625, -0.0111034857, 0.0199665055, -0.00133542472, 0.016556384, 0.00341218, -0.010477473, -0.00540347677, -0.0163422227, 0.00151457964, -0.0105104214, -0.0114412028, -0.0145795029, -0.0111281965, -0.0054528988, 0.00047440012, 0.0219433866, 0.00154546846, 0.0211032126, -0.00916778855, 0.0279728752, 0.010098571, 0.0022116364, -0.00950550567, -0.013796987, -0.018698005, 0.0149913523, -0.00188730424, -0.00119951414, -0.0067749382, -0.0284012, -0.023195412, -0.019455811, -0.0180060975, 0.00828231, 0.00152281672, -0.000858708, 0.00151457964, 0.00884654559, 0.00305592967, 0.00503692962, -0.00942313578, 0.0104609989, 0.0109222708, 0.0269514862, -0.000746993581, -0.0254194029, -0.00325979549, 0.00132718775, -0.0083523253, -0.00137146167, -0.0144641846, 0.016037453, -0.00528404, -0.0111281965, -0.0294061154, -0.0124049326, 0.00238873204, 0.0215809587, -0.013937016, 0.000162294775, 0.0184508953, -0.000644031, 0.00525521068, 0.00617363676, -0.0177754611, -0.0169682335, 0.00855825, -0.0164575409, -0.0180390459, -0.00186877092, -0.00514401076, 0.0284012, -0.010477473, -0.0124625918, -0.0174459815, -0.0237720031, -0.0154114403, 0.00801872648, -0.0067049237, 0.0197193939, 0.0100656226, 0.00182758598, 0.00655665761, 0.0278410837, -0.0084923543, 0.0101150442, -0.0172977149, 0.0100326743, 0.0136075355, 0.00351102417, 0.0021786883, 0.0136734312, 0.0100162, -0.0078045642, 0.00645369478, -0.0166305173, 0.00468273833, 0.0223717112, 0.0183355771, 0.0208396278, -0.00450976146, -0.0211526342, 0.00647428771, 0.0121495854, 0.0077510234, 0.00156606094, 0.00144250586, -0.0111940922, -0.00146412803, 0.0113258846, 0.0112682255, -0.0232118852, -0.00409997, -0.00283558969, 0.00333804707, 0.00521402527, 0.00379108242, -0.0166881755, 0.0152631737, -0.0161280595, -0.0277092922, 0.00550643913, -0.0195217058, 0.0188462716, 0.00810109638, 0.0238049496, 0.0123719843, -0.0139040677, -0.00965377223, -0.0108234268, -0.0150490114, -0.00946432073, -0.00850882847, 0.00416998472, 0.0122154811, 0.00580709, -0.000900407846, 0.0245957021, -0.0132368701, 0.00476099, 0.018236734, -0.00609126687, -0.0021086738, -0.00731446221, -0.00839351, -0.0111034857, 0.0105763171, 0.0152384629, -0.0103703914, -0.003214492, -0.00892891549, 0.00399700785, -0.00117480312, 0.000728975108, 0.0239532162, -0.00223840657, 0.00889596716, 0.00519755157, 0.0115647577, 0.00429971749, 0.00184817845, 0.0200488754, -0.00126129168, -0.00399288908, -0.00290972274, -0.0190933831, -0.00114185514, 0.00755745405, 0.0016772605, 0.00562587567, -0.025337033, -0.000553423888, -0.00588534167, -0.00992559362, -0.0117459716, 0.0219928082, -0.0120342672, -0.00577826053, 0.0180555191, -0.00338335056, -0.0113835437, 0.0032515584, -0.00664314628, 0.0104115773, -0.0042873621, 0.0209055245, -0.00342659489, -0.024776917, 0.00347189838, -0.0120919263, 0.0156503133, -0.02039483, 0.01719887, 0.00194187439, -0.00647016894, 0.01089756, 0.00199129642, 0.0125449616, -0.00579473423, 0.005658824, 0.00612833304, 0.00447269483, -0.00803931896, -0.00858296175, 0.00690261181, 0.00607891101, -0.0210043676, -0.0114247287, 0.00850882847, 0.000392802263, 0.0108893234, 0.00118098094, -0.0118448157, 0.013418084, 0.000236427848, 0.0159303714, -0.0121001629, 0.00241550221, 0.0141676525, -0.0040814369, 0.0119601339, -0.00314241811, -0.0168364421, 0.0147442427, 0.00780044543, 0.0112188039, -0.0131874485, 0.0153537812, -0.00726504, 0.00383844529, 0.0158644747, 0.00173800846, 0.0194393359, 0.0118365791, 0.00705911499, -0.0078910524, 0.0178907793, 0.0136404838, -0.00596771156, -0.0205430947, 0.006828479, 0.000350072805, -0.0130474195, -0.0102550741, -0.0202136151, 0.0143241556, 0.0185003169, -0.00741742458, -0.00733917346, -0.000454837224, -0.0148925083, -0.000860767206, 0.0342988968, -0.0200653486, 0.000123555103, 0.0100244377, -0.0140111493, -0.0055929278, -0.0188462716, -0.0214326922, 0.00171123818, 0.0110870115, -0.0165728573, -0.0111611448, -0.0091925, 0.000378902332, 0.014258259, 0.0183520522, 0.0119601339, 0.00349249109, 0.013138026, -0.00494220434, 0.0116141802, -0.00561763858, -0.0037025346, 0.016696414, 0.0120260306, 0.0155514693, 0.00219310308, -0.00010508619, -0.0133110033, -0.00801460817, -0.00930781756, -0.00242579845, -0.0237225797, -0.00144765398, 0.00595947448, 0.00493808556, -0.00907718204, -0.0121084, -0.0283682514, -0.0072115, -0.00404437026, -0.00274704187, 0.017857831, 0.0175283514, -0.0201971419, -0.0123966951, 0.0187639017, -0.0235743131, 0.0163998809, 0.0129238637, 0.0106092654, -0.00513989246, -0.0031115294, -0.0062930733, -0.00167211238, 0.000627042144, 0.0156256016, -0.00306004821, 0.0274457075, -0.00571648264, 0.000626527355, 0.000169502164, -0.00989264529, 0.000568868301, 0.0160292163, 0.00998325273, -0.00158871268, 0.00418028096, -0.0141676525, 0.0141923632, 0.032371439, -0.00497103389, -0.00156606094, -0.0144394729, 0.00178640091, -0.00364075718, 0.0132533442, -0.016276326, 0.0382526591, -0.0115400469, -0.0139534902, -0.0105598429, -0.0193404928, -0.00409585191, 0.0149913523, 0.000596153375, -0.0152384629, -0.0117542092, 0.00440679863, 0.0127014648, -0.0177095644, -0.00170711975, -0.000626012508, 0.0162269045, -0.0138134612, 0.00356456474, 0.00448505, -0.00812168885, -0.00183273409, -0.00934076589, 0.000113966715, -0.0198676605, 0.00211073295, 0.0190274864, 0.00128909154, -0.00206542946, 0.00881359726, -0.00339158764, 0.00902776, -0.009398425, 0.0166058056, 0.0205760431, 0.00503692962, 0.00896186382, -2.03511991e-05, 0.00882183481, 0.031053517, 0.0030085668, 0.0153043587, -0.00532522518, 0.0278575569, -0.000667197572, 0.0002032224, -0.0207078364, 0.0023475471, -0.00759040192, 0.00749567617, -0.00742978044, -0.0035933943, 0.0135251656, -0.0199829787, -0.00408555567, 0.0137063796, 0.0112599889, -0.0126602799, -0.00455094641, 0.000555997947, -0.0338705741, 0.00782103837, -0.00434502121, 0.0048351232, -0.0141099934, 0.000362428313, -0.042173475, -0.0152631737, -0.00589769706, -0.0238049496, 0.00358103891, -0.0103621548, 0.0225858726, 0.0122319553, -0.014876035, 0.00717855152, 0.00856648758, -0.0177754611, -0.000343122811, 0.00408761483, -0.0244968589, 0.0236237366, 0.0084058661, -0.00143838732, 0.0141511783, -0.0042173476, 0.00533346226, -0.00441503571, 0.0117212608, 0.00358927576, -0.00217662915, -0.00461684261, -0.00265025697, 0.00916778855, -0.00102035922, -0.0104857096, 0.000791267492, 0.0104033398, -0.0161939561, -0.00645781355, -0.000752141699, -0.0366382077, -0.0289942641, 0.00822877, -0.00485983398, 0.0029056042, 0.0125202509, -0.0330962949, -0.00934076589, 0.0239367429, -0.0193899143, 0.00659784256, 0.00322066969, 0.00676670112, 0.0119107123, -0.00697674509, -0.014637161, 0.00758216484, 0.0081464, -0.0139287785, -0.000992559362, -0.00922544766, 0.000256634259, 0.000586886774, 0.00286235986, 0.0124873025, 0.00523873651, 0.00866533164, 0.00635896949, 0.0099997269, 0.0157326832, -0.00628071791, 0.0238049496, 0.00862414669, 0.00293649291, -0.00315477373, 0.01719887, -0.00646193186, -0.00039717817, -0.0214656405, -0.00263378303, -0.0103209699, 0.0151149081, 0.00673787156, -0.00581944548, -0.00560528319, -0.0274621807, -0.0157491565, -0.00437385077, 0.00593064493, 0.0115235727, -0.0228659306, 0.00689849351, 0.00133233587, 0.0206254646, 0.00637956196, 0.00371283083, -0.00130247674, 0.0211196858, 0.0022878286, 0.000606449612, -0.0138299344, 0.0171659235, -0.0220916532, 0.0099997269, -0.0300321281, -0.035254389, -0.00246492424, -0.0143488664, -0.0182202589, -0.00638368027, 0.0141511783, 0.00429559918, 0.00990088284, -0.00850059092, 0.011638891, -0.0320749059, -0.0121825337, 0.00041571146, 0.00704264082, 0.0200982969, -0.00858296175, -0.0357815586, -0.0248428136, -0.00860767253, 0.0360121951, 0.00184097106, -0.020674888, -0.0131050786, -0.00138999498, -0.000917911471, -0.00819582213, -0.0199829787, 0.0169517603, -0.0119024748, -0.013698143, -0.0172318183, -0.0269020647, -0.00437385077, 0.00677905697, 0.0168034937, -0.0217127502, -0.015337307, -0.0142912073, 0.0122401929, 0.00398877077, 0.0127591239, -0.0129485754, -0.00464567216, 0.00217251061, 0.000432957691, -0.00419469597, -0.0175283514, 0.00810521469, -0.00606243731, 0.0133110033, 0.0290272124, 0.0290107392, 0.00755745405, -0.00241550221, 0.0115070986, 0.00331951375, -0.00427088793, 0.00191819295, 0.00616539968, -0.0134592699, -0.00161136454, -0.0112352772, 0.00104095181, 0.00521814404, 0.0139205419, -0.00235578394, 0.00801872648, -0.0211855825, 0.0271821227, 0.00291795982, 0.00327626965, 0.0260289423, 0.0185497403, -0.00173594919, -0.00692320429, 0.0115070986, -0.00485983398, -0.00326185487, 0.000723312201, 0.0123225627, -0.0238873195, -0.00356868329, -0.026309, 0.00899481121, 0.00731446221, -0.025056975, 0.013418084, 0.0150984339, 0.00652782805, 0.000825759955, 0.011737735, -0.0022878286, 0.00602537068, -0.0696521327, -0.00473216036, 0.0144641846, 0.023096567, 0.00359751284, -0.00213338481, 0.00752450572, -0.00588534167, 0.00695615262, 0.0142747331, 0.0119271865, -0.00757392775, -0.00308681838, -0.00774278678, -0.0139864376, 0.0100903334, -0.00784574915, 0.00841410272, -0.0123555101, -0.0184344221, -0.00815463718, -0.022256393, 6.52525414e-05, -0.0125861466, -0.002829412, 0.00517284032, -0.00673787156, -0.00326803257, 0.000523049966, -0.0107492944, -0.00699321879, -0.01177892, 0.0466214605, 0.0143159181, 0.0166717023, 0.0124461176, -0.00590593414, -0.0176107213, 0.000943137275, 0.0029323746, 0.0235413667, 0.00406496273, 0.0117953941, -0.000906585599, 0.0105268946, 0.00363252, 0.00819994, 0.00967024639, -0.00541995047, 0.00627248082, -0.0101479925, 0.000929237343, 0.00443562819, 0.0181214157, 0.00567941647, -0.0183355771, 0.00443562819, -0.012058978, 0.002699679, 0.00474451622, -0.0169682335, -0.00341835781, 0.0102550741, 0.0139534902, 0.00291590043, -0.00661843503, -0.00284176739, 0.00798989646, 0.0150984339, 0.00497103389, 0.012676754, -0.00516460324, -0.0157326832, 0.0116883125, -0.00962906145, 0.00424205838, 0.00847588, -0.00768100889, 0.00212514773, 0.0218939651, 0.00518519571, -0.00534169888, 0.0234260485, 0.00839762855, -0.00593888201, 0.0149831157, -0.00133439514, -0.0221410748, 0.00456742058, 0.00538288429, 0.0136487205, -0.0217127502, -0.00368606066, 0.0216798019, 0.0115400469, -0.000533861, 0.00178537122, -0.00759452069, 0.0227670874, -0.00831114, 0.00306210737, -0.00602948898, -0.0045633018, 0.0220257565, -0.00496279681, -0.0212679524, -0.00749155786, 0.00530463271, 0.0087147532, 0.0173306633, 0.0276928172, -0.0168364421, 0.000392030051, 2.70598557e-05, 0.0193404928, -0.00522226235, -0.00387757109, -0.003484254, -0.0142912073, 0.00259259786, -0.0328491852, -0.0339694172, 0.0153537812, 0.0112352772, 0.0305263475, -0.0189615898, -0.0083029028, 0.00235578394, -0.0152878854, -0.0283188298, 0.00853353925, 0.0177095644, 0.00414321432, -0.030674614, 0.00889596716, -0.00393111166, 0.00691908598, 0.000609023729, 0.00332981, 0.000553423888, -0.00232077669, -0.00782927498, -0.00734329177, 0.00111405517, -0.0155679435, 0.000559601642, -0.00419881428, 0.0260618906, -0.0121166371, -0.000224201038, -0.00443151, 0.00535405474, 0.0259136241, 0.0151808038, -0.0222893413, 0.0013817579, 0.0138052236, 0.00171638629, 0.00478570117, 0.00903599709, 0.000124970844, -0.00129423977, -0.00864885747, -0.00163401628, 0.00422558468, 0.0168858636, -0.0121331112, -0.00300650764, -0.0139946751, -0.0188627467, 0.0198017657, 0.00020489555, -0.00322890677, 0.00139720226, 0.00433266582, 0.0122072445, -0.0140688084, -0.00789929, -0.000371694943, -0.0020129187, 0.0151725672, 0.01177892, -0.00452623516, -0.0142829698, 0.00717855152, -0.0309052505, -0.00990088284, 0.0174295064, -0.0072115, 0.016037453, 0.0216139071, -0.0105845537, 0.00161342369, -0.00265849405, 0.000934900308, 0.00570824603, -0.0135086915, 0.0176271945, -0.00507399626, -0.00138381717, 0.0125943841, 0.00243403553, -0.00309093692, -0.00161548296, -0.00843469519, -0.0116553651, 0.0190604348, 0.00423794, -0.0161280595, -0.00197585206, -0.00530051393, 0.014077045, -0.00704264082, 0.0196535, -0.00341012096, 0.00602537068, -0.0365723111, 0.0102386, -0.0197523423, -0.000926663284, 0.0317454264, -0.0181708373, -0.00887125637, -0.00334010622, 0.010518658, 0.00572060142, 0.0256006178, 0.0298509132, 0.0107163461, -0.0161198229, -0.0160539262, -0.018236734, 0.0118612899, 0.00906070787, 0.0111940922, 0.00273674564, 0.00330509897, 0.0218939651, 0.00675846403, 0.0216633286, 0.00947255827, 0.0224211328, -0.0201806668, -0.0160045046, -0.0083852727, 0.003214492, 0.0189615898, -0.00161445339, -0.00302092242, -0.0282364599, 0.0141099934, -0.00108110718, 0.0224540811, -0.0013632247, 0.0156503133, -0.00920073688, 0.0102797849, -0.00126541022, 0.000475944573, 0.006828479, -0.0191428047, 0.00252670189, 0.0105680795, 0.0126273315, -0.0063630878, -0.00247316132, -0.00800637063, 0.000693453, 0.0123143252, -0.0187309533, 0.00878065, 0.00900304876, -0.0407237634, -0.0303286593, 0.0117953941, -0.0350567028, -0.0222893413, 0.00196349644, 0.0132039227, -0.00466214586, -0.0329645, -0.0125861466, -0.00291178189, 0.0121001629, -0.0023846135, -0.0152961221, -0.0262101572, -0.00717031443, -0.00132409891, 0.0245627556, 0.0050410484, -0.00829878449, 0.0111199599, -0.0138875935, -0.00955492817, -0.00665550167, -0.0219433866, -0.0387798287, -0.0345954299, -0.00033514321, 0.0127838347, -0.0182861555, -0.00824524369, 0.00164740137, 0.000766556477, -0.0159633197, -0.000147365208, -0.00809286, -0.0149913523, -0.0167623088, -0.0194063876, 0.00444798358, 0.000914822565, -0.00654842053, 0.00275321957, 0.0254523512, 0.006828479, 0.00530051393, -0.00224664365, 0.00119848456, -0.0145547912, -0.0117294984, -0.0271491744, -0.0103868656, 0.0015557647, 0.00823700707, 0.00251228712, -0.00101624068, 0.0167211238, 0.0149913523, -0.0124625918, 0.00863238331, 0.000105729705, -0.00136734312, -0.00925015844, 0.004769227, 0.0013313063, -0.0116800759, -0.00179772673, -0.00328656589, -0.0305098742, 0.00906894449, -0.014538317, -0.00416380726, -0.00487630814, -0.0116224168, -0.0122813778, -0.000937474368, 0.02655611, -0.0237061065, -0.0039455262, 0.00506987795, -0.00302092242, 0.0200982969, -0.00939018838, 0.0062271771, 0.00918426272, -0.0208725762, 0.00342453574, 0.00315889227, 0.00320213637, -0.0241179559, -0.00454682764, -0.0103292065, -0.0116800759, 0.00106566283, 0.00455506472, -0.0152961221, 0.0136734312, -0.013698143, 0.0108069535, -0.0073226993, 0.00485571567, 0.0813157335, 0.0197688174, -0.00221781409, -0.0195711292, -0.00220957724, -0.00324332155, -0.0152714113, 0.0567035563, 0.00399288908, -0.000885478279, 0.00842233934, 0.00260083494, -0.00904423371, 0.00168858643, -0.0269679613, -0.017676618, -0.00657313177, -0.00823700707, -0.00784163084, 0.0023516654, 0.00454682764, -0.0192910712, 0.0127097014, -0.00523461774, -0.00389816356, -0.0156256016, -0.0126849907, 0.014497132, 0.0109222708, 0.0033812914, -0.00850882847, 0.0222893413, 0.0122649036, 0.0112105664, 0.00806403, 0.0105268946, -0.0148925083, 0.0189451165, -0.00317742536, -0.00608303, 0.0116059426, 0.00234960625, 0.00168858643, 0.00997501519, 0.0126849907, 0.00668844953, -0.01411823, -0.00960435, 0.0126685165, 0.00580709, 0.00658136839, -0.00713324826, 0.0199500304, -0.0281046685, 0.028516518, -0.0115894685, 0.0177260395, 0.00638779905, 0.00248963526, -0.00378696388, 0.0202465635, 0.0124461176, 0.0136404838, -0.0260618906, -0.0100244377, -0.00562175736, 0.0003503302, 0.00346572069, -0.0141347041, 0.00236608018, 0.0101232817, -0.0186485834, 0.0194228627, -0.00693967845, -0.0148595609, 0.0153620178, -0.0248428136, -0.00281911576, 0.0249910802, -0.0140111493, -0.00712089241, 0.0267208498, -0.0262101572, -0.0102056516, -0.00943961, -0.0112929363, -0.0301474463, 0.020015927, -0.00529227685, 0.00951374322, -0.00742566166, 0.0274457075, -0.0177754611, 0.00692732306, -0.00317742536, 0.01879685, -0.00256788684, 0.0341671035, 0.00441091741, 0.0213009, 0.0128332572, 0.0201641936, -0.0129815228, -0.0192251746, -0.0130803669, 0.0255017728, 0.00730622513, -0.0071867886, 0.0198676605, 0.00939018838, 0.012199007, 0.0202465635, -9.64630744e-05, 0.0169682335, 0.0202465635, 0.00553526869, 0.00539935799, -0.00836056191, 0.0379561298, -0.017857831, 0.0180060975, 0.0253699813, -0.0097608529, -0.00770983845, 0.0107163461, 0.0155761801, 0.00372724561, 0.00243403553, 0.00651959097, 0.014398288, 0.0414815657, -0.0136322463, 0.0299827047, -0.00219516247, 0.0149007458, 0.02815409, -0.00404437026, -0.00873946398, -0.0135992989, -0.000233081562, 0.0259795208, 0.0182532072, 0.013796987, 0.00990911946, -0.00838115439, -0.0159715563, -0.0116224168, -0.0123555101, -0.0201477185, 0.000693453, 0.00687378226, 0.0172153451, 0.00607479271, -0.0269514862, -0.00260289432, 0.0190439597, -0.0107492944, -0.00215809583, 0.004629198, -0.0206254646, -0.0131874485, 0.000413909613, 0.0220916532, -0.00756980944, 0.00782103837, 0.00908541866, 0.00858296175, -0.022915354, -0.00189348194, 0.00486395275, 0.00334628415, 0.00539935799, -0.00233519147, 0.0190274864, -0.0219104383, -0.00401348155, 0.00587710459, -0.0140111493, -0.00374577893, -0.00031274886, -0.0162351411, 0.00326803257, 0.0263584219, 0.0496197306, -0.014876035, 0.00482276781, 0.0122319553, -0.000366032, 0.021597432, -0.00317124766, -0.00716619613, -0.0123390369, -0.00270173838, -0.00914307777, -0.00211691088, 0.00695203384, 0.00186362281, -0.000902981905, -0.00817523, -0.00858296175, 0.00282323407, 0.0123390369, 0.00562999444, -0.0115235727, 0.00327009172, -0.00193363742, -0.0124625918, 0.00944784749, -0.00488454523, 0.00172359368, -0.00154032034]
19 Sep, 2024
10 Most Popular Big Data Analytics Tools 19 Sep, 2024 As we’re growing with the pace of technology, the demand to track data is increasing rapidly. Today, almost 2.5quintillion bytes of data are generated globally and it’s useless until that data is segregated in a proper structure. It has become crucial for businesses to maintain consistency in the business by collecting meaningful data from the market today and for that, all it takes is the right data analytic tool and a professional data analyst to segregate a huge amount of raw data by which then a company can make the right approach. There are hundreds of data analytics tools out there in the market today but the selection of the right tool will depend upon your business NEED, GOALS, and VARIETY to get business in the right direction. Now, let’s check out the top 10 analytics tools in big data. 1. APACHE Hadoop It’s a Java-based open-source platform that is being used to store and process big data. It is built on a cluster system that allows the system to process data efficiently and let the data run parallel. It can process both structured and unstructured data from one server to multiple computers. Hadoop also offers cross-platform support for its users. Today, it is the best big data analytic tool and is popularly used by many tech giants such as Amazon, Microsoft, IBM, etc. Features of Apache Hadoop: Free to use and offers an efficient storage solution for businesses. Offers quick access via HDFS (Hadoop Distributed File System). Highly flexible and can be easily implemented with MySQL, and JSON. Highly scalable as it can distribute a large amount of data in small segments. It works on small commodity hardware like JBOD or a bunch of disks. 2. Cassandra APACHE Cassandra is an open-source NoSQL distributed database that is used to fetch large amounts of data. It’s one of the most popular tools for data analytics and has been praised by many tech companies due to its high scalability and availability without compromising speed and performance. It is capable of delivering thousands of operations every second and can handle petabytes of resources with almost zero downtime. It was created by Facebook back in 2008 and was published publicly. Features of APACHE Cassandra: Data Storage Flexibility: It supports all forms of data i.e. structured, unstructured, semi-structured, and allows users to change as per their needs. Data Distribution System: Easy to distribute data with the help of replicating data on multiple data centers. Fast Processing: Cassandra has been designed to run on efficient commodity hardware and also offers fast storage and data processing. Fault-tolerance: The moment, if any node fails, it will be replaced without any delay. 3. Qubole It’s an open-source big data tool that helps in fetching data in a value of chain using ad-hoc analysis in machine learning. Qubole is a data lake platform that offers end-to-end service with reduced time and effort which are required in moving data pipelines. It is capable of configuring multi-cloud services such as AWS, Azure, and Google Cloud. Besides, it also helps in lowering the cost of cloud computing by 50%. Features of Qubole: Supports ETL process: It allows companies to migrate data from multiple sources in one place. Real-time Insight: It monitors user’s systems and allows them to view real-time insights Predictive Analysis: Qubole offers predictive analysis so that companies can take actions accordingly for targeting more acquisitions. Advanced Security System: To protect users’ data in the cloud, Qubole uses an advanced security system and also ensures to protect any future breaches. Besides, it also allows encrypting cloud data from any potential threat. 4. Xplenty It is a data analytic tool for building a data pipeline by using minimal codes in it. It offers a wide range of solutions for sales, marketing, and support. With the help of its interactive graphical interface, it provides solutions for ETL, ELT, etc. The best part of using Xplenty is its low investment in hardware & software and its offers support via email, chat, telephonic and virtual meetings. Xplenty is a platform to process data for analytics over the cloud and segregates all the data together. Features of Xplenty: Rest API: A user can possibly do anything by implementing Rest API Flexibility: Data can be sent, and pulled to databases, warehouses, and salesforce. Data Security: It offers SSL/TSL encryption and the platform is capable of verifying algorithms and certificates regularly. Deployment: It offers integration apps for both cloud & in-house and supports deployment to integrate apps over the cloud. 5. Spark APACHE Spark is another framework that is used to process data and perform numerous tasks on a large scale.  It is also used to process data via multiple computers with the help of distributing tools. It is widely used among data analysts as it offers easy-to-use APIs that provide easy data pulling methods and it is capable of handling multi-petabytes of data as well. Recently, Spark made a record of processing 100 terabytes of data in just 23 minutes which broke the previous world record of Hadoop (71 minutes). This is the reason why big tech giants are moving towards spark now and is highly suitable for ML and AI today. Features of APACHE Spark: Ease of use: It allows users to run in their preferred language. (JAVA, Python, etc.) Real-time Processing: Spark can handle real-time streaming via Spark Streaming Flexible: It can run on, Mesos, Kubernetes, or the cloud. 6. Mongo DB Came in limelight in 2010, is a free, open-source platform and a document-oriented (NoSQL) database that is used to store a high volume of data. It uses collections and documents for storage and its document consists of key-value pairs which are considered a basic unit of Mongo DB. It is so popular among developers due to its availability for multi-programming languages such as Python, Jscript, and Ruby. Features of Mongo DB: Written in C++: It’s a schema-less DB and can hold varieties of documents inside. Simplifies Stack: With the help of mongo, a user can easily store files without any disturbance in the stack. Master-Slave Replication: It can write/read data from the master and can be called back for backup. 7. Apache Storm A storm is a robust, user-friendly tool used for data analytics, especially in small companies. The best part about the storm is that it has no language barrier (programming) in it and can support any of them. It was designed to handle a pool of large data in fault-tolerance and horizontally scalable methods. When we talk about real-time data processing, Storm leads the chart because of its distributed real-time big data processing system, due to which today many tech giants are using APACHE Storm in their system. Some of the most notable names are Twitter, Zendesk, NaviSite, etc. Features of Storm: Data Processing: Storm process the data even if the node gets disconnected Highly Scalable: It keeps the momentum of performance even if the load increases Fast: The speed of APACHE Storm is impeccable and can process up to 1 million messages of 100 bytes on a single node. 8. SAS Today it is one of the best tools for creating statistical modeling used by data analysts. By using SAS, a data scientist can mine, manage, extract or update data in different variants from different sources. Statistical Analytical System or SAS allows a user to access the data in any format (SAS tables or Excel worksheets). Besides that it also offers a cloud platform for business analytics called SAS Viya and also to get a strong grip on AI & ML, they have introduced new tools and products. Features of SAS: Flexible Programming Language: It offers easy-to-learn syntax and has also vast libraries which make it suitable for non-programmers Vast Data Format: It provides support for many programming languages which also include SQL and carries the ability to read data from any format. Encryption: It provides end-to-end security with a feature called SAS/SECURE. 9. Data Pine Datapine is an analytical used for BI and was founded back in 2012 (Berlin, Germany). In a short period of time, it has gained much popularity in a number of countries and it’s mainly used for data extraction (for small-medium companies fetching data for close monitoring). With the help of its enhanced UI design, anyone can visit and check the data as per their requirement and offer in 4 different price brackets, starting from $249 per month. They do offer dashboards by functions, industry, and platform. Features of Datapine: Automation: To cut down the manual chase, datapine offers a wide array of AI assistant and BI tools. Predictive Tool: datapine provides forecasting/predictive analytics by using historical and current data, it derives the future outcome. Add on: It also offers intuitive widgets, visual analytics & discovery, ad hoc reporting, etc. 10. Rapid Miner It’s a fully automated visual workflow design tool used for data analytics. It’s a no-code platform and users aren’t required to code for segregating data. Today, it is being heavily used in many industries such as ed-tech, training, research, etc. Though it’s an open-source platform but has a limitation of adding 10000 data rows and a single logical processor. With the help of Rapid Miner, one can easily deploy their ML models to the web or mobile (only when the user interface is ready to collect real-time figures). Features of Rapid Miner: Accessibility: It allows users to access 40+ types of files (SAS, ARFF, etc.) via URL Storage: Users can access cloud storage facilities such as AWS and dropbox Data validation: Rapid miner enables the visual display of multiple results in history for better evaluation. Conclusion Big data has been in limelight for the past few years and will continue to dominate the market in almost every sector for every market size. The demand for big data is booming at an enormous rate and ample tools are available in the market today, all you need is the right approach and choose the best data analytic tool as per the project’s requirement. Get 90% Course fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today.The next 90 Days of focus & determination can unlock your full potential. The Three 90 challenge has started and this is your chance to upskill and get 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2/Difference between IBM DB2 and MongoDB/Difference between SQLite and IBM DB2/Difference between MySQL and IBM Db2/SQL Tutorial/How to SQL Select from Stored Procedure using SQL Server?/SQL Query to Rename Stored Procedure/Basic Query in PL/SQL procedure/How to Write a Normal Select Procedure in PostgreSQL?/PostgreSQL – SELECT INTO/How to Select Dates Between Two Dates in PostgreSQL?/How to Select Row With Max Value in PostgreSQL/PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows/PostgreSQL – IS NULL operator/PostgreSQL – NOT LIKE operator/SQL LIKE Operator/SQL Server Max Function Takes Two Values Like Math.Max in .NET/SQL Server NULL Values/NULL values in SQL/How to Set a Column Value to Null in SQL?/SQL IS NOT NULL Operator/SQL | NULL functions/SQL – SELECT NULL/SQL Query to Exclude Null Values/How to Filter Null Values to Last While Sorting Ascending in SQL?/How to Insert Rows with NULL Values in SQL?/SQL Query to Insert Multiple Rows/SQL Query to Add Email Validation Using Only One Query/SQL Query to Add an Agent Parameter in a Database/SQL Query to Get First and Last Day of a Month in a Database/SQL Query to Convert Date Range to Per Day Records/SQL Query to Check if Date is Greater Than Today in SQL/SQL Query to Get a Financial Year Using a Given Date/How to Group by Day, Date, Hour, Month or Year in SQL Server/SQL Query to Convert DateTime to Date in SQL Server/SQL Query to Convert Date Field to UTC/SQL Query to Convert Rows to Columns in SQL Server/SQL Query to Count the Number of Rows in a Table/SQL Query to Delete Duplicate Rows/SQL Query to Find Duplicate Names in a Table/How to Query Two Tables For Duplicate Values in SQL?/SQL – SELECT from Multiple Tables with MS SQL Server/How to Update Two Tables in One Statement in SQL Server?/Find all Tables that Contain a Specific Column Name in SQL Server/Copy Tables Between Databases In SQL Server/List All Databases in SQL Server/Top 10 SQL Databases To Learn in 2025/Top 10 Reasons to Learn Java in 2025/Top 5 Reasons to Learn Game Development/10 reasons to learn Python in 2019/Top 7 Reasons to Learn Golang/Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter/Is it Worth to Learn Python in 2020?/Python vs Java – Who Will Win the Battle in 2020?/How to Become a Freelance Programmer in 2020?/4 Personality Traits of a Great Programmer/Why Learning Web Development is a Great Career Move in 2025?/30+ Web Development Projects with Source Code [2025]/Top 10 Golang Project Ideas with Source Code in 2025/Top 10 Vue.js Project Ideas for Beginners in 2025/Top 10 Docker Projects Ideas for Beginners [2025]/Top Gen AI Project Ideas for Beginners in 2025/Top 12 Spring Project Ideas For Beginners [2025]/Top 10 R Project Ideas for Beginners in 2025/Top 10 Rust Project Ideas With Source Code in 2025/Top 10 C# Project Ideas for Beginners in 2025/Top 10 GoLang Projects Ideas for Beginners in 2025/The Future of Golang in 2025 [Top Trends and Predictions]/The Future of 3D Modeling in 2025 [Top Trends and Predictions]/The Future of Robotics in 2025 [Top Trends and Predictions]/10 Essential Skills for a Successful Career in Robotics Engineering/Software Testing Career Path – Skills, Salary and Growth/Why Non-Linear Career Paths are a Great Option to Achieve Career Success?/How to Build a Great Product from Scratch?/UI Design Process: 6 Easy Steps To Create Great UI/Content Improvement League 2024: From Good To A Great Article/Rank Improvement Course for GATE Exam: Crack GATE Now!/GATE DA 2025 Answer Key (Now Available) Download PDF/GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence/200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025/How To Ace Hackathons/How to Use the STAR Method To Ace Your Job Interview?/Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation/10 Ways to Find and Get Your Dream Internship/How to land your Dream Job: Three 90 Challenge/10 Tips For Landing Your Dream Internship/2-Page Resume Ship or Sink Your Dream Job Opportunity!/Things every final year student should do to get a job in their dream company/Things one should know before choosing Computer Science as their major/Why Developers Should Have a YouTube Channel?/Why Golang is so Popular Among Developers?/10 Most Popular Big Data Analytics Tools
https://www.geeksforgeeks.org/10-most-popular-big-data-analytics-tools?ref=asr10
Languages
10 Most Popular Big Data Analytics Tools
PHP | IntlChar::isUWhiteSpace() Function, Difference between MySQL and IBM Db2, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, SQL procedure, 4 Personality Traits of a Great Programmer, GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence, SQL – SELECT NULL, PHP | IntlChar::isspace() Function, 2-Page Resume Ship or Sink Your Dream Job Opportunity!, Difference between IBM DB2 and MongoDB, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, PostgreSQL – NOT LIKE operator, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Write a Normal Select Procedure in PostgreSQL?, How to Select Row With Max Value in PostgreSQL, Top 7 Reasons to Learn Golang, Why Learning Web Development is a Great Career Move in 2025?, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, SQL Server Max Function Takes Two Values Like Math.Max in .NET, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, 10 Most Popular Big Data Analytics Tools, Benefits of Using Modern Learning Apps, NULL values in SQL, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, 10 reasons to learn Python in 2019, Top 5 Reasons to Learn Game Development, SQL Query to Convert Date Range to Per Day Records, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, Software Testing Career Path – Skills, Salary and Growth, AngularJS angular.isDefined() Function, SQL Query to Convert Date Field to UTC, Content Improvement League 2024: From Good To A Great Article, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, List All Databases in SQL Server, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, How to Group by Day, Date, Hour, Month or Year in SQL Server, PHP IntlChar::charName() Function, Why Non-Linear Career Paths are a Great Option to Achieve Career Success?, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, Top 10 Vue.js Project Ideas for Beginners in 2025, Find all Tables that Contain a Specific Column Name in SQL Server, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, Top 10 Golang Project Ideas with Source Code in 2025, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, Copy Tables Between Databases In SQL Server, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, The Future of Robotics in 2025 [Top Trends and Predictions], PostgreSQL – Drop Procedure, Top 12 Spring Project Ideas For Beginners [2025], Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Wand sample() function – Python, PostgreSQL – SELECT INTO, Mongoose Queries Model.replaceOne() Function, GATE DA 2025 Answer Key (Now Available) Download PDF, Angular PrimeNG Form Calendar Touch UI Component, SQL Query to Rename Stored Procedure, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top Gen AI Project Ideas for Beginners in 2025, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, The Future of Golang in 2025 [Top Trends and Predictions], How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Why Developers Should Have a YouTube Channel?, SQL Query to Check if Date is Greater Than Today in SQL, MongoDB insertOne() Method – db.Collection.insertOne(), The Future of 3D Modeling in 2025 [Top Trends and Predictions], Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, SQL Query to Get a Financial Year Using a Given Date, Mongoose Query.prototype.limit() API, How to Use the STAR Method To Ace Your Job Interview?, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, Things one should know before choosing Computer Science as their major, Why Golang is so Popular Among Developers?, PHP | IntlChar::forDigit() Function, Python vs Java – Who Will Win the Battle in 2020?, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], Top 10 C# Project Ideas for Beginners in 2025, 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, 10 Ways to Find and Get Your Dream Internship, Top 10 Python REST API Frameworks in 2025, UI Design Process: 6 Easy Steps To Create Great UI, Difference between SQLite and IBM DB2, Top 10 JavaScript Frameworks to Use in 2025, How to Query Two Tables For Duplicate Values in SQL?, How to Get All Keys of an Associative Array in PHP?, 30+ Web Development Projects with Source Code [2025], Top 10 Reasons to Learn Java in 2025, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, SQL Query to Find Duplicate Names in a Table, How to land your Dream Job: Three 90 Challenge, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation, Top 10 Deep Learning Tools You Must Know [2025], How to Build a Great Product from Scratch?, 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, SQL Query to Insert Multiple Rows, How to Update Two Tables in One Statement in SQL Server?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, SQL Tutorial, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Top 10 SQL Databases To Learn in 2025, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How to Filter Null Values to Last While Sorting Ascending in SQL?, How to Become a Freelance Programmer in 2020?, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, SQL Query to Delete Duplicate Rows, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, How To Ace Hackathons, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Basic Query in PL, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, SQL Query to Add an Agent Parameter in a Database, Mongoose Document Model.count() API, SQL Query to Get First and Last Day of a Month in a Database, Languages, Mongoose Document Model.estimatedDocumentCount() API, PostgreSQL – IS NULL operator, PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows, Is it Worth to Learn Python in 2020?, 10 Essential Skills for a Successful Career in Robotics Engineering, Things every final year student should do to get a job in their dream company, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, SQL IS NOT NULL Operator, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, SQL Query to Convert Rows to Columns in SQL Server, Tensorflow.js tf.Tensor Class, SQL LIKE Operator, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, SQL Query to Exclude Null Values, How to SQL Select from Stored Procedure using SQL Server?, SQL Server NULL Values, SQL | NULL functions, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, Top 10 GoLang Projects Ideas for Beginners in 2025, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, How to Insert Rows with NULL Values in SQL?, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, SQL Query to Add Email Validation Using Only One Query, SQL – SELECT from Multiple Tables with MS SQL Server, Top 10 R Project Ideas for Beginners in 2025, 200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025, Difference between MS SQL Server and IBM DB2, SQL Query to Count the Number of Rows in a Table, Top 10 Docker Projects Ideas for Beginners [2025], PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, How to Select Dates Between Two Dates in PostgreSQL?, SQL Query to Convert DateTime to Date in SQL Server, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Rank Improvement Course for GATE Exam: Crack GATE Now!, 10 Tips For Landing Your Dream Internship, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, Top 10 Rust Project Ideas With Source Code in 2025, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, How to Set a Column Value to Null in SQL?, Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0290103052, -0.00374017144, -0.0141774872, 0.00656528, 0.0313918665, -0.0304008815, -0.0135221584, 0.0234320145, 0.0226168483, 0.0339812152, 0.0362828597, -0.0573173277, 0.0283549745, -0.0178856924, -0.0141774872, -0.00714868261, -0.00435953727, 0.00212782202, -0.0138178561, -0.0281312037, -0.0108688744, -0.042644348, -0.0229525045, -0.000521965674, -0.00567019591, 0.0206348784, 0.00407383, 0.0129067879, -0.0276996456, 0.000933044939, 0.0275877602, 0.00350641063, 0.0418132, -0.0295857154, -0.0206668451, 0.0155121218, 0.0126270745, -0.0440509096, 0.0159117132, 0.027907433, 0.0120196966, 0.000804176845, 0.00505082961, -0.00122274831, -0.000592393626, -0.00897481292, -0.0314398184, -0.0375615507, -0.00390000781, 0.0156719573, -0.00122774323, -0.0127389599, 0.0358353183, 0.0303049795, 0.0168147888, 0.0164151974, 0.0245828368, 0.00241552736, 0.0143293319, 0.0166229848, 0.019052498, -0.0018680878, 0.0101416185, -0.018956596, 0.00496291975, -0.0200914331, -0.0289463699, 0.00878301, -0.026724644, 0.00704478892, -0.0451377966, 0.014784866, 0.00982993748, -0.0109328087, 0.00636548409, 0.00611773785, -0.00606579101, -0.0152483918, -0.0342049859, 0.028003335, 0.00992583949, -0.0153602771, 0.0161035154, -0.00921456795, 0.0696886629, 0.00766015891, -0.00939038768, -0.0675788224, 0.0113723585, 0.00371020217, 0.00831149239, -0.0183492173, 0.00738044502, -0.017294297, -0.0150485961, 0.0106211277, 0.00360031473, 0.00493894424, -0.025158247, 0.0582443811, -0.0197717603, 0.0456492715, 0.04520173, -0.0340131819, -0.00583402812, -0.0561345406, -0.0429959893, 0.022313159, 0.00978997909, -0.0116840396, 0.0217856988, 0.0129787149, -0.0165910162, 0.0177897904, -0.0232881624, -0.023879556, 0.032031212, -0.0476632118, 0.0202033184, -0.00635349657, -0.0204910245, 0.0352279395, -0.0199156143, 0.0493894443, -0.0285307951, 0.0434435308, -0.00126870128, 0.0133063793, 0.0294258781, 0.00824755803, -0.00908669829, 0.00980596244, -0.0332140028, 0.0104133403, -0.00201293943, -0.00220374414, 0.0389361456, 0.023879556, -0.0156160146, -0.0168147888, -0.0324308, -0.0311521124, 0.00680503435, -0.0427402519, -0.0126350662, 0.00120976171, -0.017198395, 0.0732050687, -0.0306885857, 0.0176938884, -0.02701235, 0.0245189015, 0.0326226056, -0.00872706715, -0.00736446166, -0.0193242189, 0.00199795491, 0.0205389764, -0.0296976, -0.0195959415, 0.00300092809, -0.00482306303, 0.00377413677, 0.0231762771, 0.0196918435, 0.0126270745, 0.0140895778, -0.000432557223, -0.0526501052, 0.055623062, -0.00857522245, -0.0115721542, -0.02160988, 0.00545441685, -0.0293299779, 0.0111565795, 0.0312639959, -0.0123873204, -0.0352918729, -0.0130826086, -0.00529058464, -0.000945532112, 0.0195799582, -0.00776005676, 0.0346525274, 0.0109248171, 0.070455879, 0.00527859665, 0.0113164159, 0.00315077486, 0.000771210587, -0.000211033985, 0.0425164774, 0.0205869265, 0.00916661695, -0.02113037, -0.0203791391, 0.0539927334, 0.00113184145, -0.00123473606, -0.0710312873, -0.0491337068, -0.00702880509, 0.0554632246, 0.0283070244, 0.00316076446, 0.0128188785, -0.00189905614, 0.0354517102, 0.00218975847, -0.0278754663, 0.0126350662, 0.00368422875, 0.00701681757, 0.010900842, 0.0180774946, -0.0111725638, -0.0253660344, -0.00700083375, -0.0183012672, -0.0127069931, 0.000609376235, 0.0158717539, 0.00606978685, -0.0434115641, -0.0148168327, 0.00335057033, 0.0288185012, 0.0244709514, 0.0304967836, 0.0177258551, 0.00440748828, -0.0128748212, -0.0441787764, 0.00100846775, 0.00451138197, 0.00124872173, -0.0135940844, -0.0589156933, -0.00489099324, 0.0533533879, 0.00628956174, -0.0115881385, -0.0111086285, -0.0205229931, -0.00647337362, 0.031040227, 0.0506681353, 0.0319832601, 0.0449140258, -0.0064613861, -0.0403427035, 0.00939837936, 0.0438910723, -0.0244869348, 0.0246947221, 0.0194361042, 0.0318713747, 0.026724644, -0.0191963501, 0.0208426658, -0.0202512704, -0.0338853151, 0.0334697403, -0.0105811693, 0.0137619134, 0.0392238498, -0.0123793278, 0.0255738217, -0.0354836769, 0.0404386073, -0.00201893342, 0.0140496185, -0.0160795413, -0.00767614273, -0.0168467555, -0.016399214, -0.0241512787, 0.00607378269, 0.0232242271, 0.00110187207, -0.054344371, 0.0659804642, 0.0273959562, -0.0325586721, 0.00210984028, 0.0117799416, -0.0404066369, -0.0405345075, -0.0183012672, -0.0361549892, -0.00998178218, 0.0204590578, 0.0291062053, -0.00612572953, 0.00557828974, 0.00647337362, 0.00479908753, -0.013242445, 0.0168947056, -0.00537449867, 0.00564222457, 0.00419170922, 0.0261652172, -0.0295857154, -0.00626558624, 0.0138977738, -0.0181733966, -0.00802778266, -0.0296336655, 0.0182053652, 0.0185410213, -0.00214979937, -0.0220893882, -0.0127789192, 0.0621763542, 0.0209225826, -0.0115321949, -0.0406943448, -0.0209705345, 0.0137379374, 0.0120996144, -0.0581165105, 0.0479828827, -0.00300692208, -0.0265008733, -0.0402468033, 0.0265008733, 0.000940537255, -0.0101895696, -0.00185709901, -0.0374976173, -0.0291541573, 0.0270283334, 0.042644348, -0.0364746638, -0.0164791308, 0.0245189015, -0.0137699051, 0.0379131921, -0.0311041605, -0.0210664365, -0.0473755039, 0.00127769215, 0.0436673, -0.0130426493, -0.0107170297, -0.000217152716, 0.0416213945, 0.0263730045, 0.0015653976, -0.00657726731, 9.00640589e-06, 0.022313159, 0.0190844648, 0.0197397936, 0.00821559, -0.0126830172, -0.0165111, 0.0307045709, 0.0211143866, -0.00554232672, -0.0592673309, 0.0142494142, 0.00922256, 0.00311680953, 0.0162553601, 0.00387603231, 0.0214020927, -0.018956596, -0.00300492416, 0.00943833869, 0.0118039176, 0.0100537091, -0.0611853674, -0.000561924826, -0.0025893494, -0.00195200182, -0.032031212, -0.00281911436, 0.0166869182, 0.00021765221, -0.0198836457, 0.0655968562, 0.000959517842, -0.00865514, 0.0109248171, -0.0132264607, 0.000841638481, -0.00166329741, -0.019659875, 0.0187168401, -0.00700083375, -0.0332459696, -0.0106451036, -0.0131545346, 0.0352279395, 0.0332140028, 0.0186049547, -0.0289623532, -0.000373118062, 0.0363148265, 0.000262731075, 0.016135484, -0.0158078186, -0.0154322032, -0.00422767224, -0.0338213779, -0.0011038701, 0.017198395, -0.0116600646, -0.0133463386, -0.0558468327, 0.0459369794, 0.0154961376, 0.0300812088, -0.00896682125, 0.0157838427, 0.00055643043, -0.0037122, -0.0166869182, 0.0379131921, 0.00608177437, 0.00356035563, 0.00546240853, 0.0214660261, -0.00665318966, 0.00336855184, 0.00457531679, 0.00994182285, -0.017390199, 0.0311521124, -0.0111805554, -0.00612972537, 0.0207627472, -0.0394476205, 0.0578288063, 0.0341090858, 0.0168787222, -0.0356115475, -0.012179533, -0.00886292756, 0.0189086441, -0.0153922439, -0.0987788886, 0.0217377488, -0.0415894277, -0.027907433, -0.0124192871, -0.023687752, -0.0260053799, 0.0233361125, -0.04520173, 0.0269643981, 0.027907433, -0.0166709349, -0.0156399906, 0.017486101, 0.0614730753, -0.00421968056, -0.00857522245, 0.0398631953, 0.0173582323, -0.0197397936, 0.0122994101, 0.00685298489, -0.0451058298, 0.00682901, -0.00937440433, 0.0031068197, -0.0314558, -0.0302250609, 0.0245029181, 0.0524902679, 0.00639345543, 0.0414295904, 0.0267725941, 0.0127629358, -0.0145371193, -0.00110586802, 0.0429959893, 0.0216897987, 0.0514992848, -0.027811531, 0.0150406044, 0.0214820113, -0.000203416785, 0.00510677276, 0.0383287668, -0.000459529605, -0.0244389828, -0.0255258717, -0.0181733966, 0.000959018304, -0.0205549598, -0.00873505883, -0.0528419092, -0.0266447254, -0.019052498, 0.024263164, -0.00319073396, -0.0056662, -0.0497091152, 0.013410273, -0.0478550158, 0.00950227305, 0.0013905766, 0.0260053799, -0.00881497655, -0.0205229931, 0.00235758675, 0.0303209629, -0.00417172955, 0.0179176591, -0.00174621248, 0.0442746803, -0.0255738217, 0.0278914496, -0.00847132877, -0.000358632882, 0.0214020927, 0.00939038768, 0.0111725638, -0.0137219541, 0.00188407139, -0.0174541343, 0.0139457248, 0.00313678919, 0.0216897987, -0.0336615443, 0.00170925038, 0.00569017557, -0.0109967431, -0.000700283155, 0.00453136163, -0.00262731058, 0.00954223238, 0.00971006, 0.0344926938, -0.0129467472, -0.0388402417, 0.0276037436, -0.0161914267, -0.00482705887, 0.0044674268, 0.00535851484, 0.0133942897, -0.004643247, 0.00273919618, 0.00186109496, 0.0123233851, 0.0170865096, 0.0518509224, 0.017486101, -0.00618566805, 0.00781599898, -0.0133543303, -0.0235598832, -0.0195320062, -0.0158078186, -0.0100297332, -0.0137858884, 0.0221852902, 0.0193242189, 0.00926251896, -0.0125871152, 0.00818362273, 0.0169906076, -0.0102854716, -0.00952624902, -0.000614870631, 2.7276767e-06, 0.00353438221, -0.0333738364, 0.0269963667, 0.011915803, 0.00347044761, -0.0115242032, 0.00770011777, 0.018572988, -0.00248745386, 0.00447541894, 0.0268684961, 0.0184131525, 0.0227607023, 0.00790390931, 0.0015653976, -0.0300012901, -0.00770411408, -0.00910268258, -0.0158557706, 0.0446263179, -0.0268684961, -0.00760821206, -0.0257816091, 0.0287705492, 0.0157518759, -0.0101016592, 0.0124832215, 0.00781599898, 0.022984473, 0.00359232281, 0.0297135841, 0.0170385595, -0.0167988036, -0.00850329548, -0.0200275, 0.0101496102, 0.00704878476, 0.0184611026, -0.0216258634, -0.0123233851, 0.0437632, -0.00104093447, -0.000735746871, -0.0116201052, 0.0084953038, 0.00194800599, -0.0471197665, -0.018381184, -0.0146010537, 0.00815165602, -0.0110686701, -0.0354197435, 0.03439679, 0.0169426575, 0.0096860854, -0.00390400365, 0.00111286086, -0.0332140028, -0.014664989, -0.0161994174, 0.00363427983, -0.0135461334, 0.0279394, -0.00519068679, -0.020043483, -0.00268924725, -0.000122874219, -0.0288025178, -0.00373417768, 0.0346525274, 0.00570615893, 0.155360967, -0.000426063867, 0.0183012672, -0.0333738364, 0.0298734214, 0.0342369527, 0.0106451036, 0.00601784, -0.0149606857, 0.018956596, 0.0269643981, -0.0227287337, -0.0195799582, -0.00412777485, -0.00357633922, -0.00995780714, 0.027619727, 0.00203991192, -0.0143293319, 0.0100217415, 0.0175020844, -0.00954223238, -0.0146569964, 0.0215459447, 0.0065892553, 0.0188766774, -0.00502285827, 0.0263250526, -0.0543124042, -0.00966210943, 0.0407582782, -0.00371819385, -0.00581404846, -0.00938239601, 0.00106291194, 0.0136819948, -0.0202832371, -0.0191484, -0.0174381491, 0.000838641543, 0.00499089109, -0.0292500593, -0.0146330213, -0.0188766774, 0.0307365377, -0.0191643834, 0.00935842, -0.0123233851, 0.0125231808, 0.0175500344, 0.0109248171, 0.0158797447, -0.0215619281, -0.009334445, -0.0495173112, -0.0209066, -0.0410140157, -0.0164791308, 0.00315876654, -0.0237357039, -0.00217377488, -0.0108848577, 0.045393534, 0.00177718082, 0.0161274914, -0.0370500758, -0.00999776646, 0.0408861488, -0.0075882324, -0.018381184, 0.00969407707, -0.0172143783, 0.0160555653, 0.00367623684, -0.00411978271, -0.0207627472, 0.00954223238, 0.011891827, 0.0132504366, 0.0215938967, -0.0294898134, -0.0280832537, 0.00125071977, 0.0184291359, 0.00967809372, -0.00724058831, -0.00612972537, 0.0182533152, -0.033501707, 0.0172463469, -0.00268325326, -0.0131065836, -0.0407902449, 0.0247746408, 0.00847932, -0.0175340511, 0.022504963, 0.0267406274, -0.0283549745, -0.0311680958, 0.0235439, 0.0112684658, 0.0168467555, 0.0210184846, 0.0263090692, -0.00530257216, 0.00352039654, -0.00926251896, -0.0174381491, 0.0363467932, -0.0261971839, -0.0187328253, -0.000669314875, -0.0304008815, -0.010780964, -0.0119797373, 0.00923055131, 0.0104612913, 0.0531935506, -0.0110926451, 0.0152324075, 0.0454894342, -0.0113244085, -0.0337574445, 0.00876702555, 0.019947581, -0.0069249114, 0.0179016758, 0.0336615443, 0.0680263638, 0.0128987962, -0.019851679, 0.00567419175, 0.0138737988, -0.0158637613, -0.012227484, -0.0125871152, -0.0286107138, 0.0185090546, -0.0193082355, 0.0109807597, -0.0139057655, -0.0152483918, 0.0175180677, 0.00855124649, 0.0113403918, 0.0433795974, 0.00132863992, 0.0165910162, -0.0170385595, 0.0238955393, -0.00705278059, -0.0064613861, 0.00525462115, -0.0274279248, -0.0247426722, -0.0181574132, 0.0227766857, -0.0251902156, -0.023783654, -0.0127069931, -0.000749732542, -0.0170385595, -0.0082955081, -0.0353877768, 0.0199635644, 0.0150565878, -0.0229684897, -0.00244549662, -0.0214340594, 0.0256857071, 0.00288304873, -0.0169266742, 0.0195639729, -0.00338253751, -0.034972202, 0.00996579882, 0.0273480061, -0.0445623845, 0.0104533, -0.0302250609, -0.025062345, 0.0328943282, -0.0176938884, 0.0103893653, 0.0345246606, -0.0113883428, 0.00971006, -0.0162793361, -0.0264209546, 0.00994182285, -0.0255738217, 0.0091826, 0.021226272, 0.0257975925, 0.0245668534, 0.0325746574, 0.029090222, 0.0117160073, -0.00266726967, 0.0281152204, 0.0217377488, 0.00603781966, -0.000629855262, -0.00226767873, 0.00126070948, 0.0394156538, 0.00177018798, -0.00564222457, -0.0269963667, 0.0172303617, -0.0302570276, 0.010900842, 0.0228086524, -0.0107889557, 0.0158637613, 0.0235758666, 0.0183012672, -0.00525861699, -0.00281511829, 0.00158437819, 0.0253820177, -0.00975801144, -0.0413336903, -0.0199156143, -0.0218656175, -0.0190205295, 0.000561425288, 0.0145291276, 0.0313279331, 0.00976600312, 0.0129467472, -0.00762819173, -0.0209225826, 0.0169746242, 0.00967809372, -0.0105332183, 0.0440509096, 0.0012976717, 0.00737245334, 0.00686497288, -0.0101496102, -0.00299893017, -0.0308644064, -0.0120436717, 0.00282111228, 0.00289503648, -0.00673310785, 0.00383207737, -0.0265488233, -0.046288617, 0.0170385595, 0.00582603645, -0.0359951556, -0.00461128, -0.0203631558, 0.0140336351, 0.000983493286, -0.00106590893, -0.0018071502, -0.00217976863, 0.0100057581, -0.0283709597, 0.0123633444, 0.000499238959, 0.000506731274, 0.00445543928, -0.00327464798, 0.0156959333, -0.000267476193, -0.0454574674, 0.010709038, -0.00247147, -0.0310562104, -0.011915803, 0.000648336369, -0.0216578301, 0.0338213779, 0.0333418697, 0.00437552109, 0.00863915682, -0.0144332256, 0.0130746169, -0.0285627618, 0.00316675846, -0.0344926938, -0.00263929833, -0.00904674, 0.0335336737, 0.021034468, -0.00502685457, -0.00170525443, 0.00291701406, -0.0206988119, 0.0722460449, -0.0321430974, 0.00242751511, 0.0069009359, 0.00879899319, -0.0142574059, -0.00301691191, -0.0436353348, -0.00452337, 0.00955821574, 0.0169746242, 0.0097739948, 0.0273799729, -0.0116041219, 0.0106530953, 0.0214340594, -0.0153922439, -0.0152883502, -0.0271242354, -0.0270922668, -0.00382608362, -0.00295697316, -0.00320471963, -0.0147449067, -0.00307884836, 0.0146010537, 0.00730052684, 0.0266607087, 0.00787194166, 0.00727255549, -0.0068330057, -0.0033985211, 0.000398592, -0.0198996309, 0.0062376149, 0.0139936758, 0.00553833088, -0.00513074826, 0.00194001419, -0.0177578218, -0.0328623615, 0.0191164315, 0.00179316453, -0.0159996226, 0.004027877, 0.000652831746, -0.00563423289, 0.0297935028, -0.0641583279, 0.039703358, 0.00195699674, -0.00809970871, 0.0268684961, -0.0342369527, -0.00882296823, 0.00233560917, -0.0219455361, -0.0304008815, 0.00368622667, -0.0359951556, 0.00388002838, 0.00845534448, -0.029569732, 0.000762719254, -0.0265008733, -0.00949428137, 0.00140456227, 0.0356435142, 0.037145976, -0.00917460863, -0.00012031434, -0.000303938868, 0.0313918665, -0.0183172505, -0.0147528984, -0.0233680792, -0.017006591, 0.0414935276, 0.031040227, -0.00632552523, -0.00999776646, 0.00659724697, -0.0358353183, -0.0131145753, -0.00196398958, 0.007296531, -0.00759622455, 0.0207467638, 0.0170545429, 0.00792388897, 0.00990186445, 0.00681702187, -0.00681302603, -0.0201713517, -0.00989387278, 0.0145051526, -0.00630154973, 0.0281312037, 0.00535851484, -0.00531056384, -0.0436673, 0.00751231, 0.000906572037, 0.002297648, -0.0214500427, 0.0258135758, 0.00875104219, 0.0136500271, -0.0261172652, 0.00697286241, 0.00564222457, -0.000467771169, 0.0200754497, 0.00633751275, 7.3799456e-05, 0.025158247, 0.0109967431, -0.0136580197, -0.000856623112, -0.0252701323, 0.00487900572, 0.0176619217, 0.0280672703, 0.0109408, -0.0183012672, 0.0110367024, 0.0036962165, -0.0101256352, 0.0238156226, 0.0261012819, -0.0227127504, -0.0115162116, -0.00706876442, 0.0101176435, -0.0130746169, -0.00634550443, -0.0318074413, -0.0132024856, 0.00522265397, -0.0357074477, 0.0168147888, -0.0164471641, 0.00887891091, 0.0111405961, -0.00371419801, 0.0215459447, 0.0304967836, -0.0138418311, -0.0467361584, -0.000523464172, 0.000688295462, 0.00917460863, -0.00589396665, -0.0152324075, 0.00993383117, -0.0013875796, 0.0306726024, -0.0307844877, -0.00666517718, 0.00972604379, 0.0744198188, -0.0114203095, 0.00370820425, -0.0115721542, -0.0272361208, 0.0114682605, 0.0037941162, -0.00833546743, 0.0237037372, -0.0388722084, 0.0234799646, 0.00693689939, 0.0062136394, 0.0179176591, -0.0247906242, 0.0154162198, -0.00527060498, -0.0040778257, 0.0229365211, -0.0246947221, -0.00477910787, 0.0022237238, -0.00823956542, 0.0048630219, 0.0122115, 0.00954223238, 0.0192602854, 0.0111565795, -0.0368582718, -0.0173102804, 0.0171344616, -0.00214580353, 0.00313279312, 0.00716067, 0.0255578384, 0.0477271453, -0.00948629, 0.0132744117, -0.0077400771, 0.00137059705, -0.00172523397, -0.00141655, -0.0290742386, 0.0332779363, -0.0309762917, -0.00173522381, -0.0218016841, -0.00865514, -0.0140496185, 0.0317435078, -0.00332859275, -7.22385521e-05, 0.00734847784, -0.0582124107, 0.0158397853, 0.0391599163, 0.0223770943, 0.00935842, 0.00378612452, -0.0138897821, 0.00966210943, -0.00978198647, 0.033501707, -0.0495492816, 0.0147289233, 0.0140336351, -0.0183492173, 0.00111385982, -0.00377413677, -0.0194680728, -0.0115881385, 0.0258775111, 0.0185410213, 0.0145770786, 0.0075402814, 0.0168787222, -0.000475763, -0.0153123261, -0.00311880745, -0.0290582553, -0.00014322839, 0.0128828129, -0.00978198647, -0.00204290892, 0.00280512869, -0.00644939812, 0.0175340511, 0.00211783219, -0.0194520876, -0.0249984115, -0.00827952474, -0.0111565795, -0.00479908753, 0.00747634703, -0.0138498228, -0.0161035154, 0.0234000478, 0.0152244158, 0.00306286477, 0.016910689, 0.0167988036, -0.00604980718, -0.00489898538, -0.00917460863, 0.0124112954, -0.00628956174, 0.0282750577, 0.0214820113, 0.000538448803, 0.00568617927, 0.0110047357, -0.00577808544, 0.0115162116, 0.00763218757, 0.0351959728, -0.018860694, 0.0218496341, 0.0247746408, 0.00401588902, 0.00855124649, -0.0150485961, 0.0399910659, 0.0147289233, -0.0279713683, -0.00341850077, 0.00230164407, 0.00264129625, 0.00201793434, -0.0142973652, 0.0237357039, 0.0041997009, 0.00573413027, -0.0133303544, -0.00121375755, -0.0151444981, -0.00268724933, -0.0295857154, 0.019947581, 0.00739243301, 0.0258455444, -0.0212742239, -0.00586199947, -0.0254939031, -0.00254739239, 0.0139377331, 0.00808772165, -0.0245189015, 0.0179496258, 0.00340851094, -0.00764017925, -0.00354637, -0.00901477225, 0.00103494059, 0.032926295, 0.016039582, -0.01620741, -0.00999776646, -0.004691198, 0.0177418385, 0.00443146378, 0.0153922439, 0.0237197205, 0.0124592464, -0.000248745375, -0.0256697237, 0.00937440433, 0.0056662, 0.0057740896, 0.0233201291, 0.0124992058, -0.020139385, -0.0167668369, 0.00748034287, 0.00189506018, -0.00858321413, -0.00154741597, 0.0157678593, 0.00123173918, 0.016231386, 0.00511876028, 0.00916661695, 0.00389001798, -0.00835145079, 0.0216897987, -0.01080494, -0.0350041687, -0.00293699373, 0.0167668369, -0.00457931263, 0.0475033745, -0.0301771108, -0.000393597118, -0.0075442777, -0.010685063, 0.0156559739, 0.0299373548, 0.0122754341, -0.00420769304, -0.00598587282, 4.82630967e-05, -0.0111885471, 0.00862317346, 0.00360231264, 0.00565421209, -0.0100696925, 0.00571015477, -0.0152563835, 0.0042476519, 0.000687796, -0.00293699373, -0.0127309682, 0.0188287273, -0.00301091792, -0.0252861157, 0.00694489107, -0.00950227305, -0.00230963575, -0.0190205295, 0.00379012036, -0.00975801144, -0.00440748828, -0.00497091142, 0.00285707554, 0.0150246201, 0.0112604732, -0.0278914496, 0.0143213402, 0.000854625192, 0.0119797373, 0.0088948952, -0.0314238332, 0.00584202, 0.00135561242, -0.0110047357, 0.0112924408, -0.00584601564, 0.000690792862, -0.010852891, -0.00750032254, 0.0083594434, 0.0220893882, 0.0206029098, -0.02407136, -0.00329063158, 0.00352039654, 1.44149317e-05, 0.0202992205, -0.0274918582, -0.0112285065, 0.0181094632, -0.0192602854, -0.0121955164, 0.0179815944, -0.0190365128, 0.0108289151, -0.0175020844, 0.00834345911, -0.00069279084, -0.033693511, -0.00751231, 0.000187183396, 0.0263730045, 0.0144012589, 0.00445943512, 0.00411179103, 0.0116440812, -0.0100457165, -0.0109807597, -0.0231283251, 0.0187008567, -0.00248145987, 0.0113403918, -0.00843136944, -0.0075642569, -0.0104213329, -0.00220774021, -0.00553833088, 0.00570615893, -0.0137379374, -0.0145211359, -0.0152324075, 0.0389681123, 0.00923854299, -0.0258934945, -0.00742839603, -0.0152563835, -0.00239155185, -0.0198197123, -0.00479908753, -0.0237037372, 0.0130666243, 0.0110367024, -0.0134742074, 0.0178537238, -0.0290103052, 0.0273639895, -0.0128828129, -0.0136819948, -0.0294898134, -0.0113324, -0.00193801615, 0.00766415475, -0.0235279165, -0.0174701177, -0.0145131443, -0.00176119723, 0.0156080229, -0.0102854716, 0.00988588, 0.00590995047, 0.0182533152, -0.0391279459, 0.0224410295, -0.0216258634, -0.0183971673, -0.0207147952, -0.0152084325, 0.00950227305, 0.00545441685, 0.0164951161, -0.0146090463, -0.0109487921, -0.0177098718, 0.00414775405, -0.0315836705, 0.00191903568, -0.0103653893, 0.000455783447, -0.00823157374, -0.00329662557, 0.00348243536, -0.0176139697, -0.00580206094, 0.0146090463, 0.012059655, -0.00094852905, 0.0294098947, -0.0296336655, -0.00112484861, -0.01054121, 0.00406783586, -0.0217856988, -0.010685063, 0.0104373163, 0.047759112, -0.0341730192, -0.0109088337, 0.0221213568, -0.00386404456, 0.00850329548, 0.00887891091, 0.00518669095, -0.00672911201, 0.0118598603, -0.00147848658, 0.0229365211, 0.0121395737, 0.0248066075, -0.00567419175, 0.0152084325, -0.0267406274, 0.0125951078, 0.0146569964, -0.00885493588, -0.00459929183, -0.0152723668, -0.0144731849, -0.0206988119, 0.0225848816, 0.0246307869, -0.0119477697, -0.0192443, 0.0373058133, -0.00420769304, -0.0148248253, 0.0426123813, 0.0255578384, -0.000515472377, 0.0100936675, -0.00981395412, -0.023687752, -0.0369222052, 0.00674509536, -0.00583003229, -0.0108129317, 0.00161634549, -0.00708474778, 0.0144811766, 0.0286107138, -0.0124752298, 0.0112125222, -0.0175020844, 0.0361230224, 0.0172143783, -0.02359185, -0.00662521832, -0.0146729806, -0.00499488693, 0.00369421858, 0.000307185546, 0.015919704, -0.0084473528, -0.0068330057, 0.000922555628, 0.00585800363, -0.0012976717, 0.000462276803, 0.000836144085, 0.0118039176, 0.00990186445, 0.00177917874, -0.00393597083, -0.0169426575, -0.00786794629, 0.0146729806, 0.0139617082, 0.0048630219, -0.00799581502, -0.00870309118, -0.00078369776, 0.0131944939, -0.00617767638, 0.0157518759, -0.0160315894, -0.010709038, 0.0088469442, 0.0382328629, -0.00995780714, -0.00850329548, -0.0193721708, 0.0112444898, -0.00320471963, 0.0166389681, -0.00971006, -0.0233041458, -0.00140056631, -0.0027991347, -0.00573013443, 0.00709274, -0.00116480771, -0.007344482, 0.00282710604, -0.0132584283, 0.00404186267, 0.0240074247, 0.00353837805, 0.0163672455, -0.00393796898, -0.00534253148, -0.00362429, 0.000141605051, 0.0166070014, 0.00994981546, -0.0181574132, -0.0244869348, -0.000541445741, -0.00971006, -0.00886292756, 0.0314398184, -0.010517234, -0.0131865023, -0.0364107303, -0.0168787222, 0.00846333709, 0.0157119166, -0.0191643834, 0.0054704, 0.017198395, 0.0121955164, 0.0084953038, -0.00061786751, -0.0151524898, -0.0205709431, 0.00206788327, 0.00843136944, 0.00250343746, 0.00138458272, 0.0044714231, 0.0121955164, -0.00276117353, 0.00144552032, 0.0167508535, -0.0112205148, 0.0049349484, 0.0186529066, 0.040055, -0.0137059698, 0.000680303609, 0.0136660114, 0.0214660261, 0.0146090463, -0.00891887, -0.0233680792, -0.00662921416, 0.00532654766, 0.0114842448, -0.00994182285, 0.0032926295, -0.00914264098, -0.00501087075, 0.00637347577, 0.000807173783, 0.0151524898, 0.0342049859, 0.00362029416, 0.0279713683, -0.0192443, 0.000611873693, -0.0068769604, -0.00513874, 0.00435554143, -0.0241832454, -0.0329902321, 0.00153542834, 0.0111965388, -0.00528658833, -0.0044714231, -0.0146809723, 0.00288504688, -0.00774407294, 0.0285787452, -0.00244549662, -0.00283110212, -0.0306726024, 0.00681702187, -0.00326665607, 0.00875903387, 0.0155760562, -0.0208426658, 0.00136060722, 0.00713269878, 0.00417172955, -0.0044474476, 0.00520267431, -0.0191803668, -0.0127709275, -0.000518469256, -0.00922256, -0.00720862113, 0.00586999115, -0.00827153306, 0.0170385595, -0.0121715413, -0.00099098566, -0.0195799582, -0.00701282127, 0.0100457165, 0.00115981279, -0.00843136944, -0.0122594507, 0.0125391642, -0.00509478478, -0.0135141667, -0.0112205148, 0.00706077227, 0.00385205704, -0.0300652236, 0.0192443, -0.00450738613, -0.00617767638, 0.00855923817, -0.0143692913, -0.00150845596, -0.010661087, 0.00490298122, -0.0108688744, -0.00855923817, 0.00452736579, 0.000169326668, -0.0189406127, -0.0370820425, 0.000293949095, 0.00362628815, 0.0214660261, 0.00748833455, 0.00384206721, -0.0030728546, 0.00342449453, 0.00204590568, 0.00131165737, 0.00482705887, -0.0186209399, -0.0321750641, -0.0111166211, 0.0126830172, 0.00657726731, 0.00927850232, 0.00373417768, -0.0106051443, -0.00841538608, 0.00551035954, 0.0218496341, -0.00617368054, -0.0236557852, 0.00797583535, -0.00168028, -0.0137219541, 0.0157039259, -0.00406184234, -0.0117399823, -0.00088958937, -0.0252701323, -0.00418371754, -0.013290396, 0.012179533, -0.0222332422, -0.0247266889, 0.0028630693, -0.0209865179, -0.022313159, -0.00899079721, -0.0245988201, -0.00232362142, 0.00664519798, 0.0156959333, -0.00473914901, 0.0328303948, -0.0125071974, -0.0101895696, -0.00727255549, 0.00213980954, 0.00344847, -0.0168307722, -0.0114442855, 0.00816364307, 0.00473115686, 0.00664519798, -0.00331260916, -0.039000079, -0.0103494059, 0.00328663574, -0.00489498954, -0.000433805952, 0.00798782334, 0.00686497288, -0.0059259343, -0.0142254382, -0.0279394, -0.000401588914, -0.00387203647, -0.000805675285, -0.0234000478, 0.00232362142, -0.00594591349, 0.00536251068, 0.0075203022, -0.0179336425, 0.00334657426, 0.00463525532, -0.0109807597, 0.0334377736, 0.00192203256, -0.000663321, -0.00326465815, 0.0241992287, -0.0181094632, 0.000228391218, 0.00921456795, 0.0182692986, 0.00847932, 0.0130826086, -0.00632952107, -0.00391998747, 0.022696767, -0.0138737988, -0.00313678919, 0.0214820113, 0.00420769304, -0.00475513237, -0.0104772756, 0.0148887597, -0.0125631401, -0.0177418385, 0.0132104773, -0.0246947221, 0.0201553684, 0.0146490047, -0.000534952385, -0.0051786988, 0.0243430827, -0.0179815944, -0.020139385, 0.00198496808, -0.00354836788, 0.00422767224, -0.0199315976, -0.00235359091, 0.00598187698, 0.00260133715, -0.00179716037, -0.0158557706, -0.00248545571, -0.0124033038, -0.00243750494, 0.017294297, -0.0333738364, -0.0342369527, 0.00836743508, 0.0117239989, -0.0142334299, 0.0341090858, 0.00344847, -0.00214380561, 0.018860694, -0.00265727984, 0.0208426658, -0.000950527, 0.0129787149, 0.0303369462, 0.0188287273, -0.0193242189, 0.0109487921, 0.0116280969, -0.017677905, -0.0064813653, -0.0254139863, 0.00386204664, -0.0100137498, 0.00839940179, 0.00491496874, -0.0161594581, 0.00121175963, -0.011939778, -0.00525462115, -0.0407582782, 0.00513874, -0.00142554077, -0.0233201291, 0.00701681757, -0.00479109585, -0.0101895696, 0.0255578384, 0.00734847784, -0.0240873434, -1.89649618e-05, 0.0162713435, 0.00218975847, 0.00660523865, -0.00344647211, 0.0195479896, 0.00452736579, 0.0199635644, -0.00182213483, -0.00561824907, 0.0096860854, 0.0125711318, 0.0208266806, -0.00673310785, -0.010613136, 0.00850329548, 0.00477511203, -0.0248066075, 0.0127469515, 0.00319872564, 0.0149526941, 0.00332459691, -0.00179016753, 0.0010559191, -0.000816664, 0.0239434913, -0.00732450234, 0.00126870128, -0.000123685895, 0.0120037124, 0.01866889, -0.0294578467, -0.00116680562, 0.000878600636, -0.00855923817, 0.0101576028, 0.014617038, -0.0151684731, -0.0125631401, -0.00736046582, 0.0159356873, 0.0163512621, -0.00813966803, 0.00954223238, -0.00561824907, 0.00388402422, -0.00662521832, -0.0217537321, 0.00967010111, 0.00368023291, 0.00437951693, -0.00619765604, -0.00684099738, 0.0354197435, 0.0185889713, -0.00452337, -0.00757624488, 0.0390959792, 0.000486751756, -0.00931047, 0.0206828285, 0.00351240463, 0.00833546743, -0.000200919327, 0.0149367107, -0.00159037206, -0.00881497655, -0.00940637104, -0.00189206318, -0.0208586492, 0.014808841, -0.0289463699, -0.0122834267, -0.000725757098, -0.000439799798, -0.0109088337, 0.0177258551, 0.000897081743, -0.0310721938, 0.0102854716, -0.0128828129, 0.000185310317, -0.0065053408, 0.00705677643, 0.0179336425, -0.0163352787, 0.0173262637, -0.0112924408, 0.00786395, 0.0011698025, -0.00310482178, -0.00793587696, -0.0178217571, 0.0127789192, 0.0103573976, -0.0102055529, 0.00614171335, -0.00384406513, -0.0128348619, -0.0222332422, -0.0129547389, 0.000448790612, -0.00935842, -0.0122994101, 0.00099298358, 0.0124672381, -0.00277915527, 0.00924653467, 0.00376814278, -0.0150406044, 0.00910268258, 0.00458330847, -0.00267326366, -0.0135781011, -0.0169586409, -0.00600585248, 0.0111805554, 0.000628856302, -0.0208746325, -0.00630154973, 0.0135860927, 0.00984592177, -0.0349402353, -0.0117160073, -0.00429560291, -0.000596389524, -0.005969889, -0.00301890983, -0.00202792417, 0.0205709431, -6.12185831e-05, -0.0096860854, 0.00254939031, -0.0165270828, 0.00510677276, 0.0109807597, -0.0113004325, -0.0182533152, 0.0221533235, -0.00707276026, 0.0231123418, -0.00598986866, -0.0115801459, 0.00786794629, -0.0183172505, 0.00378812244, -0.00669314852, 0.0111565795, 0.00733249448, -0.00836743508, 0.00455933297, -0.00557828974, 0.0112205148, 0.0208266806, 0.0288344845, 0.00443146378, 0.00691691972, 0.0296816174, 0.00627757423, 0.00107290177, 0.0049109729, 0.0191963501, -0.00119777396, 0.00262731058, -0.0216418467, -0.00075123104, 0.00686497288, 0.00097949733, 0.021418076, -0.00238955393, -0.021513978, -0.00904674, -0.00398392184, 0.00978198647, 0.0143453162, 0.0158158112, -0.0186848734, 0.00770411408, 0.0046672225, 0.00517070713, -0.0234320145, 0.00481107505, 0.00567019591, -0.0068809567, 0.00215779128, -0.00803177804, -0.00695288274, 0.0108688744, -0.0140096592, -0.0217697155, 0.0157838427, 0.00257336581, 0.00605380302, -0.00225968682, 0.0210504513, 0.0105571933, 0.00140156527, 0.00040558484, -0.00982993748, -0.00535851484, 0.00712870294, -0.00449539861, 0.000538948341, 0.0247107055, 0.0100457165, 0.00659325114, -0.00147948554, -0.00940637104, -0.00296296715, 0.0196758602, 0.00420769304, 0.00241153152, 0.00919858366, 0.000738244329, -0.00603781966, 0.00334457634, 0.0272680875, -0.0142813809, -0.00241952343, -0.00427961908, 0.000562424306, -0.0220094714, 0.0180615112, 0.0230004564, -0.00316675846, -0.00630154973, -0.00617767638, -0.0105492016, 0.019851679, -0.000369371905, 0.0130906, -0.0151524898, -0.00899878889, -0.0248066075, 0.00222572172, -0.013242445, -0.0306406356, 0.000892086828, -0.00856723078, -0.0228566043, -0.00107290177, -0.0210824199, -0.00395794865, -0.00243750494, 0.00112484861, -0.0178217571, 0.00961415842, 0.00454334915, -0.00845534448, -0.0045913, 0.0141375288, 0.00859120581, 0.0193402022, 0.00455933297, -0.0029509794, -0.00485503, 0.0110686701, -0.00211783219, -0.00561824907, 0.000674309733, -0.0201873351, -0.0183652, -0.00767614273, 0.00540646585, 0.0117319906, 0.00457132049, 0.0168947056, -0.0112205148, 0.00834345911, 0.0218176674, 0.0089348536, 0.00833546743, -0.0293939114, 0.0208586492, -0.0158397853, -0.010756989, 0.0131065836, 0.00542644551, 0.0207627472, -0.0123473611, 0.017006591, -0.00847132877, 6.44964821e-05, 0.00380810187, 0.0127389599, 2.50524818e-06, 0.00684898905, -0.0109487921, -0.0045153778, 0.0133223627, -0.00678105885, -0.0196438916, 0.0262930859, -0.00696087489, -0.00400589965, -0.0182533152, -0.00865514, 0.0029509794, 0.00870309118, -0.0176139697, 0.00468320632, 0.0188447107, 0.0197238103, 0.0132264607, 0.00307485252, 0.0225848816, -0.000462526543, -0.00839141, -0.0110446941, 0.0115082199, -0.0125471568, 0.0120756393, -0.000206913202, -0.00106790685, 0.0166389681, 0.0185570046, -0.00804776233, 0.0106770704, 0.00522265397, -0.0166709349, -0.016135484, 0.0305447336, -0.00249944162, 0.00194600807, 0.0064613861, -0.00606179517, -0.00307085668, -0.00537449867, -0.0171184763, 0.0178217571, 0.0108289151, -0.00742839603, -0.00770411408, -0.0276037436, -0.0143533079, 0.00984592177, -0.00205789343, 0.00449939445, -0.00269524101, 0.0184291359, 0.007959852, -0.00372818368, 0.0231283251, 0.0166389681, 0.0105971526, -0.00350840879, 0.011963754, -0.00331460708, 0.00330661517, -0.0136979781, -0.00656528, -0.017006591, -0.00353238406, -0.0193881541, 0.0140735935, 0.013122567, 0.0112684658, 0.00292900181, -0.0107969483, -0.0138897821, 0.017102493, 0.00450339029, 0.00528259249, -0.0103733819, 0.0153602771, -0.0210824199, -0.00568617927, -0.0125951078, -0.0029849445, -0.0150166284, 0.00525861699, 0.000632852199, 0.00848731212, -0.00357633922, 0.0267086606, 0.00543044135, -0.00108389056, -0.00264329417, 0.0021997483, 0.00317475013, -0.00748433871, 0.0169586409, -0.00922256, -0.00426763156, -0.00565021625, 0.0315357186, -0.00852727145, 0.00698085409, -0.00452337, -0.000801179907, 0.00537050283, 0.00951026473, -0.0312959664, -0.0219615195, -0.00967010111, -0.000848131836, 0.012107606, -0.00694489107, 0.00791589729, 0.00936641265, 0.00211983, -0.030273011, 0.00943034701, -0.00891087856, 0.00807573367, 0.0110207191, 0.00259933923, -0.00733249448, 0.0147049474, -0.00433556223, 0.0137619134, -0.00783997495, -0.00254339655, 0.00360031473, 0.0186369233, -0.0221533235, 0.0122834267, -0.00283709588, -0.0143533079, -0.0223291442, -0.0186209399, 0.00520267431, -0.017390199, -0.0210664365, 0.0120436717, -0.0117160073, 0.00234959484, 0.00219575246, 0.00847132877, 0.00298894034, 0.000119877288, 0.0137299458, 0.0283709597, 0.00719263731, -0.00763218757, -1.48051577e-05, 0.00212982, 0.0239115227, 0.0141934715, 0.0257975925, 0.00435554143, -0.00208986085, 0.00504683377, 0.00261532282, -0.00846333709, -0.00762019958, -0.033501707, 0.0216578301, -0.0180455279, 0.0159836393, -0.00585001195, -0.0184451193, 0.00521466229, -0.0192283168, 0.0112045305, -0.0062136394, -0.000604880857, -0.00297295675, -0.010517234, -0.00249344762, -0.00362628815, -0.00499089109, -0.0318234265, 0.00271122484, -0.018860694, -0.00673310785, 0.000896582264, -0.0234799646, 0.000115881383, -0.0122994101, 0.0161834341, 0.0161754433, -0.00923055131, 0.0187967587, -0.0021118382, -0.0143133486, -0.0110367024, -0.00295697316, 0.00372019201, 0.0461607501, 0.00339452527, -0.0028231102, -0.00625359872, -0.00275917561, 0.0163832288, -0.0038820263, 0.0063894596, 0.00187707855, 0.00481107505, 0.000658825622, -0.00750032254, -0.00988588, 0.001812145, -0.00661722664, 0.0107010463, -0.000146599938, -0.013458224, -0.00274918578, -0.00134062767, -0.0210184846, -0.0146090463, -0.00971805211, -0.00153442926, 0.028003335, -0.00871907454, -0.00947829802, -0.00656927563, -0.006681161, -0.00445943512, 0.00947829802, 0.0202193037, 0.0131385513, 0.00412777485, 0.00237357034, 0.0062615904, 0.0157199092, -0.00795186, -0.00554632256, 3.8741593e-05, -0.00302290567, 0.0126030995, 0.00413976237, 0.0081596477, 0.00124872173, -0.00766015891, 0.00461927149, -0.00398392184, -0.0102535039, 0.0134262564, -0.00258335564, 0.0235279165, 0.00439550076, -0.000577908417, -0.00431957841, 0.00729253516, -0.011987729, -0.0163192954, -0.0140016675, 0.00882296823, 0.0118838353, 0.0273639895, 0.00427562324, 0.018764792, -0.00468320632, 0.007296531, -0.0014804845, 0.000568917661, 0.0113164159, 0.0173262637, -0.00974202808, -0.00510677276, 0.00739243301, 0.00654929597, -0.00652532047, 0.0144252339, -0.00444345176, 0.0137219541, 0.00330861332, 0.00384606305, -0.00579406926, 0.00835145079, -0.0169266742, 0.0129787149, -0.00231962558, -0.0205549598, 0.0112604732, -0.0014195469, -0.00728853932, 0.00854325481, -0.00472316518, -0.010685063, 0.00210584444, -0.00604980718, 0.0157838427, -0.0286107138, -0.00923854299, 0.0176299531, 0.00803977065, -0.00379811227, 0.00738444133, -0.0331181, -0.0130746169, 0.00549837155, -0.00344047835, 0.0206668451, -0.0163672455, 0.00646538194, 0.00458730431, 0.000417572563, 0.00994981546, -0.00459929183, 0.014617038, 0.00115481787, -0.00251342729, -0.00720862113, -0.0148408087, 0.00222771964, 0.00408781553, 0.0114762522, -0.0115401875, -0.0153602771, 0.00757624488, -0.0147449067, -0.00344647211, -0.0154002355, -0.0174541343, -0.00456732465, -0.00686497288, -0.000775206485, 0.0181733966, -0.00635749241, -0.00108189252, 0.00623361906, -0.00269723893, 0.02653284, 0.0139217498, 0.00702081341, -0.0015733894, -0.0123233851, -0.00508279726, -0.00802778266, -0.0131785106, -0.010565185, -0.00375415711, 0.0274279248, 0.00782798696, 0.00245548645, 0.0184611026, -0.00244749477, -0.00273320219, -0.00726855965, -0.0107969483, 0.0086471485, 0.0183012672, 0.00793587696, 0.0323029347, 0.000269474171, -0.00104093447, -0.0274119396, 0.00139856839, -0.00478310371, -0.0116121136, 0.00794386864, -0.00128668291, -0.00471916934, 0.0226168483, -0.00993383117, -6.36535915e-05, -0.00336655392, -0.00943034701, 0.016303312, 0.0206348784, 0.0232561938, 0.00799182, -0.00213781162, -0.0243430827, -0.00614171335, -0.0533214174, -0.00676507503, -0.0113883428, 0.0182692986, -0.000738743809, -0.00614970503, -0.00781200361, 0.0216418467, -0.00198396924, 0.0157039259, 0.00330062141, 0.00483505055, 0.00111585774, 0.011987729, -0.0111405961, -0.0101096518, 0.0249984115, -5.37262531e-05, -0.0154002355, -0.00208986085, 0.0277955476, -0.00453935331, -0.00149646821, 0.00586199947, 0.0100856759, -0.00940637104, -0.00571015477, -0.00144452136, -0.00268525141, 0.0034045151, 0.00421168888, -0.0112844491, -0.0125551485, 0.0106770704, 0.0162154, -0.00692091556, 0.00204390776, -0.0227447171, -0.00740042469, -0.00573013443, -0.0100297332, -0.0124352714, 0.000770211569, -0.00198796508, -0.00945432205, 0.0201234017, 0.00626958208, 0.0217697155, 0.0153283095, 0.0120756393, -0.0194041375, 0.0102135455, -0.00299693225, 0.000718764262, 0.00324667664, 0.00378812244, 0.00782399159, -0.0161035154, 0.0122035081, 0.00269524101, -0.0112684658, -0.0154002355, -0.00917460863, -0.000678805169, -0.00326465815, 0.00680103851, -0.0245189015, 0.0101576028, -0.00563023658, 0.00983793, 0.0103414143, 0.00831948407, 0.0358992517, 0.00878301, -0.00961415842, 0.00667716516, 0.00322070322, -0.0220254548, -0.00402987469, 0.0120996144, -0.00557029806, 0.0100856759, 0.0383607335, -0.0110287108, 0.00636948, 0.0137219541, 0.00446343096, 0.0137619134, -0.00518269464, -0.0044474476, 0.00549437571, -0.0137219541, -0.00799581502, 0.00971805211, -0.0159356873, -0.00142254389, 0.00792788528, -0.0250783283, 0.0160315894, 0.000141979661, 0.00527060498, 0.000132114757, -0.0154242115, 0.0180774946, 0.0284988284, 0.000981994788, -0.0188447107, -0.00660124281, 0.00196299073, 0.00819161441, 0.00747235119, -0.0170865096, 0.0165111, 0.0032187053, 0.0144412173, 0.0096860854, 0.0202512704, -0.0139697, 0.00809970871, -0.0208586492, -0.00843936112, -0.0359951556, -0.00772409327, -0.0084073944, 0.0111405961, -0.00188507035, -0.0101496102, 0.00967809372, -0.00935842, -0.0217217654, -0.0178217571, 0.0334058031, 0.00801979098, -0.00176319515, -0.013242445, -0.0143852746, -0.0140895778, -0.00567818759, -0.0102535039, 0.01449716, 0.00536650652, -0.00295697316, 0.0124752298, 0.00046652247, -0.0187328253, -0.0185090546, -0.00319073396, 0.00821559, -0.0116440812, -0.0167668369, 0.000775206485, 0.0097340364, 0.0246148035, 0.0128508452, -0.0132504366, -0.00188007555, 0.00255938014, 0.0028630693, 0.0114602689, 0.01054121, 0.0171184763, 0.00457132049, -0.0261971839, -0.0247266889, -0.00547839236, 0.0109807597, -0.0276836623, 0.00843936112, 0.0239434913, 0.00583003229, 0.0129547389, 0.00456732465, 0.0117719499, 0.00758024072, -0.00188107451, 0.00494693639, 0.00205189968, -0.0194361042, 0.00293099973, 0.00781999528, -0.0099737905, 0.0112045305, -0.00690493174, 0.0113803511, 0.000350641087, -0.00210784236, 0.00356834731, -0.013338347, -0.00948629, 0.00362628815, 0.0261812, 0.00499089109, -0.0310881771, 0.000340651313, -0.00333059067, 0.0098219458, -0.0132824033, -0.0058180443, 0.0107969483, 0.00798382796, 0.00902276393, -0.00611773785, -0.0173582323, -0.0073684575, 0.00712071126, -0.0129946982, -0.000145975573, 0.00199995283, -0.0147049474, 0.0110686701, -0.00163732399, 0.000379111938, -0.00337854167, -0.0100617008, 0.00333458674, -0.00162034133, -0.0229684897, 0.0135701094, 0.00247946195, 0.00316675846, -0.00387603231, 0.0140416268, -0.00753228972, -0.0123074017, -0.00459529599, -0.0162953194, 0.00626958208, 0.0206029098, 0.010733013, -0.00125871156, -0.00726456381, 0.0114922365, -0.00323668681, -0.0091346493, -0.0032926295, 0.00207587518, 0.0033985211, 0.010852891, -0.0184930693, 0.0236398019, 0.0284988284, 0.0171664283, -0.0203791391, -0.0278754663, -0.0108369067, -0.00223571155, -0.00179116649, 0.0143213402, 0.0155680645, -0.00911866594, 0.00222572172, -0.00807173736, 0.00822358206, -0.0142813809, 0.0164631475, -0.0109567847, -0.00674909167, 0.0126190828, -0.0095742, 0.00517070713, -0.0139217498, -0.0122674424, 0.00807972904, -0.010517234, -0.0027411941, 0.00256537413, 0.00437552109, -0.0154322032, 0.0190844648, -0.00325067248, 0.0105811693, -0.0049109729, -0.00400190335, -0.0077880281, 0.00037661448, -0.0245988201, -0.00708075194, 0.00602583168, 0.0123553528, -0.00899878889, -0.0228566043, -7.85446e-05, -0.00774407294, -0.00322270114, -0.00315876654, -0.00470318552, 0.00397593, 0.0112045305, -0.000336905126, 0.00305087701, 0.00989387278, -0.00824755803, 0.0109168254, 0.0170865096, -0.00215379521, -0.018860694, 0.00123273814, -0.00319073396, -0.0327344909, 0.00970206875, 0.00952624902, -0.0109088337, -0.00867911614, 0.00672112, -0.0316635892, -0.0238955393, -0.00750831421, -0.0371779427, -0.0109807597, -0.0161594581, -0.0209066, 0.0185250379, 0.00187807751, -0.00321670738, 0.000269474171, 0.00221173605, 0.00410379935, -0.00861518085, 0.00736446166, -0.0124672381, -0.00873505883, -0.0157119166, -0.0142893726, -0.0103653893, 0.00428361539, -0.00425564405, 0.0189406127, 0.0244389828, 0.0041557462, -0.00187208364, -0.0125951078, 0.00549038, -0.00741241267, -5.98449915e-05, -0.00527460082, 0.00157139148, -0.013410273, -0.00632952107, -0.00640144711, -0.033501707, 0.00482705887, 0.0182533152, -0.0107410057, -0.0114682605, 0.0241992287, -0.0122594507, -0.0148248253, -0.00485103438, 0.0273000542, 0.00190604897, 0.000457281916, 0.0080517577, -0.00727655133, 0.0297775194, -0.00596589316, -0.00879899319, 0.00549837155, -0.0126910089, 0.0130985919, -0.00851928, 0.00301291584, -0.0191004481, -0.0138897821, -0.00310082594, -0.0258295611, 0.0222971756, 0.00879899319, -0.00628956174, -0.00654929597, 0.0101176435, -0.000873106241, -0.0237197205, -0.00574212242, 0.081069015, 0.00124472589, 0.00240353961, -0.028003335, 0.018764792, -0.0188447107, -0.015631998, 0.0535451882, 0.00501886243, 0.00808772165, -0.00717265811, 0.00107390073, -0.0104772756, 0.021322174, -0.00764817093, -0.025541855, -0.0106930546, 0.00134462363, -0.0111645721, -0.00690892804, -0.0021018486, -0.0134262564, 0.0090946909, 0.0159117132, -0.0110926451, 0.00649734912, -0.00475113653, 0.00518269464, -0.00195699674, 0.0338533483, -0.00940637104, 0.021322174, 0.0156639665, -0.00475912821, -0.0141535122, 0.0165590495, 0.0169586409, 0.00793587696, 0.0158317946, -0.0114522772, 0.00817563105, -0.0129227722, 0.0256857071, -0.00845534448, 0.0138737988, -0.0169746242, 0.0220893882, -0.0286746472, 0.00612173369, -0.0115481792, 0.0105571933, 0.00828751642, 0.00545042101, -0.0170545429, 0.0113563752, -0.0025793598, 0.0309603084, -0.0124432631, 0.00471916934, 0.00614171335, 0.000288954208, 0.0199955329, -0.00876702555, -0.00378812244, -0.000764717232, 0.00646538194, -0.0112285065, -0.00409580721, -0.0176619217, 0.00750032254, 0.0006912924, -0.0263730045, -0.0124432631, -0.0259094778, 0.00599786034, -0.00770811, -0.0268844794, 0.00831948407, 0.00118978205, -0.0256537404, -0.00638146792, 0.0168467555, -0.0391279459, -0.00633351691, 0.0107010463, -0.00279713678, -0.0391279459, -0.00924653467, -0.0088469442, -0.00974202808, -0.00495492807, 0.032031212, -0.0150565878, 0.0080038067, -0.00683700154, 0.0268045627, 0.0117160073, 0.00271122484, 0.0296336655, 0.00494693639, 0.0122834267, 0.0167988036, -0.0245348848, -0.0281312037, 0.0133063793, 0.00947829802, -0.00608976651, -0.00300292624, 0.0146330213, 0.0149367107, 0.00551835122, 0.0104932589, 0.0113164159, 0.0145291276, -0.000253490522, 0.0116920313, 0.00807573367, 0.0139697, 0.0228246357, 0.00256137806, 0.00837542675, -0.00356634939, 0.00526261283, -0.0100617008, 0.0104373163, 0.000740741787, -0.00488300156, 0.0107410057, 0.0117319906, 0.0147049474, 0.0165111, -0.0147528984, 0.0186049547, -0.000628356822, 0.00346445362, 0.0311521124, -0.0116920313, -0.016087532, 0.00777604, 0.0049109729, 0.0187488087, -0.00189306226, 0.0155600719, 0.0122994101, 0.0121875247, -0.00919059198, -0.00855923817, 0.00990985613, -0.00141854794, 0.0149766691, 0.00693290308, -0.00380610395, -0.0158397853, -0.0139297415, 0.0229205377, 0.0028870448, -0.00106191298, -0.00444345176, -0.00550236786, -0.0130746169, 0.00591794215, 0.00777204428, 0.0174701177, -0.00567019591, -0.00110986386, -0.00642142678, 0.00358632905, -0.00199495791, 0.0134022813, 0.0206988119, 0.0270922668, -0.000961515761, 0.022313159, 0.0164151974, -0.00899878889, 0.00971006, 0.00223571155, -0.00285907346, 0.00654130429, -0.0240393933, -0.0112604732, 0.0208906159, -0.00736446166, 0.0366984345, -0.0037701407, 0.00262331474, 0.000216778106, -0.0166869182, 0.0150326118, 0.0184291359, -0.0101576028, 0.00682501355, -0.0253180843, 0.00161135057, 0.0086471485, 0.0222012736, 0.0109647764, -1.60148575e-05, -0.0191643834, 0.00313279312, 0.00520667, 0.00175820023, -0.00571814692, 0.0128748212, 0.017294297, 0.00738044502, -0.0120996144, 0.00605380302, -0.0038820263, 0.00242152135, 0.010900842]
29 Aug, 2024
Big Challenges with Big Data 29 Aug, 2024 The Challenges in Big Data are the real implementation hurdles. These require immediate attention and need to be handled because if not handled, the technology’s failure may occur, leading to some unpleasant results. Big data challenges include storing and analyzing extremely large and fast-growing data. Big Challenges with Big Data This article explores some of the most pressing challenges associated with Big Data and offers potential solutions for overcoming them. Big Challenges with Big Data Data Volume: Managing and Storing Massive Amounts of Data Data Variety: Handling Diverse Data Types Data Velocity: Processing Data in Real-Time Data Veracity: Ensuring Data Quality and Accuracy Data Security and Privacy: Protecting Sensitive Information Data Integration: Combining Data from Multiple Sources Data Analytics: Extracting Valuable Insights Data Governance: Establishing Policies and Standards Data Volume: Managing and Storing Massive Amounts of Data Challenge: The most apparent challenge with Big Data is the sheer volume of data being generated. Organizations are now dealing with petabytes or even exabytes of data, making traditional storage solutions inadequate. This vast amount of data requires advanced storage infrastructure, which can be costly and complex to maintain. Solution: Adopting scalable cloud storage solutions, such as Amazon S3, Google Cloud Storage, or Microsoft Azure, can help manage large volumes of data. These platforms offer flexible storage options that can grow with your data needs. Additionally, implementing data compression and deduplication techniques can reduce storage costs and optimize the use of available storage space. Data Variety: Handling Diverse Data Types Challenge: Big Data encompasses a wide variety of data types, including structured data (e.g., databases), semi-structured data (e.g., XML, JSON), and unstructured data (e.g., text, images, videos). The diversity of data types can make it difficult to integrate, analyze, and extract meaningful insights. Solution: To address the challenge of data variety, organizations can employ data integration platforms and tools like Apache Nifi, Talend, or Informatica. These tools help in consolidating disparate data sources into a unified data model. Moreover, adopting schema-on-read approaches, as opposed to traditional schema-on-write, allows for more flexibility in handling diverse data types. Data Velocity: Processing Data in Real-Time Challenge: The speed at which data is generated and needs to be processed is another significant challenge. For instance, IoT devices, social media platforms, and financial markets produce data streams that require real-time or near-real-time processing. Delays in processing can lead to missed opportunities and inefficiencies. Solution: To handle high-velocity data, organizations can implement real-time data processing frameworks such as Apache Kafka, Apache Flink, or Apache Storm. These frameworks are designed to handle high-throughput, low-latency data processing, enabling businesses to react to events as they happen. Additionally, leveraging edge computing can help process data closer to its source, reducing latency and improving real-time decision-making. Data Veracity: Ensuring Data Quality and Accuracy Challenge: With Big Data, ensuring the quality, accuracy, and reliability of data—referred to as data veracity—becomes increasingly difficult. Inaccurate or low-quality data can lead to misleading insights and poor decision-making. Data veracity issues can arise from various sources, including data entry errors, inconsistencies, and incomplete data. Solution: Implementing robust data governance frameworks is crucial for maintaining data veracity. This includes establishing data quality standards, performing regular data audits, and employing data cleansing techniques. Tools like Trifacta, Talend Data Quality, and Apache Griffin can help automate and streamline data quality management processes. Data Security and Privacy: Protecting Sensitive Information Challenge: As organizations collect and store more data, they face increasing risks related to data security and privacy. High-profile data breaches and growing concerns over data privacy regulations, such as GDPR and CCPA, highlight the importance of safeguarding sensitive information. Solution: To mitigate security and privacy risks, organizations must adopt comprehensive data protection strategies. This includes implementing encryption, access controls, and regular security audits. Additionally, organizations should stay informed about evolving data privacy regulations and ensure compliance by adopting privacy-by-design principles in their data management processes. Data Integration: Combining Data from Multiple Sources Challenge: Integrating data from various sources, especially when dealing with legacy systems, can be a daunting task. Data silos, where data is stored in separate systems without easy access, further complicate the integration process, leading to inefficiencies and incomplete analysis. Solution: Data integration platforms like Apache Camel, MuleSoft, and IBM DataStage can help streamline the process of integrating data from multiple sources. Adopting a microservices architecture can also facilitate easier data integration by breaking down monolithic applications into smaller, more manageable services that can be integrated more easily. Data Analytics: Extracting Valuable Insights Challenge: The ultimate goal of Big Data is to derive actionable insights, but the complexity of analyzing large, diverse datasets can be overwhelming. Traditional analytical tools may struggle to scale, and the lack of skilled data scientists can further hinder the ability to extract meaningful insights. Solution: Organizations should invest in advanced analytics platforms like Apache Spark, Hadoop, or Google BigQuery, which are designed to handle large-scale data processing and analysis. Additionally, fostering a culture of data literacy and providing training for employees can help bridge the skills gap and empower teams to effectively analyze Big Data. Data Governance: Establishing Policies and Standards Challenge: As data becomes a critical asset, establishing effective data governance becomes essential. However, many organizations struggle with creating and enforcing policies and standards for data management, leading to issues with data consistency, quality, and compliance. Solution: Implementing a formal data governance framework is key to overcoming this challenge. This framework should define roles and responsibilities, establish data stewardship programs, and enforce data management policies. Tools like Collibra, Alation, and Informatica’s data governance suite can assist in creating and maintaining a robust data governance strategy. Conclusion While Big Data offers tremendous potential for driving innovation and business growth, it also presents significant challenges that must be addressed. By adopting the right tools, strategies, and best practices, organizations can overcome these challenges and unlock the full value of their data. As the field of Big Data continues to evolve, staying informed and proactive in addressing these challenges will be crucial for maintaining a competitive edge in the data-driven landscape. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Machine Learning, Data Science & AI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2/Difference between IBM DB2 and MongoDB/Difference between SQLite and IBM DB2/Difference between MySQL and IBM Db2/SQL Tutorial/How to SQL Select from Stored Procedure using SQL Server?/SQL Query to Rename Stored Procedure/Basic Query in PL/SQL procedure/How to Write a Normal Select Procedure in PostgreSQL?/PostgreSQL – SELECT INTO/How to Select Dates Between Two Dates in PostgreSQL?/How to Select Row With Max Value in PostgreSQL/PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows/PostgreSQL – IS NULL operator/PostgreSQL – NOT LIKE operator/SQL LIKE Operator/SQL Server Max Function Takes Two Values Like Math.Max in .NET/SQL Server NULL Values/NULL values in SQL/How to Set a Column Value to Null in SQL?/SQL IS NOT NULL Operator/SQL | NULL functions/SQL – SELECT NULL/SQL Query to Exclude Null Values/How to Filter Null Values to Last While Sorting Ascending in SQL?/How to Insert Rows with NULL Values in SQL?/SQL Query to Insert Multiple Rows/SQL Query to Add Email Validation Using Only One Query/SQL Query to Add an Agent Parameter in a Database/SQL Query to Get First and Last Day of a Month in a Database/SQL Query to Convert Date Range to Per Day Records/SQL Query to Check if Date is Greater Than Today in SQL/SQL Query to Get a Financial Year Using a Given Date/How to Group by Day, Date, Hour, Month or Year in SQL Server/SQL Query to Convert DateTime to Date in SQL Server/SQL Query to Convert Date Field to UTC/SQL Query to Convert Rows to Columns in SQL Server/SQL Query to Count the Number of Rows in a Table/SQL Query to Delete Duplicate Rows/SQL Query to Find Duplicate Names in a Table/How to Query Two Tables For Duplicate Values in SQL?/SQL – SELECT from Multiple Tables with MS SQL Server/How to Update Two Tables in One Statement in SQL Server?/Find all Tables that Contain a Specific Column Name in SQL Server/Copy Tables Between Databases In SQL Server/List All Databases in SQL Server/Top 10 SQL Databases To Learn in 2025/Top 10 Reasons to Learn Java in 2025/Top 5 Reasons to Learn Game Development/10 reasons to learn Python in 2019/Top 7 Reasons to Learn Golang/Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter/Is it Worth to Learn Python in 2020?/Python vs Java – Who Will Win the Battle in 2020?/How to Become a Freelance Programmer in 2020?/4 Personality Traits of a Great Programmer/Why Learning Web Development is a Great Career Move in 2025?/30+ Web Development Projects with Source Code [2025]/Top 10 Golang Project Ideas with Source Code in 2025/Top 10 Vue.js Project Ideas for Beginners in 2025/Top 10 Docker Projects Ideas for Beginners [2025]/Top Gen AI Project Ideas for Beginners in 2025/Top 12 Spring Project Ideas For Beginners [2025]/Top 10 R Project Ideas for Beginners in 2025/Top 10 Rust Project Ideas With Source Code in 2025/Top 10 C# Project Ideas for Beginners in 2025/Top 10 GoLang Projects Ideas for Beginners in 2025/The Future of Golang in 2025 [Top Trends and Predictions]/The Future of 3D Modeling in 2025 [Top Trends and Predictions]/The Future of Robotics in 2025 [Top Trends and Predictions]/10 Essential Skills for a Successful Career in Robotics Engineering/Software Testing Career Path – Skills, Salary and Growth/Why Non-Linear Career Paths are a Great Option to Achieve Career Success?/How to Build a Great Product from Scratch?/UI Design Process: 6 Easy Steps To Create Great UI/Content Improvement League 2024: From Good To A Great Article/Rank Improvement Course for GATE Exam: Crack GATE Now!/GATE DA 2025 Answer Key (Now Available) Download PDF/GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence/200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025/How To Ace Hackathons/How to Use the STAR Method To Ace Your Job Interview?/Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation/10 Ways to Find and Get Your Dream Internship/How to land your Dream Job: Three 90 Challenge/10 Tips For Landing Your Dream Internship/2-Page Resume Ship or Sink Your Dream Job Opportunity!/Things every final year student should do to get a job in their dream company/Things one should know before choosing Computer Science as their major/Why Developers Should Have a YouTube Channel?/Why Golang is so Popular Among Developers?/10 Most Popular Big Data Analytics Tools/Big Challenges with Big Data
https://www.geeksforgeeks.org/big-challenges-with-big-data?ref=asr10
Languages
Big Challenges with Big Data
PHP | IntlChar::isUWhiteSpace() Function, Difference between MySQL and IBM Db2, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, SQL procedure, 4 Personality Traits of a Great Programmer, GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence, SQL – SELECT NULL, PHP | IntlChar::isspace() Function, 2-Page Resume Ship or Sink Your Dream Job Opportunity!, Difference between IBM DB2 and MongoDB, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, PostgreSQL – NOT LIKE operator, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Write a Normal Select Procedure in PostgreSQL?, How to Select Row With Max Value in PostgreSQL, Top 7 Reasons to Learn Golang, Why Learning Web Development is a Great Career Move in 2025?, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, SQL Server Max Function Takes Two Values Like Math.Max in .NET, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, 10 Most Popular Big Data Analytics Tools, Benefits of Using Modern Learning Apps, NULL values in SQL, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, 10 reasons to learn Python in 2019, Top 5 Reasons to Learn Game Development, SQL Query to Convert Date Range to Per Day Records, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, Software Testing Career Path – Skills, Salary and Growth, AngularJS angular.isDefined() Function, SQL Query to Convert Date Field to UTC, Content Improvement League 2024: From Good To A Great Article, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, List All Databases in SQL Server, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, How to Group by Day, Date, Hour, Month or Year in SQL Server, PHP IntlChar::charName() Function, Why Non-Linear Career Paths are a Great Option to Achieve Career Success?, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, Top 10 Vue.js Project Ideas for Beginners in 2025, Find all Tables that Contain a Specific Column Name in SQL Server, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, Top 10 Golang Project Ideas with Source Code in 2025, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, Copy Tables Between Databases In SQL Server, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, The Future of Robotics in 2025 [Top Trends and Predictions], PostgreSQL – Drop Procedure, Top 12 Spring Project Ideas For Beginners [2025], Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Big Challenges with Big Data, Wand sample() function – Python, PostgreSQL – SELECT INTO, Mongoose Queries Model.replaceOne() Function, GATE DA 2025 Answer Key (Now Available) Download PDF, Angular PrimeNG Form Calendar Touch UI Component, SQL Query to Rename Stored Procedure, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top Gen AI Project Ideas for Beginners in 2025, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, The Future of Golang in 2025 [Top Trends and Predictions], How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Why Developers Should Have a YouTube Channel?, SQL Query to Check if Date is Greater Than Today in SQL, MongoDB insertOne() Method – db.Collection.insertOne(), The Future of 3D Modeling in 2025 [Top Trends and Predictions], Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, SQL Query to Get a Financial Year Using a Given Date, Mongoose Query.prototype.limit() API, How to Use the STAR Method To Ace Your Job Interview?, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, Things one should know before choosing Computer Science as their major, Why Golang is so Popular Among Developers?, PHP | IntlChar::forDigit() Function, Python vs Java – Who Will Win the Battle in 2020?, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], Top 10 C# Project Ideas for Beginners in 2025, 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, 10 Ways to Find and Get Your Dream Internship, Top 10 Python REST API Frameworks in 2025, UI Design Process: 6 Easy Steps To Create Great UI, Difference between SQLite and IBM DB2, Top 10 JavaScript Frameworks to Use in 2025, How to Query Two Tables For Duplicate Values in SQL?, How to Get All Keys of an Associative Array in PHP?, 30+ Web Development Projects with Source Code [2025], Top 10 Reasons to Learn Java in 2025, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, SQL Query to Find Duplicate Names in a Table, How to land your Dream Job: Three 90 Challenge, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation, Top 10 Deep Learning Tools You Must Know [2025], How to Build a Great Product from Scratch?, 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, SQL Query to Insert Multiple Rows, How to Update Two Tables in One Statement in SQL Server?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, SQL Tutorial, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Top 10 SQL Databases To Learn in 2025, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How to Filter Null Values to Last While Sorting Ascending in SQL?, How to Become a Freelance Programmer in 2020?, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, SQL Query to Delete Duplicate Rows, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, How To Ace Hackathons, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Basic Query in PL, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, SQL Query to Add an Agent Parameter in a Database, Mongoose Document Model.count() API, SQL Query to Get First and Last Day of a Month in a Database, Languages, Mongoose Document Model.estimatedDocumentCount() API, PostgreSQL – IS NULL operator, PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows, Is it Worth to Learn Python in 2020?, 10 Essential Skills for a Successful Career in Robotics Engineering, Things every final year student should do to get a job in their dream company, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, SQL IS NOT NULL Operator, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, SQL Query to Convert Rows to Columns in SQL Server, Tensorflow.js tf.Tensor Class, SQL LIKE Operator, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, SQL Query to Exclude Null Values, How to SQL Select from Stored Procedure using SQL Server?, SQL Server NULL Values, SQL | NULL functions, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, Top 10 GoLang Projects Ideas for Beginners in 2025, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, How to Insert Rows with NULL Values in SQL?, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, SQL Query to Add Email Validation Using Only One Query, SQL – SELECT from Multiple Tables with MS SQL Server, Top 10 R Project Ideas for Beginners in 2025, 200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025, Difference between MS SQL Server and IBM DB2, SQL Query to Count the Number of Rows in a Table, Top 10 Docker Projects Ideas for Beginners [2025], PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, How to Select Dates Between Two Dates in PostgreSQL?, SQL Query to Convert DateTime to Date in SQL Server, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Rank Improvement Course for GATE Exam: Crack GATE Now!, 10 Tips For Landing Your Dream Internship, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, Top 10 Rust Project Ideas With Source Code in 2025, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, How to Set a Column Value to Null in SQL?, Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0233243704, -0.00347708911, -0.00717391213, 0.0383476727, 0.014429207, -0.0333344787, 0.00610779459, 0.0114994189, 0.00995314214, 0.0261076689, 0.0470068268, -0.0561217219, 0.0383151211, -0.0106693124, -0.0377617143, 0.00840686448, -0.0131352171, 0.00616476266, 0.00113020651, -0.0192063898, -0.0037558258, -0.0237638373, -0.0299001168, 0.0264006481, -0.027995754, 0.0230639447, -0.00352795329, 0.0164312292, -0.045118738, 0.0158045795, 0.0319021381, 0.0230151154, 0.01460825, -0.0383151211, -0.00574564049, 0.0139571857, 0.0240730941, -0.0204108581, -0.00800401904, 0.0141769201, 0.0384453312, 0.00294809951, -0.00759303477, 0.00931835454, 0.00667747576, -0.0067181671, -0.0300954357, -0.012589951, -0.0123295253, 0.00513933692, -0.0262541585, -0.0473323576, 0.0364595875, -0.00022507488, 0.0153895272, 0.0185227729, 0.0442072488, -0.0188645814, 0.0228197947, 0.0196621343, 0.0223152209, -0.00640077377, 0.00375175662, -0.00775173167, 0.00483822, -0.0243823491, -0.0617208742, 0.0455419309, -0.000694298767, -0.00414036028, -0.0102705359, 0.0272470303, 0.0276864991, -0.00392876472, 0.00164597132, -0.0165533032, -0.00238248752, -0.0128096854, -0.0133386748, 0.02078522, -0.00207323208, -0.0146001112, 0.010758834, -0.0120039936, 0.0848336443, 0.0110925036, -0.0333182029, -0.0731796, 0.0295420326, 0.00549335312, -0.0193040501, -0.0312836282, 0.0283701159, -0.041505333, -0.0149826119, 0.00142420258, -0.0145187285, 0.00474869832, -0.0461278893, 0.0105635142, 0.00308238133, 0.0493181, 0.0527687408, -0.0348319262, -0.00235400349, -0.0399102271, -0.0173183046, 0.0175136235, 0.0108564934, 0.0341808647, 0.0100345248, -0.00716984319, -0.00927766319, 0.0391615033, -0.0490576774, -0.0306000113, 0.0349946916, -0.0397800133, 0.00568460301, -0.0017283716, -0.000620036793, 0.0356132053, -0.00570494868, 0.0359712876, -0.0348319262, 0.067971088, 2.45182196e-06, -0.00646587973, 0.0105228228, 0.0222989433, -0.0148035688, 0.0142745795, -0.0383151211, -0.00218920293, -0.00547300745, -0.00680361921, 0.0385104381, 0.0325369276, -0.00939973723, -0.027507456, -0.0138351116, -0.0256844778, 0.00215461501, -0.0212572422, -0.0223640501, 0.0243009664, -0.00727564096, 0.0417983122, -0.0119877169, 0.020475965, -0.035385333, 0.0305674579, 0.0409193747, 0.00834989641, 0.00723088, -0.0237963907, 0.0248543713, 0.0169764962, -0.0274097975, -0.0345715024, 0.024024263, -0.0180670284, -0.00250049285, 0.0148035688, 0.0299652237, 0.0301768184, 0.0403659716, -0.0113203768, -0.0541359782, 0.0473649092, -0.0161545277, -0.0206387304, -0.0258309674, -0.00350150396, -0.00989617407, -0.00768662523, 0.0372408628, 0.00783311483, -0.0370455459, -0.0125736743, 0.00478532072, -0.0174485166, 0.0446304418, 0.0409844816, 0.0280771367, 0.0233243704, 0.0485368259, -0.0139002176, -0.00714949705, -0.0181484111, 0.0208340492, -0.00644553406, 0.04033342, 0.00948112, -0.00204881723, -0.0356457569, -0.0184902195, 0.0148035688, 0.0180833042, -0.00159307232, -0.0436212905, -0.0408868231, 0.015706921, 0.061004702, 0.0104739927, 0.00856963079, 0.0241382, -0.024935754, 0.0550800189, 0.0132328775, -0.0362317152, 0.0297861807, -0.00391045352, -0.011059951, 0.009595057, -0.000231687256, -0.0329275653, 0.000151575849, -0.0310883094, -0.0483089536, -0.0031780065, -0.0129154837, 0.0240079872, -0.0189296883, -0.0314301178, -0.0571308695, -0.0134607498, 0.00837431103, -0.00332856504, 0.000934378651, 0.0100426627, 0.00750758266, -0.00123396982, -0.0357108638, 0.0147628775, 0.00169581838, -0.0125492597, 0.0242033061, -0.052085124, 0.00218309928, 0.0323253311, 0.0024211444, -0.0199551135, -0.0248543713, -0.0142745795, 0.0268889461, 0.0194179863, 0.0625021532, 0.0219083056, 0.0557636358, 0.025733307, -0.0199062843, 0.0142257493, 0.0243335199, -0.000591552758, 0.0419610776, 0.00761744939, 0.00566018838, -0.000383517414, -0.0206387304, 0.0247404352, -0.0150884092, -0.0104414402, 0.0336600132, -0.0239428803, 0.00944856741, 0.0116052171, 0.0168951117, 0.0297536273, -0.034408737, 0.037403632, 0.011002983, 0.0191412829, 0.00181280647, -0.0245288387, -0.0311859678, -0.00104119384, -0.026221605, 0.0138188349, 0.0416029952, 0.0237801149, -0.0504574664, 0.0600932129, 0.00995314214, -0.0371106528, -0.0230802204, 0.00522478903, -0.0388685241, -0.039356824, -0.0281747971, -0.0128666535, -0.0190761779, 0.00499284733, 0.0180181973, 0.0131596327, 0.00532244891, 0.0105553763, 0.00602641189, -0.0185878798, 0.00918814167, 0.000427769439, -0.0224942639, -0.00119734753, 0.017969368, -0.0348644815, 0.00799995, 0.00417087926, -0.0101891523, 0.0174647942, -0.0284514986, -0.0178717077, 0.0156418141, 0.00608744891, -0.0233732, 0.000120675744, 0.0629579, 0.0408217162, 0.0185390487, -0.0331228822, -0.0232918169, 0.0146245267, -0.00620138505, -0.0649110898, 0.0461929962, -0.00194912299, -0.0430678874, -0.016260324, 0.0147954309, -0.0401055478, -0.0234871358, -0.0185227729, -0.00434585242, -0.0250985194, 0.0332368203, 0.0353527777, -0.0368827805, -0.0135909626, 0.0372734182, -0.0236336254, 0.00509457616, -0.018457666, -0.00891143922, -0.0543964021, -0.010758834, 0.0511085279, -0.000318665348, 0.000650046801, 0.00195522676, 0.0372083113, -0.00791856647, 0.00164190214, 0.0153488349, -0.0075360667, 0.0435561873, 0.04095193, 0.0212409645, -0.00396131771, 0.00329601183, -0.0255054347, -0.00269784662, 0.0133468136, -0.0247892644, -0.0511736348, 0.0101077696, 0.00737330038, -0.0280771367, -0.00219937577, 0.000829089375, 0.0154139418, 0.0126631958, -0.0130701112, 0.0155116012, 0.012956175, -0.00533872517, -0.042123843, -0.0116703231, 0.025733307, -0.00883819442, -0.0361991599, 0.0120691, -0.0047609061, -0.00345063955, -0.000533058716, 0.0539081059, -0.0103844721, 0.00650657155, 0.00180161628, -0.00450454932, -0.00418715551, 0.012345802, -0.0399102271, 0.0241056476, -0.019499369, -0.0257658605, 0.00987175852, -0.00344250118, 0.0462906547, 0.00861846, 0.0254566055, -0.0277841594, 0.021452561, 0.0504574664, 0.00810981635, 0.00871612, 0.00259408331, -0.030193096, 0.00569274137, -0.0156173995, 0.00987175852, 0.0131026646, -0.00335908355, -0.0194342621, -0.0253914986, 0.0229337309, 0.0175461769, 0.00335094542, 0.0154383564, 0.0119144721, -0.0190273467, 0.000988803571, -0.0181484111, 0.0365246944, 0.0306976698, 0.00692162476, -0.00974968448, 0.0200364962, 0.0146408034, 0.0132491533, -0.00724308752, 0.0136072384, 0.0139734624, 0.0151209626, -0.000822985661, 0.0285166055, 0.0115319723, -0.0378919281, 0.046518527, 0.050066825, -0.00197964162, -0.0241056476, 0.00553811388, 0.00492367195, 0.00767441746, -0.0196295809, -0.0682966188, 0.017969368, -0.0479834229, -0.00422377791, -0.0113285147, -0.0329275653, -0.0395846963, 0.0430027805, -0.0464534201, 0.0182460696, 0.0239754338, -0.0164149534, -0.00544859236, -0.0160975587, 0.0313975625, 0.0074994443, -0.018278623, 0.0266122427, 0.029525755, 0.0169113893, 0.0213549, 0.0163091552, -0.0583353415, -0.0276376698, -0.008496386, 0.0322602242, -0.0226733051, -0.0240079872, 0.00706404494, 0.0234383065, 0.00398980174, 0.0271330941, 0.0329438411, 0.0181972403, -0.0190599, -0.0237801149, 0.0423191637, 0.0482764, 0.0211595818, -0.0359387361, -0.0209805388, 0.0104658548, -0.00924511, 0.00680768862, 0.0135014411, -0.00935090799, -0.0185064953, -0.032585755, 0.0201829858, 0.00697045447, -0.0196295809, -0.00133671588, -0.0527687408, -0.024935754, -0.00339367148, 0.0327159688, -0.0124353236, -0.0201992616, -0.0392266102, 0.0235685185, -0.0228849016, -0.0258146897, 0.00572529435, 0.0118168127, 0.0104007488, -0.00553404447, -0.0177414957, 0.0379244797, -0.00586364558, 0.00369275408, 0.020296922, 0.0152593143, -0.0271656476, 0.0177414957, -0.0194179863, 0.00677106623, 0.00444758125, 0.0149500584, 0.00222989451, 0.0167649, -0.0144373458, -0.0161463879, 0.0215502195, 0.0132084619, 0.0185064953, -0.0356457569, 0.00213020016, 0.00970899314, 0.00482194312, -0.00348319276, -0.00201422954, 0.00664492277, 0.0121260686, -0.00747502921, 0.0209805388, -0.0152430376, -0.0384127796, 0.0436212905, -0.0130619723, 0.0112389931, 0.0211758595, -0.00856149197, 0.0331879891, 0.0109215993, 0.0233732, -0.0107344184, 0.0181646869, -0.00935904589, 0.0145105906, 0.00316986814, -0.00776393898, 0.00885447115, 0.0370129906, -0.0264983065, 0.00261646369, 0.00683617266, -0.0405612923, -0.0127364406, -0.00854521617, 0.0225430932, 0.012044685, 0.00271412334, 0.0140467072, 0.0518247, -0.0124271857, -0.00544452341, -0.00805284828, -0.00452489499, -0.00125228101, -0.0302744787, 0.00711694406, -0.000458542374, 0.0109948441, -0.016683517, 0.0296071377, 0.0356457569, 0.0024231791, -0.0103681954, 0.036361929, 0.025245009, 0.00502946973, 0.0197109636, 0.0010773075, -0.0154464953, 0.0215176679, -0.00215461501, -0.0216967091, 0.0333995856, -0.0448583141, -0.0208340492, 0.0211595818, 0.0307465009, 0.0242195837, -0.000668866618, 0.00830920506, -0.000646994915, 0.0215664972, 0.0132817067, 0.0171880908, 0.00990431197, -0.0125736743, -0.0052451347, -0.0213711783, -0.00495622493, -0.0156011228, 0.0166346859, -0.00314545329, -0.0177414957, 0.048471719, -0.00122583157, 0.00853707734, -1.83906523e-05, -0.00509457616, 0.00209154328, -0.0520200171, -0.00667340681, -0.00254932279, 0.00979851373, -0.0136153772, -0.0372734182, 0.0231941566, 0.0418308675, 0.0126306424, -0.015405803, -0.010205429, -0.0345063955, -0.0208014976, -0.0219734125, -0.00585957663, -0.0104170246, 0.00113020651, -0.0149012282, -0.0186367091, -0.00290740794, -0.00360933645, -0.0191738363, -0.0176438354, 0.0244962852, 0.0111494716, 0.160812825, -0.00845569465, 0.0153813884, -0.00983106717, 0.013509579, 0.0208503269, 0.0113203768, 0.0168462824, -0.00182704849, 0.0145756966, 0.0309255421, -0.0280934144, -0.0170904323, -0.0166021343, -0.00631125225, 0.000736007583, 0.050066825, -0.00045269297, -0.00169174932, 0.0102379825, 0.00877308846, -0.0043702675, -0.00581888482, 0.0210130922, 0.00618917774, 0.0291839465, 0.00726343365, 0.0311696921, -0.0472998023, 0.00233976147, 0.0195481982, 0.00553404447, -0.0190761779, -0.00935904589, 0.00621359283, -0.0163091552, -0.013200324, -0.0102461204, -0.0172694735, -0.014917505, 0.00631939061, -0.0449559726, -0.00734481635, -0.0191412829, -0.000732955697, 0.0050498154, 0.00796332769, -0.00927766319, -0.00179856445, 0.0345715024, -0.00978223793, -0.00712508243, -0.00513933692, -0.00233976147, -0.0454117171, -0.0147954309, -0.0272470303, -0.0195970275, -0.00702742254, -0.00403252803, 0.0265959669, -0.00829292834, 0.0369153321, -0.00447606528, -0.00118920917, -0.0306488406, 0.0104007488, 0.0165777188, -0.00030238874, 0.000219606954, -0.00425226195, 0.00655947, 0.00758896535, -0.0081057474, -0.00640484272, 0.003438432, -0.0189947933, -0.013688622, -0.00883005653, 0.0408217162, -0.0197760705, -0.0496110804, -0.00911489688, 0.00754827401, 0.00683617266, -0.016813729, -0.00780463032, 0.0256356467, -0.0245939456, 0.0263680946, 0.00100355421, 0.0106286211, -0.0152755901, 0.0194830913, 0.0137048988, -0.00863473676, 0.0194342621, 0.0272144768, -0.0188645814, -0.0198086239, 0.00954622682, 0.0137618668, -0.000837736356, 0.0199225601, 0.0276376698, -0.0183111764, -0.000258263899, 0.0034201208, 0.0038941768, 0.0334646925, -0.0358085223, -0.0156906433, -0.00441909721, -0.00550149148, -0.019499369, 0.00273243454, 0.0184902195, 0.0145187285, 0.0322927758, -0.00144658296, 0.0198411774, 0.0468115062, -0.018457666, -0.00121362414, 0.00306203566, 0.0256356467, -0.00271005416, 0.0091311736, 0.0129154837, 0.0549823605, -0.0130782491, -0.0233243704, -0.0146814948, 0.0110518122, -0.0241544768, -0.0216641575, 0.00248014717, -0.0225105397, 0.00865101349, -0.0111576105, 0.0245613921, -0.00467545399, -0.00996941887, 0.0157801658, -0.0164312292, -0.00288909674, 0.0435887389, -0.00755641237, 0.0172206443, -0.0131596327, 0.017302027, 0.0195319224, -0.0187831987, -0.0130131431, -0.00493587926, -0.0261076689, -0.0168300066, 0.0262704343, -0.0333019271, -0.0127689941, -0.00399794, -0.0429702289, -0.0254891571, -0.0152430376, -0.0359712876, 0.0115726637, 6.96842e-05, -0.00950553548, 0.00620952342, -0.0164393671, 0.0219896883, -0.00482601253, -0.0119633023, 0.00583923096, 0.0219734125, -0.0260262862, 0.0236336254, 0.0213874541, -0.0356783122, 0.00317393732, -0.0333995856, -0.0154790478, 0.0371757597, -1.273199e-05, 0.0111901639, 0.0271493718, 0.000637330697, 0.0138839409, -0.0148279844, -0.00829699729, 0.0120284082, -0.0135502703, 0.0175136235, -0.00287688943, 0.0109215993, -8.01114e-05, 0.0165777188, 0.030990649, 0.0226407535, -0.00661236933, 0.0233080927, 0.00767034851, 0.0142745795, -0.0119226109, -0.00100304559, -0.00352388434, 0.0475602299, 0.0050783, -0.0127364406, -0.0302582029, 0.000849943783, -0.0315115, 0.0174159631, 0.043523632, 0.00788601302, -0.00108137669, 0.0283212867, 0.0228686258, 0.00241097156, -0.018701816, 0.00421564, 0.0274911802, -0.0247078817, -0.0125980899, -0.0199388377, -0.010205429, -0.0285817124, -0.00779242301, -0.00910675898, 0.00596537441, 0.0183762833, 0.00294606481, -0.00324921659, 0.011857504, 0.0137618668, 0.00103203824, -0.0227872413, 0.0237638373, 0.00672630547, -0.0174159631, 0.00350964209, -0.0166184101, -0.0117679825, -0.0324067138, 0.00847197138, -0.00281992112, -0.00344657036, -0.0162196327, 0.00919628, -0.0155034633, 0.00209154328, 0.00518409768, 0.017302027, -0.0396498, -0.014486175, -0.0166997928, 0.00413425686, 0.000259026856, -0.0027751606, -0.0296071377, 0.0291839465, 0.000591044081, -0.00493994867, 0.0142501649, -0.0162847396, 0.0101647377, 0.00488704955, -0.0275725629, 0.00739771547, 0.00322887092, -0.0428400151, 0.0274097975, -0.00361950928, -0.0282887332, -0.0330415, -0.0114343129, -0.0289886277, 0.00473242206, 0.0450536348, -0.0198900066, 0.0270354357, -0.0128910681, 0.00430109212, -0.0399102271, -0.000496436318, -0.0278980955, -0.00182399666, -0.0067547895, 0.0105228228, 0.0223640501, -0.00426040031, 0.0214851145, -0.00703963032, -0.000885548827, 0.058986403, -0.0613627881, -0.00411594566, -0.0052085123, 0.000540688343, -0.00130416267, -0.0101403231, -0.0401381, 0.0175136235, 0.0109785674, 0.0194179863, -0.0020111776, -0.00828072056, -0.0256519243, 0.0341808647, 0.0493832082, -0.014429207, 0.0138839409, -0.0274260733, -0.0213223472, -0.011857504, -0.0229337309, 0.0137211755, -0.0151779307, 0.0112552699, 0.0280283075, 0.000521359907, -0.000927257643, 0.00533058681, 0.0169764962, 0.008496386, -0.0170416012, -0.00302541326, -0.032585755, -0.0101077696, 0.000893687131, 0.0208503269, 0.00730005559, -0.00483415043, -0.00160527986, -0.0344738401, -0.00225430937, -0.0137944194, -0.0118249506, -0.00051195, -0.00648215646, -0.0154546332, 0.0300628822, -0.0675804466, 0.045118738, -0.0118168127, -0.0244149026, 0.0285166055, -0.0206061769, -0.00427260809, 0.0192389432, -0.021582773, -0.0216804333, 0.0151128247, -0.0187506452, 0.00559101254, 0.00762965716, -0.0285817124, -0.00359305972, -0.00886261, -0.0056357733, 0.00839058775, 0.0501319319, 0.0311696921, -0.00319835218, -0.00304982811, -0.000822477043, 0.036361929, -0.0245288387, -0.00451675709, -0.01772522, -0.0366223529, 0.0261076689, 0.00465917727, -0.0223966036, -0.00700300792, -0.00141301251, -0.0378593765, -0.00861032214, 0.00293996115, -0.000340537023, 0.000205492091, 0.0322439484, 0.0178879853, 0.00543231564, 0.0149256438, -0.00764593342, -0.00714949705, -0.0117110144, -0.00874053501, 0.00735702366, -0.0215013903, 0.0167974532, 0.0068280343, -0.000143564714, -0.0507178903, -0.00143844471, 0.0192226656, 0.00924511, -0.00469173025, 0.0274586268, 0.00886261, 0.00126448844, -0.028484052, 0.000899790903, 0.0153081436, 0.00826037489, -0.0108320788, 0.0181809645, -0.0178554319, 0.0218920298, 0.0107344184, -0.0162196327, 0.00733260904, -0.0258635189, 0.0181321334, 0.0302582029, 0.0242846888, 0.0067181671, 0.00585550722, 0.004919603, 0.00345063955, -0.0150558567, 0.0165451653, 0.0307953302, -0.0155360159, -0.0130538344, -0.035385333, -0.0221524555, -0.00403863192, -0.00585957663, -0.0207201131, -0.0206712838, 0.00916372705, -0.00459407084, 0.00480159745, -0.0316254385, -0.0246427748, 0.00433771452, 0.00986362062, 0.0200039428, 0.0212084111, -0.0129805896, -0.00986362062, -0.022250114, -0.0133142602, 0.00933463126, -0.00124414277, -0.0134200575, -0.00174566556, 0.0204922408, 0.0419610776, -0.0193528794, 0.00470393803, 0.00854521617, 0.076109387, -0.00630311389, 0.000211977298, -0.0095218122, -0.0199551135, 0.00481787417, -0.00683617266, -0.00617697043, 0.0400078855, -0.0242521372, 0.0507504418, 0.00302134408, 0.00774359331, 0.0128666535, -0.0174322408, 4.26783936e-06, -0.0180670284, -0.00751572056, 0.0362968221, -0.022559369, -0.0094567053, 0.00230720825, 0.00428074598, -0.0100508016, 0.0149500584, 0.00345063955, 0.0222338382, 0.0196621343, -0.0364595875, -0.0158778243, 0.0249845833, -0.0063153212, -0.00211799284, -0.00473242206, 0.00670596, 0.0352551192, -0.013631654, 0.0132735688, -0.00993686542, 0.0139002176, -0.00974968448, -0.0158941019, -0.0151697928, 0.0375989489, -0.0150721334, -0.00599792786, -0.0106123444, -0.00472021429, -0.0135746859, 0.0178554319, 0.00401828578, -0.000605286099, 0.00931835454, -0.0396823548, 0.00874053501, 0.0414402261, 0.00192267355, 0.00186468812, -0.0179368146, 0.00314545329, 0.0118412273, -0.0195644759, 0.0367525667, -0.0308929905, -0.00267343177, 0.00384331262, -0.0135177178, -0.0088870246, 0.00596944382, -0.0162521861, -0.0167649, 0.0337576717, -0.000374616153, 0.0113610681, -0.00583923096, 0.0208991561, 0.00476904446, -0.00863473676, 0.00445165066, -0.0286142658, -0.0115563869, 0.0150558567, -0.020964263, 0.000664288818, -0.00133671588, -0.0170253254, -0.0102542592, 0.0135584092, -0.0133305369, -0.0128341, -0.00426446972, 0.00443944288, -0.0146245267, 0.00632752897, -0.0116947386, -0.0123051107, 0.0223152209, 0.0223640501, 0.000560016837, 0.0378593765, 0.00265512057, 5.42023554e-06, 0.0113773448, -0.00746689085, 0.00141606433, 0.0178554319, 0.0136967599, 0.0215176679, 0.00310476171, 0.00747909863, 0.0226733051, 0.00887074787, 0.0350923538, 0.00787380617, 0.0349295884, -0.0223640501, 0.0129398983, 0.029037457, 0.00161036628, 0.00397352548, -0.0344738401, 0.0349295884, 0.021582773, -0.0122969728, -0.00615255535, 0.0300791599, -0.00147099781, -0.0119144721, -0.0116214938, 1.08166287e-05, 0.00744247623, 0.0232592635, -0.00059816509, 0.0199713893, -0.00426040031, 0.00902537536, -0.0201829858, 0.0231941566, 0.0142176114, 0.00190843153, -0.0242033061, -0.010758834, -0.00218106457, 0.00544859236, 0.00885447115, -0.0020478, -0.032585755, 0.00345267402, -0.00815457758, -0.00276091858, -0.0254077744, -0.0127445785, 0.00399387116, 0.0167974532, 0.0231453273, -0.0103437798, -0.0102135679, 0.00347302, -0.000774664513, -0.0102623971, 0.01809958, 0.0433934182, 0.00376192946, 0.00400607847, -0.0183925591, 0.015340697, 0.0152267609, 0.014673356, 0.0113529293, -0.00748723652, -0.0105472375, -0.0192877725, 0.00204474805, -0.00134790607, 0.0104170246, -0.00918000285, 0.0293467119, 0.0113773448, 0.0132817067, 0.00944042858, 0.00534686353, -0.0114098974, 0.013509579, 0.00352795329, -0.0136153772, -0.0350598, 0.0120121315, 0.0217780937, 0.00405083923, 0.0306000113, -0.0204922408, -0.00860218424, -0.00613220967, -0.0108971847, 0.0024211444, 0.0248869229, 0.0108727701, 0.000804674462, 0.00195726124, -0.00433364511, -0.0372734182, 0.00442723557, -0.00017293889, 0.0129073448, 0.000920645252, -0.0267912857, -0.0140222926, -0.0020691629, -0.0139002176, -0.0152755901, -0.000513221603, 0.00100050238, -0.00597758172, -0.0411146954, -0.00187689567, -0.026465755, 0.00848010927, 0.000531024125, 0.000398268079, -0.0241056476, 0.0115075577, -0.0126876105, 0.00963574834, 0.0070233536, -0.00217292621, -0.00498470943, 0.022429157, -0.019190114, 0.00941601396, 0.00974968448, -0.027507456, 9.75960302e-06, -0.000133264679, -0.00450048037, 0.00760117313, -0.0147872921, 0.0090660667, -0.0123946322, 0.00389214233, -0.0127201639, 0.0307953302, 0.0397474617, -0.00135807891, 0.00105289265, -0.000831632584, -2.35406715e-05, 0.0239917114, -0.0281747971, -0.0149907498, -0.000120357836, -0.00287688943, -0.0274911802, 0.0195970275, -0.0170904323, 0.00712101301, -0.00203864439, 0.00976596121, 0.0278492644, -0.0288584139, -0.00680361921, 0.0116621852, 0.019678412, -0.0023194158, 0.00900096074, 0.0213549, 0.0112715466, -0.0305186287, -0.0145512819, -0.0115156956, 0.0161463879, 0.0178391561, 0.00901723746, 3.82754442e-05, -0.0147954309, -0.00645774184, -0.00746689085, -0.00159002049, 0.00196743431, 0.00584736932, -0.0195644759, -0.0110436743, 0.0366874598, 0.0176763888, -0.0217129868, -0.00209154328, -0.0286468193, -0.00221972144, -0.0233732, 0.00197252072, -0.0143966544, 0.00512712961, 0.0231941566, -0.0042115706, 0.0101159075, -0.00741806114, 0.0218106452, -0.00246793963, -0.0113447914, 0.00197353796, -0.000972018286, 0.00892771594, 0.00387790031, -0.0222338382, -0.0114750043, -0.0184902195, -0.0229337309, 0.0120772384, -0.0377291627, -0.00772731658, 0.00690941745, 0.0102623971, -0.0287607554, 0.0199062843, -0.00527768815, -0.00667340681, -0.0114017595, 0.00138452847, -0.00773138553, 0.000669375237, 0.0156580899, -0.0157883037, 0.00369478855, -0.000894195808, 0.00791042857, -0.0265471376, 0.00308441604, -0.014242026, 0.000265257753, -0.00935090799, 0.0134607498, 0.00917186495, -0.0254891571, -0.0118900575, 0.00909048226, -0.00244962843, -0.0117191533, 0.0155116012, -0.0104088867, -0.00309458887, -0.0127934087, -0.0251147971, -0.030502351, -0.00684838, 0.018457666, 0.0397800133, -0.0140873985, 0.0155685693, 0.00498470943, -0.000733464374, 0.0052817571, -0.0114994189, 0.0233569238, -0.00821968354, 0.0174485166, 0.00677106623, 0.0181646869, 0.000904368644, 0.0300628822, -0.0181321334, 0.0189947933, -0.00762558775, 0.0312022455, 0.00980665255, -0.0154627711, -0.00735295471, -0.0280934144, -0.0137618668, -0.0199388377, 0.0171229839, 0.0187343676, -0.0239754338, -0.013200324, 0.030193096, 0.0173834097, -0.00485449657, 0.0295745842, 0.0238940511, 0.0174159631, 0.0252124555, -0.0128585156, -0.0145024518, -0.0282236263, 0.00117089797, 0.0171880908, -0.00733260904, 0.00947298203, -0.00996128, 0.00853707734, -0.00389010785, -0.0100345248, 0.0236336254, -0.0301768184, 0.0253426693, 0.0148849525, 0.00276905694, -0.00795112, -0.0145187285, 0.0027385382, -0.00681582699, 0.00711287465, 0.0160487294, -0.0131596327, -0.00630311389, -0.000730921165, 0.0147140473, 0.0135991005, 0.007304125, -0.00407525431, 0.0139653245, -0.00274260738, 0.00410984177, -0.00139470131, -0.00835803524, -0.00733260904, 0.0181972403, 0.0155116012, -0.000140894335, 0.00403049355, -0.0105797909, -0.00287485472, -0.00831327401, -0.00131433562, 0.0358410776, -0.00989617407, -0.0052451347, -0.00291961548, 0.03289501, 0.0178717077, -0.010636759, -0.0056723957, 0.00155034626, -0.000678022159, 0.0170578789, -0.00545673072, -0.0144454837, -0.00664085336, 0.00499691674, -0.00739364605, 0.00419936329, 0.0162277725, -0.0050416775, 0.0122969728, -0.0198249, -0.00414646417, -0.0172206443, -0.00550962938, 0.0116459085, -0.0116947386, -0.00341198267, 0.00250863121, 0.00446792692, -0.00504574645, 0.00502540078, -0.0062339385, -0.016504474, 0.00891143922, -0.0175624527, 0.00432143779, 0.0174322408, -0.00430109212, 0.00356864487, -0.0235522427, -0.0130375577, 0.0241382, 0.0321462862, -0.00896026939, 0.0155360159, 0.0212572422, 0.00206305925, 0.00237434916, -0.00256153, 0.00506202318, -0.0113610681, 0.00700300792, 0.0156255383, -0.0259286258, 0.00262256735, 0.00695824716, 0.0193040501, -0.0052451347, 0.00638449704, 0.0227872413, -0.00914745, 0.0178717077, 0.0332856514, 0.0378919281, -0.00446792692, 0.0137293134, 0.012956175, 0.012223728, 0.0294932015, -0.0111494716, -0.0187994745, -0.00612814026, -0.0105472375, 0.00894399267, -0.010815802, 0.000396487827, -0.00292165, -0.0130456965, 0.00974154565, -0.0129480362, 0.0350272469, 0.0187180918, -0.00884633325, 0.0170741547, -0.0220222417, -0.00134994066, 0.00567646464, -0.00148117077, 0.000274413323, -0.00603048084, -0.0159917604, 0.0223477744, 0.00738550816, -0.0189785175, 0.011247132, -0.0153325582, -0.00457779411, -0.00555439, 0.0161789414, 0.00769883255, -0.009595057, -0.0160080381, 0.0146652181, -0.00220141024, 0.0104088867, 0.0214851145, -0.0125248451, 0.00629497552, 0.000744145887, -0.00250049285, -0.00503353914, -0.0212897956, -0.0100263869, 0.00111189531, -0.0143152708, -0.00767441746, -0.00117394992, -0.0133061213, -0.00480159745, 0.016626548, -0.0194342621, 0.00042293733, -0.0165126119, -0.00754013564, 0.00429295376, 0.00804877933, -0.00227262056, -0.00415053358, 0.00156764023, 0.00772324763, 0.00693790149, -0.0280608609, 0.0106937271, -0.00049109559, -0.0233569238, 0.00769069418, -0.00256153, -0.0139490478, 0.021582773, 0.00308238133, -0.0155929839, -0.0119877169, 5.81443455e-05, -0.00690127909, -0.000951163878, -0.00958691817, 0.00651471, -0.0163254309, -0.0231941566, 0.0103193652, -0.000505083299, 0.016317293, 0.00712101301, 0.0192389432, 0.0117761213, 0.00285247434, 0.0103519186, -0.00324718212, 0.0137455901, -0.00623800745, -0.03558065, -0.00875681173, 0.00778428465, 0.001238039, 0.0273609664, 0.00595723605, -0.0144617604, -0.0108076632, 0.0078900829, 0.00874053501, -0.0132084619, -0.00452489499, 0.000860116677, -0.00217699539, -0.00935090799, 0.0210456457, -0.00413222238, -0.0126062278, 0.0114750043, -0.0211107526, 0.00430109212, -0.00917186495, 0.00193488097, -0.0213223472, -0.00859404542, -0.00497250166, -0.0141362287, -0.0155116012, -0.0130294198, -0.0151779307, -0.000589518168, -0.0160894208, -0.00211188896, -0.00217903, 0.0200364962, -0.018278623, -0.00673444383, -0.0152674522, -0.002246171, 0.00337536028, -0.00257577212, -0.0120853763, 0.00779649196, 0.00384941627, -0.00293996115, -0.008496386, -0.0256193709, -0.0197597947, -0.00358492159, -0.00300303288, 0.0100019714, 0.026351817, -0.00816678442, 0.028239904, -0.0211595818, -0.0267587323, 0.000577819359, 0.0158452708, -0.00596130546, -0.0141362287, 0.0208828803, -0.0187831987, -0.00811795518, 0.0165207498, 0.00378634431, 0.00810167845, -0.00692162476, 0.0075360667, 0.0333182029, 0.0132817067, -0.00143641012, -0.00570087973, 0.0243009664, -0.033367034, -0.00602641189, 0.0130050043, 0.0237312857, 0.0123132486, 0.0299489461, -0.000105988649, -0.0199225601, 0.0190761779, 0.000645469, -0.00161138352, 0.0170904323, 0.0164719205, -0.00672630547, -0.00756048132, -0.00134078506, -0.0142745795, -0.00819526892, 0.0120772384, -0.0217129868, 0.00780056138, 0.0209317096, -0.00326142414, -0.0254891571, 0.0112878233, -0.0211921353, -0.0234871358, 0.0118819186, -0.00642518839, 0.00745468354, -0.0130131431, -0.015096548, 0.00185553252, 0.019743517, 0.00752385892, 0.00339367148, 0.00996128, -0.0156662297, 0.00143335818, 0.000370801339, -0.0472347, -0.0189459641, 0.0173996873, 0.0109297382, -0.0100670783, 0.0338553302, 0.00182603125, -0.00783718377, 0.000678022159, -0.000142038785, 0.020964263, 0.000888092094, 0.00222989451, 0.0191087294, 0.003912488, -0.013021281, 0.00883005653, 0.0193854328, -0.00957878, -0.00258797966, -0.0364595875, -0.00195319229, 0.00893585384, 0.0129154837, 0.00119531294, -0.00628276821, -0.00355440285, -0.0203457512, -0.016374262, -0.0395195894, -0.0130782491, -0.00841500331, -0.022250114, 0.0148442602, -0.0098554818, -0.00141199515, 0.0316579901, 0.00746689085, -0.0287933089, -1.62130218e-05, 0.0146814948, 0.0220547952, -0.0103356419, -0.013875803, 0.015959207, 0.00301320595, 0.0176275596, -0.0163986757, -0.0032797351, 0.00520037441, 0.0258146897, 0.0267587323, -0.024935754, -0.0172206443, 0.0077802157, 0.00719832722, -0.0363944806, 0.0271330941, -0.00810167845, 0.0236173496, -0.00210782, 0.00514747528, 0.00465917727, -0.00440689, 0.0122481426, -0.00457779411, 0.0045655868, -0.000539671048, 0.00869170483, 0.0104739927, -0.0291351173, -0.00994500332, 0.00315359165, -0.00958691817, 0.00431329943, 0.000100329991, -0.0171392616, -0.000968457782, -0.0123051107, 0.00280364463, 0.019499369, -0.00844755583, 0.00214037299, -0.00474869832, 0.00538348593, -0.0164881982, 0.000320191262, 0.00100965798, 0.00173549261, -0.00136214809, -0.0210619215, -0.0121748978, 0.0254403278, 0.00784532167, 0.00293589197, -0.0239428803, 0.0364595875, 0.0011047743, 0.000565103255, 0.0152918668, 0.00914745, 0.00719018886, -0.00145268673, 0.00967644, -0.00633159792, -0.00625021476, -0.0168788359, -0.00449641095, -0.014185058, 0.0180670284, -0.0262053292, -0.0125492597, -0.00206407649, -0.00657167798, -0.0049277409, 0.0063153212, 0.000625123212, -0.0200853255, -0.0017558384, -0.0176438354, 0.00375379133, -0.0085045239, 0.00657167798, 0.00775986956, -0.00721867289, 0.0325206481, -0.0232592635, 0.0105797909, -0.00354626449, -0.0193040501, -0.0310557559, -0.00690127909, -0.0050864378, 0.00270395051, -0.0118819186, 0.00862659886, -0.00218920293, -0.0221036244, -0.0337576717, 0.00558694359, -0.00135909626, -0.0126225045, -0.0137781436, 0.00224006735, 0.000815864652, -0.0208014976, 1.89787715e-05, -0.00166428252, -0.0175299, 0.00176702859, 0.00821968354, -0.00951367337, -0.00154729444, -0.0132979834, -0.00583516154, -0.00152186223, 0.0229337309, -0.0129236216, 0.00885447115, 0.00957878, -0.00814237, -0.0154139418, -0.0151860695, 0.00436212914, 0.0034201208, -0.0171880908, -0.0206712838, -0.0170904323, 0.00609965622, -0.00776800793, -0.00505388482, -0.00513119856, -0.0032980463, -0.00759303477, 0.00602641189, -0.0215664972, -0.0339529924, 0.00546486909, -0.00541603938, 0.0062258, -0.0069908, -0.0121342065, 0.00657981634, -0.0219083056, -0.0100101102, 0.0103844721, 0.0138106961, 0.012467877, 0.00233365782, 0.0178391561, -0.00548114534, 0.0230802204, 0.0314301178, 0.00145370397, -0.0148930904, 0.00345063955, 0.0236987323, -0.00418308657, -0.00346895074, 0.00132247387, 0.0103600565, 0.000849435164, 0.00285450905, -0.0223152209, -0.00577412453, 0.0208014976, 0.00594909769, 0.0198574532, 0.00178533967, -0.0291025639, 0.00321869785, -0.002246171, 0.0257658605, -0.00952995, 0.0168462824, 0.00795112, 0.0262378808, 0.00171616417, 0.00443537394, -0.0192877725, 0.0139002176, 0.0158696864, -0.00529803382, 0.00653912453, 0.016374262, 0.0040894961, 0.0189947933, -0.0197109636, -0.0164149534, 0.0262704343, -0.0210619215, -0.0105309607, 0.0151291015, 0.0327485241, 0.00467952294, 0.000353761774, -0.00436619855, -0.006876864, 0.00633566733, -0.00910675898, -0.000629701, 0.00614034804, 0.0113529293, 0.0114261741, -0.00260629086, -0.000605794776, -0.010571653, 0.00332856504, 0.0164556447, 0.00625428418, -0.000179932744, 0.00955436472, -0.00548114534, -0.00731226336, -0.000553913123, 0.025424052, -0.0248706471, 0.00167954178, 0.0165451653, -0.00185451529, -0.00830106717, 0.0132084619, 0.0191738363, -0.0122400047, -0.0076947636, -0.0171880908, -0.0237475615, 0.0243660733, 0.00771104, 0.0218594763, -0.00756861968, -0.00552997552, -0.0210130922, 0.0142257493, 0.0107913865, -0.0194505397, -0.02078522, 0.00214851135, -0.0204922408, 0.020964263, -0.0194342621, 0.00548928371, -0.00581481587, 0.000994398608, -0.0126957493, 0.0034954, -2.27936e-05, -0.00109154964, -0.00828072056, -0.00231331191, 3.17425511e-05, 0.0122725572, -0.00109663606, -0.00565611897, -0.00567646464, 0.0113936206, 0.00333059952, -0.00587178394, 0.0104821315, -0.0140304305, -0.000619019498, -0.0145756966, 0.00751165161, -0.00416681, -0.0103844721, 0.0112959612, -0.0165777188, -0.00201626401, 0.00579447, 0.00606303429, -0.00437840587, -0.0228197947, 0.0113366526, -0.0169276651, -0.00350557314, 0.00358695607, 0.00936718378, 0.00154932903, -0.023047667, 0.00757675804, -0.0106693124, -0.00518409768, 0.00836617313, 0.00971713103, -0.000993381371, 0.0041261185, -0.00412204955, -0.00720239617, 0.0135014411, -0.00284433621, -0.01039261, 0.0348644815, -0.0146652181, -0.00198269356, -0.0120528238, -0.00165105774, -0.00737737, 0.00466731563, -0.0209968165, -0.0139409089, 0.0111494716, 0.0142094735, 0.0128747914, 0.0205573477, 0.0278492644, -0.00217496091, 0.00716984319, -0.010148461, 0.0155929839, -0.0124027701, 0.0225919224, 0.00209154328, -0.00784939062, 0.00543231564, 0.0220385175, 0.00116479432, -0.00148117077, -0.00640077377, -0.0164068136, -0.00188503391, 0.022071071, 0.00560728926, 0.00423598569, -0.00201219483, 0.000637839315, -0.00884633325, -0.0010447544, -0.0144698983, 0.0105391, 0.00878936518, -0.00487077283, -0.00897654612, -0.0305511802, -0.0174322408, 0.0123539409, -0.00367851183, -0.01039261, 0.0082440991, 0.0220385175, 0.0129154837, -0.000196717985, 0.00875681173, 0.00885447115, 0.0132572921, 0.00395114487, 0.00741399219, -0.00535093294, -0.00478125177, 0.000444554666, 0.015405803, -0.00245369761, 0.00316376449, -0.019987667, 0.0171229839, 0.00445571961, 0.0109378761, 0.0188971348, 0.00791449752, -0.0141362287, 0.00633973628, 0.0143885156, 0.0010055888, -0.00464290055, 0.0108076632, -0.0186367091, 0.00676699728, -0.0119551634, 0.00576191675, -0.00750351325, -0.00955436472, -0.0207689442, 0.0121667599, 0.00168055913, 0.0128666535, 0.0260913931, -0.00388400396, -0.0098554818, 0.0130863879, 0.0113285147, -0.0231290516, 0.00752792833, -0.0113203768, -0.0240568165, -0.0107425572, 0.009839206, -0.00971713103, 0.0147954309, 0.0132898455, -0.00260629086, -0.00881378, -0.00446792692, -0.0173183046, -0.022429157, -0.00911489688, 0.0109053226, -0.00276702223, -0.00323293987, 0.00730819395, 0.00203660969, -0.0023011046, -0.014730324, 0.000736516202, -0.00916372705, 0.00489518791, 0.0128341, 0.00178533967, -0.0155604314, 0.0192714967, -0.0148035688, 0.0222826675, -0.00732447067, -0.000389366818, -0.00229093176, 0.00826444477, -0.0134119196, -0.00490739523, -0.00887888577, -0.0131108025, -0.0195481982, -0.00646994915, 0.00628683716, -0.0194342621, -0.00790636, 0.00558694359, -0.0216641575, 0.000194683409, 0.00355033367, 0.00277922978, -0.00485042715, -0.0119551634, 0.0242195837, 0.0169764962, 0.00790636, -0.00182399666, -1.79614835e-05, 0.00291351159, 0.00621766178, 0.0223152209, 0.0029338575, -0.0115970783, 0.00572529435, 0.00957878, -0.00585957663, -0.0180344749, -0.00443537394, -0.0295583084, 0.00858590752, -0.00759710371, 0.0308767129, 0.00894399267, -0.0168300066, 0.00742213, -0.0179368146, 0.0117842592, -0.00715356646, 0.0031596953, -0.0112878233, -0.00310679642, 0.0123702176, 0.0102623971, -0.000538653752, -0.020655008, 0.00417087926, 0.00293589197, -0.0092125563, -0.000693790149, -0.0171229839, 0.0171555374, -0.00552997552, 0.00701114628, 0.00524920411, -0.0161870811, 0.00967644, -0.0146326646, -0.0171880908, -0.013444473, -0.0140955374, -0.025065966, 0.021761816, 0.0230151154, -0.00206305925, 0.00613220967, -0.00561542762, 0.00896026939, 0.00821968354, 0.00571308704, -0.00620545447, 0.00138045929, -0.000867237686, -0.00320445583, -0.00185146346, 0.000103318271, -0.00737330038, 0.0164556447, 0.000809252262, -0.000390638423, -0.000243513219, 0.000138096788, -0.0132572921, -0.0140711218, -0.00455744844, -0.00635194359, 0.0162033569, -0.0181321334, -0.00300303288, 0.000669883855, -0.0062339385, 0.00314138411, -0.000675987627, 0.0116866, 0.00143946195, -0.000259281165, -0.000761439791, 0.008069125, 0.0133793661, 0.00386976195, -0.00109154964, 0.0125818131, -0.00872425828, 0.0107100038, -0.00452082604, 0.0256682, 0.0107100038, -0.0162684638, 0.00330618466, -0.000582397159, -0.00866729, 0.0193366017, -0.00735295471, 0.00134281965, 0.000956250355, -0.00409356551, -0.0088870246, -0.0115238335, -0.0139897391, -0.024024263, -0.00931835454, 0.0153651116, 0.0131921852, 0.0223966036, 0.0123864934, 0.0140629839, -0.0042848154, -0.0224454328, -0.00666119903, -0.0090660667, 0.0108483545, 0.0184251126, -0.00975782238, -0.00787787512, 0.000861642591, 0.0174485166, -0.0125736743, -0.0121260686, -0.0104902694, 0.019743517, 0.00232145027, -0.00621359283, -0.00563984225, 0.00861846, -0.00748316757, 0.000495927699, 0.00723901857, -0.0146408034, 0.0232429877, 0.000996433198, 0.00219327211, -0.00295827235, -0.0156662297, -0.012899207, -0.0117598446, -0.00677920459, 0.0196133051, -0.0152837289, 0.00299692922, 0.00768662523, -0.000649029505, 0.0114180362, 0.000582397159, -0.0229011774, -0.00887888577, 0.00361747458, 0.00664899172, 0.0311696921, -0.0155767072, 0.0046022092, 0.00607117219, 0.0053672092, 0.000302134402, -0.015828995, 0.00571715645, 0.0128829302, -0.00260425615, 0.00732447067, -0.00538348593, 0.00146082498, 0.00458593247, -0.00531431055, -0.0116703231, -0.00353609165, 0.000717696385, -0.0137130367, 0.00237434916, -0.00695824716, -0.00254728808, -0.0139083564, 0.00556659792, -0.0104739927, 0.021452561, -0.0220059659, -0.0182949, 0.00953808893, -0.00706811436, 0.0211270284, 0.0158534106, -0.0195807517, -0.0254077744, -0.0124922916, -0.00552997552, 0.00193488097, -0.0125492597, -0.00928580109, -0.00348522724, 0.0121993124, 0.00405897759, -0.00866729, 0.00535500189, -0.00780056138, 0.00195827871, 0.00865915231, -0.0193854328, 0.000708540785, 0.0222989433, 0.00280771381, 0.026709903, 0.00701928418, -0.00143539277, -0.0314626694, 0.00350964209, -0.0181484111, -0.00495215598, 0.00676699728, -0.0178879853, 0.00946484413, 0.0209479854, -0.012223728, 0.00314138411, 0.00152898324, 0.00992058869, 0.00541603938, 0.0262053292, 0.0305837337, 0.00954622682, -0.0168625601, -0.0125980899, 0.00663678441, -0.0221361779, -0.00557066686, -0.000991855399, 0.00520037441, -0.0144210691, 0.00602641189, -0.015527878, 0.0184739418, 0.0219245814, 0.0123702176, -0.00139571854, 0.00499284733, 0.00418715551, 0.00348522724, -0.0050416775, -0.0207038373, 0.00554218283, -0.00620952342, -0.0152104842, -0.00780463032, 0.0139002176, -0.0128747914, 0.00345267402, -0.0098554818, 0.0163010173, -0.0190599, 0.0094567053, -0.012899207, 0.0132817067, 0.00568053406, -0.0154383564, -0.00491146464, -0.0139571857, 0.015584846, 0.0141687812, -0.000838245, 0.00491146464, -0.0365246944, -0.00933463126, -0.000497453613, -0.00147201517, -0.0309418198, -0.00662050769, 0.00146692875, -0.00644146511, 0.0282236263, 0.000394961913, 0.0348319262, 0.0105879297, 0.00808947068, -0.0134607498, 0.0192714967, -0.0138432495, 0.00526548037, 0.00612000236, -0.00200914289, 0.0117842592, -0.024024263, 0.00918000285, -0.01772522, -0.0170090478, -0.0186367091, -0.000677004922, -0.0106530357, 0.00150660297, 0.0118330894, -0.0237801149, 0.0126876105, -0.00822375249, -0.00162155647, 0.00881378, 0.00138147653, 0.021452561, 0.00485856552, -0.00114851771, 0.00472021429, 0.0106123444, -0.0131352171, -0.00330821937, -0.000229779835, 0.00142521993, 0.00926952437, 0.0191738363, -0.0147547396, -0.00616069371, 0.0050783, 0.0135339946, 0.0174647942, -0.0142745795, 0.00656760857, 0.0191087294, -0.0107506951, -0.00565205, 0.0300303306, -0.0201016031, -0.00142420258, -0.0057578478, -0.0138269728, 0.0251310728, -0.00846383255, -0.0118900575, -0.00722274184, 0.00635601301, 0.0193691552, 0.0186367091, -9.86133164e-05, -0.0156580899, 3.91337817e-05, 0.00694197044, 0.024935754, 0.00890330132, -0.01809958, 0.00220141024, 0.00722274184, 0.00438654423, 0.00477718236, 0.0309255421, -0.00694197044, 0.0115156956, -0.0152674522, 0.00428074598, -0.0292816069, 0.00279550627, 0.0146814948, 0.00751979, -0.00531431055, -0.00383720873, 0.0120691, -0.0069134864, -0.0229011774, -0.0135828238, 0.0110518122, 0.0040528737, 0.0108402167, -0.00456965575, -0.004248193, -0.0204271358, -0.0218594763, -0.0155685693, 0.00169887033, 0.000585449, -0.00031612211, 0.0243172422, -0.0111657484, -0.0238940511, -0.0249683075, -0.00315155694, 0.00167140353, -0.00887888577, -0.0174485166, 0.0114831422, 0.00546486909, 0.0151942074, 0.0193203259, -0.0143559622, 0.0124597382, 0.00834989641, -0.00279143709, 0.000463883131, 0.00655133231, 0.0299815, -0.00134383689, -0.0289397966, -0.0218757521, -0.0102705359, 0.0172857512, -0.0158696864, -0.00646587973, 0.00174973463, -0.0119226109, 0.0195319224, 0.0142989941, 0.0211758595, 0.0225105397, 0.00149439543, 0.0044801347, -0.00457779411, -0.0134037817, 0.00467952294, 0.00747096026, -0.00978223793, 0.00879750308, 0.000407678017, 0.0146001112, 0.0132247387, -0.0183274541, 0.00495215598, -0.00028890968, -0.00640077377, 0.00430923, 0.00335298, 0.00635601301, -0.0012817824, 0.00524106575, -0.0176275596, 0.00658388529, 0.000807726348, -0.00401218235, 0.0161870811, -0.00461034756, 0.016374262, 0.00787380617, -0.0059531671, -0.00496843271, 0.0126713347, -0.0188645814, 0.00484228879, 0.0091393115, -0.0171880908, 0.0110436743, 0.00620138505, 0.0074261995, 0.00385552, -0.00744654518, -0.0038107594, -6.15141107e-05, -0.0251961797, 0.00784939062, -0.00461034756, 0.0167323463, 0.0108076632, 0.009595057, 0.000928274938, -0.00526141142, 0.00432550674, -0.0238126684, 0.00494808704, 0.0136642074, 0.0258309674, 0.010514685, -0.0200527739, 0.00716984319, 0.00955436472, -0.0100996308, -0.00721460348, -0.00656760857, 0.00160121068, 0.00161036628, -0.0261402223, 0.0164800584, 0.0193528794, 0.0170416012, -0.0238452218, -0.0122155892, -0.0106286211, -0.00736516202, 0.0084231412, 0.00600199681, 0.0194179863, -0.00785752945, 0.00609558728, 0.00983106717, 0.00491146464, -0.0124190468, 0.0134037817, -7.21638353e-05, -0.0117598446, 0.00973340776, -0.00408542715, 0.0181646869, -0.00861846, -0.0115563869, -0.00419529388, -0.00347302, 0.00368665019, 0.0118819186, 0.0123620788, -0.0186692625, 0.0284514986, 0.0144373458, 0.0133712282, -0.0206224546, 0.00202948879, -0.00719832722, 0.00208340492, -0.0038290706, -0.0142745795, 0.00733260904, 0.00467545399, -0.00830513611, -0.0155116012, -0.00714135868, -0.00876495, -0.00865101349, 0.00131026644, -0.00755234296, 0.000588500872, 0.00799995, 0.00543638505, -0.00181077188, 0.021273518, -0.0117435679, 0.00676292786, 0.00973340776, -0.00770697091, -0.0308278836, 0.0111006424, 0.00763372611, -0.010083355, -0.000355033379, 0.00212613097, -0.0102135679, -0.0245939456, 0.00298268721, -0.0343436301, -0.0227546897, -0.00297861802, -0.028239904, -0.00631939061, -0.0178391561, -0.0185064953, 0.00569681032, -0.00023753666, 0.0141118132, -0.00516375201, 0.018766921, -0.00406508101, -0.000608846603, 0.00691755582, 0.00232348498, 0.000484991848, -0.0078900829, -0.0137618668, 0.0152430376, 0.0104821315, -0.00741806114, 0.0228686258, 0.0205573477, -0.00602234248, 0.0114098974, -0.00103610742, -0.000161875883, -0.0153244203, -0.00971713103, -0.0197272412, -0.012532983, -0.00878936518, -0.00402845908, -0.0249032, -0.0188320279, -0.00247200881, 0.029395543, -0.00957064144, -0.00436619855, 0.0201341566, -0.0250496902, -0.00686872564, -0.00789822079, 0.0144698983, 0.00164495409, -0.0172206443, -0.00153508701, 0.00618917774, 0.0269052219, -0.0258472431, 0.00381279388, -0.0196946878, -0.00270801969, -0.00204169611, -0.00514340587, -0.00589619903, -0.0233569238, -0.0232429877, -0.00832955074, -0.00147201517, 0.0157801658, 0.0158696864, -0.0030172749, -0.00895213056, 0.0101321843, 0.00686058775, -0.00553811388, 0.00276295305, 0.0783230066, 0.0172206443, 0.0018962241, -0.0262541585, 0.0125167063, -0.00589619903, -0.00487484224, 0.0565774664, 0.0112796845, -0.0050498154, -0.00721460348, 0.00800808799, -0.00470800698, 0.0198086239, -0.0078900829, -0.0160568673, 0.00529803382, -0.00423598569, -0.0149337817, 0.00337942946, -0.00365409697, -0.0155929839, 0.00415053358, 0.00535500189, -0.00344657036, 0.0216478799, 0.0104739927, 0.00173956179, -0.0137944194, 0.0201992616, -0.0131352171, 0.00370089221, 0.00150355103, -1.89787715e-05, -0.0103844721, 0.00468766131, -0.0127527174, 0.0259774569, 0.0134607498, 0.00825630594, 0.0141525054, -0.00745061412, 0.0301768184, -0.0240079872, 0.0202318151, 0.00609558728, 0.0170253254, -0.0241544768, 0.000289926975, -0.00582295423, 0.0102623971, -0.0163417086, 0.00248828554, -0.0041749482, 0.00585143827, -0.00533465622, 0.0181646869, -0.0069867312, -0.00345267402, 0.00395928323, -0.00450454932, 0.00841500331, 0.000370547, 0.00320649054, 0.00138452847, 0.00502540078, -0.0076662791, -0.0160650052, -0.0285979882, 0.00535500189, 0.00884633325, -0.0203945823, 0.00326956226, -0.0227058586, 0.0140873985, 0.00209968165, -0.0159022398, 0.00169683574, 0.00840686448, -0.0183274541, -0.011125057, 0.0233732, -0.0402357578, -0.0102217058, 0.00149032637, -0.00215258054, -0.03496214, -0.00547300745, -0.0114668654, 0.00420750165, -0.00861846, 0.025554264, -0.0132735688, 0.00731226336, -0.00138859753, 0.0316579901, 0.000644451706, -0.00324921659, 0.017790325, -0.00189215492, 0.0145024518, 0.0229337309, -0.0332856514, -0.00588399125, 0.0166997928, 0.00869984366, -0.00443537394, -0.00279550627, 0.0133061213, 0.00791449752, 0.00974968448, -0.00334484153, 0.0147954309, 0.0260100085, -0.00670596, 0.00381482858, 0.0097740991, 0.0163579844, 0.0187180918, 0.0081912, 0.00632752897, 0.00566018838, -0.00166123069, 0.00878122635, -0.00620545447, 0.00789822079, 0.0106448978, 0.0207038373, 0.00872425828, 0.0155197391, 0.00146184233, -0.0104739927, 0.0202155393, -0.00949739665, 0.00939973723, 0.0136072384, -0.0104333013, -0.0213223472, 0.00759303477, 0.0113773448, 0.0135746859, 0.00559508195, 0.0111820251, 0.0128341, 0.0176112819, 0.0152511755, -0.0140385684, 0.00480566639, -5.82953498e-06, 0.014730324, 0.0225268174, 0.0104088867, -0.00776800793, -0.00261646369, 0.00686872564, -0.0135421325, -0.00530617218, 0.0103763333, -0.0145838354, -0.00474462938, -0.00388807314, 0.0114424508, 0.0171880908, -0.0137455901, 0.00641298108, 0.0128422389, 0.0052085123, -0.00685651833, 0.000796536158, 0.0141280899, 0.0233080927, 0.0024211444, 0.018213518, 0.0203945823, -0.0038290706, 0.00483415043, -0.00708032167, -7.43255732e-05, -0.00311900373, -0.0129968664, -0.014364101, 0.0167811755, 0.0075360667, 0.0547544882, -0.00572936377, -0.00856963079, 0.0100101102, -0.0234383065, 0.013021281, 0.0121342065, -0.0108483545, 0.0128178233, -0.00108544587, -0.000803148549, 0.00388603867, 0.0153325582, 0.0143478243, -0.0042848154, -0.0319184139, -0.00642111944, 0.0101077696, -0.0201504324, 0.0031576606, 0.00865101349, 0.0103763333, -0.00711694406, -0.00858590752, 0.00100253697, 0.00386162382, 0.00190334511, -0.0142176114]
26 May, 2024
Data Analysis Challenges in the Future 26 May, 2024 In the contemporary business landscape, Data Analysis is a crucial asset for businesses across various industries, enabling them to extract valuable insights from the data for informed decision-making. However, that path to successful data analytics is filled with challenges. This article will explore Top Data Analytics Challenges organizations face in different sectors and strategies to overcome them. Data Analysis Challenges When laying out Data Analysis Challenges in a sheet or document, it's essential to provide clear and structured information to ensure the challenges are easily understandable and actionable. Here's a suggested layout: Top 10 Challenges of Data Analytics Table of Content 1. Data Integration and Management Challenges2. Data Security and Privacy Challenges3. Challenges of Data Analytics in Business4. Ethical and Bias Challenges5. AI and Machine Learning Challenges6. Lack of Skilled Professionals7. Data Quality Issues8. Limited Resources9. Keeping Up with the Pace of Change10. Data Democratization Challenges1. Data Integration and Management ChallengesImagine a company with customer data in sales, marketing, and customer service systems. Each system might have its own format and structure. Merging this data for a 360-degree customer view is a complex task. Challenges include: Data Silos: Information gets trapped in separate departments, hindering a unified view.Data Heterogeneity: Data comes in various formats (text, numbers, images) requiring complex integration.Data Quality Issues: Incomplete, inaccurate, or inconsistent data leads to unreliable analysis.Standardization Challenges: Defining common formats and structures across data sources is crucial.2. Data Security and Privacy ChallengesAs data becomes the new gold, protecting it becomes paramount. Here's what organizations grapple with: Cybersecurity Threats: Unauthorized access, breaches, and malware attacks can compromise sensitive data.Data Privacy Regulations: Complying with regulations like GDPR (Europe) and CCPA (California) requires robust data governance.Data Loss Prevention: Accidental or intentional data leaks can have severe consequences.Balancing Security with Accessibility: Finding the right balance between user access and data protection is vital.3. Challenges of Data Analytics in BusinessData is powerful, but it needs proper direction to be truly useful. Here are some hurdles businesses face: Aligning with Business Goals: Focusing analytics on solving real problems and driving business objectives is essential.Data Relevance: Ensuring the data used is relevant to the decision at hand and avoids "garbage in, garbage out" scenarios.Communication of Insights: Presenting complex data findings in a clear, concise, and actionable way for non-technical stakeholders.4. Ethical and Bias ChallengesData and algorithms can inherit biases from the real world, leading to unfair or discriminatory outcomes. Here's why it's crucial to be vigilant: Algorithmic Bias: Algorithms trained on biased data can perpetuate those biases in their outputs. (e.g., biased loan approvals)Data Bias: Data itself can reflect societal biases, leading to skewed results. (e.g., underrepresentation of minorities in datasets)Mitigating Bias: Being aware of potential biases and actively taking steps to reduce their impact is crucial for ethical data analytics.5. AI and Machine Learning ChallengesWhile AI and machine learning are revolutionizing data analysis, they come with their own complexities: Interpretability of Models: Understanding how AI models arrive at their conclusions can be difficult, limiting trust and explainability.Ensuring Model Robustness: Models need to be robust and function well with unseen data to avoid generating inaccurate results.Scalability Challenges: As data volume grows, ensuring AI models can handle the increased processing demands is crucial.6. Lack of Skilled ProfessionalsThe data field is booming, but finding qualified professionals can be challenging: Skill Gap: The demand for data analysts, data scientists, and data engineers outpaces the available workforce with the necessary skills.Continuous Learning: The field is constantly evolving, requiring data professionals to continuously learn and adapt.Competition for Talent: Organizations compete for top talent, driving up salaries and making recruitment difficult.7. Data Quality IssuesData is the foundation of data analytics, and its quality directly impacts the insights derived. Here's why data quality matters: Incomplete Data: Missing information can lead to skewed results and hinder effective analysis.Inaccurate Data: Errors in data entry or inconsistencies can lead to misleading conclusions.Data Cleaning and Preprocessing: Significant effort is often required to clean and prepare data for reliable analysis.Data Governance: Establishing clear guidelines for data collection, storage, and usage is essential for maintaining data quality.8. Limited ResourcesData analytics projects can require significant investments in various resources: Hardware and Software: Powerful computing systems and specialized data analysis tools are often needed.Personnel: Hiring and retaining skilled data professionals can be expensive.Data Storage: Storing vast amounts of data requires robust and scalable storage solutions.Training and Development: Investing in training employees on data literacy and using data tools is crucial.9. Keeping Up with the Pace of ChangeThe data analytics landscape is constantly evolving, posing challenges for organizations: Emerging Technologies: New technologies like cloud computing and advanced analytics tools require adaptation.Evolving Best Practices: Data analysis methodologies and best practices are continuously being refined.Staying Competitive: Organizations need to stay up-to-date with the latest trends to maintain a competitive edge.10. Data Democratization ChallengesMaking data accessible to everyone in an organization can be a double-edged sword: Data Governance: Establishing clear guidelines and access controls is essential to prevent misuse of data.Data Literacy: Empowering users to understand and interpret data effectively is crucial.Standardization and Consistency: Ensuring everyone uses data consistently and adheres to established practices is important.ConclusionEffective data analysis involves addressing a multitude of challenges spanning from data collection to interpretation and decision-making. These challenges encompass technical, ethical, regulatory, and organizational aspects, requiring comprehensive strategies and solutions. By understanding and proactively addressing these challenges, organizations can harness the full potential of their data assets to drive innovation, make informed decisions, and gain competitive advantages in today's data-driven world. "This course is very well structured and easy to learn. Anyone with zero experience of data science, python or ML can learn from this. This course makes things so easy that anybody can learn on their own. It's helping me a lot. Thanks for creating such a great course."-  Ayushi Jain | Placed at MicrosoftNow's your chance to unlock high-earning job opportunities as a Data Scientist! Join our Complete Machine Learning & Data Science Program and get a 360-degree learning experience mentored by industry experts.Get hands on practice with 40+ Industry Projects, regular doubt solving sessions, and much more. Register for the Program today!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2/Difference between IBM DB2 and MongoDB/Difference between SQLite and IBM DB2/Difference between MySQL and IBM Db2/SQL Tutorial/How to SQL Select from Stored Procedure using SQL Server?/SQL Query to Rename Stored Procedure/Basic Query in PL/SQL procedure/How to Write a Normal Select Procedure in PostgreSQL?/PostgreSQL – SELECT INTO/How to Select Dates Between Two Dates in PostgreSQL?/How to Select Row With Max Value in PostgreSQL/PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows/PostgreSQL – IS NULL operator/PostgreSQL – NOT LIKE operator/SQL LIKE Operator/SQL Server Max Function Takes Two Values Like Math.Max in .NET/SQL Server NULL Values/NULL values in SQL/How to Set a Column Value to Null in SQL?/SQL IS NOT NULL Operator/SQL | NULL functions/SQL – SELECT NULL/SQL Query to Exclude Null Values/How to Filter Null Values to Last While Sorting Ascending in SQL?/How to Insert Rows with NULL Values in SQL?/SQL Query to Insert Multiple Rows/SQL Query to Add Email Validation Using Only One Query/SQL Query to Add an Agent Parameter in a Database/SQL Query to Get First and Last Day of a Month in a Database/SQL Query to Convert Date Range to Per Day Records/SQL Query to Check if Date is Greater Than Today in SQL/SQL Query to Get a Financial Year Using a Given Date/How to Group by Day, Date, Hour, Month or Year in SQL Server/SQL Query to Convert DateTime to Date in SQL Server/SQL Query to Convert Date Field to UTC/SQL Query to Convert Rows to Columns in SQL Server/SQL Query to Count the Number of Rows in a Table/SQL Query to Delete Duplicate Rows/SQL Query to Find Duplicate Names in a Table/How to Query Two Tables For Duplicate Values in SQL?/SQL – SELECT from Multiple Tables with MS SQL Server/How to Update Two Tables in One Statement in SQL Server?/Find all Tables that Contain a Specific Column Name in SQL Server/Copy Tables Between Databases In SQL Server/List All Databases in SQL Server/Top 10 SQL Databases To Learn in 2025/Top 10 Reasons to Learn Java in 2025/Top 5 Reasons to Learn Game Development/10 reasons to learn Python in 2019/Top 7 Reasons to Learn Golang/Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter/Is it Worth to Learn Python in 2020?/Python vs Java – Who Will Win the Battle in 2020?/How to Become a Freelance Programmer in 2020?/4 Personality Traits of a Great Programmer/Why Learning Web Development is a Great Career Move in 2025?/30+ Web Development Projects with Source Code [2025]/Top 10 Golang Project Ideas with Source Code in 2025/Top 10 Vue.js Project Ideas for Beginners in 2025/Top 10 Docker Projects Ideas for Beginners [2025]/Top Gen AI Project Ideas for Beginners in 2025/Top 12 Spring Project Ideas For Beginners [2025]/Top 10 R Project Ideas for Beginners in 2025/Top 10 Rust Project Ideas With Source Code in 2025/Top 10 C# Project Ideas for Beginners in 2025/Top 10 GoLang Projects Ideas for Beginners in 2025/The Future of Golang in 2025 [Top Trends and Predictions]/The Future of 3D Modeling in 2025 [Top Trends and Predictions]/The Future of Robotics in 2025 [Top Trends and Predictions]/10 Essential Skills for a Successful Career in Robotics Engineering/Software Testing Career Path – Skills, Salary and Growth/Why Non-Linear Career Paths are a Great Option to Achieve Career Success?/How to Build a Great Product from Scratch?/UI Design Process: 6 Easy Steps To Create Great UI/Content Improvement League 2024: From Good To A Great Article/Rank Improvement Course for GATE Exam: Crack GATE Now!/GATE DA 2025 Answer Key (Now Available) Download PDF/GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence/200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025/How To Ace Hackathons/How to Use the STAR Method To Ace Your Job Interview?/Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation/10 Ways to Find and Get Your Dream Internship/How to land your Dream Job: Three 90 Challenge/10 Tips For Landing Your Dream Internship/2-Page Resume Ship or Sink Your Dream Job Opportunity!/Things every final year student should do to get a job in their dream company/Things one should know before choosing Computer Science as their major/Why Developers Should Have a YouTube Channel?/Why Golang is so Popular Among Developers?/10 Most Popular Big Data Analytics Tools/Big Challenges with Big Data/Data Analysis Challenges in the Future
https://www.geeksforgeeks.org/data-analysis-challenges-in-the-future?ref=asr10
Languages
Data Analysis Challenges in the Future
PHP | IntlChar::isUWhiteSpace() Function, Difference between MySQL and IBM Db2, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, SQL procedure, 4 Personality Traits of a Great Programmer, GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence, SQL – SELECT NULL, PHP | IntlChar::isspace() Function, 2-Page Resume Ship or Sink Your Dream Job Opportunity!, Difference between IBM DB2 and MongoDB, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, PostgreSQL – NOT LIKE operator, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Write a Normal Select Procedure in PostgreSQL?, How to Select Row With Max Value in PostgreSQL, Top 7 Reasons to Learn Golang, Why Learning Web Development is a Great Career Move in 2025?, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, SQL Server Max Function Takes Two Values Like Math.Max in .NET, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, 10 Most Popular Big Data Analytics Tools, Benefits of Using Modern Learning Apps, NULL values in SQL, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, 10 reasons to learn Python in 2019, Top 5 Reasons to Learn Game Development, SQL Query to Convert Date Range to Per Day Records, Data Analysis Challenges in the Future, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, Software Testing Career Path – Skills, Salary and Growth, AngularJS angular.isDefined() Function, SQL Query to Convert Date Field to UTC, Content Improvement League 2024: From Good To A Great Article, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, List All Databases in SQL Server, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, How to Group by Day, Date, Hour, Month or Year in SQL Server, PHP IntlChar::charName() Function, Why Non-Linear Career Paths are a Great Option to Achieve Career Success?, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, Top 10 Vue.js Project Ideas for Beginners in 2025, Find all Tables that Contain a Specific Column Name in SQL Server, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, Top 10 Golang Project Ideas with Source Code in 2025, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, Copy Tables Between Databases In SQL Server, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, The Future of Robotics in 2025 [Top Trends and Predictions], PostgreSQL – Drop Procedure, Top 12 Spring Project Ideas For Beginners [2025], Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Big Challenges with Big Data, Wand sample() function – Python, PostgreSQL – SELECT INTO, Mongoose Queries Model.replaceOne() Function, GATE DA 2025 Answer Key (Now Available) Download PDF, Angular PrimeNG Form Calendar Touch UI Component, SQL Query to Rename Stored Procedure, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top Gen AI Project Ideas for Beginners in 2025, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, The Future of Golang in 2025 [Top Trends and Predictions], How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Why Developers Should Have a YouTube Channel?, SQL Query to Check if Date is Greater Than Today in SQL, MongoDB insertOne() Method – db.Collection.insertOne(), The Future of 3D Modeling in 2025 [Top Trends and Predictions], Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, SQL Query to Get a Financial Year Using a Given Date, Mongoose Query.prototype.limit() API, How to Use the STAR Method To Ace Your Job Interview?, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, Things one should know before choosing Computer Science as their major, Why Golang is so Popular Among Developers?, PHP | IntlChar::forDigit() Function, Python vs Java – Who Will Win the Battle in 2020?, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], Top 10 C# Project Ideas for Beginners in 2025, 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, 10 Ways to Find and Get Your Dream Internship, Top 10 Python REST API Frameworks in 2025, UI Design Process: 6 Easy Steps To Create Great UI, Difference between SQLite and IBM DB2, Top 10 JavaScript Frameworks to Use in 2025, How to Query Two Tables For Duplicate Values in SQL?, How to Get All Keys of an Associative Array in PHP?, 30+ Web Development Projects with Source Code [2025], Top 10 Reasons to Learn Java in 2025, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, SQL Query to Find Duplicate Names in a Table, How to land your Dream Job: Three 90 Challenge, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation, Top 10 Deep Learning Tools You Must Know [2025], How to Build a Great Product from Scratch?, 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, SQL Query to Insert Multiple Rows, How to Update Two Tables in One Statement in SQL Server?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, SQL Tutorial, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Top 10 SQL Databases To Learn in 2025, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How to Filter Null Values to Last While Sorting Ascending in SQL?, How to Become a Freelance Programmer in 2020?, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, SQL Query to Delete Duplicate Rows, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, How To Ace Hackathons, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Basic Query in PL, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, SQL Query to Add an Agent Parameter in a Database, Mongoose Document Model.count() API, SQL Query to Get First and Last Day of a Month in a Database, Languages, Mongoose Document Model.estimatedDocumentCount() API, PostgreSQL – IS NULL operator, PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows, Is it Worth to Learn Python in 2020?, 10 Essential Skills for a Successful Career in Robotics Engineering, Things every final year student should do to get a job in their dream company, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, SQL IS NOT NULL Operator, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, SQL Query to Convert Rows to Columns in SQL Server, Tensorflow.js tf.Tensor Class, SQL LIKE Operator, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, SQL Query to Exclude Null Values, How to SQL Select from Stored Procedure using SQL Server?, SQL Server NULL Values, SQL | NULL functions, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, Top 10 GoLang Projects Ideas for Beginners in 2025, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, How to Insert Rows with NULL Values in SQL?, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, SQL Query to Add Email Validation Using Only One Query, SQL – SELECT from Multiple Tables with MS SQL Server, Top 10 R Project Ideas for Beginners in 2025, 200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025, Difference between MS SQL Server and IBM DB2, SQL Query to Count the Number of Rows in a Table, Top 10 Docker Projects Ideas for Beginners [2025], PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, How to Select Dates Between Two Dates in PostgreSQL?, SQL Query to Convert DateTime to Date in SQL Server, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Rank Improvement Course for GATE Exam: Crack GATE Now!, 10 Tips For Landing Your Dream Internship, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, Top 10 Rust Project Ideas With Source Code in 2025, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, How to Set a Column Value to Null in SQL?, Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0450761542, 0.00459612301, -0.00414313143, 0.0220641792, 0.00742209423, -0.0485885814, -0.0163495149, 0.010167921, 0.00713636074, 0.0139521435, 0.0327269062, -0.0584289543, 0.0371871293, -0.0162937623, -0.0408389419, -0.0208097398, -0.0133667383, 0.0225380771, 0.035375163, -0.0302180275, -0.00228238106, -0.0427066609, -0.0109275524, 0.023346493, -0.00885076, 0.012119269, 0.00579829328, 0.00466929888, -0.0263989605, 0.00486443331, 0.024322167, 0.0114432666, 0.0231652968, -0.0544147529, -0.0153599018, 0.00294967252, -0.0147187449, -0.0128231486, 0.0167955365, 0.0420097485, 0.0206146054, 0.00405950239, 0.00761026, 0.0283921231, 0.00887863617, -0.00917133875, -0.0568957515, -0.00395496562, -0.00254720706, 0.00171352807, -0.0302459039, -0.0469438732, 0.0363229625, -0.00201058597, -0.00702485535, 0.0131297894, 0.0326154, -0.0422048829, 0.0143284751, 0.019848004, 0.0133528, -0.00885076, -0.0153320255, -0.00306466292, -0.00352113904, -0.01708824, -0.0483098179, 0.0242106616, 0.00504563, 0.0136315646, -0.0140218344, 0.0121541144, 0.0136036882, 0.00844655186, 0.00312390015, 0.00566588, -0.0196807459, -0.012363188, -0.0152065819, 0.0125652915, -0.00359257241, -0.0174227562, 0.0102794264, 0.00146873831, 0.0693007559, 0.0205309764, -0.0282388031, -0.0720326453, 0.0326154, 0.00689941132, 0.00344447885, 0.000335823628, 0.0100285383, -0.0444071218, -0.0338977128, -0.0156107899, -0.0138406372, -0.000270488294, -0.0249215104, 0.0129485922, -0.0210885033, 0.0579271801, 0.0356260501, -0.0192207843, -0.0201267675, -0.035458792, -0.0218969192, 0.0189977735, -0.00602130452, 0.0434872, 0.00970099, -0.0117499065, -0.0160846878, 0.0380791761, -0.041647356, -0.0106487889, 0.0135130901, -0.0268310439, 0.0103979008, -0.0157362334, 0.0341207273, 0.0234161839, 0.0145514859, 0.0447973907, -0.060937833, 0.0712521, 0.0158059243, -0.00536272442, -0.00103316945, 0.0216460321, 0.00229631923, 0.0225102, -0.0333401859, 0.0138336681, 0.0124189407, 0.0138197299, 0.0104675917, 0.00654398743, 0.00304375542, -0.00276150694, -0.021060627, -0.0316118486, -0.0345667489, -0.0314724669, 0.000996581628, 0.00368317077, 0.00293921889, 0.0536342114, -0.0153320255, -0.00235207216, -0.0478637964, 0.00429296726, 0.0203776564, 0.00864865631, 0.00735937245, -0.0279461015, 0.0118962582, 0.012607106, -0.0282666795, -0.0315560959, 0.0182869248, -0.00764510548, -4.05079081e-05, 0.0236810111, 0.0456894375, 0.0107533252, 0.0316954777, 0.00211163796, -0.0550001562, 0.0300786458, -0.0234161839, -0.0155968517, -0.0343994908, -0.0085998727, 0.0118195983, -0.0200292, 0.0264965277, 0.0151229519, -0.042873919, 0.00558225112, 0.0016490639, -0.0373265147, 0.0121680526, 0.0429854244, 0.00226844288, -0.0145514859, 0.0543868765, -0.0396402553, 0.0210885033, -0.0057843551, 0.0296883769, -0.00866956357, 0.030831309, -0.010335179, -0.0187329482, -0.0533275716, 0.00598994363, 0.0274582636, 0.00369710894, -0.00976371299, -0.0464699753, -0.0793920159, 0.00609099539, 0.0539687313, -0.00789599307, -0.0355702974, 0.0198758803, 0.00525818765, 0.0455500521, -0.0166840311, -0.0326711535, 0.0307198036, -0.00162118743, -0.00587843778, 0.0122656208, 0.0091434624, -0.040337164, -0.0079169, -0.00874622352, -0.05971127, -0.00108456658, -0.0132691711, 0.0337304547, -0.0170324873, -0.0374101438, -0.00875319261, -0.0113317603, -0.00846745912, -0.00371453166, -0.033591073, 0.00485397968, 0.0159034915, -0.017408818, -0.0196946841, -0.00765207456, 0.0118892891, 0.0087741, 0.011303884, -0.0427345373, 0.00719908299, 0.0343437381, 0.00117429381, -0.00847442821, -0.048393447, -0.00273885718, 0.0282806177, 0.0322530046, 0.0560315847, 0.0283781849, 0.0669033825, 0.0162380096, -0.025869308, 0.0420376249, 0.00441144174, -0.0164888967, 0.0164888967, 0.026357146, 0.010007631, 0.00370756257, -0.00878803805, 0.0180360377, -0.0287405793, -0.00919224601, 0.0302459039, -0.0132064493, -0.00288869301, 0.0284896903, -0.00581920054, 0.0364623442, -0.0378004126, 0.0349291414, 0.0272352528, 0.0363508388, 0.00746390875, -0.0265940949, -0.0261898879, 0.0317512304, -0.0262177642, 0.00563451927, 0.027095871, 0.0402256586, -0.0565891117, 0.0734264627, 0.0183984302, -0.0210048743, -0.00925496779, 0.0030019409, -0.0548607744, -0.0446858853, -0.0275558308, -0.00578783965, -0.0274861399, 0.00951979402, 0.0110181514, 0.00867653266, 0.00301762135, 0.00902498793, 0.00278067193, -0.0171858072, 0.0142866597, -0.00021647774, -0.0236670729, -0.040337164, 0.0242524762, -0.00979158934, 0.00526515674, 0.0160289351, 0.0281691123, -0.00464490661, -0.0279321633, 0.00921315327, 0.0108021088, -0.00180151302, -0.00728968112, -0.0136594409, 0.0710290894, 0.0661786, -0.000745694, -0.0145236095, -0.00616765581, -0.00648474973, 0.0104466844, -0.0429854244, 0.0369919948, -0.00507002184, -0.0450482778, -0.0081608193, 0.00940132, -0.01195898, -0.00197574054, -0.03074768, -0.000534878636, -0.0541081131, 0.0301065221, 0.0328105353, -0.0333123095, -0.0345388725, 0.0510974601, -0.0311379507, -0.00533136353, -0.0296883769, -0.0160289351, -0.066457361, 0.00618159398, 0.0286011975, -0.00921315327, -0.0413128398, 0.0114153903, 0.017729396, 0.0110320896, 0.00104623649, 0.00243918598, 0.0207121726, 0.0426230319, 0.0348455124, 0.00843261369, -0.0214369595, -0.00431039, 0.00236949488, 0.0093037514, 0.0237925164, -0.0382464342, -0.0382185578, 0.0131506966, -0.0360442, -0.0302180275, 0.00603872724, 0.0132970475, 0.00220223633, 0.0151229519, -0.0376052782, -0.0100215692, 0.0281133596, -0.0228307806, -0.0512368418, -0.0170603637, -0.012363188, 0.00200361689, -0.0233743694, 0.0258414317, -0.0240434036, 0.0159174297, -0.00267090858, 0.0511253364, -0.0143284751, -0.00286081666, -0.0101261055, -0.00312390015, 0.00448461762, 0.0161265023, -0.0273467582, -0.00372150075, -0.00152449112, -0.0161125641, 0.0219805501, 0.00327025144, 0.0262456406, 0.0280715451, 0.00478080427, -0.0465814807, 0.000357602083, 0.045466423, 0.00952676311, 0.0123701571, 0.00848139729, -0.00726877386, 0.0046867216, -0.00439053448, 0.0203776564, 0.0136176264, -0.0167815983, -0.00167171343, -0.0225659534, -0.00701440172, 0.0230398532, 0.0234858748, -0.00465536024, 0.00807022, -0.0096382685, 0.0190814026, -0.0055404366, 0.0188305154, 0.0229004715, 0.00647778064, -0.0156247281, 0.0312773325, 0.00247925823, -0.00470762886, -0.00341137568, 0.00978462, -0.0083698919, 0.01537384, 0.010816047, 0.00788902398, 0.0148720648, -0.0354030393, 0.0337304547, 0.00975674391, 0.0118405055, -0.00912952423, -0.0136176264, -0.0396681316, 0.0213812068, 0.00660670921, -0.0717538819, 0.00579132419, -0.0328105353, -0.00196702918, -0.0301622748, -0.0519058742, -0.0203358419, 0.0226356443, -0.0374101438, 0.00614326401, 0.0318627357, 0.00531742536, 0.0200570766, -0.000220288974, 0.0492576174, -0.00377028435, -0.0101470128, 0.0459960774, 0.0431526825, 0.0104815299, -0.00399678, -0.00260818657, -0.0431805588, -0.0361835808, 0.0162658859, 0.0154853454, -0.0284757521, -0.023583442, -0.00938041229, 0.0170324873, 0.0191789698, 0.0493691228, 0.0299950168, -0.0108090779, 0.00250365, -0.0150671992, 0.0444628745, 0.0447695144, 0.00388179, -0.0108787687, 0.0034287984, -0.0155271599, 0.00286778575, 0.0111645022, -0.00570421061, -0.0227610879, -0.00446371036, -0.0291308481, 0.058986485, -0.0115408339, -0.0078263022, -0.019039588, -0.0345667489, -0.0215902794, -0.00394102745, 0.0127046742, 0.00169697648, 0.00851624366, -0.0303574111, 0.0133040166, -0.0252699647, -0.0063941516, 0.0170324873, 0.00646732701, 0.0194716714, 0.000571030832, -0.0260226279, 0.0247403141, 0.00768692, 0.020907307, 0.0073872488, 0.0354030393, -0.00459612301, 0.0312215798, -0.0181057286, 0.0139800198, 0.00225624698, 0.00967311393, 0.0145793622, 0.0181614812, -0.0294096116, -0.0189838354, 0.0172554981, -0.00846745912, 0.0221199319, -0.0172136836, -0.0052059195, 0.00108108204, 0.00400723377, 0.00895529706, -0.00975674391, 0.00043469778, 0.0412013344, 0.0071921139, 0.0165585876, 0.000798397814, -0.0381349288, 0.0225380771, -0.00892742071, 0.0204891618, 0.0171439927, -0.0286569502, 0.017980285, -0.00276150694, 0.0196389314, -0.0105512207, -0.00636627525, -0.0167119075, 0.0196946841, 0.00787508581, -0.0122725898, -0.0126558905, 0.0230956059, -0.0172973126, -0.0137639772, 0.0193044133, -0.0306082983, -0.0167955365, -0.0110111823, 0.0341207273, 0.0199176949, 0.00807718933, 0.0101539819, 0.0773291588, -0.00262212474, 0.0271655619, -0.0051013832, -0.0121401763, 0.00290263118, -0.0154156545, -0.0100006619, -0.00616068672, 0.0115687102, -0.031723354, 0.0190256499, 0.00475292793, 0.00460309209, -0.0036239333, 0.0190117117, 7.43733908e-05, 0.00144695991, 0.0148999412, 0.0138754826, -0.00799356, -0.00243918598, -0.012523477, -0.0383858159, 0.0349848941, -0.0237228256, -0.012523477, -0.00191301864, 0.0219108574, 0.0205588527, 0.00774267269, -0.00530000264, -0.023025915, 0.0194298569, 0.0184541829, 0.0218829811, -0.00148790341, 0.00954767, 0.0181754194, -0.00604918087, -0.0051013832, 0.00708060805, 0.0137779154, -0.025130583, -0.0203497801, 0.0434872, -0.00835595373, 0.019527426, -0.0262456406, -0.00626173848, 0.0194159187, -0.0405880511, -0.00279809465, -0.012774365, 0.0320857465, -0.0166422166, -0.0073872488, 0.020907307, 0.0412013344, 0.0017239817, -0.0136733791, 0.00971492846, -0.0282527413, -0.0105372826, -0.0195831787, -0.00716423756, -0.00736634154, 0.0340371, 0.0019339259, -0.00664155465, 0.000220833434, 0.0229841, -0.00707015442, -0.00559618929, 0.00769388909, -0.00797962211, 0.123882763, 0.000131977373, 0.0352636576, -0.00451249396, -0.0055160448, 0.0332286805, 0.0262317024, 0.0230537914, -0.0127604268, 0.022454448, 0.0239737127, -0.0261898879, -0.0334795676, 0.00069778139, -0.0188444536, -0.00963129941, 0.0239318982, -0.0069725872, -0.00173792, -0.0177712105, 0.0317791067, 0.0168234129, 0.00763813639, 0.0408946946, 0.00754056871, 0.0408110656, 0.00772176543, 0.0205031, -0.044825267, -0.0141263707, 0.0445743799, 0.00802840572, -0.0110948114, -0.0214927122, 0.0196528696, -0.0155829135, 0.0009983239, 0.00753359962, -0.0367411077, 0.0106696961, 0.0264547132, -0.0342322327, 0.0145933, -0.00809809752, 0.0286011975, 0.00261689792, -0.00285384757, -0.00485397968, 0.0145236095, 0.00360999512, -0.00830020104, -0.00508744502, -0.00077226368, -0.00761722913, -0.0358769409, -0.0194856115, -0.00268310448, 0.00745693967, 0.00566588, -0.00825141743, 0.00739421789, 0.00285036303, 0.0476686619, -0.00129799533, 0.000926890643, -0.015778048, 0.00738027971, 0.000902498781, -0.00205240073, -0.0126558905, 0.0115268957, 0.0249075722, 0.0149417557, -0.00769388909, 0.00202103984, 0.0114850812, -0.0105860671, -0.0177712105, 0.010335179, 0.0178409033, -0.0232768022, -0.0566727407, -0.0193880424, -0.00261515565, -0.0100703528, -0.0213254541, -0.0119171655, 0.0218132902, -0.033674702, 0.0197504368, 0.00656141, -0.0113387294, -0.0146769295, 0.00463445298, 0.0196389314, -0.0128231486, 0.0277230889, 0.0232907403, -0.0328105353, -0.0328105353, -0.00873228535, 0.00838383, -0.00784024, 0.021478774, 0.0251445211, 0.0108508924, -0.0181057286, 0.0106487889, -0.0060840263, 0.0494527519, -0.0306082983, -0.00269007357, 0.0074917851, -0.0033922107, -0.0287405793, -0.0321136229, 0.0376052782, 0.0224126335, 0.0255208537, 0.011303884, 0.0147744976, 0.0346782543, -0.0166561548, -0.00694122585, 0.00862774905, 0.0228447188, -0.00553346751, 0.00964523759, -0.0114641739, 0.0513762236, 0.0269007348, -0.0269146729, -0.0100703528, 0.0100355074, -0.0138127608, -0.00931769, 0.0105512207, -0.0270261802, 0.00892742071, -0.000292266748, 0.0195692405, -0.0224962626, -0.00460657664, 0.0238900837, -0.02896359, -0.00905983336, 0.0313888378, -0.00756147597, 0.0250469539, -0.02570205, -0.00342357159, -0.0151508292, -0.0238203928, -0.00224230881, 0.00764510548, -0.0308870617, -0.00577041693, 0.0531603135, -0.0196249932, -0.0203219038, -0.0364344679, -0.0151508292, -0.021395145, 0.00998672377, -0.0207818635, 0.00436265813, 0.0230816677, 0.00740118697, -0.0204473473, -0.0342322327, 0.00551256025, -0.0112969149, -0.0151229519, -0.0069133495, 0.0190256499, -0.0272213146, 0.0304967929, 0.0301622748, -0.0550559089, 0.0217296612, -0.0399190187, -0.031639725, 0.0376052782, 0.0124607552, -0.00456476212, 0.0338140838, -0.00210815342, 0.00583662326, 0.000393100927, -0.0229841, 0.019039588, -0.023834331, -0.00210292661, -0.00873228535, 0.00163076993, 0.00665200828, 0.0131228203, 0.0141333397, 0.00712939166, -0.0165028349, 0.0238622073, 0.0094291959, 0.000917308091, 0.000121959296, -0.0116453702, 0.0385251977, 0.0420933776, -0.00121001038, 0.00163773913, -0.00471808249, 0.0126698287, -0.0375774, 0.00549513754, 0.0436544567, 0.000503517629, 0.00522334222, 0.0159034915, 0.0318348594, 0.0103769936, 0.0020088437, 0.0187468864, 0.0177572723, -0.0193322897, 0.00670776097, -0.0166979693, -0.0247403141, -0.0295211188, 0.0140497107, -0.00126227865, 0.0136942863, 0.0301343985, -0.00717817573, 0.00626173848, -0.00949888676, 0.00038112278, -0.000648997666, -0.0231652968, 0.0332008041, 0.00451249396, -0.00430690544, -0.0146072386, 0.00079709111, -0.00556831295, -0.0143563515, -0.0117429374, -0.00118561857, -0.0329220407, -0.0110948114, -0.0101888282, -0.00626522303, -0.0151926437, 0.0128789013, 0.0360999517, -0.0306082983, 0.00988915656, 0.00566588, 0.00565194199, -0.00786114763, 0.00353856175, -0.00329638552, 0.0123562189, 0.0103979008, 0.0131297894, 0.0345946252, -0.0129137468, -0.0126837669, 0.0303295348, -0.0264965277, -0.0139591126, -0.018621441, -0.0223429427, 0.048560705, -0.0066938228, -0.0323366374, -0.0292144772, -0.00586798415, -0.0227332115, 0.0301065221, 0.0329777934, -0.0268449821, 0.0192625988, -0.010335179, 0.0173391271, -0.0302459039, 0.00018424564, -0.0247403141, 0.00906680245, 0.00160028017, 0.0176736433, 0.0137709463, -0.00931769, 0.0366574787, -0.0110181514, -0.0171300545, 0.0655653179, -0.0441841111, -0.00753359962, -0.00673912233, 0.0116035556, 0.00129015511, -0.000812336, -0.054359, 0.00368665531, 0.0250051394, 0.0278764106, 0.00350720086, -0.0233604312, -0.0210188124, 0.00836292282, 0.0294374898, -0.0073524029, 0.00729665, -0.0156526044, -0.0246148705, -0.00641505886, -0.0224823244, 0.0115965866, -0.00165254844, -0.00531742536, 0.020168582, 0.000669469417, 0.0342322327, 0.00665549282, -0.010007631, 0.0111366259, -0.01374307, -0.0124189407, 0.00825838652, -0.00483307242, 0.00603872724, -0.00213951454, -0.0264965277, -0.00375634618, -0.0140009271, -0.0295211188, -0.00525121856, -0.0171718691, -0.0378561653, -0.0169070419, -0.00934556685, -0.00642202795, 0.00194263726, -0.0875319242, 0.0380234234, -0.0224823244, -0.0218272284, 0.00959645398, -0.019192908, -0.00726180477, -0.0115756793, -0.0079169, -0.0390269756, 0.00244267052, 0.00883682165, 0.0145375477, 0.00720605208, -0.0211442579, -0.0111366259, -0.00250713457, 0.00948494859, 0.0147466213, 0.0171021782, 0.0395008735, 0.0126140751, -0.00602130452, 0.00812597387, 0.0171858072, -0.0242524762, -0.0018590081, -0.0266916621, -0.025869308, 0.0150114466, 0.0125861987, -0.00997975469, -0.0168931037, 0.0132343257, -0.0330614224, 0.00493760919, -0.00692380313, 0.00334168458, 0.00944313407, 0.0251445211, -0.00131716032, 0.0177433342, 0.0117708137, 0.0169488564, -0.000216913308, -0.0113247912, -0.0093734432, 0.00392360473, -0.0139312362, 0.02896359, 0.00418146141, 0.000556221465, -0.0569236279, -0.00680532865, 0.0101539819, 0.0148999412, -0.020907307, 0.000607183, 0.00359605695, 0.00778448768, -0.0124816624, 0.00288869301, 0.0280994214, -0.00964523759, -0.00244267052, 0.0220363028, -0.008704409, 0.0261759497, -0.0177990869, -0.0222593136, 0.0162798241, -0.01366641, 0.0323645137, 0.00901105, 0.0383858159, -0.00631749118, 0.0170324873, 0.0301622748, 0.0200849529, -0.00184506993, 0.0071921139, 0.0238203928, -0.0127883032, -0.0158338, -0.0124886315, -0.0364065915, -0.0290750954, -0.0108508924, -0.0197086222, 0.01203564, 0.00874622352, -0.0139591126, 0.00582268508, -0.0181614812, -0.0221896227, 0.0014129855, 0.00129451079, 0.0120774545, -0.000522247108, -0.0140078962, -0.0351521522, 0.0110042132, -0.0116941538, 0.000723044388, -0.00716423756, -0.026440775, 0.000515278, 0.00599342817, 0.0265940949, -0.00770085817, 0.00478080427, 0.0160846878, 0.0616068654, 0.00597600546, 0.00839079916, -0.0059550982, -0.0203915946, 0.00515016681, -0.0057599633, 0.0234858748, 0.0403929166, -0.0278764106, 0.0225520153, 0.0045717312, -0.0032092717, 0.0112063168, -0.018300863, -0.00767298182, -0.0197922513, 0.00945010316, 0.0301901512, -0.0203776564, -0.00613281038, 0.00257856795, -0.0137570081, -0.0310821962, 0.0197225604, -0.00895529706, 0.0327826589, 0.0252281502, -0.055892203, -0.00623734668, 0.0150114466, -0.0110460278, 0.0122586517, -0.00102097355, 0.0125374151, 0.0305246692, -0.00436265813, 0.000907725596, -0.0217436, 0.0195971169, -0.0140218344, -0.00227192743, -0.017645767, 0.0234998129, -0.00434872, -0.00135984609, 0.00227889651, -0.000471285544, -0.00273363036, -0.00783327129, -0.00130235101, 0.00350371632, 0.0137291318, -0.0187608246, 0.00723392842, 0.0288520847, -0.0110181514, 0.00582268508, 0.00571117969, -0.0006376729, 0.0122656208, -0.0098682493, 0.0407274365, -0.046692986, 0.000341486, 0.0160568114, -0.00197922508, 0.0148720648, 0.0134991519, 0.00511183683, -0.0202800874, 0.0195971169, 0.000685149862, 0.0116593083, -0.00875319261, 0.0183566157, -0.00527561037, -0.0189838354, -0.000593244855, -0.0428181663, -0.0113666058, 0.0127534578, 0.00978462, -0.0028643012, 0.00289914664, -0.0250469539, -0.0155271599, 0.00875319261, -0.00588192232, -0.0132691711, -0.017813025, -0.00119694334, -0.00974280573, 0.012607106, -0.00156107894, -0.0246009324, 0.0140357725, 0.0342322327, -0.0179245323, 0.0316676, 0.00487837195, 0.00405601785, -0.000182176693, 0.00920618419, -0.0227192733, -0.00832807738, 0.00813991204, 0.0215624031, -0.0083698919, 0.0107254488, 0.0227053352, 0.00970795937, 0.0500660315, -0.010579098, 0.0434035696, -0.0204752237, 0.0127534578, 0.00954767, 0.0052059195, 0.000720431, -0.0114850812, 0.0439053439, 0.00577390147, -0.00466929888, -0.0153041491, 0.0212000106, -0.0009234061, 0.00352810812, -0.00277892966, 0.00283642462, 0.0443792455, 0.004962001, -0.00380164548, 0.0144399805, -0.00148877455, -0.00974280573, -0.0193044133, 0.0274443254, 0.0131367585, 0.00740118697, -0.0139172981, -0.017004611, 0.00968008302, 0.00121610833, 0.00700394809, 0.0136942863, -0.0105581898, 0.0146211768, -0.019611055, -0.021715723, -0.0107115107, -0.00546726072, 0.023262864, 0.0266498476, 0.00695516448, -0.000769650273, -0.0184820592, 0.0075823837, 0.0135200592, -0.0057843551, 0.0118614128, 0.0176875815, -0.00344970566, 0.00489231, 0.000855021761, 0.0205588527, -0.0113735748, 0.00325282849, 0.00795871485, -0.000734804722, -0.00587146869, 0.00568330288, -0.00335039594, -0.000850666082, 0.0112760076, 0.0142727215, 0.0286848266, -0.00123091775, 0.00308557018, 0.0326154, -0.00653701834, 0.00467975251, 0.0252978429, 0.00918527693, 0.0134364292, -0.0408668183, -0.000309253926, 0.0105651589, 0.00988218747, 0.0175063852, -0.0190256499, -0.0103212409, -0.0064742961, -0.0134991519, 0.0130461594, 0.0178827178, -0.000973932096, 0.0052303113, 0.00424069865, 0.00698304083, -0.0193044133, 0.000403554586, 0.0015070684, -0.0123144044, 0.00283468235, -0.0250051394, -0.0308034327, 0.00761722913, -0.00332600414, 0.00552998297, 0.00107672636, 0.00975674391, -0.0012248198, -0.0243779197, 0.021478774, -0.0105372826, -0.0118335364, 0.0019095341, 0.023583442, -0.0219526719, -0.0100355074, 0.00400026469, 0.017325189, -0.00153930055, 0.0148441885, 0.0111505641, 0.0211024415, -0.0117499065, -0.00340789114, 0.00109763362, -0.0294932425, 0.01032821, 0.0171997454, 0.00301936362, 0.015457469, -0.00175185816, -0.00632446073, -0.0175621379, -0.0055404366, -0.017645767, 0.0325317718, 0.0267334767, -0.013506121, -0.00278589875, -0.00566239562, -9.37562072e-05, 0.0235973801, -0.0161683187, -0.0109693669, 0.00600736635, 0.00558573566, -0.00972189754, 0.00394799653, 0.00174924475, 0.0120077636, 0.00303155952, -0.00306640519, 0.0109414905, -0.0204891618, -0.0174645707, 0.00145741354, 0.0248518195, 0.0198619422, 0.019360166, 0.0108299851, 0.00024435416, -0.017492447, -0.0316118486, -0.00220746314, -0.0131297894, -0.00781236403, 0.00296883774, -0.00503866095, -0.0186493173, 0.0132552329, 0.0119311037, 0.00730361929, -0.0213672686, -0.000256985659, -0.0159034915, -0.0034409943, 0.0129834376, 0.0121750217, -0.0232071113, -0.0174785089, -0.0314724669, 0.00901105, -0.00920618419, 0.00512229046, -0.0175342616, 0.0246148705, 0.026106257, -0.0057843551, -0.0045717312, -0.0170603637, 0.0163216386, -0.0159034915, -0.00382603728, -0.00879500713, 0.00434523541, 0.00352636585, 0.0141751543, -0.0159174297, -0.00312912697, -0.0137570081, -0.0209630597, 0.00659277104, -0.0244615506, 0.00152710453, 0.00733149564, 0.0251584593, -0.0133737074, 0.0185099356, -0.00230851513, -0.0116244629, -0.014969632, -0.00852321275, -0.011631432, -0.00559270475, -0.00192347227, -0.0226635206, 0.00159244, 0.039696008, 0.0128719322, -0.0303852875, 0.00153058919, -0.00586798415, -0.00723392842, -0.0156526044, 0.017492447, 0.00834898464, -0.0296605, -0.0108578615, 0.00384694454, 0.0241409708, -0.00428948272, 0.0327826589, -0.00670079188, 0.00550907571, -0.00127970148, -0.0383858159, -0.0267892294, -0.00489579467, 0.0087601617, 0.00921315327, 0.00681578228, -0.00295838411, 0.013993958, -0.00211512251, -0.00104100967, -0.00103665399, 0.0255208537, -0.0287127029, 0.0189838354, -0.00773570361, 0.0134294601, 0.00963129941, 0.0245312415, -0.00765904365, 0.0247821286, -0.00567633379, 0.0134991519, 0.00802143663, -0.0102236737, -0.0148302503, -0.0184263065, -0.00946404133, 0.000244789728, 0.0109693669, 0.0128440559, -0.00724089751, -0.0256323591, 0.0217436, 0.0091434624, -0.00577738602, 0.026677724, 0.0234998129, 0.022691397, 0.013506121, -0.0238482691, -3.75950403e-05, -0.0140845561, -0.0209909361, 0.00777751859, -0.0197086222, 0.0125304461, -0.00995187834, 0.012042609, -0.0113805439, -0.00659625558, 0.0200152621, -0.0347618833, 0.0270540565, 0.00349500496, -0.0038190682, 0.00281203282, -0.00456476212, -0.00640460523, 0.00859290361, -0.00711196894, 0.00210641115, -0.0107045416, -0.0213812068, -0.0105024371, 0.000167476246, 0.00176318293, 0.00700743264, -0.02391796, -0.00756844552, -0.00153842941, 0.00465884479, -0.00648474973, -0.00685062772, -0.0284757521, 0.0160707496, 0.00328941643, 0.0284618139, 0.011303884, 0.0114293285, 0.00528257946, -0.00263780518, -1.24885773e-05, 0.0299950168, 0.0114572048, 0.00400374923, 0.000821483, 0.0306919273, 0.0110390587, -0.011791721, -0.0353194103, 0.0058644996, 0.0106069744, -0.00323889032, 0.0278206579, 0.00425463729, 0.0118126282, -0.00931769, -0.0141612161, -0.0174227562, 0.0109136142, 0.0123353116, 0.00949191768, -0.0125304461, 0.0119938254, -0.0200988911, -0.00056319061, 0.0137361009, -0.0122586517, -0.0171858072, -0.00611538766, 0.00343750976, 0.00186075037, -0.000304680463, -0.0067530605, 0.00514319772, 0.00285036303, -0.0147744976, -0.00616765581, 0.0116244629, -0.00073524029, 0.00486094877, -0.00938041229, -0.0122377444, 0.0142727215, 0.0167258456, 0.00416055415, 0.0166700929, 0.0167397838, 0.0176178906, -0.0152762728, -0.0281969886, 0.0145793622, -0.0100494456, -0.00483307242, 0.0254372247, -0.0300228931, -0.0079169, 0.0171997454, 0.00951282494, -0.0123353116, -0.00112986576, 0.0105512207, -0.00387482089, 0.0192068461, 0.0262735169, 0.058484707, -0.0110251205, 0.00648474973, 0.014969632, 0.0155689754, 0.0313888378, -0.0174227562, -0.0029444457, -0.00376679981, -0.00426160637, 0.00133109861, -0.0105024371, 0.00941525772, -0.00262212474, -0.00321972533, 0.00744300149, -0.00644641975, 0.00855108909, 0.00592373731, 0.00141908345, 0.0132134184, -0.0144121042, -0.0109205833, 0.0172694363, 0.00374240801, 0.00646035792, -0.00951282494, -0.0342043564, 0.0125792297, 0.0196807459, -0.0138127608, 0.0234301221, -0.0100633837, 0.00847442821, 0.00980552752, 0.0226774588, 0.0174785089, 0.00250713457, -0.00376679981, 0.0198619422, -0.0123074353, -0.00201232824, 0.0183287393, -0.0161822569, 0.0225520153, -0.00601085089, -0.00475641247, -0.00538014714, -0.0250608921, -0.0033922107, -0.017729396, 0.000347148423, -0.00264825905, 0.00504563, -0.0133040166, -0.0152483964, 0.0368804894, -0.0230816677, -0.0066938228, -0.0210188124, -0.0041884305, 0.0153320255, -0.00938738137, 0.0142030306, -0.0150532611, -0.0073524029, -0.00524076493, 0.000377638236, -0.0116871847, 0.0120913927, -0.00994490925, -0.0086556254, 0.0124677243, -0.00714333, -0.00133196975, 0.0133528, -0.0070771235, -0.0105163753, -0.00131106237, -0.00612932583, -0.0103560863, -0.00185203901, -0.0164888967, 0.0038678518, -0.0139382053, -0.0227471497, -0.0022492779, -0.000525296084, 0.022607768, 0.0182032958, 0.0127464887, -0.00572511787, -0.0047424743, 0.00409434782, 0.0222453754, -0.00345144793, -0.0145933, -0.0218411665, -0.0141821234, 0.0110599659, 0.0131716039, 0.0186771955, -0.00336259184, -0.0156526044, -0.0113456985, 9.34295313e-05, 0.0377167836, -0.0115268957, -0.0100982292, 2.45551964e-05, -0.0127604268, -0.0171161164, 0.0181336049, -0.0083698919, -0.0162519477, 0.0277230889, -0.0106627271, 0.000122612648, -0.0196668077, 0.00892742071, -0.0334516913, -0.0192625988, -0.0105512207, -0.017645767, -0.0198061895, -0.0135339973, -0.0356260501, -0.00127011898, -0.0136873173, -0.00695516448, -0.0150671992, -0.000913823547, -0.0150393229, -0.00117342267, -0.0203358419, -0.0140078962, 0.0197643749, 0.00858593453, -0.00318139535, 0.00972886663, 0.0108369542, -0.00463096844, -0.00981946569, -0.0303016584, -0.0134991519, -0.0162101332, -0.0046867216, 0.0032667669, -0.00708409259, 0.00233987626, 0.0241688471, -0.0233046785, -0.0177572723, -0.00867653266, -0.00171614147, -0.0103421481, -0.00276150694, 0.00888560526, -0.0017649252, -0.00362741784, 0.0034166025, -0.0187608246, 0.00549165253, 0.000674696232, -0.0212278869, 0.021395145, 0.0231095441, 0.00238169078, 0.00911558606, 0.032280881, -0.0268031675, -0.0171858072, 0.00609448, 0.00984037295, 0.00207679253, 0.01366641, -0.0118335364, -0.0091992151, 0.00608751085, -0.00912952423, 0.0139451744, -0.0036483251, 0.0234301221, -0.00866956357, 0.00229109242, -0.00465536024, -0.0100355074, -0.0140427416, 0.0210327506, -0.0165725257, 0.00530697173, 0.0176178906, -0.012690736, -0.0217296612, 0.0245033652, -0.00669730734, -0.0279739778, 0.0316676, 0.00527909491, 0.0102585191, -0.00385391363, -0.00800052937, 0.00175882725, -0.000824967516, 0.00282945554, -0.00851624366, 0.000282248657, -0.0135688428, 0.00547423, 0.00193218363, -0.0455500521, -0.0184820592, 0.0215902794, 0.0184263065, 0.000295533508, 0.0140427416, 3.14698518e-05, -0.000314480742, 0.0326432772, 0.000346495071, 0.00645687338, 0.00323192123, 0.0192625988, 0.00834898464, 0.00401071832, 0.0118265674, 0.00136681518, 0.0185935646, -0.0127464887, 0.00280854828, -0.0352915339, -0.00131803146, 0.000954767049, 0.0112690385, -0.00923406053, -0.0118195983, 0.0105930362, -0.0224823244, -0.0148023739, -0.036685355, -0.0123422807, -0.0119171655, -0.0149417557, -0.00126314978, -0.0119032273, -0.00193915272, 0.0332286805, 0.0125095388, -0.00513971318, -2.29218131e-05, 0.0106487889, 0.0152205201, 0.0120844236, 0.00285036303, 0.010488499, -0.00563103473, -0.00325282849, -0.0163216386, 0.00143302174, 0.00570072606, 0.0207261108, 0.00632794527, 0.00516410498, -0.0200570766, 0.0154017163, 0.00519895041, -0.034817636, 0.00971492846, -0.00352985039, 0.0260086898, 0.00581571599, 0.000491757295, 0.00883682165, 0.00259424839, 0.0105233444, 0.00687153498, 0.026677724, -0.00578087056, 0.00237297942, 0.00991006382, -0.0187608246, -0.00687501952, -0.00974280573, -0.0118405055, -0.0133458311, -0.0225938298, 0.00711893803, 0.000372629205, 0.000909467868, 0.00373195438, 0.0172415599, 0.00274408399, 0.0194716714, -0.00221094768, -0.00722695934, -0.00550559117, -0.0205727909, -0.0116732465, 0.0173391271, -0.0116941538, -0.0160428733, -0.00846745912, 0.017325189, 0.0157501716, -0.0103421481, -0.0145236095, 0.0275837071, 0.000867653231, -0.00055883493, 0.0249075722, 0.00999369286, 0.0100146, 0.0148163121, 0.00320752943, -0.00474944338, -0.00380513, -0.0171718691, -0.00097131863, -0.0239597745, 0.0239458364, -0.0195831787, -0.0130740367, -0.00252455729, -0.00701091718, -0.0122098671, -0.00298451819, -0.00416403869, -0.00759632187, -0.0132203875, -0.00608751085, 0.0141681852, -0.0172415599, -0.0014321506, 0.012286528, -0.0239040218, 0.0148302503, -0.0119101964, -0.00293573434, -0.00567633379, -0.00284339371, -0.0243918579, -0.00639763614, -0.00755450688, 0.0068088132, -0.0167119075, 0.0116802156, 0.000982643454, -0.0150253847, -0.0228307806, 0.00097306096, 0.00796568394, -0.0154017163, 0.00298626046, -0.00592722185, -0.00377725344, -0.00411873963, 0.00733149564, 0.00372498529, -0.0127534578, 0.0215205885, 0.0134294601, 0.00131803146, -0.00619553216, -0.0161404405, 0.00331903505, -0.00577041693, 0.0139869889, -0.00817475747, -0.0305804219, 0.0199455712, 0.00417100778, -0.0126628596, -0.0230677295, 0.00736634154, -0.00613629492, -0.00737331063, -0.0238482691, 0.0016229297, -0.000762681128, -0.0182311721, 0.00299671409, -0.00152797566, -0.00920618419, 0.0026883313, 0.0139451744, -0.0134364292, -0.032866288, 0.0037737689, -0.00759632187, -0.00540802348, -0.0193880424, -0.00960342307, 0.00327547826, -0.0181475431, -0.00326502463, 0.00324934395, 0.0200570766, 0.0205727909, 0.010335179, 0.0118405055, 0.000522682676, 0.0119101964, 0.0152065819, 0.00834898464, 0.00255243387, 0.0104327463, 0.0242524762, 0.00699001, -0.00154975418, 0.000282902, 0.00504214549, 0.000436440052, -0.0081608193, -0.0417031087, 0.00352810812, 0.0116035556, -0.00876713078, 0.0208097398, 0.0168234129, -0.0187468864, -0.00306988973, 0.00590282958, 0.0209630597, 0.0101609519, 0.00849533547, -0.00803537481, 0.0174785089, 0.00101574673, 0.00214474136, -0.00683668954, 0.0103979008, 0.0128858704, -0.00373195438, 0.00495503191, 0.00288695074, 0.0169906709, 0.0190535262, -0.00523728039, -0.0106906034, 0.0213812068, -0.0210048743, -0.00640809, 0.0182032958, 0.000736547, 0.00261515565, -0.00806325115, 0.00654050289, -0.000725222228, 0.00955463946, -0.0163634531, 0.00172223942, 0.00269181584, -0.00847442821, 0.0185238738, 0.00854412, 0.00303155952, -0.0224265717, 0.00780539494, 0.00765207456, -0.00223533972, -0.0205170382, 0.0083698919, -0.00350023177, -0.0096940212, 0.00292179617, 0.0202382728, -0.0198201276, 0.00438008085, 0.0127395196, -0.000304680463, -0.0266359095, 0.00711545348, 0.0331171751, -0.0123701571, 0.00922709145, 0.00581223145, -0.0267752912, 0.028796332, 0.0215624031, 0.0135618737, -0.0237785783, -0.00428251363, -0.00260470202, 0.0187747627, 0.0216739085, -0.0180360377, -0.0206424817, 0.0143005988, -0.0169349182, 0.019039588, -0.0130322212, -0.00734543381, 0.00370407803, -0.00592025276, -0.0151926437, 0.00240085577, -0.00750572328, -0.013910329, -0.00222140132, 0.0133109856, -0.00694122585, 0.00955463946, 0.019276537, -0.00391663564, -0.00249842322, 0.000867217663, -0.00628264574, 0.000659886864, 0.00323714805, -0.0182590485, -0.00139904732, -0.00702137081, 0.00557528203, 0.0135479355, -0.00531742536, 0.0192347225, -0.00846049, -0.000537056476, 0.00968705211, 0.00843261369, 0.0112760076, -0.00897620432, 0.00531394081, -0.0224126335, -0.00986128, 0.018063914, 0.0101539819, 0.0138685135, -0.0218551047, -0.00966614485, -0.012446817, 0.00187817309, 0.00442886446, 0.00456127757, 0.00465884479, 0.00195483328, -0.0133806765, -0.0051013832, 0.0103073027, -0.0151787056, -0.0105024371, 0.019039588, -0.026440775, 0.0169070419, -0.0159871206, -0.0115338648, -0.00690986495, 0.0103700245, -0.0157222953, -0.00650565699, 0.014398166, 0.012119269, 0.0236810111, 0.0289078373, 0.0200570766, -0.00761722913, 0.00299671409, -0.0228586569, 0.00180499756, -0.0229144096, 0.0294096116, 0.00169871876, 0.00521637313, 0.018300863, 0.0142657524, 0.000834114442, -0.00370059349, -0.0109484596, 0.00481913425, -0.00708757713, 0.0265522804, 0.0144121042, -0.00331032369, 0.00854412, -0.00895529706, -0.0124886315, -0.010816047, -0.00846049, 0.0153041491, 0.0202382728, 0.000509615638, -0.0175482, -0.0270819329, -0.0110460278, 0.00419539958, -0.00136768632, -0.0128649632, -0.0156386662, 1.35162472e-05, 0.00606660359, 0.0174785089, -0.00247577368, 0.00305072451, 0.0214090832, 0.00465536024, 0.00269704266, -0.00425115274, -0.00169697648, 0.00600736635, -9.81663397e-05, -0.000394407631, 0.00751269236, -0.0139521435, 0.016837351, 0.00724089751, 0.0134155219, 0.00993097108, 0.0221756846, 0.00290437345, 0.0176318288, 0.0118126282, 0.00958251581, -0.00926890597, 0.0135549046, -0.00786114763, -0.00894832797, 0.00300891, 0.00694122585, -0.0065335338, -0.00432432815, 0.00161683175, -0.00162554311, 0.00102881377, -0.00200361689, 0.00298103364, 0.00380164548, -0.012042609, 0.0155689754, 0.00649520336, -0.00740118697, 0.0259947516, -0.0168931037, 0.00167084229, -0.0061746249, 0.00179977075, -0.00306292064, 0.00656489469, -0.0104257772, -0.0109902751, 0.00255591841, -0.00165690412, -0.0153180873, -0.0363787152, 0.00102358696, 0.00672518369, -0.0139591126, -0.0084256446, -0.0105233444, 0.0128649632, 0.00699349446, -0.00340614887, -0.000329072296, -0.0143563515, 0.00181893574, 0.00961736124, 0.00143476401, -0.0180499759, 0.0191232171, 0.00785417855, 0.0154435309, 0.00431039, 0.0147744976, 0.0039932956, 0.00917133875, -0.0144539187, 0.0043278127, -0.0136106573, -0.0103212409, -0.0380234234, -0.0112202549, -0.01025155, -0.0128301177, -0.0133806765, 0.0137918536, -0.0220084265, -0.0115617411, 0.0104327463, 0.000832807738, -0.0153459636, -0.00288520847, 0.020419471, 0.000812771556, 0.00885076, -0.00358211878, -1.3523053e-05, 0.00444628717, 0.0179384705, 0.00323540578, 0.00466929888, -0.00129189738, 0.0155132217, 7.87835233e-05, -0.000264825881, -0.00898317341, 0.00799356, -0.0299950168, 0.0258414317, -0.0124328788, 0.0431248061, -0.00380513, -0.0155689754, 0.0183426775, -0.0228447188, 0.00238517532, -0.0144539187, -0.00727574294, -0.00971492846, -0.00684714317, 0.014398166, 0.0059550982, -0.0250887685, -0.0239040218, -0.0154017163, 0.00938041229, -0.00382255274, 0.00223359745, -0.0291308481, 0.0123771261, -0.0123004662, 0.00402814103, 0.0136176264, -0.0194577333, 0.0109136142, 0.0179384705, -0.0175482, -0.00564845745, -0.0132482639, -0.0208933689, 0.00610144902, 0.0214230213, 0.00512925955, -0.00521288859, -0.00494457828, 0.0207261108, 0.00165690412, 0.018955959, 0.00526515674, 0.000571901968, 0.00434175087, 0.0118683819, -0.00351242768, -0.0194856115, -0.00535227079, -0.00770085817, 0.00703530898, 0.004108286, -0.0118474746, -0.00546726072, -0.0289357137, -0.00331729278, -0.00838383, -0.0148999412, 0.0198340658, -0.013826699, -0.00753359962, -0.00315874559, -0.00319881807, 0.00685411226, 0.0192068461, 0.0168652274, 0.00320752943, -0.000182067801, -0.0100982292, 0.0157362334, 0.00123527343, 0.00240608258, -0.0150671992, -0.0119729182, -0.0203219038, 0.00375983072, 0.00284165144, 0.0186771955, 0.0132482639, 0.00353681948, 0.013011314, -0.00271969219, -0.0232489258, 0.010495468, -0.0169209801, -0.00601433543, 0.00742209423, -0.00117690722, -0.0136942863, -0.0347897597, -0.0280715451, -0.0139869889, -0.00672866823, 0.0157919861, 0.0073872488, 0.0178966559, 0.00636976, 0.00617114035, 0.000712155132, -0.0119938254, 0.00822354108, 0.00547423, 0.0169070419, 0.0220781174, -0.00326328212, -0.025785679, 0.0131855421, 0.0112690385, -0.0111157186, -8.06346943e-05, -0.0120983617, 0.0157501716, -0.00802143663, -0.000800575654, -0.00336956116, 0.0031395806, -0.0108230161, 0.0101330746, -0.00353856175, -0.0305804219, 0.0241270326, -0.00226321607, -0.00945010316, -0.0172694363, 0.000927761779, -0.00667291554, -0.0107463561, -0.011227224, 0.0028643012, 0.000712155132, -0.0141681852, -0.00638369797, -0.0141333397, -0.00709454622, -0.00544635346, -0.0122098671, 0.00209769979, 0.0144678568, 0.00105494785, 0.0326432772, -0.0134155219, -0.0130670676, 0.007105, -0.00783327129, -0.00891348254, -0.0185378119, -0.00580177782, 0.0198898185, -0.0138476063, -0.0140427416, -0.0129625304, -5.69506337e-05, -0.0117359683, 0.00110634498, 0.000476947956, -0.00662413193, 0.00373543892, -0.0131506966, 0.0225102, -0.00981946569, -0.00981946569, -0.00567284925, -0.000238909546, -0.00261689792, 0.0257996172, -0.0221478082, -0.00880197622, -0.00992400199, 0.0062547694, 0.0368247367, 0.0125861987, -0.00796568394, -0.0334516913, -0.0163355768, -0.0141333397, -0.00186946173, -0.0135339973, -0.0130810058, -0.00145654241, 0.00601085089, 0.00761026, 0.0032336635, 0.0120495781, 0.0101470128, 0.0106139435, 0.011791721, -0.0194856115, 0.00899711158, 0.00887863617, 0.0103491172, 0.0185935646, 0.00150358386, -0.0141751543, -0.0268589202, 0.0044079572, -0.00281551736, -0.0084256446, 0.00221443223, -0.0129764685, -0.00775661087, 0.0231652968, -0.00775661087, 0.00945707224, 0.000851972785, 6.53353345e-06, 0.00276673376, 0.00368665531, 0.0249215104, -0.0157501716, -0.0105930362, -0.0159871206, -0.0063383989, 0.01537384, 0.00750572328, -0.00347758224, -0.00260992884, -0.0289914664, 0.000659015728, -0.00154017168, 0.00649171881, 0.000401158963, 0.0157501716, 0.00334342686, -0.0139660817, 0.00409434782, -0.00816778839, -0.00487837195, -0.02733282, 0.00436614268, 0.00528954901, -0.0137570081, 0.00105930353, 0.0140218344, -0.0231652968, -0.000468672137, -0.00587843778, 0.0166840311, -0.0192904752, -0.00533136353, -0.00120652583, 0.00717817573, -0.00692380313, -0.00344622112, -0.00236949488, -0.00772176543, 0.0208654925, 0.00359257241, 0.00206808117, -0.00130147988, -0.0278764106, -0.0280994214, 0.00242873211, -0.00489927921, -0.00420236867, -0.00191127637, 0.00224579335, -0.00869744, 0.0133597692, 0.00104275194, 0.0440447293, 0.00594812911, 0.00841170643, -0.0076311673, 0.00841867551, -0.0153320255, 0.0182311721, 0.00217784452, -0.00111070066, 0.00261167111, -0.0127255814, 0.012042609, -0.0166004021, 0.00250365, 0.00546726072, -0.00499684643, -0.0121123, 2.98364703e-05, 0.0154017163, -0.0326990299, 0.000964349543, 0.00180325529, 0.00661019376, 0.00555785932, 0.000961736136, 0.0311658271, 0.0227889642, 0.00140601641, 0.0262595788, 0.0145514859, -0.00854412, -0.0123074353, 0.010167921, -0.00884379074, 0.018063914, 0.039138481, 0.00687850406, -0.00799356, -0.00603872724, 0.0154295927, 0.00347584, -0.0150253847, -0.00783327129, 0.000376113749, -0.00912255514, -0.00368665531, 0.00502472278, -0.0333680622, -0.000317529746, -0.00196877145, -0.00281900191, 0.00664852373, -0.0210327506, 0.00736634154, -0.0192904752, -0.00223533972, -0.00387133635, -0.000868524425, -0.00296883774, -0.00532091, -0.0214508977, 0.0115129575, 0.0203219038, 0.00184855447, -0.00843958277, 0.00772873452, 0.0166840311, 0.00709106168, -0.00952676311, 0.0247263759, -0.0150811374, -0.00527561037, -0.0211024415, -0.00215171045, -0.0155271599, 0.000914694683, 0.00579829328, 0.0209769979, -0.00722695934, -0.0157641098, -0.00252107275, -0.0223986953, -0.00104275194, -0.0146629913, 0.0165585876, 0.00913649332, 0.00218655588, -0.0117289992, -0.0206006672, -0.00924799871, -0.0173530653, -0.00453688577, 0.0139660817, 0.00940132, 0.00407344056, 0.019527426, -0.00938041229, -0.0200292, -0.0142866597, 0.0237507019, 0.0103630554, -0.00256114523, -0.00949888676, -0.00419888413, -0.00630006846, 0.0108718, 0.0143005988, -0.00845352095, 0.0214648359, -0.00346364384, -0.00392012, 0.00456476212, 0.0107045416, 0.00961736124, 0.00873925444, -0.0417588614, -0.0335631967, -0.00751966145, 0.00915043149, -0.00663110102, 0.00108369545, -0.00292353844, 0.00452294759, 0.017325189, -0.00662413193, 0.0277649034, 0.013582781, 0.00392012, 0.0125861987, -0.000976545503, -0.00907377154, 0.0156526044, 0.0106836343, 0.00170743011, 0.0119032273, -0.0244615506, 0.00618159398, 0.00688547315, -0.030664051, 0.0180499759, 0.00404207967, -0.0112551, 0.0237925164, 0.00288695074, 0.00357514969, 0.00540453894, 0.00761722913, -0.00388527452, 0.0014826766, 0.00136942859, -0.015136891, -0.000941699953, -0.00993097108, -0.00423024502, 0.00709454622, -0.0248239432, 0.00336781866, 0.0159174297, 0.000939086545, 0.0124607552, -0.00168913626, -0.0327826589, -0.00367620145, 0.00357863423, 0.0169906709, 0.00609448, -0.0134921828, -0.00209247298, -0.017004611, -0.0255347919, 0.00758935278, -0.00457870029, 0.0115965866, 0.00532091, 0.0111226877, -0.00487140287, -0.0162798241, 0.0116244629, -0.00657186378, 0.0156107899, 0.00873228535, 0.00755450688, 0.00495503191, -0.0117429374, -0.00709106168, 0.00847442821, 0.00656141, 0.00662064739, -0.00417797687, 0.00656489469, 0.0156247281, -0.0109623978, 0.0176318288, 0.0138476063, 0.022607768, -0.0169906709, -0.022050241, -0.000592809287, 0.00388527452, 0.00974280573, 0.0032092717, 0.0153320255, 0.000826274219, -0.00196006, 0.0093734432, 0.00321798306, -0.00470066, 0.0142727215, 0.00920618419, -0.0168234129, -0.00467626797, -5.09411439e-06, 0.0205031, -0.0139800198, -0.00380164548, 0.00850927457, -0.00708757713, -0.00492018647, 0.00371104712, -0.00330683915, -0.0187190101, 0.0121819908, 0.0130670676, 0.0117847519, -0.00537666259, 0.0055160448, -0.00520940404, -0.0058644996, -0.0141821234, -0.0150950756, -0.00868350174, 0.00402465649, -0.0109902751, -0.0212000106, -0.00383300637, -0.00588889141, 0.0281272978, 0.00721999025, -0.0111854095, -0.00796568394, 0.0209909361, 0.0194995496, 0.0084256446, 0.0035420463, -0.0124189407, 0.00995187834, 0.0155550372, -0.0379955471, -0.0171161164, 0.0109833051, 0.0102794264, 0.000744387275, -0.014969632, -0.00215867953, -0.017408818, -0.0087601617, 0.00996581651, -0.00888560526, -0.00690986495, 0.00990309473, -0.023262864, -0.0108299851, -0.0219387338, -0.0107602943, 0.0188862681, -0.00720605208, 0.00306292064, -0.0081608193, 0.00923406053, -0.0103700245, -0.00816778839, 0.0123422807, -0.00325631304, -0.00153320259, -0.0096382685, -0.00954070129, -0.00433478178, 0.0190256499, 0.00751966145, 0.02228719, 0.0186353792, 0.00860684179, -0.00327547826, -0.00751966145, 0.00107933977, 0.000494370703, -0.00317616854, -0.0149417557, -0.0095337322, 0.00846745912, -0.000119019205, -0.0169627946, -0.00561709655, 0.00118561857, 0.0153599018, -0.0172136836, 0.000985256862, 0.0171997454, -0.0159034915, -0.0142866597, -0.00441492628, 0.021799352, 0.0130461594, -0.00254546478, 0.0124956006, 0.00289217755, 0.0275140163, -0.0189698972, 0.019848004, -0.0221338701, -0.00459263846, 0.0123213734, -0.00428251363, -0.00365529419, -0.0162937623, -0.0161404405, -0.0142448451, -0.00381558365, 0.0167676602, 0.0249215104, -0.00254198024, -0.00528606446, 0.0081608193, -0.0137361009, 0.0152762728, 0.00722695934, 0.00896923523, 0.0164470822, -0.0017022033, -0.0100146, -0.000101868674, -0.00321275624, -0.00638021342, 0.0507629439, 0.00228063879, 0.0158059243, -0.00513622863, 0.00367620145, -0.0119729182, 0.013422491, -0.00605266541, -0.0325875245, 0.00372846983, -0.0170464255, -0.0108230161, 0.0125304461, 0.00813991204, -0.0199734475, -0.00011749471, 0.00706667, -0.00422676047, 0.0146351149, 0.00127099012, -0.00857199635, -0.00377725344, 0.0268449821, -0.0206285436, 0.000621992396, 0.00328070507, 0.00443931809, -0.0181475431, 0.0167119075, -0.00805628207, 0.0305525456, 0.0118962582, 0.00862078, 0.00571466424, 0.00313783833, 0.0274303872, -0.0120704854, 0.0229562242, 0.0104466844, 0.0157083571, -0.00372846983, 0.00447416399, -0.00823051, 0.00362741784, -0.0191092789, 0.00351765449, 0.0049062483, -0.00498987734, -0.00370059349, 0.0183984302, -0.0147048058, 0.00293921889, -0.00387482089, -0.00206111209, 0.0119938254, 0.0020907307, 0.0105721289, 0.0156665426, -0.00637672888, 0.0158756152, -0.0166840311, -0.0247263759, 0.00492018647, 0.0112202549, -0.0144539187, 0.00469369069, -0.0186632574, 0.0195134878, 0.000707363884, -0.016837351, 0.0230398532, 0.0170185491, -0.00508047594, -0.0116941538, 0.0141263707, -0.0339255892, -0.0216739085, -0.00570769515, 0.00277892966, -0.0171300545, -0.00310473517, 0.00640460523, 0.0195413642, -0.00656141, 0.0336189494, -0.0252002738, 0.00880894531, -0.00440098811, 0.0195553023, 0.0102097355, -0.0328105353, 0.0351242758, 0.00522682676, 0.021799352, -0.000934730866, -0.0196249932, -0.0156247281, 0.00220223633, 0.00592722185, 0.00125356729, 0.0033347155, -0.00203497801, 0.00731058838, 0.00500033097, -0.0134364292, -0.00281900191, 0.0110042132, -7.01265963e-05, 0.00676002959, 0.0138197299, 0.0268728584, 0.0033469114, 0.00274756877, -0.00459960755, 0.0198619422, -0.0115129575, 0.00158547086, -0.000331032381, 0.010411839, -0.0122098671, 0.00167955365, 0.00951282494, 0.0141124325, 0.0025628875, -0.00950585585, 0.0252420884, -0.000932988594, 0.00198793644, 0.00452294759, -0.0110529969, -0.00830020104, 0.00726877386, 0.0154295927, 0.00343228295, 0.0110390587, 0.0165307112, -0.00922012236, 0.00320056034, 0.0122238053, -0.00814688113, 0.0046518757, 0.00304375542, 0.00837686099, 0.0174785089, -0.00722695934, 0.00114641734, -0.012042609, 0.01195898, 0.000800575654, -0.00457870029, 0.0143702896, -0.000389616383, -0.00662761647, -0.00293747662, 0.0103700245, 0.0331171751, -0.00961736124, -0.00296361092, -0.00831413921, 0.00197051372, 0.00800052937, -0.00459960755, 0.0176039524, 0.0161265023, 0.00418146141, 0.0188165773, 0.022942286, -0.00381209911, 0.00480868062, 0.00256811432, 0.00256985659, 0.00235381443, -0.00746390875, -0.0475014038, 0.0094779795, 0.00659974, 0.0185517501, 0.0021482259, -0.00713636074, -0.00633491436, -0.00744997058, 0.00813991204, 0.0156107899, 0.00404904876, 0.0171161164, -0.00633491436, 0.0046518757, 0.0104257772, 0.0163913295, 0.0298277587, -0.00446022581, -0.0289914664, -0.00474595884, -0.00383300637, -0.0205031, 0.00159156881, -0.00845352095, 0.0273188818, -0.0214648359, 0.00206808117, 0.0105372826, 0.00597949, 0.0093037514, -0.0103909317]
14 Feb, 2024
What is the impact of AI on the future of data science? 14 Feb, 2024 Artificial Intelligence has an impact on the human world. In the era of digitization and modernization, it has developed in many fields including knowledge and creativity. It follows the core principle of integrating with the human world and helping them via text generation, decision-making, and research. In this article, we will explore about Impact of AI on the future of data science, the Evaluation of AI in the field of Data Science, the advantages and disadvantages, and the Future of Data Science with AI. In this comprehensive guide, we delve into the profound effects of AI on data science's future, explore its evolution within this domain, and weigh the benefits and drawbacks. Furthermore, we'll forecast the trajectory of data science as it becomes increasingly intertwined with AI innovations. Impact of AI in Future of Data Science Table of Content What is Data Science?What is Generative AI in Data Science & Impact?What is the evolution of AI in the field of Data Science?The Exponential Growth of AI: Transforming the Future of Business and TechnologyAdvantages of the Integration of Data Science and Artificial IntelligenceDisadvantages of the Integration of AI and Data ScienceWhich is the best AI Tool for Data Science?What is Data Science?Data Science as per the word itself suggests the relation between the scientific information in the form of data, in a structured manner. It relates to the combination of mathematical and scientific formulas and data which is extracted from an unstructured form. It is highly used by data scientists, engineers, businessmen, and other mathematicians to derive formulas from raw form to structured data and solutions. It integrates with Artificial Intelligence creating greater impact by allowing conversion of data with these tools. They help in data conversion, text generation, data cleansing, preparing analysis while conducting experiments, and interpretation of data. This whole process is called AI with the integration of Data Science. What is Generative AI in Data Science & Impact?Artificial Intelligence is a virtual intelligence system that works with Machine Learning, Self Learning, and Natural Language Processing and is involved in processing data and generating data. It is the development of the computer system and is used as a tool in every field. It is a smart and intelligent system that goes in parallel with human intelligence. Certain Chatbots, Language translators, Voice assistants, and other automated tools are referred to as Generative AI. Imagine Generative AI as the quirky chef of Data Science, mixing ingredients (data) in unpredictable ways to serve gourmet insights. Sometimes, it whips up a masterpiece, other times, you get a bizarre dessert that predicts the future. It's like having a culinary genius who occasionally experiments with time travel! Generative AI in Data Science refers to the tools with the software designed to classify between structured and unstructured data. The things that are ambiguous and indistinguishable by the human eye, the Generative AI in Data Science is capable of that. What is the evolution of AI in the field of Data Science?Data Science has undergone many developments, but its history revolves around computer science in the year 1960. When the computer was the device started to be used for data analysis, statistics, and data processing it marked the beginning of Data Sciences. There was an evolution of the storage of databases and computations. The usage of computers through Machine Learning programs shifted to machine learning AI. With innovations, many industries and other market place started using Artificial Intelligence. Data Scientists use certain frameworks to support integration which are Hadoop and Spark for processing data. The traditional model has been shifted to the modern model marking the Evolution of AI in the field of Data Science. The Exponential Growth of AI: Transforming the Future of Business and TechnologyDid you know that the world of artificial intelligence (AI) is expanding at an incredible pace? Back in 2021, the global AI market was valued at a whopping $59.67 billion. But hold onto your hats, because by 2028, it's expected to skyrocket to $422.37 billion! That's a growth rate of 39.4% each year. Meanwhile, in India, the AI scene is also booming, set to grow from $3.1 billion in 2020 to $7.8 billion by 2025. And the number of AI startups? They've multiplied by 14 times since the year 2000! It's clear: AI is not just the future; it's reshaping our present in unimaginable ways. Advantages of the Integration of Data Science and Artificial IntelligenceThere are certain pros of the integration of Data Sciences and Artificial Intelligence such as: It enhances the ability to analyze and research work.It becomes a helpful tool for scientists, and mathematicians in formula making.Integration helps in identifying patterns and provides insights.It generates and works in a personalized way.Data sciences with AI help in decision-making and have a huge impact on the market.It helps in risk management and is a medium for experimenting.AI helps in enhancing capabilities by reducing errors made by humans.Healthcare, marketing, business, industries, and scientists have used this technology.Disadvantages of the Integration of AI and Data ScienceThere are certain negative aspects as well with the Integration of AI and Data Sciences: There are certain security and data leak problems with the integration of AI and Data Sciences.There are certain challenges to any dispute or misconduct, there is a lack of regulations.Many customers may find it difficult to use the app because of its complexity.Many times real-time data is not provided by tools creating ambiguity.Concerns relating to privacy issues also have been raised.There is less algorithm transparency where no one is accountable for that.The decision-making made through AI may be biased.Which is the best AI Tool for Data Science?There are many tools that can be considered as Best AI tools for Data Science such as: ChatGPT: It is considered to be the Best AI tool for Data Science because it can write code, poems, essays, summaries, and even jokes. It can help with everything from planning projects and analyzing data to choosing models and fine-tuning settings. With ChatGPT, data experts can save time on coding and focus on solving bigger and more creative problems.Bard AI: The following AI is powered by Google itself, the UI is very easy to use. However, the following AI still lacks writing of codes and other languages. Overall, Bard will be seen as having much potential in the future.Hugging Face: AI tools such as Hugging Face are much simpler than ChatGPT and is considered to be more precise and reliable. However, the tool is a bit costly and inaccessible to everyone.GitHub Copilot: This AI model is finely tooled with data and built-in applications. The AI also provides autocomplete suggestions while coding making it one of the most reliable apps for coders and web developers.ConclusionThe integration of AI with Data Science has created a huge impact on the future across various industries through its techniques of analysis and large data generation. It collaborates with the field in such a way as to create a positive outcome. It has created AI-centric roles with the economy as well. The work has been streamlined with real-time responses and more predictive models are created to contribute towards healthcare, preparing data analysis, and many more. FAQs - Impact of AI on the future of Data ScienceHow do AI tools for Data Sciences help organizations and the economy?AI is considered to have the ability to learn and adapt to the work environment. Work such as combining algorithms, formulas, and other machine learning are easy for Artificial Intelligence to remember and make use of the data in a Financial manner. How to ensure security for AI in Data Science?As AI in Data Sciences works on advanced databases and digital security is the major concern for any AI tool, the basic measures like the General Data Protection Regulation are followed by such developers which ensure maximum security and safety. What are real-world applications for AI tools acting in Data Sciences?Applications for AI tools in  Data Sciences shall be providing data and real-time information which shall help in innovations, decision-making, E-commerce, and finance departments. It also helps in experimentations, recommendations, sentiment analysis, data cleansing, and preparing algorithms. What are the factors that need to be taken into consideration for choosing AI Tools for Data Science?For choosing AI tools for data sciences there are certain factors that needs to be taken care of such as the topic of your project, features of the tool that need to be studied by the user with the knowledge of how to work, and compatibility testing is important. Get IBM Certification and a 90% fee refund on completing 90% course in 90 days! Take the Three 90 Challenge today. Master Machine Learning, Data Science & AI with this complete program and also get a 90% refund. What more motivation do you need? Start the challenge right away!
Languages/Introduction to Programming Languages/5 Most Difficult Programming Languages of the World/Top Dying Programming Languages in 2020/Top 10 Programming Languages of 2015/Top 10 Programming Languages for Blockchain Development/Top 10 Fastest Programming Languages/Top 10 DevOps Programming Languages You Must Know/Top 10 Backend Technologies You Must Know/Top 10 Python Developer Skills That You Must Know in 2024/Top 10 Flutter Packages That You Must Know/Top 5 Features of Java 17 That You Must Know/Top 10 Python Frameworks That You Must Know in 2024/Top 7 Web Development Myths That You Must Know/Top 10 Advance Python Concepts That You Must Know/Top Data Science Trends You Must Know in 2024/Top 7 Database You Must Know For Software Development Projects/7 Myths About Full Stack Development That You Must Know/7 VS Code Tricks That You Must Know/8 DevOps Best Practices That You Must Know/DevOps Prerequisites [2025] - Things to Learn Before DevOps/12 Things You Must Do to Get a Junior Web Developer Job in 2025/Top 10 Deep Learning Tools You Must Know [2025]/Top 10 Deep Learning Algorithms in 2025/Top 10 Machine Learning Frameworks in 2025/Top 10 Java Frameworks in 2025/Top 7 Big Data Frameworks in 2025/Top 10 JavaScript Frameworks to Use in 2025/Top 10 Python REST API Frameworks in 2025/Top 10 Frameworks for Web Applications in 2025/Top 7 Progressive Web App Development Frameworks [2025]/Benefits of Progressive Web Apps for Business/7 Famous Apps Built on Node.js: Reasons and Benefits/Benefits of Using Modern Learning Apps/An Introduction to Freelancing: The Career Choice for Modern Millennials/How to get weighted random choice in Python?/Random sampling in numpy | random() function/Sampling Theory/Cluster Sampling in Pandas/Random sampling in numpy | random_sample() function/Python Random – random() Function/random.lognormvariate() function in Python/random.expovariate() function in Python/random.gammavariate() function in Python/random.gauss() function in Python/Python | random.sample() function/Wand sample() function – Python/Wand – blur() function in Python/Pgmagick blur() method – Python/Pgmagick wave() method – Python/Pgmagick flip() method – Python/Pgmagick swirl() method – Python/Node.js GM swirl() Function/Node.js assert.doesNotMatch() Function/Node.js assert.notDeepStrictEqual() Function/Node.js assert.notEqual() Function/Tensorflow.js tf.notEqual() Function/Tensorflow.js tf.tensor3d() Function/Tensorflow.js tf.print() Function/Tensorflow.js tf.Tensor class .print() Method/Tensorflow.js tf.Tensor .toString() Method/TensorFlow.js Tensor Random Complete Reference/Tensorflow.js tf.Tensor class .dataSync() Method/Tensorflow.js tf.Tensor Class/Tensorflow.js tf.TensorBuffer Class/Tensorflow.js tf.Sequential Class/How to check an array is associative or sequential in PHP?/Convert an object to associative array in PHP/How to Check if a Value Exists in an Associative Array in PHP?/Sort an Associative Array by Key in PHP/How to Get All Values from an Associative Array in PHP?/How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?/How to Get All Keys of an Associative Array in PHP?/PHP array_keys() Function/PHP decoct( ) Function/PHP | gmp_xor() Function/PHP hexdec( ) Function/PHP octdec( ) Function/PHP ord() Function/PHP IntlChar::ord() Function/PHP | IntlChar::isspace() Function/PHP | IntlChar::islower() Function/PHP | IntlChar::isULowercase() Function/PHP | IntlChar::isUWhiteSpace() Function/PHP IntlChar::charName() Function/PHP | IntlChar::charDigitValue() Function/PHP | IntlChar digit() function/PHP | IntlChar::forDigit() Function/PHP | IntlChar::isIDIgnorable() Function/PHP | IntlChar isdefined() Function/AngularJS angular.isDefined() Function/AngularJS angular.isFunction() Function/AngularJS angular.toJson() Function/ReactJS TestRenderer.toJSON() Method/Node.js URL.toJSON() Method/Mongoose Document.prototype.toJSON() API/Mongoose Document.prototype.directModifiedPaths() API/Mongoose Document.prototype.$isNew API/Mongoose Document Model.prototype.remove() API/Mongoose Document Model.prototype.modelName API/Mongoose Document Model.prototype.collection API/Mongoose Document Model.prototype.db API/Mongoose Document Model.prototype.deleteOne() API/Mongoose Document Model.prototype.save() API/Mongoose Document Model.prototype.schema API/Mongoose Document Model.remove() API/Mongoose Document Model.bulkWrite() API/Mongoose Model.create() API/Mongoose Document Model.count() API/Mongoose Document Model.countDocuments() API/Mongoose | countDocuments() Function/Mongoose | exists() Function/Mongoose | where() Function/Mongoose | estimatedDocumentCount() Function/Mongoose count() Function/Mongoose | replaceOne() Function/Mongoose findOneAndUpdate() Method/Mongoose Populate() Method/Mongoose Query API.prototype.getOptions() Method/Mongoose Query.prototype.remove() API/Mongoose Query.prototype.setQuery() API/Mongoose Query.prototype.toConstructor() API/Mongoose Query.prototype.update() API/Mongoose Query.prototype.updateMany() API/Mongoose Query.prototype.findOneAndUpdate() API/Mongoose Query.prototype.limit() API/Mongoose Query API.prototype.writeConcern() Method/Mongoose Query API.prototype.getUpdate() Method/How does Query.prototype.getUpdate() work in Mongoose?/How does Query.prototype.comment() work in Mongoose ?/How does Query.prototype.elemMatch() work in Mongoose ?/Mongoose Query.prototype.elemMatch() API/Mongoose Query.prototype.replaceOne() API/Mongoose Queries Model.replaceOne() Function/Mongoose Queries Model.deleteOne() API/Mongoose Document Model.exists() API/Mongoose Document Model.estimatedDocumentCount() API/Mongoose Document Model.inspect() API/Mongoose Document Model.listIndexes() API/Mongoose Document Model.populate() API/How to populate virtuals to a mongoose model using Node.js ?/How to Populate Dropdown List with Array Values in PHP?/How to detect if a dropdown list is a multi-select using jQuery?/How to change a select’s options based on another dropdown using React?/Grouping Dropdown Options Using ReactJS/Primer CSS Dropdown Options/How to Select Multiple Options at once in Dropdown list in HTML?/Angular PrimeNG Form Dropdown Disabled Options Component/Angular PrimeNG Form Dropdown Custom Content Component/Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component/Angular PrimeNG OrganizationChart Templating/Angular PrimeNG Form AutoComplete Templating Component/Angular PrimeNG Form AutoComplete Force Selection Component/Angular PrimeNG Form Calendar Selection Mode Component/Angular PrimeNG Form Calendar Disable specific dates and/or days Component/Angular PrimeNG Form Calendar Custom Content Component/Angular PrimeNG Form Calendar Time Component/Angular PrimeNG Form Calendar Touch UI Component/Angular PrimeNG Form Calendar Popup and Inline Component/Angular PrimeNG Form Calendar Multiple Months Component/Angular PrimeNG Introduction/Angular PrimeNG Splitter Component/Angular PrimeNG Splitter Templates/Angular PrimeNG Splitter Styling/Mongoose Query.prototype.findOneAndRemove() API/Mongoose | findOneAndRemove() Function/Mongoose | findOneAndReplace() Function/MongoDB – db.collection.findOneAndReplace() Method/MongoDB insertOne() Method – db.Collection.insertOne()/How to Sort a Collection by Date in MongoDB?/How to Get the Latest Record from MongoDB Collection/How to Changing the Primary Key in MongoDB Collection/How to Reset the Primary Key Sequence ID in PostgreSQL?/PostgreSQL – Export PostgreSQL Table to CSV file/PostgreSQL – Removing Temporary Table/PostgreSQL – CREATE TABLE AS/PostgreSQL – Temporary table name/PostgreSQL – DROP TABLE/PostgreSQL – DROP ROLE/PostgreSQL – DROP TABLESPACE/PostgreSQL – Drop Procedure/PostgreSQL – DROP INDEX/PostgreSQL – CREATE INDEX/What is an Index in PostgreSQL?/Difference between MySQL and PostgreSQL/Difference between MariaDB and PostgreSQL/Difference between Elasticsearch and MariaDB/Difference between Couchbase and MariaDB/Difference between Oracle and Couchbase/Difference between RDBMS and Couchbase/Difference between Couchbase and Redis/Difference between Couchbase and IBM Db2/Difference between PostgreSQL and IBM DB2/Difference between MS SQL Server and IBM DB2/Difference between IBM DB2 and MongoDB/Difference between SQLite and IBM DB2/Difference between MySQL and IBM Db2/SQL Tutorial/How to SQL Select from Stored Procedure using SQL Server?/SQL Query to Rename Stored Procedure/Basic Query in PL/SQL procedure/How to Write a Normal Select Procedure in PostgreSQL?/PostgreSQL – SELECT INTO/How to Select Dates Between Two Dates in PostgreSQL?/How to Select Row With Max Value in PostgreSQL/PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows/PostgreSQL – IS NULL operator/PostgreSQL – NOT LIKE operator/SQL LIKE Operator/SQL Server Max Function Takes Two Values Like Math.Max in .NET/SQL Server NULL Values/NULL values in SQL/How to Set a Column Value to Null in SQL?/SQL IS NOT NULL Operator/SQL | NULL functions/SQL – SELECT NULL/SQL Query to Exclude Null Values/How to Filter Null Values to Last While Sorting Ascending in SQL?/How to Insert Rows with NULL Values in SQL?/SQL Query to Insert Multiple Rows/SQL Query to Add Email Validation Using Only One Query/SQL Query to Add an Agent Parameter in a Database/SQL Query to Get First and Last Day of a Month in a Database/SQL Query to Convert Date Range to Per Day Records/SQL Query to Check if Date is Greater Than Today in SQL/SQL Query to Get a Financial Year Using a Given Date/How to Group by Day, Date, Hour, Month or Year in SQL Server/SQL Query to Convert DateTime to Date in SQL Server/SQL Query to Convert Date Field to UTC/SQL Query to Convert Rows to Columns in SQL Server/SQL Query to Count the Number of Rows in a Table/SQL Query to Delete Duplicate Rows/SQL Query to Find Duplicate Names in a Table/How to Query Two Tables For Duplicate Values in SQL?/SQL – SELECT from Multiple Tables with MS SQL Server/How to Update Two Tables in One Statement in SQL Server?/Find all Tables that Contain a Specific Column Name in SQL Server/Copy Tables Between Databases In SQL Server/List All Databases in SQL Server/Top 10 SQL Databases To Learn in 2025/Top 10 Reasons to Learn Java in 2025/Top 5 Reasons to Learn Game Development/10 reasons to learn Python in 2019/Top 7 Reasons to Learn Golang/Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter/Is it Worth to Learn Python in 2020?/Python vs Java – Who Will Win the Battle in 2020?/How to Become a Freelance Programmer in 2020?/4 Personality Traits of a Great Programmer/Why Learning Web Development is a Great Career Move in 2025?/30+ Web Development Projects with Source Code [2025]/Top 10 Golang Project Ideas with Source Code in 2025/Top 10 Vue.js Project Ideas for Beginners in 2025/Top 10 Docker Projects Ideas for Beginners [2025]/Top Gen AI Project Ideas for Beginners in 2025/Top 12 Spring Project Ideas For Beginners [2025]/Top 10 R Project Ideas for Beginners in 2025/Top 10 Rust Project Ideas With Source Code in 2025/Top 10 C# Project Ideas for Beginners in 2025/Top 10 GoLang Projects Ideas for Beginners in 2025/The Future of Golang in 2025 [Top Trends and Predictions]/The Future of 3D Modeling in 2025 [Top Trends and Predictions]/The Future of Robotics in 2025 [Top Trends and Predictions]/10 Essential Skills for a Successful Career in Robotics Engineering/Software Testing Career Path – Skills, Salary and Growth/Why Non-Linear Career Paths are a Great Option to Achieve Career Success?/How to Build a Great Product from Scratch?/UI Design Process: 6 Easy Steps To Create Great UI/Content Improvement League 2024: From Good To A Great Article/Rank Improvement Course for GATE Exam: Crack GATE Now!/GATE DA 2025 Answer Key (Now Available) Download PDF/GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence/200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025/How To Ace Hackathons/How to Use the STAR Method To Ace Your Job Interview?/Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation/10 Ways to Find and Get Your Dream Internship/How to land your Dream Job: Three 90 Challenge/10 Tips For Landing Your Dream Internship/2-Page Resume Ship or Sink Your Dream Job Opportunity!/Things every final year student should do to get a job in their dream company/Things one should know before choosing Computer Science as their major/Why Developers Should Have a YouTube Channel?/Why Golang is so Popular Among Developers?/10 Most Popular Big Data Analytics Tools/Big Challenges with Big Data/Data Analysis Challenges in the Future/What is the impact of AI on the future of data science?
https://www.geeksforgeeks.org/what-is-the-impact-of-ai-on-the-future-of-data-science?ref=asr10
Languages
What is the impact of AI on the future of data science?
PHP | IntlChar::isUWhiteSpace() Function, Difference between MySQL and IBM Db2, DevOps Prerequisites [2025] - Things to Learn Before DevOps, Benefits of Progressive Web Apps for Business, Mongoose Document Model.remove() API, PHP | IntlChar::isULowercase() Function, Angular PrimeNG Form Calendar Custom Content Component, Difference between Oracle and Couchbase, Pgmagick blur() method – Python, Difference between Couchbase and IBM Db2, Mongoose Query.prototype.replaceOne() API, SQL procedure, 4 Personality Traits of a Great Programmer, GATE 2025 DA Paper Analysis 2025 - Data Science and Artificial Intelligence, SQL – SELECT NULL, PHP | IntlChar::isspace() Function, 2-Page Resume Ship or Sink Your Dream Job Opportunity!, Difference between IBM DB2 and MongoDB, PHP ord() Function, TensorFlow.js Tensor Random Complete Reference, PHP | IntlChar isdefined() Function, How to Check if a Value Exists in an Associative Array in PHP?, PostgreSQL – NOT LIKE operator, Top 10 Programming Languages of 2015, Top 10 Machine Learning Frameworks in 2025, How to populate virtuals to a mongoose model using Node.js ?, Angular PrimeNG OrganizationChart Templating, How to Write a Normal Select Procedure in PostgreSQL?, How to Select Row With Max Value in PostgreSQL, Top 7 Reasons to Learn Golang, Why Learning Web Development is a Great Career Move in 2025?, How to Populate Dropdown List with Array Values in PHP?, Mongoose | findOneAndReplace() Function, An Introduction to Freelancing: The Career Choice for Modern Millennials, Top 10 Java Frameworks in 2025, Angular PrimeNG Form Calendar Multiple Months Component, Tensorflow.js tf.Tensor class .print() Method, SQL Server Max Function Takes Two Values Like Math.Max in .NET, Difference between PostgreSQL and IBM DB2, Difference between Elasticsearch and MariaDB, Pgmagick wave() method – Python, PostgreSQL – CREATE INDEX, Difference between MySQL and PostgreSQL, Top 7 Web Development Myths That You Must Know, 10 Most Popular Big Data Analytics Tools, Benefits of Using Modern Learning Apps, NULL values in SQL, PostgreSQL – Export PostgreSQL Table to CSV file, Node.js assert.notDeepStrictEqual() Function, 10 reasons to learn Python in 2019, Top 5 Reasons to Learn Game Development, SQL Query to Convert Date Range to Per Day Records, Data Analysis Challenges in the Future, Mongoose Query.prototype.remove() API, Angular PrimeNG Splitter Templates, Mongoose count() Function, Mongoose Document Model.prototype.db API, Software Testing Career Path – Skills, Salary and Growth, AngularJS angular.isDefined() Function, SQL Query to Convert Date Field to UTC, Content Improvement League 2024: From Good To A Great Article, 12 Things You Must Do to Get a Junior Web Developer Job in 2025, List All Databases in SQL Server, Top 7 Big Data Frameworks in 2025, Mongoose Query API.prototype.getUpdate() Method, Mongoose Query API.prototype.getOptions() Method, How to Group by Day, Date, Hour, Month or Year in SQL Server, PHP IntlChar::charName() Function, Why Non-Linear Career Paths are a Great Option to Achieve Career Success?, Mongoose Document Model.inspect() API, Introduction to Programming Languages, random.gauss() function in Python, Angular PrimeNG Splitter Styling, Top 10 Vue.js Project Ideas for Beginners in 2025, Find all Tables that Contain a Specific Column Name in SQL Server, PHP array_keys() Function, Mongoose Query.prototype.update() API, Top 7 Database You Must Know For Software Development Projects, random.gammavariate() function in Python, Difference between Couchbase and MariaDB, Mongoose Model.create() API, Mongoose | estimatedDocumentCount() Function, PostgreSQL – DROP TABLESPACE, Top 10 Golang Project Ideas with Source Code in 2025, PHP | IntlChar::isIDIgnorable() Function, Node.js URL.toJSON() Method, Python | random.sample() function, Difference between Couchbase and Redis, Mongoose Populate() Method, Copy Tables Between Databases In SQL Server, 7 Myths About Full Stack Development That You Must Know, How to get weighted random choice in Python?, random.lognormvariate() function in Python, PHP | IntlChar::islower() Function, The Future of Robotics in 2025 [Top Trends and Predictions], PostgreSQL – Drop Procedure, Top 12 Spring Project Ideas For Beginners [2025], Sort an Associative Array by Key in PHP, Mongoose Document.prototype.$isNew API, Big Challenges with Big Data, Wand sample() function – Python, PostgreSQL – SELECT INTO, Mongoose Queries Model.replaceOne() Function, GATE DA 2025 Answer Key (Now Available) Download PDF, Angular PrimeNG Form Calendar Touch UI Component, SQL Query to Rename Stored Procedure, PHP hexdec( ) Function, How to Sort a Collection by Date in MongoDB?, Angular PrimeNG Form AutoComplete Force Selection Component, Node.js assert.doesNotMatch() Function, How to Reset the Primary Key Sequence ID in PostgreSQL?, Top Gen AI Project Ideas for Beginners in 2025, Top 10 Flutter Packages That You Must Know, Random sampling in numpy | random() function, Angular PrimeNG Form Calendar Selection Mode Component, Node.js GM swirl() Function, The Future of Golang in 2025 [Top Trends and Predictions], How does Query.prototype.comment() work in Mongoose ?, Angular PrimeNG Splitter Component, Cluster Sampling in Pandas, Pgmagick swirl() method – Python, Why Developers Should Have a YouTube Channel?, SQL Query to Check if Date is Greater Than Today in SQL, MongoDB insertOne() Method – db.Collection.insertOne(), The Future of 3D Modeling in 2025 [Top Trends and Predictions], Mongoose findOneAndUpdate() Method, Mongoose Document Model.prototype.schema API, SQL Query to Get a Financial Year Using a Given Date, Mongoose Query.prototype.limit() API, How to Use the STAR Method To Ace Your Job Interview?, Tensorflow.js tf.notEqual() Function, ReactJS TestRenderer.toJSON() Method, PostgreSQL – DROP ROLE, Difference between MariaDB and PostgreSQL, Mongoose Document Model.prototype.modelName API, Node.js assert.notEqual() Function, Top 10 Advance Python Concepts That You Must Know, AngularJS angular.toJson() Function, Things one should know before choosing Computer Science as their major, Why Golang is so Popular Among Developers?, PHP | IntlChar::forDigit() Function, Python vs Java – Who Will Win the Battle in 2020?, Mongoose Query.prototype.findOneAndUpdate() API, Mongoose Document.prototype.directModifiedPaths() API, Top 7 Progressive Web App Development Frameworks [2025], Top 10 C# Project Ideas for Beginners in 2025, 8 DevOps Best Practices That You Must Know, Wand – blur() function in Python, 10 Ways to Find and Get Your Dream Internship, Top 10 Python REST API Frameworks in 2025, UI Design Process: 6 Easy Steps To Create Great UI, Difference between SQLite and IBM DB2, Top 10 JavaScript Frameworks to Use in 2025, How to Query Two Tables For Duplicate Values in SQL?, How to Get All Keys of an Associative Array in PHP?, 30+ Web Development Projects with Source Code [2025], Top 10 Reasons to Learn Java in 2025, Tensorflow.js tf.Tensor .toString() Method, Top Dying Programming Languages in 2020, Top 10 Python Frameworks That You Must Know in 2024, PHP octdec( ) Function, Tensorflow.js tf.Sequential Class, PHP | IntlChar::charDigitValue() Function, SQL Query to Find Duplicate Names in a Table, How to land your Dream Job: Three 90 Challenge, Mongoose Document Model.bulkWrite() API, Mongoose Document Model.prototype.save() API, Bridge the Gap Between Engineering and Your Dream Job – Complete Interview Preparation, Top 10 Deep Learning Tools You Must Know [2025], How to Build a Great Product from Scratch?, 7 Famous Apps Built on Node.js: Reasons and Benefits, Angular PrimeNG Form Calendar Popup and Inline Component, How to sort an Array of Associative Arrays by Value of a Given Key in PHP ?, SQL Query to Insert Multiple Rows, How to Update Two Tables in One Statement in SQL Server?, PHP IntlChar::ord() Function, Mongoose Document Model.listIndexes() API, SQL Tutorial, Primer CSS Dropdown Options, Angular PrimeNG Form Calendar Time Component, Top 10 SQL Databases To Learn in 2025, Mongoose Query.prototype.findOneAndRemove() API, Mongoose Query.prototype.setQuery() API, How to Filter Null Values to Last While Sorting Ascending in SQL?, How to Become a Freelance Programmer in 2020?, How does Query.prototype.getUpdate() work in Mongoose?, How to Get All Values from an Associative Array in PHP?, Top 10 DevOps Programming Languages You Must Know, PostgreSQL – CREATE TABLE AS, SQL Query to Delete Duplicate Rows, Mongoose Query.prototype.elemMatch() API, Sampling Theory, Top 10 Backend Technologies You Must Know, Top 10 Programming Languages for Blockchain Development, Mongoose Document Model.exists() API, Angular PrimeNG Form AutoComplete Templating Component, How to Select Multiple Options at once in Dropdown list in HTML?, PostgreSQL – DROP TABLE, How does Query.prototype.elemMatch() work in Mongoose ?, How to Changing the Primary Key in MongoDB Collection, Mongoose Query.prototype.toConstructor() API, How to check an array is associative or sequential in PHP?, What is an Index in PostgreSQL?, Tensorflow.js tf.Tensor class .dataSync() Method, How To Ace Hackathons, AngularJS angular.isFunction() Function, Mongoose Document Model.prototype.collection API, Angular PrimeNG Form Dropdown Advanced with Templating, Filtering and Clear Icon Component, Mongoose Document.prototype.toJSON() API, MongoDB – db.collection.findOneAndReplace() Method, Mongoose Document Model.countDocuments() API, Basic Query in PL, Tensorflow.js tf.tensor3d() Function, Mongoose | countDocuments() Function, SQL Query to Add an Agent Parameter in a Database, Mongoose Document Model.count() API, SQL Query to Get First and Last Day of a Month in a Database, Languages, Mongoose Document Model.estimatedDocumentCount() API, PostgreSQL – IS NULL operator, PostgreSQL – Installing PostgreSQL Without Admin Rights on Windows, Is it Worth to Learn Python in 2020?, 10 Essential Skills for a Successful Career in Robotics Engineering, Things every final year student should do to get a job in their dream company, Mongoose Document Model.prototype.deleteOne() API, Top 10 Fastest Programming Languages, Mongoose | exists() Function, SQL IS NOT NULL Operator, Mongoose Query API.prototype.writeConcern() Method, 7 VS Code Tricks That You Must Know, Mongoose | where() Function, Grouping Dropdown Options Using ReactJS, How to Get the Latest Record from MongoDB Collection, 5 Most Difficult Programming Languages of the World, SQL Query to Convert Rows to Columns in SQL Server, Tensorflow.js tf.Tensor Class, SQL LIKE Operator, What is the impact of AI on the future of data science?, Top Data Science Trends You Must Know in 2024, How to detect if a dropdown list is a multi-select using jQuery?, Difference between RDBMS and Couchbase, Angular PrimeNG Form Dropdown Disabled Options Component, Mongoose | replaceOne() Function, or days Component, Tensorflow.js tf.print() Function, SQL Query to Exclude Null Values, How to SQL Select from Stored Procedure using SQL Server?, SQL Server NULL Values, SQL | NULL functions, random.expovariate() function in Python, Top 5 Features of Java 17 That You Must Know, Random sampling in numpy | random_sample() function, Angular PrimeNG Form Dropdown Custom Content Component, Top 10 GoLang Projects Ideas for Beginners in 2025, PHP | IntlChar digit() function, Mongoose Document Model.populate() API, How to Insert Rows with NULL Values in SQL?, Mongoose Document Model.prototype.remove() API, PostgreSQL – DROP INDEX, SQL Query to Add Email Validation Using Only One Query, SQL – SELECT from Multiple Tables with MS SQL Server, Top 10 R Project Ideas for Beginners in 2025, 200 Days of GATE CS : The Ultimate Study Plan to Ace GATE 2025, Difference between MS SQL Server and IBM DB2, SQL Query to Count the Number of Rows in a Table, Top 10 Docker Projects Ideas for Beginners [2025], PostgreSQL – Removing Temporary Table, Tensorflow.js tf.TensorBuffer Class, How to Select Dates Between Two Dates in PostgreSQL?, SQL Query to Convert DateTime to Date in SQL Server, Angular PrimeNG Form Calendar Disable specific dates and, Top 10 Python Developer Skills That You Must Know in 2024, Python Random – random() Function, Rank Improvement Course for GATE Exam: Crack GATE Now!, 10 Tips For Landing Your Dream Internship, PostgreSQL – Temporary table name, Top 10 Deep Learning Algorithms in 2025, Convert an object to associative array in PHP, Mongoose Queries Model.deleteOne() API, Pgmagick flip() method – Python, Top 10 Rust Project Ideas With Source Code in 2025, PHP decoct( ) Function, Mongoose | findOneAndRemove() Function, How to Set a Column Value to Null in SQL?, Is Flutter Worth Learning? Top 7 Reasons to Learn Flutter, Angular PrimeNG Introduction, How to change a select’s options based on another dropdown using React?, Mongoose Query.prototype.updateMany() API, Top 10 Frameworks for Web Applications in 2025, PHP | gmp_xor() Function
GeeksforGeeks
[-0.0214152485, -0.00343944039, -0.0118791061, 0.0188294183, 0.0364873558, -0.028315559, 0.00745033519, -0.00561096659, 0.0260440279, 0.0520023406, 0.0287870094, -0.038116, 0.0338586643, -0.0219152719, -0.0166864656, -0.00498236716, -0.000844234426, 0.0144720795, -0.00463949423, -0.0338300914, -0.0259583108, -0.0430876538, -0.0261011738, -0.0175150726, -0.0264869053, 0.0182579644, -0.00602884265, 0.0104218973, -0.036287345, 0.0236439202, 0.00774320541, 0.00232510455, 0.0467735305, -0.0459734946, -0.0236582067, -0.0156007018, 0.0129648689, -0.0213295314, 0.00617170613, 0.025101129, 0.0333443582, 0.00658601057, 0.0202294812, -0.0107147675, -0.00886468403, -0.00877182279, -0.049145069, -0.0314585567, 0.00183936849, 0.00655029481, -0.0168007556, -0.0356016, 0.0414304361, 0.0262726098, 0.0130148707, 0.00784321, 0.0295727588, -0.0332300663, 0.0317728594, 0.009064693, 0.0119862538, 0.00579668907, 0.00475378521, -0.000620117178, 0.000423010089, -0.00994330458, -0.0433448069, 0.0260011703, -0.00213402463, 0.0108647747, -0.0121434033, 0.0260440279, 0.0130648734, -0.00618956424, 0.00234117662, -0.0110504972, -0.0203152, 0.0190437138, -0.0112647926, 0.035973046, 0.00956471637, 0.0150006749, -0.0121005438, -0.00190722861, 0.05674541, 0.0136934733, 0.00377159822, -0.0524023585, 0.0131005896, 0.00300549227, -0.0280584041, -0.00347158476, -0.00212509558, -0.036258772, -0.0405446813, 0.00195544516, -0.0289298724, 0.00829323, -0.0313728414, 0.025101129, 0.0103004631, 0.0334586464, 0.0605170093, -0.0297441948, -0.00915755518, -0.0520880558, -0.0347444192, 0.0135434661, 0.00597169716, 0.0523452125, -0.0166436061, -0.0156864207, -0.0333729312, -0.0034197967, -0.0360301919, -0.0179722365, 0.0167007521, -0.0413732901, 0.0240296517, -0.0195008777, -0.00272869412, 0.0485736132, 0.0289584454, 0.0729747117, -0.00272155087, 0.0688602403, -0.0260868873, -0.0140506318, 0.025043983, 0.0165007412, 0.00511451578, 0.0357444659, -0.0227581672, 0.0221867114, -0.0014545297, -0.0170864835, 0.0318871476, 0.0269583557, -0.0110862125, -0.0229296032, -0.0329443403, -0.0248296876, -0.0138077643, 0.000637082208, 0.00715389336, 0.0112719359, -0.0468306765, 0.0707460418, -0.0165721737, 0.012193406, -0.0446591526, 0.0188865643, 0.0104290405, -0.0129720122, 0.017300779, -0.0148006659, 0.028344132, 0.0115005169, -0.0360873379, -0.0141363498, 0.0342015401, -0.00388231757, 0.000999152078, 0.0143077867, -0.000794678577, 0.0180436689, 0.017643651, -0.00412161415, -0.0600598454, 0.0587455, -0.0254297145, -0.00398946507, -0.0184722599, 0.000813429418, -0.0064467187, 0.00967900641, 0.00762177119, 0.00912183896, -0.0338586643, 0.00120094686, -0.0126862852, -0.000332827476, 0.0342872553, 0.0220295619, 0.0298584867, 0.017986523, 0.06366, 0.000380374258, 0.0229296032, -0.00552882, -0.000870128395, -0.0236153472, 0.0397732183, 0.0189437084, -0.00721461, -0.014172066, -0.0229296032, 0.027972687, -0.0133506, 0.0035858755, -0.0328300484, -0.0576311648, -0.0056288247, 0.0388017446, 0.0277298186, 0.00238760747, -0.00566454045, -0.0325728953, 0.0314871296, 0.00497165229, -0.0244868156, 0.00526809413, -0.00417875918, -0.0454306155, 0.0134577481, 0.0116719538, -0.0158435702, -0.00949328393, -0.042887643, -0.00933613442, -0.0440019779, 0.0298299138, 0.021286672, -0.0328014754, -0.0450877436, -0.0388303176, 0.000511183694, 0.00264297612, 0.0138077643, -0.0233581942, 0.0257154424, 0.0245439615, 0.00208937959, -0.010271891, 0.0377445556, 0.0160435792, 0.00351444376, -0.00519309053, -0.0606312975, 0.0122005483, 0.0119362511, -0.00536452699, -0.00839323457, -0.0288441554, -0.0125791375, -0.00108219148, 0.0377731286, 0.0438305438, 0.0378588438, 0.0670315847, 0.0166436061, -0.0267440602, 0.0118291033, 0.0207009315, -0.00765034417, 0.00528595224, 0.0111219287, 0.0276726726, 0.00350908632, -0.0189865679, 0.0404303893, -0.00604312913, 0.00592169492, 0.0670887306, -0.0248868335, -0.0132720256, 0.0455734767, 0.00649314933, 0.0420304611, -0.0183865409, 0.00594312465, -0.0131505914, 0.00948614068, -0.0157007053, -0.0240153652, 0.00595383905, 0.000859860098, 0.00274298061, 0.042516198, 0.0295156129, 0.0137791913, -0.035315875, 0.0786321089, 0.0301727857, -0.0333157852, -0.0236153472, -0.017443642, -0.0310299676, -0.0701174363, -0.0292156, -0.0154578378, -0.0149149569, -0.00387874595, 0.0175579321, 0.012650569, -0.0150863929, 0.000249564793, 0.0231724717, -0.0267726332, 0.0169293322, 0.00231617549, -0.021400962, 0.0110433539, 0.0204152036, -0.0201009046, 0.0100433091, 0.0272440817, 0.0121862628, 0.0194008723, -0.00586812105, 0.0208580811, 0.028144123, -0.0202294812, -0.0204437766, 0.0168007556, 0.0730318576, 0.0180722419, 0.000120987585, -0.0195008777, -0.0146720884, 0.0311728306, 0.00779320765, -0.0465163775, 0.0540595725, -0.0181008149, -0.00843609404, -0.0297727678, 0.021258099, 0.0183008239, -0.0333443582, -0.00931470469, -0.02501541, -0.00706817489, 0.0204580631, 0.0398875065, -0.0334300734, -0.0209009405, 0.0146578019, -0.0346301273, 0.0215295404, -0.0134077463, -0.024529675, -0.0514308847, -0.020543782, 0.006957456, -0.0340301022, 0.000904504966, 0.0166150331, 0.00592169492, 0.0294870399, 0.0014322073, 0.00109826366, -0.00426090602, 0.00155096257, 0.00529309502, 0.010614763, 0.0057145427, -0.0132220229, -0.018186532, 0.0159721468, 0.0150863929, -0.0279155411, -0.0365159288, 0.000695567, -0.00809322111, -0.014286357, -0.0207580756, 0.000785303186, 0.0224867258, -0.000603598601, 0.00484664645, 0.0193865858, 0.00782892387, 0.0142434975, -0.042887643, 0.00438591139, 0.00402875245, -0.0182008184, -0.00932899117, 0.0213581044, 0.0278155375, 0.0145649407, -0.0191294327, 0.0640600249, -0.0142792137, 0.00105361885, 0.0117005259, -0.00924327318, -0.013714903, 0.0231153257, -0.0354015939, 0.000941113743, 0.0124577032, -0.0516880378, -0.00151167519, 0.000434394547, 0.0320871584, 0.0117005259, 0.0390589, -0.0303156488, 0.0129577257, 0.0315442756, 0.0121148303, 0.0157149918, -0.0299442038, -0.00633242773, -0.0150006749, -0.0232724752, 0.0073039, 0.0179150924, 0.0134648914, 0.00394660607, -0.0325728953, 0.00848609582, 0.00842180755, 0.0185722634, 0.0195723083, 0.0242010877, -0.00343586877, 0.0132577391, 0.0162150152, 0.0173150636, 0.0304585136, 0.0116148079, -0.0117148124, 0.0159007143, -0.0355444551, -5.14811109e-05, -0.0043001934, -0.0273869466, -0.0022733165, 0.0132648824, 0.0223295763, 0.0260011703, -0.00508594327, -0.0148578109, 0.0454877615, 0.0308585316, 0.00442162761, -0.0171579141, -0.0123005528, -0.00350372912, 0.00380731421, -0.028915586, -0.0755462572, 0.00787178241, -0.0256868694, -0.0176007915, -0.021115236, -0.0452020317, -0.0462020785, 0.0409732722, -0.0496308021, -0.00119291083, 0.0176293645, -0.0111076422, 0.00943613891, -0.0110933557, 0.0552024841, -0.00995759107, -0.0015750709, 0.0394589193, 0.0223152898, 0.0306585226, 0.0403732434, -0.0127505735, -0.0475735702, -0.0253868569, -0.01400063, 0.0141792092, -0.0128505779, -0.0022304575, 0.0434305258, 0.0496593751, 0.0160721522, 0.0244153831, 0.0240010787, 0.00284298509, -0.00780749414, -0.01058619, 0.0476592854, 0.042916216, 0.0400589444, -0.04905935, -0.0102933198, 0.0363730639, 0.0114005124, 0.00878610928, -0.0018009739, -0.0235296302, -0.042516198, -0.0197151732, 0.00121255452, -0.0125434212, -0.0210009441, -0.00652172184, -0.0180293825, -0.012307696, 0.010500472, 0.0146149434, -0.0111505017, -0.017672224, -0.0550881922, 0.00431805151, -0.0280869771, 0.00615741964, 0.0197294597, -0.0302299317, 0.00264833332, 0.0221581403, -0.00648243446, 0.0107790567, -0.00694316952, 0.035887327, 0.00590026518, 0.0458306335, -0.0154435514, 0.0284298509, -0.012079115, -0.000163846649, 0.0190008543, 0.0167007521, 0.0298870578, 0.012393415, -0.0123505555, 0.000541095738, 0.0180722419, 0.00565382559, 0.00977186766, -0.0113576539, -0.00888611376, -0.00132148806, -0.0143363588, -0.00647171959, 0.00751462393, -0.000521005597, 0.0111362152, 0.0215581134, 0.0138577661, -0.00140006293, -0.0456591956, 0.0207295045, -0.0134577481, 0.00997187663, 0.0134434616, 0.00211080932, 0.0324014574, -0.00706103165, -0.000648243469, -0.00382874371, 0.012393415, -0.00536809862, 0.0222867168, 0.00846466608, 0.00232867617, 0.0166293196, -0.00127148582, -0.0363730639, -0.0289441589, -0.0113576539, -0.0218866989, -0.018529404, -0.0171436276, 0.0271012187, 0.00330550573, -0.0235153437, 0.0102647478, 0.028458422, -0.0202294812, 0.00113308663, -0.00789321214, -0.0143649317, 0.00175275735, -0.021115236, 0.0248011146, 0.0270583592, 0.0134434616, -0.0244010966, 0.00972186588, 0.0268012062, 0.00902183447, 0.00585026294, 0.020743791, 0.0251154155, 0.0384874456, -0.0267440602, -0.00269297836, -0.0141292065, 0.00197687466, -0.0151292523, -0.00714317849, 0.0365159288, -0.0277155321, -0.0164150242, -0.0106790522, 0.0325443223, 0.0261583198, 0.00237867841, 0.00903612096, -0.0302585047, 0.0279869735, -0.00119380374, 0.0323157385, 0.0292156, -0.034544412, -0.0156007018, -0.0303156488, 0.0263011828, 0.0286012869, 0.0154292658, -0.0113862269, -0.017757941, 0.0271297917, 0.00708960462, 0.0104790423, -0.0279155411, 0.00156346313, 0.0163721647, -0.0399160795, 0.00245011016, -0.00862181652, 0.00222331425, 0.00368588, -0.0075217667, 0.0234439112, 0.0228438843, 0.00148756686, -0.0197294597, -0.0033769377, 0.00504665542, -0.00338408072, -0.012536278, -0.0231153257, -0.0078003509, 0.0237153526, -0.0123791285, -0.00865753181, 0.012307696, -0.0147578064, -0.00979329739, 0.00184294, 0.0183436815, 0.0013929198, 0.154864103, 0.0038716027, 0.0405446813, -0.028315559, -0.00428947853, 0.0203437731, 0.0122148348, 0.00294120377, -0.00436448213, -0.0057895463, 0.0287584364, -0.0128434347, -0.034544412, 0.0154435514, -0.00787178241, 0.0259725973, 0.0382588655, 0.00131613063, 0.000242644848, 0.017615078, 0.00256261532, 0.0157292783, -0.0235867742, 0.0258154459, 0.00328586204, 0.0197437443, 0.0126077095, 0.0188865643, -0.0348301381, -0.0142792137, 0.0257297289, 0.0119791105, -0.017643651, 0.00842180755, 0.0327443294, 0.00322157354, -0.0337158032, -0.021772407, -0.00284119928, -0.00350372912, -0.00447163, -0.0221581403, -0.00706460327, -0.0222438574, 0.0188151319, -0.00578240305, 0.00628956873, -0.0153149748, -0.00213759625, 0.0236439202, -0.00018482974, 0.00149917463, -0.00898611825, -0.0198723227, -0.0295156129, -0.0145220822, -0.0222724304, -0.000171436288, -0.0167150367, -0.0338015221, -0.00388588896, -0.0207295045, 0.0107504837, 0.00930756144, 0.00987901539, -0.0314014107, 0.00534666888, 0.0143077867, 0.0155864153, -0.0232439023, 0.010614763, 0.0217295494, 0.0444591418, 0.00649314933, 0.00255725789, -0.010557618, -0.00870753452, 0.0142363543, 0.014172066, 0.0181008149, -0.0310299676, -0.0260726, -0.00967900641, -0.00777177792, 0.0133077418, -0.0369445197, -0.00433233753, 0.0354873091, -0.0238439292, 0.0190151408, -0.00561453821, -0.0149435289, -0.01710077, 0.0155006973, 0.0128934374, 0.0038716027, 0.0141220633, 0.0336300842, -0.0210295171, -0.0011482659, 0.0138291931, 0.00513594551, 0.0232724752, 0.00324300304, 0.00902897771, -0.0156578477, 0.0033822949, 0.0225010123, -0.0149149569, 0.057402581, -0.0191865768, -0.00068262, -0.0137006165, -0.0230438933, -0.00127952185, -0.000287066476, -0.00188222749, 0.0146578019, 0.0584597737, -0.003607305, 0.0185151193, 0.0294013228, -0.014200639, -0.0115505196, 0.0109719224, 0.0270297863, -0.0261726063, 0.0383160077, 0.000777267094, 0.0568597019, 0.00894326, -0.0111219287, 0.00318585755, 0.00441091275, -0.0447734408, -0.0116719538, -0.00227688812, -0.0350587182, 0.0199437533, -0.0322585925, 0.0117576718, -0.0125291348, 0.00597169716, 0.0235867742, -0.0200723317, 0.0235153437, 0.0470021144, -0.00837894809, 0.0233581942, -0.00757176895, 0.0117576718, 0.00110272819, -0.00142863567, -0.0212723855, -0.00870039128, -0.00405018218, -0.0485164672, 0.0136291841, -0.0229438897, -0.014143493, -0.0172007736, -0.0235153437, -0.0347158462, -0.01431493, -0.0314299837, 0.0260154549, 0.0178579465, -0.00582883367, 0.0152149703, -0.0167293232, 0.021372389, 0.0180293825, -0.0194294453, -0.0159292873, 0.0129505824, -0.0457734875, 0.00255190046, 0.0167436097, -0.0269012097, -0.017443642, -0.00704674562, -0.0102933198, 0.0319157206, -0.00180543831, 0.00526095089, 0.0384874456, -0.00960043166, 0.0230296068, -0.0153578334, -0.0228438843, 0.0213866755, -0.0263440423, 0.0125791375, 0.00897897501, -0.00739318971, -0.005278809, 0.0108076287, -0.00149203138, 0.0190865733, -0.00847180933, 0.00987901539, 0.0148863839, 0.0199151821, -0.0111933602, -0.0280584041, 0.0158578567, 0.0433733799, 0.00395374931, -0.0308871027, -0.0143792182, 0.01442922, -0.0296299048, 0.0336015113, 0.0341443941, -0.00260547432, 0.0126791419, 0.0160150062, 0.000523237803, 0.000425912, -0.0042573344, 0.00213402463, 0.0119362511, -0.0215866845, -0.0273726601, -0.0155292703, -0.0221009944, -0.0194008723, -0.00612884713, -0.00687530916, 0.00720746722, 0.0357444659, -0.0010241532, -0.00351087213, 0.027629815, 0.00393231958, -0.0207723621, -0.0183865409, 0.0191008598, 0.00850752555, -0.010986208, 0.0047645, -0.00280369748, -0.00295549, -0.0333443582, -0.0200437587, 0.0014750663, -0.0280584041, -0.0334586464, 0.0254011434, -0.00776463514, -0.014486366, 0.0100361658, 0.0300870668, 0.000271887227, 0.0197008867, -0.000447341561, 0.0058002607, 0.00651457859, 0.0135148931, -0.0198151767, 0.00386445946, 0.0108076287, -0.0206723586, 0.0169007611, -0.0228724573, 0.0136077553, -0.0167293232, -0.00285905716, 0.0120648285, -0.0264440458, -0.014172066, 0.0121291168, 0.00385731645, -0.0314299837, -0.0257725883, 0.0154006928, -0.0329443403, 0.0353444479, 0.00315371319, 0.00609313138, 0.0147578064, -0.024358239, -0.00871467777, -0.0247153975, 0.00587526429, -0.0218581259, -0.0143363588, 0.00451091724, 0.0405446813, 0.017300779, -0.0124291303, 0.00271262205, -0.00122951961, -0.0348015651, 0.063259989, -0.0342586823, 0.0199866127, -0.0183722544, 0.00860038679, -0.00886468403, -0.00582883367, -0.0397160724, -0.00457163434, 0.0314585567, 0.00280548329, 0.0168007556, 0.00782892387, -0.0132005941, 0.0232867617, 0.0260583144, -0.0136506138, -0.0170436241, -0.0405161083, -0.0237724986, -0.0252297055, -0.0141577795, -0.00258404482, -0.0120362556, 0.0172864925, 0.00407518307, -0.00371802435, 0.0169293322, 0.000766552344, 0.0173436366, -0.00753605319, -0.0119433943, -0.017615078, -0.00462878, -0.0234581977, 0.00407875469, -0.00615741964, 0.0033822949, -0.0118219601, -0.0198294632, -0.0276726726, -0.0120433988, -0.00485021807, -0.017586505, 0.000842002162, 0.0308585316, -0.0195437353, 0.0263154693, -0.0624028072, 0.0402018093, -0.0184436869, -0.0378017, 0.0257154424, -0.0149435289, 0.00556810759, -0.0136934733, -0.0239153616, -0.0255868658, -0.00815750938, -0.00275190943, 0.0232724752, -0.00268047769, 0.00368588, -0.0116933826, -0.0205294956, 0.00675030379, 0.0128291482, 0.0212009531, 0.0478592962, 0.0308299586, -0.00936470646, -0.0206009261, 0.0181722455, -0.0104576135, -0.0172579195, -0.0261726063, -0.0187294129, 0.00300370646, 0.0213009585, -0.00205009221, -0.0307156667, 0.00132327375, -0.057088282, 0.00491807843, -0.00533952611, 0.00928613171, 0.0316014215, 0.0222009979, 0.0121719763, 0.0229438897, 0.0346872732, -0.00956471637, -0.0192008633, -0.00797178689, -0.00667172857, 0.0113576539, -0.0235439166, 0.0390589, 0.0074789077, 0.0052895234, -0.0672601685, 0.00920041371, 0.0246868245, -0.0153435469, -0.0131720211, 0.0153292613, -0.000104357372, 0.0165864602, -0.0254725739, 0.0121434033, 0.00831466, 0.0206437856, 0.0038108856, 0.0189437084, 0.00275548105, 0.00978615414, 0.00368588, -0.025444001, 0.00993616134, -0.0125291348, 0.0127148572, 0.0314871296, 0.0183151104, 0.00480021583, -0.0137577616, 0.0156149883, -0.0093004182, -0.00960043166, 0.0236439202, 0.0329157673, -0.0165864602, -0.0194151588, -0.0034412262, -0.0127291437, -0.0165864602, -0.0142792137, -0.00547167473, -0.00498593831, -0.00463592261, -0.0273298, 0.00199473253, 0.000343542226, 0.0119076781, 0.0205009226, -0.00401803805, 0.0163864512, 0.028372705, -0.0274726637, -0.0233439077, -0.00445377175, -0.00506094191, 0.0141649228, 0.00928613171, -0.0106933378, 0.00488950545, 0.010414754, 0.0246296786, -0.0271583647, 0.00326621835, 0.0107219107, 0.0802893266, -0.0125005627, -0.00388231757, -0.0241582301, -0.010643336, 0.0188579913, -0.0093004182, 0.0108576315, -0.00533952611, -0.0316014215, 0.0256297234, 0.00721461, 0.000445778976, 0.00242868066, -0.0149149569, 0.0215438269, -0.0051180874, -0.00990758836, 0.0223581493, -0.000345551263, -0.0177150816, 0.00391089031, -0.00775034865, -0.00112951512, 0.0250011254, 0.00915755518, 0.00536452699, 0.00329121947, -0.0143220732, -0.0224867258, 0.0209723711, 0.00196615979, 0.00287155784, 0.0090432642, 0.00935756415, 0.0456877686, -0.00867896155, 0.0163435917, -0.000879950298, -0.0048716478, -0.00669673, -0.00380374258, -0.0274583772, 0.0370302387, -0.0223438628, -0.0110504972, -0.00917184073, -0.0167578962, -0.00616456289, 0.0164007377, -0.00892897323, -0.00354123069, 0.0210438035, -0.0184008274, 0.00629314035, 0.041487582, -0.000833519618, -0.0125219915, -0.0038930322, -0.0163150188, -0.0002174205, -0.0160150062, 0.0251154155, -0.0347729921, -0.000662976236, 0.000596008962, -0.0139863435, 0.00651457859, 0.000706728199, -0.0163007323, -0.00641814573, 0.0190865733, -0.0028662004, 0.00252868515, 0.0151149658, 0.0257297289, 0.00400018, -0.0145649407, 0.014200639, -0.0342586823, 0.00174918585, 0.0129862987, 0.00715389336, 0.0116433809, 0.0083432328, -0.0155721288, -0.00285905716, 0.00359659037, -0.00701817265, -0.0228010248, -0.0181151014, -0.0171293411, -0.0137863345, 0.00480021583, 0.00435376726, -0.0100861676, 0.0232439023, 0.0182579644, 0.00993616134, 0.0233581942, 0.01784366, 0.0125577077, 0.00531809637, -0.00165096717, 0.0206009261, -0.00916469749, 0.00936470646, 0.0220581349, -0.0168007556, 0.0162007287, 0.0195723083, -0.0159864333, 0.0242153741, 0.00688959565, 0.0402303822, 0.00128845079, 0.0309156757, 0.0271155052, 0.0089075435, 0.0110576404, -0.0168150421, 0.0163293052, 0.00869324803, -0.00968615, 0.0147149479, 0.0289441589, 0.00672887405, -0.00053931, -0.00811465085, 0.0101647433, 0.00144649367, 0.0111719314, 0.0122576943, 0.00981472712, -0.0238153562, 0.00789321214, -0.0258011613, 0.0203294866, 0.00893611647, 0.0265011918, -0.0152149703, -0.00885039847, 6.54605319e-05, -0.0111219287, 0.0230581798, 0.00970757939, -0.0240867976, 0.0160007197, -0.0186579823, -0.0194437318, -0.0185865499, -0.0194865912, 0.0168007556, 0.0227438807, 0.0164864566, -0.0106576225, -0.0186151229, -0.00160185772, 0.021229526, 0.00105629757, 0.0223867204, 0.0308585316, 0.0273155142, -0.0185008328, -0.0457449146, 0.0134934643, 0.000123777892, 0.0163721647, 0.0212152395, 0.00149828172, -0.0199151821, 0.00264654751, 0.0315157026, -0.012907723, 0.0103647523, -0.00623242324, 0.00672887405, -0.00963614788, 0.0140434885, 0.0104719, -0.00318228593, -0.0179150924, -0.00646457635, 0.0167578962, -0.00361623405, -0.0102361748, 0.00047189623, 0.028458422, -0.00348944264, 0.0333443582, -0.0270583592, -0.000657172408, -0.0152292568, -0.00876468, 0.0134863211, 0.0238153562, -0.0112719359, -0.0209009405, -0.012050542, -0.00362159149, -0.0229010303, -0.0225295853, -0.000701370824, -0.00500379642, 0.00388946058, -0.0206866451, -0.0116719538, 0.0030483515, -0.00802179, -0.00288048666, 0.0208152216, -0.021629544, -0.00179650937, -0.0209438, -0.00275369524, -0.0244582426, -0.0169864781, -0.0191294327, 0.012621996, 0.000852270459, -0.0107433405, -0.00779320765, 0.000300236716, 0.017672224, 0.0343729742, -0.00996473432, 0.0231153257, -0.0116148079, 0.00488236267, 0.0036019478, -0.0441448428, 0.0267154872, 0.00627885386, 0.0014322073, 0.00780749414, -0.0105719045, 0.0119076781, -0.0227010213, -0.00481807394, 0.0218866989, 0.0330872, 0.0360587649, -0.0202009082, -0.00508237164, -0.0104504703, 0.000164404715, 0.0138434796, -0.0234296247, -0.00106165488, -0.00130363007, -0.00719318073, -0.0235296302, 0.0260154549, -0.0329443403, 0.00670387316, -0.00482164556, -0.000221103692, 0.0132005941, -0.0253725704, 0.0011071926, 0.0144935092, 0.00566096883, -0.00591455167, 0.0120291123, 0.00508594327, 0.00280726911, -0.0157721378, -0.0186436959, -0.0108219152, 0.0185722634, -0.00169471907, 0.00542881573, -0.0155292703, -0.00822894182, 0.000151904154, 0.000250680925, -0.00316621386, -0.00213223882, -0.0233724806, -0.0106361927, -0.00429662177, 0.0361730568, 0.0176579375, -0.0273869466, -0.018186532, -0.00428233529, -0.0195580218, -0.0241725165, 0.0133720301, -0.0268869232, 0.0082789436, 0.007000315, -0.00264119031, 0.00619313587, -0.0128077185, 0.0478878692, -0.0152292568, -0.00830751657, -0.0121576898, -0.00101075973, -0.00258583063, 0.0169436187, 0.000551364094, -0.014543511, -0.00123309123, -0.0148292389, -0.00580740394, -0.0108004855, 0.00405732542, 0.0201437641, -0.00232510455, -0.0343158282, 0.0260154549, -0.0111290719, -0.00811465085, -0.0135363229, 0.00611098902, 0.00726461224, 0.00130273716, 0.00466092397, -0.0327157564, 0.00342336833, 0.00412161415, -0.00907183625, -0.00302156457, -0.00186436961, -0.0101790288, -0.00271619367, 0.00967186317, 0.0025376142, 0.0131791644, -0.0405161083, -0.0209580846, 0.00380017096, 0.0254297145, 0.00281084073, 0.00209473702, -0.0193723, 0.00469663972, -0.00598955527, -0.00910755247, -0.00455734786, -0.014343502, 0.00940756593, 0.034973003, -0.0189437084, -0.0151292523, 0.00259118807, -0.0123148393, 0.0190437138, -0.0141863525, 0.0226581618, -0.0121719763, 0.0118719628, 0.00230188924, 0.0232010428, -0.00131523772, 0.0398303643, -0.0195865948, 0.0015777495, -0.0180579554, -0.00626456738, 0.00141613511, -0.00962186139, -0.000712978479, -0.0224438664, -0.0226724483, -0.0205152091, 0.0165293142, 0.0185865499, -0.00717889424, -0.0126791419, 0.0448877327, 0.00325907511, -0.00130988029, 0.0104361838, 0.00279834, 0.0115719493, 0.00287155784, -0.0300584957, -0.00526095089, -0.0081932256, -0.0113719404, 0.0174579285, -0.0130005851, 0.012250551, -0.0118933925, 0.0121148303, 0.00869324803, -0.0189722814, 0.0244582426, -0.0241010841, 0.0276155286, 0.0114147989, -0.0129362959, -0.00910040922, -0.0259154513, 0.0117719583, 0.00275905267, -0.00592526654, -0.00561453821, -0.00615741964, -0.0179008059, 0.00695388438, -0.00794321485, 0.0175150726, 0.00475378521, -0.0194437318, 0.0138506228, 0.0119648241, 0.0148292389, -0.00330550573, -0.0157435648, -0.00801464636, 0.0220867079, 0.0081075076, 0.00965757761, 0.00997187663, -0.0113790836, 0.000620117178, -0.00726818386, -0.00420018891, 0.00503951218, -0.0025001124, -0.00218402687, 0.0115505196, 0.0313156955, -0.00774320541, -0.00471449783, -0.000373900752, 0.0146863749, 0.00312692625, -0.00463592261, -0.00691816816, -0.0203437731, 0.00655743759, -0.00621099351, -0.0097575821, -0.00978615414, -0.0127434302, -0.00342694, -0.00127327151, -0.0105433315, 0.00227153068, 0.00081075076, 0.0149292434, 0.0264583323, -0.00185365486, -0.00427876366, -0.00947185419, 0.00304120826, 0.0041716164, 0.00987901539, -0.0166293196, -0.0112147899, -0.00336979446, -0.00685030827, 0.0142363543, 0.0236296337, -0.00442162761, -0.0185151193, -0.0136434706, -0.00568597, 0.0115433764, 0.0184722599, -0.00840752106, 0.0112219332, 0.0218866989, 0.0044466285, 0.0133791734, 0.00713603524, -0.0191008598, -0.0039680358, -0.00325371767, 0.0205866396, -0.0101647433, 0.00876468, 0.00985044334, 0.0044037695, -0.0101647433, 0.00519309053, 0.0303727947, -0.00506808516, 0.0187151283, 0.0307156667, 0.0411732793, -0.000648243469, -0.00268583512, 0.0262583233, 0.0147863794, 0.0290441643, -0.0264726188, -0.0276726726, -0.000564311107, -0.00263761869, -0.00185186905, -0.0135077508, 0.00356266019, -0.0172007736, -0.0269440692, 0.0158578567, -0.0119362511, 0.0166864656, 0.0328586213, -0.00116255227, 0.0133005986, -0.00333943591, -0.00205366383, -0.0156578477, 0.00277155312, 0.0018232963, -0.00633599935, -0.0189294219, 0.00601455616, 0.020543782, -0.0152578289, -0.00168668304, 0.00613599038, -0.00519309053, 0.00185544055, 0.0171150547, 0.00087414647, -0.00623956649, -0.0057574017, 0.00569668459, -0.00432519475, 0.0273012277, 0.0177293681, -0.0234296247, 0.0174293555, 0.0036233773, -0.00682887854, -0.00673244568, -0.0124934195, -0.00116969552, -0.00711817713, -0.00523595, -0.00309299631, -0.0131148752, -0.00333765, -0.017586505, 0.0268869232, -0.0115933781, -0.000643778942, -0.0194723047, 0.00414661504, 0.00454663299, 0.0033983672, 0.00684673665, -0.00252332771, 0.0125577077, -0.0023340336, 0.00736461673, -0.00283227023, 0.0257583018, -0.0139291976, -0.0310871117, 0.021143809, -0.0229438897, 0.00569311343, 0.00832180306, -0.00972186588, -0.00830037333, -0.0086503895, -0.00245368178, -0.0113362242, -0.000922362902, -0.00535738375, -0.00168936164, -0.0122362645, -0.0261868928, 0.0138934823, -0.0066181547, 0.0200580452, 0.00688602403, -0.000912987511, 0.00145631551, 0.0118005304, -0.00242510904, -0.000641993189, 0.0160864387, -0.00655743759, -0.0166150331, -0.00288763, 0.0203009136, 0.00325550348, 0.0205723532, 0.0114005124, 0.00050136185, 0.00847180933, -0.00107147673, 0.0227153078, -0.0109433495, -0.00871467777, -0.0225152988, -0.00260011689, -0.0166293196, 0.0155435558, 0.0112576494, -0.0208723675, 0.00687173754, -0.013714903, 0.00664672768, -0.0128934374, 0.0157864243, -0.0136434706, -0.0151292523, 0.00411804253, -0.0227295943, -0.0210152306, -0.00924327318, -0.0337158032, -0.00789321214, -0.0337443762, -0.00707174651, 0.000606277259, 0.0123219825, -0.00161971571, -0.0154435514, -0.0060645584, -0.00543238735, 0.00947899744, -0.00402518082, -0.00282155559, 0.0037465971, 0.0057574017, -0.00785749592, -0.0125219915, -0.0251154155, -0.00454306137, 0.0187008418, 0.0125434212, 0.011993397, 0.0130863031, -0.00306620938, 0.00715389336, -0.024729684, -0.0326871835, -0.00107415544, 0.0133363139, 0.00178847334, -0.0204294901, 0.00728604198, -0.0254868604, 0.0184151139, 0.0193723, -0.00743604871, -0.00884325523, 0.00124291307, 0.00716817938, 0.0358587541, 0.0224438664, 0.0149721019, 0.00237153517, 0.0215866845, -0.036315918, -0.00464306585, -0.00248939777, 0.00910755247, -0.00356623181, 0.0187151283, -0.0106576225, -0.00662529794, 0.0127934329, 0.00784321, 0.00121076871, 0.0141934957, 0.00624313811, -0.0157007053, -0.00620027864, -0.0107433405, -0.0126791419, -0.0157578513, 0.00691816816, -0.0095218569, -0.00563953957, 0.0302585047, -0.00930756144, -0.0282155555, 0.0155864153, -0.0262726098, -0.0141292065, 0.0141363498, -0.000849145348, 0.012393415, -0.00982187, 0.00406446867, 2.63125676e-05, 0.0195437353, 0.00171614857, 0.0090432642, -0.00148131663, -0.0127291437, -0.00915755518, 0.0163293052, -0.0368302278, -0.0128291482, 0.0119576808, 0.00283048442, -0.00314121274, 0.0229724627, -0.00354123069, -0.0119862538, 0.00239296467, 0.0135648958, 0.00339658139, 0.00948614068, 0.0242010877, 0.0229867473, 0.0176007915, -0.0156864207, -0.00835751835, 0.0181436725, -0.00877896603, -0.00765748741, -0.017243633, 0.00417875918, -0.00113130093, 0.0112505062, 0.00301263551, -0.0104361838, 0.00576454494, -0.0139220543, -0.0104004676, -0.0365445, 0.00512523064, -0.0136006121, -0.0243439525, 0.0098433, -0.0011670168, -0.0117005259, 0.0323728845, 0.0124434168, -0.020743791, -1.75231089e-05, 0.00785035267, 0.0233581942, -0.0060216994, 0.00885754079, 0.0161007233, -0.00014743967, 0.0106004765, 0.010671909, -0.0100433091, -0.00380017096, 0.0129648689, 0.0200866181, -0.00561096659, -0.00648600608, 0.0203294866, 0.00210188027, -0.0286441464, 0.00956471637, -0.00349658588, 0.0133791734, 0.00289477315, 0.00118219608, 0.00284834229, 0.0148578109, 0.018015096, -0.00905040745, 0.0121076871, 0.00682887854, 0.0223438628, 0.0190437138, -0.0218724124, -0.01213626, -0.00864324626, -0.0231010392, 0.0112576494, -0.00211080932, 0.00750748068, -0.00300906389, -0.00543953059, 0.0137506183, 0.0146220867, -0.00635742862, 0.000375240081, -0.0255582929, 0.00905755069, 0.0027840538, -0.0123576988, -0.00412875693, 0.0149435289, 0.0101218838, -0.0196151678, -0.00796464365, 0.0238153562, 0.0290727355, 0.00515737478, -0.0156435613, 0.0304585136, 0.0130577302, -0.0065752957, 0.0280155465, -0.00126344967, -0.00666815694, 0.00205902127, 0.00426804926, 0.0041359, 0.0093004182, -0.0132363094, 0.0123005528, -0.0231010392, 0.0227295943, -0.0302013587, -0.00740033295, -0.00187687017, 0.00520737702, -0.0218295529, 0.00315192738, -0.00625385251, -0.0219295584, 0.00677173305, -0.0117648151, 0.010443327, -0.0068645943, 0.00318050012, 0.00637171511, -0.010929063, 0.0271440782, -0.0405161083, 0.00497879554, 0.00373945385, -0.00458234875, -0.0213009585, 0.00499308156, -0.00927184522, 0.00521809189, 0.00615741964, 0.0109933512, -0.00343586877, -0.00817893911, -0.0112362197, 0.00201080483, 0.00432876591, -0.00792178512, -0.00341086765, -0.00246796804, 0.0126362825, -0.0116148079, 0.00980758388, 0.0106790522, -0.014143493, -0.0081075076, 0.00411447091, 0.0116148079, -0.0120148258, -0.0106219063, -0.017072197, -0.00481807394, 0.0150292479, -0.024386812, 0.0146863749, 0.00269119255, 0.013914912, -0.0169864781, -0.0139006255, -0.00225724443, -0.0167864691, -0.00735747395, -0.0194008723, -0.0031501418, 0.00810036436, -0.00813608058, -0.000330148789, -0.0250582695, -0.00682887854, -0.00415018667, 0.0166721791, -0.0163293052, -0.0198294632, 0.0182436779, -0.00450734561, 0.00792178512, -0.00540381437, -0.0166721791, -0.002660834, -0.0208009351, -0.0136006121, 0.00979329739, 0.00886468403, -0.0033822949, 0.00399660831, -0.00245903921, -0.00897183176, 0.00812893733, 0.0209295135, 0.00768606, -0.0101861721, -0.000359837606, 0.034601558, 0.00703245914, -0.0181436725, 0.00285369973, 0.0120862583, 0.00875039399, -0.00138399086, -0.042516198, -0.000101288038, 0.00437519699, 0.00103040354, 0.025272565, 0.0152721154, -0.0262583233, -0.0158292837, -0.0052895234, 0.00850752555, 0.0124648465, 0.0208580811, 0.0116148079, 0.0134648914, 0.00854324177, 0.0121291168, -0.0109576359, 0.0151863974, 0.0156149883, -0.0140792048, 0.0109790657, -0.0112076467, 0.00185544055, 0.00488236267, -0.00835751835, -0.0131434482, 0.0206580721, -0.00575025845, -0.00560025172, -0.00204473478, 0.0270297863, 0.0119433943, 0.00195544516, -0.000342426123, 0.0109147765, 0.00235189148, -0.00951471366, 0.00669673, -0.00243046647, -0.00303049339, 0.0204866361, -0.00993616134, 0.00902183447, -0.00892183, -0.0021500967, 0.025215419, -0.00671458757, -0.00527166575, 0.00769320317, 0.00667887181, -0.0131148752, 0.00438948302, 0.0262297504, -0.0165150277, 0.00438234, -0.000250234472, -0.00657172408, -0.0147435199, 0.0216724034, 0.0171722, -0.00942899566, 0.00440734113, -0.0119433943, -0.00735033071, 0.019058, 0.0102076018, 0.0269440692, -0.00283405604, -0.00900040474, -0.0155864153, 0.00425019115, 0.00521452026, -0.0145506542, -0.00384660158, 0.00735747395, -0.0261011738, 0.0172864925, 0.00744319195, 0.0073039, -0.00813608058, 0.0121005438, -0.00929327495, 0.00467878208, -0.00225010118, -0.00457520597, 0.00211438071, 0.0119505376, -0.0058324053, 0.000738426053, 0.0140934912, -0.00991473161, 0.00073485449, 0.00388231757, -0.0133934598, -0.0204152036, 0.010986208, -0.00664315606, 0.00322693074, -0.00492522167, 0.012907723, 0.00310549675, 0.0103361793, 0.00697174203, 0.00676101819, 0.00667887181, 0.00634671422, 0.000537970627, -0.00691102492, -0.0302013587, 0.0138363363, 0.00134648918, -0.00352515862, 0.00655743759, 0.00496093743, -0.00816465262, 0.000390196132, -0.00279119704, -0.00662886957, -0.00299656345, 0.00959328841, 0.012707714, -0.00835037604, 0.000836644787, -0.00361623405, 0.0148578109, 0.0134434616, -0.0258440189, -0.00389660383, 0.0153864063, -0.0145649407, -0.00282334117, -0.0170436241, -0.00850752555, -0.0244725291, 0.00697531365, -0.0139006255, -0.00186436961, 0.0107719135, 0.0168579016, 0.0131863076, 0.0206866451, 0.0212009531, -0.00318585755, 0.00932899117, 0.000594223151, 0.00410732767, -0.0224010069, 0.00637171511, 0.0107147675, 0.00327157578, 0.0275869556, 0.0261726063, 0.00717889424, 0.0098433, -0.0173436366, 0.0108362017, 0.0116076646, 0.0302870758, 0.00970043615, 0.0125219915, 0.0257154424, 1.83881039e-05, 0.00944328215, -0.0122719808, -0.0197294597, 0.00532523962, 0.00640743086, -0.0122362645, -0.00138756237, -0.035630174, 0.00575025845, 0.0170579106, 0.0123005528, -0.000707174651, 0.00750033744, 0.00101343845, -0.00782178063, 1.48304662e-05, 0.00111255, 0.0161578692, 0.0183722544, -0.0143577885, 0.00686816592, -0.00489307707, 0.0166007467, 0.00802179, -0.0044787731, -0.00762177119, 0.00234653405, -0.0209438, 0.0286298599, -0.0151435379, 0.00991473161, 0.0123434123, -9.64887149e-05, -0.00823608506, -0.0162150152, 0.0177150816, -0.00498236716, -0.000499129586, 0.0295441858, -0.0137006165, -0.00365730724, -0.0072467546, 0.0200294722, -0.00877182279, -0.00181704597, 0.00533238286, 0.010986208, -0.00846466608, 0.01213626, 0.00723246811, -0.0050323694, -0.0066931583, 0.0199008957, 0.0226867348, -0.0131434482, 0.00769320317, 0.0165721737, -0.00102504611, -0.00528595224, 0.0240867976, -0.00403589569, 0.00740747619, 0.00772177568, -0.00923613, -0.00825751387, 0.0261154603, -0.0164864566, -0.0291441679, -0.00397517858, 0.014086348, 0.00158310693, -0.00754319644, 0.00664672768, 0.0168150421, 0.0109219197, -0.0261583198, -0.00745747844, -0.0146720884, 0.00651100697, 0.00935756415, 0.00840752106, -0.0199008957, 0.0070110294, -0.00861467328, 0.00613241876, -0.000144872582, -0.0113719404, 0.00154024782, 0.0212438125, -0.0167150367, 0.0122434078, -0.00053841708, -0.00670387316, -0.02885844, -0.017243633, -0.00285548554, -0.00494665094, -0.0125291348, 0.021658117, -0.0110290674, -0.000164516328, 0.0071610366, 0.0240725111, -0.00963614788, -0.0226867348, 0.0129791554, 0.00879325252, 0.00937185, -0.00895040296, -1.34701932e-05, -0.0077146329, 0.00840752106, -0.00120273267, 0.0159292873, -0.00467521045, 0.0153864063, 0.00298584858, -0.00822179858, -0.0190722868, -0.0151721109, -0.0191722903, 0.00093754218, 0.00330193434, 0.0363730639, -0.00229296018, -0.0183436815, -0.00461092172, -0.017472215, 0.0141934957, -0.00447520148, 0.00256440113, -0.00438234, -0.00830037333, 0.0134934643, 0.0124148438, -0.000434617774, -0.0234010518, -0.00183579687, -0.00226081605, -0.00994330458, 0.00229117437, -0.00359659037, 0.00586812105, -0.00446805824, 0.00825751387, 0.00398946507, -0.00932899117, 0.0130577302, -0.0159721468, -0.010700481, 0.00367159373, -0.0136934733, -0.00294477539, 0.034544412, 0.00718960911, 0.00625385251, 0.00128934369, -0.00579668907, 0.0103933243, 0.0231724717, 0.0117648151, -0.0021072377, -0.00982187, -0.00782178063, -0.0107933423, -0.00158221403, 0.00127237861, -0.0201151911, -0.00682887854, 0.00112951512, 0.00313764112, -0.0125934239, -0.00998616312, -0.0268297773, -0.00247511128, 0.00623956649, -0.00552882, 0.0295727588, -0.0112576494, -0.00260547432, -0.0115433764, 0.00331622059, -0.0142792137, 0.00845038053, 0.0185151193, 0.00562168146, -0.00443234202, 0.0156578477, 0.00653958, 0.00467878208, 0.00931470469, -0.0165864602, -0.00907183625, -0.0101147406, 0.00464306585, 0.00310728257, 0.0221152809, 0.0205152091, -0.000214630185, 0.000978615484, 0.0066931583, -0.0224010069, 0.0164150242, -0.00507165678, 0.00606098678, 0.00671815919, 0.00401446642, -0.0124362735, -0.00222152844, -0.0175436456, -0.0156721342, -0.0122719808, 0.00391446194, 0.0134720346, 0.0227581672, 0.00787178241, 0.00553239184, -0.00553953508, -0.0103218928, -0.00144470786, 0.0105790468, 0.0127791464, 0.0184294, -0.0116362376, -0.0038716027, 0.0102147451, 0.00528595224, 0.00970757939, 0.00840037782, 0.00957185868, 0.0291727409, -0.00992187485, 0.0119148213, 0.00257333, 0.0145220822, -0.0101290271, 0.0222295709, 0.0100504523, -0.0053823851, 0.00922184344, 0.000398678647, 0.0077574919, -0.0265011918, 0.0021875985, -0.0146720884, 0.00165364577, -0.00337336608, 0.00570739945, -0.0128648644, 0.00069779926, -0.00738604646, 0.0127220005, 0.0056288247, -0.00138756237, -0.0249154065, -0.0022143852, 0.0135648958, 0.0130434437, 0.0216866899, -0.0178865194, 0.00760748517, -0.0103861811, 0.000603152148, 0.00598598365, -0.00679316279, 0.00380374258, 0.0168293286, 0.00135988265, -0.00663244119, -0.0217438359, 0.00436091051, 0.00506808516, 0.00391803356, -0.0259725973, -0.0100647388, -0.000600473431, -0.0033769377, -0.00941470917, -0.00294298958, -0.00239296467, -0.0116648106, 0.00229653181, -0.0218438394, 0.00891468674, -0.00922184344, -0.00261618919, 0.0102290316, -0.00103129633, 0.0296013318, 0.0150006749, -0.0105647612, 6.50140864e-05, -0.00737176, 0.00167239667, 0.00403232407, -0.00520023378, -0.0164150242, -0.00848609582, 0.0199866127, 0.00343765458, 0.00405018218, 0.020543782, -0.0139220543, 0.0104218973, 0.0189865679, -0.0162150152, 0.00190008548, 0.0149863884, 0.0105719045, 0.0130577302, 0.0140363453, -0.0166436061, -0.0297441948, -0.0151435379, -0.0102218883, 0.00153399759, 0.00115451624, -0.0142649272, 0.002209028, 0.0200437587, 0.000956293, 0.000835751882, 0.00371088111, -0.00859324355, 0.00620742189, 0.0302299317, 0.000280816195, 0.00343586877, -0.000526809425, -0.0235724896, 0.0163578782, -0.0383160077, 0.000515201769, -0.00448234426, 0.017786514, -0.00566811208, -0.00587526429, -0.0101576, 0.00359837618, 0.00844323728, 0.00869324803, 0.00691102492, 0.00369302323, -0.00701817265, 0.0078860689, -0.00548953284, -0.0206009261, 0.0177436545, 0.00569668459, -0.00955043, -0.00872182101, 0.0288155824, -0.0167007521, -0.00833609, -0.009529, 0.0104719, -0.0162721612, -0.00588240754, -0.00495379418, 0.0049145068, -0.00410018442, -0.00662529794, -0.0237724986, 0.00372873922, -0.000464306591, 0.010243318, -0.00814322382, -0.0015161396, -0.0198151767, -0.0151149658, -0.00282155559, -0.00593241, -0.0178008, -0.00464663748, -0.00641814573, -0.0121076871, 0.0198437497, 0.00275726686, 0.0194008723, 0.00644314708, 0.000590205134, -0.0265726242, -0.000839323446, -0.0133363139, 0.00185186905, -0.00380731421, -0.00348944264, 0.0158578567, -0.0245153885, 0.00590383681, -0.0081932256, -0.00594669627, -0.00484307483, -0.0178579465, -0.00152596144, -0.0112505062, 0.00214116764, -0.0204437766, -0.00232153293, -0.00753605319, 0.0237296391, 0.00622170838, -0.00342694, 0.00428947853, 0.00290013035, 0.00847180933, -0.00471092621, 0.00509665767, -0.00667172857, 0.00459306361, 0.0139649138, 0.00351087213, -0.017243633, 0.0418876, -0.00136970449, -0.00979329739, 0.0141077777, 0.00878610928, 0.000791999919, -0.0116576673, 0.0016188228, 0.0147435199, -0.0269297827, -0.00368230836, 0.0300299227, -0.0109933512, -0.0105719045, -0.010843345, -0.0100290226, 0.0130220139, -0.00136434706, -0.00144292205, 0.0051609464, -0.0121434033, 0.00688245241, 0.00640028808, -0.00159560749, -0.000337961625, -0.00402875245, -0.015915, 0.0126719987, 0.0118719628, -0.0194865912, 0.000118197284, -0.00658601057, 0.0139863435, -0.000885307672, 0.00767891668, 0.000160386684, 0.00791464187, -0.0270583592, -0.0109576359, -0.0361159109, 1.57791692e-05, -0.00542167248, 0.0107933423, 0.00156257034, 0.00300192065, 0.00490379194, -0.0161578692, -0.0257297289, -0.017757941, 0.0115933781, 0.0161150098, 0.0041359, -0.00663601281, -0.0171436276, -0.018529404, -0.021229526, -0.0235439166, 0.00214473926, -0.00832180306, 0.00440734113, 0.00433590915, 0.0087575363, -0.0169150457, -0.0133791734, 0.000325237837, -0.000581276137, -0.0205723532, -0.0115790926, 0.00118666049, 0.00845038053, 0.00682887854, 0.0208152216, -0.00271619367, 0.00415733, -0.00365373585, 0.0115790926, 0.00684316503, 0.00317871431, -0.000480378745, -0.00727889873, -0.0333729312, -0.00729318522, -0.00791464187, 0.00532881124, -0.00944328215, -0.00502522616, -0.0154149793, -0.00596455391, 0.0122576943, 0.00882896874, 0.012564851, 0.0235724896, 0.0041716164, 0.0013089875, -0.00740033295, -0.0204580631, 0.00907897949, 0.0104933288, -0.0141220633, 0.00650743535, -0.00880753901, 0.00231081829, 0.00304120826, -0.0326871835, -0.00674316054, 0.00301977876, 0.00662886957, 0.0150435334, 0.0128505779, -0.00265369075, -0.00658243895, 0.00642886059, 0.000356712466, 0.0151292523, -0.017929377, 0.00638243, 0.00392517634, 0.0119791105, 0.00857181381, 0.000413634669, -0.0165578872, -0.00740747619, 0.00179918809, 0.000800036, -0.0174007826, 0.00260726013, -0.00330907735, 0.0164864566, -0.00876468, 0.00670744432, 0.0066610137, -0.017443642, -0.0144077912, -0.00490379194, -0.0125434212, 0.0263297558, -0.00262868963, 0.0133720301, 0.00777892116, 0.00420376053, 0.0199294686, -0.00977186766, 0.0072467546, -0.0135220364, 0.020543782, 0.0295727588, 0.0169293322, -0.000208268291, -0.0157864243, 0.000195544504, 0.0154006928, -0.00380017096, -0.00711460551, 0.00518237613, -0.00541452924, 0.0210295171, -0.0145363677, 0.0133148842, 0.0282584131, 0.00341622508, -0.0169721916, -0.0102861766, -0.0135077508, 0.0176579375, 0.00302335038, 0.000757623347, -0.00343229715, 0.00944328215, 0.0187579859, -0.00249296916, 0.0160150062, -0.00754319644, 0.0192437228, 0.0124862762, 0.00367516535, -0.00965757761, -0.0046930681, 0.0180436689, -0.00772177568, 0.0058324053, 0.00285727135, -0.0127862897, -0.00073039, -0.00987901539, 0.00711103436, -0.0157292783, 0.0081932256, 0.0053823851, 0.00785749592, -0.0182436779, 7.82959323e-05, 0.000552257, 0.00175454316, -0.0166721791, -0.0154721243, 0.0118148169, 0.00121969776, 0.0052038054, -0.00857181381, -0.000661190425, -0.00622885162, 0.00784321, -0.00244118134, -0.0082789436, -0.00398589345, 0.0063431426, 0.00391089031, -0.00739318971, 0.00967186317, -0.00590026518, 0.00965043437, 0.00882896874, -0.0246153921, -0.0131363049, 0.00550739048, 0.000978615484, -0.00369659485, 0.00520023378, 0.00711460551, -0.0180865284, -0.00556096435, -0.00213223882, -0.021772407, -0.0115148034, -0.00365195, -0.0228295978, -0.0137934778, -0.0249154065, -0.0156721342, 0.0077146329, 0.0132291662, -0.00426090602, 0.00308049563, -0.00191794336, 0.0146006569, -0.012050542, 0.00450734561, -0.00950042717, 0.00391446194, -0.00807179138, -0.0133148842, -0.00558953732, 0.0188865643, 0.00379659934, 0.00986473, 0.0169150457, -0.00171079126, 0.00244832435, -0.00596455391, -0.000401134108, -0.0156721342, -0.00820036884, -0.00673958892, -0.00513594551, -0.0133863166, -0.00840752106, -0.0119648241, -0.0179008059, -0.0019679456, 0.0109147765, 0.00243225228, -0.00540738599, 0.0226438753, -0.0212152395, -0.0102218883, -0.00757891219, 0.0303727947, 8.00817288e-05, -0.0220295619, -0.000831733865, 0.0126719987, 0.0175293591, -0.0274869502, 0.000777267094, -0.00796464365, -0.00411447091, -0.00802893285, -0.00747176446, 0.00660744, -0.0307728127, -0.0183865409, -0.00189472805, -0.0142077822, 0.00190008548, 0.0124077005, 0.00688959565, -0.0131434482, 0.0174579285, -0.00385374483, -0.0153006883, 0.0129148662, 0.0873182118, 0.0042573344, 0.00522523513, -0.0309442487, 0.0146006569, -0.00715389336, -0.0247439705, 0.0439734049, -0.000452029257, 0.0153578334, 0.0118862493, -0.00256082951, -0.0202151947, 0.0193580128, 0.00754319644, -0.0239010751, 0.000441760931, -0.0124577032, -0.010329036, -0.000786642544, 0.00855038501, -0.0218724124, 0.0064574331, 0.00173311366, -0.0158007108, -0.0113719404, 0.0242725201, 0.00360551942, -0.00512523064, 0.0217866935, -0.00842180755, 0.0161721557, -0.00614670524, 0.0107504837, -0.0193437263, 0.0272440817, 0.00333943591, 0.0167293232, 0.021315245, -0.0203866307, 0.018157959, 0.00109201344, 0.0180865284, 0.00066208333, 0.0131434482, 0.00218938407, 0.0112933647, -0.0137006165, 0.010814772, -0.0241439436, 0.00934327766, 0.00696459878, -0.00140720617, -0.0148578109, 0.0079360716, 0.00567882694, 0.0381445736, -0.0126434257, 0.00932899117, -0.00096075749, 0.00576454494, -0.000437519688, -0.0108647747, 0.00864324626, -0.00226795906, 0.00185186905, 0.0108576315, -0.0219009854, -0.0148863839, -0.00171614857, 0.0254011434, -0.00902897771, -0.00895040296, -0.0100647388, 0.0172007736, 0.0210438035, 0.001086656, 0.0310013946, 0.00344301201, -0.0166007467, -0.00645029033, 2.57754346e-06, -0.0202151947, -0.0310585406, 0.00100450951, -0.00318228593, -0.0334586464, -0.0194865912, -0.00141881383, 0.0206009261, -0.0189008508, 0.0304870848, -0.0225724448, 0.00887897052, -0.00430376502, 0.018129386, -0.0168579016, -0.00862181652, 0.00552882, -0.0029519184, 0.0180436689, 0.0113076512, -0.0313442685, -1.46909506e-05, 0.0204580631, 0.0205580667, 0.00533238286, -0.00891468674, 0.0135006076, 0.00935042091, 0.0018232963, -0.010671909, 0.00945042539, 0.0209580846, -0.00323943142, 0.00133934594, 0.00870039128, 0.021143809, 0.0338872373, 0.0122005483, -0.00846466608, 0.0229296032, -0.0157435648, -0.00770034641, 0.00408589793, 0.00319478661, 0.00643243222, -0.0111505017, 0.00507165678, 0.00749319419, 0.0145577975, -0.0141863525, 0.00236082054, -0.00563596794, 0.00691816816, 0.0147863794, 0.000195321292, -0.013886339, 0.0223724339, -0.000917005527, 0.014257784, 0.00206795, 0.0172007736, 0.00774320541, 0.0199151821, 0.00373945385, -0.00573597243, 0.00262690382, -0.00310371094, 0.0242582336, 0.0186722688, 0.00446805824, -0.00689673889, -0.0181722455, 0.0275726691, -0.0126148527, -0.00847895257, -0.00994330458, 0.0016804327, -0.012393415, -0.0105219018, 0.0187722724, 0.0333443582, -0.00598955527, 0.00294477539, 0.00898611825, 0.00718960911, -0.0116862403, 0.0117719583, 0.0220152754, 0.0168721881, -0.000358275051, 0.0220867079, 0.00940756593, 0.0121005438, 0.00281798397, -0.013886339, -0.0192294363, 0.00533238286, -0.0083432328, -0.00680030603, 0.0137006165, 0.0113790836, 0.0484878942, -0.0132363094, -0.00370016648, 7.0594695e-05, -0.021629544, 0.0167007521, 0.0146720884, -0.0150721064, 0.0291584544, -0.0195723083, 0.00900040474, 0.000572793593, 0.0149863884, 0.00400732318, -0.00376445497, -0.0154578378, -0.00187508436, 0.00324300304, -0.00743604871, -0.0161435828, -0.00096075749, -0.0025215419, -0.00460020686, -0.0119791105, -0.00528238062, -0.00725032622, 0.0019250866, 0.0023340336]